{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {
    "slideshow": {
     "slide_type": "slide"
    }
   },
   "source": [
    "<style>\n",
    "[hidden] { display: none !important; }\n",
    ".hide, .hidden {\n",
    "  display: none;\n",
    "}</style>\n",
    "\n",
    "# Sage多様体演習　Sage manifold tutorial\n",
    "\n",
    "このワークシートはSageMathにおける微分可能多様体の取り扱いについての簡単な紹介です。以下で紹介するツールは[SageManifolds](https://sagemanifolds.obspm.fr/) プロジェクト (version 1.2, included in SageMath 8.2).を通じて実装されました。\n",
    "ipnyb形式のワークシートファイルは[ここ](https://raw.githubusercontent.com/sagemanifolds/SageManifolds/master/Notebooks/SM_tutorial.ipynb) からダウンロード可能です。このワークシートを実行するには、コマンド`sage -n jupyter`などを使ってSageMathのJupyterノートブックインタフェースを起動する必要があります。\n",
    "\n",
    "[訳注：この日本語版翻訳は山本 昇によって作成されました。翻訳者へのご連絡は、https://souran.kek.jp/kss/top/　を経由して、 職員情報詳細ページ内の「メール送信」リンクをご利用ください。この翻訳版作成にあたり、東海大学理学部北林さんには貴重なコメントをいただきました。この場を借りてお礼申しあげます。\n",
    "(2023/05/05追記：原文の更新を反映しました。)]\n",
    "\n",
    "<div hidden class=\"hidden\">\n",
    "  This notebook provides a short introduction to differentiable manifolds in SageMath. The tools described\n",
    "below have been implemented through the [SageManifolds](https://sagemanifolds.obspm.fr/) project.\n",
    "\n",
    "Click [here](https://raw.githubusercontent.com/sagemanifolds/SageManifolds/master/Notebooks/SM_tutorial.ipynb) to download the worksheet file (ipynb format). To run it, you must start SageMath with the Jupyter notebook, via the command `sage -n jupyter`\n",
    "\n",
    "[Note for Japanese version.: this document was translated into Japanese by Noboru Yamamoto. You can reach him through https://souran.kek.jp/kss/top/. \"Staff Detail Information\" page includes a link \"send email\". The translator thanks Prof. Kitabayashi of Tokai University for his valuable comments on the draft of the documents.\n",
    "  (last update: 2023/05/05)]\n",
    "</div>"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "slideshow": {
     "slide_type": "subslide"
    }
   },
   "source": [
    "このワークシートはSageMathのバージョン 9.2 (あるいはそれ以降）を必要としています、それ以前のバージョンではSageManifoldsの全ての機能が利用可能というわけではないからです。 [訳注：このjupyter notebookはSageMath 9.8 を使って実行しています。]\n",
    "\n",
    "<div hidden class=\"hidden\">\n",
    "  This notebook is valid for version 9.2 or higher of SageMath:\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {
    "slideshow": {
     "slide_type": "fragment"
    }
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "'SageMath version 10.0, Release Date: 2023-05-20'"
      ]
     },
     "execution_count": 1,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "version()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "slideshow": {
     "slide_type": "fragment"
    }
   },
   "source": [
    "最初に、ノートブックが結果をLaTexを使った数式表示で表示するようにします。\n",
    "\n",
    "<div hidden> \n",
    "First we set up the notebook to display mathematical objects using LaTeX rendering:\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {
    "slideshow": {
     "slide_type": "fragment"
    }
   },
   "outputs": [],
   "source": [
    "%display latex"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "slideshow": {
     "slide_type": "slide"
    }
   },
   "source": [
    "## 多様体の定義　Defining a manifold\n",
    "\n",
    "例として、 $\\mathbb{R}$上の3次元の微分可能多様体を定義します。\n",
    "\n",
    "<div hidden>\n",
    "  As an example let us define a differentiable manifold of dimension 3 over $\\mathbb{R}$:</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {
    "slideshow": {
     "slide_type": "subslide"
    }
   },
   "outputs": [],
   "source": [
    "M = Manifold(3, 'M', latex_name=r'\\mathcal{M}', start_index=1)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "- 最初の引数、`3`, は多様体の次元です。SageManifoldsでは任意の正の整数を指定できます。\n",
    "- 2番目の引数, `'M'`, は多様体の名前を与える文字列です。この名前は = 記号の左辺にあるシンボルの名前(ここでは`M`)と\n",
    "異なっていても構いません。左辺のシンボル名はコンピュータメモリのなかの多様体オブジェクトを参照しています。一方、\n",
    "引数であたえる名前は、多様体に与えられた数学的な名前です。\n",
    "- 省略可能な引数, `latex_name=r'\\mathcal{M}'`, はこの多様体をLaTeXで表示する際に使う名前を指定します。\n",
    "最初の引用符の前の 'r' に注意してください。：これはこの文字列が *raw* 文字列であることを示しています。\n",
    "それによって文字列`\\mathcal`中のバックスラッシュ '\\\\' は通常の文字として取り扱われます（ '\\\\\\\\' としてエスケープする必要がないということです）。\n",
    "この引数(`latex_name`)が省略された場合は、第2引数に与えられた名前(ここでは`M`です）が使われます。\n",
    "- 次の省略可能な引数`start_index=1`は多様体のテンソル成分の指標の範囲を指定しています。これを1とすることは指標の範囲が$\\{1,2,3\\}$であることを示しています。この引数の既定値は `start_index=0` です。\n",
    "\n",
    "<div hidden>\n",
    "- The first argument, `3`, is the manifold dimension. In SageManifolds, it can be any\n",
    "  positive integer.\n",
    "- The second argument, `'M'`, is a string defining the manifold's name; it may be \n",
    "  different from the symbol set on the left-hand side of the = sign (here `M`): the latter\n",
    "  stands for a mere Python variable, which refers to the manifold object in the computer \n",
    "  memory, while the string `'M'` is the mathematical symbol chosen for the manifold.\n",
    "- The optional argument `latex_name=r'\\mathcal{M}'` sets the LaTeX\n",
    "  symbol to display the manifold. Note the letter 'r' in front on the first quote: \n",
    "  it indicates that the  string is a *raw* one, so that the backslash character \n",
    "  in `\\mathcal` is considered as an ordinary character (otherwise, the backslash is \n",
    "  used to escape some special characters). If the argument `latex_name` is not \n",
    "  provided by the user, it is set to the string used as the second argument (here `'M'`)\n",
    "- The optional argument `start_index=1` defines the range of indices to be used for \n",
    "  tensor components on the manifold: setting it to 1 means that indices will range \n",
    "  in $\\{1,2,3\\}$. The default value is `start_index=0`.\n",
    "</div>"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "slideshow": {
     "slide_type": "subslide"
    }
   },
   "source": [
    "規定のベースフィールド（基底）は$\\mathbb{R}$であることに注意してください。もし、\n",
    "`field='complex'`,が与えられていれば、複素数体$\\mathbb{C}$を基底として持つ\n",
    "多様体が定義されます。[[list of all options](http://doc.sagemath.org/html/en/reference/manifolds/sage/manifolds/manifold.html#sage.manifolds.manifold.Manifold) を参照のこと]\n",
    "\n",
    "<div hidden>\n",
    "<p>Note that the default base field is $\\mathbb{R}$. If we would have used the optional\n",
    "argument `field='complex'`, we would have defined a manifold over $\\mathbb{C}$. See the\n",
    "[list of all options](http://doc.sagemath.org/html/en/reference/manifolds/sage/manifolds/manifold.html#sage.manifolds.manifold.Manifold) for more details.  </p>\n",
    "</div>\n",
    "\n",
    "Mを要求すると、そのLaTexのシンボルとして表示されます。\n",
    "\n",
    "<div hidden>\n",
    "  If we ask for M, it is displayed via its LaTeX symbol: </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathcal{M}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathcal{M}$"
      ],
      "text/plain": [
       "3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 4,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "M"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "slideshow": {
     "slide_type": "subslide"
    }
   },
   "source": [
    "代わりに `print` 関数を使うと、簡潔な記述が表示されます。\n",
    "<div hidden>\n",
    "If we use the `print` function instead, we get a short description of the object: </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "print(M)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "`show()` 関数を使って、LaTeXを使って表示することを明示することもできます。"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathcal{M}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathcal{M}$"
      ],
      "text/plain": [
       "3-dimensional differentiable manifold M"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "show(M)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "`type` コマンドを使うと、`M`に対応するPythonオブジェクトのタイプ(`DifferentiableManifold_with_category`)が表示できます。\n",
    "\n",
    "<div hidden> \n",
    "<p> Via the command <span style=\"font-family: courier new,courier;\">type</span>, we get the type of the Python object corresponding to M (here the Python class <span style=\"font-family: courier new,courier;\">DifferentiableManifold_with_category</span>):</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "<class 'sage.manifolds.differentiable.manifold.DifferentiableManifold_with_category'>\n"
     ]
    }
   ],
   "source": [
    "print(type(M))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "slideshow": {
     "slide_type": "subslide"
    }
   },
   "source": [
    "`category()` 関数を使って、多様体`M`のカテゴリーを調べます。この例では、この多様体の\n",
    "カテゴリーは$\\mathbb{R}$の上の滑らかな多様体であることがわかります。\n",
    "\n",
    "<div hidden> \n",
    "We can also ask for the category of M and see that it is the category of smooth manifolds over $\\mathbb{R}$:\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\newcommand{\\Bold}[1]{\\mathbf{#1}}\\mathbf{Smooth}_{\\Bold{R}}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\newcommand{\\Bold}[1]{\\mathbf{#1}}\\mathbf{Smooth}_{\\Bold{R}}$"
      ],
      "text/plain": [
       "Category of smooth manifolds over Real Field with 53 bits of precision"
      ]
     },
     "execution_count": 8,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "category(M)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "slideshow": {
     "slide_type": "subslide"
    }
   },
   "source": [
    "多様体の指標(を表す`geneator`)は　`irange()` メソッドで生成されます。この指標は `for`-ループなどで使われます。\n",
    "<div hidden>\n",
    "<p>The indices on the manifold are generated by the method <span style=\"font-family: courier new,courier;\">irange()</span>, to be used in loops:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[1, 2, 3\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[1, 2, 3\\right]$"
      ],
      "text/plain": [
       "[1, 2, 3]"
      ]
     },
     "execution_count": 9,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "[i for i in M.irange()]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "このように単純な場合には、 `list()` 関数が利用可能です。"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[1, 2, 3\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[1, 2, 3\\right]$"
      ],
      "text/plain": [
       "[1, 2, 3]"
      ]
     },
     "execution_count": 10,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "list(M.irange())"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "slideshow": {
     "slide_type": "subslide"
    }
   },
   "source": [
    "`start_index` パラメータが明示的に指定されていない場合、多様体の指標は 0 からはじまります、例えばこの例のように(0,1,2) の範囲となります。\n",
    "\n",
    "<div hidden>\n",
    "<p>If the parameter<span style=\"font-family: courier new,courier;\"> start_index</span> had not been specified, the default range of the indices would have been $\\{0,1,2\\}$ instead:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[0, 1, 2\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[0, 1, 2\\right]$"
      ],
      "text/plain": [
       "[0, 1, 2]"
      ]
     },
     "execution_count": 11,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "M0 = Manifold(3, 'M', r'\\mathcal{M}')\n",
    "[i for i in M0.irange()]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "slideshow": {
     "slide_type": "slide"
    }
   },
   "source": [
    "## 多様体上の座標系(chart)の定義：Defining a chart on the manifold\n",
    "まずは、多様体 $\\mathcal{M}$ は一つの座標系で覆われると仮定します（そうでない場合は以下で議論されます）。\n",
    "座標系　`X` は次のように宣言されます。\n",
    "<div hidden>\n",
    "<p>Let us assume that the manifold $\\mathcal{M}$ can be covered by a single chart (other cases are discussed below); the chart is declared as follows:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "metadata": {},
   "outputs": [],
   "source": [
    "X.<x,y,z> = M.chart()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "上式の左辺にある`.<x,y,z>` は　Pythonの変数 `x`, `y` and `z`が座標系の軸名として使われることを意味します。\n",
    "これにより、座標軸を名前で指定することが可能になります。\n",
    "\n",
    "<div hidden>\n",
    "The writing `.<x,y,z>` in the left-hand side means that the Python variables `x`, `y` and `z` are set to the three coordinates of the chart. This allows one to refer subsequently to the coordinates by their names.\n",
    "</div>\n",
    "\n",
    "この例では、関数 `chart()` は引数をもっていません。この場合には、座標の名前は、`x`, `y` と `z` (即ち、左辺の `<...>` 演算子で与えられた名前）になります。また座標の範囲は $(-\\infty,+\\infty)$ となります。それ以外の座標の名前やその範囲を指定する場合には `chart()` にそれらを引数として与えなければなりません。座標名と異なる LaTex で使われる名前を指定する場合も同様です。（以下にそのような例が示されます。)\n",
    "\n",
    "<div hidden>\n",
    "In this example, the function `chart()` has no arguments, which implies that the coordinate symbols will be `x`, `y` and `z` (i.e. exactly the characters set in the `<...>` operator) and that each coordinate range is $(-\\infty,+\\infty)$. For other cases, an argument must be passed to `chart()`  to specify the coordinate symbols and range, as well as the LaTeX symbol of a coordinate if the latter is different from the coordinate name (an example will be provided below).\n",
    "</div>"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "座標系は座標系が覆う開集合(ここでは多様体自身）と座標の組で表示されます。\n",
    "\n",
    "<div hidden><p>The chart is displayed as a pair formed by the open set covered by it (here the whole manifold) and the coordinates:</p></div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Chart (M, (x, y, z))\n"
     ]
    }
   ],
   "source": [
    "print(X)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(\\mathcal{M},(x, y, z)\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(\\mathcal{M},(x, y, z)\\right)$"
      ],
      "text/plain": [
       "Chart (M, (x, y, z))"
      ]
     },
     "execution_count": 14,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "X"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "それぞれの座標値は指標を使って入手できます。指標の指定方法は多様体の定義時の設定（`start_index=1`）に従います。\n",
    "\n",
    "<div hidden>\n",
    "<p>The coordinates can be accessed individually, by means of their indices, following the convention defined by <span style=\"font-family: courier new,courier;\">start_index=1</span> in the manifold's definition:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle x\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle x$"
      ],
      "text/plain": [
       "x"
      ]
     },
     "execution_count": 15,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "X[1]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle y\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle y$"
      ],
      "text/plain": [
       "y"
      ]
     },
     "execution_count": 16,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "X[2]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle z$"
      ],
      "text/plain": [
       "z"
      ]
     },
     "execution_count": 17,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "X[3]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "座標の全体は`[:]` 演算子を使って取得します。\n",
    "<div hidden>\n",
    "<p>The full set of coordinates is obtained by means of the operator [:]:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(x, y, z\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(x, y, z\\right)$"
      ],
      "text/plain": [
       "(x, y, z)"
      ]
     },
     "execution_count": 18,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "X[:]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "座標系定義で使った `<x,y,z>` 演算子のおかげで、それぞれの座標をこの名前を使って直接取り扱えます。\n",
    "<div hidden>\n",
    "Thanks to the operator `<x,y,z>` used in the chart declaration, each coordinate can be accessed directly via its name:\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 19,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "z is X[3]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "座標は SageMath の記号表現になっています。\n",
    "<div hidden>\n",
    "Coordinates are SageMath symbolic expressions:\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "<class 'sage.symbolic.expression.Expression'>\n"
     ]
    }
   ],
   "source": [
    "print(type(z))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {
    "slideshow": {
     "slide_type": "slide"
    }
   },
   "source": [
    "### 座標の関数 : Functions of the chart coordinates\n",
    "\n",
    "実数値をもつ座標の関数 (数学的にいえば、**座標の終域で定義された関数**) は チャートの`function()` メソッドを使って生成されます。\n",
    "<div hidden>\n",
    "<p>Real-valued functions of the chart coordinates (mathematically speaking, <em>functions defined on the chart codomain</em>) are generated via the method <span style=\"font-family: courier new,courier;\">function()</span> acting on the chart:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 21,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle z^{3} + y^{2} + x\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle z^{3} + y^{2} + x$"
      ],
      "text/plain": [
       "z^3 + y^2 + x"
      ]
     },
     "execution_count": 21,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f = X.function(x+y^2+z^3) \n",
    "f"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 22,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(x, y, z\\right) \\mapsto z^{3} + y^{2} + x\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(x, y, z\\right) \\mapsto z^{3} + y^{2} + x$"
      ],
      "text/plain": [
       "(x, y, z) ↦ z^3 + y^2 + x"
      ]
     },
     "execution_count": 22,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 23,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle 32\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle 32$"
      ],
      "text/plain": [
       "32"
      ]
     },
     "execution_count": 23,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f(1,2,3)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "これらの関数は、SageManiforldsのクラス `ChartFunction` (実際には、そのサブクラス`𝙲𝚑𝚊𝚛𝚝𝙵𝚞𝚗𝚌𝚝𝚒𝚘𝚗𝚁𝚒𝚗𝚐_𝚠𝚒𝚝h_𝚌𝚊𝚝𝚎𝚐𝚘𝚛𝚢.𝚎𝚕𝚎𝚖𝚎𝚗t_𝚌𝚕𝚊𝚜𝚜`)に属しています。\n",
    "<div hidden>\n",
    "They belong to the class `ChartFunction` (actually the subclass `𝙲𝚑𝚊𝚛𝚝𝙵𝚞𝚗𝚌𝚝𝚒𝚘𝚗𝚁𝚒𝚗𝚐_𝚠𝚒𝚝h_𝚌𝚊𝚝𝚎𝚐𝚘𝚛𝚢.𝚎𝚕𝚎𝚖𝚎𝚗t_𝚌𝚕𝚊𝚜𝚜`):\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 24,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "<class 'sage.manifolds.chart_func.ChartFunctionRing_with_category.element_class'>\n"
     ]
    }
   ],
   "source": [
    "print(type(f))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "そしてこの`ChartFunction`クラスに属する関数は、標準的な SageMath の記号的関数とは全ての演算で自動的簡約化の振る舞いが異なっています。\n",
    "\n",
    "例えば、二つの記号的関数の和：\n",
    "<div hidden> \n",
    "<p>and differ from SageMath standard symbolic functions by automatic simplifications in all operations. For instance, adding the two symbolic functions</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 25,
   "metadata": {},
   "outputs": [],
   "source": [
    "f0(x,y,z) = cos(x)^2 ; g0(x,y,z) = sin(x)^2"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "は、次の結果になります。\n",
    "<div hidden> \n",
    "<p>results in</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 26,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left( x, y, z \\right) \\ {\\mapsto} \\ \\cos\\left(x\\right)^{2} + \\sin\\left(x\\right)^{2}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left( x, y, z \\right) \\ {\\mapsto} \\ \\cos\\left(x\\right)^{2} + \\sin\\left(x\\right)^{2}$"
      ],
      "text/plain": [
       "(x, y, z) |--> cos(x)^2 + sin(x)^2"
      ]
     },
     "execution_count": 26,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f0 + g0"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "一方、`ChartFunction` クラスに属する関数は自動的に簡約化されます。\n",
    "<div hidden>\n",
    "<p>while the sum of the corresponding functions in the class <span style=\"font-family: courier new,courier;\">ChartFunction</span> is automatically simplified:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 27,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle 1\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle 1$"
      ],
      "text/plain": [
       "1"
      ]
     },
     "execution_count": 27,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f1 = X.function(cos(x)^2) ; g1 = X.function(sin(x)^2)\n",
    "f1 + g1"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "同じ結果を記号的関数でも得るためには、`simplify_trig()` メソッドを使います。\n",
    "<div hidden>\n",
    "<p>To get the same output with symbolic functions, one has to invoke the method <span style=\"font-family: courier new,courier;\">simplify_trig()</span>:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 28,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left( x, y, z \\right) \\ {\\mapsto} \\ 1\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left( x, y, z \\right) \\ {\\mapsto} \\ 1$"
      ],
      "text/plain": [
       "(x, y, z) |--> 1"
      ]
     },
     "execution_count": 28,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "(f0 + g0).simplify_trig()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "違いは表示方法にもあります。記号関数 `f0` を表示させると、\n",
    "<div hidden>\n",
    "<p>Another difference regards the display; if we ask for the symbolic function f0, we get:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 29,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left( x, y, z \\right) \\ {\\mapsto} \\ \\cos\\left(x\\right)^{2}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left( x, y, z \\right) \\ {\\mapsto} \\ \\cos\\left(x\\right)^{2}$"
      ],
      "text/plain": [
       "(x, y, z) |--> cos(x)^2"
      ]
     },
     "execution_count": 29,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f0"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "となりますが、座標関数　`f1` を表示させると、座標表示だけが表示されます。\n",
    "<div hidden>\n",
    "<p>while if we ask for the chart function f1, we get only the coordinate expression:</p>\n",
    "</div>\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 30,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\cos\\left(x\\right)^{2}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\cos\\left(x\\right)^{2}$"
      ],
      "text/plain": [
       "cos(x)^2"
      ]
     },
     "execution_count": 30,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f1"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "`f0` の場合と同じような表示を望む場合には、 `display()` メソッドを使います。\n",
    "<div hidden>\n",
    "<p>To get an output similar to that of f0, one should call the method <span style=\"font-family: courier new,courier;\">display()</span>:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 31,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(x, y, z\\right) \\mapsto \\cos\\left(x\\right)^{2}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(x, y, z\\right) \\mapsto \\cos\\left(x\\right)^{2}$"
      ],
      "text/plain": [
       "(x, y, z) ↦ cos(x)^2"
      ]
     },
     "execution_count": 31,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f1.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "`expr()`メソッドは基になる記号表現を返すことを覚えておいてください。\n",
    "<div hidden>\n",
    "Note that the method `expr()` returns the underlying symbolic expression:\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 32,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\cos\\left(x\\right)^{2}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\cos\\left(x\\right)^{2}$"
      ],
      "text/plain": [
       "cos(x)^2"
      ]
     },
     "execution_count": 32,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f1.expr()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 33,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "<class 'sage.symbolic.expression.Expression'>\n"
     ]
    }
   ],
   "source": [
    "print(type(f1.expr()))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### 多様体への二つ目の座標系の導入:Introducing a second chart on the manifold\n",
    "\n",
    "まず、多様体$\\mathcal{M}$の部分集合を考えましょう。\n",
    "例えば、$\\{y=0, x\\geq 0\\}$ で定義される領域の**補集合** $U$ です\n",
    "[ `(y!=0, x<0)` は $y\\not=0$ OR $x<0$を意味していることに注意してください; $y\\not=0$ AND $x<0$　は`[y!=0, x<0]`となります]。\n",
    "<div hidden>\n",
    "Let us first consider an open subset of $\\mathcal{M}$, for instance the complement $U$ of the region defined by $\\{y=0, x\\geq 0\\}$ (note that `(y!=0, x<0)` stands for $y\\not=0$ OR $x<0$; the condition $y\\not=0$ AND $x<0$ would have been written `[y!=0, x<0]` instead):\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 34,
   "metadata": {},
   "outputs": [],
   "source": [
    "U = M.open_subset('U', coord_def={X: (y!=0, x<0)})"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "開部分集合$U$に制限された座標系 `X` を `X_U`と呼ぶことにします。\n",
    "<div hidden>\n",
    "Let us call `X_U` the restriction of the chart `X` to the open subset $U$:\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 35,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(U,(x, y, z)\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(U,(x, y, z)\\right)$"
      ],
      "text/plain": [
       "Chart (U, (x, y, z))"
      ]
     },
     "execution_count": 35,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "X_U = X.restrict(U)\n",
    "X_U"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$U$上の別の座標系 `Y`を球面座標 $(r,\\theta,\\phi)$ を使って導入します。\n",
    "<div hidden>\n",
    "<p>We introduce another chart on $U$, with spherical-type coordinates $(r,\\theta,\\phi)$:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 36,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(U,(r, {\\theta}, {\\phi})\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(U,(r, {\\theta}, {\\phi})\\right)$"
      ],
      "text/plain": [
       "Chart (U, (r, th, ph))"
      ]
     },
     "execution_count": 36,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Y.<r,th,ph> = U.chart(r'r:(0,+oo) th:(0,pi):\\theta ph:(0,2*pi):\\phi')\n",
    "Y"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "ここでの関数 `chart()` は引数を持っています。それはraw文字列でLaTexのシンボルを含んでいます。また、この文字列には座標の(既定値の $(-\\infty, +\\infty)$ とは異なる）範囲指定が含まれています。フィールドは`:`で区切られており、座標は空白文字で区切られています。 座標 $r$ については、LaTexシンボルを指定していないので、下限と上限の二つだけが指定されています。LaTexシンボルは出力の際に使われます。\n",
    "<div hidden> \n",
    "<p>The function <span style=\"font-family: courier new,courier;\">chart()</span> has now some argument; it is a string, which contains specific LaTeX symbols, hence the prefix 'r' to it (for <em>raw</em> string). It also contains the coordinate ranges, since they are different from the default value, which is $(-\\infty, +\\infty)$. For a given coordinate, the various fields are separated by the character ':' and a space character separates the coordinates. Note that for the coordinate $r$, there are only two fields, since the LaTeX symbol has not to be specified. The LaTeX symbols are used for the outputs:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "<div hidden>\n",
    "  var('r1 ph1 th1')\n",
    "Y1.<r1,th1,ph1>= U.chart(\n",
    "            coord_restrictions=[r1 > 0, th1 >= 0, th1 < pi, ph1 > 0, ph1 < 2*pi]\n",
    "           )\n",
    "Y1\n",
    "# 接続／曲率など具体的な計算には、default_chartとつながる変換関数の定義が必要です。\n",
    "transit_Y1_to_X = Y1.transition_map(\n",
    "  X_U,\n",
    "  [r1*sin(th1)*cos(ph1), r1*sin(th1)*sin(ph1), r1*cos(th1)]\n",
    ")\n",
    "var('r2 ph2 th2')\n",
    "Y2= U.chart(\n",
    "            names=(\"r2\",\"th2:\\\\theta_2\",\"ph2:\\\\phi_2\"),\n",
    "            coord_restrictions={((r2 > 0) , (0<= th2 < pi) , (0 <= ph2 < 2*pi))}\n",
    "           )\n",
    "for c in ((r2 > 0) , (0<= th2 < pi) , (0 <= ph2 < 2*pi)):\n",
    "  assume(c)\n",
    "Y2\n",
    "</div>"
   ]
  },
  {
   "cell_type": "raw",
   "metadata": {},
   "source": []
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Sageが使っている座標の条件は、`assumptions()`メソッドを使って確認することができます。\n",
    "<div hidden>\n",
    "<p>The declared coordinate ranges are now known to Sage, as we may check by means of the command <span style=\"font-family: courier new,courier; font-size: small;\">assumptions()</span>:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 37,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[\\verb|x|\\verb| |\\verb|is|\\verb| |\\verb|real|, \\verb|y|\\verb| |\\verb|is|\\verb| |\\verb|real|, \\verb|z|\\verb| |\\verb|is|\\verb| |\\verb|real|, \\verb|r|\\verb| |\\verb|is|\\verb| |\\verb|real|, r > 0, \\verb|th|\\verb| |\\verb|is|\\verb| |\\verb|real|, {\\theta} > 0, {\\theta} &lt; \\pi, \\verb|ph|\\verb| |\\verb|is|\\verb| |\\verb|real|, {\\phi} > 0, {\\phi} &lt; 2 \\, \\pi\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[\\verb|x|\\verb| |\\verb|is|\\verb| |\\verb|real|, \\verb|y|\\verb| |\\verb|is|\\verb| |\\verb|real|, \\verb|z|\\verb| |\\verb|is|\\verb| |\\verb|real|, \\verb|r|\\verb| |\\verb|is|\\verb| |\\verb|real|, r > 0, \\verb|th|\\verb| |\\verb|is|\\verb| |\\verb|real|, {\\theta} > 0, {\\theta} < \\pi, \\verb|ph|\\verb| |\\verb|is|\\verb| |\\verb|real|, {\\phi} > 0, {\\phi} < 2 \\, \\pi\\right]$"
      ],
      "text/plain": [
       "[x is real,\n",
       " y is real,\n",
       " z is real,\n",
       " r is real,\n",
       " r > 0,\n",
       " th is real,\n",
       " th > 0,\n",
       " th < pi,\n",
       " ph is real,\n",
       " ph > 0,\n",
       " ph < 2*pi]"
      ]
     },
     "execution_count": 37,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "assumptions()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "これらの条件は、表現の簡約化の際に使われます。\n",
    "<div hidden>\n",
    "<p>They are used in simplifications:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 38,
   "metadata": {
    "scrolled": true
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle r\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle r$"
      ],
      "text/plain": [
       "r"
      ]
     },
     "execution_count": 38,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "simplify(abs(r))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$r >0$ と仮定されているので、$\\mathrm{abs}(r)$ は　$r$ に簡約されます。"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 39,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle {\\left| x \\right|}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle {\\left| x \\right|}$"
      ],
      "text/plain": [
       "abs(x)"
      ]
     },
     "execution_count": 39,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "simplify(abs(x)) # no simplification occurs since x can take any value in R "
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$x$ は$R$の負の値を含むどんな値でも取ることができますから、$\\mathrm{abs}(x)$ は簡約できません。"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "座標 $Y$が宣言されたあとで、さらに　遷移写像を指定することで、$Y$の$X_U$への関係を完全に特定することができます。\n",
    "\n",
    "<div hidden>\n",
    "<p>After having been declared, the chart Y can be fully specified by its relation to the chart X_U, via a transition map:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 40,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(U,(r, {\\theta}, {\\phi})\\right) \\rightarrow \\left(U,(x, y, z)\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(U,(r, {\\theta}, {\\phi})\\right) \\rightarrow \\left(U,(x, y, z)\\right)$"
      ],
      "text/plain": [
       "Change of coordinates from Chart (U, (r, th, ph)) to Chart (U, (x, y, z))"
      ]
     },
     "execution_count": 40,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "transit_Y_to_X = Y.transition_map(\n",
    "  X_U,\n",
    "  [r*sin(th)*cos(ph), r*sin(th)*sin(ph), r*cos(th)]\n",
    ")\n",
    "transit_Y_to_X"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 41,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left\\{\\begin{array}{lcl} x & = & r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\\\ y & = & r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\\\ z & = & r \\cos\\left({\\theta}\\right) \\end{array}\\right.\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left\\{\\begin{array}{lcl} x & = & r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\\\ y & = & r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\\\ z & = & r \\cos\\left({\\theta}\\right) \\end{array}\\right.$"
      ],
      "text/plain": [
       "x = r*cos(ph)*sin(th)\n",
       "y = r*sin(ph)*sin(th)\n",
       "z = r*cos(th)"
      ]
     },
     "execution_count": 41,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "transit_Y_to_X.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "`set_inverse()` メソッドを用いることで、遷移写像の逆写像を指定することができます。\n",
    "<div hidden>\n",
    "<p>The inverse of the transition map can be specified by means of the method <span style=\"font-family: courier new,courier;\">set_inverse()</span>:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 42,
   "metadata": {
    "scrolled": true
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Check of the inverse coordinate transformation:\n",
      "  r == r  *passed*\n",
      "  th == arctan2(r*sin(th), r*cos(th))  **failed**\n",
      "  ph == arctan2(r*sin(ph)*sin(th), r*cos(ph)*sin(th))  **failed**\n",
      "  x == x  *passed*\n",
      "  y == y  *passed*\n",
      "  z == z  *passed*\n",
      "NB: a failed report can reflect a mere lack of simplification.\n"
     ]
    }
   ],
   "source": [
    "transit_Y_to_X.set_inverse(sqrt(x^2+y^2+z^2), atan2(sqrt(x^2+y^2),z), atan2(y, x))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "導かれた逆写像は、それと元の写像を組み合わせることで検証できます。\n",
    "左辺と右辺がそれぞれに対応しています。\n",
    "上の結果が示しているように、thとphの検証が失敗したと報告されているのは、\n",
    "arctan2が関係する表式の単純化が不十分であることに起因しています。\n",
    "\n",
    "逆写像を表示させてみましょう。\n",
    "\n",
    "<div hidden>\n",
    "A check of the provided inverse is performed by composing \n",
    "it with the original transition map, on the left and\n",
    "on the right respectively. As indicated, the reported failure for th and ph is actually due to a lack of\n",
    "simplification of expressions involving arctan2 .\n",
    "We have then\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 43,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left\\{\\begin{array}{lcl} r & = & \\sqrt{x^{2} + y^{2} + z^{2}} \\\\ {\\theta} & = & \\arctan\\left(\\sqrt{x^{2} + y^{2}}, z\\right) \\\\ {\\phi} & = & \\arctan\\left(y, x\\right) \\end{array}\\right.\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left\\{\\begin{array}{lcl} r & = & \\sqrt{x^{2} + y^{2} + z^{2}} \\\\ {\\theta} & = & \\arctan\\left(\\sqrt{x^{2} + y^{2}}, z\\right) \\\\ {\\phi} & = & \\arctan\\left(y, x\\right) \\end{array}\\right.$"
      ],
      "text/plain": [
       "r = sqrt(x^2 + y^2 + z^2)\n",
       "th = arctan2(sqrt(x^2 + y^2), z)\n",
       "ph = arctan2(y, x)"
      ]
     },
     "execution_count": 43,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "transit_Y_to_X.inverse().display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "この段階で、多様体のアトラス( `user atlas`であって最大アトラスではありません）は三つの座標系を含んでいます。\n",
    "<div hidden>\n",
    "<p>At this stage, the manifold's <strong>atlas</strong> (the \"user atlas\", not the maximal atlas!) contains three charts:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 44,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[\\left(\\mathcal{M},(x, y, z)\\right), \\left(U,(x, y, z)\\right), \\left(U,(r, {\\theta}, {\\phi})\\right)\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[\\left(\\mathcal{M},(x, y, z)\\right), \\left(U,(x, y, z)\\right), \\left(U,(r, {\\theta}, {\\phi})\\right)\\right]$"
      ],
      "text/plain": [
       "[Chart (M, (x, y, z)), Chart (U, (x, y, z)), Chart (U, (r, th, ph))]"
      ]
     },
     "execution_count": 44,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "M.atlas()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "多様体に最初に定義された座標系は既定の座標系とみなされます。既定座標系はあとで、`set_default_chart()`メソッドを使って変更できます。\n",
    "<div hidden> \n",
    "<p>The first chart defined on the manifold is considered as the manifold's default chart (it can be changed by the method <span style=\"font-family: courier new,courier;\">set_default_chart()</span>):</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 45,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(\\mathcal{M},(x, y, z)\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(\\mathcal{M},(x, y, z)\\right)$"
      ],
      "text/plain": [
       "Chart (M, (x, y, z))"
      ]
     },
     "execution_count": 45,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "M.default_chart()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "各々の開部分空間は各自のアトラスを持っています。開部分空間はそれ自身でも多様体であるからです。\n",
    "<div hidden>\n",
    "<p>Each open subset has its own atlas (since an open subset of a manifold is a manifold by itself):</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 46,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[\\left(U,(x, y, z)\\right), \\left(U,(r, {\\theta}, {\\phi})\\right)\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[\\left(U,(x, y, z)\\right), \\left(U,(r, {\\theta}, {\\phi})\\right)\\right]$"
      ],
      "text/plain": [
       "[Chart (U, (x, y, z)), Chart (U, (r, th, ph))]"
      ]
     },
     "execution_count": 46,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "U.atlas()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 47,
   "metadata": {
    "scrolled": true
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(U,(x, y, z)\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(U,(x, y, z)\\right)$"
      ],
      "text/plain": [
       "Chart (U, (x, y, z))"
      ]
     },
     "execution_count": 47,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "U.default_chart()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 48,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<iframe srcdoc=\"<!DOCTYPE html>\n",
       "<html>\n",
       "<head>\n",
       "<title></title>\n",
       "<meta charset=&quot;utf-8&quot;>\n",
       "<meta name=viewport content=&quot;width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0&quot;>\n",
       "<style>\n",
       "\n",
       "    body { margin: 0px; overflow: hidden; }\n",
       "\n",
       "    #menu-container { position: absolute; bottom: 30px; right: 40px; cursor: default; }\n",
       "\n",
       "    #menu-message { position: absolute; bottom: 0px; right: 0px; white-space: nowrap;\n",
       "                    display: none; background-color: #F5F5F5; padding: 10px; }\n",
       "\n",
       "    #menu-content { position: absolute; bottom: 0px; right: 0px;\n",
       "                    display: none; background-color: #F5F5F5; border-bottom: 1px solid black;\n",
       "                    border-right: 1px solid black; border-left: 1px solid black; }\n",
       "\n",
       "    #menu-content div { border-top: 1px solid black; padding: 10px; white-space: nowrap; }\n",
       "\n",
       "    #menu-content div:hover { background-color: #FEFEFE; }\n",
       "\n",
       "    .dark-theme #menu-container { color: white; }\n",
       "\n",
       "    .dark-theme #menu-message { background-color: #181818; }\n",
       "\n",
       "    .dark-theme #menu-content { background-color: #181818; border-color: white; }\n",
       "\n",
       "    .dark-theme #menu-content div { border-color: white; }\n",
       "\n",
       "    .dark-theme #menu-content div:hover { background-color: #303030; }\n",
       "\n",
       "</style>\n",
       "\n",
       "</head>\n",
       "\n",
       "<body>\n",
       "\n",
       "<script src=&quot;/nbextensions/threejs-sage/r122/three.min.js&quot;></script>\n",
       "<script>\n",
       "  if ( !window.THREE ) document.write(' \\\n",
       "<script src=&quot;https://cdn.jsdelivr.net/gh/sagemath/threejs-sage@r122/build/three.min.js&quot;><\\/script> \\\n",
       "            ');\n",
       "</script>\n",
       "        \n",
       "<script>\n",
       "\n",
       "    var options = {&quot;animate&quot;: false, &quot;animationControls&quot;: true, &quot;aspectRatio&quot;: [1.0, 1.0, 1.0], &quot;autoScaling&quot;: [false, false, false], &quot;autoPlay&quot;: true, &quot;axes&quot;: false, &quot;axesLabels&quot;: [&quot;x&quot;, &quot;y&quot;, &quot;z&quot;], &quot;axesLabelsStyle&quot;: null, &quot;decimals&quot;: 2, &quot;delay&quot;: 20, &quot;frame&quot;: true, &quot;loop&quot;: true, &quot;projection&quot;: &quot;perspective&quot;, &quot;theme&quot;: &quot;light&quot;, &quot;viewpoint&quot;: false};\n",
       "    var animate = options.animate;\n",
       "\n",
       "    if ( options.theme === 'dark' )\n",
       "        document.body.className = 'dark-theme';\n",
       "\n",
       "    var scene = new THREE.Scene();\n",
       "\n",
       "    var renderer = new THREE.WebGLRenderer( { antialias: true, preserveDrawingBuffer: true } );\n",
       "    renderer.setPixelRatio( window.devicePixelRatio );\n",
       "    renderer.setSize( window.innerWidth, window.innerHeight );\n",
       "    renderer.setClearColor( options.theme === 'dark' ? 0 : 0xffffff, 1 );\n",
       "    document.body.appendChild( renderer.domElement );\n",
       "\n",
       "    var b = [{&quot;x&quot;:-8.799999800000016, &quot;y&quot;:-8.799998900000022, &quot;z&quot;:-8.799995600000365}, {&quot;x&quot;:7.9999960000003325, &quot;y&quot;:7.99999900000002, &quot;z&quot;:7.9999960000003325}]; // bounds\n",
       "\n",
       "    if ( b[0].x === b[1].x ) {\n",
       "        b[0].x -= 1;\n",
       "        b[1].x += 1;\n",
       "    }\n",
       "    if ( b[0].y === b[1].y ) {\n",
       "        b[0].y -= 1;\n",
       "        b[1].y += 1;\n",
       "    }\n",
       "    if ( b[0].z === b[1].z ) {\n",
       "        b[0].z -= 1;\n",
       "        b[1].z += 1;\n",
       "    }\n",
       "\n",
       "    var rxRange = Math.sqrt( Math.pow( b[1].z - b[0].z, 2 )\n",
       "                            + Math.pow( b[1].y - b[0].y, 2 ) );\n",
       "    var ryRange = Math.sqrt( Math.pow( b[1].x - b[0].x, 2 )\n",
       "                            + Math.pow( b[1].z - b[0].z, 2 ) );\n",
       "    var rzRange = Math.sqrt( Math.pow( b[1].x - b[0].x, 2 )\n",
       "                            + Math.pow( b[1].y - b[0].y, 2 ) );\n",
       "    var xRange = b[1].x - b[0].x;\n",
       "    var yRange = b[1].y - b[0].y;\n",
       "    var zRange = b[1].z - b[0].z;\n",
       "\n",
       "    var ar = options.aspectRatio;\n",
       "    var a = [ ar[0], ar[1], ar[2] ]; // aspect multipliers\n",
       "\n",
       "    var autoScaling = options.autoScaling;\n",
       "    var autoAspect = 2.5;\n",
       "    if ( xRange > autoAspect * rxRange && autoScaling[0] ) a[0] = autoAspect * rxRange / xRange;\n",
       "    if ( yRange > autoAspect * ryRange && autoScaling[1] ) a[1] = autoAspect * ryRange / yRange;\n",
       "    if ( zRange > autoAspect * rzRange && autoScaling[2] ) a[2] = autoAspect * rzRange / zRange;\n",
       "\n",
       "    // Distance from (xMid,yMid,zMid) to any corner of the bounding box, after applying aspectRatio\n",
       "    var midToCorner = Math.sqrt( a[0]*a[0]*xRange*xRange + a[1]*a[1]*yRange*yRange + a[2]*a[2]*zRange*zRange ) / 2;\n",
       "\n",
       "    var xMid = ( b[0].x + b[1].x ) / 2;\n",
       "    var yMid = ( b[0].y + b[1].y ) / 2;\n",
       "    var zMid = ( b[0].z + b[1].z ) / 2;\n",
       "\n",
       "    var box = new THREE.Geometry();\n",
       "    box.vertices.push( new THREE.Vector3( a[0]*b[0].x, a[1]*b[0].y, a[2]*b[0].z ) );\n",
       "    box.vertices.push( new THREE.Vector3( a[0]*b[1].x, a[1]*b[1].y, a[2]*b[1].z ) );\n",
       "    var boxMesh = new THREE.Line( box );\n",
       "    var boxColor = options.theme === 'dark' ? 'white' : 'black';\n",
       "    if ( options.frame ) scene.add( new THREE.BoxHelper( boxMesh, boxColor ) );\n",
       "\n",
       "    if ( options.axesLabels ) {\n",
       "\n",
       "        var d = options.decimals; // decimals\n",
       "        var offsetRatio = 0.1;\n",
       "        var al = options.axesLabels;\n",
       "        var als = options.axesLabelsStyle || [{}, {}, {}];\n",
       "\n",
       "        var offset = offsetRatio * a[1]*( b[1].y - b[0].y );\n",
       "        var xm = xMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(xm) ) xm = xm.substr(1);\n",
       "        addLabel( al[0] + '=' + xm, a[0]*xMid, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "        addLabel( ( b[0].x ).toFixed(d), a[0]*b[0].x, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "        addLabel( ( b[1].x ).toFixed(d), a[0]*b[1].x, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "\n",
       "        var offset = offsetRatio * a[0]*( b[1].x - b[0].x );\n",
       "        var ym = yMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(ym) ) ym = ym.substr(1);\n",
       "        addLabel( al[1] + '=' + ym, a[0]*b[1].x+offset, a[1]*yMid, a[2]*b[0].z, als[1] );\n",
       "        addLabel( ( b[0].y ).toFixed(d), a[0]*b[1].x+offset, a[1]*b[0].y, a[2]*b[0].z, als[1] );\n",
       "        addLabel( ( b[1].y ).toFixed(d), a[0]*b[1].x+offset, a[1]*b[1].y, a[2]*b[0].z, als[1] );\n",
       "\n",
       "        var offset = offsetRatio * a[1]*( b[1].y - b[0].y );\n",
       "        var zm = zMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(zm) ) zm = zm.substr(1);\n",
       "        addLabel( al[2] + '=' + zm, a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*zMid, als[2] );\n",
       "        addLabel( ( b[0].z ).toFixed(d), a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*b[0].z, als[2] );\n",
       "        addLabel( ( b[1].z ).toFixed(d), a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*b[1].z, als[2] );\n",
       "\n",
       "    }\n",
       "\n",
       "    function addLabel( text, x, y, z, style ) {\n",
       "\n",
       "        var color = style.color || 'black';\n",
       "        var fontSize = style.fontSize || 14;\n",
       "        var fontFamily = style.fontFamily || 'monospace';\n",
       "        var fontStyle = style.fontStyle || 'normal';\n",
       "        var fontWeight = style.fontWeight || 'normal';\n",
       "        var opacity = style.opacity || 1;\n",
       "\n",
       "        if ( options.theme === 'dark' )\n",
       "            if ( color === 'black' || color === '#000000' )\n",
       "                color = 'white';\n",
       "\n",
       "        if ( Array.isArray( fontStyle ) ) {\n",
       "            fontFamily = fontFamily.map( function( f ) {\n",
       "                // Need to put quotes around fonts that have whitespace in their names.\n",
       "                return /\\s/.test( f ) ? '&quot;' + f + '&quot;' : f;\n",
       "            }).join(', ');\n",
       "        }\n",
       "\n",
       "        var canvas = document.createElement( 'canvas' );\n",
       "        var context = canvas.getContext( '2d' );\n",
       "        var pixelRatio = Math.round( window.devicePixelRatio );\n",
       "\n",
       "        // For example: italic bold 20px &quot;Times New Roman&quot;, Georgia, serif\n",
       "        var font = [fontStyle, fontWeight, fontSize + 'px', fontFamily].join(' ');\n",
       "\n",
       "        context.font = font;\n",
       "        var width = context.measureText( text ).width;\n",
       "        var height = fontSize;\n",
       "\n",
       "        // The dimensions of the canvas's underlying image data need to be powers\n",
       "        // of two in order for the resulting texture to support mipmapping.\n",
       "        canvas.width = THREE.MathUtils.ceilPowerOfTwo( width * pixelRatio );\n",
       "        canvas.height = THREE.MathUtils.ceilPowerOfTwo( height * pixelRatio );\n",
       "\n",
       "        // Re-compute the unscaled dimensions after the power of two conversion.\n",
       "        width = canvas.width / pixelRatio;\n",
       "        height = canvas.height / pixelRatio;\n",
       "\n",
       "        canvas.style.width = width + 'px';\n",
       "        canvas.style.height = height + 'px';\n",
       "\n",
       "        context.scale( pixelRatio, pixelRatio );\n",
       "        context.fillStyle = color;\n",
       "        context.font = font; // Must be set again after measureText.\n",
       "        context.textAlign = 'center';\n",
       "        context.textBaseline = 'middle';\n",
       "        context.fillText( text, width/2, height/2 );\n",
       "\n",
       "        var texture = new THREE.Texture( canvas );\n",
       "        texture.needsUpdate = true;\n",
       "\n",
       "        var materialOptions = { map: texture, sizeAttenuation: false, depthWrite: false };\n",
       "        if ( opacity < 1 ) {\n",
       "            // Setting opacity=1 would cause the texture's alpha component to be\n",
       "            // discarded, giving the text a black background instead of the\n",
       "            // background being transparent.\n",
       "            materialOptions.opacity = opacity;\n",
       "        }\n",
       "        var sprite = new THREE.Sprite( new THREE.SpriteMaterial( materialOptions ) );\n",
       "        sprite.position.set( x, y, z );\n",
       "\n",
       "        // Scaling factor, chosen somewhat arbitrarily so that the size of the text\n",
       "        // is consistent with previously generated plots.\n",
       "        var scale = 1/625;\n",
       "        if ( options.projection === 'orthographic' ) {\n",
       "            scale = midToCorner/256; // Needs to scale along with the plot itself.\n",
       "        }\n",
       "        sprite.scale.set( scale * width, scale * height, 1 );\n",
       "\n",
       "        scene.add( sprite );\n",
       "\n",
       "        return sprite;\n",
       "\n",
       "    }\n",
       "\n",
       "    if ( options.axes ) scene.add( new THREE.AxesHelper( Math.min( a[0]*b[1].x, a[1]*b[1].y, a[2]*b[1].z ) ) );\n",
       "\n",
       "    var camera = createCamera();\n",
       "    camera.up.set( 0, 0, 1 );\n",
       "    camera.position.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "\n",
       "    // camera is positioned so that the line from the camera to the center\n",
       "    // of the bounding sphere of the objects makes an angle of 60 degrees with x-axis\n",
       "    // and an angle of 30 degrees with z-axis and the field of view of the camera looking\n",
       "    // at the center has an angle of 45 degrees.\n",
       "    const sin8 = Math.sin(Math.PI / 8);\n",
       "    const sin5 = Math.sin(Math.PI / 5);\n",
       "    const cos5 = Math.cos(Math.PI / 5);\n",
       "    const sin3 = Math.sin(Math.PI / 3);\n",
       "    const cos3 = Math.cos(Math.PI / 3);\n",
       "    var r = midToCorner / sin8;\n",
       "    var offset = new THREE.Vector3( r * sin3 * cos5, r * sin3 * sin5, r * cos3 );\n",
       "\n",
       "    if ( options.viewpoint ) {\n",
       "\n",
       "        var aa = options.viewpoint;\n",
       "        var axis = new THREE.Vector3( aa[0][0], aa[0][1], aa[0][2] ).normalize();\n",
       "        var angle = aa[1] * Math.PI / 180;\n",
       "        var q = new THREE.Quaternion().setFromAxisAngle( axis, angle ).inverse();\n",
       "\n",
       "        offset.set( 0, 0, offset.length() );\n",
       "        offset.applyQuaternion( q );\n",
       "\n",
       "    }\n",
       "\n",
       "    camera.position.add( offset );\n",
       "\n",
       "    function createCamera() {\n",
       "\n",
       "        var aspect = window.innerWidth / window.innerHeight;\n",
       "\n",
       "        // Scale the near and far clipping planes along with the overall plot size.\n",
       "        var nearClip = 0.01 * midToCorner;\n",
       "        var farClip = 100 * midToCorner;\n",
       "\n",
       "        if ( options.projection === 'orthographic' ) {\n",
       "            var camera = new THREE.OrthographicCamera( -1, 1, 1, -1, -farClip, farClip );\n",
       "            updateCameraAspect( camera, aspect );\n",
       "            return camera;\n",
       "        }\n",
       "\n",
       "        return new THREE.PerspectiveCamera( 45, aspect, nearClip, farClip );\n",
       "\n",
       "    }\n",
       "\n",
       "    function updateCameraAspect( camera, aspect ) {\n",
       "\n",
       "        if ( camera.isPerspectiveCamera ) {\n",
       "            camera.aspect = aspect;\n",
       "        } else if ( camera.isOrthographicCamera ) {\n",
       "            // Fit the camera frustum to the bounding box's diagonal so that the entire plot fits\n",
       "            // within at the default zoom level and camera position.\n",
       "            if ( aspect > 1 ) { // Wide window\n",
       "                camera.top = midToCorner;\n",
       "                camera.right = midToCorner * aspect;\n",
       "            } else { // Tall or square window\n",
       "                camera.top = midToCorner / aspect;\n",
       "                camera.right = midToCorner;\n",
       "            }\n",
       "            camera.bottom = -camera.top;\n",
       "            camera.left = -camera.right;\n",
       "        }\n",
       "\n",
       "        camera.updateProjectionMatrix();\n",
       "\n",
       "    }\n",
       "\n",
       "    var lights = [{&quot;x&quot;:-5, &quot;y&quot;:3, &quot;z&quot;:0, &quot;color&quot;:&quot;#7f7f7f&quot;, &quot;parent&quot;:&quot;camera&quot;}];\n",
       "    for ( var i=0 ; i < lights.length ; i++ ) {\n",
       "        var light = new THREE.DirectionalLight( lights[i].color, 1 );\n",
       "        light.position.set( a[0]*lights[i].x, a[1]*lights[i].y, a[2]*lights[i].z );\n",
       "        if ( lights[i].parent === 'camera' ) {\n",
       "            light.target.position.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "            scene.add( light.target );\n",
       "            camera.add( light );\n",
       "        } else scene.add( light );\n",
       "    }\n",
       "    scene.add( camera );\n",
       "\n",
       "    var ambient = {&quot;color&quot;:&quot;#7f7f7f&quot;};\n",
       "    scene.add( new THREE.AmbientLight( ambient.color, 1 ) );\n",
       "\n",
       "    var controls = new THREE.OrbitControls( camera, renderer.domElement );\n",
       "    controls.target.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "    controls.addEventListener( 'change', function() { if ( !animate ) render(); } );\n",
       "\n",
       "    window.addEventListener( 'resize', function() {\n",
       "\n",
       "        renderer.setSize( window.innerWidth, window.innerHeight );\n",
       "        updateCameraAspect( camera, window.innerWidth / window.innerHeight );\n",
       "        if ( window.rescaleFatLines ) rescaleFatLines();\n",
       "        if ( !animate ) render();\n",
       "\n",
       "    } );\n",
       "\n",
       "    var texts = [{&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  x&quot;, &quot;x&quot;: -1.999999833302013e-06, &quot;y&quot;: -8.799998900000022, &quot;z&quot;: -8.799995600000365}, {&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  y&quot;, &quot;x&quot;: -8.799999800000016, &quot;y&quot;: 0.0, &quot;z&quot;: -8.799995600000365}, {&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  z&quot;, &quot;x&quot;: -8.799999800000016, &quot;y&quot;: -8.799998900000022, &quot;z&quot;: 0.0}];\n",
       "    for ( var i=0 ; i < texts.length ; i++ ) addText( texts[i] );\n",
       "\n",
       "    function addText( json ) {\n",
       "        var sprite = addLabel( json.text, a[0]*json.x, a[1]*json.y, a[2]*json.z, json );\n",
       "        sprite.userData = json;\n",
       "    }\n",
       "\n",
       "    var points = [];\n",
       "    for ( var i=0 ; i < points.length ; i++ ) addPoint( points[i] );\n",
       "\n",
       "    function addPoint( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        var v = json.point;\n",
       "        geometry.vertices.push( new THREE.Vector3( a[0]*v[0], a[1]*v[1], a[2]*v[2] ) );\n",
       "\n",
       "        var canvas = document.createElement( 'canvas' );\n",
       "        canvas.width = 128;\n",
       "        canvas.height = 128;\n",
       "\n",
       "        var context = canvas.getContext( '2d' );\n",
       "        context.arc( 64, 64, 64, 0, 2 * Math.PI );\n",
       "        context.fillStyle = json.color;\n",
       "        context.fill();\n",
       "\n",
       "        var texture = new THREE.Texture( canvas );\n",
       "        texture.needsUpdate = true;\n",
       "\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var size = camera.isOrthographicCamera ? json.size : json.size/100;\n",
       "        var material = new THREE.PointsMaterial( { size: size, map: texture,\n",
       "                                                   transparent: transparent, opacity: json.opacity,\n",
       "                                                   alphaTest: .1 } );\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var mesh = new THREE.Points( geometry, material );\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    var lines = [{&quot;points&quot;: [[9.999993333334667e-07, 9.999996666667112e-10, 0.0009999995000000417], [0.0001090945218648794, 1.0909455822973456e-07, 0.10909454004730183], [0.00021718904439642535, 2.1718911679280245e-07, 0.21718908059460362], [0.00032528356692797125, 3.252836753558703e-07, 0.3252836211419054], [0.0004333780894595172, 4.3337823391893813e-07, 0.43337816168920723], [0.0005414726119910632, 5.41472792482006e-07, 0.541472702236509], [0.0006495671345226092, 6.495673510450739e-07, 0.6495672427838108], [0.000757661657054155, 7.576619096081418e-07, 0.7576617833311126], [0.000865756179585701, 8.657564681712096e-07, 0.8657563238784144], [0.0009738507021172468, 9.738510267342775e-07, 0.9738508644257161], [0.0010819452246487928, 1.0819455852973452e-06, 1.081945404973018], [0.0011900397471803386, 1.190040143860413e-06, 1.1900399455203197], [0.0012981342697118846, 1.298134702423481e-06, 1.2981344860676214], [0.0014062287922434306, 1.4062292609865488e-06, 1.4062290266149233], [0.0015143233147749764, 1.5143238195496166e-06, 1.514323567162225], [0.0016224178373065224, 1.6224183781126845e-06, 1.6224181077095268], [0.0017305123598380682, 1.7305129366757522e-06, 1.7305126482568285], [0.0018386068823696142, 1.8386074952388201e-06, 1.8386071888041304], [0.0019467014049011602, 1.9467020538018883e-06, 1.9467017293514322], [0.002054795927432706, 2.0547966123649558e-06, 2.0547962698987337], [0.0021628904499642514, 2.1628911709280233e-06, 2.162890810446035], [0.0022709849724957976, 2.2709857294910912e-06, 2.270985350993337], [0.002379079495027343, 2.3790802880541587e-06, 2.3790798915406386], [0.002487174017558889, 2.4871748466172262e-06, 2.48717443208794], [0.0025952685400904346, 2.595269405180294e-06, 2.5952689726352416], [0.00270336306262198, 2.7033639637433617e-06, 2.703363513182543], [0.0028114575851535257, 2.811458522306429e-06, 2.8114580537298446], [0.0029195521076850715, 2.9195530808694967e-06, 2.919552594277146], [0.0030276466302166173, 3.0276476394325646e-06, 3.027647134824448], [0.003135741152748163, 3.135742197995632e-06, 3.1357416753717495], [0.003243835675279709, 3.2438367565586996e-06, 3.243836215919051], [0.0033519301978112543, 3.3519313151217676e-06, 3.3519307564663525], [0.0034600247203428, 3.460025873684835e-06, 3.460025297013654], [0.003568119242874346, 3.5681204322479026e-06, 3.5681198375609555], [0.0036762137654058917, 3.6762149908109705e-06, 3.6762143781082575], [0.0037843082879374375, 3.784309549374038e-06, 3.784308918655559], [0.0038924028104689833, 3.8924041079371055e-06, 3.8924034592028605], [0.004000497333000529, 4.000498666500173e-06, 4.000497999750162], [0.004108591855532074, 4.1085932250632406e-06, 4.1085925402974635], [0.00421668637806362, 4.216687783626308e-06, 4.216687080844765], [0.004324780900595166, 4.3247823421893764e-06, 4.3247816213920665], [0.004432875423126711, 4.432876900752444e-06, 4.432876161939368], [0.004540969945658257, 4.5409714593155114e-06, 4.5409707024866695], [0.004649064468189803, 4.649066017878579e-06, 4.649065243033972], [0.004757158990721349, 4.7571605764416465e-06, 4.757159783581273], [0.004865253513252895, 4.865255135004714e-06, 4.865254324128575], [0.00497334803578444, 4.973349693567782e-06, 4.973348864675876], [0.005081442558315986, 5.08144425213085e-06, 5.081443405223178], [0.005189537080847532, 5.189538810693917e-06, 5.189537945770479], [0.005297631603379077, 5.297633369256985e-06, 5.297632486317781], [0.005405726125910623, 5.405727927820052e-06, 5.405727026865082], [0.005513820648442169, 5.51382248638312e-06, 5.513821567412384], [0.005621915170973714, 5.621917044946187e-06, 5.621916107959685], [0.00573000969350526, 5.730011603509256e-06, 5.730010648506987], [0.005838104216036806, 5.838106162072323e-06, 5.838105189054288], [0.005946198738568351, 5.946200720635391e-06, 5.94619972960159], [0.006054293261099897, 6.054295279198458e-06, 6.054294270148892], [0.006162387783631444, 6.162389837761526e-06, 6.162388810696194], [0.006270482306162989, 6.270484396324593e-06, 6.270483351243495], [0.006378576828694534, 6.378578954887661e-06, 6.378577891790797], [0.006486671351226081, 6.486673513450729e-06, 6.486672432338098], [0.006594765873757626, 6.594768072013797e-06, 6.5947669728854], [0.006702860396289171, 6.702862630576864e-06, 6.702861513432701], [0.006810954918820718, 6.810957189139932e-06, 6.810956053980003], [0.006919049441352263, 6.919051747702999e-06, 6.919050594527304], [0.007027143963883808, 7.027146306266067e-06, 7.027145135074606], [0.0071352384864153545, 7.135240864829134e-06, 7.135239675621907], [0.0072433330089469, 7.2433354233922025e-06, 7.243334216169209], [0.007351427531478446, 7.35142998195527e-06, 7.351428756716511], [0.007459522054009992, 7.4595245405183376e-06, 7.459523297263813], [0.007567616576541538, 7.567619099081405e-06, 7.567617837811114], [0.007675711099073083, 7.675713657644473e-06, 7.675712378358416], [0.007783805621604629, 7.78380821620754e-06, 7.783806918905717], [0.007891900144136174, 7.891902774770608e-06, 7.891901459453019], [0.007999994666667721, 7.999997333333675e-06, 7.99999600000032]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.99999895833003e-10, 9.999997083333652e-07, 0.0009999995000000417], [-5.4547285933240976e-08, 0.0001090945627753413, 0.10909454004730183], [-1.0859457197064895e-07, 0.00021718912584234922, 0.21718908059460362], [-1.6264185800805695e-07, 0.0003252836889093572, 0.3252836211419054], [-2.166891440454649e-07, 0.0004333782519763651, 0.43337816168920723], [-2.707364300828729e-07, 0.000541472815043373, 0.541472702236509], [-3.2478371612028086e-07, 0.000649567378110381, 0.6495672427838108], [-3.7883100215768883e-07, 0.0007576619411773889, 0.7576617833311126], [-4.3287828819509676e-07, 0.0008657565042443969, 0.8657563238784144], [-4.869255742325048e-07, 0.0009738510673114047, 0.9738508644257161], [-5.409728602699128e-07, 0.0010819456303784126, 1.081945404973018], [-5.950201463073206e-07, 0.0011900401934454206, 1.1900399455203197], [-6.490674323447286e-07, 0.0012981347565124285, 1.2981344860676214], [-7.031147183821366e-07, 0.0014062293195794364, 1.4062290266149233], [-7.571620044195447e-07, 0.0015143238826464444, 1.514323567162225], [-8.112092904569526e-07, 0.0016224184457134523, 1.6224181077095268], [-8.652565764943605e-07, 0.0017305130087804602, 1.7305126482568285], [-9.193038625317685e-07, 0.0018386075718474682, 1.8386071888041304], [-9.733511485691766e-07, 0.0019467021349144759, 1.9467017293514322], [-1.0273984346065844e-06, 0.002054796697981484, 2.0547962698987337], [-1.0814457206439923e-06, 0.0021628912610484915, 2.162890810446035], [-1.1354930066814001e-06, 0.002270985824115499, 2.270985350993337], [-1.1895402927188079e-06, 0.002379080387182507, 2.3790798915406386], [-1.2435875787562159e-06, 0.0024871749502495145, 2.48717443208794], [-1.2976348647936236e-06, 0.0025952695133165224, 2.5952689726352416], [-1.3516821508310314e-06, 0.0027033640763835303, 2.703363513182543], [-1.4057294368684394e-06, 0.002811458639450538, 2.8114580537298446], [-1.4597767229058473e-06, 0.0029195532025175453, 2.919552594277146], [-1.5138240089432553e-06, 0.0030276477655845533, 3.027647134824448], [-1.567871294980663e-06, 0.003135742328651561, 3.1357416753717495], [-1.6219185810180709e-06, 0.0032438368917185683, 3.243836215919051], [-1.6759658670554788e-06, 0.0033519314547855767, 3.3519307564663525], [-1.7300131530928866e-06, 0.003460026017852584, 3.460025297013654], [-1.7840604391302944e-06, 0.0035681205809195917, 3.5681198375609555], [-1.8381077251677024e-06, 0.0036762151439865996, 3.6762143781082575], [-1.8921550112051101e-06, 0.003784309707053607, 3.784308918655559], [-1.946202297242518e-06, 0.0038924042701206146, 3.8924034592028605], [-2.0002495832799257e-06, 0.004000498833187623, 4.000497999750162], [-2.0542968693173336e-06, 0.0041085933962546305, 4.1085925402974635], [-2.1083441553547416e-06, 0.004216687959321638, 4.216687080844765], [-2.162391441392149e-06, 0.0043247825223886455, 4.3247816213920665], [-2.216438727429557e-06, 0.004432877085455654, 4.432876161939368], [-2.2704860134669655e-06, 0.004540971648522661, 4.5409707024866695], [-2.324533299504373e-06, 0.004649066211589669, 4.649065243033972], [-2.378580585541781e-06, 0.004757160774656677, 4.757159783581273], [-2.432627871579189e-06, 0.004865255337723684, 4.865254324128575], [-2.486675157616597e-06, 0.004973349900790692, 4.973348864675876], [-2.5407224436540046e-06, 0.0050814444638577, 5.081443405223178], [-2.5947697296914126e-06, 0.005189539026924707, 5.189537945770479], [-2.6488170157288205e-06, 0.005297633589991716, 5.297632486317781], [-2.702864301766228e-06, 0.005405728153058723, 5.405727026865082], [-2.756911587803636e-06, 0.005513822716125731, 5.513821567412384], [-2.810958873841044e-06, 0.005621917279192738, 5.621916107959685], [-2.8650061598784516e-06, 0.0057300118422597465, 5.730010648506987], [-2.9190534459158596e-06, 0.005838106405326754, 5.838105189054288], [-2.9731007319532676e-06, 0.0059462009683937615, 5.94619972960159], [-3.027148017990675e-06, 0.00605429553146077, 6.054294270148892], [-3.081195304028083e-06, 0.0061623900945277765, 6.162388810696194], [-3.135242590065491e-06, 0.006270484657594785, 6.270483351243495], [-3.1892898761028986e-06, 0.006378579220661792, 6.378577891790797], [-3.2433371621403066e-06, 0.0064866737837288, 6.486672432338098], [-3.2973844481777146e-06, 0.006594768346795808, 6.5947669728854], [-3.351431734215122e-06, 0.006702862909862816, 6.702861513432701], [-3.4054790202525306e-06, 0.006810957472929823, 6.810956053980003], [-3.4595263062899385e-06, 0.006919052035996831, 6.919050594527304], [-3.513573592327346e-06, 0.007027146599063839, 7.027145135074606], [-3.567620878364754e-06, 0.007135241162130846, 7.135239675621907], [-3.621668164402162e-06, 0.007243335725197854, 7.243334216169209], [-3.67571545043957e-06, 0.0073514302882648624, 7.351428756716511], [-3.7297627364769776e-06, 0.007459524851331869, 7.459523297263813], [-3.7838100225143856e-06, 0.0075676194143988774, 7.567617837811114], [-3.8378573085517935e-06, 0.007675713977465885, 7.675712378358416], [-3.891904594589201e-06, 0.0077838085405328925, 7.783806918905717], [-3.945951880626609e-06, 0.0078919031035999, 7.891901459453019], [-3.999999166664017e-06, 0.007999997666666907, 7.99999600000032]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-9.999998333333416e-07, 5.665537953391544e-22, 0.0009999995000000417], [-0.00010909457641216306, 6.180795661855396e-20, 0.10909454004730183], [-0.0002171891529909928, 1.2304935944176878e-19, 0.21718908059460362], [-0.0003252837295698225, 1.8429076226498358e-19, 0.3252836211419054], [-0.0004333783061486522, 2.455321650881984e-19, 0.43337816168920723], [-0.0005414728827274819, 3.067735679114132e-19, 0.541472702236509], [-0.0006495674593063117, 3.6801497073462795e-19, 0.6495672427838108], [-0.0007576620358851414, 4.292563735578428e-19, 0.7576617833311126], [-0.0008657566124639711, 4.9049777638105765e-19, 0.8657563238784144], [-0.0009738511890428008, 5.517391792042724e-19, 0.9738508644257161], [-0.0010819457656216305, 6.129805820274871e-19, 1.081945404973018], [-0.00119004034220046, 6.742219848507019e-19, 1.1900399455203197], [-0.00129813491877929, 7.3546338767391675e-19, 1.2981344860676214], [-0.0014062294953581197, 7.967047904971315e-19, 1.4062290266149233], [-0.0015143240719369493, 8.579461933203463e-19, 1.514323567162225], [-0.001622418648515779, 9.19187596143561e-19, 1.6224181077095268], [-0.0017305132250946087, 9.80428998966776e-19, 1.7305126482568285], [-0.0018386078016734385, 1.0416704017899908e-18, 1.8386071888041304], [-0.0019467023782522683, 1.1029118046132056e-18, 1.9467017293514322], [-0.0020547969548310977, 1.1641532074364204e-18, 2.0547962698987337], [-0.002162891531409927, 1.225394610259635e-18, 2.162890810446035], [-0.002270986107988757, 1.2866360130828497e-18, 2.270985350993337], [-0.002379080684567586, 1.3478774159060643e-18, 2.3790798915406386], [-0.0024871752611464156, 1.409118818729279e-18, 2.48717443208794], [-0.0025952698377252454, 1.4703602215524937e-18, 2.5952689726352416], [-0.0027033644143040748, 1.5316016243757084e-18, 2.703363513182543], [-0.002811458990882904, 1.592843027198923e-18, 2.8114580537298446], [-0.0029195535674617335, 1.6540844300221378e-18, 2.919552594277146], [-0.0030276481440405633, 1.7153258328453524e-18, 3.027647134824448], [-0.0031357427206193927, 1.776567235668567e-18, 3.1357416753717495], [-0.003243837297198222, 1.837808638491782e-18, 3.243836215919051], [-0.003351931873777052, 1.8990500413149967e-18, 3.3519307564663525], [-0.0034600264503558812, 1.960291444138211e-18, 3.460025297013654], [-0.0035681210269347106, 2.021532846961426e-18, 3.5681198375609555], [-0.0036762156035135404, 2.0827742497846406e-18, 3.6762143781082575], [-0.0037843101800923698, 2.1440156526078554e-18, 3.784308918655559], [-0.003892404756671199, 2.20525705543107e-18, 3.8924034592028605], [-0.0040004993332500285, 2.2664984582542846e-18, 4.000497999750162], [-0.004108593909828858, 2.3277398610774994e-18, 4.1085925402974635], [-0.004216688486407687, 2.388981263900714e-18, 4.216687080844765], [-0.0043247830629865175, 2.450222666723929e-18, 4.3247816213920665], [-0.004432877639565347, 2.511464069547143e-18, 4.432876161939368], [-0.004540972216144176, 2.5727054723703577e-18, 4.5409707024866695], [-0.004649066792723006, 2.6339468751935725e-18, 4.649065243033972], [-0.004757161369301835, 2.6951882780167872e-18, 4.757159783581273], [-0.004865255945880664, 2.7564296808400016e-18, 4.865254324128575], [-0.004973350522459495, 2.8176710836632164e-18, 4.973348864675876], [-0.005081445099038324, 2.878912486486431e-18, 5.081443405223178], [-0.005189539675617153, 2.940153889309646e-18, 5.189537945770479], [-0.005297634252195983, 3.0013952921328607e-18, 5.297632486317781], [-0.005405728828774812, 3.062636694956075e-18, 5.405727026865082], [-0.0055138234053536414, 3.12387809777929e-18, 5.513821567412384], [-0.005621917981932471, 3.1851195006025047e-18, 5.621916107959685], [-0.005730012558511301, 3.2463609034257194e-18, 5.730010648506987], [-0.00583810713509013, 3.307602306248934e-18, 5.838105189054288], [-0.00594620171166896, 3.3688437090721486e-18, 5.94619972960159], [-0.006054296288247789, 3.4300851118953634e-18, 6.054294270148892], [-0.0061623908648266185, 3.4913265147185785e-18, 6.162388810696194], [-0.006270485441405448, 3.5525679175417925e-18, 6.270483351243495], [-0.006378580017984277, 3.613809320365007e-18, 6.378577891790797], [-0.0064866745945631075, 3.675050723188222e-18, 6.486672432338098], [-0.006594769171141937, 3.736292126011437e-18, 6.5947669728854], [-0.006702863747720766, 3.797533528834652e-18, 6.702861513432701], [-0.006810958324299596, 3.8587749316578664e-18, 6.810956053980003], [-0.006919052900878425, 3.920016334481081e-18, 6.919050594527304], [-0.007027147477457254, 3.981257737304295e-18, 7.027145135074606], [-0.007135242054036084, 4.04249914012751e-18, 7.135239675621907], [-0.007243336630614914, 4.103740542950725e-18, 7.243334216169209], [-0.007351431207193743, 4.1649819457739395e-18, 7.351428756716511], [-0.007459525783772573, 4.226223348597154e-18, 7.459523297263813], [-0.007567620360351402, 4.287464751420369e-18, 7.567617837811114], [-0.0076757149369302315, 4.348706154243584e-18, 7.675712378358416], [-0.007783809513509061, 4.409947557066799e-18, 7.783806918905717], [-0.00789190409008789, 4.4711889598900134e-18, 7.891901459453019], [-0.00799999866666672, 4.5324303627132274e-18, 7.99999600000032]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.99999895834136e-10, -9.999997083333652e-07, 0.0009999995000000417], [-5.454728593336459e-08, -0.0001090945627753413, 0.10909454004730183], [-1.0859457197089504e-07, -0.00021718912584234922, 0.21718908059460362], [-1.626418580084255e-07, -0.0003252836889093572, 0.3252836211419054], [-2.1668914404595597e-07, -0.0004333782519763651, 0.43337816168920723], [-2.7073643008348645e-07, -0.000541472815043373, 0.541472702236509], [-3.247837161210169e-07, -0.000649567378110381, 0.6495672427838108], [-3.7883100215854736e-07, -0.0007576619411773889, 0.7576617833311126], [-4.328782881960778e-07, -0.0008657565042443969, 0.8657563238784144], [-4.869255742336083e-07, -0.0009738510673114047, 0.9738508644257161], [-5.409728602711386e-07, -0.0010819456303784126, 1.081945404973018], [-5.950201463086691e-07, -0.0011900401934454206, 1.1900399455203197], [-6.490674323461996e-07, -0.0012981347565124285, 1.2981344860676214], [-7.0311471838373e-07, -0.0014062293195794364, 1.4062290266149233], [-7.571620044212605e-07, -0.0015143238826464444, 1.514323567162225], [-8.112092904587909e-07, -0.0016224184457134523, 1.6224181077095268], [-8.652565764963214e-07, -0.0017305130087804602, 1.7305126482568285], [-9.193038625338518e-07, -0.0018386075718474682, 1.8386071888041304], [-9.733511485713823e-07, -0.0019467021349144759, 1.9467017293514322], [-1.0273984346089126e-06, -0.002054796697981484, 2.0547962698987337], [-1.081445720646443e-06, -0.0021628912610484915, 2.162890810446035], [-1.1354930066839734e-06, -0.002270985824115499, 2.270985350993337], [-1.1895402927215036e-06, -0.002379080387182507, 2.3790798915406386], [-1.243587578759034e-06, -0.0024871749502495145, 2.48717443208794], [-1.2976348647965645e-06, -0.0025952695133165224, 2.5952689726352416], [-1.3516821508340947e-06, -0.0027033640763835303, 2.703363513182543], [-1.405729436871625e-06, -0.002811458639450538, 2.8114580537298446], [-1.4597767229091554e-06, -0.0029195532025175453, 2.919552594277146], [-1.5138240089466856e-06, -0.0030276477655845533, 3.027647134824448], [-1.5678712949842162e-06, -0.003135742328651561, 3.1357416753717495], [-1.6219185810217466e-06, -0.0032438368917185683, 3.243836215919051], [-1.6759658670592767e-06, -0.0033519314547855767, 3.3519307564663525], [-1.730013153096807e-06, -0.003460026017852584, 3.460025297013654], [-1.7840604391343377e-06, -0.0035681205809195917, 3.5681198375609555], [-1.8381077251718678e-06, -0.0036762151439865996, 3.6762143781082575], [-1.8921550112093982e-06, -0.003784309707053607, 3.784308918655559], [-1.9462022972469286e-06, -0.0038924042701206146, 3.8924034592028605], [-2.000249583284459e-06, -0.004000498833187623, 4.000497999750162], [-2.0542968693219893e-06, -0.0041085933962546305, 4.1085925402974635], [-2.1083441553595197e-06, -0.004216687959321638, 4.216687080844765], [-2.16239144139705e-06, -0.0043247825223886455, 4.3247816213920665], [-2.21643872743458e-06, -0.004432877085455654, 4.432876161939368], [-2.2704860134721104e-06, -0.004540971648522661, 4.5409707024866695], [-2.324533299509641e-06, -0.004649066211589669, 4.649065243033972], [-2.378580585547171e-06, -0.004757160774656677, 4.757159783581273], [-2.432627871584702e-06, -0.004865255337723684, 4.865254324128575], [-2.4866751576222323e-06, -0.004973349900790692, 4.973348864675876], [-2.5407224436597623e-06, -0.0050814444638577, 5.081443405223178], [-2.5947697296972927e-06, -0.005189539026924707, 5.189537945770479], [-2.648817015734823e-06, -0.005297633589991716, 5.297632486317781], [-2.7028643017723534e-06, -0.005405728153058723, 5.405727026865082], [-2.756911587809884e-06, -0.005513822716125731, 5.513821567412384], [-2.810958873847414e-06, -0.005621917279192738, 5.621916107959685], [-2.865006159884944e-06, -0.0057300118422597465, 5.730010648506987], [-2.919053445922475e-06, -0.005838106405326754, 5.838105189054288], [-2.9731007319600053e-06, -0.0059462009683937615, 5.94619972960159], [-3.0271480179975357e-06, -0.00605429553146077, 6.054294270148892], [-3.081195304035066e-06, -0.0061623900945277765, 6.162388810696194], [-3.135242590072596e-06, -0.006270484657594785, 6.270483351243495], [-3.1892898761101264e-06, -0.006378579220661792, 6.378577891790797], [-3.2433371621476567e-06, -0.0064866737837288, 6.486672432338098], [-3.297384448185187e-06, -0.006594768346795808, 6.5947669728854], [-3.3514317342227175e-06, -0.006702862909862816, 6.702861513432701], [-3.405479020260248e-06, -0.006810957472929823, 6.810956053980003], [-3.4595263062977782e-06, -0.006919052035996831, 6.919050594527304], [-3.5135735923353086e-06, -0.007027146599063839, 7.027145135074606], [-3.567620878372839e-06, -0.007135241162130846, 7.135239675621907], [-3.6216681644103694e-06, -0.007243335725197854, 7.243334216169209], [-3.6757154504478997e-06, -0.0073514302882648624, 7.351428756716511], [-3.72976273648543e-06, -0.007459524851331869, 7.459523297263813], [-3.78381002252296e-06, -0.0075676194143988774, 7.567617837811114], [-3.837857308560491e-06, -0.007675713977465885, 7.675712378358416], [-3.891904594598021e-06, -0.0077838085405328925, 7.783806918905717], [-3.945951880635551e-06, -0.0078919031035999, 7.891901459453019], [-3.9999991666730816e-06, -0.007999997666666907, 7.99999600000032]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.999993333334667e-07, -9.999996666681784e-10, 0.0009999995000000417], [0.0001090945218648794, -1.0909455822989462e-07, 0.10909454004730183], [0.00021718904439642535, -2.171891167931211e-07, 0.21718908059460362], [0.00032528356692797125, -3.252836753563475e-07, 0.3252836211419054], [0.0004333780894595172, -4.33378233919574e-07, 0.43337816168920723], [0.0005414726119910632, -5.414727924828005e-07, 0.541472702236509], [0.0006495671345226092, -6.495673510460269e-07, 0.6495672427838108], [0.000757661657054155, -7.576619096092533e-07, 0.7576617833311126], [0.000865756179585701, -8.657564681724797e-07, 0.8657563238784144], [0.0009738507021172468, -9.738510267357063e-07, 0.9738508644257161], [0.0010819452246487928, -1.0819455852989326e-06, 1.081945404973018], [0.0011900397471803386, -1.190040143862159e-06, 1.1900399455203197], [0.0012981342697118846, -1.2981347024253855e-06, 1.2981344860676214], [0.0014062287922434306, -1.406229260988612e-06, 1.4062290266149233], [0.0015143233147749764, -1.5143238195518383e-06, 1.514323567162225], [0.0016224178373065224, -1.6224183781150649e-06, 1.6224181077095268], [0.0017305123598380682, -1.7305129366782912e-06, 1.7305126482568285], [0.0018386068823696142, -1.8386074952415177e-06, 1.8386071888041304], [0.0019467014049011602, -1.946702053804744e-06, 1.9467017293514322], [0.002054795927432706, -2.0547966123679704e-06, 2.0547962698987337], [0.0021628904499642514, -2.1628911709311963e-06, 2.162890810446035], [0.0022709849724957976, -2.2709857294944226e-06, 2.270985350993337], [0.002379079495027343, -2.379080288057649e-06, 2.3790798915406386], [0.002487174017558889, -2.4871748466208753e-06, 2.48717443208794], [0.0025952685400904346, -2.5952694051841016e-06, 2.5952689726352416], [0.00270336306262198, -2.7033639637473275e-06, 2.703363513182543], [0.0028114575851535257, -2.811458522310554e-06, 2.8114580537298446], [0.0029195521076850715, -2.91955308087378e-06, 2.919552594277146], [0.0030276466302166173, -3.0276476394370065e-06, 3.027647134824448], [0.003135741152748163, -3.1357421980002324e-06, 3.1357416753717495], [0.003243835675279709, -3.2438367565634587e-06, 3.243836215919051], [0.0033519301978112543, -3.351931315126685e-06, 3.3519307564663525], [0.0034600247203428, -3.4600258736899114e-06, 3.460025297013654], [0.003568119242874346, -3.5681204322531377e-06, 3.5681198375609555], [0.0036762137654058917, -3.6762149908163636e-06, 3.6762143781082575], [0.0037843082879374375, -3.78430954937959e-06, 3.784308918655559], [0.0038924028104689833, -3.892404107942816e-06, 3.8924034592028605], [0.004000497333000529, -4.000498666506042e-06, 4.000497999750162], [0.004108591855532074, -4.108593225069269e-06, 4.1085925402974635], [0.00421668637806362, -4.216687783632495e-06, 4.216687080844765], [0.004324780900595166, -4.3247823421957216e-06, 4.3247816213920665], [0.004432875423126711, -4.4328769007589475e-06, 4.432876161939368], [0.004540969945658257, -4.540971459322173e-06, 4.5409707024866695], [0.004649064468189803, -4.6490660178854e-06, 4.649065243033972], [0.004757158990721349, -4.757160576448626e-06, 4.757159783581273], [0.004865253513252895, -4.865255135011853e-06, 4.865254324128575], [0.00497334803578444, -4.973349693575079e-06, 4.973348864675876], [0.005081442558315986, -5.0814442521383046e-06, 5.081443405223178], [0.005189537080847532, -5.189538810701531e-06, 5.189537945770479], [0.005297631603379077, -5.297633369264757e-06, 5.297632486317781], [0.005405726125910623, -5.405727927827984e-06, 5.405727026865082], [0.005513820648442169, -5.51382248639121e-06, 5.513821567412384], [0.005621915170973714, -5.621917044954436e-06, 5.621916107959685], [0.00573000969350526, -5.7300116035176625e-06, 5.730010648506987], [0.005838104216036806, -5.8381061620808884e-06, 5.838105189054288], [0.005946198738568351, -5.946200720644114e-06, 5.94619972960159], [0.006054293261099897, -6.054295279207341e-06, 6.054294270148892], [0.006162387783631444, -6.162389837770567e-06, 6.162388810696194], [0.006270482306162989, -6.270484396333794e-06, 6.270483351243495], [0.006378576828694534, -6.37857895489702e-06, 6.378577891790797], [0.006486671351226081, -6.4866735134602456e-06, 6.486672432338098], [0.006594765873757626, -6.594768072023472e-06, 6.5947669728854], [0.006702860396289171, -6.702862630586698e-06, 6.702861513432701], [0.006810954918820718, -6.810957189149925e-06, 6.810956053980003], [0.006919049441352263, -6.919051747713151e-06, 6.919050594527304], [0.007027143963883808, -7.027146306276377e-06, 7.027145135074606], [0.0071352384864153545, -7.1352408648396035e-06, 7.135239675621907], [0.0072433330089469, -7.243335423402829e-06, 7.243334216169209], [0.007351427531478446, -7.351429981966056e-06, 7.351428756716511], [0.007459522054009992, -7.459524540529282e-06, 7.459523297263813], [0.007567616576541538, -7.567619099092508e-06, 7.567617837811114], [0.007675711099073083, -7.675713657655734e-06, 7.675712378358416], [0.007783805621604629, -7.783808216218961e-06, 7.783806918905717], [0.007891900144136174, -7.891902774782187e-06, 7.891901459453019], [0.007999994666667721, -7.999997333345412e-06, 7.99999600000032]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0007074598924439701, 7.074601282640285e-07, 0.0007067531394223398], [0.0771800501581104, 7.718007588480407e-05, 0.07710294722373714], [0.15365264042377683, 0.00015365269164134413, 0.15349914130805195], [0.23012523068944327, 0.0002301253073978842, 0.22989533539236678], [0.30659782095510973, 0.00030659792315442425, 0.3062915294766816], [0.3830704112207761, 0.00038307053891096425, 0.3826877235609964], [0.4595430014864426, 0.00045954315466750436, 0.4590839176453112], [0.536015591752109, 0.0005360157704240444, 0.5354801117296261], [0.6124881820177754, 0.0006124883861805845, 0.6118763058139408], [0.6889607722834418, 0.0006889610019371245, 0.6882724998982557], [0.7654333625491083, 0.0007654336176936645, 0.7646686939825703], [0.8419059528147746, 0.0008419062334502045, 0.8410648880668852], [0.9183785430804411, 0.0009183788492067446, 0.9174610821512], [0.9948511333461076, 0.0009948514649632846, 0.9938572762355148], [1.0713237236117739, 0.0010713240807198247, 1.0702534703198296], [1.1477963138774403, 0.0011477966964763648, 1.1466496644041444], [1.2242689041431067, 0.0012242693122329047, 1.2230458584884591], [1.3007414944087732, 0.0013007419279894448, 1.2994420525727741], [1.3772140846744396, 0.001377214543745985, 1.3758382466570889], [1.4536866749401058, 0.0014536871595025246, 1.4522344407414034], [1.530159265205772, 0.0015301597752590645, 1.5286306348257181], [1.6066318554714387, 0.0016066323910156046, 1.605026828910033], [1.683104445737105, 0.0016831050067721445, 1.6814230229943474], [1.7595770360027712, 0.0017595776225286842, 1.7578192170786622], [1.8360496262684374, 0.0018360502382852243, 1.8342154111629767], [1.9125222165341036, 0.0019125228540417642, 1.9106116052472915], [1.9889948067997698, 0.001988995469798304, 1.987007799331606], [2.065467397065436, 0.0020654680855548436, 2.0634039934159207], [2.1419399873311025, 0.0021419407013113837, 2.1398001875002355], [2.218412577596769, 0.002218413317067924, 2.2161963815845502], [2.294885167862435, 0.0022948859328244635, 2.2925925756688645], [2.3713577581281013, 0.0023713585485810036, 2.3689887697531793], [2.4478303483937673, 0.0024478311643375433, 2.445384963837494], [2.524302938659434, 0.0025243037800940834, 2.521781157921809], [2.6007755289251, 0.0026007763958506235, 2.598177352006123], [2.677248119190766, 0.002677249011607163, 2.674573546090438], [2.7537207094564327, 0.002753721627363703, 2.7509697401747526], [2.8301932997220987, 0.0028301942431202425, 2.8273659342590673], [2.906665889987765, 0.0029066668588767827, 2.903762128343382], [2.9831384802534315, 0.0029831394746333223, 2.9801583224276964], [3.0596110705190975, 0.003059612090389863, 3.056554516512011], [3.136083660784764, 0.0031360847061464026, 3.132950710596326], [3.21255625105043, 0.0032125573219029422, 3.2093469046806407], [3.289028841316097, 0.0032890299376594823, 3.2857430987649554], [3.3655014315817633, 0.003365502553416022, 3.3621392928492697], [3.4419740218474293, 0.0034419751691725617, 3.4385354869335845], [3.5184466121130957, 0.0035184477849291023, 3.514931681017899], [3.5949192023787617, 0.003594920400685642, 3.591327875102214], [3.671391792644428, 0.0036713930164421816, 3.6677240691865283], [3.747864382910094, 0.0037478656321987217, 3.744120263270843], [3.8243369731757606, 0.0038243382479552614, 3.8205164573551578], [3.9008095634414266, 0.003900810863711801, 3.8969126514394725], [3.977282153707093, 0.003977283479468341, 3.9733088455237873], [4.0537547439727595, 0.004053756095224881, 4.049705039608102], [4.130227334238425, 0.004130228710981421, 4.126101233692417], [4.2066999245040915, 0.004206701326737961, 4.202497427776731], [4.283172514769759, 0.004283173942494501, 4.278893621861045], [4.359645105035424, 0.004359646558251041, 4.35528981594536], [4.436117695301091, 0.004436119174007581, 4.431686010029675], [4.512590285566757, 0.00451259178976412, 4.50808220411399], [4.589062875832424, 0.004589064405520661, 4.584478398198304], [4.665535466098089, 0.0046655370212772005, 4.660874592282619], [4.742008056363756, 0.00474200963703374, 4.737270786366934], [4.818480646629422, 0.00481848225279028, 4.813666980451249], [4.8949532368950885, 0.0048949548685468195, 4.8900631745355625], [4.971425827160754, 0.00497142748430336, 4.966459368619877], [5.0478984174264205, 0.0050479001000599, 5.042855562704192], [5.124371007692087, 0.00512437271581644, 5.119251756788507], [5.200843597957753, 0.00520084533157298, 5.1956479508728215], [5.27731618822342, 0.00527731794732952, 5.272044144957136], [5.353788778489086, 0.005353790563086059, 5.348440339041451], [5.430261368754753, 0.005430263178842599, 5.424836533125766], [5.506733959020418, 0.005506735794599139, 5.5012327272100805], [5.583206549286085, 0.005583208410355678, 5.577628921294395], [5.659679139551751, 0.005659681026112219, 5.654025115378709]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.537301083480376e-07, 0.0007074601577415348, 0.0007067531394223398], [-3.859004276613117e-05, 0.07718007910064068, 0.07710294722373714], [-7.682635542391431e-05, 0.15365269804353981, 0.15349914130805195], [-0.00011506266808169746, 0.23012531698643895, 0.22989533539236678], [-0.0001532989807394806, 0.3065979359293381, 0.3062915294766816], [-0.00019153529339726373, 0.38307055487223723, 0.3826877235609964], [-0.00022977160605504684, 0.4595431738151364, 0.4590839176453112], [-0.00026800791871283, 0.5360157927580355, 0.5354801117296261], [-0.0003062442313706131, 0.6124884117009346, 0.6118763058139408], [-0.00034448054402839626, 0.6889610306438337, 0.6882724998982557], [-0.0003827168566861794, 0.7654336495867328, 0.7646686939825703], [-0.00042095316934396247, 0.8419062685296319, 0.8410648880668852], [-0.00045918948200174563, 0.9183788874725312, 0.9174610821512], [-0.0004974257946595287, 0.9948515064154302, 0.9938572762355148], [-0.000535662107317312, 1.0713241253583294, 1.0702534703198296], [-0.000573898419975095, 1.1477967443012285, 1.1466496644041444], [-0.0006121347326328782, 1.2242693632441277, 1.2230458584884591], [-0.0006503710452906614, 1.3007419821870267, 1.2994420525727741], [-0.0006886073579484445, 1.3772146011299258, 1.3758382466570889], [-0.0007268436706062275, 1.453687220072825, 1.4522344407414034], [-0.0007650799832640107, 1.5301598390157238, 1.5286306348257181], [-0.0008033162959217937, 1.6066324579586229, 1.605026828910033], [-0.0008415526085795767, 1.6831050769015217, 1.6814230229943474], [-0.0008797889212373598, 1.7595776958444207, 1.7578192170786622], [-0.0009180252338951428, 1.83605031478732, 1.8342154111629767], [-0.0009562615465529258, 1.9125229337302188, 1.9106116052472915], [-0.0009944978592107089, 1.9889955526731178, 1.987007799331606], [-0.0010327341718684919, 2.0654681716160166, 2.0634039934159207], [-0.001070970484526275, 2.1419407905589156, 2.1398001875002355], [-0.001109206797184058, 2.2184134095018146, 2.2161963815845502], [-0.001147443109841841, 2.2948860284447137, 2.2925925756688645], [-0.0011856794224996243, 2.3713586473876127, 2.3689887697531793], [-0.0012239157351574073, 2.4478312663305117, 2.445384963837494], [-0.0012621520478151903, 2.5243038852734108, 2.521781157921809], [-0.0013003883604729735, 2.6007765042163093, 2.598177352006123], [-0.0013386246731307565, 2.6772491231592084, 2.674573546090438], [-0.0013768609857885395, 2.7537217421021074, 2.7509697401747526], [-0.0014150972984463225, 2.8301943610450064, 2.8273659342590673], [-0.0014533336111041057, 2.9066669799879055, 2.903762128343382], [-0.0014915699237618887, 2.9831395989308045, 2.9801583224276964], [-0.0015298062364196717, 3.059612217873703, 3.056554516512011], [-0.0015680425490774547, 3.1360848368166026, 3.132950710596326], [-0.001606278861735238, 3.2125574557595016, 3.2093469046806407], [-0.001644515174393021, 3.2890300747024, 3.2857430987649554], [-0.001682751487050804, 3.3655026936452996, 3.3621392928492697], [-0.001720987799708587, 3.441975312588198, 3.4385354869335845], [-0.0017592241123663703, 3.5184479315310973, 3.514931681017899], [-0.001797460425024153, 3.594920550473996, 3.591327875102214], [-0.0018356967376819363, 3.6713931694168953, 3.6677240691865283], [-0.0018739330503397195, 3.7478657883597943, 3.744120263270843], [-0.0019121693629975023, 3.824338407302693, 3.8205164573551578], [-0.0019504056756552855, 3.9008110262455924, 3.8969126514394725], [-0.0019886419883130687, 3.977283645188491, 3.9733088455237873], [-0.0020268783009708513, 4.0537562641313905, 4.049705039608102], [-0.0020651146136286347, 4.130228883074289, 4.126101233692417], [-0.0021033509262864177, 4.206701502017188, 4.202497427776731], [-0.0021415872389442007, 4.283174120960087, 4.278893621861045], [-0.0021798235516019837, 4.359646739902986, 4.35528981594536], [-0.0022180598642597667, 4.436119358845885, 4.431686010029675], [-0.0022562961769175497, 4.512591977788784, 4.50808220411399], [-0.002294532489575333, 4.589064596731683, 4.584478398198304], [-0.002332768802233116, 4.665537215674583, 4.660874592282619], [-0.002371005114890899, 4.742009834617481, 4.737270786366934], [-0.002409241427548682, 4.81848245356038, 4.813666980451249], [-0.002447477740206465, 4.894955072503278, 4.8900631745355625], [-0.002485714052864248, 4.971427691446178, 4.966459368619877], [-0.002523950365522031, 5.0479003103890765, 5.042855562704192], [-0.0025621866781798145, 5.124372929331976, 5.119251756788507], [-0.0026004229908375975, 5.200845548274875, 5.1956479508728215], [-0.0026386593034953805, 5.277318167217774, 5.272044144957136], [-0.0026768956161531635, 5.353790786160673, 5.348440339041451], [-0.0027151319288109465, 5.430263405103571, 5.424836533125766], [-0.0027533682414687295, 5.506736024046471, 5.5012327272100805], [-0.0027916045541265125, 5.583208642989369, 5.577628921294395], [-0.0028298408667842955, 5.659681261932269, 5.654025115378709]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.0007074602461740637, 4.008143543238773e-19, 0.0007067531394223398], [-0.07718008874815156, 4.3726679492657585e-17, 0.07710294722373714], [-0.15365271725012905, 8.70525446309913e-17, 0.15349914130805195], [-0.23012534575210655, 1.30378409769325e-16, 0.22989533539236678], [-0.306597974254084, 1.7370427490765872e-16, 0.3062915294766816], [-0.38307060275606153, 2.170301400459924e-16, 0.3826877235609964], [-0.45954323125803903, 2.603560051843261e-16, 0.4590839176453112], [-0.5360158597600165, 3.0368187032265983e-16, 0.5354801117296261], [-0.612488488261994, 3.470077354609935e-16, 0.6118763058139408], [-0.6889611167639715, 3.9033360059932723e-16, 0.6882724998982557], [-0.765433745265949, 4.336594657376609e-16, 0.7646686939825703], [-0.8419063737679264, 4.769853308759946e-16, 0.8410648880668852], [-0.918379002269904, 5.203111960143283e-16, 0.9174610821512], [-0.9948516307718814, 5.63637061152662e-16, 0.9938572762355148], [-1.071324259273859, 6.069629262909957e-16, 1.0702534703198296], [-1.1477968877758364, 6.502887914293294e-16, 1.1466496644041444], [-1.2242695162778139, 6.936146565676631e-16, 1.2230458584884591], [-1.3007421447797913, 7.369405217059968e-16, 1.2994420525727741], [-1.377214773281769, 7.802663868443305e-16, 1.3758382466570889], [-1.4536874017837462, 8.235922519826642e-16, 1.4522344407414034], [-1.5301600302857237, 8.669181171209977e-16, 1.5286306348257181], [-1.606632658787701, 9.102439822593314e-16, 1.605026828910033], [-1.6831052872896783, 9.535698473976649e-16, 1.6814230229943474], [-1.7595779157916556, 9.968957125359986e-16, 1.7578192170786622], [-1.836050544293633, 1.0402215776743322e-15, 1.8342154111629767], [-1.9125231727956102, 1.0835474428126659e-15, 1.9106116052472915], [-1.9889958012975877, 1.1268733079509994e-15, 1.987007799331606], [-2.065468429799565, 1.170199173089333e-15, 2.0634039934159207], [-2.1419410583015424, 1.2135250382276665e-15, 2.1398001875002355], [-2.21841368680352, 1.2568509033660004e-15, 2.2161963815845502], [-2.294886315305497, 1.300176768504334e-15, 2.2925925756688645], [-2.3713589438074743, 1.3435026336426677e-15, 2.3689887697531793], [-2.4478315723094517, 1.386828498781001e-15, 2.445384963837494], [-2.524304200811429, 1.4301543639193347e-15, 2.521781157921809], [-2.600776829313406, 1.4734802290576684e-15, 2.598177352006123], [-2.6772494578153836, 1.516806094196002e-15, 2.674573546090438], [-2.753722086317361, 1.5601319593343355e-15, 2.7509697401747526], [-2.8301947148193385, 1.6034578244726692e-15, 2.8273659342590673], [-2.9066673433213155, 1.6467836896110029e-15, 2.903762128343382], [-2.983139971823293, 1.6901095547493365e-15, 2.9801583224276964], [-3.0596126003252704, 1.7334354198876702e-15, 3.056554516512011], [-3.136085228827248, 1.7767612850260035e-15, 3.132950710596326], [-3.2125578573292253, 1.820087150164337e-15, 3.2093469046806407], [-3.2890304858312023, 1.863413015302671e-15, 3.2857430987649554], [-3.3655031143331797, 1.9067388804410045e-15, 3.3621392928492697], [-3.441975742835157, 1.950064745579338e-15, 3.4385354869335845], [-3.5184483713371346, 1.993390610717672e-15, 3.514931681017899], [-3.5949209998391116, 2.0367164758560055e-15, 3.591327875102214], [-3.671393628341089, 2.0800423409943392e-15, 3.6677240691865283], [-3.7478662568430665, 2.123368206132673e-15, 3.744120263270843], [-3.824338885345044, 2.166694071271006e-15, 3.8205164573551578], [-3.900811513847021, 2.21001993640934e-15, 3.8969126514394725], [-3.9772841423489984, 2.2533458015476735e-15, 3.9733088455237873], [-4.053756770850976, 2.296671666686007e-15, 4.049705039608102], [-4.130229399352953, 2.3399975318243404e-15, 4.126101233692417], [-4.206702027854931, 2.383323396962674e-15, 4.202497427776731], [-4.283174656356908, 2.4266492621010078e-15, 4.278893621861045], [-4.359647284858885, 2.4699751272393415e-15, 4.35528981594536], [-4.436119913360862, 2.513300992377675e-15, 4.431686010029675], [-4.51259254186284, 2.556626857516009e-15, 4.50808220411399], [-4.589065170364817, 2.5999527226543425e-15, 4.584478398198304], [-4.6655377988667945, 2.643278587792676e-15, 4.660874592282619], [-4.742010427368772, 2.68660445293101e-15, 4.737270786366934], [-4.818483055870749, 2.7299303180693435e-15, 4.813666980451249], [-4.894955684372727, 2.773256183207677e-15, 4.8900631745355625], [-4.971428312874703, 2.81658204834601e-15, 4.966459368619877], [-5.047900941376681, 2.8599079134843437e-15, 5.042855562704192], [-5.124373569878658, 2.9032337786226774e-15, 5.119251756788507], [-5.200846198380636, 2.946559643761011e-15, 5.1956479508728215], [-5.277318826882613, 2.9898855088993448e-15, 5.272044144957136], [-5.353791455384591, 3.033211374037679e-15, 5.348440339041451], [-5.430264083886568, 3.0765372391760125e-15, 5.424836533125766], [-5.506736712388546, 3.119863104314346e-15, 5.5012327272100805], [-5.583209340890523, 3.16318896945268e-15, 5.577628921294395], [-5.6596819693925, 3.2065148345910127e-15, 5.654025115378709]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.5373010834883914e-07, -0.0007074601577415348, 0.0007067531394223398], [-3.859004276621863e-05, -0.07718007910064068, 0.07710294722373714], [-7.682635542408841e-05, -0.15365269804353981, 0.15349914130805195], [-0.00011506266808195821, -0.23012531698643895, 0.22989533539236678], [-0.000153298980739828, -0.3065979359293381, 0.3062915294766816], [-0.0001915352933976978, -0.38307055487223723, 0.3826877235609964], [-0.00022977160605556758, -0.4595431738151364, 0.4590839176453112], [-0.00026800791871343737, -0.5360157927580355, 0.5354801117296261], [-0.00030624423137130715, -0.6124884117009346, 0.6118763058139408], [-0.00034448054402917694, -0.6889610306438337, 0.6882724998982557], [-0.0003827168566870467, -0.7654336495867328, 0.7646686939825703], [-0.0004209531693449165, -0.8419062685296319, 0.8410648880668852], [-0.00045918948200278625, -0.9183788874725312, 0.9174610821512], [-0.000497425794660656, -0.9948515064154302, 0.9938572762355148], [-0.0005356621073185258, -1.0713241253583294, 1.0702534703198296], [-0.0005738984199763956, -1.1477967443012285, 1.1466496644041444], [-0.0006121347326342654, -1.2242693632441277, 1.2230458584884591], [-0.0006503710452921352, -1.3007419821870267, 1.2994420525727741], [-0.000688607357950005, -1.3772146011299258, 1.3758382466570889], [-0.0007268436706078748, -1.453687220072825, 1.4522344407414034], [-0.0007650799832657444, -1.5301598390157238, 1.5286306348257181], [-0.0008033162959236142, -1.6066324579586229, 1.605026828910033], [-0.0008415526085814838, -1.6831050769015217, 1.6814230229943474], [-0.0008797889212393535, -1.7595776958444207, 1.7578192170786622], [-0.0009180252338972234, -1.83605031478732, 1.8342154111629767], [-0.000956261546555093, -1.9125229337302188, 1.9106116052472915], [-0.0009944978592129627, -1.9889955526731178, 1.987007799331606], [-0.0010327341718708324, -2.0654681716160166, 2.0634039934159207], [-0.001070970484528702, -2.1419407905589156, 2.1398001875002355], [-0.001109206797186572, -2.2184134095018146, 2.2161963815845502], [-0.0011474431098444414, -2.2948860284447137, 2.2925925756688645], [-0.0011856794225023112, -2.3713586473876127, 2.3689887697531793], [-0.001223915735160181, -2.4478312663305117, 2.445384963837494], [-0.0012621520478180506, -2.5243038852734108, 2.521781157921809], [-0.0013003883604759204, -2.6007765042163093, 2.598177352006123], [-0.00133862467313379, -2.6772491231592084, 2.674573546090438], [-0.0013768609857916598, -2.7537217421021074, 2.7509697401747526], [-0.0014150972984495296, -2.8301943610450064, 2.8273659342590673], [-0.0014533336111073993, -2.9066669799879055, 2.903762128343382], [-0.001491569923765269, -2.9831395989308045, 2.9801583224276964], [-0.0015298062364231385, -3.059612217873703, 3.056554516512011], [-0.0015680425490810083, -3.1360848368166026, 3.132950710596326], [-0.001606278861738878, -3.2125574557595016, 3.2093469046806407], [-0.0016445151743967477, -3.2890300747024, 3.2857430987649554], [-0.0016827514870546172, -3.3655026936452996, 3.3621392928492697], [-0.0017209877997124872, -3.441975312588198, 3.4385354869335845], [-0.001759224112370357, -3.5184479315310973, 3.514931681017899], [-0.0017974604250282267, -3.594920550473996, 3.591327875102214], [-0.0018356967376860964, -3.6713931694168953, 3.6677240691865283], [-0.001873933050343966, -3.7478657883597943, 3.744120263270843], [-0.0019121693630018356, -3.824338407302693, 3.8205164573551578], [-0.0019504056756597054, -3.9008110262455924, 3.8969126514394725], [-0.001988641988317575, -3.977283645188491, 3.9733088455237873], [-0.002026878300975445, -4.0537562641313905, 4.049705039608102], [-0.0020651146136333146, -4.130228883074289, 4.126101233692417], [-0.0021033509262911843, -4.206701502017188, 4.202497427776731], [-0.002141587238949054, -4.283174120960087, 4.278893621861045], [-0.0021798235516069238, -4.359646739902986, 4.35528981594536], [-0.0022180598642647935, -4.436119358845885, 4.431686010029675], [-0.0022562961769226632, -4.512591977788784, 4.50808220411399], [-0.002294532489580533, -4.589064596731683, 4.584478398198304], [-0.0023327688022384023, -4.665537215674583, 4.660874592282619], [-0.002371005114896272, -4.742009834617481, 4.737270786366934], [-0.0024092414275541417, -4.81848245356038, 4.813666980451249], [-0.002447477740212012, -4.894955072503278, 4.8900631745355625], [-0.0024857140528698816, -4.971427691446178, 4.966459368619877], [-0.002523950365527751, -5.0479003103890765, 5.042855562704192], [-0.0025621866781856207, -5.124372929331976, 5.119251756788507], [-0.0026004229908434904, -5.200845548274875, 5.1956479508728215], [-0.00263865930350136, -5.277318167217774, 5.272044144957136], [-0.00267689561615923, -5.353790786160673, 5.348440339041451], [-0.0027151319288170996, -5.430263405103571, 5.424836533125766], [-0.0027533682414749693, -5.506736024046471, 5.5012327272100805], [-0.002791604554132839, -5.583208642989369, 5.577628921294395], [-0.0028298408667907084, -5.659681261932269, 5.654025115378709]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0007074598924439701, -7.074601282650666e-07, 0.0007067531394223398], [0.0771800501581104, -7.71800758849173e-05, 0.07710294722373714], [0.15365264042377683, -0.00015365269164156956, 0.15349914130805195], [0.23012523068944327, -0.0002301253073982218, 0.22989533539236678], [0.30659782095510973, -0.00030659792315487403, 0.3062915294766816], [0.3830704112207761, -0.00038307053891152636, 0.3826877235609964], [0.4595430014864426, -0.0004595431546681785, 0.4590839176453112], [0.536015591752109, -0.0005360157704248307, 0.5354801117296261], [0.6124881820177754, -0.0006124883861814831, 0.6118763058139408], [0.6889607722834418, -0.0006889610019381353, 0.6882724998982557], [0.7654333625491083, -0.0007654336176947874, 0.7646686939825703], [0.8419059528147746, -0.0008419062334514397, 0.8410648880668852], [0.9183785430804411, -0.0009183788492080919, 0.9174610821512], [0.9948511333461076, -0.0009948514649647442, 0.9938572762355148], [1.0713237236117739, -0.0010713240807213964, 1.0702534703198296], [1.1477963138774403, -0.0011477966964780486, 1.1466496644041444], [1.2242689041431067, -0.001224269312234701, 1.2230458584884591], [1.3007414944087732, -0.0013007419279913533, 1.2994420525727741], [1.3772140846744396, -0.0013772145437480055, 1.3758382466570889], [1.4536866749401058, -0.0014536871595046575, 1.4522344407414034], [1.530159265205772, -0.0015301597752613095, 1.5286306348257181], [1.6066318554714387, -0.0016066323910179615, 1.605026828910033], [1.683104445737105, -0.0016831050067746137, 1.6814230229943474], [1.7595770360027712, -0.0017595776225312657, 1.7578192170786622], [1.8360496262684374, -0.001836050238287918, 1.8342154111629767], [1.9125222165341036, -0.00191252285404457, 1.9106116052472915], [1.9889948067997698, -0.001988995469801222, 1.987007799331606], [2.065467397065436, -0.002065468085557874, 2.0634039934159207], [2.1419399873311025, -0.002141940701314526, 2.1398001875002355], [2.218412577596769, -0.002218413317071178, 2.2161963815845502], [2.294885167862435, -0.0022948859328278306, 2.2925925756688645], [2.3713577581281013, -0.0023713585485844826, 2.3689887697531793], [2.4478303483937673, -0.0024478311643411346, 2.445384963837494], [2.524302938659434, -0.0025243037800977866, 2.521781157921809], [2.6007755289251, -0.002600776395854439, 2.598177352006123], [2.677248119190766, -0.002677249011611091, 2.674573546090438], [2.7537207094564327, -0.002753721627367743, 2.7509697401747526], [2.8301932997220987, -0.002830194243124395, 2.8273659342590673], [2.906665889987765, -0.002906666858881047, 2.903762128343382], [2.9831384802534315, -0.0029831394746376995, 2.9801583224276964], [3.0596110705190975, -0.0030596120903943515, 3.056554516512011], [3.136083660784764, -0.0031360847061510035, 3.132950710596326], [3.21255625105043, -0.0032125573219076555, 3.2093469046806407], [3.289028841316097, -0.003289029937664308, 3.2857430987649554], [3.3655014315817633, -0.00336550255342096, 3.3621392928492697], [3.4419740218474293, -0.003441975169177612, 3.4385354869335845], [3.5184466121130957, -0.003518447784934264, 3.514931681017899], [3.5949192023787617, -0.003594920400690916, 3.591327875102214], [3.671391792644428, -0.0036713930164475684, 3.6677240691865283], [3.747864382910094, -0.0037478656322042204, 3.744120263270843], [3.8243369731757606, -0.0038243382479608724, 3.8205164573551578], [3.9008095634414266, -0.0039008108637175244, 3.8969126514394725], [3.977282153707093, -0.003977283479474176, 3.9733088455237873], [4.0537547439727595, -0.004053756095230829, 4.049705039608102], [4.130227334238425, -0.00413022871098748, 4.126101233692417], [4.2066999245040915, -0.004206701326744133, 4.202497427776731], [4.283172514769759, -0.004283173942500785, 4.278893621861045], [4.359645105035424, -0.004359646558257437, 4.35528981594536], [4.436117695301091, -0.004436119174014089, 4.431686010029675], [4.512590285566757, -0.004512591789770742, 4.50808220411399], [4.589062875832424, -0.004589064405527393, 4.584478398198304], [4.665535466098089, -0.004665537021284046, 4.660874592282619], [4.742008056363756, -0.004742009637040697, 4.737270786366934], [4.818480646629422, -0.00481848225279735, 4.813666980451249], [4.8949532368950885, -0.004894954868554002, 4.8900631745355625], [4.971425827160754, -0.004971427484310654, 4.966459368619877], [5.0478984174264205, -0.005047900100067306, 5.042855562704192], [5.124371007692087, -0.005124372715823958, 5.119251756788507], [5.200843597957753, -0.00520084533158061, 5.1956479508728215], [5.27731618822342, -0.005277317947337263, 5.272044144957136], [5.353788778489086, -0.005353790563093914, 5.348440339041451], [5.430261368754753, -0.005430263178850567, 5.424836533125766], [5.506733959020418, -0.005506735794607218, 5.5012327272100805], [5.583206549286085, -0.005583208410363871, 5.577628921294395], [5.659679139551751, -0.005659681026120522, 5.654025115378709]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0009999995000000417, 9.999998333333416e-07, 6.123233995736766e-20], [0.10909454004730183, 0.00010909457641216306, 6.68011730372742e-18], [0.21718908059460362, 0.0002171891529909928, 1.3299002267497472e-17], [0.3252836211419054, 0.0003252837295698225, 1.9917887231267525e-17], [0.43337816168920723, 0.0004333783061486522, 2.6536772195037576e-17], [0.541472702236509, 0.0005414728827274819, 3.315565715880763e-17], [0.6495672427838108, 0.0006495674593063117, 3.9774542122577683e-17], [0.7576617833311126, 0.0007576620358851414, 4.639342708634773e-17], [0.8657563238784144, 0.0008657566124639711, 5.3012312050117784e-17], [0.9738508644257161, 0.0009738511890428008, 5.963119701388784e-17], [1.081945404973018, 0.0010819457656216305, 6.625008197765789e-17], [1.1900399455203197, 0.00119004034220046, 7.286896694142793e-17], [1.2981344860676214, 0.00129813491877929, 7.948785190519799e-17], [1.4062290266149233, 0.0014062294953581197, 8.610673686896804e-17], [1.514323567162225, 0.0015143240719369493, 9.272562183273809e-17], [1.6224181077095268, 0.001622418648515779, 9.934450679650815e-17], [1.7305126482568285, 0.0017305132250946087, 1.059633917602782e-16], [1.8386071888041304, 0.0018386078016734385, 1.1258227672404824e-16], [1.9467017293514322, 0.0019467023782522683, 1.192011616878183e-16], [2.0547962698987337, 0.0020547969548310977, 1.2582004665158834e-16], [2.162890810446035, 0.002162891531409927, 1.3243893161535837e-16], [2.270985350993337, 0.002270986107988757, 1.390578165791284e-16], [2.3790798915406386, 0.002379080684567586, 1.4567670154289847e-16], [2.48717443208794, 0.0024871752611464156, 1.522955865066685e-16], [2.5952689726352416, 0.0025952698377252454, 1.5891447147043854e-16], [2.703363513182543, 0.0027033644143040748, 1.6553335643420857e-16], [2.8114580537298446, 0.002811458990882904, 1.721522413979786e-16], [2.919552594277146, 0.0029195535674617335, 1.7877112636174864e-16], [3.027647134824448, 0.0030276481440405633, 1.8539001132551868e-16], [3.1357416753717495, 0.0031357427206193927, 1.9200889628928874e-16], [3.243836215919051, 0.003243837297198222, 1.9862778125305877e-16], [3.3519307564663525, 0.003351931873777052, 2.052466662168288e-16], [3.460025297013654, 0.0034600264503558812, 2.1186555118059884e-16], [3.5681198375609555, 0.0035681210269347106, 2.1848443614436888e-16], [3.6762143781082575, 0.0036762156035135404, 2.2510332110813894e-16], [3.784308918655559, 0.0037843101800923698, 2.3172220607190897e-16], [3.8924034592028605, 0.003892404756671199, 2.38341091035679e-16], [4.000497999750162, 0.0040004993332500285, 2.4495997599944904e-16], [4.1085925402974635, 0.004108593909828858, 2.515788609632191e-16], [4.216687080844765, 0.004216688486407687, 2.581977459269891e-16], [4.3247816213920665, 0.0043247830629865175, 2.6481663089075915e-16], [4.432876161939368, 0.004432877639565347, 2.714355158545292e-16], [4.5409707024866695, 0.004540972216144176, 2.780544008182992e-16], [4.649065243033972, 0.004649066792723006, 2.8467328578206926e-16], [4.757159783581273, 0.004757161369301835, 2.912921707458393e-16], [4.865254324128575, 0.004865255945880664, 2.9791105570960933e-16], [4.973348864675876, 0.004973350522459495, 3.0452994067337936e-16], [5.081443405223178, 0.005081445099038324, 3.1114882563714945e-16], [5.189537945770479, 0.005189539675617153, 3.177677106009195e-16], [5.297632486317781, 0.005297634252195983, 3.243865955646895e-16], [5.405727026865082, 0.005405728828774812, 3.3100548052845955e-16], [5.513821567412384, 0.0055138234053536414, 3.376243654922296e-16], [5.621916107959685, 0.005621917981932471, 3.442432504559996e-16], [5.730010648506987, 0.005730012558511301, 3.5086213541976966e-16], [5.838105189054288, 0.00583810713509013, 3.574810203835397e-16], [5.94619972960159, 0.00594620171166896, 3.6409990534730973e-16], [6.054294270148892, 0.006054296288247789, 3.7071879031107976e-16], [6.162388810696194, 0.0061623908648266185, 3.773376752748498e-16], [6.270483351243495, 0.006270485441405448, 3.8395656023861983e-16], [6.378577891790797, 0.006378580017984277, 3.9057544520238987e-16], [6.486672432338098, 0.0064866745945631075, 3.971943301661599e-16], [6.5947669728854, 0.006594769171141937, 4.0381321512993e-16], [6.702861513432701, 0.006702863747720766, 4.104321000937e-16], [6.810956053980003, 0.006810958324299596, 4.1705098505747006e-16], [6.919050594527304, 0.006919052900878425, 4.236698700212401e-16], [7.027145135074606, 0.007027147477457254, 4.3028875498501013e-16], [7.135239675621907, 0.007135242054036084, 4.3690763994878016e-16], [7.243334216169209, 0.007243336630614914, 4.435265249125502e-16], [7.351428756716511, 0.007351431207193743, 4.501454098763203e-16], [7.459523297263813, 0.007459525783772573, 4.567642948400903e-16], [7.567617837811114, 0.007567620360351402, 4.633831798038604e-16], [7.675712378358416, 0.0076757149369302315, 4.700020647676303e-16], [7.783806918905717, 0.007783809513509061, 4.766209497314004e-16], [7.891901459453019, 0.00789190409008789, 4.832398346951704e-16], [7.99999600000032, 0.00799999866666672, 4.898587196589405e-16]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.999999791663287e-07, 0.0009999998750000027, 6.123233995736766e-20], [-5.454729502445636e-05, 0.10909458095777055, 6.68011730372742e-18], [-0.0001085945900697464, 0.2171891620405411, 1.3299002267497472e-17], [-0.00016264188511503643, 0.32528374312331165, 1.9917887231267525e-17], [-0.00021668918016032646, 0.4333783242060822, 2.6536772195037576e-17], [-0.0002707364752056165, 0.5414729052888527, 3.315565715880763e-17], [-0.0003247837702509065, 0.6495674863716233, 3.9774542122577683e-17], [-0.00037883106529619656, 0.7576620674543938, 4.639342708634773e-17], [-0.00043287836034148656, 0.8657566485371644, 5.3012312050117784e-17], [-0.0004869256553867766, 0.9738512296199349, 5.963119701388784e-17], [-0.0005409729504320666, 1.0819458107027053, 6.625008197765789e-17], [-0.0005950202454773566, 1.1900403917854758, 7.286896694142793e-17], [-0.0006490675405226466, 1.2981349728682465, 7.948785190519799e-17], [-0.0007031148355679367, 1.406229553951017, 8.610673686896804e-17], [-0.0007571621306132267, 1.5143241350337875, 9.272562183273809e-17], [-0.0008112094256585167, 1.6224187161165582, 9.934450679650815e-17], [-0.0008652567207038068, 1.7305132971993287, 1.059633917602782e-16], [-0.0009193040157490968, 1.8386078782820992, 1.1258227672404824e-16], [-0.0009733513107943869, 1.9467024593648696, 1.192011616878183e-16], [-0.0010273986058396767, 2.05479704044764, 1.2582004665158834e-16], [-0.0010814459008849668, 2.1628916215304104, 1.3243893161535837e-16], [-0.0011354931959302566, 2.2709862026131806, 1.390578165791284e-16], [-0.0011895404909755465, 2.379080783695951, 1.4567670154289847e-16], [-0.0012435877860208365, 2.487175364778721, 1.522955865066685e-16], [-0.0012976350810661264, 2.595269945861492, 1.5891447147043854e-16], [-0.0013516823761114162, 2.703364526944262, 1.6553335643420857e-16], [-0.0014057296711567063, 2.8114591080270324, 1.721522413979786e-16], [-0.001459776966201996, 2.9195536891098026, 1.7877112636174864e-16], [-0.0015138242612472862, 3.027648270192573, 1.8539001132551868e-16], [-0.001567871556292576, 3.135742851275343, 1.9200889628928874e-16], [-0.0016219188513378658, 3.2438374323581134, 1.9862778125305877e-16], [-0.001675966146383156, 3.351932013440884, 2.052466662168288e-16], [-0.0017300134414284457, 3.4600265945236544, 2.1186555118059884e-16], [-0.0017840607364737356, 3.5681211756064246, 2.1848443614436888e-16], [-0.0018381080315190256, 3.676215756689195, 2.2510332110813894e-16], [-0.0018921553265643155, 3.784310337771965, 2.3172220607190897e-16], [-0.0019462026216096053, 3.8924049188547354, 2.38341091035679e-16], [-0.002000249916654895, 4.000499499937506, 2.4495997599944904e-16], [-0.0020542972117001852, 4.108594081020276, 2.515788609632191e-16], [-0.0021083445067454753, 4.216688662103047, 2.581977459269891e-16], [-0.002162391801790765, 4.324783243185816, 2.6481663089075915e-16], [-0.002216439096836055, 4.432877824268587, 2.714355158545292e-16], [-0.002270486391881345, 4.540972405351358, 2.780544008182992e-16], [-0.0023245336869266347, 4.649066986434128, 2.8467328578206926e-16], [-0.0023785809819719247, 4.757161567516898, 2.912921707458393e-16], [-0.0024326282770172148, 4.865256148599668, 2.9791105570960933e-16], [-0.002486675572062505, 4.973350729682439, 3.0452994067337936e-16], [-0.0025407228671077945, 5.081445310765209, 3.1114882563714945e-16], [-0.0025947701621530845, 5.189539891847979, 3.177677106009195e-16], [-0.0026488174571983746, 5.29763447293075, 3.243865955646895e-16], [-0.002702864752243664, 5.40572905401352, 3.3100548052845955e-16], [-0.0027569120472889543, 5.513823635096291, 3.376243654922296e-16], [-0.0028109593423342443, 5.62191821617906, 3.442432504559996e-16], [-0.002865006637379534, 5.730012797261831, 3.5086213541976966e-16], [-0.002919053932424824, 5.838107378344602, 3.574810203835397e-16], [-0.002973101227470114, 5.946201959427372, 3.6409990534730973e-16], [-0.0030271485225154037, 6.054296540510142, 3.7071879031107976e-16], [-0.0030811958175606937, 6.162391121592912, 3.773376752748498e-16], [-0.003135243112605984, 6.270485702675683, 3.8395656023861983e-16], [-0.0031892904076512734, 6.378580283758453, 3.9057544520238987e-16], [-0.0032433377026965635, 6.486674864841223, 3.971943301661599e-16], [-0.0032973849977418535, 6.594769445923994, 4.0381321512993e-16], [-0.003351432292787143, 6.702864027006764, 4.104321000937e-16], [-0.0034054795878324332, 6.810958608089535, 4.1705098505747006e-16], [-0.0034595268828777233, 6.919053189172304, 4.236698700212401e-16], [-0.003513574177923013, 7.027147770255075, 4.3028875498501013e-16], [-0.003567621472968303, 7.135242351337845, 4.3690763994878016e-16], [-0.003621668768013593, 7.243336932420616, 4.435265249125502e-16], [-0.003675716063058883, 7.351431513503386, 4.501454098763203e-16], [-0.0037297633581041727, 7.459526094586156, 4.567642948400903e-16], [-0.0037838106531494628, 7.567620675668927, 4.633831798038604e-16], [-0.003837857948194753, 7.675715256751697, 4.700020647676303e-16], [-0.0038919052432400424, 7.783809837834467, 4.766209497314004e-16], [-0.003945952538285332, 7.891904418917237, 4.832398346951704e-16], [-0.003999999833330622, 7.999999000000008, 4.898587196589405e-16]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.001, 5.66553889764798e-19, 6.123233995736766e-20], [-0.10909459459459458, 6.180796691988126e-17, 6.68011730372742e-18], [-0.21718918918918917, 1.2304937994999774e-16, 1.3299002267497472e-17], [-0.32528378378378375, 1.842907929801142e-16, 1.9917887231267525e-17], [-0.43337837837837834, 2.4553220601023067e-16, 2.6536772195037576e-17], [-0.5414729729729729, 3.067736190403471e-16, 3.315565715880763e-17], [-0.6495675675675675, 3.680150320704636e-16, 3.9774542122577683e-17], [-0.7576621621621621, 4.2925644510058006e-16, 4.639342708634773e-17], [-0.8657567567567567, 4.904978581306965e-16, 5.3012312050117784e-17], [-0.9738513513513513, 5.51739271160813e-16, 5.963119701388784e-17], [-1.0819459459459457, 6.129806841909294e-16, 6.625008197765789e-17], [-1.1900405405405403, 6.742220972210458e-16, 7.286896694142793e-17], [-1.298135135135135, 7.3546351025116235e-16, 7.948785190519799e-17], [-1.4062297297297295, 7.967049232812788e-16, 8.610673686896804e-17], [-1.514324324324324, 8.579463363113952e-16, 9.272562183273809e-17], [-1.6224189189189187, 9.191877493415116e-16, 9.934450679650815e-17], [-1.7305135135135132, 9.804291623716283e-16, 1.059633917602782e-16], [-1.8386081081081078, 1.0416705754017447e-15, 1.1258227672404824e-16], [-1.9467027027027024, 1.1029119884318611e-15, 1.192011616878183e-16], [-2.0547972972972968, 1.1641534014619775e-15, 1.2582004665158834e-16], [-2.162891891891891, 1.2253948144920938e-15, 1.3243893161535837e-16], [-2.2709864864864855, 1.2866362275222102e-15, 1.390578165791284e-16], [-2.37908108108108, 1.3478776405523264e-15, 1.4567670154289847e-16], [-2.487175675675674, 1.4091190535824429e-15, 1.522955865066685e-16], [-2.5952702702702686, 1.4703604666125591e-15, 1.5891447147043854e-16], [-2.703364864864863, 1.5316018796426755e-15, 1.6553335643420857e-16], [-2.8114594594594573, 1.5928432926727918e-15, 1.721522413979786e-16], [-2.9195540540540517, 1.6540847057029082e-15, 1.7877112636174864e-16], [-3.027648648648646, 1.7153261187330244e-15, 1.8539001132551868e-16], [-3.1357432432432404, 1.776567531763141e-15, 1.9200889628928874e-16], [-3.2438378378378347, 1.8378089447932573e-15, 1.9862778125305877e-16], [-3.351932432432429, 1.8990503578233737e-15, 2.052466662168288e-16], [-3.4600270270270235, 1.9602917708534897e-15, 2.1186555118059884e-16], [-3.568121621621618, 2.021533183883606e-15, 2.1848443614436888e-16], [-3.676216216216212, 2.0827745969137226e-15, 2.2510332110813894e-16], [-3.7843108108108066, 2.144016009943839e-15, 2.3172220607190897e-16], [-3.892405405405401, 2.205257422973955e-15, 2.38341091035679e-16], [-4.000499999999995, 2.2664988360040715e-15, 2.4495997599944904e-16], [-4.10859459459459, 2.327740249034188e-15, 2.515788609632191e-16], [-4.216689189189184, 2.3889816620643043e-15, 2.581977459269891e-16], [-4.324783783783778, 2.4502230750944208e-15, 2.6481663089075915e-16], [-4.432878378378373, 2.511464488124537e-15, 2.714355158545292e-16], [-4.540972972972967, 2.5727059011546532e-15, 2.780544008182992e-16], [-4.6490675675675615, 2.6339473141847697e-15, 2.8467328578206926e-16], [-4.757162162162156, 2.695188727214886e-15, 2.912921707458393e-16], [-4.86525675675675, 2.756430140245002e-15, 2.9791105570960933e-16], [-4.9733513513513445, 2.8176715532751186e-15, 3.0452994067337936e-16], [-5.081445945945939, 2.878912966305235e-15, 3.1114882563714945e-16], [-5.189540540540533, 2.9401543793353514e-15, 3.177677106009195e-16], [-5.297635135135128, 3.001395792365468e-15, 3.243865955646895e-16], [-5.405729729729722, 3.062637205395584e-15, 3.3100548052845955e-16], [-5.513824324324316, 3.1238786184257003e-15, 3.376243654922296e-16], [-5.621918918918911, 3.1851200314558167e-15, 3.442432504559996e-16], [-5.730013513513505, 3.246361444485933e-15, 3.5086213541976966e-16], [-5.838108108108099, 3.3076028575160492e-15, 3.574810203835397e-16], [-5.946202702702694, 3.3688442705461656e-15, 3.6409990534730973e-16], [-6.054297297297288, 3.430085683576282e-15, 3.7071879031107976e-16], [-6.1623918918918825, 3.4913270966063985e-15, 3.773376752748498e-16], [-6.270486486486477, 3.5525685096365145e-15, 3.8395656023861983e-16], [-6.378581081081071, 3.613809922666631e-15, 3.9057544520238987e-16], [-6.486675675675666, 3.675051335696747e-15, 3.971943301661599e-16], [-6.59477027027026, 3.736292748726864e-15, 4.0381321512993e-16], [-6.702864864864854, 3.79753416175698e-15, 4.104321000937e-16], [-6.810959459459449, 3.858775574787097e-15, 4.1705098505747006e-16], [-6.919054054054043, 3.920016987817213e-15, 4.236698700212401e-16], [-7.027148648648637, 3.981258400847329e-15, 4.3028875498501013e-16], [-7.135243243243232, 4.042499813877445e-15, 4.3690763994878016e-16], [-7.243337837837826, 4.1037412269075616e-15, 4.435265249125502e-16], [-7.3514324324324205, 4.164982639937678e-15, 4.501454098763203e-16], [-7.459527027027015, 4.2262240529677944e-15, 4.567642948400903e-16], [-7.567621621621609, 4.287465465997911e-15, 4.633831798038604e-16], [-7.675716216216204, 4.348706879028027e-15, 4.700020647676303e-16], [-7.783810810810798, 4.409948292058144e-15, 4.766209497314004e-16], [-7.891905405405392, 4.47118970508826e-15, 4.832398346951704e-16], [-7.999999999999987, 4.532431118118376e-15, 4.898587196589405e-16]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.999999791674617e-07, -0.0009999998750000027, 6.123233995736766e-20], [-5.454729502457997e-05, -0.10909458095777055, 6.68011730372742e-18], [-0.00010859459006999249, -0.2171891620405411, 1.3299002267497472e-17], [-0.000162641885115405, -0.32528374312331165, 1.9917887231267525e-17], [-0.00021668918016081752, -0.4333783242060822, 2.6536772195037576e-17], [-0.00027073647520623004, -0.5414729052888527, 3.315565715880763e-17], [-0.00032478377025164256, -0.6495674863716233, 3.9774542122577683e-17], [-0.0003788310652970551, -0.7576620674543938, 4.639342708634773e-17], [-0.00043287836034246755, -0.8657566485371644, 5.3012312050117784e-17], [-0.00048692565538788007, -0.9738512296199349, 5.963119701388784e-17], [-0.0005409729504332925, -1.0819458107027053, 6.625008197765789e-17], [-0.0005950202454787051, -1.1900403917854758, 7.286896694142793e-17], [-0.0006490675405241176, -1.2981349728682465, 7.948785190519799e-17], [-0.00070311483556953, -1.406229553951017, 8.610673686896804e-17], [-0.0007571621306149426, -1.5143241350337875, 9.272562183273809e-17], [-0.0008112094256603551, -1.6224187161165582, 9.934450679650815e-17], [-0.0008652567207057676, -1.7305132971993287, 1.059633917602782e-16], [-0.0009193040157511801, -1.8386078782820992, 1.1258227672404824e-16], [-0.0009733513107965927, -1.9467024593648696, 1.192011616878183e-16], [-0.0010273986058420051, -2.05479704044764, 1.2582004665158834e-16], [-0.0010814459008874175, -2.1628916215304104, 1.3243893161535837e-16], [-0.0011354931959328299, -2.2709862026131806, 1.390578165791284e-16], [-0.0011895404909782422, -2.379080783695951, 1.4567670154289847e-16], [-0.0012435877860236546, -2.487175364778721, 1.522955865066685e-16], [-0.0012976350810690671, -2.595269945861492, 1.5891447147043854e-16], [-0.0013516823761144795, -2.703364526944262, 1.6553335643420857e-16], [-0.0014057296711598919, -2.8114591080270324, 1.721522413979786e-16], [-0.0014597769662053042, -2.9195536891098026, 1.7877112636174864e-16], [-0.0015138242612507166, -3.027648270192573, 1.8539001132551868e-16], [-0.0015678715562961291, -3.135742851275343, 1.9200889628928874e-16], [-0.0016219188513415415, -3.2438374323581134, 1.9862778125305877e-16], [-0.0016759661463869539, -3.351932013440884, 2.052466662168288e-16], [-0.0017300134414323662, -3.4600265945236544, 2.1186555118059884e-16], [-0.0017840607364777788, -3.5681211756064246, 2.1848443614436888e-16], [-0.0018381080315231911, -3.676215756689195, 2.2510332110813894e-16], [-0.0018921553265686035, -3.784310337771965, 2.3172220607190897e-16], [-0.0019462026216140159, -3.8924049188547354, 2.38341091035679e-16], [-0.0020002499166594284, -4.000499499937506, 2.4495997599944904e-16], [-0.002054297211704841, -4.108594081020276, 2.515788609632191e-16], [-0.002108344506750253, -4.216688662103047, 2.581977459269891e-16], [-0.0021623918017956655, -4.324783243185816, 2.6481663089075915e-16], [-0.002216439096841078, -4.432877824268587, 2.714355158545292e-16], [-0.0022704863918864902, -4.540972405351358, 2.780544008182992e-16], [-0.0023245336869319026, -4.649066986434128, 2.8467328578206926e-16], [-0.002378580981977315, -4.757161567516898, 2.912921707458393e-16], [-0.0024326282770227277, -4.865256148599668, 2.9791105570960933e-16], [-0.00248667557206814, -4.973350729682439, 3.0452994067337936e-16], [-0.0025407228671135524, -5.081445310765209, 3.1114882563714945e-16], [-0.002594770162158965, -5.189539891847979, 3.177677106009195e-16], [-0.002648817457204377, -5.29763447293075, 3.243865955646895e-16], [-0.0027028647522497895, -5.40572905401352, 3.3100548052845955e-16], [-0.002756912047295202, -5.513823635096291, 3.376243654922296e-16], [-0.0028109593423406142, -5.62191821617906, 3.442432504559996e-16], [-0.0028650066373860266, -5.730012797261831, 3.5086213541976966e-16], [-0.0029190539324314394, -5.838107378344602, 3.574810203835397e-16], [-0.0029731012274768517, -5.946201959427372, 3.6409990534730973e-16], [-0.003027148522522264, -6.054296540510142, 3.7071879031107976e-16], [-0.0030811958175676764, -6.162391121592912, 3.773376752748498e-16], [-0.003135243112613089, -6.270485702675683, 3.8395656023861983e-16], [-0.003189290407658501, -6.378580283758453, 3.9057544520238987e-16], [-0.0032433377027039135, -6.486674864841223, 3.971943301661599e-16], [-0.003297384997749326, -6.594769445923994, 4.0381321512993e-16], [-0.003351432292794738, -6.702864027006764, 4.104321000937e-16], [-0.0034054795878401506, -6.810958608089535, 4.1705098505747006e-16], [-0.0034595268828855634, -6.919053189172304, 4.236698700212401e-16], [-0.0035135741779309757, -7.027147770255075, 4.3028875498501013e-16], [-0.003567621472976388, -7.135242351337845, 4.3690763994878016e-16], [-0.0036216687680218004, -7.243336932420616, 4.435265249125502e-16], [-0.003675716063067213, -7.351431513503386, 4.501454098763203e-16], [-0.003729763358112625, -7.459526094586156, 4.567642948400903e-16], [-0.0037838106531580375, -7.567620675668927, 4.633831798038604e-16], [-0.00383785794820345, -7.675715256751697, 4.700020647676303e-16], [-0.003891905243248862, -7.783809837834467, 4.766209497314004e-16], [-0.003945952538294275, -7.891904418917237, 4.832398346951704e-16], [-0.003999999833339687, -7.999999000000008, 4.898587196589405e-16]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0009999995000000417, -9.99999833334809e-07, 6.123233995736766e-20], [0.10909454004730183, -0.00010909457641232311, 6.68011730372742e-18], [0.21718908059460362, -0.00021718915299131144, 1.3299002267497472e-17], [0.3252836211419054, -0.00032528372957029973, 1.9917887231267525e-17], [0.43337816168920723, -0.00043337830614928805, 2.6536772195037576e-17], [0.541472702236509, -0.0005414728827282764, 3.315565715880763e-17], [0.6495672427838108, -0.0006495674593072646, 3.9774542122577683e-17], [0.7576617833311126, -0.0007576620358862529, 4.639342708634773e-17], [0.8657563238784144, -0.0008657566124652413, 5.3012312050117784e-17], [0.9738508644257161, -0.0009738511890442296, 5.963119701388784e-17], [1.081945404973018, -0.0010819457656232178, 6.625008197765789e-17], [1.1900399455203197, -0.001190040342202206, 7.286896694142793e-17], [1.2981344860676214, -0.0012981349187811944, 7.948785190519799e-17], [1.4062290266149233, -0.0014062294953601827, 8.610673686896804e-17], [1.514323567162225, -0.001514324071939171, 9.272562183273809e-17], [1.6224181077095268, -0.0016224186485181594, 9.934450679650815e-17], [1.7305126482568285, -0.0017305132250971477, 1.059633917602782e-16], [1.8386071888041304, -0.001838607801676136, 1.1258227672404824e-16], [1.9467017293514322, -0.0019467023782551243, 1.192011616878183e-16], [2.0547962698987337, -0.002054796954834112, 1.2582004665158834e-16], [2.162890810446035, -0.0021628915314131003, 1.3243893161535837e-16], [2.270985350993337, -0.0022709861079920884, 1.390578165791284e-16], [2.3790798915406386, -0.0023790806845710765, 1.4567670154289847e-16], [2.48717443208794, -0.0024871752611500646, 1.522955865066685e-16], [2.5952689726352416, -0.0025952698377290527, 1.5891447147043854e-16], [2.703363513182543, -0.0027033644143080408, 1.6553335643420857e-16], [2.8114580537298446, -0.002811458990887029, 1.721522413979786e-16], [2.919552594277146, -0.002919553567466017, 1.7877112636174864e-16], [3.027647134824448, -0.003027648144045005, 1.8539001132551868e-16], [3.1357416753717495, -0.003135742720623993, 1.9200889628928874e-16], [3.243836215919051, -0.0032438372972029813, 1.9862778125305877e-16], [3.3519307564663525, -0.0033519318737819694, 2.052466662168288e-16], [3.460025297013654, -0.0034600264503609575, 2.1186555118059884e-16], [3.5681198375609555, -0.0035681210269399456, 2.1848443614436888e-16], [3.6762143781082575, -0.0036762156035189337, 2.2510332110813894e-16], [3.784308918655559, -0.0037843101800979217, 2.3172220607190897e-16], [3.8924034592028605, -0.00389240475667691, 2.38341091035679e-16], [4.000497999750162, -0.004000499333255898, 2.4495997599944904e-16], [4.1085925402974635, -0.004108593909834886, 2.515788609632191e-16], [4.216687080844765, -0.004216688486413874, 2.581977459269891e-16], [4.3247816213920665, -0.004324783062992862, 2.6481663089075915e-16], [4.432876161939368, -0.00443287763957185, 2.714355158545292e-16], [4.5409707024866695, -0.0045409722161508384, 2.780544008182992e-16], [4.649065243033972, -0.0046490667927298265, 2.8467328578206926e-16], [4.757159783581273, -0.004757161369308815, 2.912921707458393e-16], [4.865254324128575, -0.004865255945887803, 2.9791105570960933e-16], [4.973348864675876, -0.004973350522466791, 3.0452994067337936e-16], [5.081443405223178, -0.005081445099045779, 3.1114882563714945e-16], [5.189537945770479, -0.005189539675624767, 3.177677106009195e-16], [5.297632486317781, -0.005297634252203755, 3.243865955646895e-16], [5.405727026865082, -0.005405728828782743, 3.3100548052845955e-16], [5.513821567412384, -0.005513823405361731, 3.376243654922296e-16], [5.621916107959685, -0.005621917981940719, 3.442432504559996e-16], [5.730010648506987, -0.0057300125585197075, 3.5086213541976966e-16], [5.838105189054288, -0.005838107135098696, 3.574810203835397e-16], [5.94619972960159, -0.005946201711677684, 3.6409990534730973e-16], [6.054294270148892, -0.006054296288256672, 3.7071879031107976e-16], [6.162388810696194, -0.00616239086483566, 3.773376752748498e-16], [6.270483351243495, -0.006270485441414648, 3.8395656023861983e-16], [6.378577891790797, -0.006378580017993636, 3.9057544520238987e-16], [6.486672432338098, -0.006486674594572624, 3.971943301661599e-16], [6.5947669728854, -0.006594769171151612, 4.0381321512993e-16], [6.702861513432701, -0.0067028637477306, 4.104321000937e-16], [6.810956053980003, -0.0068109583243095885, 4.1705098505747006e-16], [6.919050594527304, -0.006919052900888577, 4.236698700212401e-16], [7.027145135074606, -0.007027147477467565, 4.3028875498501013e-16], [7.135239675621907, -0.007135242054046553, 4.3690763994878016e-16], [7.243334216169209, -0.007243336630625541, 4.435265249125502e-16], [7.351428756716511, -0.007351431207204529, 4.501454098763203e-16], [7.459523297263813, -0.007459525783783517, 4.567642948400903e-16], [7.567617837811114, -0.007567620360362505, 4.633831798038604e-16], [7.675712378358416, -0.007675714936941493, 4.700020647676303e-16], [7.783806918905717, -0.007783809513520481, 4.766209497314004e-16], [7.891901459453019, -0.00789190409009947, 4.832398346951704e-16], [7.99999600000032, -0.007999998666678457, 4.898587196589405e-16]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0007074598924439699, 7.074601282640283e-07, -0.00070675313942234], [0.07718005015811037, 7.718007588480406e-05, -0.07710294722373716], [0.1536526404237768, 0.0001536526916413441, -0.15349914130805198], [0.23012523068944318, 0.0002301253073978841, -0.2298953353923668], [0.3065978209551096, 0.00030659792315442414, -0.30629152947668165], [0.383070411220776, 0.00038307053891096414, -0.38268772356099645], [0.45954300148644245, 0.0004595431546675042, -0.45908391764531126], [0.5360155917521088, 0.0005360157704240443, -0.5354801117296261], [0.6124881820177752, 0.0006124883861805843, -0.6118763058139409], [0.6889607722834417, 0.0006889610019371243, -0.6882724998982558], [0.765433362549108, 0.0007654336176936643, -0.7646686939825705], [0.8419059528147744, 0.0008419062334502042, -0.8410648880668853], [0.9183785430804408, 0.0009183788492067443, -0.9174610821512001], [0.9948511333461073, 0.0009948514649632844, -0.993857276235515], [1.0713237236117736, 0.0010713240807198243, -1.0702534703198299], [1.14779631387744, 0.0011477966964763644, -1.1466496644041446], [1.2242689041431063, 0.0012242693122329043, -1.2230458584884594], [1.300741494408773, 0.0013007419279894444, -1.2994420525727743], [1.3772140846744392, 0.0013772145437459845, -1.375838246657089], [1.4536866749401054, 0.0014536871595025242, -1.4522344407414038], [1.5301592652057716, 0.001530159775259064, -1.5286306348257184], [1.606631855471438, 0.0016066323910156042, -1.6050268289100331], [1.6831044457371043, 0.0016831050067721439, -1.6814230229943476], [1.7595770360027705, 0.0017595776225286838, -1.7578192170786624], [1.8360496262684367, 0.001836050238285224, -1.8342154111629771], [1.912522216534103, 0.0019125228540417636, -1.9106116052472917], [1.9889948067997691, 0.0019889954697983035, -1.9870077993316064], [2.065467397065435, 0.002065468085554843, -2.063403993415921], [2.141939987331102, 0.0021419407013113833, -2.139800187500236], [2.218412577596768, 0.002218413317067923, -2.2161963815845502], [2.2948851678624345, 0.0022948859328244626, -2.292592575668865], [2.3713577581281005, 0.0023713585485810027, -2.3689887697531797], [2.4478303483937665, 0.002447831164337543, -2.4453849638374945], [2.524302938659433, 0.0025243037800940825, -2.5217811579218092], [2.6007755289250993, 0.0026007763958506226, -2.5981773520061235], [2.6772481191907658, 0.0026772490116071623, -2.6745735460904383], [2.7537207094564318, 0.002753721627363702, -2.750969740174753], [2.8301932997220978, 0.0028301942431202417, -2.827365934259068], [2.906665889987764, 0.002906666858876782, -2.9037621283433825], [2.98313848025343, 0.0029831394746333215, -2.980158322427697], [3.0596110705190966, 0.003059612090389862, -3.0565545165120116], [3.1360836607847626, 0.0031360847061464017, -3.1329507105963263], [3.212556251050429, 0.0032125573219029414, -3.209346904680641], [3.289028841316096, 0.003289029937659481, -3.285743098764956], [3.365501431581762, 0.0033655025534160207, -3.3621392928492706], [3.4419740218474284, 0.003441975169172561, -3.438535486933585], [3.5184466121130944, 0.003518447784929101, -3.5149316810178997], [3.594919202378761, 0.003594920400685641, -3.5913278751022144], [3.671391792644427, 0.0036713930164421807, -3.667724069186529], [3.747864382910093, 0.0037478656321987204, -3.744120263270844], [3.8243369731757593, 0.00382433824795526, -3.820516457355158], [3.9008095634414253, 0.0039008108637117998, -3.896912651439473], [3.9772821537070917, 0.00397728347946834, -3.9733088455237877], [4.053754743972758, 0.0040537560952248804, -4.049705039608102], [4.130227334238424, 0.00413022871098142, -4.126101233692417], [4.206699924504091, 0.00420670132673796, -4.2024974277767315], [4.283172514769757, 0.0042831739424944995, -4.278893621861046], [4.3596451050354235, 0.004359646558251039, -4.355289815945361], [4.43611769530109, 0.004436119174007579, -4.431686010029676], [4.5125902855667555, 0.0045125917897641185, -4.5080822041139905], [4.589062875832422, 0.004589064405520659, -4.584478398198305], [4.665535466098088, 0.004665537021277199, -4.66087459228262], [4.742008056363754, 0.004742009637033738, -4.737270786366935], [4.81848064662942, 0.004818482252790279, -4.813666980451249], [4.894953236895087, 0.004894954868546819, -4.890063174535563], [4.971425827160753, 0.004971427484303358, -4.966459368619878], [5.047898417426419, 0.005047900100059898, -5.042855562704193], [5.124371007692085, 0.0051243727158164385, -5.119251756788508], [5.2008435979577525, 0.005200845331572978, -5.195647950872822], [5.277316188223418, 0.005277317947329518, -5.272044144957137], [5.3537887784890845, 0.005353790563086058, -5.348440339041452], [5.430261368754751, 0.005430263178842597, -5.424836533125767], [5.5067339590204165, 0.005506735794599137, -5.501232727210081], [5.583206549286083, 0.005583208410355677, -5.577628921294395], [5.659679139551749, 0.005659681026112217, -5.65402511537871]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.5373010834803747e-07, 0.0007074601577415346, -0.00070675313942234], [-3.859004276613116e-05, 0.07718007910064065, -0.07710294722373716], [-7.68263554239143e-05, 0.15365269804353976, -0.15349914130805198], [-0.00011506266808169742, 0.23012531698643887, -0.2298953353923668], [-0.00015329898073948055, 0.306597935929338, -0.30629152947668165], [-0.00019153529339726368, 0.38307055487223707, -0.38268772356099645], [-0.00022977160605504678, 0.4595431738151362, -0.45908391764531126], [-0.00026800791871282994, 0.5360157927580353, -0.5354801117296261], [-0.00030624423137061305, 0.6124884117009345, -0.6118763058139409], [-0.00034448054402839615, 0.6889610306438335, -0.6882724998982558], [-0.00038271685668617926, 0.7654336495867325, -0.7646686939825705], [-0.00042095316934396236, 0.8419062685296317, -0.8410648880668853], [-0.00045918948200174547, 0.9183788874725308, -0.9174610821512001], [-0.0004974257946595286, 0.99485150641543, -0.993857276235515], [-0.0005356621073173117, 1.071324125358329, -1.0702534703198299], [-0.0005738984199750948, 1.1477967443012282, -1.1466496644041446], [-0.0006121347326328779, 1.2242693632441273, -1.2230458584884594], [-0.0006503710452906612, 1.3007419821870263, -1.2994420525727743], [-0.0006886073579484443, 1.3772146011299253, -1.375838246657089], [-0.0007268436706062273, 1.4536872200728246, -1.4522344407414038], [-0.0007650799832640104, 1.5301598390157234, -1.5286306348257184], [-0.0008033162959217934, 1.6066324579586222, -1.6050268289100331], [-0.0008415526085795764, 1.6831050769015212, -1.6814230229943476], [-0.0008797889212373596, 1.75957769584442, -1.7578192170786624], [-0.0009180252338951426, 1.8360503147873193, -1.8342154111629771], [-0.0009562615465529256, 1.9125229337302183, -1.9106116052472917], [-0.0009944978592107087, 1.9889955526731171, -1.9870077993316064], [-0.0010327341718684917, 2.065468171616016, -2.063403993415921], [-0.0010709704845262749, 2.141940790558915, -2.139800187500236], [-0.0011092067971840579, 2.2184134095018138, -2.2161963815845502], [-0.0011474431098418409, 2.294886028444713, -2.292592575668865], [-0.0011856794224996239, 2.371358647387612, -2.3689887697531797], [-0.0012239157351574069, 2.447831266330511, -2.4453849638374945], [-0.0012621520478151899, 2.52430388527341, -2.5217811579218092], [-0.001300388360472973, 2.600776504216309, -2.5981773520061235], [-0.001338624673130756, 2.6772491231592075, -2.6745735460904383], [-0.001376860985788539, 2.7537217421021065, -2.750969740174753], [-0.001415097298446322, 2.8301943610450055, -2.827365934259068], [-0.0014533336111041053, 2.9066669799879046, -2.9037621283433825], [-0.0014915699237618883, 2.9831395989308036, -2.980158322427697], [-0.0015298062364196713, 3.059612217873702, -3.0565545165120116], [-0.0015680425490774543, 3.136084836816601, -3.1329507105963263], [-0.0016062788617352375, 3.2125574557595007, -3.209346904680641], [-0.0016445151743930202, 3.2890300747023993, -3.285743098764956], [-0.0016827514870508035, 3.3655026936452983, -3.3621392928492706], [-0.0017209877997085867, 3.441975312588197, -3.438535486933585], [-0.0017592241123663697, 3.5184479315310964, -3.5149316810178997], [-0.0017974604250241524, 3.594920550473995, -3.5913278751022144], [-0.0018356967376819357, 3.671393169416894, -3.667724069186529], [-0.0018739330503397189, 3.7478657883597934, -3.744120263270844], [-0.0019121693629975017, 3.824338407302692, -3.820516457355158], [-0.0019504056756552849, 3.900811026245591, -3.896912651439473], [-0.001988641988313068, 3.9772836451884896, -3.9733088455237877], [-0.002026878300970851, 4.053756264131389, -4.049705039608102], [-0.002065114613628634, 4.130228883074288, -4.126101233692417], [-0.0021033509262864173, 4.206701502017187, -4.2024974277767315], [-0.0021415872389442, 4.283174120960086, -4.278893621861046], [-0.0021798235516019833, 4.359646739902985, -4.355289815945361], [-0.0022180598642597663, 4.436119358845883, -4.431686010029676], [-0.002256296176917549, 4.512591977788782, -4.5080822041139905], [-0.0022945324895753323, 4.589064596731681, -4.584478398198305], [-0.0023327688022331153, 4.665537215674581, -4.66087459228262], [-0.0023710051148908983, 4.7420098346174795, -4.737270786366935], [-0.0024092414275486813, 4.818482453560379, -4.813666980451249], [-0.0024474777402064647, 4.8949550725032775, -4.890063174535563], [-0.0024857140528642472, 4.971427691446176, -4.966459368619878], [-0.0025239503655220302, 5.047900310389075, -5.042855562704193], [-0.0025621866781798137, 5.124372929331974, -5.119251756788508], [-0.0026004229908375967, 5.200845548274874, -5.195647950872822], [-0.0026386593034953797, 5.277318167217772, -5.272044144957137], [-0.0026768956161531627, 5.353790786160672, -5.348440339041452], [-0.0027151319288109457, 5.43026340510357, -5.424836533125767], [-0.0027533682414687287, 5.506736024046469, -5.501232727210081], [-0.0027916045541265117, 5.5832086429893675, -5.577628921294395], [-0.0028298408667842946, 5.659681261932267, -5.65402511537871]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.0007074602461740635, 4.0081435432387717e-19, -0.00070675313942234], [-0.07718008874815153, 4.3726679492657566e-17, -0.07710294722373716], [-0.153652717250129, 8.705254463099127e-17, -0.15349914130805198], [-0.23012534575210647, 1.3037840976932494e-16, -0.2298953353923668], [-0.30659797425408397, 1.7370427490765864e-16, -0.30629152947668165], [-0.3830706027560614, 2.1703014004599231e-16, -0.38268772356099645], [-0.4595432312580389, 2.60356005184326e-16, -0.45908391764531126], [-0.5360158597600164, 3.0368187032265973e-16, -0.5354801117296261], [-0.6124884882619939, 3.470077354609934e-16, -0.6118763058139409], [-0.6889611167639713, 3.903336005993271e-16, -0.6882724998982558], [-0.7654337452659488, 4.3365946573766075e-16, -0.7646686939825705], [-0.8419063737679262, 4.769853308759944e-16, -0.8410648880668853], [-0.9183790022699037, 5.2031119601432815e-16, -0.9174610821512001], [-0.9948516307718811, 5.636370611526618e-16, -0.993857276235515], [-1.0713242592738585, 6.069629262909955e-16, -1.0702534703198299], [-1.147796887775836, 6.502887914293292e-16, -1.1466496644041446], [-1.2242695162778134, 6.936146565676629e-16, -1.2230458584884594], [-1.300742144779791, 7.369405217059966e-16, -1.2994420525727743], [-1.3772147732817686, 7.802663868443303e-16, -1.375838246657089], [-1.4536874017837458, 8.23592251982664e-16, -1.4522344407414038], [-1.5301600302857232, 8.669181171209974e-16, -1.5286306348257184], [-1.6066326587877005, 9.102439822593312e-16, -1.6050268289100331], [-1.6831052872896777, 9.535698473976647e-16, -1.6814230229943476], [-1.7595779157916551, 9.968957125359984e-16, -1.7578192170786624], [-1.8360505442936323, 1.0402215776743318e-15, -1.8342154111629771], [-1.9125231727956098, 1.0835474428126655e-15, -1.9106116052472917], [-1.988995801297587, 1.126873307950999e-15, -1.9870077993316064], [-2.0654684297995645, 1.1701991730893327e-15, -2.063403993415921], [-2.1419410583015415, 1.2135250382276663e-15, -2.139800187500236], [-2.218413686803519, 1.256850903366e-15, -2.2161963815845502], [-2.2948863153054964, 1.3001767685043335e-15, -2.292592575668865], [-2.3713589438074734, 1.3435026336426671e-15, -2.3689887697531797], [-2.447831572309451, 1.3868284987810006e-15, -2.4453849638374945], [-2.5243042008114283, 1.4301543639193343e-15, -2.5217811579218092], [-2.6007768293134057, 1.473480229057668e-15, -2.5981773520061235], [-2.6772494578153827, 1.5168060941960016e-15, -2.6745735460904383], [-2.75372208631736, 1.560131959334335e-15, -2.750969740174753], [-2.8301947148193376, 1.6034578244726686e-15, -2.827365934259068], [-2.9066673433213146, 1.6467836896110023e-15, -2.9037621283433825], [-2.983139971823292, 1.690109554749336e-15, -2.980158322427697], [-3.0596126003252695, 1.7334354198876696e-15, -3.0565545165120116], [-3.136085228827247, 1.776761285026003e-15, -3.1329507105963263], [-3.212557857329224, 1.8200871501643368e-15, -3.209346904680641], [-3.2890304858312014, 1.8634130153026704e-15, -3.285743098764956], [-3.365503114333179, 1.906738880441004e-15, -3.3621392928492706], [-3.441975742835156, 1.9500647455793374e-15, -3.438535486933585], [-3.5184483713371333, 1.993390610717671e-15, -3.5149316810178997], [-3.5949209998391107, 2.0367164758560047e-15, -3.5913278751022144], [-3.6713936283410877, 2.0800423409943384e-15, -3.667724069186529], [-3.747866256843065, 2.123368206132672e-15, -3.744120263270844], [-3.8243388853450426, 2.1666940712710054e-15, -3.820516457355158], [-3.90081151384702, 2.210019936409339e-15, -3.896912651439473], [-3.977284142348997, 2.2533458015476727e-15, -3.9733088455237877], [-4.053756770850974, 2.2966716666860064e-15, -4.049705039608102], [-4.1302293993529515, 2.33999753182434e-15, -4.126101233692417], [-4.206702027854929, 2.3833233969626737e-15, -4.2024974277767315], [-4.283174656356906, 2.426649262101007e-15, -4.278893621861046], [-4.359647284858884, 2.4699751272393407e-15, -4.355289815945361], [-4.436119913360861, 2.5133009923776744e-15, -4.431686010029676], [-4.512592541862839, 2.556626857516008e-15, -4.5080822041139905], [-4.589065170364815, 2.5999527226543417e-15, -4.584478398198305], [-4.665537798866793, 2.6432785877926754e-15, -4.66087459228262], [-4.74201042736877, 2.686604452931009e-15, -4.737270786366935], [-4.818483055870748, 2.7299303180693427e-15, -4.813666980451249], [-4.894955684372725, 2.7732561832076764e-15, -4.890063174535563], [-4.9714283128747025, 2.8165820483460093e-15, -4.966459368619878], [-5.04790094137668, 2.859907913484343e-15, -5.042855562704193], [-5.1243735698786566, 2.9032337786226766e-15, -5.119251756788508], [-5.200846198380634, 2.9465596437610103e-15, -5.195647950872822], [-5.2773188268826114, 2.989885508899344e-15, -5.272044144957137], [-5.353791455384589, 3.0332113740376776e-15, -5.348440339041452], [-5.430264083886566, 3.0765372391760113e-15, -5.424836533125767], [-5.506736712388544, 3.119863104314345e-15, -5.501232727210081], [-5.583209340890521, 3.1631889694526787e-15, -5.577628921294395], [-5.659681969392498, 3.206514834591012e-15, -5.65402511537871]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.5373010834883903e-07, -0.0007074601577415346, -0.00070675313942234], [-3.8590042766218614e-05, -0.07718007910064065, -0.07710294722373716], [-7.68263554240884e-05, -0.15365269804353976, -0.15349914130805198], [-0.00011506266808195817, -0.23012531698643887, -0.2298953353923668], [-0.00015329898073982795, -0.306597935929338, -0.30629152947668165], [-0.00019153529339769774, -0.38307055487223707, -0.38268772356099645], [-0.0002297716060555675, -0.4595431738151362, -0.45908391764531126], [-0.0002680079187134373, -0.5360157927580353, -0.5354801117296261], [-0.00030624423137130705, -0.6124884117009345, -0.6118763058139409], [-0.00034448054402917683, -0.6889610306438335, -0.6882724998982558], [-0.00038271685668704656, -0.7654336495867325, -0.7646686939825705], [-0.00042095316934491635, -0.8419062685296317, -0.8410648880668853], [-0.00045918948200278614, -0.9183788874725308, -0.9174610821512001], [-0.0004974257946606559, -0.99485150641543, -0.993857276235515], [-0.0005356621073185257, -1.071324125358329, -1.0702534703198299], [-0.0005738984199763954, -1.1477967443012282, -1.1466496644041446], [-0.0006121347326342653, -1.2242693632441273, -1.2230458584884594], [-0.000650371045292135, -1.3007419821870263, -1.2994420525727743], [-0.0006886073579500047, -1.3772146011299253, -1.375838246657089], [-0.0007268436706078746, -1.4536872200728246, -1.4522344407414038], [-0.0007650799832657442, -1.5301598390157234, -1.5286306348257184], [-0.0008033162959236138, -1.6066324579586222, -1.6050268289100331], [-0.0008415526085814836, -1.6831050769015212, -1.6814230229943476], [-0.0008797889212393532, -1.75957769584442, -1.7578192170786624], [-0.000918025233897223, -1.8360503147873193, -1.8342154111629771], [-0.0009562615465550927, -1.9125229337302183, -1.9106116052472917], [-0.0009944978592129623, -1.9889955526731171, -1.9870077993316064], [-0.001032734171870832, -2.065468171616016, -2.063403993415921], [-0.0010709704845287017, -2.141940790558915, -2.139800187500236], [-0.0011092067971865715, -2.2184134095018138, -2.2161963815845502], [-0.0011474431098444412, -2.294886028444713, -2.292592575668865], [-0.0011856794225023107, -2.371358647387612, -2.3689887697531797], [-0.0012239157351601805, -2.447831266330511, -2.4453849638374945], [-0.0012621520478180504, -2.52430388527341, -2.5217811579218092], [-0.00130038836047592, -2.600776504216309, -2.5981773520061235], [-0.0013386246731337897, -2.6772491231592075, -2.6745735460904383], [-0.0013768609857916594, -2.7537217421021065, -2.750969740174753], [-0.0014150972984495291, -2.8301943610450055, -2.827365934259068], [-0.0014533336111073989, -2.9066669799879046, -2.9037621283433825], [-0.0014915699237652684, -2.9831395989308036, -2.980158322427697], [-0.001529806236423138, -3.059612217873702, -3.0565545165120116], [-0.0015680425490810078, -3.136084836816601, -3.1329507105963263], [-0.0016062788617388774, -3.2125574557595007, -3.209346904680641], [-0.001644515174396747, -3.2890300747023993, -3.285743098764956], [-0.0016827514870546168, -3.3655026936452983, -3.3621392928492706], [-0.0017209877997124868, -3.441975312588197, -3.438535486933585], [-0.0017592241123703565, -3.5184479315310964, -3.5149316810178997], [-0.001797460425028226, -3.594920550473995, -3.5913278751022144], [-0.0018356967376860957, -3.671393169416894, -3.667724069186529], [-0.0018739330503439655, -3.7478657883597934, -3.744120263270844], [-0.001912169363001835, -3.824338407302692, -3.820516457355158], [-0.0019504056756597047, -3.900811026245591, -3.896912651439473], [-0.0019886419883175742, -3.9772836451884896, -3.9733088455237877], [-0.002026878300975444, -4.053756264131389, -4.049705039608102], [-0.002065114613633314, -4.130228883074288, -4.126101233692417], [-0.002103350926291184, -4.206701502017187, -4.2024974277767315], [-0.002141587238949053, -4.283174120960086, -4.278893621861046], [-0.002179823551606923, -4.359646739902985, -4.355289815945361], [-0.0022180598642647926, -4.436119358845883, -4.431686010029676], [-0.0022562961769226624, -4.512591977788782, -4.5080822041139905], [-0.002294532489580532, -4.589064596731681, -4.584478398198305], [-0.002332768802238402, -4.665537215674581, -4.66087459228262], [-0.0023710051148962716, -4.7420098346174795, -4.737270786366935], [-0.002409241427554141, -4.818482453560379, -4.813666980451249], [-0.002447477740212011, -4.8949550725032775, -4.890063174535563], [-0.0024857140528698808, -4.971427691446176, -4.966459368619878], [-0.0025239503655277505, -5.047900310389075, -5.042855562704193], [-0.0025621866781856202, -5.124372929331974, -5.119251756788508], [-0.0026004229908434895, -5.200845548274874, -5.195647950872822], [-0.0026386593035013593, -5.277318167217772, -5.272044144957137], [-0.002676895616159229, -5.353790786160672, -5.348440339041452], [-0.0027151319288170987, -5.43026340510357, -5.424836533125767], [-0.0027533682414749685, -5.506736024046469, -5.501232727210081], [-0.002791604554132838, -5.5832086429893675, -5.577628921294395], [-0.0028298408667907075, -5.659681261932267, -5.65402511537871]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0007074598924439699, -7.074601282650664e-07, -0.00070675313942234], [0.07718005015811037, -7.718007588491729e-05, -0.07710294722373716], [0.1536526404237768, -0.0001536526916415695, -0.15349914130805198], [0.23012523068944318, -0.00023012530739822173, -0.2298953353923668], [0.3065978209551096, -0.000306597923154874, -0.30629152947668165], [0.383070411220776, -0.0003830705389115262, -0.38268772356099645], [0.45954300148644245, -0.00045954315466817836, -0.45908391764531126], [0.5360155917521088, -0.0005360157704248306, -0.5354801117296261], [0.6124881820177752, -0.0006124883861814829, -0.6118763058139409], [0.6889607722834417, -0.0006889610019381351, -0.6882724998982558], [0.765433362549108, -0.0007654336176947872, -0.7646686939825705], [0.8419059528147744, -0.0008419062334514394, -0.8410648880668853], [0.9183785430804408, -0.0009183788492080916, -0.9174610821512001], [0.9948511333461073, -0.000994851464964744, -0.993857276235515], [1.0713237236117736, -0.0010713240807213962, -1.0702534703198299], [1.14779631387744, -0.0011477966964780484, -1.1466496644041446], [1.2242689041431063, -0.0012242693122347006, -1.2230458584884594], [1.300741494408773, -0.0013007419279913528, -1.2994420525727743], [1.3772140846744392, -0.001377214543748005, -1.375838246657089], [1.4536866749401054, -0.0014536871595046568, -1.4522344407414038], [1.5301592652057716, -0.001530159775261309, -1.5286306348257184], [1.606631855471438, -0.001606632391017961, -1.6050268289100331], [1.6831044457371043, -0.001683105006774613, -1.6814230229943476], [1.7595770360027705, -0.0017595776225312653, -1.7578192170786624], [1.8360496262684367, -0.0018360502382879173, -1.8342154111629771], [1.912522216534103, -0.0019125228540445693, -1.9106116052472917], [1.9889948067997691, -0.0019889954698012213, -1.9870077993316064], [2.065467397065435, -0.0020654680855578737, -2.063403993415921], [2.141939987331102, -0.0021419407013145257, -2.139800187500236], [2.218412577596768, -0.0022184133170711777, -2.2161963815845502], [2.2948851678624345, -0.0022948859328278297, -2.292592575668865], [2.3713577581281005, -0.0023713585485844817, -2.3689887697531797], [2.4478303483937665, -0.0024478311643411337, -2.4453849638374945], [2.524302938659433, -0.002524303780097786, -2.5217811579218092], [2.6007755289250993, -0.002600776395854438, -2.5981773520061235], [2.6772481191907658, -0.00267724901161109, -2.6745735460904383], [2.7537207094564318, -0.002753721627367742, -2.750969740174753], [2.8301932997220978, -0.002830194243124394, -2.827365934259068], [2.906665889987764, -0.002906666858881046, -2.9037621283433825], [2.98313848025343, -0.002983139474637698, -2.980158322427697], [3.0596110705190966, -0.0030596120903943506, -3.0565545165120116], [3.1360836607847626, -0.0031360847061510026, -3.1329507105963263], [3.212556251050429, -0.0032125573219076546, -3.209346904680641], [3.289028841316096, -0.0032890299376643066, -3.285743098764956], [3.365501431581762, -0.0033655025534209586, -3.3621392928492706], [3.4419740218474284, -0.0034419751691776106, -3.438535486933585], [3.5184466121130944, -0.003518447784934263, -3.5149316810178997], [3.594919202378761, -0.003594920400690915, -3.5913278751022144], [3.671391792644427, -0.003671393016447567, -3.667724069186529], [3.747864382910093, -0.003747865632204219, -3.744120263270844], [3.8243369731757593, -0.003824338247960871, -3.820516457355158], [3.9008095634414253, -0.003900810863717523, -3.896912651439473], [3.9772821537070917, -0.0039772834794741755, -3.9733088455237877], [4.053754743972758, -0.004053756095230827, -4.049705039608102], [4.130227334238424, -0.0041302287109874795, -4.126101233692417], [4.206699924504091, -0.004206701326744132, -4.2024974277767315], [4.283172514769757, -0.0042831739425007835, -4.278893621861046], [4.3596451050354235, -0.004359646558257436, -4.355289815945361], [4.43611769530109, -0.0044361191740140875, -4.431686010029676], [4.5125902855667555, -0.00451259178977074, -4.5080822041139905], [4.589062875832422, -0.0045890644055273915, -4.584478398198305], [4.665535466098088, -0.004665537021284044, -4.66087459228262], [4.742008056363754, -0.004742009637040696, -4.737270786366935], [4.81848064662942, -0.004818482252797348, -4.813666980451249], [4.894953236895087, -0.004894954868554, -4.890063174535563], [4.971425827160753, -0.004971427484310652, -4.966459368619878], [5.047898417426419, -0.005047900100067304, -5.042855562704193], [5.124371007692085, -0.005124372715823957, -5.119251756788508], [5.2008435979577525, -0.005200845331580608, -5.195647950872822], [5.277316188223418, -0.005277317947337261, -5.272044144957137], [5.3537887784890845, -0.005353790563093912, -5.348440339041452], [5.430261368754751, -0.005430263178850565, -5.424836533125767], [5.5067339590204165, -0.005506735794607216, -5.501232727210081], [5.583206549286083, -0.005583208410363869, -5.577628921294395], [5.659679139551749, -0.00565968102612052, -5.65402511537871]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.99999333333035e-07, 9.999996666662794e-10, -0.0009999995000000417], [0.00010909452186483231, 1.0909455822968747e-07, -0.10909454004730183], [0.00021718904439633157, 2.1718911679270867e-07, -0.21718908059460362], [0.00032528356692783085, 3.2528367535572986e-07, -0.3252836211419054], [0.00043337808945933013, 4.3337823391875104e-07, -0.43337816168920723], [0.0005414726119908294, 5.414727924817722e-07, -0.541472702236509], [0.0006495671345223287, 6.495673510447935e-07, -0.6495672427838108], [0.0007576616570538279, 7.576619096078146e-07, -0.7576617833311126], [0.0008657561795853272, 8.657564681708358e-07, -0.8657563238784144], [0.0009738507021168264, 9.73851026733857e-07, -0.9738508644257161], [0.0010819452246483257, 1.0819455852968781e-06, -1.081945404973018], [0.001190039747179825, 1.1900401438598992e-06, -1.1900399455203197], [0.001298134269711324, 1.2981347024229206e-06, -1.2981344860676214], [0.0014062287922428235, 1.4062292609859417e-06, -1.4062290266149233], [0.0015143233147743226, 1.5143238195489629e-06, -1.514323567162225], [0.0016224178373058218, 1.6224183781119842e-06, -1.6224181077095268], [0.0017305123598373212, 1.7305129366750051e-06, -1.7305126482568285], [0.0018386068823688206, 1.8386074952380265e-06, -1.8386071888041304], [0.0019467014049003198, 1.9467020538010476e-06, -1.9467017293514322], [0.0020547959274318187, 2.0547966123640685e-06, -2.0547962698987337], [0.0021628904499633177, 2.1628911709270894e-06, -2.162890810446035], [0.002270984972494817, 2.2709857294901108e-06, -2.270985350993337], [0.002379079495026316, 2.3790802880531317e-06, -2.3790798915406386], [0.002487174017557815, 2.487174846616152e-06, -2.48717443208794], [0.002595268540089314, 2.5952694051791736e-06, -2.5952689726352416], [0.002703363062620813, 2.7033639637421945e-06, -2.703363513182543], [0.002811457585152312, 2.8114585223052154e-06, -2.8114580537298446], [0.002919552107683811, 2.9195530808682363e-06, -2.919552594277146], [0.00302764663021531, 3.0276476394312572e-06, -3.027647134824448], [0.003135741152746809, 3.135742197994278e-06, -3.1357416753717495], [0.003243835675278308, 3.243836756557299e-06, -3.243836215919051], [0.003351930197809807, 3.3519313151203204e-06, -3.3519307564663525], [0.0034600247203413065, 3.4600258736833413e-06, -3.460025297013654], [0.0035681192428728054, 3.5681204322463623e-06, -3.5681198375609555], [0.003676213765404305, 3.676214990809383e-06, -3.6762143781082575], [0.003784308287935804, 3.784309549372404e-06, -3.784308918655559], [0.0038924028104673027, 3.892404107935425e-06, -3.8924034592028605], [0.004000497332998802, 4.000498666498446e-06, -4.000497999750162], [0.0041085918555303, 4.108593225061467e-06, -4.1085925402974635], [0.0042166863780618, 4.216687783624488e-06, -4.216687080844765], [0.004324780900593298, 4.3247823421875096e-06, -4.3247816213920665], [0.0044328754231247975, 4.4328769007505305e-06, -4.432876161939368], [0.004540969945656296, 4.5409714593135506e-06, -4.5409707024866695], [0.004649064468187796, 4.6490660178765715e-06, -4.649065243033972], [0.004757158990719296, 4.757160576439592e-06, -4.757159783581273], [0.004865253513250794, 4.865255135002613e-06, -4.865254324128575], [0.004973348035782294, 4.973349693565635e-06, -4.973348864675876], [0.005081442558313792, 5.081444252128656e-06, -5.081443405223178], [0.0051895370808452915, 5.189538810691677e-06, -5.189537945770479], [0.00529763160337679, 5.297633369254698e-06, -5.297632486317781], [0.0054057261259082895, 5.405727927817719e-06, -5.405727026865082], [0.005513820648439788, 5.51382248638074e-06, -5.513821567412384], [0.005621915170971287, 5.621917044943761e-06, -5.621916107959685], [0.005730009693502786, 5.730011603506782e-06, -5.730010648506987], [0.005838104216034285, 5.8381061620698025e-06, -5.838105189054288], [0.005946198738565784, 5.946200720632823e-06, -5.94619972960159], [0.006054293261097284, 6.054295279195844e-06, -6.054294270148892], [0.006162387783628783, 6.162389837758865e-06, -6.162388810696194], [0.006270482306160282, 6.270484396321886e-06, -6.270483351243495], [0.0063785768286917805, 6.378578954884907e-06, -6.378577891790797], [0.00648667135122328, 6.486673513447929e-06, -6.486672432338098], [0.006594765873754778, 6.59476807201095e-06, -6.5947669728854], [0.006702860396286278, 6.702862630573971e-06, -6.702861513432701], [0.006810954918817776, 6.810957189136992e-06, -6.810956053980003], [0.006919049441349276, 6.9190517477000125e-06, -6.919050594527304], [0.007027143963880775, 7.027146306263033e-06, -7.027145135074606], [0.007135238486412274, 7.1352408648260535e-06, -7.135239675621907], [0.007243333008943773, 7.243335423389075e-06, -7.243334216169209], [0.0073514275314752724, 7.351429981952096e-06, -7.351428756716511], [0.007459522054006772, 7.459524540515117e-06, -7.459523297263813], [0.00756761657653827, 7.567619099078138e-06, -7.567617837811114], [0.00767571109906977, 7.675713657641158e-06, -7.675712378358416], [0.007783805621601268, 7.783808216204179e-06, -7.783806918905717], [0.007891900144132767, 7.8919027747672e-06, -7.891901459453019], [0.007999994666664267, 7.999997333330221e-06, -7.99999600000032]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.999998958327871e-10, 9.999997083329335e-07, -0.0009999995000000417], [-5.454728593321743e-08, 0.0001090945627752942, -0.10909454004730183], [-1.0859457197060208e-07, 0.00021718912584225546, -0.21718908059460362], [-1.6264185800798672e-07, 0.0003252836889092167, -0.3252836211419054], [-2.1668914404537135e-07, 0.000433378251976178, -0.43337816168920723], [-2.70736430082756e-07, 0.0005414728150431393, -0.541472702236509], [-3.247837161201406e-07, 0.0006495673781101006, -0.6495672427838108], [-3.788310021575253e-07, 0.0007576619411770618, -0.7576617833311126], [-4.328782881949099e-07, 0.0008657565042440231, -0.8657563238784144], [-4.869255742322945e-07, 0.0009738510673109843, -0.9738508644257161], [-5.409728602696792e-07, 0.0010819456303779455, -1.081945404973018], [-5.950201463070638e-07, 0.0011900401934449066, -1.1900399455203197], [-6.490674323444484e-07, 0.0012981347565118682, -1.2981344860676214], [-7.03114718381833e-07, 0.0014062293195788293, -1.4062290266149233], [-7.571620044192177e-07, 0.0015143238826457906, -1.514323567162225], [-8.112092904566023e-07, 0.001622418445712752, -1.6224181077095268], [-8.65256576493987e-07, 0.0017305130087797132, -1.7305126482568285], [-9.193038625313717e-07, 0.0018386075718466743, -1.8386071888041304], [-9.733511485687563e-07, 0.0019467021349136356, -1.9467017293514322], [-1.0273984346061407e-06, 0.0020547966979805967, -2.0547962698987337], [-1.0814457206435254e-06, 0.002162891261047558, -2.162890810446035], [-1.1354930066809099e-06, 0.0022709858241145185, -2.270985350993337], [-1.1895402927182944e-06, 0.0023790803871814796, -2.3790798915406386], [-1.243587578755679e-06, 0.0024871749502484407, -2.48717443208794], [-1.2976348647930635e-06, 0.002595269513315402, -2.5952689726352416], [-1.351682150830448e-06, 0.002703364076382363, -2.703363513182543], [-1.4057294368678325e-06, 0.002811458639449324, -2.8114580537298446], [-1.459776722905217e-06, 0.002919553202516285, -2.919552594277146], [-1.5138240089426016e-06, 0.003027647765583246, -3.027647134824448], [-1.567871294979986e-06, 0.003135742328650207, -3.1357416753717495], [-1.6219185810173706e-06, 0.003243836891717168, -3.243836215919051], [-1.6759658670547553e-06, 0.0033519314547841295, -3.3519307564663525], [-1.7300131530921397e-06, 0.0034600260178510906, -3.460025297013654], [-1.7840604391295242e-06, 0.0035681205809180512, -3.5681198375609555], [-1.8381077251669089e-06, 0.0036762151439850123, -3.6762143781082575], [-1.8921550112042934e-06, 0.0037843097070519734, -3.784308918655559], [-1.946202297241678e-06, 0.003892404270118934, -3.8924034592028605], [-2.000249583279062e-06, 0.004000498833185896, -4.000497999750162], [-2.0542968693164468e-06, 0.004108593396252856, -4.1085925402974635], [-2.1083441553538315e-06, 0.004216687959319817, -4.216687080844765], [-2.1623914413912157e-06, 0.004324782522386778, -4.3247816213920665], [-2.2164387274286004e-06, 0.00443287708545374, -4.432876161939368], [-2.270486013465985e-06, 0.004540971648520701, -4.5409707024866695], [-2.3245332995033694e-06, 0.004649066211587662, -4.649065243033972], [-2.378580585540754e-06, 0.004757160774654623, -4.757159783581273], [-2.4326278715781387e-06, 0.004865255337721584, -4.865254324128575], [-2.4866751576155234e-06, 0.004973349900788545, -4.973348864675876], [-2.5407224436529077e-06, 0.005081444463855505, -5.081443405223178], [-2.5947697296902924e-06, 0.005189539026922467, -5.189537945770479], [-2.648817015727677e-06, 0.005297633589989428, -5.297632486317781], [-2.7028643017650613e-06, 0.005405728153056389, -5.405727026865082], [-2.756911587802446e-06, 0.0055138227161233505, -5.513821567412384], [-2.8109588738398307e-06, 0.005621917279190311, -5.621916107959685], [-2.8650061598772145e-06, 0.005730011842257272, -5.730010648506987], [-2.919053445914599e-06, 0.005838106405324233, -5.838105189054288], [-2.973100731951984e-06, 0.005946200968391194, -5.94619972960159], [-3.027148017989368e-06, 0.006054295531458156, -6.054294270148892], [-3.081195304026753e-06, 0.006162390094525116, -6.162388810696194], [-3.1352425900641375e-06, 0.006270484657592078, -6.270483351243495], [-3.189289876101522e-06, 0.0063785792206590385, -6.378577891790797], [-3.2433371621389065e-06, 0.006486673783725999, -6.486672432338098], [-3.297384448176291e-06, 0.006594768346792961, -6.5947669728854], [-3.3514317342136754e-06, 0.006702862909859921, -6.702861513432701], [-3.40547902025106e-06, 0.006810957472926883, -6.810956053980003], [-3.459526306288445e-06, 0.0069190520359938435, -6.919050594527304], [-3.513573592325829e-06, 0.007027146599060805, -7.027145135074606], [-3.5676208783632137e-06, 0.007135241162127766, -7.135239675621907], [-3.6216681644005984e-06, 0.007243335725194727, -7.243334216169209], [-3.675715450437983e-06, 0.007351430288261688, -7.351428756716511], [-3.7297627364753674e-06, 0.0074595248513286486, -7.459523297263813], [-3.783810022512752e-06, 0.00756761941439561, -7.567617837811114], [-3.837857308550137e-06, 0.007675713977462571, -7.675712378358416], [-3.891904594587521e-06, 0.007783808540529532, -7.783806918905717], [-3.945951880624905e-06, 0.007891903103596493, -7.891901459453019], [-3.9999991666622895e-06, 0.007999997666663454, -7.99999600000032]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-9.999998333329099e-07, 5.665537953389098e-22, -0.0009999995000000417], [-0.00010909457641211596, 6.180795661852727e-20, -0.10909454004730183], [-0.000217189152990899, 1.2304935944171565e-19, -0.21718908059460362], [-0.00032528372956968206, 1.8429076226490402e-19, -0.3252836211419054], [-0.00043337830614846514, 2.455321650880924e-19, -0.43337816168920723], [-0.0005414728827272482, 3.067735679112807e-19, -0.541472702236509], [-0.0006495674593060312, 3.680149707344691e-19, -0.6495672427838108], [-0.0007576620358848143, 4.2925637355765745e-19, -0.7576617833311126], [-0.0008657566124635974, 4.904977763808459e-19, -0.8657563238784144], [-0.0009738511890423804, 5.517391792040342e-19, -0.9738508644257161], [-0.0010819457656211634, 6.129805820272225e-19, -1.081945404973018], [-0.0011900403421999464, 6.742219848504109e-19, -1.1900399455203197], [-0.0012981349187787294, 7.354633876735993e-19, -1.2981344860676214], [-0.0014062294953575125, 7.967047904967876e-19, -1.4062290266149233], [-0.0015143240719362955, 8.579461933199759e-19, -1.514323567162225], [-0.0016224186485150787, 9.191875961431643e-19, -1.6224181077095268], [-0.0017305132250938617, 9.804289989663527e-19, -1.7305126482568285], [-0.0018386078016726446, 1.0416704017895411e-18, -1.8386071888041304], [-0.0019467023782514278, 1.1029118046127295e-18, -1.9467017293514322], [-0.002054796954830211, 1.1641532074359177e-18, -2.0547962698987337], [-0.0021628915314089933, 1.2253946102591059e-18, -2.162890810446035], [-0.0022709861079877763, 1.2866360130822943e-18, -2.270985350993337], [-0.0023790806845665593, 1.3478774159054823e-18, -2.3790798915406386], [-0.002487175261145342, 1.4091188187286707e-18, -2.48717443208794], [-0.0025952698377241248, 1.4703602215518589e-18, -2.5952689726352416], [-0.0027033644143029077, 1.531601624375047e-18, -2.703363513182543], [-0.0028114589908816903, 1.5928430271982353e-18, -2.8114580537298446], [-0.0029195535674604732, 1.6540844300214237e-18, -2.919552594277146], [-0.003027648144039256, 1.7153258328446117e-18, -3.027647134824448], [-0.0031357427206180387, 1.7765672356678002e-18, -3.1357416753717495], [-0.0032438372971968217, 1.8378086384909884e-18, -3.243836215919051], [-0.0033519318737756047, 1.8990500413141766e-18, -3.3519307564663525], [-0.003460026450354387, 1.960291444137365e-18, -3.460025297013654], [-0.00356812102693317, 2.021532846960553e-18, -3.5681198375609555], [-0.003676215603511953, 2.0827742497837412e-18, -3.6762143781082575], [-0.003784310180090736, 2.14401565260693e-18, -3.784308918655559], [-0.0038924047566695186, 2.2052570554301176e-18, -3.8924034592028605], [-0.004000499333248302, 2.266498458253306e-18, -4.000497999750162], [-0.004108593909827084, 2.3277398610764944e-18, -4.1085925402974635], [-0.0042166884864058675, 2.3889812638996826e-18, -4.216687080844765], [-0.00432478306298465, 2.4502226667228708e-18, -4.3247816213920665], [-0.004432877639563433, 2.511464069546059e-18, -4.432876161939368], [-0.004540972216142216, 2.5727054723692472e-18, -4.5409707024866695], [-0.0046490667927209985, 2.6339468751924354e-18, -4.649065243033972], [-0.004757161369299781, 2.695188278015624e-18, -4.757159783581273], [-0.0048652559458785645, 2.7564296808388118e-18, -4.865254324128575], [-0.004973350522457347, 2.817671083662e-18, -4.973348864675876], [-0.0050814450990361295, 2.8789124864851886e-18, -5.081443405223178], [-0.005189539675614913, 2.9401538893083768e-18, -5.189537945770479], [-0.0052976342521936955, 3.001395292131565e-18, -5.297632486317781], [-0.005405728828772478, 3.062636694954753e-18, -5.405727026865082], [-0.005513823405351261, 3.1238780977779414e-18, -5.513821567412384], [-0.005621917981930044, 3.1851195006011296e-18, -5.621916107959685], [-0.0057300125585088265, 3.246360903424318e-18, -5.730010648506987], [-0.00583810713508761, 3.307602306247506e-18, -5.838105189054288], [-0.005946201711666392, 3.368843709070694e-18, -5.94619972960159], [-0.006054296288245175, 3.4300851118938827e-18, -6.054294270148892], [-0.006162390864823958, 3.491326514717071e-18, -6.162388810696194], [-0.006270485441402741, 3.552567917540259e-18, -6.270483351243495], [-0.006378580017981523, 3.613809320363447e-18, -6.378577891790797], [-0.006486674594560307, 3.675050723186635e-18, -6.486672432338098], [-0.006594769171139089, 3.736292126009824e-18, -6.5947669728854], [-0.006702863747717873, 3.797533528833012e-18, -6.702861513432701], [-0.006810958324296655, 3.8587749316562e-18, -6.810956053980003], [-0.006919052900875438, 3.920016334479389e-18, -6.919050594527304], [-0.007027147477454221, 3.9812577373025765e-18, -7.027145135074606], [-0.007135242054033004, 4.042499140125764e-18, -7.135239675621907], [-0.007243336630611786, 4.103740542948953e-18, -7.243334216169209], [-0.00735143120719057, 4.1649819457721415e-18, -7.351428756716511], [-0.007459525783769352, 4.226223348595329e-18, -7.459523297263813], [-0.007567620360348135, 4.287464751418518e-18, -7.567617837811114], [-0.007675714936926918, 4.3487061542417065e-18, -7.675712378358416], [-0.007783809513505701, 4.409947557064894e-18, -7.783806918905717], [-0.007891904090084483, 4.471188959888083e-18, -7.891901459453019], [-0.007999998666663266, 4.532430362711271e-18, -7.99999600000032]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.999998958339201e-10, -9.999997083329335e-07, -0.0009999995000000417], [-5.454728593334104e-08, -0.0001090945627752942, -0.10909454004730183], [-1.0859457197084817e-07, -0.00021718912584225546, -0.21718908059460362], [-1.626418580083553e-07, -0.0003252836889092167, -0.3252836211419054], [-2.1668914404586242e-07, -0.000433378251976178, -0.43337816168920723], [-2.7073643008336956e-07, -0.0005414728150431393, -0.541472702236509], [-3.247837161208767e-07, -0.0006495673781101006, -0.6495672427838108], [-3.788310021583838e-07, -0.0007576619411770618, -0.7576617833311126], [-4.328782881958909e-07, -0.0008657565042440231, -0.8657563238784144], [-4.86925574233398e-07, -0.0009738510673109843, -0.9738508644257161], [-5.409728602709051e-07, -0.0010819456303779455, -1.081945404973018], [-5.950201463084123e-07, -0.0011900401934449066, -1.1900399455203197], [-6.490674323459193e-07, -0.0012981347565118682, -1.2981344860676214], [-7.031147183834264e-07, -0.0014062293195788293, -1.4062290266149233], [-7.571620044209336e-07, -0.0015143238826457906, -1.514323567162225], [-8.112092904584407e-07, -0.001622418445712752, -1.6224181077095268], [-8.652565764959479e-07, -0.0017305130087797132, -1.7305126482568285], [-9.19303862533455e-07, -0.0018386075718466743, -1.8386071888041304], [-9.733511485709621e-07, -0.0019467021349136356, -1.9467017293514322], [-1.0273984346084692e-06, -0.0020547966979805967, -2.0547962698987337], [-1.081445720645976e-06, -0.002162891261047558, -2.162890810446035], [-1.1354930066834832e-06, -0.0022709858241145185, -2.270985350993337], [-1.18954029272099e-06, -0.0023790803871814796, -2.3790798915406386], [-1.2435875787584971e-06, -0.0024871749502484407, -2.48717443208794], [-1.2976348647960042e-06, -0.002595269513315402, -2.5952689726352416], [-1.3516821508335113e-06, -0.002703364076382363, -2.703363513182543], [-1.4057294368710182e-06, -0.002811458639449324, -2.8114580537298446], [-1.4597767229085252e-06, -0.002919553202516285, -2.919552594277146], [-1.5138240089460321e-06, -0.003027647765583246, -3.027647134824448], [-1.5678712949835392e-06, -0.003135742328650207, -3.1357416753717495], [-1.6219185810210463e-06, -0.003243836891717168, -3.243836215919051], [-1.6759658670585531e-06, -0.0033519314547841295, -3.3519307564663525], [-1.7300131530960602e-06, -0.0034600260178510906, -3.460025297013654], [-1.7840604391335673e-06, -0.0035681205809180512, -3.5681198375609555], [-1.8381077251710744e-06, -0.0036762151439850123, -3.6762143781082575], [-1.8921550112085813e-06, -0.0037843097070519734, -3.784308918655559], [-1.9462022972460883e-06, -0.003892404270118934, -3.8924034592028605], [-2.0002495832835954e-06, -0.004000498833185896, -4.000497999750162], [-2.0542968693211025e-06, -0.004108593396252856, -4.1085925402974635], [-2.1083441553586096e-06, -0.004216687959319817, -4.216687080844765], [-2.1623914413961162e-06, -0.004324782522386778, -4.3247816213920665], [-2.2164387274336233e-06, -0.00443287708545374, -4.432876161939368], [-2.2704860134711304e-06, -0.004540971648520701, -4.5409707024866695], [-2.324533299508637e-06, -0.004649066211587662, -4.649065243033972], [-2.378580585546144e-06, -0.004757160774654623, -4.757159783581273], [-2.4326278715836517e-06, -0.004865255337721584, -4.865254324128575], [-2.4866751576211587e-06, -0.004973349900788545, -4.973348864675876], [-2.5407224436586654e-06, -0.005081444463855505, -5.081443405223178], [-2.5947697296961725e-06, -0.005189539026922467, -5.189537945770479], [-2.6488170157336796e-06, -0.005297633589989428, -5.297632486317781], [-2.7028643017711866e-06, -0.005405728153056389, -5.405727026865082], [-2.7569115878086933e-06, -0.0055138227161233505, -5.513821567412384], [-2.8109588738462004e-06, -0.005621917279190311, -5.621916107959685], [-2.8650061598837075e-06, -0.005730011842257272, -5.730010648506987], [-2.919053445921215e-06, -0.005838106405324233, -5.838105189054288], [-2.9731007319587216e-06, -0.005946200968391194, -5.94619972960159], [-3.0271480179962287e-06, -0.006054295531458156, -6.054294270148892], [-3.0811953040337358e-06, -0.006162390094525116, -6.162388810696194], [-3.1352425900712424e-06, -0.006270484657592078, -6.270483351243495], [-3.1892898761087495e-06, -0.0063785792206590385, -6.378577891790797], [-3.2433371621462566e-06, -0.006486673783725999, -6.486672432338098], [-3.2973844481837637e-06, -0.006594768346792961, -6.5947669728854], [-3.3514317342212703e-06, -0.006702862909859921, -6.702861513432701], [-3.4054790202587774e-06, -0.006810957472926883, -6.810956053980003], [-3.459526306296285e-06, -0.0069190520359938435, -6.919050594527304], [-3.513573592333792e-06, -0.007027146599060805, -7.027145135074606], [-3.5676208783712987e-06, -0.007135241162127766, -7.135239675621907], [-3.6216681644088057e-06, -0.007243335725194727, -7.243334216169209], [-3.675715450446313e-06, -0.007351430288261688, -7.351428756716511], [-3.7297627364838195e-06, -0.0074595248513286486, -7.459523297263813], [-3.7838100225213266e-06, -0.00756761941439561, -7.567617837811114], [-3.837857308558833e-06, -0.007675713977462571, -7.675712378358416], [-3.89190459459634e-06, -0.007783808540529532, -7.783806918905717], [-3.945951880633847e-06, -0.007891903103596493, -7.891901459453019], [-3.9999991666713545e-06, -0.007999997666663454, -7.99999600000032]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.99999333333035e-07, -9.999996666677466e-10, -0.0009999995000000417], [0.00010909452186483231, -1.0909455822984752e-07, -0.10909454004730183], [0.00021718904439633157, -2.1718911679302732e-07, -0.21718908059460362], [0.00032528356692783085, -3.252836753562071e-07, -0.3252836211419054], [0.00043337808945933013, -4.3337823391938685e-07, -0.43337816168920723], [0.0005414726119908294, -5.414727924825667e-07, -0.541472702236509], [0.0006495671345223287, -6.495673510457464e-07, -0.6495672427838108], [0.0007576616570538279, -7.576619096089262e-07, -0.7576617833311126], [0.0008657561795853272, -8.65756468172106e-07, -0.8657563238784144], [0.0009738507021168264, -9.738510267352857e-07, -0.9738508644257161], [0.0010819452246483257, -1.0819455852984654e-06, -1.081945404973018], [0.001190039747179825, -1.1900401438616452e-06, -1.1900399455203197], [0.001298134269711324, -1.298134702424825e-06, -1.2981344860676214], [0.0014062287922428235, -1.4062292609880049e-06, -1.4062290266149233], [0.0015143233147743226, -1.5143238195511846e-06, -1.514323567162225], [0.0016224178373058218, -1.6224183781143644e-06, -1.6224181077095268], [0.0017305123598373212, -1.730512936677544e-06, -1.7305126482568285], [0.0018386068823688206, -1.8386074952407238e-06, -1.8386071888041304], [0.0019467014049003198, -1.946702053803904e-06, -1.9467017293514322], [0.0020547959274318187, -2.054796612367083e-06, -2.0547962698987337], [0.0021628904499633177, -2.162891170930263e-06, -2.162890810446035], [0.002270984972494817, -2.270985729493442e-06, -2.270985350993337], [0.002379079495026316, -2.379080288056622e-06, -2.3790798915406386], [0.002487174017557815, -2.4871748466198012e-06, -2.48717443208794], [0.002595268540089314, -2.595269405182981e-06, -2.5952689726352416], [0.002703363062620813, -2.7033639637461607e-06, -2.703363513182543], [0.002811457585152312, -2.81145852230934e-06, -2.8114580537298446], [0.002919552107683811, -2.9195530808725198e-06, -2.919552594277146], [0.00302764663021531, -3.027647639435699e-06, -3.027647134824448], [0.003135741152746809, -3.135742197998879e-06, -3.1357416753717495], [0.003243835675278308, -3.243836756562058e-06, -3.243836215919051], [0.003351930197809807, -3.351931315125238e-06, -3.3519307564663525], [0.0034600247203413065, -3.4600258736884176e-06, -3.460025297013654], [0.0035681192428728054, -3.568120432251597e-06, -3.5681198375609555], [0.003676213765404305, -3.6762149908147767e-06, -3.6762143781082575], [0.003784308287935804, -3.784309549377956e-06, -3.784308918655559], [0.0038924028104673027, -3.892404107941136e-06, -3.8924034592028605], [0.004000497332998802, -4.000498666504315e-06, -4.000497999750162], [0.0041085918555303, -4.108593225067495e-06, -4.1085925402974635], [0.0042166863780618, -4.2166877836306745e-06, -4.216687080844765], [0.004324780900593298, -4.324782342193854e-06, -4.3247816213920665], [0.0044328754231247975, -4.432876900757034e-06, -4.432876161939368], [0.004540969945656296, -4.540971459320213e-06, -4.5409707024866695], [0.004649064468187796, -4.649066017883393e-06, -4.649065243033972], [0.004757158990719296, -4.757160576446572e-06, -4.757159783581273], [0.004865253513250794, -4.865255135009752e-06, -4.865254324128575], [0.004973348035782294, -4.9733496935729314e-06, -4.973348864675876], [0.005081442558313792, -5.081444252136111e-06, -5.081443405223178], [0.0051895370808452915, -5.189538810699291e-06, -5.189537945770479], [0.00529763160337679, -5.29763336926247e-06, -5.297632486317781], [0.0054057261259082895, -5.4057279278256496e-06, -5.405727026865082], [0.005513820648439788, -5.51382248638883e-06, -5.513821567412384], [0.005621915170971287, -5.621917044952009e-06, -5.621916107959685], [0.005730009693502786, -5.730011603515188e-06, -5.730010648506987], [0.005838104216034285, -5.838106162078368e-06, -5.838105189054288], [0.005946198738565784, -5.946200720641548e-06, -5.94619972960159], [0.006054293261097284, -6.054295279204727e-06, -6.054294270148892], [0.006162387783628783, -6.1623898377679065e-06, -6.162388810696194], [0.006270482306160282, -6.270484396331087e-06, -6.270483351243495], [0.0063785768286917805, -6.378578954894266e-06, -6.378577891790797], [0.00648667135122328, -6.486673513457445e-06, -6.486672432338098], [0.006594765873754778, -6.594768072020625e-06, -6.5947669728854], [0.006702860396286278, -6.702862630583805e-06, -6.702861513432701], [0.006810954918817776, -6.810957189146984e-06, -6.810956053980003], [0.006919049441349276, -6.919051747710163e-06, -6.919050594527304], [0.007027143963880775, -7.0271463062733435e-06, -7.027145135074606], [0.007135238486412274, -7.135240864836523e-06, -7.135239675621907], [0.007243333008943773, -7.243335423399702e-06, -7.243334216169209], [0.0073514275314752724, -7.351429981962882e-06, -7.351428756716511], [0.007459522054006772, -7.459524540526062e-06, -7.459523297263813], [0.00756761657653827, -7.567619099089241e-06, -7.567617837811114], [0.00767571109906977, -7.67571365765242e-06, -7.675712378358416], [0.007783805621601268, -7.7838082162156e-06, -7.783806918905717], [0.007891900144132767, -7.89190277477878e-06, -7.891901459453019], [0.007999994666664267, -7.999997333341959e-06, -7.99999600000032]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.999993333334667e-07, 9.999996666667112e-10, 0.0009999995000000417], [4.3413257538534856e-05, 4.3413272009626484e-08, 0.0009990571991558745], [8.574838168282191e-05, 8.574841026562724e-08, 0.000996316820938996], [0.00012792917810194892, 1.2792922074502534e-07, 0.0009917832974114225], [0.00016987973088672842, 1.6987978751332802e-07, 0.0009854647878918407], [0.00021152453851452615, 2.1152460902273383e-07, 0.0009773726642706745], [0.0002527886497349534, 2.5278873399787034e-07, 0.0009675214905432515], [0.0002935977984651942, 2.9359789633116614e-07, 0.0009559289965978992], [0.0003338785374521848, 3.3387864874507516e-07, 0.0009426160463061501], [0.0003735583704610854, 3.73558494980592e-07, 0.0009276065999724826], [0.0004125658827521326, 4.1256602027414847e-07, 0.0009109276712111849], [0.00045083086961104625, 4.5083101988806286e-07, 0.0008926092783279475], [0.0004882844627016629, 4.882846254632155e-07, 0.0008726843902936921], [0.00052485925401339, 5.248594289665446e-07, 0.0008511888674078671], [0.0005604894171804052, 5.604896040102857e-07, 0.0008281613967580072], [0.0005951108259542509, 5.951110243246055e-07, 0.0008036434225917102], [0.0006286611696166013, 6.286613791704084e-07, 0.0007776790717263499], [0.0006610800651244867, 6.610802854845966e-07, 0.0007503150741307684], [0.0006923091657861359, 6.923093965559501e-07, 0.0007216006788218842], [0.0007222922662718467, 7.222925070360317e-07, 0.0006915875652275813], [0.0007509754037708884, 7.509756540961231e-07, 0.0006603297501754091], [0.0007783069551123767, 7.783072145481321e-07, 0.0006278834906744886], [0.0008042377296753241, 8.042379977546746e-07, 0.0005943071826656004], [0.0008287210579206516, 8.287213341611147e-07, 0.0005596612559216747], [0.00085171287538582, 8.517131592902253e-07, 0.0005240080652878475], [0.0008731718019909133, 8.73172093048297e-07, 0.00048741177845681706], [0.0008930592165134391, 8.930595141999636e-07, 0.000449938260481487], [0.0009113393260978083, 9.113396298777051e-07, 0.0004116549552327431], [0.0009279792306743931, 9.27979540000927e-07, 0.0003726307640157144], [0.0009429489821722235, 9.429492964886766e-07, 0.0003329359215629817], [0.0009562216384187535, 9.56221957159427e-07, 0.0002926418696279181], [0.0009677733116296869, 9.677736342209197e-07, 0.0002518211284056639], [0.0009775832114015965, 9.775835372627971e-07, 0.00021054716601315104], [0.0009856336821299548, 9.856340106746468e-07, 0.0001688942662630808], [0.0009919102347852363, 9.919105654221134e-07, 0.00012693739496983473], [0.0009964015729898984, 9.964019051238889e-07, 8.475206502793569e-05], [0.0009990996133493115, 9.99099946382649e-07, 4.24142005058884e-05], [0.0009999995000000417, 9.999998333333416e-07, -1.6081226496766367e-19], [0.0009990996133493115, 9.99099946382649e-07, -4.241420050588872e-05], [0.0009964015729898984, 9.964019051238889e-07, -8.4752065027936e-05], [0.0009919102347852363, 9.919105654221134e-07, -0.00012693739496983506], [0.0009856336821299546, 9.856340106746468e-07, -0.00016889426626308114], [0.0009775832114015963, 9.775835372627971e-07, -0.00021054716601315136], [0.0009677733116296868, 9.677736342209197e-07, -0.00025182112840566425], [0.0009562216384187533, 9.56221957159427e-07, -0.00029264186962791835], [0.0009429489821722234, 9.429492964886765e-07, -0.000332935921562982], [0.000927979230674393, 9.279795400009269e-07, -0.00037263076401571467], [0.0009113393260978082, 9.11339629877705e-07, -0.0004116549552327434], [0.0008930592165134391, 8.930595141999636e-07, -0.00044993826048148706], [0.0008731718019909132, 8.731720930482969e-07, -0.0004874117784568171], [0.00085171287538582, 8.517131592902253e-07, -0.0005240080652878476], [0.0008287210579206515, 8.287213341611146e-07, -0.0005596612559216749], [0.0008042377296753239, 8.042379977546744e-07, -0.0005943071826656006], [0.0007783069551123763, 7.783072145481318e-07, -0.000627883490674489], [0.000750975403770888, 7.509756540961228e-07, -0.0006603297501754094], [0.0007222922662718463, 7.222925070360313e-07, -0.0006915875652275818], [0.0006923091657861354, 6.923093965559496e-07, -0.0007216006788218847], [0.0006610800651244861, 6.610802854845959e-07, -0.000750315074130769], [0.0006286611696166006, 6.286613791704076e-07, -0.0007776790717263504], [0.0005951108259542499, 5.951110243246046e-07, -0.0008036434225917109], [0.0005604894171804042, 5.604896040102846e-07, -0.000828161396758008], [0.0005248592540133889, 5.248594289665435e-07, -0.0008511888674078679], [0.0004882844627016616, 4.882846254632142e-07, -0.0008726843902936927], [0.0004508308696110449, 4.508310198880615e-07, -0.0008926092783279483], [0.00041256588275213115, 4.1256602027414704e-07, -0.0009109276712111856], [0.00037355837046108386, 3.7355849498059046e-07, -0.0009276065999724832], [0.00033387853745218325, 3.3387864874507357e-07, -0.0009426160463061506], [0.0002935977984651925, 2.9359789633116444e-07, -0.0009559289965978998], [0.00025278864973495165, 2.527887339978686e-07, -0.0009675214905432519], [0.00021152453851452428, 2.1152460902273198e-07, -0.000977372664270675], [0.0001698797308867265, 1.698797875133261e-07, -0.000985464787891841], [0.00012792917810194692, 1.2792922074502332e-07, -0.0009917832974114227], [8.574838168281984e-05, 8.574841026562516e-08, -0.0009963168209389962], [4.341325753853271e-05, 4.341327200962434e-08, -0.0009990571991558745], [9.999993333312587e-07, 9.99999666664503e-10, -0.0009999995000000417]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.99999895833003e-10, 9.999997083333652e-07, 0.0009999995000000417], [-2.1706638718128344e-08, 4.341327381851288e-05, 0.0009990571991558745], [-4.287421049206082e-08, 8.574841383847777e-05, 0.000996316820938996], [-6.396461836804653e-08, 0.0001279292260754097, 0.0009917832974114225], [-8.493990437409438e-08, 0.00016987979459165273, 0.0009854647878918407], [-1.0576231773158481e-07, 0.0002115246178362595, 0.0009773726642706745], [-1.263943827981472e-07, 0.0002527887445307346, 0.0009675214905432515], [-1.467989665153542e-07, 0.00029359790856441217, 0.0009559289965978992], [-1.6693934523984237e-07, 0.00033387866265668594, 0.0009426160463061501], [-1.86779270837578e-07, 0.00037355851054552975, 0.0009276065999724826], [-2.0628303592231365e-07, 0.00041256603746439986, 0.0009109276712111849], [-2.2541553812082065e-07, 0.0004508310386726893, 0.0008926092783279475], [-2.4414234324923483e-07, 0.0004882846458084089, 0.0008726843902936921], [-2.6242974728681254e-07, 0.0005248594508356881, 0.0008511888674078671], [-2.8024483703555717e-07, 0.00056048962736402, 0.0008281613967580072], [-2.9755554935654436e-07, 0.0005951110491208989, 0.0008036434225917102], [-3.1433072887633185e-07, 0.0006286614053646333, 0.0007776790717263499], [-3.3054018405959684e-07, 0.0006610803130296094, 0.0007503150741307684], [-3.4615474154708265e-07, 0.0006923094254021758, 0.0007216006788218842], [-3.6114629866105796e-07, 0.0007222925371315538, 0.0006915875652275813], [-3.754878739837908e-07, 0.0007509756853867763, 0.0006603297501754091], [-3.891536559180088e-07, 0.0007783072469776004, 0.0006278834906744886], [-4.021190491419454e-07, 0.0008042380312645922, 0.0005943071826656004], [-4.1436071887536585e-07, 0.0008287213686911714, 0.0005596612559216747], [-4.2585663287690255e-07, 0.0008517131947782747, 0.0005240080652878475], [-4.3658610109711467e-07, 0.0008731721294304687, 0.00048741177845681706], [-4.465298129159052e-07, 0.0008930595514107779, 0.000449938260481487], [-4.556698718972771e-07, 0.0009113396678501909, 0.0004116549552327431], [-4.639898279988769e-07, 0.0009279795786667423, 0.0003726307640157144], [-4.7147470717835655e-07, 0.0009429493357782319, 0.0003329359215629817], [-4.781110383432686e-07, 0.0009562219970020099, 0.0002926418696279181], [-4.83886877595991e-07, 0.0009677736745448225, 0.0002518211284056639], [-4.887918297300454e-07, 0.000977583577995446, 0.00021054716601315104], [-4.928170669391221e-07, 0.0009856340517427318, 0.0001688942662630808], [-4.95955344705138e-07, 0.0009919106067517215, 0.00012693739496983473], [-4.982010148367331e-07, 0.0009964019466406364, 8.475206502793569e-05], [-4.995500356347398e-07, 0.0009990999880118148, 4.24142005058884e-05], [-4.999999791663287e-07, 0.0009999998750000027, -1.6081226496766367e-19], [-4.995500356347398e-07, 0.0009990999880118148, -4.241420050588872e-05], [-4.982010148367331e-07, 0.0009964019466406364, -8.4752065027936e-05], [-4.95955344705138e-07, 0.0009919106067517215, -0.00012693739496983506], [-4.928170669391221e-07, 0.0009856340517427318, -0.00016889426626308114], [-4.887918297300454e-07, 0.0009775835779954457, -0.00021054716601315136], [-4.838868775959909e-07, 0.0009677736745448223, -0.00025182112840566425], [-4.781110383432686e-07, 0.0009562219970020098, -0.00029264186962791835], [-4.714747071783565e-07, 0.0009429493357782318, -0.000332935921562982], [-4.6398982799887686e-07, 0.0009279795786667422, -0.00037263076401571467], [-4.5566987189727705e-07, 0.0009113396678501908, -0.0004116549552327434], [-4.465298129159052e-07, 0.0008930595514107779, -0.00044993826048148706], [-4.365861010971146e-07, 0.0008731721294304686, -0.0004874117784568171], [-4.2585663287690255e-07, 0.0008517131947782747, -0.0005240080652878476], [-4.143607188753658e-07, 0.0008287213686911713, -0.0005596612559216749], [-4.0211904914194525e-07, 0.000804238031264592, -0.0005943071826656006], [-3.8915365591800863e-07, 0.0007783072469776, -0.000627883490674489], [-3.7548787398379065e-07, 0.000750975685386776, -0.0006603297501754094], [-3.6114629866105775e-07, 0.0007222925371315533, -0.0006915875652275818], [-3.461547415470824e-07, 0.0006923094254021753, -0.0007216006788218847], [-3.305401840595965e-07, 0.0006610803130296087, -0.000750315074130769], [-3.143307288763315e-07, 0.0006286614053646326, -0.0007776790717263504], [-2.9755554935654393e-07, 0.000595111049120898, -0.0008036434225917109], [-2.8024483703555664e-07, 0.0005604896273640189, -0.000828161396758008], [-2.6242974728681196e-07, 0.0005248594508356871, -0.0008511888674078679], [-2.441423432492342e-07, 0.0004882846458084076, -0.0008726843902936927], [-2.2541553812081994e-07, 0.00045083103867268794, -0.0008926092783279483], [-2.0628303592231294e-07, 0.00041256603746439845, -0.0009109276712111856], [-1.8677927083757726e-07, 0.0003735585105455283, -0.0009276065999724832], [-1.6693934523984158e-07, 0.00033387866265668437, -0.0009426160463061506], [-1.4679896651535335e-07, 0.00029359790856441054, -0.0009559289965978998], [-1.263943827981463e-07, 0.0002527887445307328, -0.0009675214905432519], [-1.0576231773158388e-07, 0.00021152461783625762, -0.000977372664270675], [-8.493990437409343e-08, 0.0001698797945916508, -0.000985464787891841], [-6.396461836804552e-08, 0.0001279292260754077, -0.0009917832974114227], [-4.2874210492059774e-08, 8.57484138384757e-05, -0.0009963168209389962], [-2.1706638718127272e-08, 4.341327381851073e-05, -0.0009990571991558745], [-4.999998958318989e-10, 9.99999708331157e-07, -0.0009999995000000417]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-9.999998333333416e-07, 5.665537953391544e-22, 0.0009999995000000417], [-4.3413279245172666e-05, 2.4595962223797947e-20, 0.0009990571991558745], [-8.574842455703062e-05, 4.858110347398902e-20, 0.000996316820938996], [-0.00012792924206656462, 7.24788097074746e-20, 0.0009917832974114225], [-0.00016987981582662927, 9.62460704491043e-20, 0.0009854647878918407], [-0.00021152464427683947, 1.198401099961586e-19, 0.0009773726642706745], [-0.00025278877612933094, 1.4321846440495514e-19, 0.0009675214905432515], [-0.0002935979452641546, 1.66339057916359e-19, 0.0009559289965978992], [-0.0003338787043915231, 1.8916027868264856e-19, 0.0009426160463061501], [-0.00037355855724034845, 2.1164105365944533e-19, 0.0009276065999724826], [-0.0004125660890351599, 2.337409225279198e-19, 0.0009109276712111849], [-0.000450831095026575, 2.5542011051422934e-19, 0.0008926092783279475], [-0.000488284706843996, 2.7663959997512993e-19, 0.0008726843902936921], [-0.0005248595164431264, 2.973612006209242e-19, 0.0008511888674078671], [-0.0005604896974252306, 3.1754761824935906e-19, 0.0008281613967580072], [-0.0005951111235097878, 3.3716252186676937e-19, 0.0008036434225917102], [-0.0006286614839473172, 3.5617060907566263e-19, 0.0007776790717263499], [-0.000661080395664657, 3.7453766961106313e-19, 0.0007503150741307684], [-0.000692309511940863, 3.9223064691126477e-19, 0.0007216006788218842], [-0.0007222926274181303, 4.092176976121777e-19, 0.0006915875652275813], [-0.0007509757792587467, 4.2546824885819324e-19, 0.0006603297501754091], [-0.0007783073442660163, 4.409530533264213e-19, 0.0006278834906744886], [-0.0008042381317943565, 4.556442418652669e-19, 0.0005943071826656004], [-0.0008287214722813532, 4.695153736526108e-19, 0.0005596612559216747], [-0.0008517133012424351, 4.825414837833187e-19, 0.0005240080652878475], [-0.0008731722385769962, 4.946991282004333e-19, 0.00048741177845681706], [-0.0008930596630432334, 5.059664258891837e-19, 0.000449938260481487], [-0.0009113397817676612, 5.163230982578706e-19, 0.0004116549552327431], [-0.0009279796946642017, 5.257505056347531e-19, 0.0003726307640157144], [-0.000942949453646911, 5.342316808152485e-19, 0.0003329359215629817], [-0.0009562221165297719, 5.417513595990701e-19, 0.0002926418696279181], [-0.0009677737955165444, 5.482960082623404e-19, 0.0002518211284056639], [-0.0009775837001934058, 5.538538479152381e-19, 0.00021054716601315104], [-0.000985634174947001, 5.584148757013409e-19, 0.0001688942662630808], [-0.0009919107307405602, 5.619708828005075e-19, 0.00012693739496983473], [-0.0009964020711908926, 5.645154692029013e-19, 8.475206502793569e-05], [-0.0009991001128993263, 5.660440552275621e-19, 4.24142005058884e-05], [-0.001, 5.66553889764798e-19, -1.6081226496766367e-19], [-0.0009991001128993263, 5.660440552275621e-19, -4.241420050588872e-05], [-0.0009964020711908926, 5.645154692029013e-19, -8.4752065027936e-05], [-0.0009919107307405602, 5.619708828005075e-19, -0.00012693739496983506], [-0.000985634174947001, 5.584148757013408e-19, -0.00016889426626308114], [-0.0009775837001934056, 5.538538479152381e-19, -0.00021054716601315136], [-0.0009677737955165442, 5.482960082623403e-19, -0.00025182112840566425], [-0.0009562221165297718, 5.417513595990701e-19, -0.00029264186962791835], [-0.0009429494536469109, 5.342316808152485e-19, -0.000332935921562982], [-0.0009279796946642016, 5.25750505634753e-19, -0.00037263076401571467], [-0.0009113397817676611, 5.163230982578705e-19, -0.0004116549552327434], [-0.0008930596630432334, 5.059664258891837e-19, -0.00044993826048148706], [-0.0008731722385769961, 4.946991282004333e-19, -0.0004874117784568171], [-0.0008517133012424351, 4.825414837833187e-19, -0.0005240080652878476], [-0.0008287214722813531, 4.695153736526107e-19, -0.0005596612559216749], [-0.0008042381317943563, 4.556442418652668e-19, -0.0005943071826656006], [-0.000778307344266016, 4.409530533264211e-19, -0.000627883490674489], [-0.0007509757792587464, 4.2546824885819304e-19, -0.0006603297501754094], [-0.0007222926274181298, 4.092176976121774e-19, -0.0006915875652275818], [-0.0006923095119408624, 3.9223064691126443e-19, -0.0007216006788218847], [-0.0006610803956646564, 3.7453766961106274e-19, -0.000750315074130769], [-0.0006286614839473163, 3.561706090756622e-19, -0.0007776790717263504], [-0.0005951111235097869, 3.371625218667689e-19, -0.0008036434225917109], [-0.0005604896974252296, 3.175476182493585e-19, -0.000828161396758008], [-0.0005248595164431253, 2.9736120062092355e-19, -0.0008511888674078679], [-0.0004882847068439946, 2.766395999751292e-19, -0.0008726843902936927], [-0.0004508310950265736, 2.554201105142285e-19, -0.0008926092783279483], [-0.0004125660890351585, 2.33740922527919e-19, -0.0009109276712111856], [-0.00037355855724034693, 2.116410536594445e-19, -0.0009276065999724832], [-0.00033387870439152153, 1.8916027868264764e-19, -0.0009426160463061506], [-0.0002935979452641529, 1.6633905791635807e-19, -0.0009559289965978998], [-0.00025278877612932915, 1.4321846440495413e-19, -0.0009675214905432519], [-0.0002115246442768376, 1.1984010999615754e-19, -0.000977372664270675], [-0.00016987981582662734, 9.624607044910321e-20, -0.000985464787891841], [-0.0001279292420665626, 7.247880970747347e-20, -0.0009917832974114227], [-8.574842455702854e-05, 4.858110347398784e-20, -0.0009963168209389962], [-4.3413279245170525e-05, 2.4595962223796732e-20, -0.0009990571991558745], [-9.999998333311336e-07, 5.665537953379034e-22, -0.0009999995000000417]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.99999895834136e-10, -9.999997083333652e-07, 0.0009999995000000417], [-2.170663871817753e-08, -4.341327381851288e-05, 0.0009990571991558745], [-4.287421049215797e-08, -8.574841383847777e-05, 0.000996316820938996], [-6.396461836819147e-08, -0.0001279292260754097, 0.0009917832974114225], [-8.493990437428685e-08, -0.00016987979459165273, 0.0009854647878918407], [-1.0576231773182448e-07, -0.0002115246178362595, 0.0009773726642706745], [-1.263943827984336e-07, -0.0002527887445307346, 0.0009675214905432515], [-1.4679896651568684e-07, -0.00029359790856441217, 0.0009559289965978992], [-1.6693934524022065e-07, -0.00033387866265668594, 0.0009426160463061501], [-1.8677927083800125e-07, -0.00037355851054552975, 0.0009276065999724826], [-2.062830359227811e-07, -0.00041256603746439986, 0.0009109276712111849], [-2.2541553812133144e-07, -0.0004508310386726893, 0.0008926092783279475], [-2.441423432497881e-07, -0.0004882846458084089, 0.0008726843902936921], [-2.624297472874072e-07, -0.0005248594508356881, 0.0008511888674078671], [-2.802448370361922e-07, -0.00056048962736402, 0.0008281613967580072], [-2.9755554935721865e-07, -0.0005951110491208989, 0.0008036434225917102], [-3.1433072887704415e-07, -0.0006286614053646333, 0.0007776790717263499], [-3.305401840603459e-07, -0.0006610803130296094, 0.0007503150741307684], [-3.4615474154786706e-07, -0.0006923094254021758, 0.0007216006788218842], [-3.611462986618763e-07, -0.0007222925371315538, 0.0006915875652275813], [-3.7548787398464165e-07, -0.0007509756853867763, 0.0006603297501754091], [-3.891536559188906e-07, -0.0007783072469776004, 0.0006278834906744886], [-4.021190491428566e-07, -0.0008042380312645922, 0.0005943071826656004], [-4.143607188763048e-07, -0.0008287213686911714, 0.0005596612559216747], [-4.258566328778676e-07, -0.0008517131947782747, 0.0005240080652878475], [-4.36586101098104e-07, -0.0008731721294304687, 0.00048741177845681706], [-4.4652981291691705e-07, -0.0008930595514107779, 0.000449938260481487], [-4.556698718983097e-07, -0.0009113396678501909, 0.0004116549552327431], [-4.6398982799992835e-07, -0.0009279795786667423, 0.0003726307640157144], [-4.714747071794249e-07, -0.0009429493357782319, 0.0003329359215629817], [-4.781110383443521e-07, -0.0009562219970020099, 0.0002926418696279181], [-4.838868775970875e-07, -0.0009677736745448225, 0.0002518211284056639], [-4.88791829731153e-07, -0.000977583577995446, 0.00021054716601315104], [-4.928170669402389e-07, -0.0009856340517427318, 0.0001688942662630808], [-4.959553447062618e-07, -0.0009919106067517215, 0.00012693739496983473], [-4.982010148378619e-07, -0.0009964019466406364, 8.475206502793569e-05], [-4.995500356358717e-07, -0.0009990999880118148, 4.24142005058884e-05], [-4.999999791674617e-07, -0.0009999998750000027, -1.6081226496766367e-19], [-4.995500356358717e-07, -0.0009990999880118148, -4.241420050588872e-05], [-4.982010148378619e-07, -0.0009964019466406364, -8.4752065027936e-05], [-4.959553447062618e-07, -0.0009919106067517215, -0.00012693739496983506], [-4.928170669402388e-07, -0.0009856340517427318, -0.00016889426626308114], [-4.88791829731153e-07, -0.0009775835779954457, -0.00021054716601315136], [-4.838868775970875e-07, -0.0009677736745448223, -0.00025182112840566425], [-4.78111038344352e-07, -0.0009562219970020098, -0.00029264186962791835], [-4.7147470717942487e-07, -0.0009429493357782318, -0.000332935921562982], [-4.639898279999283e-07, -0.0009279795786667422, -0.00037263076401571467], [-4.5566987189830963e-07, -0.0009113396678501908, -0.0004116549552327434], [-4.4652981291691705e-07, -0.0008930595514107779, -0.00044993826048148706], [-4.3658610109810395e-07, -0.0008731721294304686, -0.0004874117784568171], [-4.258566328778676e-07, -0.0008517131947782747, -0.0005240080652878476], [-4.1436071887630473e-07, -0.0008287213686911713, -0.0005596612559216749], [-4.021190491428565e-07, -0.000804238031264592, -0.0005943071826656006], [-3.8915365591889044e-07, -0.0007783072469776, -0.000627883490674489], [-3.754878739846415e-07, -0.000750975685386776, -0.0006603297501754094], [-3.611462986618761e-07, -0.0007222925371315533, -0.0006915875652275818], [-3.461547415478668e-07, -0.0006923094254021753, -0.0007216006788218847], [-3.305401840603455e-07, -0.0006610803130296087, -0.000750315074130769], [-3.143307288770437e-07, -0.0006286614053646326, -0.0007776790717263504], [-2.9755554935721817e-07, -0.000595111049120898, -0.0008036434225917109], [-2.802448370361917e-07, -0.0005604896273640189, -0.000828161396758008], [-2.6242974728740663e-07, -0.0005248594508356871, -0.0008511888674078679], [-2.4414234324978747e-07, -0.0004882846458084076, -0.0008726843902936927], [-2.2541553812133075e-07, -0.00045083103867268794, -0.0008926092783279483], [-2.0628303592278037e-07, -0.00041256603746439845, -0.0009109276712111856], [-1.8677927083800051e-07, -0.0003735585105455283, -0.0009276065999724832], [-1.6693934524021986e-07, -0.00033387866265668437, -0.0009426160463061506], [-1.4679896651568602e-07, -0.00029359790856441054, -0.0009559289965978998], [-1.263943827984327e-07, -0.0002527887445307328, -0.0009675214905432519], [-1.0576231773182354e-07, -0.00021152461783625762, -0.000977372664270675], [-8.49399043742859e-08, -0.0001698797945916508, -0.000985464787891841], [-6.396461836819047e-08, -0.0001279292260754077, -0.0009917832974114227], [-4.287421049215693e-08, -8.57484138384757e-05, -0.0009963168209389962], [-2.170663871817646e-08, -4.341327381851073e-05, -0.0009990571991558745], [-4.99999895833032e-10, -9.99999708331157e-07, -0.0009999995000000417]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.999993333334667e-07, -9.999996666681784e-10, 0.0009999995000000417], [4.3413257538534856e-05, -4.341327200969018e-08, 0.0009990571991558745], [8.574838168282191e-05, -8.574841026575305e-08, 0.000996316820938996], [0.00012792917810194892, -1.2792922074521303e-07, 0.0009917832974114225], [0.00016987973088672842, -1.6987978751357728e-07, 0.0009854647878918407], [0.00021152453851452615, -2.115246090230442e-07, 0.0009773726642706745], [0.0002527886497349534, -2.5278873399824123e-07, 0.0009675214905432515], [0.0002935977984651942, -2.935978963315969e-07, 0.0009559289965978992], [0.0003338785374521848, -3.3387864874556506e-07, 0.0009426160463061501], [0.0003735583704610854, -3.735584949811401e-07, 0.0009276065999724826], [0.0004125658827521326, -4.1256602027475383e-07, 0.0009109276712111849], [0.00045083086961104625, -4.508310198887244e-07, 0.0008926092783279475], [0.0004882844627016629, -4.882846254639319e-07, 0.0008726843902936921], [0.00052485925401339, -5.248594289673147e-07, 0.0008511888674078671], [0.0005604894171804052, -5.60489604011108e-07, 0.0008281613967580072], [0.0005951108259542509, -5.951110243254787e-07, 0.0008036434225917102], [0.0006286611696166013, -6.286613791713308e-07, 0.0007776790717263499], [0.0006610800651244867, -6.610802854855666e-07, 0.0007503150741307684], [0.0006923091657861359, -6.923093965569659e-07, 0.0007216006788218842], [0.0007222922662718467, -7.222925070370916e-07, 0.0006915875652275813], [0.0007509754037708884, -7.50975654097225e-07, 0.0006603297501754091], [0.0007783069551123767, -7.783072145492741e-07, 0.0006278834906744886], [0.0008042377296753241, -8.042379977558547e-07, 0.0005943071826656004], [0.0008287210579206516, -8.287213341623307e-07, 0.0005596612559216747], [0.00085171287538582, -8.51713159291475e-07, 0.0005240080652878475], [0.0008731718019909133, -8.731720930495783e-07, 0.00048741177845681706], [0.0008930592165134391, -8.930595142012739e-07, 0.000449938260481487], [0.0009113393260978083, -9.113396298790423e-07, 0.0004116549552327431], [0.0009279792306743931, -9.279795400022886e-07, 0.0003726307640157144], [0.0009429489821722235, -9.429492964900602e-07, 0.0003329359215629817], [0.0009562216384187535, -9.562219571608301e-07, 0.0002926418696279181], [0.0009677733116296869, -9.677736342223397e-07, 0.0002518211284056639], [0.0009775832114015965, -9.775835372642316e-07, 0.00021054716601315104], [0.0009856336821299548, -9.85634010676093e-07, 0.0001688942662630808], [0.0009919102347852363, -9.919105654235689e-07, 0.00012693739496983473], [0.0009964015729898984, -9.964019051253508e-07, 8.475206502793569e-05], [0.0009990996133493115, -9.99099946384115e-07, 4.24142005058884e-05], [0.0009999995000000417, -9.99999833334809e-07, -1.6081226496766367e-19], [0.0009990996133493115, -9.99099946384115e-07, -4.241420050588872e-05], [0.0009964015729898984, -9.964019051253508e-07, -8.4752065027936e-05], [0.0009919102347852363, -9.919105654235689e-07, -0.00012693739496983506], [0.0009856336821299546, -9.856340106760929e-07, -0.00016889426626308114], [0.0009775832114015963, -9.775835372642316e-07, -0.00021054716601315136], [0.0009677733116296868, -9.677736342223397e-07, -0.00025182112840566425], [0.0009562216384187533, -9.5622195716083e-07, -0.00029264186962791835], [0.0009429489821722234, -9.429492964900601e-07, -0.000332935921562982], [0.000927979230674393, -9.279795400022885e-07, -0.00037263076401571467], [0.0009113393260978082, -9.113396298790421e-07, -0.0004116549552327434], [0.0008930592165134391, -8.930595142012739e-07, -0.00044993826048148706], [0.0008731718019909132, -8.731720930495782e-07, -0.0004874117784568171], [0.00085171287538582, -8.51713159291475e-07, -0.0005240080652878476], [0.0008287210579206515, -8.287213341623306e-07, -0.0005596612559216749], [0.0008042377296753239, -8.042379977558545e-07, -0.0005943071826656006], [0.0007783069551123763, -7.783072145492737e-07, -0.000627883490674489], [0.000750975403770888, -7.509756540972246e-07, -0.0006603297501754094], [0.0007222922662718463, -7.22292507037091e-07, -0.0006915875652275818], [0.0006923091657861354, -6.923093965569654e-07, -0.0007216006788218847], [0.0006610800651244861, -6.610802854855659e-07, -0.000750315074130769], [0.0006286611696166006, -6.2866137917133e-07, -0.0007776790717263504], [0.0005951108259542499, -5.951110243254778e-07, -0.0008036434225917109], [0.0005604894171804042, -5.604896040111071e-07, -0.000828161396758008], [0.0005248592540133889, -5.248594289673137e-07, -0.0008511888674078679], [0.0004882844627016616, -4.882846254639306e-07, -0.0008726843902936927], [0.0004508308696110449, -4.50831019888723e-07, -0.0008926092783279483], [0.00041256588275213115, -4.125660202747524e-07, -0.0009109276712111856], [0.00037355837046108386, -3.735584949811386e-07, -0.0009276065999724832], [0.00033387853745218325, -3.338786487455634e-07, -0.0009426160463061506], [0.0002935977984651925, -2.9359789633159527e-07, -0.0009559289965978998], [0.00025278864973495165, -2.527887339982395e-07, -0.0009675214905432519], [0.00021152453851452428, -2.1152460902304233e-07, -0.000977372664270675], [0.0001698797308867265, -1.6987978751357538e-07, -0.000985464787891841], [0.00012792917810194692, -1.2792922074521105e-07, -0.0009917832974114227], [8.574838168281984e-05, -8.574841026575098e-08, -0.0009963168209389962], [4.341325753853271e-05, -4.341327200968804e-08, -0.0009990571991558745], [9.999993333312587e-07, -9.999996666659702e-10, -0.0009999995000000417]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0020007486661669334, 2.0007493330834225e-06, 2.0007489996250833], [0.08685907502022361, 8.68591039732602e-05, 1.998863691211116], [0.17156107465190595, 0.00017156113183895371, 1.993380879493696], [0.2559543030874743, 0.00025595438840560946, 1.9843104322959038], [0.3398868715716219, 0.0003398869848672911, 1.9716686743746001], [0.42320772043293814, 0.0004232078615022347, 1.955478358039552], [0.505766890957208, 0.0005057670595462391, 1.9357686222044104], [0.5874157952792373, 0.0005874159910845806, 1.9125749399432468], [0.6680074838074588, 0.0006680077064767091, 1.8859390546470296], [0.7473969097000165, 0.0007473971588324195, 1.8559089048949446], [0.8254411899163292, 0.0008254414650635027, 1.8225385381757782], [0.9019998623743007, 0.0009020001630410418, 1.7858880136146411], [0.9769351387503519, 0.0009769354643955285, 1.7460232938801044], [1.05011215246729, 0.0010501125025048142, 1.7030161264662902], [1.1213992014236958, 0.0011213995752235792, 1.656943914563583], [1.1906679850279673, 0.0011906683819174545, 1.6078895777503641], [1.2577938351104152, 0.0012577942543751945, 1.5559414027564946], [1.3226559402978169, 0.0013226563811833067, 1.5011928845671347], [1.3851375634466112, 0.0013851380251593173, 1.4437425581528847], [1.4451262517433971, 0.0014451267334523404, 1.3836938211290835], [1.5025140390946048, 0.0015025145399328182, 1.3211547476634498], [1.5571976404410874, 0.0015571981595071754, 1.2562378939669832], [1.6090786376479047, 0.0016090791740076653, 1.1890600957181998], [1.6580636566347435, 0.0016580642093228504, 1.1197422577852907], [1.7040645354281792, 0.0017040651034499182, 1.0484091366246608], [1.7469984828333198, 0.0017469990651663805, 0.9751891157474767], [1.7867882274392632, 0.0017867888230355773, 0.9002139746583351], [1.8233621566901899, 0.0018233627644778185, 0.8236186516819107], [1.856654445771792, 0.0018566550646568548, 0.7455410011044405], [1.8866051760810763, 0.00188660580494972, 0.6661215450671356], [1.913160443066321, 0.0019131610807867237, 0.585503220658057], [1.936272453243096, 0.0019362730986675052, 0.5038311226576321], [1.955899610211744, 0.0019559002621785415, 0.42125224240081194], [1.9720065895215069, 0.0019720072468573, 0.3379152032258589], [1.9845644022465614, 0.0019845650637682934, 0.25396999298589684], [1.9935504471595393, 0.0019935511116766207, 0.1695676941046423], [1.9989485514086347, 0.0019989492177250852, 0.08486021166215622], [2.0007489996250833, 0.0020007496665416834, -3.217451391340531e-16], [1.9989485514086347, 0.0019989492177250852, -0.08486021166215686], [1.9935504471595393, 0.0019935511116766207, -0.16956769410464295], [1.9845644022465614, 0.0019845650637682934, -0.2539699929858975], [1.9720065895215066, 0.0019720072468572994, -0.33791520322585955], [1.9558996102117439, 0.0019559002621785415, -0.42125224240081255], [1.9362724532430957, 0.001936273098667505, -0.5038311226576327], [1.9131604430663207, 0.0019131610807867235, -0.5855032206580576], [1.886605176081076, 0.0018866058049497197, -0.6661215450671362], [1.8566544457717917, 0.0018566550646568545, -0.7455410011044411], [1.8233621566901896, 0.0018233627644778183, -0.8236186516819113], [1.7867882274392632, 0.0017867888230355773, -0.9002139746583352], [1.7469984828333196, 0.0017469990651663803, -0.9751891157474768], [1.7040645354281792, 0.0017040651034499182, -1.048409136624661], [1.6580636566347433, 0.0016580642093228502, -1.1197422577852911], [1.6090786376479043, 0.0016090791740076649, -1.1890600957182003], [1.5571976404410868, 0.0015571981595071747, -1.2562378939669838], [1.5025140390946041, 0.0015025145399328176, -1.3211547476634504], [1.4451262517433963, 0.0014451267334523396, -1.3836938211290843], [1.38513756344661, 0.0013851380251593162, -1.4437425581528858], [1.3226559402978155, 0.0013226563811833054, -1.501192884567136], [1.2577938351104136, 0.001257794254375193, -1.5559414027564957], [1.1906679850279656, 0.0011906683819174527, -1.6078895777503655], [1.1213992014236938, 0.001121399575223577, -1.6569439145635845], [1.0501121524672878, 0.001050112502504812, -1.7030161264662915], [0.9769351387503493, 0.000976935464395526, -1.7460232938801057], [0.901999862374298, 0.0009020001630410391, -1.7858880136146424], [0.8254411899163263, 0.0008254414650634998, -1.8225385381757795], [0.7473969097000135, 0.0007473971588324164, -1.8559089048949458], [0.6680074838074556, 0.000668007706476706, -1.8859390546470307], [0.5874157952792339, 0.0005874159910845773, -1.912574939943248], [0.5057668909572044, 0.0005057670595462355, -1.9357686222044113], [0.4232077204329344, 0.00042320786150223103, -1.9554783580395527], [0.33988687157161807, 0.00033988698486728724, -1.9716686743746008], [0.2559543030874703, 0.00025595438840560544, -1.9843104322959042], [0.1715610746519018, 0.00017156113183894954, -1.9933808794936965], [0.08685907502021932, 8.685910397325591e-05, -1.998863691211116], [0.0020007486661625155, 2.0007493330790043e-06, -2.0007489996250833]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-1.0003747915878808e-06, 0.0020007494164479803, 2.0007489996250833], [-4.3429557415295284e-05, 0.08685910759238963, 1.998863691211116], [-8.578057664199068e-05, 0.1715611389873344, 1.993380879493696], [-0.00012797721019986908, 0.2559543990703759, 1.9843104322959038], [-0.00016994351367646934, 0.3398869990292492, 1.9716686743746001], [-0.0002116039572014683, 0.42320787913589614, 1.955478358039552], [-0.000252883561383393, 0.5057670806198672, 1.9357686222044104], [-0.0002937080322555949, 0.5874160155602476, 1.9125749399432468], [-0.0003340038949886146, 0.6680077343103644, 1.8859390546470296], [-0.0003736986261282842, 0.7473971899739686, 1.8559089048949446], [-0.00041272078412156905, 0.8254414994568979, 1.8225385381757782], [-0.00045100013789523187, 0.902000200624383, 1.7858880136146411], [-0.0004884677932559066, 0.9769355051011739, 1.7460232938801044], [-0.0005250563168840901, 1.0501125462595031, 1.7030161264662902], [-0.000560699857698891, 1.1213996219485627, 1.656943914563583], [-0.0005953342653751061, 1.1906684315286384, 1.6078895777503641], [-0.000628897205799321, 1.25779430678329, 1.5559414027564946], [-0.0006613282732572384, 1.3226564362939908, 1.5011928845671347], [-0.0006925690991503256, 1.3851380828734032, 1.4437425581528847], [-0.0007225634570461116, 1.4451267936659562, 1.3836938211290835], [-0.0007512573638730694, 1.5025146025375926, 1.3211547476634498], [-0.0007785991770779561, 1.5571982243904339, 1.2562378939669832], [-0.0008045396875707472, 1.6090792410526327, 1.1890600957181998], [-0.0008290322082898882, 1.658064278408861, 1.1197422577852907], [-0.0008520326582284628, 1.704065174452633, 1.0484091366246608], [-0.0008734996417700523, 1.74699913795801, 0.9751891157474767], [-0.0008933945231914973, 1.7867888974851136, 0.9002139746583351], [-0.0009116814961984772, 1.8233628404512694, 0.8236186516819107], [-0.000928327648368753, 1.8566551420174846, 0.7455410011044405], [-0.0009433030203870969, 1.8866058835582973, 0.6661215450671356], [-0.0009565806599652947, 1.913161160501771, 0.585503220658057], [-0.000968136670350179, 1.9362731793455534, 0.5038311226576321], [-0.0009779502533323883, 1.9559003436743883, 0.42125224240081194], [-0.0009860037466784485, 1.9720073290242708, 0.3379152032258589], [-0.0009922826559188049, 1.9845651464585068, 0.25396999298589684], [-0.0009967756804345935, 1.993551194741253, 0.1695676941046423], [-0.0009994747337962056, 1.9989493010146382, 0.08486021166215622], [-0.0010003749583170321, 2.000749749906255, -3.217451391340531e-16], [-0.0009994747337962056, 1.9989493010146382, -0.08486021166215686], [-0.0009967756804345935, 1.993551194741253, -0.16956769410464295], [-0.0009922826559188049, 1.9845651464585068, -0.2539699929858975], [-0.0009860037466784485, 1.9720073290242706, -0.33791520322585955], [-0.0009779502533323883, 1.955900343674388, -0.42125224240081255], [-0.0009681366703501789, 1.9362731793455532, -0.5038311226576327], [-0.0009565806599652946, 1.9131611605017709, -0.5855032206580576], [-0.0009433030203870968, 1.886605883558297, -0.6661215450671362], [-0.0009283276483687528, 1.8566551420174844, -0.7455410011044411], [-0.0009116814961984771, 1.8233628404512692, -0.8236186516819113], [-0.0008933945231914973, 1.7867888974851136, -0.9002139746583352], [-0.0008734996417700522, 1.7469991379580099, -0.9751891157474768], [-0.0008520326582284628, 1.704065174452633, -1.048409136624661], [-0.0008290322082898881, 1.6580642784088608, -1.1197422577852911], [-0.000804539687570747, 1.6090792410526322, -1.1890600957182003], [-0.0007785991770779558, 1.5571982243904332, -1.2562378939669838], [-0.0007512573638730691, 1.502514602537592, -1.3211547476634504], [-0.0007225634570461112, 1.4451267936659553, -1.3836938211290843], [-0.0006925690991503251, 1.3851380828734021, -1.4437425581528858], [-0.0006613282732572377, 1.3226564362939894, -1.501192884567136], [-0.0006288972057993202, 1.2577943067832884, -1.5559414027564957], [-0.0005953342653751052, 1.1906684315286367, -1.6078895777503655], [-0.00056069985769889, 1.1213996219485607, -1.6569439145635845], [-0.000525056316884089, 1.050112546259501, -1.7030161264662915], [-0.0004884677932559053, 0.9769355051011713, -1.7460232938801057], [-0.0004510001378952305, 0.9020002006243802, -1.7858880136146424], [-0.0004127207841215676, 0.825441499456895, -1.8225385381757795], [-0.0003736986261282827, 0.7473971899739656, -1.8559089048949458], [-0.00033400389498861304, 0.6680077343103612, -1.8859390546470307], [-0.0002937080322555932, 0.5874160155602443, -1.912574939943248], [-0.0002528835613833912, 0.5057670806198636, -1.9357686222044113], [-0.00021160395720146646, 0.4232078791358924, -1.9554783580395527], [-0.00016994351367646742, 0.33988699902924535, -1.9716686743746008], [-0.0001279772101998671, 0.25595439907037193, -1.9843104322959042], [-8.57805766419886e-05, 0.17156113898733025, -1.9933808794936965], [-4.3429557415293136e-05, 0.08685910759238534, -1.998863691211116], [-1.0003747915856717e-06, 0.0020007494164435624, -2.0007489996250833]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.0020007496665416834, 1.1335325060248132e-18, 2.0007489996250833], [-0.08685911844977921, 4.921037141926374e-17, 1.998863691211116], [-0.17156116043247902, 9.719864277558353e-17, 1.993380879493696], [-0.25595443106467913, 1.450119785222298e-16, 1.9843104322959038], [-0.3398870415151285, 1.925643254510454e-16, 1.9716686743746001], [-0.42320793203688656, 2.397701000748143e-16, 1.955478358039552], [-0.5057671438407588, 2.86544342658214e-16, 1.9357686222044104], [-0.5874160889872573, 3.328028701261553e-16, 1.9125749399432468], [-0.6680078178113399, 3.784624275743091e-16, 1.8859390546470296], [-0.7473972833986271, 4.2344083810913525e-16, 1.8559089048949446], [-0.8254416026370962, 4.676571507477355e-16, 1.8225385381757782], [-0.9020003133744199, 5.110317861113443e-16, 1.7858880136146411], [-0.9769356272181248, 5.534866796502412e-16, 1.7460232938801044], [-1.050112677523585, 5.949454221423141e-16, 1.7030161264662902], [-1.12139976212353, 6.353333972124052e-16, 1.656943914563583], [-1.190668580362208, 6.745779156249389e-16, 1.6078895777503641], [-1.2577944640075949, 7.12608346108132e-16, 1.5559414027564946], [-1.3226566016260626, 7.493562424743345e-16, 1.5011928845671347], [-1.3851382560156817, 7.84755466807713e-16, 1.4437425581528847], [-1.4451269743068242, 8.187423084975645e-16, 1.3836938211290835], [-1.5025147903519376, 8.512555989030301e-16, 1.3211547476634498], [-1.5571984190402322, 8.822368214428373e-16, 1.2562378939669832], [-1.609079442187559, 9.116302169119327e-16, 1.1890600957181998], [-1.6580644856669173, 9.393828838354612e-16, 1.1197422577852907], [-1.704065387460802, 9.65444873679475e-16, 1.0484091366246608], [-1.7469993563329251, 9.89769280747017e-16, 0.9751891157474767], [-1.7867891208337492, 1.0123123265977842e-15, 0.9002139746583351], [-1.8233630683716482, 1.0330334388394345e-15, 0.8236186516819107], [-1.8566553740994016, 1.0518953241487322e-15, 0.7455410011044405], [-1.8866061193840573, 1.0688640353911084e-15, 0.6661215450671356], [-1.913161399646941, 1.0839090327178397e-15, 0.585503220658057], [-1.9362734213797261, 1.0970032385308774e-15, 0.5038311226576321], [-1.9559005881619567, 1.1081230862164127e-15, 0.42125224240081194], [-1.9720075755252124, 1.1172485625594577e-15, 0.3379152032258589], [-1.984565394529176, 1.1243632437631156e-15, 0.25396999298589684], [-1.9935514439351782, 1.1294543250077049e-15, 0.1695676941046423], [-1.998949550883327, 1.1325126434965448e-15, 0.08486021166215622], [-2.00075, 1.1335326949469195e-15, -3.217451391340531e-16], [-1.998949550883327, 1.1325126434965448e-15, -0.08486021166215686], [-1.9935514439351782, 1.1294543250077049e-15, -0.16956769410464295], [-1.984565394529176, 1.1243632437631156e-15, -0.2539699929858975], [-1.9720075755252122, 1.1172485625594577e-15, -0.33791520322585955], [-1.9559005881619564, 1.1081230862164127e-15, -0.42125224240081255], [-1.936273421379726, 1.0970032385308774e-15, -0.5038311226576327], [-1.9131613996469408, 1.0839090327178395e-15, -0.5855032206580576], [-1.886606119384057, 1.0688640353911084e-15, -0.6661215450671362], [-1.8566553740994014, 1.051895324148732e-15, -0.7455410011044411], [-1.823363068371648, 1.0330334388394345e-15, -0.8236186516819113], [-1.7867891208337492, 1.0123123265977842e-15, -0.9002139746583352], [-1.746999356332925, 9.89769280747017e-16, -0.9751891157474768], [-1.704065387460802, 9.65444873679475e-16, -1.048409136624661], [-1.658064485666917, 9.39382883835461e-16, -1.1197422577852911], [-1.6090794421875585, 9.116302169119325e-16, -1.1890600957182003], [-1.5571984190402315, 8.822368214428369e-16, -1.2562378939669838], [-1.502514790351937, 8.512555989030297e-16, -1.3211547476634504], [-1.4451269743068234, 8.18742308497564e-16, -1.3836938211290843], [-1.3851382560156806, 7.847554668077123e-16, -1.4437425581528858], [-1.3226566016260612, 7.493562424743338e-16, -1.501192884567136], [-1.2577944640075933, 7.126083461081311e-16, -1.5559414027564957], [-1.1906685803622061, 6.745779156249379e-16, -1.6078895777503655], [-1.121399762123528, 6.35333397212404e-16, -1.6569439145635845], [-1.0501126775235827, 5.949454221423128e-16, -1.7030161264662915], [-0.9769356272181222, 5.534866796502397e-16, -1.7460232938801057], [-0.9020003133744171, 5.110317861113427e-16, -1.7858880136146424], [-0.8254416026370933, 4.676571507477339e-16, -1.8225385381757795], [-0.7473972833986241, 4.234408381091335e-16, -1.8559089048949458], [-0.6680078178113367, 3.784624275743073e-16, -1.8859390546470307], [-0.587416088987254, 3.328028701261534e-16, -1.912574939943248], [-0.5057671438407553, 2.86544342658212e-16, -1.9357686222044113], [-0.42320793203688284, 2.397701000748122e-16, -1.9554783580395527], [-0.33988704151512467, 1.9256432545104323e-16, -1.9716686743746008], [-0.25595443106467514, 1.4501197852222756e-16, -1.9843104322959042], [-0.17156116043247485, 9.719864277558118e-17, -1.9933808794936965], [-0.08685911844977492, 4.921037141926131e-17, -1.998863691211116], [-0.0020007496665372655, 1.1335325060223102e-18, -2.0007489996250833]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-1.0003747915901477e-06, -0.0020007494164479803, 2.0007489996250833], [-4.3429557415393696e-05, -0.08685910759238963, 1.998863691211116], [-8.578057664218506e-05, -0.1715611389873344, 1.993380879493696], [-0.00012797721020015908, -0.2559543990703759, 1.9843104322959038], [-0.00016994351367685443, -0.3398869990292492, 1.9716686743746001], [-0.00021160395720194782, -0.42320787913589614, 1.955478358039552], [-0.00025288356138396603, -0.5057670806198672, 1.9357686222044104], [-0.00029370803225626043, -0.5874160155602476, 1.9125749399432468], [-0.0003340038949893715, -0.6680077343103644, 1.8859390546470296], [-0.000373698626129131, -0.7473971899739686, 1.8559089048949446], [-0.0004127207841225043, -0.8254414994568979, 1.8225385381757782], [-0.00045100013789625384, -0.902000200624383, 1.7858880136146411], [-0.0004884677932570135, -0.9769355051011739, 1.7460232938801044], [-0.0005250563168852799, -1.0501125462595031, 1.7030161264662902], [-0.0005606998577001616, -1.1213996219485627, 1.656943914563583], [-0.0005953342653764552, -1.1906684315286384, 1.6078895777503641], [-0.000628897205800746, -1.25779430678329, 1.5559414027564946], [-0.0006613282732587369, -1.3226564362939908, 1.5011928845671347], [-0.000692569099151895, -1.3851380828734032, 1.4437425581528847], [-0.000722563457047749, -1.4451267936659562, 1.3836938211290835], [-0.0007512573638747718, -1.5025146025375926, 1.3211547476634498], [-0.0007785991770797204, -1.5571982243904339, 1.2562378939669832], [-0.0008045396875725703, -1.6090792410526327, 1.1890600957181998], [-0.0008290322082917668, -1.658064278408861, 1.1197422577852907], [-0.0008520326582303934, -1.704065174452633, 1.0484091366246608], [-0.0008734996417720316, -1.74699913795801, 0.9751891157474767], [-0.0008933945231935218, -1.7867888974851136, 0.9002139746583351], [-0.000911681496200543, -1.8233628404512694, 0.8236186516819107], [-0.0009283276483708566, -1.8566551420174846, 0.7455410011044405], [-0.0009433030203892344, -1.8866058835582973, 0.6661215450671356], [-0.0009565806599674624, -1.913161160501771, 0.585503220658057], [-0.0009681366703523728, -1.9362731793455534, 0.5038311226576321], [-0.0009779502533346044, -1.9559003436743883, 0.42125224240081194], [-0.0009860037466806828, -1.9720073290242708, 0.3379152032258589], [-0.0009922826559210533, -1.9845651464585068, 0.25396999298589684], [-0.0009967756804368524, -1.993551194741253, 0.1695676941046423], [-0.0009994747337984703, -1.9989493010146382, 0.08486021166215622], [-0.001000374958319299, -2.000749749906255, -3.217451391340531e-16], [-0.0009994747337984703, -1.9989493010146382, -0.08486021166215686], [-0.0009967756804368524, -1.993551194741253, -0.16956769410464295], [-0.0009922826559210533, -1.9845651464585068, -0.2539699929858975], [-0.0009860037466806828, -1.9720073290242706, -0.33791520322585955], [-0.0009779502533346042, -1.955900343674388, -0.42125224240081255], [-0.0009681366703523727, -1.9362731793455532, -0.5038311226576327], [-0.0009565806599674623, -1.9131611605017709, -0.5855032206580576], [-0.0009433030203892343, -1.886605883558297, -0.6661215450671362], [-0.0009283276483708564, -1.8566551420174844, -0.7455410011044411], [-0.0009116814962005429, -1.8233628404512692, -0.8236186516819113], [-0.0008933945231935218, -1.7867888974851136, -0.9002139746583352], [-0.0008734996417720315, -1.7469991379580099, -0.9751891157474768], [-0.0008520326582303934, -1.704065174452633, -1.048409136624661], [-0.0008290322082917667, -1.6580642784088608, -1.1197422577852911], [-0.0008045396875725701, -1.6090792410526322, -1.1890600957182003], [-0.0007785991770797201, -1.5571982243904332, -1.2562378939669838], [-0.0007512573638747714, -1.502514602537592, -1.3211547476634504], [-0.0007225634570477486, -1.4451267936659553, -1.3836938211290843], [-0.0006925690991518945, -1.3851380828734021, -1.4437425581528858], [-0.0006613282732587363, -1.3226564362939894, -1.501192884567136], [-0.0006288972058007453, -1.2577943067832884, -1.5559414027564957], [-0.0005953342653764542, -1.1906684315286367, -1.6078895777503655], [-0.0005606998577001606, -1.1213996219485607, -1.6569439145635845], [-0.0005250563168852788, -1.050112546259501, -1.7030161264662915], [-0.0004884677932570122, -0.9769355051011713, -1.7460232938801057], [-0.0004510001378962525, -0.9020002006243802, -1.7858880136146424], [-0.0004127207841225028, -0.825441499456895, -1.8225385381757795], [-0.0003736986261291295, -0.7473971899739656, -1.8559089048949458], [-0.00033400389498936987, -0.6680077343103612, -1.8859390546470307], [-0.00029370803225625875, -0.5874160155602443, -1.912574939943248], [-0.00025288356138396424, -0.5057670806198636, -1.9357686222044113], [-0.00021160395720194595, -0.4232078791358924, -1.9554783580395527], [-0.0001699435136768525, -0.33988699902924535, -1.9716686743746008], [-0.0001279772102001571, -0.25595439907037193, -1.9843104322959042], [-8.578057664218297e-05, -0.17156113898733025, -1.9933808794936965], [-4.342955741539155e-05, -0.08685910759238534, -1.998863691211116], [-1.0003747915879386e-06, -0.0020007494164435624, -2.0007489996250833]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0020007486661669334, -2.000749333086358e-06, 2.0007489996250833], [0.08685907502022361, -8.685910397338764e-05, 1.998863691211116], [0.17156107465190595, -0.00017156113183920544, 1.993380879493696], [0.2559543030874743, -0.00025595438840598497, 1.9843104322959038], [0.3398868715716219, -0.00033988698486778977, 1.9716686743746001], [0.42320772043293814, -0.0004232078615028557, 1.955478358039552], [0.505766890957208, -0.0005057670595469812, 1.9357686222044104], [0.5874157952792373, -0.0005874159910854425, 1.9125749399432468], [0.6680074838074588, -0.0006680077064776893, 1.8859390546470296], [0.7473969097000165, -0.0007473971588335161, 1.8559089048949446], [0.8254411899163292, -0.0008254414650647137, 1.8225385381757782], [0.9019998623743007, -0.0009020001630423653, 1.7858880136146411], [0.9769351387503519, -0.0009769354643969618, 1.7460232938801044], [1.05011215246729, -0.001050112502506355, 1.7030161264662902], [1.1213992014236958, -0.0011213995752252246, 1.656943914563583], [1.1906679850279673, -0.0011906683819192015, 1.6078895777503641], [1.2577938351104152, -0.00125779425437704, 1.5559414027564946], [1.3226559402978169, -0.0013226563811852474, 1.5011928845671347], [1.3851375634466112, -0.0013851380251613495, 1.4437425581528847], [1.4451262517433971, -0.001445126733454461, 1.3836938211290835], [1.5025140390946048, -0.0015025145399350228, 1.3211547476634498], [1.5571976404410874, -0.0015571981595094602, 1.2562378939669832], [1.6090786376479047, -0.0016090791740100262, 1.1890600957181998], [1.6580636566347435, -0.0016580642093252831, 1.1197422577852907], [1.7040645354281792, -0.0017040651034524186, 1.0484091366246608], [1.7469984828333198, -0.0017469990651689438, 0.9751891157474767], [1.7867882274392632, -0.0017867888230381989, 0.9002139746583351], [1.8233621566901899, -0.001823362764480494, 0.8236186516819107], [1.856654445771792, -0.001856655064659579, 0.7455410011044405], [1.8866051760810763, -0.001886605804952488, 0.6661215450671356], [1.913160443066321, -0.001913161080789531, 0.585503220658057], [1.936272453243096, -0.0019362730986703463, 0.5038311226576321], [1.955899610211744, -0.0019559002621814116, 0.42125224240081194], [1.9720065895215069, -0.0019720072468601933, 0.3379152032258589], [1.9845644022465614, -0.001984565063771205, 0.25396999298589684], [1.9935504471595393, -0.001993551111679546, 0.1695676941046423], [1.9989485514086347, -0.001998949217728018, 0.08486021166215622], [2.0007489996250833, -0.002000749666544619, -3.217451391340531e-16], [1.9989485514086347, -0.001998949217728018, -0.08486021166215686], [1.9935504471595393, -0.001993551111679546, -0.16956769410464295], [1.9845644022465614, -0.001984565063771205, -0.2539699929858975], [1.9720065895215066, -0.001972007246860193, -0.33791520322585955], [1.9558996102117439, -0.001955900262181411, -0.42125224240081255], [1.9362724532430957, -0.001936273098670346, -0.5038311226576327], [1.9131604430663207, -0.0019131610807895307, -0.5855032206580576], [1.886605176081076, -0.0018866058049524879, -0.6661215450671362], [1.8566544457717917, -0.0018566550646595787, -0.7455410011044411], [1.8233621566901896, -0.0018233627644804937, -0.8236186516819113], [1.7867882274392632, -0.0017867888230381989, -0.9002139746583352], [1.7469984828333196, -0.0017469990651689435, -0.9751891157474768], [1.7040645354281792, -0.0017040651034524186, -1.048409136624661], [1.6580636566347433, -0.001658064209325283, -1.1197422577852911], [1.6090786376479043, -0.0016090791740100258, -1.1890600957182003], [1.5571976404410868, -0.0015571981595094595, -1.2562378939669838], [1.5025140390946041, -0.0015025145399350222, -1.3211547476634504], [1.4451262517433963, -0.00144512673345446, -1.3836938211290843], [1.38513756344661, -0.0013851380251613484, -1.4437425581528858], [1.3226559402978155, -0.001322656381185246, -1.501192884567136], [1.2577938351104136, -0.0012577942543770385, -1.5559414027564957], [1.1906679850279656, -0.0011906683819191998, -1.6078895777503655], [1.1213992014236938, -0.0011213995752252224, -1.6569439145635845], [1.0501121524672878, -0.0010501125025063527, -1.7030161264662915], [0.9769351387503493, -0.0009769354643969592, -1.7460232938801057], [0.901999862374298, -0.0009020001630423625, -1.7858880136146424], [0.8254411899163263, -0.0008254414650647109, -1.8225385381757795], [0.7473969097000135, -0.0007473971588335131, -1.8559089048949458], [0.6680074838074556, -0.0006680077064776861, -1.8859390546470307], [0.5874157952792339, -0.0005874159910854392, -1.912574939943248], [0.5057668909572044, -0.0005057670595469777, -1.9357686222044113], [0.4232077204329344, -0.00042320786150285196, -1.9554783580395527], [0.33988687157161807, -0.0003398869848677859, -1.9716686743746008], [0.2559543030874703, -0.000255954388405981, -1.9843104322959042], [0.1715610746519018, -0.00017156113183920126, -1.9933808794936965], [0.08685907502021932, -8.685910397338335e-05, -1.998863691211116], [0.0020007486661625155, -2.00074933308194e-06, -2.0007489996250833]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.004000497333000533, 4.000498666500177e-06, 4.000497999750166], [0.17367473678290865, 0.00017367479467451073, 3.9967283252230756], [0.34303640092212906, 0.0003430365152676417, 3.9857654421664526], [0.5117806769968466, 0.0005117808475904738, 3.9676290812943957], [0.679603863412357, 0.0006796040899470687, 3.942351883961308], [0.8462039163273617, 0.0008462041983954466, 3.909979343414833], [1.011280993264681, 0.00101128133035848, 3.870569722918277], [1.1745379927600093, 0.0011745383842728298, 3.8241939508898954], [1.3356810890774653, 0.001335681534304673, 3.770935493247753], [1.4944202610295718, 0.001494420759169858, 3.7108902031899165], [1.6504698139499063, 0.001650470364106731, 3.6441661486803447], [1.8035488938789903, 0.0018035494950621954, 3.570883417950954], [1.9533819930380019, 0.0019533826441655933, 3.4911739033699147], [2.0996994456805664, 0.0020997001455806616, 3.405181064065172], [2.242237913430211, 0.0022422386608431477, 3.3130596677304074], [2.3807408592299804, 0.002380741652810584, 3.2149755120781363], [2.5149590090512137, 0.0025149598473712185, 3.1111051264412626], [2.644650800530509, 0.0026446516820811286, 3.0016354540601387], [2.769582817727436, 0.002769583740922078, 2.8867635156269476], [2.8895302112205226, 0.0028895311743976446, 2.766696054692939], [3.0042771027854385, 0.00300427810421154, 2.6416491655767236], [3.1136169739270625, 0.0031136180117998023, 2.5118479044432918], [3.217353037566134, 0.0032173541100175753, 2.377525884253734], [3.3152985922115663, 0.003315299697311539, 2.2389248543146594], [3.4072773579809725, 0.003407278493740546, 2.0962942651840337], [3.4931237938646484, 0.0034931249582397118, 1.9498908197164964], [3.5726833956620125, 0.003572684586556954, 1.7999780110561887], [3.6458129740542815, 0.003645814189325759, 1.6468256484085886], [3.7123809123129092, 0.003712382149773708, 1.4907093714448654], [3.77226740317998, 0.0037722686606029504, 1.331910154212708], [3.8253646644942227, 0.0038253659396162874, 1.170713799446486], [3.871577133174562, 0.003871578423700789, 1.0074104241868584], [3.910821637212086, 0.00391082294081982, 0.8422939376356107], [3.9430275453608834, 0.003943028859703924, 0.6756615121854547], [3.968136894258337, 0.0039681382169711645, 0.5078130485768237], [3.9861044927460885, 0.003986105821448117, 0.3390506361442567], [3.99689800320392, 0.003996899335503787, 0.16967800912380654], [4.000497999750166, 0.004000499333250033, -6.433294660031384e-16], [3.99689800320392, 0.003996899335503787, -0.16967800912380782], [3.9861044927460885, 0.003986105821448117, -0.33905063614425796], [3.968136894258337, 0.0039681382169711645, -0.5078130485768251], [3.943027545360883, 0.003943028859703924, -0.675661512185456], [3.9108216372120856, 0.003910822940819819, -0.8422939376356119], [3.8715771331745614, 0.0038715784237007885, -1.0074104241868598], [3.8253646644942223, 0.003825365939616287, -1.1707137994464871], [3.7722674031799794, 0.00377226866060295, -1.3319101542127092], [3.712380912312909, 0.0037123821497737075, -1.4907093714448665], [3.645812974054281, 0.0036458141893257585, -1.6468256484085897], [3.5726833956620125, 0.003572684586556954, -1.799978011056189], [3.493123793864648, 0.0034931249582397113, -1.9498908197164966], [3.4072773579809725, 0.003407278493740546, -2.096294265184034], [3.315298592211566, 0.0033152996973115387, -2.2389248543146603], [3.217353037566133, 0.0032173541100175744, -2.377525884253735], [3.113616973927061, 0.0031136180117998006, -2.511847904443293], [3.004277102785437, 0.0030042781042115387, -2.641649165576725], [2.889530211220521, 0.002889531174397643, -2.766696054692941], [2.769582817727434, 0.002769583740922076, -2.8867635156269498], [2.6446508005305063, 0.0026446516820811256, -3.0016354540601413], [2.5149590090512106, 0.0025149598473712155, -3.111105126441265], [2.380740859229977, 0.0023807416528105804, -3.214975512078139], [2.242237913430207, 0.002242238660843144, -3.3130596677304105], [2.099699445680562, 0.0020997001455806573, -3.4051810640651747], [1.9533819930379968, 0.001953382644165588, -3.4911739033699174], [1.8035488938789848, 0.0018035494950621898, -3.5708834179509568], [1.6504698139499006, 0.001650470364106725, -3.6441661486803474], [1.4944202610295658, 0.0014944207591698522, -3.7108902031899187], [1.3356810890774589, 0.0013356815343046665, -3.7709354932477552], [1.1745379927600026, 0.0011745383842728233, -3.8241939508898977], [1.0112809932646738, 0.0010112813303584732, -3.8705697229182787], [0.8462039163273543, 0.0008462041983954392, -3.909979343414834], [0.6796038634123494, 0.0006796040899470611, -3.9423518839613094], [0.5117806769968386, 0.0005117808475904658, -3.9676290812943966], [0.34303640092212073, 0.0003430365152676334, -3.9857654421664535], [0.17367473678290007, 0.00017367479467450216, -3.9967283252230756], [0.0040004973329917, 4.000498666491344e-06, -4.000497999750166]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-2.000249583279928e-06, 0.004000498833187627, 4.000497999750166], [-8.683740819187243e-05, 0.17367480191096074, 3.9967283252230756], [-0.0001715182790734893, 0.34303652956083036, 3.9857654421664526], [-0.0002558904557813701, 0.5117808689146764, 3.9676290812943957], [-0.00033980208744856455, 0.6796041182639068, 3.942351883961308], [-0.000423102152085205, 0.846204233653956, 3.909979343414833], [-0.0005056407283839878, 1.0112813724952037, 3.870569722918277], [-0.0005872692655446744, 1.1745384332119309, 3.8241939508898954], [-0.0006678408506319894, 1.335681589958072, 3.770935493247753], [-0.0007472104729857308, 1.4944208214373917, 3.7108902031899165], [-0.0008252352852072157, 1.6504704328763316, 3.6441661486803447], [-0.0009017748602523429, 1.8035495702100934, 3.570883417950954], [-0.000976691444168564, 1.9533827255565395, 3.4911739033699147], [-0.0010498502040208935, 2.0997002330681704, 3.405181064065172], [-0.0011211194705607462, 2.2422387542697617, 3.3130596677304074], [-0.0011903709752008557, 2.380741752008156, 3.2149755120781363], [-0.0012574800808697654, 2.5149599521612154, 3.1111051264412626], [-0.001322326006330417, 2.644651792274952, 3.0016354540601387], [-0.0013847920435591042, 2.7695838563214044, 2.8867635156269476], [-0.0014447657677935622, 2.889531294794781, 2.766696054692939], [-0.001502139239872155, 3.0042782293897985, 2.6416491655767236], [-0.001556809200499994, 3.11361814153389, 2.5118479044432918], [-0.0016086772560923524, 3.217354244074001, 2.377525884253734], [-0.0016576500558609009, 3.315299835449031, 2.2389248543146594], [-0.0017036394598240485, 3.4072786357104876, 2.0962942651840337], [-0.0017465626974390073, 3.49312510378659, 1.9498908197164964], [-0.0017863425165700786, 3.5726847354188167, 1.7999780110561887], [-0.001822907322525057, 3.6458143412346886, 1.6468256484085886], [-0.001856191306909507, 3.7123823044563027, 1.4907093714448654], [-0.0018861345660670153, 3.7722688177808164, 1.331910154212708], [-0.001912683208892246, 3.82536609900654, 1.170713799446486], [-0.0019357894538227617, 3.871578585016562, 1.0074104241868584], [-0.0019554117148350464, 3.910823103770781, 0.8422939376356107], [-0.001971514676289958, 3.943029023996799, 0.6756615121854547], [-0.0019840693564929044, 3.968138382310262, 0.5078130485768237], [-0.00199305315985435, 3.9861059875358653, 0.3390506361442567], [-0.001998449917556776, 3.996899502041265, 0.16967800912380654], [-0.0020002499166548978, 4.0004994999375105, -6.433294660031384e-16], [-0.001998449917556776, 3.996899502041265, -0.16967800912380782], [-0.00199305315985435, 3.9861059875358653, -0.33905063614425796], [-0.0019840693564929044, 3.968138382310262, -0.5078130485768251], [-0.001971514676289958, 3.9430290239967984, -0.675661512185456], [-0.0019554117148350464, 3.9108231037707806, -0.8422939376356119], [-0.0019357894538227615, 3.8715785850165614, -1.0074104241868598], [-0.0019126832088922458, 3.8253660990065397, -1.1707137994464871], [-0.0018861345660670151, 3.772268817780816, -1.3319101542127092], [-0.0018561913069095068, 3.7123823044563022, -1.4907093714448665], [-0.0018229073225250567, 3.645814341234688, -1.6468256484085897], [-0.0017863425165700786, 3.5726847354188167, -1.799978011056189], [-0.001746562697439007, 3.4931251037865896, -1.9498908197164966], [-0.0017036394598240485, 3.4072786357104876, -2.096294265184034], [-0.0016576500558609006, 3.3152998354490304, -2.2389248543146603], [-0.001608677256092352, 3.217354244074, -2.377525884253735], [-0.0015568092004999933, 3.113618141533889, -2.511847904443293], [-0.0015021392398721542, 3.004278229389797, -2.641649165576725], [-0.0014447657677935613, 2.889531294794779, -2.766696054692941], [-0.001384792043559103, 2.769583856321402, -2.8867635156269498], [-0.0013223260063304158, 2.6446517922749493, -3.0016354540601413], [-0.0012574800808697638, 2.5149599521612123, -3.111105126441265], [-0.0011903709752008537, 2.3807417520081526, -3.214975512078139], [-0.0011211194705607443, 2.2422387542697577, -3.3130596677304105], [-0.0010498502040208913, 2.099700233068166, -3.4051810640651747], [-0.0009766914441685613, 1.9533827255565344, -3.4911739033699174], [-0.0009017748602523401, 1.8035495702100879, -3.5708834179509568], [-0.0008252352852072128, 1.6504704328763258, -3.6441661486803474], [-0.0007472104729857278, 1.4944208214373857, -3.7108902031899187], [-0.0006678408506319861, 1.3356815899580656, -3.7709354932477552], [-0.0005872692655446711, 1.1745384332119242, -3.8241939508898977], [-0.0005056407283839842, 1.0112813724951966, -3.8705697229182787], [-0.0004231021520852013, 0.8462042336539486, -3.909979343414834], [-0.0003398020874485607, 0.6796041182638991, -3.9423518839613094], [-0.0002558904557813661, 0.5117808689146685, -3.9676290812943966], [-0.0001715182790734851, 0.34303652956082203, -3.9857654421664535], [-8.683740819186813e-05, 0.17367480191095216, -3.9967283252230756], [-2.0002495832755118e-06, 0.004000498833178794, -4.000497999750166]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.004000499333250033, 2.2664984582542873e-18, 4.000497999750166], [-0.17367482362031325, 9.839614687630368e-17, 3.9967283252230756], [-0.343036572440401, 1.9434870444769307e-16, 3.9857654421664526], [-0.5117809328872917, 2.8995147823475214e-16, 3.9676290812943957], [-0.6796042032144303, 3.8503240483164173e-16, 3.942351883961308], [-0.8462043394294961, 4.794203600396325e-16, 3.909979343414833], [-1.0112814989053882, 5.72945466852023e-16, 3.870569722918277], [-1.1745385800292503, 6.654394011943942e-16, 3.8241939508898954], [-1.3356817569182882, 7.567356948699355e-16, 3.770935493247753], [-1.4944210082400138, 8.46670035164611e-16, 3.7108902031899165], [-1.6504706391851571, 9.350805605729433e-16, 3.6441661486803447], [-1.8035497956538131, 1.0218081521121744e-15, 3.570883417950954], [-1.9533829697294054, 1.1066967197005074e-15, 3.4911739033699147], [-2.0997004955307266, 1.1895934830840072e-15, 3.405181064065172], [-2.242239034549635, 1.2703492468065609e-15, 3.3130596677304074], [-2.3807420496009057, 1.3488186687280108e-15, 3.2149755120781363], [-2.514960266531242, 1.4248605216071883e-15, 3.1111051264412626], [-2.6446521228564603, 1.498337947279058e-15, 3.0016354540601387], [-2.769584202519422, 1.5691187029685147e-15, 2.8867635156269476], [-2.88953165598623, 1.6370753992975168e-15, 2.766696054692939], [-3.004278604924616, 1.702085729557202e-15, 2.6416491655767236], [-3.1136185307361983, 1.7640326898323482e-15, 2.5118479044432918], [-3.217354646243323, 1.8228047895820002e-15, 2.377525884253734], [-3.3153002498615534, 1.8782962522972695e-15, 2.2389248543146594], [-3.407279061620361, 1.9304072058751665e-15, 2.0962942651840337], [-3.493125540427273, 1.9790438623658337e-15, 1.9498908197164964], [-3.572685182004455, 2.0241186867696794e-15, 1.7999780110561887], [-3.6458147969615284, 2.0655505545806113e-15, 1.6468256484085886], [-3.712382768504139, 2.1032648977918293e-15, 1.4907093714448654], [-3.7722692893144676, 2.137193839101402e-15, 1.331910154212708], [-3.825366577177352, 2.16727631407608e-15, 1.170713799446486], [-3.871579068963935, 2.1934581810534925e-15, 1.0074104241868584], [-3.9108235926237196, 2.21569231858491e-15, 0.8422939376356107], [-3.9430295168754776, 2.233938710243214e-15, 0.6756615121854547], [-3.968138878327611, 2.2481645166434306e-15, 0.5078130485768237], [-3.9861064857991653, 2.2583441345462066e-15, 0.3390506361442567], [-3.996900001653754, 2.264459242937862e-15, 0.16967800912380654], [-4.0005, 2.2664988360040743e-15, -6.433294660031384e-16], [-3.996900001653754, 2.264459242937862e-15, -0.16967800912380782], [-3.9861064857991653, 2.2583441345462066e-15, -0.33905063614425796], [-3.968138878327611, 2.2481645166434306e-15, -0.5078130485768251], [-3.943029516875477, 2.2339387102432137e-15, -0.675661512185456], [-3.910823592623719, 2.21569231858491e-15, -0.8422939376356119], [-3.8715790689639347, 2.1934581810534925e-15, -1.0074104241868598], [-3.8253665771773515, 2.16727631407608e-15, -1.1707137994464871], [-3.772269289314467, 2.1371938391014015e-15, -1.3319101542127092], [-3.7123827685041384, 2.1032648977918293e-15, -1.4907093714448665], [-3.645814796961528, 2.065550554580611e-15, -1.6468256484085897], [-3.572685182004455, 2.0241186867696794e-15, -1.799978011056189], [-3.4931255404272727, 1.9790438623658333e-15, -1.9498908197164966], [-3.407279061620361, 1.9304072058751665e-15, -2.096294265184034], [-3.315300249861553, 1.8782962522972695e-15, -2.2389248543146603], [-3.2173546462433222, 1.822804789582e-15, -2.377525884253735], [-3.113618530736197, 1.7640326898323476e-15, -2.511847904443293], [-3.0042786049246146, 1.7020857295572013e-15, -2.641649165576725], [-2.8895316559862283, 1.6370753992975158e-15, -2.766696054692941], [-2.76958420251942, 1.5691187029685133e-15, -2.8867635156269498], [-2.6446521228564577, 1.4983379472790566e-15, -3.0016354540601413], [-2.5149602665312387, 1.4248605216071865e-15, -3.111105126441265], [-2.380742049600902, 1.3488186687280089e-15, -3.214975512078139], [-2.242239034549631, 1.2703492468065587e-15, -3.3130596677304105], [-2.099700495530722, 1.1895934830840046e-15, -3.4051810640651747], [-1.9533829697294003, 1.1066967197005044e-15, -3.4911739033699174], [-1.8035497956538076, 1.0218081521121712e-15, -3.5708834179509568], [-1.6504706391851514, 9.3508056057294e-16, -3.6441661486803474], [-1.4944210082400078, 8.466700351646077e-16, -3.7108902031899187], [-1.3356817569182817, 7.567356948699319e-16, -3.7709354932477552], [-1.1745385800292436, 6.654394011943905e-16, -3.8241939508898977], [-1.011281498905381, 5.72945466852019e-16, -3.8705697229182787], [-0.8462043394294887, 4.794203600396283e-16, -3.909979343414834], [-0.6796042032144226, 3.850324048316374e-16, -3.9423518839613094], [-0.5117809328872837, 2.899514782347476e-16, -3.9676290812943966], [-0.34303657244039265, 1.9434870444768836e-16, -3.9857654421664535], [-0.17367482362030465, 9.839614687629882e-17, -3.9967283252230756], [-0.0040004993332412, 2.2664984582492826e-18, -4.000497999750166]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-2.000249583284461e-06, -0.004000498833187627, 4.000497999750166], [-8.683740819206921e-05, -0.17367480191096074, 3.9967283252230756], [-0.00017151827907387797, -0.34303652956083036, 3.9857654421664526], [-0.00025589045578195, -0.5117808689146764, 3.9676290812943957], [-0.0003398020874493346, -0.6796041182639068, 3.942351883961308], [-0.00042310215208616383, -0.846204233653956, 3.909979343414833], [-0.0005056407283851337, -1.0112813724952037, 3.870569722918277], [-0.0005872692655460052, -1.1745384332119309, 3.8241939508898954], [-0.0006678408506335028, -1.335681589958072, 3.770935493247753], [-0.0007472104729874241, -1.4944208214373917, 3.7108902031899165], [-0.0008252352852090859, -1.6504704328763316, 3.6441661486803447], [-0.0009017748602543864, -1.8035495702100934, 3.570883417950954], [-0.0009766914441707772, -1.9533827255565395, 3.4911739033699147], [-0.0010498502040232724, -2.0997002330681704, 3.405181064065172], [-0.001121119470563287, -2.2422387542697617, 3.3130596677304074], [-0.0011903709752035532, -2.380741752008156, 3.2149755120781363], [-0.001257480080872615, -2.5149599521612154, 3.1111051264412626], [-0.0013223260063334136, -2.644651792274952, 3.0016354540601387], [-0.0013847920435622423, -2.7695838563214044, 2.8867635156269476], [-0.0014447657677968363, -2.889531294794781, 2.766696054692939], [-0.001502139239875559, -3.0042782293897985, 2.6416491655767236], [-0.001556809200503522, -3.11361814153389, 2.5118479044432918], [-0.001608677256095998, -3.217354244074001, 2.377525884253734], [-0.0016576500558646574, -3.315299835449031, 2.2389248543146594], [-0.0017036394598279093, -3.4072786357104876, 2.0962942651840337], [-0.001746562697442965, -3.49312510378659, 1.9498908197164964], [-0.0017863425165741268, -3.5726847354188167, 1.7999780110561887], [-0.001822907322529188, -3.6458143412346886, 1.6468256484085886], [-0.0018561913069137133, -3.7123823044563027, 1.4907093714448654], [-0.0018861345660712895, -3.7722688177808164, 1.331910154212708], [-0.0019126832088965805, -3.82536609900654, 1.170713799446486], [-0.0019357894538271486, -3.871578585016562, 1.0074104241868584], [-0.0019554117148394778, -3.910823103770781, 0.8422939376356107], [-0.0019715146762944256, -3.943029023996799, 0.6756615121854547], [-0.0019840693564974004, -3.968138382310262, 0.5078130485768237], [-0.001993053159858867, -3.9861059875358653, 0.3390506361442567], [-0.001998449917561305, -3.996899502041265, 0.16967800912380654], [-0.0020002499166594306, -4.0004994999375105, -6.433294660031384e-16], [-0.001998449917561305, -3.996899502041265, -0.16967800912380782], [-0.001993053159858867, -3.9861059875358653, -0.33905063614425796], [-0.0019840693564974004, -3.968138382310262, -0.5078130485768251], [-0.0019715146762944256, -3.9430290239967984, -0.675661512185456], [-0.0019554117148394773, -3.9108231037707806, -0.8422939376356119], [-0.0019357894538271484, -3.8715785850165614, -1.0074104241868598], [-0.0019126832088965802, -3.8253660990065397, -1.1707137994464871], [-0.0018861345660712893, -3.772268817780816, -1.3319101542127092], [-0.001856191306913713, -3.7123823044563022, -1.4907093714448665], [-0.0018229073225291877, -3.645814341234688, -1.6468256484085897], [-0.0017863425165741268, -3.5726847354188167, -1.799978011056189], [-0.0017465626974429648, -3.4931251037865896, -1.9498908197164966], [-0.0017036394598279093, -3.4072786357104876, -2.096294265184034], [-0.0016576500558646572, -3.3152998354490304, -2.2389248543146603], [-0.0016086772560959975, -3.217354244074, -2.377525884253735], [-0.0015568092005035213, -3.113618141533889, -2.511847904443293], [-0.0015021392398755584, -3.004278229389797, -2.641649165576725], [-0.0014447657677968354, -2.889531294794779, -2.766696054692941], [-0.0013847920435622412, -2.769583856321402, -2.8867635156269498], [-0.0013223260063334123, -2.6446517922749493, -3.0016354540601413], [-0.0012574800808726136, -2.5149599521612123, -3.111105126441265], [-0.0011903709752035514, -2.3807417520081526, -3.214975512078139], [-0.001121119470563285, -2.2422387542697577, -3.3130596677304105], [-0.0010498502040232702, -2.099700233068166, -3.4051810640651747], [-0.0009766914441707746, -1.9533827255565344, -3.4911739033699174], [-0.0009017748602543836, -1.8035495702100879, -3.5708834179509568], [-0.0008252352852090829, -1.6504704328763258, -3.6441661486803474], [-0.000747210472987421, -1.4944208214373857, -3.7108902031899187], [-0.0006678408506334996, -1.3356815899580656, -3.7709354932477552], [-0.0005872692655460019, -1.1745384332119242, -3.8241939508898977], [-0.0005056407283851301, -1.0112813724951966, -3.8705697229182787], [-0.0004231021520861601, -0.8462042336539486, -3.909979343414834], [-0.00033980208744933076, -0.6796041182638991, -3.9423518839613094], [-0.000255890455781946, -0.5117808689146685, -3.9676290812943966], [-0.0001715182790738738, -0.34303652956082203, -3.9857654421664535], [-8.683740819206493e-05, -0.17367480191095216, -3.9967283252230756], [-2.0002495832800447e-06, -0.004000498833178794, -4.000497999750166]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.004000497333000533, -4.000498666506047e-06, 4.000497999750166], [0.17367473678290865, -0.00017367479467476554, 3.9967283252230756], [0.34303640092212906, -0.000343036515268145, 3.9857654421664526], [0.5117806769968466, -0.0005117808475912246, 3.9676290812943957], [0.679603863412357, -0.0006796040899480658, 3.942351883961308], [0.8462039163273617, -0.0008462041983966881, 3.909979343414833], [1.011280993264681, -0.001011281330359964, 3.870569722918277], [1.1745379927600093, -0.0011745383842745533, 3.8241939508898954], [1.3356810890774653, -0.0013356815343066328, 3.770935493247753], [1.4944202610295718, -0.0014944207591720507, 3.7108902031899165], [1.6504698139499063, -0.0016504703641091524, 3.6441661486803447], [1.8035488938789903, -0.0018035494950648415, 3.570883417950954], [1.9533819930380019, -0.001953382644168459, 3.4911739033699147], [2.0996994456805664, -0.002099700145583742, 3.405181064065172], [2.242237913430211, -0.002242238660846437, 3.3130596677304074], [2.3807408592299804, -0.002380741652814077, 3.2149755120781363], [2.5149590090512137, -0.0025149598473749083, 3.1111051264412626], [2.644650800530509, -0.0026446516820850087, 3.0016354540601387], [2.769582817727436, -0.0027695837409261416, 2.8867635156269476], [2.8895302112205226, -0.002889531174401884, 2.766696054692939], [3.0042771027854385, -0.003004278104215948, 2.6416491655767236], [3.1136169739270625, -0.0031136180118043703, 2.5118479044432918], [3.217353037566134, -0.003217354110022296, 2.377525884253734], [3.3152985922115663, -0.0033152996973164033, 2.2389248543146594], [3.4072773579809725, -0.003407278493745545, 2.0962942651840337], [3.4931237938646484, -0.003493124958244837, 1.9498908197164964], [3.5726833956620125, -0.003572684586562196, 1.7999780110561887], [3.6458129740542815, -0.003645814189331108, 1.6468256484085886], [3.7123809123129092, -0.0037123821497791545, 1.4907093714448654], [3.77226740317998, -0.003772268660608485, 1.331910154212708], [3.8253646644942227, -0.0038253659396219, 1.170713799446486], [3.871577133174562, -0.0038715784237064693, 1.0074104241868584], [3.910821637212086, -0.003910822940825558, 0.8422939376356107], [3.9430275453608834, -0.003943028859709709, 0.6756615121854547], [3.968136894258337, -0.003968138216976986, 0.5078130485768237], [3.9861044927460885, -0.003986105821453966, 0.3390506361442567], [3.99689800320392, -0.003996899335509651, 0.16967800912380654], [4.000497999750166, -0.004000499333255902, -6.433294660031384e-16], [3.99689800320392, -0.003996899335509651, -0.16967800912380782], [3.9861044927460885, -0.003986105821453966, -0.33905063614425796], [3.968136894258337, -0.003968138216976986, -0.5078130485768251], [3.943027545360883, -0.003943028859709709, -0.675661512185456], [3.9108216372120856, -0.003910822940825558, -0.8422939376356119], [3.8715771331745614, -0.003871578423706469, -1.0074104241868598], [3.8253646644942223, -0.0038253659396218997, -1.1707137994464871], [3.7722674031799794, -0.0037722686606084846, -1.3319101542127092], [3.712380912312909, -0.003712382149779154, -1.4907093714448665], [3.645812974054281, -0.0036458141893311075, -1.6468256484085897], [3.5726833956620125, -0.003572684586562196, -1.799978011056189], [3.493123793864648, -0.0034931249582448366, -1.9498908197164966], [3.4072773579809725, -0.003407278493745545, -2.096294265184034], [3.315298592211566, -0.003315299697316403, -2.2389248543146603], [3.217353037566133, -0.003217354110022295, -2.377525884253735], [3.113616973927061, -0.003113618011804369, -2.511847904443293], [3.004277102785437, -0.0030042781042159466, -2.641649165576725], [2.889530211220521, -0.002889531174401882, -2.766696054692941], [2.769582817727434, -0.0027695837409261394, -2.8867635156269498], [2.6446508005305063, -0.0026446516820850057, -3.0016354540601413], [2.5149590090512106, -0.0025149598473749053, -3.111105126441265], [2.380740859229977, -0.0023807416528140732, -3.214975512078139], [2.242237913430207, -0.0022422386608464333, -3.3130596677304105], [2.099699445680562, -0.0020997001455837377, -3.4051810640651747], [1.9533819930379968, -0.0019533826441684543, -3.4911739033699174], [1.8035488938789848, -0.001803549495064836, -3.5708834179509568], [1.6504698139499006, -0.0016504703641091467, -3.6441661486803474], [1.4944202610295658, -0.0014944207591720447, -3.7108902031899187], [1.3356810890774589, -0.0013356815343066263, -3.7709354932477552], [1.1745379927600026, -0.0011745383842745466, -3.8241939508898977], [1.0112809932646738, -0.0010112813303599568, -3.8705697229182787], [0.8462039163273543, -0.0008462041983966807, -3.909979343414834], [0.6796038634123494, -0.0006796040899480581, -3.9423518839613094], [0.5117806769968386, -0.0005117808475912167, -3.9676290812943966], [0.34303640092212073, -0.0003430365152681367, -3.9857654421664535], [0.17367473678290007, -0.00017367479467475698, -3.9967283252230756], [0.0040004973329917, -4.0004986664972135e-06, -4.000497999750166]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.006000245999834133, 6.000247999916933e-06, 6.00024699987525], [0.26049039854559375, 0.00026049048537576133, 5.994592959235035], [0.5145117271923522, 0.0005145118986963299, 5.978150004839209], [0.767607050906219, 0.0007676073067753382, 5.950947730292888], [1.0193208552530921, 0.0010193211950268466, 5.913035093548016], [1.2692001122217853, 0.0012692005352886587, 5.864480328790114], [1.516795095572154, 0.0015167956011707215, 5.805370823632144], [1.7616601902407811, 0.0017616607774610794, 5.735812961836544], [2.003354694347472, 0.0020033553621326373, 5.655931931848476], [2.2414436123591273, 0.002241444359507297, 5.565871501484889], [2.4754984379834832, 0.0024754992631499597, 5.465793759184912], [2.70509792538368, 0.0027050988270833493, 5.355878822287266], [2.9298288473256524, 0.0029298298239356585, 5.236324512859725], [3.149286738893843, 0.003149287788656509, 5.107346001664054], [3.3630766254367264, 0.0033630777464627166, 4.969175420897232], [3.5708137334319936, 0.003570814923703714, 4.822061446405908], [3.772124182992012, 0.003772125440367243, 4.6662688501260305], [3.9666456607632017, 0.003966646982978951, 4.502078023553143], [4.154028072008262, 0.004154029456684839, 4.32978447310101], [4.333934170697648, 0.004333935615342949, 4.149698288256794], [4.506040166476272, 0.004506041668490262, 3.962143583489998], [4.670036307413038, 0.00467003786409243, 3.7674579149196004], [4.825627437484363, 0.004825629046027486, 3.565991672789268], [4.972533527788389, 0.0049725351853002284, 3.3581074508440283], [5.110490180533766, 0.005110491884031174, 3.1441793937434066], [5.239249104895977, 0.005239250851313044, 2.9245925236855164], [5.3585785638847625, 0.005358580350078332, 2.699742047454042], [5.468263791418374, 0.0054682656141737, 2.4700326451352663], [5.568107378854027, 0.005568109234890562, 2.23587774178529], [5.657929630278884, 0.005657931516256182, 1.9976987633582806], [5.737568885922125, 0.005737570798445852, 1.7559243782349152], [5.8068818131060285, 0.0058068837487340735, 1.5109897257160847], [5.865743664212429, 0.005865745619461099, 1.2633356328704095], [5.914048501200261, 0.00591405047255055, 1.0134078211450503], [5.951709386270114, 0.005951711370174036, 0.7616561041677508], [5.978658538332638, 0.0059786605312196145, 0.508533578183871], [5.9948474549992055, 0.00599484945328249, 0.25449580658545684], [6.00024699987525, 0.006000248999958383, -9.649137928722239e-16], [5.9948474549992055, 0.00599484945328249, -0.2544958065854588], [5.978658538332638, 0.0059786605312196145, -0.5085335781838729], [5.951709386270114, 0.005951711370174036, -0.7616561041677528], [5.91404850120026, 0.005914050472550549, -1.0134078211450523], [5.865743664212428, 0.005865745619461098, -1.2633356328704113], [5.806881813106028, 0.005806883748734073, -1.5109897257160867], [5.7375688859221246, 0.005737570798445851, -1.7559243782349168], [5.6579296302788835, 0.005657931516256182, -1.9976987633582823], [5.568107378854026, 0.005568109234890562, -2.2358777417852918], [5.468263791418373, 0.0054682656141737, -2.470032645135268], [5.3585785638847625, 0.005358580350078332, -2.6997420474540426], [5.239249104895976, 0.0052392508513130435, -2.9245925236855164], [5.110490180533766, 0.005110491884031174, -3.144179393743407], [4.972533527788388, 0.004972535185300228, -3.3581074508440296], [4.825627437484362, 0.004825629046027485, -3.5659916727892695], [4.670036307413036, 0.004670037864092428, -3.767457914919602], [4.506040166476271, 0.00450604166849026, -3.96214358349], [4.3339341706976455, 0.004333935615342946, -4.149698288256797], [4.154028072008258, 0.004154029456684836, -4.3297844731010136], [3.9666456607631977, 0.003966646982978946, -4.502078023553146], [3.7721241829920076, 0.003772125440367238, -4.666268850126034], [3.5708137334319883, 0.003570814923703709, -4.822061446405913], [3.3630766254367206, 0.0033630777464627106, -4.969175420897237], [3.1492867388938364, 0.0031492877886565027, -5.107346001664058], [2.9298288473256444, 0.0029298298239356507, -5.2363245128597296], [2.7050979253836718, 0.002705098827083341, -5.355878822287271], [2.475498437983475, 0.002475499263149951, -5.4657937591849155], [2.2414436123591184, 0.002241444359507288, -5.565871501484891], [2.0033546943474625, 0.0020033553621326278, -5.655931931848479], [1.7616601902407711, 0.0017616607774610694, -5.735812961836547], [1.5167950955721434, 0.001516795601170711, -5.805370823632146], [1.2692001122217742, 0.0012692005352886475, -5.864480328790116], [1.0193208552530806, 0.001019321195026835, -5.913035093548018], [0.767607050906207, 0.0007676073067753263, -5.950947730292889], [0.5145117271923397, 0.0005145118986963174, -5.978150004839211], [0.26049039854558087, 0.00026049048537574843, -5.994592959235035], [0.0060002459998208845, 6.000247999903684e-06, -6.00024699987525]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.0001243749719754e-06, 0.006000248249927273, 6.00024699987525], [-0.00013024525896844955, 0.26049049622953185, 5.994592959235035], [-0.00025725598150498787, 0.5145119201343262, 5.978150004839209], [-0.0003838037013628711, 0.7676073387589769, 5.950947730292888], [-0.0005096606612206597, 1.019321237498564, 5.913035093548016], [-0.0006346003469689417, 1.2692005881720156, 5.864480328790114], [-0.0007583978953845825, 1.51679566437054, 5.805370823632144], [-0.0008808304988337538, 1.7616608508636138, 5.735812961836544], [-0.001001677806275364, 2.0033554456057794, 5.655931931848476], [-0.0011207223198431771, 2.2414444529008146, 5.565871501484889], [-0.0012377497862928622, 2.475499366295765, 5.465793759184912], [-0.0013525495826094537, 2.7050989397958034, 5.355878822287266], [-0.0014649150950812211, 2.9298299460119046, 5.236324512859725], [-0.0015746440911576965, 3.1492879198768375, 5.107346001664054], [-0.0016815390834226014, 3.36307788659096, 4.969175420897232], [-0.0017854076850266048, 3.5708150724876733, 4.822061446405908], [-0.0018860629559402098, 3.7721255975391403, 4.6662688501260305], [-0.0019833237394035956, 3.966647148255913, 4.502078023553143], [-0.0020770149879678823, 4.154029629769405, 4.32978447310101], [-0.0021669680785410123, 4.333935795923605, 4.149698288256794], [-0.00225302111587124, 4.506041856242003, 3.962143583489998], [-0.0023350192239220318, 4.670038058677346, 3.7674579149196004], [-0.002412814824613957, 4.825629247095368, 3.565991672789268], [-0.0024862679034319134, 4.9725353924892, 3.3581074508440283], [-0.002555246261419634, 5.110492096968342, 3.1441793937434066], [-0.002619625753107962, 5.239251069615169, 2.9245925236855164], [-0.0026792905099486597, 5.358580573352519, 2.699742047454042], [-0.0027341331488516364, 5.4682658420181065, 2.4700326451352663], [-0.0027840549654502608, 5.56810946689512, 2.23587774178529], [-0.0028289661117469334, 5.657931752003335, 1.9976987633582806], [-0.002868785757819197, 5.737571037511309, 1.7559243782349152], [-0.0029034422372953444, 5.80688399068757, 1.5109897257160847], [-0.0029328731763377043, 5.865745863867173, 1.2633356328704095], [-0.002957025605901467, 5.914050718969326, 1.0134078211450503], [-0.0029758560570670033, 5.951711618162016, 0.7616561041677508], [-0.0029893306392741064, 5.978660780330477, 0.508533578183871], [-0.0029974251013173466, 5.9948497030678904, 0.25449580658545684], [-0.003000124874992763, 6.000249249968765, -9.649137928722239e-16], [-0.0029974251013173466, 5.9948497030678904, -0.2544958065854588], [-0.0029893306392741064, 5.978660780330477, -0.5085335781838729], [-0.0029758560570670033, 5.951711618162016, -0.7616561041677528], [-0.0029570256059014664, 5.914050718969325, -1.0134078211450523], [-0.002932873176337704, 5.865745863867172, -1.2633356328704113], [-0.002903442237295344, 5.806883990687569, -1.5109897257160867], [-0.0028687857578191967, 5.737571037511308, -1.7559243782349168], [-0.002828966111746933, 5.657931752003334, -1.9976987633582823], [-0.0027840549654502603, 5.568109466895119, -2.2358777417852918], [-0.002734133148851636, 5.4682658420181065, -2.470032645135268], [-0.0026792905099486597, 5.358580573352519, -2.6997420474540426], [-0.0026196257531079614, 5.239251069615168, -2.9245925236855164], [-0.002555246261419634, 5.110492096968342, -3.144179393743407], [-0.002486267903431913, 4.972535392489199, -3.3581074508440296], [-0.0024128148246139566, 4.8256292470953674, -3.5659916727892695], [-0.0023350192239220305, 4.670038058677344, -3.767457914919602], [-0.0022530211158712393, 4.5060418562420015, -3.96214358349], [-0.002166968078541011, 4.333935795923602, -4.149698288256797], [-0.0020770149879678805, 4.1540296297694015, -4.3297844731010136], [-0.0019833237394035934, 3.966647148255909, -4.502078023553146], [-0.0018860629559402074, 3.772125597539136, -4.666268850126034], [-0.0017854076850266022, 3.570815072487668, -4.822061446405913], [-0.0016815390834225984, 3.3630778865909536, -4.969175420897237], [-0.0015746440911576932, 3.149287919876831, -5.107346001664058], [-0.0014649150950812172, 2.929829946011897, -5.2363245128597296], [-0.0013525495826094496, 2.7050989397957954, -5.355878822287271], [-0.0012377497862928579, 2.475499366295756, -5.4657937591849155], [-0.0011207223198431728, 2.2414444529008057, -5.565871501484891], [-0.001001677806275359, 2.00335544560577, -5.655931931848479], [-0.0008808304988337488, 1.7616608508636038, -5.735812961836547], [-0.0007583978953845772, 1.5167956643705294, -5.805370823632146], [-0.000634600346968936, 1.2692005881720045, -5.864480328790116], [-0.000509660661220654, 1.0193212374985525, -5.913035093548018], [-0.0003838037013628651, 0.7676073387589649, -5.950947730292889], [-0.00025725598150498164, 0.5145119201343137, -5.978150004839211], [-0.00013024525896844312, 0.260490496229519, -5.994592959235035], [-3.000124374965351e-06, 0.006000248249914024, -6.00024699987525]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.006000248999958383, 3.3994644104837606e-18, 6.00024699987525], [-0.2604905287908473, 1.4758192233334362e-16, 5.994592959235035], [-0.5145119844483229, 2.914987661198026e-16, 5.978150004839209], [-0.7676074347099042, 4.3489097794727444e-16, 5.950947730292888], [-1.019321364913732, 5.775004842122379e-16, 5.913035093548016], [-1.2692007468221058, 7.190706200044506e-16, 5.864480328790114], [-1.5167958539700177, 8.59346591045832e-16, 5.805370823632144], [-1.7616610710712433, 9.980759322626331e-16, 5.735812961836544], [-2.0033556960252366, 1.1350089621655619e-15, 5.655931931848476], [-2.2414447330814005, 1.2698992322200866e-15, 5.565871501484889], [-2.475499675733218, 1.4025039703981506e-15, 5.465793759184912], [-2.7050992779332064, 1.5325845181130042e-15, 5.355878822287266], [-2.929830312240686, 1.6599067597507732e-15, 5.236324512859725], [-3.1492883135378684, 1.7842415440257e-15, 5.107346001664054], [-3.3630783069757393, 1.9053650964007165e-15, 4.969175420897232], [-3.570815518839604, 2.0230594218310825e-15, 4.822061446405908], [-3.7721260690548895, 2.1371126971062445e-15, 4.6662688501260305], [-3.966647644086858, 2.2473196520837813e-15, 4.502078023553143], [-4.154030149023162, 2.3534819391293163e-15, 4.32978447310101], [-4.3339363376656355, 2.4554084900974686e-15, 4.149698288256794], [-4.506042419497295, 2.5529158602113737e-15, 3.962143583489998], [-4.670038642432164, 2.645828558221859e-15, 3.7674579149196004], [-4.825629850299087, 2.7339793622520677e-15, 3.565991672789268], [-4.972536014056189, 2.817209620759078e-15, 3.3581074508440283], [-5.11049273577992, 2.8953695380708577e-15, 3.1441793937434066], [-5.239251724521621, 2.96831844398465e-15, 2.9245925236855164], [-5.35858124317516, 3.0359250469415738e-15, 2.699742047454042], [-5.4682665255514085, 3.0980676703217873e-15, 2.4700326451352663], [-5.568110162908876, 3.1546344714349263e-15, 2.23587774178529], [-5.657932459244877, 3.2055236428116945e-15, 1.9976987633582806], [-5.737571754707763, 3.2506435954343204e-15, 1.7559243782349152], [-5.8068847165481445, 3.2899131235761073e-15, 1.5109897257160847], [-5.865746597085483, 3.323261550953407e-15, 1.2633356328704095], [-5.914051458225743, 3.35062885792697e-15, 1.0134078211450503], [-5.951712362126046, 3.371965789523745e-15, 0.7616561041677508], [-5.978661527663152, 3.387233944084708e-15, 0.508533578183871], [-5.994850452424181, 3.3964058423791787e-15, 0.25449580658545684], [-6.000249999999999, 3.3994649770612286e-15, -9.649137928722239e-16], [-5.994850452424181, 3.3964058423791787e-15, -0.2544958065854588], [-5.978661527663152, 3.387233944084708e-15, -0.5085335781838729], [-5.951712362126046, 3.371965789523745e-15, -0.7616561041677528], [-5.914051458225742, 3.3506288579269698e-15, -1.0134078211450523], [-5.865746597085482, 3.3232615509534066e-15, -1.2633356328704113], [-5.806884716548144, 3.289913123576107e-15, -1.5109897257160867], [-5.737571754707762, 3.25064359543432e-15, -1.7559243782349168], [-5.6579324592448765, 3.205523642811694e-15, -1.9976987633582823], [-5.568110162908875, 3.154634471434926e-15, -2.2358777417852918], [-5.468266525551408, 3.098067670321787e-15, -2.470032645135268], [-5.35858124317516, 3.0359250469415738e-15, -2.6997420474540426], [-5.239251724521621, 2.9683184439846496e-15, -2.9245925236855164], [-5.11049273577992, 2.8953695380708577e-15, -3.144179393743407], [-4.972536014056188, 2.8172096207590774e-15, -3.3581074508440296], [-4.825629850299086, 2.733979362252067e-15, -3.5659916727892695], [-4.670038642432162, 2.645828558221858e-15, -3.767457914919602], [-4.506042419497293, 2.5529158602113726e-15, -3.96214358349], [-4.333936337665633, 2.4554084900974674e-15, -4.149698288256797], [-4.15403014902316, 2.3534819391293143e-15, -4.3297844731010136], [-3.966647644086854, 2.247319652083779e-15, -4.502078023553146], [-3.7721260690548846, 2.1371126971062417e-15, -4.666268850126034], [-3.5708155188395985, 2.0230594218310798e-15, -4.822061446405913], [-3.3630783069757335, 1.905365096400713e-15, -4.969175420897237], [-3.1492883135378618, 1.784241544025696e-15, -5.107346001664058], [-2.9298303122406786, 1.6599067597507688e-15, -5.2363245128597296], [-2.705099277933198, 1.5325845181129995e-15, -5.355878822287271], [-2.4754996757332095, 1.4025039703981457e-15, -5.4657937591849155], [-2.2414447330813916, 1.2698992322200815e-15, -5.565871501484891], [-2.003355696025227, 1.1350089621655564e-15, -5.655931931848479], [-1.7616610710712333, 9.980759322626274e-16, -5.735812961836547], [-1.516795853970007, 8.59346591045826e-16, -5.805370823632146], [-1.2692007468220947, 7.190706200044442e-16, -5.864480328790116], [-1.0193213649137205, 5.775004842122314e-16, -5.913035093548018], [-0.7676074347098922, 4.3489097794726764e-16, -5.950947730292889], [-0.5145119844483105, 2.9149876611979553e-16, -5.978150004839211], [-0.2604905287908344, 1.4758192233333632e-16, -5.994592959235035], [-0.006000248999945134, 3.3994644104762545e-18, -6.00024699987525]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.0001243749787745e-06, -0.006000248249927273, 6.00024699987525], [-0.00013024525896874472, -0.26049049622953185, 5.994592959235035], [-0.00025725598150557085, -0.5145119201343262, 5.978150004839209], [-0.00038380370136374085, -0.7676073387589769, 5.950947730292888], [-0.0005096606612218147, -1.019321237498564, 5.913035093548016], [-0.0006346003469703798, -1.2692005881720156, 5.864480328790114], [-0.0007583978953863012, -1.51679566437054, 5.805370823632144], [-0.0008808304988357499, -1.7616608508636138, 5.735812961836544], [-0.001001677806277634, -2.0033554456057794, 5.655931931848476], [-0.001120722319845717, -2.2414444529008146, 5.565871501484889], [-0.0012377497862956673, -2.475499366295765, 5.465793759184912], [-0.0013525495826125188, -2.7050989397958034, 5.355878822287266], [-0.0014649150950845407, -2.9298299460119046, 5.236324512859725], [-0.0015746440911612648, -3.1492879198768375, 5.107346001664054], [-0.0016815390834264122, -3.36307788659096, 4.969175420897232], [-0.0017854076850306508, -3.5708150724876733, 4.822061446405908], [-0.001886062955944484, -3.7721255975391403, 4.6662688501260305], [-0.0019833237394080903, -3.966647148255913, 4.502078023553143], [-0.002077014987972589, -4.154029629769405, 4.32978447310101], [-0.0021669680785459233, -4.333935795923605, 4.149698288256794], [-0.002253021115876346, -4.506041856242003, 3.962143583489998], [-0.002335019223927323, -4.670038058677346, 3.7674579149196004], [-0.002412814824619425, -4.825629247095368, 3.565991672789268], [-0.0024862679034375473, -4.9725353924892, 3.3581074508440283], [-0.0025552462614254244, -5.110492096968342, 3.1441793937434066], [-0.0026196257531138985, -5.239251069615169, 2.9245925236855164], [-0.002679290509954731, -5.358580573352519, 2.699742047454042], [-0.0027341331488578324, -5.4682658420181065, 2.4700326451352663], [-0.0027840549654565695, -5.56810946689512, 2.23587774178529], [-0.002828966111753344, -5.657931752003335, 1.9976987633582806], [-0.002868785757825698, -5.737571037511309, 1.7559243782349152], [-0.0029034422373019238, -5.80688399068757, 1.5109897257160847], [-0.0029328731763443505, -5.865745863867173, 1.2633356328704095], [-0.002957025605908168, -5.914050718969326, 1.0134078211450503], [-0.0029758560570737475, -5.951711618162016, 0.7616561041677508], [-0.002989330639280881, -5.978660780330477, 0.508533578183871], [-0.002997425101324139, -5.9948497030678904, 0.25449580658545684], [-0.003000124874999562, -6.000249249968765, -9.649137928722239e-16], [-0.002997425101324139, -5.9948497030678904, -0.2544958065854588], [-0.002989330639280881, -5.978660780330477, -0.5085335781838729], [-0.0029758560570737475, -5.951711618162016, -0.7616561041677528], [-0.0029570256059081677, -5.914050718969325, -1.0134078211450523], [-0.0029328731763443505, -5.865745863867172, -1.2633356328704113], [-0.0029034422373019238, -5.806883990687569, -1.5109897257160867], [-0.002868785757825698, -5.737571037511308, -1.7559243782349168], [-0.002828966111753344, -5.657931752003334, -1.9976987633582823], [-0.0027840549654565695, -5.568109466895119, -2.2358777417852918], [-0.002734133148857832, -5.4682658420181065, -2.470032645135268], [-0.002679290509954731, -5.358580573352519, -2.6997420474540426], [-0.002619625753113898, -5.239251069615168, -2.9245925236855164], [-0.0025552462614254244, -5.110492096968342, -3.144179393743407], [-0.0024862679034375473, -4.972535392489199, -3.3581074508440296], [-0.0024128148246194245, -4.8256292470953674, -3.5659916727892695], [-0.0023350192239273222, -4.670038058677344, -3.767457914919602], [-0.002253021115876345, -4.5060418562420015, -3.96214358349], [-0.002166968078545922, -4.333935795923602, -4.149698288256797], [-0.0020770149879725877, -4.1540296297694015, -4.3297844731010136], [-0.001983323739408088, -3.966647148255909, -4.502078023553146], [-0.0018860629559444815, -3.772125597539136, -4.666268850126034], [-0.0017854076850306482, -3.570815072487668, -4.822061446405913], [-0.0016815390834264091, -3.3630778865909536, -4.969175420897237], [-0.0015746440911612615, -3.149287919876831, -5.107346001664058], [-0.001464915095084537, -2.929829946011897, -5.2363245128597296], [-0.0013525495826125146, -2.7050989397957954, -5.355878822287271], [-0.001237749786295663, -2.475499366295756, -5.4657937591849155], [-0.0011207223198457124, -2.2414444529008057, -5.565871501484891], [-0.0010016778062776292, -2.00335544560577, -5.655931931848479], [-0.0008808304988357449, -1.7616608508636038, -5.735812961836547], [-0.0007583978953862959, -1.5167956643705294, -5.805370823632146], [-0.0006346003469703741, -1.2692005881720045, -5.864480328790116], [-0.000509660661221809, -1.0193212374985525, -5.913035093548018], [-0.00038380370136373483, -0.7676073387589649, -5.950947730292889], [-0.0002572559815055646, -0.5145119201343137, -5.978150004839211], [-0.00013024525896873827, -0.260490496229519, -5.994592959235035], [-3.00012437497215e-06, -0.006000248249914024, -6.00024699987525]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.006000245999834133, -6.000247999925736e-06, 6.00024699987525], [0.26049039854559375, -0.00026049048537614346, 5.994592959235035], [0.5145117271923522, -0.0005145118986970847, 5.978150004839209], [0.767607050906219, -0.0007676073067764644, 5.950947730292888], [1.0193208552530921, -0.001019321195028342, 5.913035093548016], [1.2692001122217853, -0.0012692005352905207, 5.864480328790114], [1.516795095572154, -0.0015167956011729467, 5.805370823632144], [1.7616601902407811, -0.001761660777463664, 5.735812961836544], [2.003354694347472, -0.0020033553621355764, 5.655931931848476], [2.2414436123591273, -0.0022414443595105854, 5.565871501484889], [2.4754984379834832, -0.0024754992631535913, 5.465793759184912], [2.70509792538368, -0.002705098827087318, 5.355878822287266], [2.9298288473256524, -0.0029298298239399567, 5.236324512859725], [3.149286738893843, -0.0031492877886611296, 5.107346001664054], [3.3630766254367264, -0.0033630777464676506, 4.969175420897232], [3.5708137334319936, -0.0035708149237089525, 4.822061446405908], [3.772124182992012, -0.0037721254403727767, 4.6662688501260305], [3.9666456607632017, -0.00396664698298477, 4.502078023553143], [4.154028072008262, -0.004154029456690933, 4.32978447310101], [4.333934170697648, -0.004333935615349308, 4.149698288256794], [4.506040166476272, -0.004506041668496873, 3.962143583489998], [4.670036307413038, -0.004670037864099281, 3.7674579149196004], [4.825627437484363, -0.004825629046034566, 3.565991672789268], [4.972533527788389, -0.004972535185307524, 3.3581074508440283], [5.110490180533766, -0.005110491884038671, 3.1441793937434066], [5.239249104895977, -0.005239250851320731, 2.9245925236855164], [5.3585785638847625, -0.0053585803500861935, 2.699742047454042], [5.468263791418374, -0.005468265614181723, 2.4700326451352663], [5.568107378854027, -0.005568109234898731, 2.23587774178529], [5.657929630278884, -0.005657931516264482, 1.9976987633582806], [5.737568885922125, -0.00573757079845427, 1.7559243782349152], [5.8068818131060285, -0.005806883748742593, 1.5109897257160847], [5.865743664212429, -0.005865745619469704, 1.2633356328704095], [5.914048501200261, -0.005914050472559226, 1.0134078211450503], [5.951709386270114, -0.005951711370182767, 0.7616561041677508], [5.978658538332638, -0.005978660531228386, 0.508533578183871], [5.9948474549992055, -0.005994849453291285, 0.25449580658545684], [6.00024699987525, -0.006000248999967186, -9.649137928722239e-16], [5.9948474549992055, -0.005994849453291285, -0.2544958065854588], [5.978658538332638, -0.005978660531228386, -0.5085335781838729], [5.951709386270114, -0.005951711370182767, -0.7616561041677528], [5.91404850120026, -0.005914050472559225, -1.0134078211450523], [5.865743664212428, -0.005865745619469704, -1.2633356328704113], [5.806881813106028, -0.005806883748742592, -1.5109897257160867], [5.7375688859221246, -0.005737570798454269, -1.7559243782349168], [5.6579296302788835, -0.005657931516264482, -1.9976987633582823], [5.568107378854026, -0.005568109234898731, -2.2358777417852918], [5.468263791418373, -0.005468265614181722, -2.470032645135268], [5.3585785638847625, -0.0053585803500861935, -2.6997420474540426], [5.239249104895976, -0.00523925085132073, -2.9245925236855164], [5.110490180533766, -0.005110491884038671, -3.144179393743407], [4.972533527788388, -0.004972535185307523, -3.3581074508440296], [4.825627437484362, -0.004825629046034565, -3.5659916727892695], [4.670036307413036, -0.004670037864099279, -3.767457914919602], [4.506040166476271, -0.004506041668496871, -3.96214358349], [4.3339341706976455, -0.004333935615349305, -4.149698288256797], [4.154028072008258, -0.004154029456690931, -4.3297844731010136], [3.9666456607631977, -0.003966646982984766, -4.502078023553146], [3.7721241829920076, -0.003772125440372772, -4.666268850126034], [3.5708137334319883, -0.0035708149237089473, -4.822061446405913], [3.3630766254367206, -0.0033630777464676445, -4.969175420897237], [3.1492867388938364, -0.003149287788661123, -5.107346001664058], [2.9298288473256444, -0.0029298298239399494, -5.2363245128597296], [2.7050979253836718, -0.0027050988270873096, -5.355878822287271], [2.475498437983475, -0.0024754992631535826, -5.4657937591849155], [2.2414436123591184, -0.0022414443595105762, -5.565871501484891], [2.0033546943474625, -0.002003355362135567, -5.655931931848479], [1.7616601902407711, -0.001761660777463654, -5.735812961836547], [1.5167950955721434, -0.0015167956011729361, -5.805370823632146], [1.2692001122217742, -0.0012692005352905095, -5.864480328790116], [1.0193208552530806, -0.0010193211950283304, -5.913035093548018], [0.767607050906207, -0.0007676073067764523, -5.950947730292889], [0.5145117271923397, -0.0005145118986970722, -5.978150004839211], [0.26049039854558087, -0.0002604904853761306, -5.994592959235035], [0.0060002459998208845, -6.000247999912487e-06, -6.00024699987525]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.007999994666667733, 7.999997333333687e-06, 7.9999960000003325], [0.34730606030827876, 0.00034730617607701183, 7.9924575932469955], [0.6859870534625753, 0.0006859872821250178, 7.970534567511966], [1.0234334248155912, 0.0010234337659602024, 7.93426637929138], [1.3590378470938271, 0.001359038300106624, 7.883718303134724], [1.6921963081162088, 0.0016921968721818703, 7.818981314165395], [2.022309197879627, 0.0020223098719829623, 7.7401719243460105], [2.348782387721553, 0.0023487831706493286, 7.647431972783193], [2.6710282996174786, 0.0026710291899606007, 7.540928370449199], [2.9884669636886825, 0.0029884679598447352, 7.42085279977986], [3.30052706201706, 0.0033005281621931873, 7.287421369689478], [3.6066469568883694, 0.0036066481591045026, 7.14087422662358], [3.906275701613302, 0.003906277003705723, 6.9814751223495355], [4.19887403210712, 0.004198875431732356, 6.809510939262936], [4.483915337443241, 0.004483916832082284, 6.625291174064056], [4.760886607634006, 0.004760888194596843, 6.4291473807336805], [5.029289356932811, 0.005029291033363266, 6.221432573810798], [5.2886405209958935, 0.0052886422838767716, 6.002520593046146], [5.538473326289086, 0.0055384751724476, 5.7728054305750724], [5.778338130174773, 0.005778340056288253, 5.53270052182065], [6.007803230167107, 0.0060078052327689835, 5.282638001403272], [6.226455640899013, 0.006226457716385056, 5.0230679253959085], [6.433901837402592, 0.006433903982037395, 4.754457461324802], [6.629768463365211, 0.006629770673288916, 4.477290047373397], [6.813703003086559, 0.006813705274321801, 4.192064522302779], [6.985374415927306, 0.006985376744386375, 3.899294227654536], [7.144473732107512, 0.007144476113599707, 3.5995060838518955], [7.290714608782466, 0.00729071703902164, 3.2932396418619443], [7.423833845395143, 0.007423836320007414, 2.9810461121257146], [7.543591857377788, 0.007543594371909412, 2.663487372503853], [7.649773107350026, 0.007649775657275415, 2.341134957023344], [7.742186493037494, 0.007742189073767357, 2.0145690272453107], [7.8206656912127706, 0.007820668298102375, 1.6843773281052081], [7.885069457039637, 0.007885072085397174, 1.3511541301046461], [7.935281878281889, 0.007935284523376905, 1.0154991597586775], [7.971212583919186, 0.00797121524099111, 0.6780165202234854], [7.99279690679449, 0.007992799571061191, 0.33931360404710714], [7.9999960000003325, 0.007999998666666732, -1.286498119741309e-15], [7.99279690679449, 0.007992799571061191, -0.3393136040471097], [7.971212583919186, 0.00797121524099111, -0.6780165202234879], [7.935281878281889, 0.007935284523376905, -1.0154991597586802], [7.885069457039636, 0.007885072085397172, -1.3511541301046488], [7.82066569121277, 0.007820668298102375, -1.6843773281052106], [7.742186493037493, 0.007742189073767356, -2.0145690272453134], [7.6497731073500255, 0.007649775657275414, -2.341134957023346], [7.543591857377787, 0.007543594371909411, -2.6634873725038553], [7.4238338453951425, 0.007423836320007413, -2.981046112125717], [7.290714608782465, 0.007290717039021639, -3.2932396418619465], [7.144473732107512, 0.007144476113599707, -3.599506083851896], [6.985374415927305, 0.006985376744386374, -3.8992942276545364], [6.813703003086559, 0.006813705274321801, -4.19206452230278], [6.6297684633652105, 0.006629770673288915, -4.4772900473733985], [6.4339018374025905, 0.006433903982037394, -4.754457461324804], [6.22645564089901, 0.006226457716385053, -5.023067925395911], [6.007803230167104, 0.006007805232768981, -5.282638001403274], [5.778338130174769, 0.005778340056288249, -5.5327005218206535], [5.538473326289082, 0.0055384751724475954, -5.772805430575077], [5.288640520995888, 0.005288642283876766, -6.002520593046151], [5.0292893569328045, 0.00502929103336326, -6.2214325738108025], [4.760886607633999, 0.004760888194596836, -6.429147380733686], [4.483915337443233, 0.0044839168320822765, -6.6252911740640625], [4.198874032107111, 0.004198875431732347, -6.809510939262942], [3.906275701613292, 0.0039062770037057125, -6.981475122349541], [3.6066469568883583, 0.0036066481591044914, -7.140874226623585], [3.3005270620170486, 0.0033005281621931756, -7.287421369689484], [2.9884669636886705, 0.0029884679598447235, -7.420852799779865], [2.6710282996174657, 0.0026710291899605877, -7.540928370449204], [2.3487823877215397, 0.002348783170649315, -7.647431972783197], [2.0223091978796126, 0.002022309871982948, -7.740171924346014], [1.692196308116194, 0.0016921968721818554, -7.818981314165398], [1.3590378470938118, 0.0013590383001066087, -7.883718303134727], [1.0234334248155752, 0.0010234337659601866, -7.9342663792913815], [0.6859870534625586, 0.0006859872821250012, -7.970534567511968], [0.3473060603082616, 0.0003473061760769947, -7.9924575932469955], [0.007999994666650068, 7.999997333316023e-06, -7.9999960000003325]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.9999991666640226e-06, 0.00799999766666692, 7.9999960000003325], [-0.0001736531097450267, 0.34730619054810297, 7.9924575932469955], [-0.0003429936839364864, 0.6859873107078222, 7.970534567511966], [-0.000511716946944372, 1.0234338086032775, 7.93426637929138], [-0.0006795192349927548, 1.3590383567332216, 7.883718303134724], [-0.0008460985418526783, 1.6921969426900756, 7.818981314165395], [-0.0010111550623851772, 2.0223099562458766, 7.7401719243460105], [-0.0011743917321228332, 2.348783268515297, 7.647431972783193], [-0.0013355147619187385, 2.6710293012534874, 7.540928370449199], [-0.0014942341667006237, 2.9884680843642375, 7.42085279977986], [-0.0016502642873785088, 3.3005282997151983, 7.287421369689478], [-0.0018033243049665646, 3.606648309381514, 7.14087422662358], [-0.0019531387459938783, 3.90627716646727, 6.9814751223495355], [-0.0020994379782944997, 4.198875606685505, 6.809510939262936], [-0.0022419586962844564, 4.483917018912159, 6.625291174064056], [-0.002380444394852354, 4.760888392967191, 6.4291473807336805], [-0.0025146458310106538, 5.029291242917066, 6.221432573810798], [-0.002644321472476774, 5.288642504236874, 6.002520593046146], [-0.0027692379323766606, 5.538475403217406, 5.7728054305750724], [-0.0028891703892884625, 5.77834029705243, 5.53270052182065], [-0.0030039029918703256, 6.007805483094209, 5.282638001403272], [-0.003113229247344069, 6.226457975820802, 5.0230679253959085], [-0.003216952393135562, 6.433904250116737, 4.754457461324802], [-0.0033148857510029257, 6.6297709495293695, 4.477290047373397], [-0.0034068530630152194, 6.8137055582261965, 4.192064522302779], [-0.0034926888087769164, 6.985377035443749, 3.899294227654536], [-0.0035722385033272403, 7.144476411286222, 3.5995060838518955], [-0.003645358975178216, 7.290717342801526, 3.2932396418619443], [-0.003711918623991014, 7.4238366293339375, 2.9810461121257146], [-0.003771797657426851, 7.5435946862258545, 2.663487372503853], [-0.003824888306746148, 7.649775976016078, 2.341134957023344], [-0.0038710950207679266, 7.742189396358579, 2.0145690272453107], [-0.003910334637840362, 7.820668623963566, 1.6843773281052081], [-0.003942536535512976, 7.885072413941854, 1.3511541301046461], [-0.003967642757641103, 7.935284854013771, 1.0154991597586775], [-0.003985608118693863, 7.9712155731250895, 0.6780165202234854], [-0.003996400285077917, 7.992799904094517, 0.33931360404710714], [-0.003999999833330628, 7.99999900000002, -1.286498119741309e-15], [-0.003996400285077917, 7.992799904094517, -0.3393136040471097], [-0.003985608118693863, 7.9712155731250895, -0.6780165202234879], [-0.003967642757641103, 7.935284854013771, -1.0154991597586802], [-0.003942536535512975, 7.885072413941853, -1.3511541301046488], [-0.003910334637840362, 7.820668623963565, -1.6843773281052106], [-0.003871095020767926, 7.742189396358578, -2.0145690272453134], [-0.0038248883067461474, 7.649775976016077, -2.341134957023346], [-0.0037717976574268507, 7.543594686225854, -2.6634873725038553], [-0.0037119186239910136, 7.423836629333937, -2.981046112125717], [-0.0036453589751782155, 7.290717342801525, -3.2932396418619465], [-0.0035722385033272403, 7.144476411286222, -3.599506083851896], [-0.003492688808776916, 6.985377035443748, -3.8992942276545364], [-0.0034068530630152194, 6.8137055582261965, -4.19206452230278], [-0.0033148857510029253, 6.629770949529369, -4.4772900473733985], [-0.003216952393135561, 6.433904250116735, -4.754457461324804], [-0.003113229247344068, 6.226457975820799, -5.023067925395911], [-0.0030039029918703243, 6.007805483094207, -5.282638001403274], [-0.0028891703892884608, 5.778340297052426, -5.5327005218206535], [-0.0027692379323766584, 5.538475403217402, -5.772805430575077], [-0.002644321472476771, 5.2886425042368685, -6.002520593046151], [-0.0025146458310106507, 5.0292912429170595, -6.2214325738108025], [-0.0023804443948523507, 4.760888392967184, -6.429147380733686], [-0.0022419586962844525, 4.483917018912151, -6.6252911740640625], [-0.002099437978294495, 4.198875606685496, -6.809510939262942], [-0.001953138745993873, 3.9062771664672598, -6.981475122349541], [-0.001803324304966559, 3.606648309381503, -7.140874226623585], [-0.001650264287378503, 3.300528299715187, -7.287421369689484], [-0.0014942341667006176, 2.9884680843642255, -7.420852799779865], [-0.0013355147619187322, 2.6710293012534745, -7.540928370449204], [-0.0011743917321228264, 2.348783268515284, -7.647431972783197], [-0.00101115506238517, 2.0223099562458624, -7.740171924346014], [-0.0008460985418526708, 1.6921969426900607, -7.818981314165398], [-0.0006795192349927472, 1.3590383567332063, -7.883718303134727], [-0.000511716946944364, 1.0234338086032615, -7.9342663792913815], [-0.0003429936839364781, 0.6859873107078055, -7.970534567511968], [-0.0001736531097450181, 0.3473061905480858, -7.9924575932469955], [-3.9999991666551905e-06, 0.007999997666649255, -7.9999960000003325]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.007999998666666732, 4.532430362713234e-18, 7.9999960000003325], [-0.34730623396138127, 1.9676769779038353e-16, 7.9924575932469955], [-0.6859873964562448, 3.886488277919121e-16, 7.970534567511966], [-1.0234339365325167, 5.798304776597967e-16, 7.93426637929138], [-1.3590385266130338, 7.699685635928342e-16, 7.883718303134724], [-1.6921971542147154, 9.587208799692687e-16, 7.818981314165395], [-2.022310209034647, 1.145747715239641e-15, 7.7401719243460105], [-2.348783562113236, 1.330712463330872e-15, 7.647431972783193], [-2.6710296351321845, 1.513282229461188e-15, 7.540928370449199], [-2.988468457922787, 1.6931284292755623e-15, 7.42085279977986], [-3.3005287122812788, 1.869927380223358e-15, 7.287421369689478], [-3.6066487602125994, 2.0433608841138343e-15, 7.14087422662358], [-3.9062776547519666, 2.213116799801039e-15, 6.9814751223495355], [-4.19887613154501, 2.3788896049673928e-15, 6.809510939262936], [-4.483917579401844, 2.540380945994872e-15, 6.625291174064056], [-4.760888988078301, 2.6973001749341544e-15, 6.4291473807336805], [-5.029291871578536, 2.8493648726053004e-15, 6.221432573810798], [-5.288643165317255, 2.9963013568885046e-15, 6.002520593046146], [-5.538476095526903, 3.1378451752901178e-15, 5.7728054305750724], [-5.778341019345041, 3.2737415808974207e-15, 5.53270052182065], [-6.007806234069973, 3.4037459908655454e-15, 5.282638001403272], [-6.22645875412813, 3.5276244266113694e-15, 5.0230679253959085], [-6.4339050543548515, 3.6451539349221345e-15, 4.754457461324802], [-6.6297717782508245, 3.756122989220886e-15, 4.477290047373397], [-6.8137064099394795, 3.860331870266549e-15, 4.192064522302779], [-6.985377908615969, 3.957593025603467e-15, 3.899294227654536], [-7.144477304345866, 4.0477314071134686e-15, 3.5995060838518955], [-7.2907182541412885, 4.130584786062963e-15, 3.2932396418619443], [-7.423837557313613, 4.206004045078023e-15, 2.9810461121257146], [-7.543595629175288, 4.273853446521987e-15, 2.663487372503853], [-7.649776932238174, 4.3340108767925604e-15, 2.341134957023344], [-7.7421903641323535, 4.386368066098722e-15, 2.0145690272453107], [-7.820669601547245, 4.4308307833219044e-15, 1.6843773281052081], [-7.885073399576008, 4.467319005610726e-15, 1.3511541301046461], [-7.935285845924481, 4.49576706240406e-15, 1.0154991597586775], [-7.971216569527139, 4.5161237536232096e-15, 0.6780165202234854], [-7.992800903194609, 4.528352441820496e-15, 0.33931360404710714], [-7.999999999999999, 4.532431118118383e-15, -1.286498119741309e-15], [-7.992800903194609, 4.528352441820496e-15, -0.3393136040471097], [-7.971216569527139, 4.5161237536232096e-15, -0.6780165202234879], [-7.935285845924481, 4.49576706240406e-15, -1.0154991597586802], [-7.885073399576007, 4.4673190056107254e-15, -1.3511541301046488], [-7.8206696015472446, 4.430830783321904e-15, -1.6843773281052106], [-7.742190364132353, 4.3863680660987214e-15, -2.0145690272453134], [-7.649776932238173, 4.33401087679256e-15, -2.341134957023346], [-7.543595629175287, 4.273853446521987e-15, -2.6634873725038553], [-7.423837557313612, 4.2060040450780225e-15, -2.981046112125717], [-7.290718254141288, 4.130584786062963e-15, -3.2932396418619465], [-7.144477304345866, 4.0477314071134686e-15, -3.599506083851896], [-6.985377908615968, 3.957593025603466e-15, -3.8992942276545364], [-6.8137064099394795, 3.860331870266549e-15, -4.19206452230278], [-6.629771778250824, 3.756122989220886e-15, -4.4772900473733985], [-6.43390505435485, 3.645153934922134e-15, -4.754457461324804], [-6.226458754128127, 3.5276244266113682e-15, -5.023067925395911], [-6.00780623406997, 3.4037459908655438e-15, -5.282638001403274], [-5.778341019345038, 3.2737415808974188e-15, -5.5327005218206535], [-5.538476095526899, 3.137845175290115e-15, -5.772805430575077], [-5.28864316531725, 2.9963013568885014e-15, -6.002520593046151], [-5.02929187157853, 2.849364872605297e-15, -6.2214325738108025], [-4.760888988078294, 2.6973001749341505e-15, -6.429147380733686], [-4.483917579401836, 2.5403809459948675e-15, -6.6252911740640625], [-4.198876131545001, 2.378889604967388e-15, -6.809510939262942], [-3.9062776547519564, 2.2131167998010332e-15, -6.981475122349541], [-3.6066487602125883, 2.043360884113828e-15, -7.140874226623585], [-3.300528712281267, 1.8699273802233514e-15, -7.287421369689484], [-2.988468457922775, 1.6931284292755556e-15, -7.420852799779865], [-2.6710296351321716, 1.5132822294611808e-15, -7.540928370449204], [-2.3487835621132227, 1.3307124633308642e-15, -7.647431972783197], [-2.0223102090346328, 1.1457477152396328e-15, -7.740171924346014], [-1.6921971542147005, 9.587208799692602e-16, -7.818981314165398], [-1.3590385266130185, 7.699685635928255e-16, -7.883718303134727], [-1.0234339365325007, 5.798304776597876e-16, -7.9342663792913815], [-0.6859873964562282, 3.8864882779190267e-16, -7.970534567511968], [-0.3473062339613641, 1.9676769779037382e-16, -7.9924575932469955], [-0.007999998666649067, 4.5324303627032264e-18, -7.9999960000003325]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.9999991666730875e-06, -0.00799999766666692, 7.9999960000003325], [-0.00017365310974542023, -0.34730619054810297, 7.9924575932469955], [-0.00034299368393726374, -0.6859873107078222, 7.970534567511966], [-0.0005117169469455317, -1.0234338086032775, 7.93426637929138], [-0.0006795192349942948, -1.3590383567332216, 7.883718303134724], [-0.0008460985418545957, -1.6921969426900756, 7.818981314165395], [-0.0010111550623874686, -2.0223099562458766, 7.7401719243460105], [-0.0011743917321254945, -2.348783268515297, 7.647431972783193], [-0.0013355147619217651, -2.6710293012534874, 7.540928370449199], [-0.0014942341667040099, -2.9884680843642375, 7.42085279977986], [-0.0016502642873822485, -3.3005282997151983, 7.287421369689478], [-0.0018033243049706512, -3.606648309381514, 7.14087422662358], [-0.0019531387459983045, -3.90627716646727, 6.9814751223495355], [-0.002099437978299257, -4.198875606685505, 6.809510939262936], [-0.0022419586962895374, -4.483917018912159, 6.625291174064056], [-0.0023804443948577487, -4.760888392967191, 6.4291473807336805], [-0.0025146458310163528, -5.029291242917066, 6.221432573810798], [-0.0026443214724827663, -5.288642504236874, 6.002520593046146], [-0.002769237932382936, -5.538475403217406, 5.7728054305750724], [-0.0028891703892950102, -5.77834029705243, 5.53270052182065], [-0.003003902991877133, -6.007805483094209, 5.282638001403272], [-0.0031132292473511243, -6.226457975820802, 5.0230679253959085], [-0.0032169523931428524, -6.433904250116737, 4.754457461324802], [-0.003314885751010438, -6.6297709495293695, 4.477290047373397], [-0.0034068530630229398, -6.8137055582261965, 4.192064522302779], [-0.0034926888087848315, -6.985377035443749, 3.899294227654536], [-0.003572238503335336, -7.144476411286222, 3.5995060838518955], [-0.0036453589751864767, -7.290717342801526, 3.2932396418619443], [-0.003711918623999426, -7.4238366293339375, 2.9810461121257146], [-0.003771797657435399, -7.5435946862258545, 2.663487372503853], [-0.003824888306754816, -7.649775976016078, 2.341134957023344], [-0.003871095020776699, -7.742189396358579, 2.0145690272453107], [-0.003910334637849224, -7.820668623963566, 1.6843773281052081], [-0.003942536535521911, -7.885072413941854, 1.3511541301046461], [-0.003967642757650094, -7.935284854013771, 1.0154991597586775], [-0.003985608118702895, -7.9712155731250895, 0.6780165202234854], [-0.003996400285086973, -7.992799904094517, 0.33931360404710714], [-0.003999999833339693, -7.99999900000002, -1.286498119741309e-15], [-0.003996400285086973, -7.992799904094517, -0.3393136040471097], [-0.003985608118702895, -7.9712155731250895, -0.6780165202234879], [-0.003967642757650094, -7.935284854013771, -1.0154991597586802], [-0.00394253653552191, -7.885072413941853, -1.3511541301046488], [-0.003910334637849223, -7.820668623963565, -1.6843773281052106], [-0.0038710950207766987, -7.742189396358578, -2.0145690272453134], [-0.0038248883067548154, -7.649775976016077, -2.341134957023346], [-0.0037717976574353986, -7.543594686225854, -2.6634873725038553], [-0.0037119186239994257, -7.423836629333937, -2.981046112125717], [-0.0036453589751864763, -7.290717342801525, -3.2932396418619465], [-0.003572238503335336, -7.144476411286222, -3.599506083851896], [-0.003492688808784831, -6.985377035443748, -3.8992942276545364], [-0.0034068530630229398, -6.8137055582261965, -4.19206452230278], [-0.0033148857510104375, -6.629770949529369, -4.4772900473733985], [-0.0032169523931428515, -6.433904250116735, -4.754457461324804], [-0.003113229247351123, -6.226457975820799, -5.023067925395911], [-0.0030039029918771313, -6.007805483094207, -5.282638001403274], [-0.0028891703892950085, -5.778340297052426, -5.5327005218206535], [-0.002769237932382934, -5.538475403217402, -5.772805430575077], [-0.0026443214724827637, -5.2886425042368685, -6.002520593046151], [-0.0025146458310163497, -5.0292912429170595, -6.2214325738108025], [-0.0023804443948577452, -4.760888392967184, -6.429147380733686], [-0.0022419586962895335, -4.483917018912151, -6.6252911740640625], [-0.002099437978299253, -4.198875606685496, -6.809510939262942], [-0.0019531387459982993, -3.9062771664672598, -6.981475122349541], [-0.0018033243049706458, -3.606648309381503, -7.140874226623585], [-0.0016502642873822428, -3.300528299715187, -7.287421369689484], [-0.0014942341667040038, -2.9884680843642255, -7.420852799779865], [-0.0013355147619217586, -2.6710293012534745, -7.540928370449204], [-0.001174391732125488, -2.348783268515284, -7.647431972783197], [-0.0010111550623874616, -2.0223099562458624, -7.740171924346014], [-0.0008460985418545882, -1.6921969426900607, -7.818981314165398], [-0.0006795192349942871, -1.3590383567332063, -7.883718303134727], [-0.0005117169469455237, -1.0234338086032615, -7.9342663792913815], [-0.0003429936839372554, -0.6859873107078055, -7.970534567511968], [-0.00017365310974541164, -0.3473061905480858, -7.9924575932469955], [-3.9999991666642555e-06, -0.007999997666649255, -7.9999960000003325]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.007999994666667733, -7.999997333345425e-06, 7.9999960000003325], [0.34730606030827876, -0.00034730617607752135, 7.9924575932469955], [0.6859870534625753, -0.0006859872821260242, 7.970534567511966], [1.0234334248155912, -0.001023433765961704, 7.93426637929138], [1.3590378470938271, -0.001359038300108618, 7.883718303134724], [1.6921963081162088, -0.001692196872184353, 7.818981314165395], [2.022309197879627, -0.0020223098719859296, 7.7401719243460105], [2.348782387721553, -0.0023487831706527746, 7.647431972783193], [2.6710282996174786, -0.0026710291899645195, 7.540928370449199], [2.9884669636886825, -0.0029884679598491198, 7.42085279977986], [3.30052706201706, -0.00330052816219803, 7.287421369689478], [3.6066469568883694, -0.003606648159109794, 7.14087422662358], [3.906275701613302, -0.003906277003711454, 6.9814751223495355], [4.19887403210712, -0.004198875431738517, 6.809510939262936], [4.483915337443241, -0.004483916832088863, 6.625291174064056], [4.760886607634006, -0.004760888194603828, 6.4291473807336805], [5.029289356932811, -0.005029291033370645, 6.221432573810798], [5.2886405209958935, -0.005288642283884531, 6.002520593046146], [5.538473326289086, -0.005538475172455725, 5.7728054305750724], [5.778338130174773, -0.00577834005629673, 5.53270052182065], [6.007803230167107, -0.006007805232777798, 5.282638001403272], [6.226455640899013, -0.006226457716394191, 5.0230679253959085], [6.433901837402592, -0.006433903982046835, 4.754457461324802], [6.629768463365211, -0.0066297706732986435, 4.477290047373397], [6.813703003086559, -0.0068137052743317975, 4.192064522302779], [6.985374415927306, -0.006985376744396624, 3.899294227654536], [7.144473732107512, -0.007144476113610189, 3.5995060838518955], [7.290714608782466, -0.007290717039032336, 3.2932396418619443], [7.423833845395143, -0.007423836320018307, 2.9810461121257146], [7.543591857377788, -0.0075435943719204795, 2.663487372503853], [7.649773107350026, -0.0076497756572866385, 2.341134957023344], [7.742186493037494, -0.007742189073778716, 2.0145690272453107], [7.8206656912127706, -0.00782066829811385, 1.6843773281052081], [7.885069457039637, -0.007885072085408742, 1.3511541301046461], [7.935281878281889, -0.007935284523388547, 1.0154991597586775], [7.971212583919186, -0.007971215241002805, 0.6780165202234854], [7.99279690679449, -0.007992799571072918, 0.33931360404710714], [7.9999960000003325, -0.007999998666678469, -1.286498119741309e-15], [7.99279690679449, -0.007992799571072918, -0.3393136040471097], [7.971212583919186, -0.007971215241002805, -0.6780165202234879], [7.935281878281889, -0.007935284523388547, -1.0154991597586802], [7.885069457039636, -0.00788507208540874, -1.3511541301046488], [7.82066569121277, -0.007820668298113849, -1.6843773281052106], [7.742186493037493, -0.007742189073778715, -2.0145690272453134], [7.6497731073500255, -0.007649775657286638, -2.341134957023346], [7.543591857377787, -0.007543594371920479, -2.6634873725038553], [7.4238338453951425, -0.007423836320018306, -2.981046112125717], [7.290714608782465, -0.007290717039032335, -3.2932396418619465], [7.144473732107512, -0.007144476113610189, -3.599506083851896], [6.985374415927305, -0.006985376744396623, -3.8992942276545364], [6.813703003086559, -0.0068137052743317975, -4.19206452230278], [6.6297684633652105, -0.006629770673298643, -4.4772900473733985], [6.4339018374025905, -0.006433903982046833, -4.754457461324804], [6.22645564089901, -0.006226457716394188, -5.023067925395911], [6.007803230167104, -0.006007805232777795, -5.282638001403274], [5.778338130174769, -0.005778340056296727, -5.5327005218206535], [5.538473326289082, -0.005538475172455721, -5.772805430575077], [5.288640520995888, -0.005288642283884526, -6.002520593046151], [5.0292893569328045, -0.005029291033370639, -6.2214325738108025], [4.760886607633999, -0.0047608881946038205, -6.429147380733686], [4.483915337443233, -0.004483916832088855, -6.6252911740640625], [4.198874032107111, -0.004198875431738508, -6.809510939262942], [3.906275701613292, -0.003906277003711444, -6.981475122349541], [3.6066469568883583, -0.0036066481591097827, -7.140874226623585], [3.3005270620170486, -0.003300528162198018, -7.287421369689484], [2.9884669636886705, -0.002988467959849108, -7.420852799779865], [2.6710282996174657, -0.002671029189964507, -7.540928370449204], [2.3487823877215397, -0.002348783170652761, -7.647431972783197], [2.0223091978796126, -0.0020223098719859152, -7.740171924346014], [1.692196308116194, -0.0016921968721843382, -7.818981314165398], [1.3590378470938118, -0.0013590383001086026, -7.883718303134727], [1.0234334248155752, -0.001023433765961688, -7.9342663792913815], [0.6859870534625586, -0.0006859872821260076, -7.970534567511968], [0.3473060603082616, -0.0003473061760775042, -7.9924575932469955], [0.007999994666650068, -7.99999733332776e-06, -7.9999960000003325]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.999993333334667e-07, 9.999996666667112e-10, 0.0009999995000000417], [9.963143369977144e-07, 8.577533771146516e-08, 0.0009999995000000417], [9.854554395168197e-07, 1.6993305562315624e-07, 0.0009999995000000417], [9.675008297255515e-07, 2.528671808421977e-07, 0.0009999995000000417], [9.425797887061533e-07, 3.339805512142506e-07, 0.0009999995000000417], [9.108717589077281e-07, 4.1268911482016674e-07, 0.0009999995000000417], [8.726050520817326e-07, 4.884261354065198e-07, 0.0009999995000000417], [8.280552053370142e-07, 5.606462731357325e-07, 0.0009999995000000417], [7.775429971515191e-07, 6.288295112726056e-07, 0.0009999995000000417], [7.214321376262555e-07, 6.924849005333782e-07, 0.0009999995000000417], [6.601266496127026e-07, 7.511540941363626e-07, 0.0009999995000000417], [5.940679595706954e-07, 8.04414648100233e-07, 0.0009999995000000417], [5.237317191038905e-07, 8.518830630263725e-07, 0.0009999995000000417], [4.4962438005915215e-07, 8.932175454631051e-07, 0.0009999995000000417], [3.7227954785064977e-07, 9.281204689687794e-07, 0.0009999995000000417], [2.9225413926633534e-07, 9.563405171529671e-07, 0.0009999995000000417], [2.1012437242228405e-07, 9.776744932649374e-07, 0.0009999995000000417], [1.2648161773898822e-07, 9.919687832995752e-07, 0.0009999995000000417], [4.192813981439945e-08, 9.991204620857365e-07, 0.0009999995000000417], [-4.2927239145895176e-08, 9.990780343927207e-07, 0.0009999995000000417], [-1.274735231161543e-07, 9.918418057185663e-07, 0.0009999995000000417], [-2.1110194169042405e-07, 9.774638800903306e-07, 0.0009999995000000417], [-2.93210333497039e-07, 9.560477848921916e-07, 0.0009999995000000417], [-3.7320748202517166e-07, 9.277477254227801e-07, 0.0009999995000000417], [-4.505173726435728e-07, 8.927674745492487e-07, 0.0009999995000000417], [-5.245833401590972e-07, 8.513589054530622e-07, 0.0009999995000000417], [-5.948720770507704e-07, 8.038201780323839e-07, 0.0009999995000000417], [-6.608774735183485e-07, 7.504935920197559e-07, 0.0009999995000000417], [-7.221242616953353e-07, 6.917631222735698e-07, 0.0009999995000000417], [-7.781714377865202e-07, 6.280516539903156e-07, 0.0009999995000000417], [-8.286154374891405e-07, 5.598179377452918e-07, 0.0009999995000000417], [-8.73093041833245e-07, 4.87553286286825e-07, 0.0009999995000000417], [-9.112839925179252e-07, 4.1177803686853077e-07, 0.0009999995000000417], [-9.429132979118489e-07, 3.3303780459237927e-07, 0.0009999995000000417], [-9.677532131138746e-07, 2.518995537401421e-07, 0.0009999995000000417], [-9.856248798164422e-07, 1.6894751538136083e-07, 0.0009999995000000417], [-9.963996141640031e-07, 8.477898065285393e-08, 0.0009999995000000417], [-9.999998333333416e-07, -7.657136121664397e-22, 0.0009999995000000417], [-9.96399614164003e-07, -8.477898065285546e-08, 0.0009999995000000417], [-9.85624879816442e-07, -1.6894751538136234e-07, 0.0009999995000000417], [-9.677532131138743e-07, -2.5189955374014363e-07, 0.0009999995000000417], [-9.429132979118485e-07, -3.3303780459238075e-07, 0.0009999995000000417], [-9.112839925179246e-07, -4.117780368685322e-07, 0.0009999995000000417], [-8.730930418332442e-07, -4.875532862868264e-07, 0.0009999995000000417], [-8.286154374891397e-07, -5.59817937745293e-07, 0.0009999995000000417], [-7.781714377865192e-07, -6.280516539903169e-07, 0.0009999995000000417], [-7.221242616953344e-07, -6.917631222735709e-07, 0.0009999995000000417], [-6.608774735183473e-07, -7.504935920197568e-07, 0.0009999995000000417], [-5.948720770507692e-07, -8.038201780323848e-07, 0.0009999995000000417], [-5.24583340159096e-07, -8.513589054530629e-07, 0.0009999995000000417], [-4.5051737264357143e-07, -8.927674745492493e-07, 0.0009999995000000417], [-3.732074820251701e-07, -9.277477254227808e-07, 0.0009999995000000417], [-2.9321033349703714e-07, -9.560477848921922e-07, 0.0009999995000000417], [-2.111019416904219e-07, -9.77463880090331e-07, 0.0009999995000000417], [-1.274735231161519e-07, -9.918418057185667e-07, 0.0009999995000000417], [-4.292723914589254e-08, -9.990780343927207e-07, 0.0009999995000000417], [4.192813981440232e-08, -9.991204620857362e-07, 0.0009999995000000417], [1.264816177389913e-07, -9.91968783299575e-07, 0.0009999995000000417], [2.1012437242228728e-07, -9.776744932649368e-07, 0.0009999995000000417], [2.922541392663387e-07, -9.56340517152966e-07, 0.0009999995000000417], [3.7227954785065316e-07, -9.28120468968778e-07, 0.0009999995000000417], [4.496243800591557e-07, -8.932175454631034e-07, 0.0009999995000000417], [5.237317191038941e-07, -8.518830630263704e-07, 0.0009999995000000417], [5.940679595706989e-07, -8.044146481002304e-07, 0.0009999995000000417], [6.601266496127061e-07, -7.511540941363595e-07, 0.0009999995000000417], [7.21432137626259e-07, -6.924849005333746e-07, 0.0009999995000000417], [7.775429971515224e-07, -6.288295112726016e-07, 0.0009999995000000417], [8.280552053370172e-07, -5.60646273135728e-07, 0.0009999995000000417], [8.726050520817353e-07, -4.884261354065148e-07, 0.0009999995000000417], [9.108717589077306e-07, -4.126891148201615e-07, 0.0009999995000000417], [9.425797887061552e-07, -3.339805512142451e-07, 0.0009999995000000417], [9.67500829725553e-07, -2.528671808421919e-07, 0.0009999995000000417], [9.85455439516821e-07, -1.6993305562315015e-07, 0.0009999995000000417], [9.96314336997715e-07, -8.57753377114588e-08, 0.0009999995000000417], [9.999993333334667e-07, -9.999996666601847e-10, 0.0009999995000000417]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0007074598924439701, 7.074601282640285e-07, 0.0007067531394223398], [0.0007048529035946302, 6.068265164679135e-05, 0.0007067531394223398], [0.0006971706640292442, 0.00012022090140108486, 0.0007067531394223398], [0.0006844684892493253, 0.0001788935078235458, 0.0007067531394223398], [0.0006668378404963867, 0.0002362780023590483, 0.0007067531394223398], [0.0006444056661908027, 0.00029196119142422774, 0.0007067531394223398], [0.0006173334878473837, 0.0003455421315828954, 0.0007067531394223398], [0.0005858162370494735, 0.0003966350165150094, 0.0007067531394223398], [0.0005500808518558703, 0.0004448719549917558, 0.0007067531394223398], [0.0005103846427470546, 0.0004899056198540983, 0.0007067531394223398], [0.0004670134398766318, 0.0005314117489209873, 0.0007067531394223398], [0.00042027953496859353, 0.0005690914798195889, 0.0007067531394223398], [0.0003705194326796396, 0.0006026735019257315, 0.0007067531394223398], [0.00031809142761774384, 0.000631916009919651, 0.0007067531394223398], [0.0002633730244634917, 0.0006566084448905755, 0.0007067531394223398], [0.00020675821977045225, 0.0006765730104534323, 0.0007067531394223398], [0.00014865466501681596, 0.0006916659529609687, 0.0007067531394223398], [8.94807313355729e-05, 0.0007017785965931974, 0.0007067531394223398], [2.966249705846486e-05, 0.0007068381258710677, 0.0007067531394223398], [-3.036932023528102e-05, 0.0007068081099599196, 0.0007067531394223398], [-9.01824650748398e-05, 0.0007016887649875064, 0.0007067531394223398], [-0.00014934625652717173, 0.0006915169524877803, 0.0007067531394223398], [-0.00020743468928904099, 0.0006763659139816449, 0.0007067531394223398], [-0.00026402950111244504, 0.0006563447436058128, 0.0007067531394223398], [-0.0003187231844766425, 0.0006315976025870704, 0.0007067531394223398], [-0.0003711219208214179, 0.0006023026812180799, 0.0007067531394223398], [-0.0004208484162138138, 0.0005686709158089512, 0.0007067531394223398], [-0.00046754461803028317, 0.0005309444698530944, 0.0007067531394223398], [-0.0005108742930929572, 0.0004893949903436262, 0.0007067531394223398], [-0.0005505254486963136, 0.00044432165179562145, 0.0007067531394223398], [-0.0005862125790917884, 0.0003960490020581045, 0.0007067531394223398], [-0.000617678721254658, 0.00034492462542688566, 0.0007067531394223398], [-0.0006446973051307605, 0.0002913166398848543, 0.0007067531394223398], [-0.0006670737850404735, 0.00023561104649070014, 0.0007067531394223398], [-0.0006846470404931171, 0.0001782089500016279, 0.0007067531394223398], [-0.0006972905363253056, 0.00011952367074280474, 0.0007067531394223398], [-0.0007049132338097408, 5.997776851934848e-05, 0.0007067531394223398], [-0.0007074602461740637, -5.417120308474348e-19, 0.0007067531394223398], [-0.0007049132338097407, -5.9977768519349564e-05, 0.0007067531394223398], [-0.0006972905363253055, -0.00011952367074280581, 0.0007067531394223398], [-0.0006846470404931169, -0.00017820895000162897, 0.0007067531394223398], [-0.0006670737850404732, -0.00023561104649070117, 0.0007067531394223398], [-0.00064469730513076, -0.0002913166398848553, 0.0007067531394223398], [-0.0006176787212546574, -0.00034492462542688664, 0.0007067531394223398], [-0.0005862125790917879, -0.00039604900205810536, 0.0007067531394223398], [-0.0005505254486963128, -0.0004443216517956224, 0.0007067531394223398], [-0.0005108742930929565, -0.0004893949903436271, 0.0007067531394223398], [-0.0004675446180302823, -0.000530944469853095, 0.0007067531394223398], [-0.0004208484162138129, -0.0005686709158089519, 0.0007067531394223398], [-0.00037112192082141703, -0.0006023026812180804, 0.0007067531394223398], [-0.0003187231844766415, -0.0006315976025870709, 0.0007067531394223398], [-0.0002640295011124439, -0.0006563447436058132, 0.0007067531394223398], [-0.00020743468928903968, -0.0006763659139816452, 0.0007067531394223398], [-0.0001493462565271702, -0.0006915169524877806, 0.0007067531394223398], [-9.01824650748381e-05, -0.0007016887649875067, 0.0007067531394223398], [-3.0369320235279158e-05, -0.0007068081099599196, 0.0007067531394223398], [2.9662497058466884e-05, -0.0007068381258710676, 0.0007067531394223398], [8.948073133557507e-05, -0.0007017785965931973, 0.0007067531394223398], [0.00014865466501681824, -0.0006916659529609682, 0.0007067531394223398], [0.00020675821977045463, -0.0006765730104534315, 0.0007067531394223398], [0.00026337302446349407, -0.0006566084448905745, 0.0007067531394223398], [0.00031809142761774633, -0.0006319160099196497, 0.0007067531394223398], [0.0003705194326796422, -0.00060267350192573, 0.0007067531394223398], [0.00042027953496859597, -0.000569091479819587, 0.0007067531394223398], [0.00046701343987663437, -0.0005314117489209851, 0.0007067531394223398], [0.000510384642747057, -0.0004899056198540958, 0.0007067531394223398], [0.0005500808518558727, -0.00044487195499175294, 0.0007067531394223398], [0.0005858162370494757, -0.00039663501651500627, 0.0007067531394223398], [0.0006173334878473856, -0.00034554213158289194, 0.0007067531394223398], [0.0006444056661908044, -0.000291961191424224, 0.0007067531394223398], [0.000666837840496388, -0.00023627800235904441, 0.0007067531394223398], [0.0006844684892493264, -0.0001788935078235417, 0.0007067531394223398], [0.000697170664029245, -0.00012022090140108055, 0.0007067531394223398], [0.0007048529035946305, -6.0682651646786864e-05, 0.0007067531394223398], [0.0007074598924439701, -7.074601282594114e-07, 0.0007067531394223398]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0009999995000000417, 9.999998333333416e-07, 6.123233995736766e-20], [0.0009963145030501234, 8.577535200735643e-05, 6.123233995736766e-20], [0.0009854556037594121, 0.00016993308394533548, 6.123233995736766e-20], [0.0009675009909757085, 0.00025286722298673275, 6.123233995736766e-20], [0.0009425799458028031, 0.0003339806068776823, 6.123233995736766e-20], [0.0009108719107197057, 0.0004126891836016939, 6.123233995736766e-20], [0.0008726051975159249, 0.0004884262168108851, 6.123233995736766e-20], [0.0008280553433462312, 0.0005606463665767889, 6.123233995736766e-20], [0.0007775431267420338, 0.0006288296160775363, 6.123233995736766e-20], [0.0007214322578649591, 0.0006924850159475417, 6.123233995736766e-20], [0.0006601267596338236, 0.0007511542193287262, 6.123233995736766e-20], [0.0005940680585820335, 0.0008044147821693567, 6.123233995736766e-20], [0.0005237318063925205, 0.0008518832050068996, 6.123233995736766e-20], [0.00044962445499655755, 0.0008932176943327134, 6.123233995736766e-20], [0.0003722796098972483, 0.0009281206236555423, 6.123233995736766e-20], [0.0002922541879753642, 0.0009563406765430719, 6.123233995736766e-20], [0.00021012440744301686, 0.0009776746562107053, 6.123233995736766e-20], [0.0001264816388192603, 0.000991968948627725, 6.123233995736766e-20], [4.192814680242357e-05, 0.0009991206286058328, 6.123233995736766e-20], [-4.292724630043587e-05, 0.0009990782009057458, 6.123233995736766e-20], [-0.00012747354436174396, 0.0009918419710255532, 6.123233995736766e-20], [-0.0002111019768740851, 0.0009774640430009961, 6.123233995736766e-20], [-0.0002932103823654336, 0.0009560479442335077, 6.123233995736766e-20], [-0.00037320754422642593, 0.0009277478800474191, 6.123233995736766e-20], [-0.00045051744772981036, 0.0008927676233438451, 6.123233995736766e-20], [-0.0005245834275896641, 0.0008513590473462296, 6.123233995736766e-20], [-0.0005948721761961281, 0.0008038203120024292, 6.123233995736766e-20], [-0.0006608775836646069, 0.0007504937171020358, 6.123233995736766e-20], [-0.000722124382049393, 0.0006917632375674369, 6.123233995736766e-20], [-0.000778171567481775, 0.0006280517586656035, 6.123233995736766e-20], [-0.0008286155755917295, 0.0005598180310482923, 6.123233995736766e-20], [-0.0008730931873487689, 0.00048755336754571554, 6.123233995736766e-20], [-0.0009112841443986084, 0.0004117781054982116, 6.123233995736766e-20], [-0.0009429134550640836, 0.0003330378600986865, 6.123233995736766e-20], [-0.0009677533744060956, 0.00025189959572340597, 6.123233995736766e-20], [-0.0009856250440872746, 0.00016894754353928335, 6.123233995736766e-20], [-0.000996399780230625, 8.477899478268569e-05, 6.123233995736766e-20], [-0.001, -7.657137397853899e-19, 6.123233995736766e-20], [-0.0009963997802306247, -8.477899478268722e-05, 6.123233995736766e-20], [-0.0009856250440872744, -0.00016894754353928486, 6.123233995736766e-20], [-0.0009677533744060952, -0.0002518995957234075, 6.123233995736766e-20], [-0.0009429134550640832, -0.00033303786009868797, 6.123233995736766e-20], [-0.0009112841443986077, -0.000411778105498213, 6.123233995736766e-20], [-0.0008730931873487681, -0.0004875533675457169, 6.123233995736766e-20], [-0.0008286155755917287, -0.0005598180310482935, 6.123233995736766e-20], [-0.000778171567481774, -0.0006280517586656048, 6.123233995736766e-20], [-0.000722124382049392, -0.0006917632375674381, 6.123233995736766e-20], [-0.0006608775836646057, -0.0007504937171020368, 6.123233995736766e-20], [-0.0005948721761961269, -0.0008038203120024301, 6.123233995736766e-20], [-0.0005245834275896629, -0.0008513590473462303, 6.123233995736766e-20], [-0.00045051744772980895, -0.0008927676233438458, 6.123233995736766e-20], [-0.0003732075442264243, -0.0009277478800474197, 6.123233995736766e-20], [-0.00029321038236543176, -0.0009560479442335082, 6.123233995736766e-20], [-0.00021110197687408295, -0.0009774640430009966, 6.123233995736766e-20], [-0.00012747354436174155, -0.0009918419710255536, 6.123233995736766e-20], [-4.292724630043323e-05, -0.0009990782009057458, 6.123233995736766e-20], [4.192814680242643e-05, -0.0009991206286058326, 6.123233995736766e-20], [0.00012648163881926337, -0.0009919689486277247, 6.123233995736766e-20], [0.0002101244074430201, -0.0009776746562107047, 6.123233995736766e-20], [0.00029225418797536757, -0.0009563406765430709, 6.123233995736766e-20], [0.0003722796098972517, -0.0009281206236555409, 6.123233995736766e-20], [0.00044962445499656113, -0.0008932176943327116, 6.123233995736766e-20], [0.0005237318063925242, -0.0008518832050068974, 6.123233995736766e-20], [0.000594068058582037, -0.0008044147821693541, 6.123233995736766e-20], [0.0006601267596338272, -0.0007511542193287231, 6.123233995736766e-20], [0.0007214322578649626, -0.0006924850159475382, 6.123233995736766e-20], [0.000777543126742037, -0.0006288296160775323, 6.123233995736766e-20], [0.0008280553433462342, -0.0005606463665767845, 6.123233995736766e-20], [0.0008726051975159276, -0.0004884262168108803, 6.123233995736766e-20], [0.000910871910719708, -0.00041268918360168864, 6.123233995736766e-20], [0.0009425799458028049, -0.0003339806068776768, 6.123233995736766e-20], [0.0009675009909757101, -0.00025286722298672695, 6.123233995736766e-20], [0.0009854556037594132, -0.00016993308394532938, 6.123233995736766e-20], [0.0009963145030501238, -8.577535200735009e-05, 6.123233995736766e-20], [0.0009999995000000417, -9.999998333268153e-07, 6.123233995736766e-20]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0007074598924439699, 7.074601282640283e-07, -0.00070675313942234], [0.00070485290359463, 6.068265164679133e-05, -0.00070675313942234], [0.000697170664029244, 0.00012022090140108482, -0.00070675313942234], [0.0006844684892493251, 0.00017889350782354576, -0.00070675313942234], [0.0006668378404963865, 0.0002362780023590482, -0.00070675313942234], [0.0006444056661908025, 0.00029196119142422763, -0.00070675313942234], [0.0006173334878473834, 0.0003455421315828953, -0.00070675313942234], [0.0005858162370494733, 0.0003966350165150093, -0.00070675313942234], [0.0005500808518558702, 0.00044487195499175565, -0.00070675313942234], [0.0005103846427470544, 0.0004899056198540982, -0.00070675313942234], [0.0004670134398766317, 0.000531411748920987, -0.00070675313942234], [0.00042027953496859337, 0.0005690914798195887, -0.00070675313942234], [0.0003705194326796395, 0.0006026735019257313, -0.00070675313942234], [0.00031809142761774373, 0.0006319160099196508, -0.00070675313942234], [0.0002633730244634916, 0.0006566084448905753, -0.00070675313942234], [0.00020675821977045216, 0.000676573010453432, -0.00070675313942234], [0.0001486546650168159, 0.0006916659529609684, -0.00070675313942234], [8.948073133557287e-05, 0.0007017785965931972, -0.00070675313942234], [2.966249705846485e-05, 0.0007068381258710675, -0.00070675313942234], [-3.0369320235281015e-05, 0.0007068081099599194, -0.00070675313942234], [-9.018246507483978e-05, 0.0007016887649875062, -0.00070675313942234], [-0.0001493462565271717, 0.00069151695248778, -0.00070675313942234], [-0.00020743468928904093, 0.0006763659139816447, -0.00070675313942234], [-0.000264029501112445, 0.0006563447436058126, -0.00070675313942234], [-0.0003187231844766424, 0.0006315976025870702, -0.00070675313942234], [-0.00037112192082141773, 0.0006023026812180798, -0.00070675313942234], [-0.0004208484162138136, 0.0005686709158089511, -0.00070675313942234], [-0.000467544618030283, 0.0005309444698530941, -0.00070675313942234], [-0.000510874293092957, 0.0004893949903436261, -0.00070675313942234], [-0.0005505254486963133, 0.0004443216517956213, -0.00070675313942234], [-0.0005862125790917882, 0.0003960490020581044, -0.00070675313942234], [-0.0006176787212546578, 0.00034492462542688555, -0.00070675313942234], [-0.0006446973051307602, 0.0002913166398848542, -0.00070675313942234], [-0.0006670737850404733, 0.00023561104649070006, -0.00070675313942234], [-0.0006846470404931169, 0.00017820895000162786, -0.00070675313942234], [-0.0006972905363253054, 0.0001195236707428047, -0.00070675313942234], [-0.0007049132338097406, 5.997776851934846e-05, -0.00070675313942234], [-0.0007074602461740635, -5.417120308474347e-19, -0.00070675313942234], [-0.0007049132338097405, -5.9977768519349544e-05, -0.00070675313942234], [-0.0006972905363253053, -0.00011952367074280577, -0.00070675313942234], [-0.0006846470404931167, -0.00017820895000162892, -0.00070675313942234], [-0.000667073785040473, -0.0002356110464907011, -0.00070675313942234], [-0.0006446973051307598, -0.00029131663988485524, -0.00070675313942234], [-0.0006176787212546572, -0.00034492462542688653, -0.00070675313942234], [-0.0005862125790917877, -0.0003960490020581052, -0.00070675313942234], [-0.0005505254486963126, -0.0004443216517956222, -0.00070675313942234], [-0.0005108742930929563, -0.000489394990343627, -0.00070675313942234], [-0.0004675446180302822, -0.0005309444698530949, -0.00070675313942234], [-0.0004208484162138128, -0.0005686709158089516, -0.00070675313942234], [-0.0003711219208214169, -0.0006023026812180803, -0.00070675313942234], [-0.0003187231844766414, -0.0006315976025870706, -0.00070675313942234], [-0.0002640295011124438, -0.0006563447436058131, -0.00070675313942234], [-0.00020743468928903963, -0.000676365913981645, -0.00070675313942234], [-0.00014934625652717018, -0.0006915169524877804, -0.00070675313942234], [-9.018246507483807e-05, -0.0007016887649875065, -0.00070675313942234], [-3.0369320235279148e-05, -0.0007068081099599194, -0.00070675313942234], [2.9662497058466874e-05, -0.0007068381258710674, -0.00070675313942234], [8.948073133557504e-05, -0.0007017785965931971, -0.00070675313942234], [0.0001486546650168182, -0.000691665952960968, -0.00070675313942234], [0.00020675821977045455, -0.0006765730104534313, -0.00070675313942234], [0.000263373024463494, -0.0006566084448905743, -0.00070675313942234], [0.0003180914276177462, -0.0006319160099196496, -0.00070675313942234], [0.0003705194326796421, -0.0006026735019257298, -0.00070675313942234], [0.00042027953496859586, -0.0005690914798195868, -0.00070675313942234], [0.0004670134398766342, -0.0005314117489209849, -0.00070675313942234], [0.0005103846427470569, -0.0004899056198540956, -0.00070675313942234], [0.0005500808518558725, -0.00044487195499175284, -0.00070675313942234], [0.0005858162370494755, -0.00039663501651500616, -0.00070675313942234], [0.0006173334878473854, -0.00034554213158289183, -0.00070675313942234], [0.0006444056661908041, -0.0002919611914242239, -0.00070675313942234], [0.0006668378404963878, -0.00023627800235904433, -0.00070675313942234], [0.0006844684892493262, -0.00017889350782354164, -0.00070675313942234], [0.0006971706640292448, -0.00012022090140108051, -0.00070675313942234], [0.0007048529035946303, -6.0682651646786844e-05, -0.00070675313942234], [0.0007074598924439699, -7.074601282594111e-07, -0.00070675313942234]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.99999333333035e-07, 9.999996666662794e-10, -0.0009999995000000417], [9.963143369972843e-07, 8.577533771142811e-08, -0.0009999995000000417], [9.854554395163942e-07, 1.6993305562308287e-07, -0.0009999995000000417], [9.675008297251337e-07, 2.528671808420885e-07, -0.0009999995000000417], [9.425797887057464e-07, 3.339805512141064e-07, -0.0009999995000000417], [9.108717589073349e-07, 4.1268911481998855e-07, -0.0009999995000000417], [8.726050520813558e-07, 4.884261354063089e-07, -0.0009999995000000417], [8.280552053366567e-07, 5.606462731354905e-07, -0.0009999995000000417], [7.775429971511834e-07, 6.288295112723341e-07, -0.0009999995000000417], [7.21432137625944e-07, 6.924849005330792e-07, -0.0009999995000000417], [6.601266496124176e-07, 7.511540941360383e-07, -0.0009999995000000417], [5.94067959570439e-07, 8.044146480998857e-07, -0.0009999995000000417], [5.237317191036644e-07, 8.518830630260048e-07, -0.0009999995000000417], [4.49624380058958e-07, 8.932175454627195e-07, -0.0009999995000000417], [3.7227954785048905e-07, 9.281204689683788e-07, -0.0009999995000000417], [2.9225413926620913e-07, 9.563405171525542e-07, -0.0009999995000000417], [2.1012437242219334e-07, 9.776744932645154e-07, -0.0009999995000000417], [1.2648161773893362e-07, 9.919687832991468e-07, -0.0009999995000000417], [4.1928139814381354e-08, 9.991204620853051e-07, -0.0009999995000000417], [-4.292723914587664e-08, 9.990780343922894e-07, -0.0009999995000000417], [-1.2747352311609927e-07, 9.918418057181381e-07, -0.0009999995000000417], [-2.1110194169033292e-07, 9.774638800899085e-07, -0.0009999995000000417], [-2.932103334969124e-07, 9.560477848917789e-07, -0.0009999995000000417], [-3.7320748202501057e-07, 9.277477254223796e-07, -0.0009999995000000417], [-4.505173726433783e-07, 8.927674745488633e-07, -0.0009999995000000417], [-5.245833401588707e-07, 8.513589054526946e-07, -0.0009999995000000417], [-5.948720770505135e-07, 8.038201780320369e-07, -0.0009999995000000417], [-6.608774735180632e-07, 7.504935920194319e-07, -0.0009999995000000417], [-7.221242616950235e-07, 6.917631222732711e-07, -0.0009999995000000417], [-7.781714377861843e-07, 6.280516539900444e-07, -0.0009999995000000417], [-8.286154374887828e-07, 5.598179377450502e-07, -0.0009999995000000417], [-8.73093041832868e-07, 4.875532862866145e-07, -0.0009999995000000417], [-9.112839925175319e-07, 4.11778036868353e-07, -0.0009999995000000417], [-9.429132979114419e-07, 3.330378045922355e-07, -0.0009999995000000417], [-9.677532131134568e-07, 2.5189955374003336e-07, -0.0009999995000000417], [-9.856248798160166e-07, 1.6894751538128788e-07, -0.0009999995000000417], [-9.96399614163573e-07, 8.477898065281733e-08, -0.0009999995000000417], [-9.999998333329099e-07, -7.657136121661091e-22, -0.0009999995000000417], [-9.963996141635728e-07, -8.477898065281887e-08, -0.0009999995000000417], [-9.856248798160164e-07, -1.6894751538128942e-07, -0.0009999995000000417], [-9.677532131134563e-07, -2.518995537400349e-07, -0.0009999995000000417], [-9.429132979114415e-07, -3.3303780459223696e-07, -0.0009999995000000417], [-9.112839925175311e-07, -4.117780368683544e-07, -0.0009999995000000417], [-8.730930418328673e-07, -4.875532862866159e-07, -0.0009999995000000417], [-8.286154374887819e-07, -5.598179377450513e-07, -0.0009999995000000417], [-7.781714377861832e-07, -6.280516539900457e-07, -0.0009999995000000417], [-7.221242616950226e-07, -6.917631222732724e-07, -0.0009999995000000417], [-6.60877473518062e-07, -7.504935920194328e-07, -0.0009999995000000417], [-5.948720770505123e-07, -8.038201780320377e-07, -0.0009999995000000417], [-5.245833401588695e-07, -8.513589054526953e-07, -0.0009999995000000417], [-4.5051737264337693e-07, -8.927674745488639e-07, -0.0009999995000000417], [-3.7320748202500893e-07, -9.277477254223803e-07, -0.0009999995000000417], [-2.9321033349691056e-07, -9.560477848917795e-07, -0.0009999995000000417], [-2.1110194169033077e-07, -9.77463880089909e-07, -0.0009999995000000417], [-1.2747352311609686e-07, -9.918418057181386e-07, -0.0009999995000000417], [-4.292723914587401e-08, -9.990780343922894e-07, -0.0009999995000000417], [4.192813981438421e-08, -9.99120462085305e-07, -0.0009999995000000417], [1.264816177389367e-07, -9.919687832991466e-07, -0.0009999995000000417], [2.1012437242219654e-07, -9.776744932645147e-07, -0.0009999995000000417], [2.922541392662125e-07, -9.563405171525531e-07, -0.0009999995000000417], [3.7227954785049244e-07, -9.281204689683774e-07, -0.0009999995000000417], [4.496243800589616e-07, -8.932175454627178e-07, -0.0009999995000000417], [5.237317191036681e-07, -8.518830630260026e-07, -0.0009999995000000417], [5.940679595704424e-07, -8.044146480998831e-07, -0.0009999995000000417], [6.601266496124212e-07, -7.511540941360352e-07, -0.0009999995000000417], [7.214321376259475e-07, -6.924849005330756e-07, -0.0009999995000000417], [7.775429971511867e-07, -6.288295112723301e-07, -0.0009999995000000417], [8.280552053366597e-07, -5.60646273135486e-07, -0.0009999995000000417], [8.726050520813586e-07, -4.88426135406304e-07, -0.0009999995000000417], [9.108717589073372e-07, -4.126891148199833e-07, -0.0009999995000000417], [9.425797887057482e-07, -3.3398055121410094e-07, -0.0009999995000000417], [9.675008297251354e-07, -2.5286718084208273e-07, -0.0009999995000000417], [9.854554395163953e-07, -1.6993305562307678e-07, -0.0009999995000000417], [9.963143369972847e-07, -8.577533771142177e-08, -0.0009999995000000417], [9.99999333333035e-07, -9.99999666659753e-10, -0.0009999995000000417]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0020007486661669334, 2.0007493330834225e-06, 2.0007489996250833], [0.001993375909748177, 0.0001716150069262139, 2.0007489996250833], [0.0019716499706132775, 0.00033999356103802986, 2.0007489996250833], [0.0019357272850733971, 0.0005059240120700271, 2.0007489996250833], [0.001885866512253836, 0.0006682115878419119, 2.0007489996250833], [0.001822426671634637, 0.0008256877464764487, 2.0007489996250833], [0.0017458645579525266, 0.0009772185904145944, 2.0007489996250833], [0.001656731452078031, 0.0011217130309763167, 2.0007489996250833], [0.0015556691515509018, 0.0012581306446786656, 2.0007489996250833], [0.0014434053493557306, 0.0013854891647421565, 2.0007489996250833], [0.0013207483942126144, 0.0015028715538433273, 2.0007489996250833], [0.0011885814701110687, 0.0016094326071865413, 2.0007489996250833], [0.001047856236997109, 0.0017044050383500148, 2.0007489996250833], [0.0008995859784033487, 0.0017871050040853074, 2.0007489996250833], [0.0007448383053621874, 0.0018569370282892855, 2.0007489996250833], [0.0005847274691371204, 0.0019133982896937989, 2.0007489996250833], [0.0004204063381238848, 0.001956082242399824, 2.0007489996250833], [0.0002530580966912807, 0.001984681543186625, 2.0007489996250833], [8.388772573365971e-05, 0.001998990264518037, 2.0007489996250833], [-8.588667372114976e-05, 0.0019989053773112357, 2.0007489996250833], [-0.00025504265137464577, 0.001984427492791422, 2.0007489996250833], [-0.00042236220983711586, 0.001955660858090729, 2.0007489996250833], [-0.0005866405747442007, 0.0019128126056230524, 2.0007489996250833], [-0.0007466948696618623, 0.0018561912616396274, 2.0007489996250833], [-0.0009013726333166283, 0.0017862045247044093, 2.0007489996250833], [-0.0010495601178233138, 0.001703356330085214, 2.0007489996250833], [-0.0011901903081593288, 0.001608243221198292, 2.0007489996250833], [-0.0013222506051418358, 0.0015015500542335267, 2.0007489996250833], [-0.0014447901165869422, 0.0013840450668888447, 2.0007489996250833], [-0.0015569265041513803, 0.001256574346721124, 2.0007489996250833], [-0.0016578523365563978, 0.0011200557389438926, 2.0007489996250833], [-0.0017468409034478649, 0.0009754722375383652, 2.0007489996250833], [-0.0018232514480302391, 0.000823864907264713, 2.0007489996250833], [-0.001886533780797132, 0.0006663253875382029, 2.0007489996250833], [-0.0019362322411375845, 0.0005039880321455894, 2.0007489996250833], [-0.0019719889782927468, 0.00033802174139925767, 2.0007489996250833], [-0.001993546528038629, 0.0001696215455411975, 2.0007489996250833], [-0.0020007496665416834, -1.5320015095420042e-18, 2.0007489996250833], [-0.001993546528038629, -0.00016962154554120057, 2.0007489996250833], [-0.0019719889782927463, -0.00033802174139926076, 2.0007489996250833], [-0.0019362322411375838, -0.0005039880321455923, 2.0007489996250833], [-0.001886533780797131, -0.0006663253875382057, 2.0007489996250833], [-0.0018232514480302378, -0.0008238649072647157, 2.0007489996250833], [-0.0017468409034478636, -0.0009754722375383678, 2.0007489996250833], [-0.0016578523365563963, -0.001120055738943895, 2.0007489996250833], [-0.0015569265041513783, -0.0012565743467211265, 2.0007489996250833], [-0.0014447901165869402, -0.001384045066888847, 2.0007489996250833], [-0.0013222506051418332, -0.0015015500542335288, 2.0007489996250833], [-0.0011901903081593264, -0.001608243221198294, 2.0007489996250833], [-0.0010495601178233114, -0.0017033563300852155, 2.0007489996250833], [-0.0009013726333166256, -0.0017862045247044106, 2.0007489996250833], [-0.000746694869661859, -0.0018561912616396287, 2.0007489996250833], [-0.000586640574744197, -0.0019128126056230535, 2.0007489996250833], [-0.00042236220983711163, -0.0019556608580907297, 2.0007489996250833], [-0.0002550426513746409, -0.0019844274927914222, 2.0007489996250833], [-8.588667372114449e-05, -0.001998905377311236, 2.0007489996250833], [8.388772573366543e-05, -0.0019989902645180368, 2.0007489996250833], [0.00025305809669128683, -0.0019846815431866244, 2.0007489996250833], [0.00042040633812389126, -0.0019560822423998225, 2.0007489996250833], [0.0005847274691371271, -0.001913398289693797, 2.0007489996250833], [0.0007448383053621944, -0.0018569370282892827, 2.0007489996250833], [0.0008995859784033558, -0.001787105004085304, 2.0007489996250833], [0.0010478562369971162, -0.0017044050383500104, 2.0007489996250833], [0.001188581470111076, -0.001609432607186536, 2.0007489996250833], [0.0013207483942126216, -0.0015028715538433213, 2.0007489996250833], [0.0014434053493557375, -0.0013854891647421493, 2.0007489996250833], [0.0015556691515509083, -0.0012581306446786576, 2.0007489996250833], [0.0016567314520780372, -0.0011217130309763078, 2.0007489996250833], [0.001745864557952532, -0.0009772185904145846, 2.0007489996250833], [0.0018224266716346418, -0.0008256877464764381, 2.0007489996250833], [0.0018858665122538398, -0.0006682115878419009, 2.0007489996250833], [0.0019357272850734001, -0.0005059240120700154, 2.0007489996250833], [0.0019716499706132792, -0.0003399935610380176, 2.0007489996250833], [0.001993375909748178, -0.0001716150069262012, 2.0007489996250833], [0.0020007486661669334, -2.0007493330703646e-06, 2.0007489996250833]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.415450379807273, 0.0014154508516242552, 1.4140363436992465], [1.410234446866956, 0.1214108152823178, 1.4140363436992465], [1.3948642060565106, 0.24053196847822053, 1.4140363436992465], [1.3694503298655876, 0.3579211857779593, 1.4140363436992465], [1.3341758093731455, 0.47273321321986583, 1.4140363436992465], [1.2892946366312485, 0.5841413537420236, 1.4140363436992465], [1.2351299758106529, 0.6913434197644779, 1.4140363436992465], [1.1720718362767342, 0.793567509292405, 1.4140363436992465], [1.1005742643506327, 0.8900775639497553, 1.4140363436992465], [1.0211520739761695, 0.9801786689230872, 1.4140363436992465], [0.934377139833171, 1.0632220566536652, 1.4140363436992465], [0.8408742795884134, 1.1386097782490425, 1.4140363436992465], [0.741316754933789, 1.2057990089779074, 1.4140363436992465], [0.6364214238062009, 1.2643059568467416, 1.4140363436992465], [0.5269435786953309, 1.3137093461148188, 1.4140363436992465], [0.4136715082057323, 1.3536534506647044, 1.4140363436992465], [0.29742082103239453, 1.383850655386658, 1.4140363436992465], [0.1790285732196475, 1.4040835271338397, 1.4140363436992465], [0.05934724098972357, 1.4142063803365388, 1.4140363436992465], [-0.0607614174607385, 1.414146326002309, 1.4140363436992465], [-0.18043256699848578, 1.4039037965487535, 1.4140363436992465], [-0.29880452274673885, 1.3835525426899264, 1.4140363436992465], [-0.4150249545950488, 1.353239102398776, 1.4140363436992465], [-0.5282570243507244, 1.31318174576933, 1.4140363436992465], [-0.6376854113416425, 1.263668903376081, 1.4140363436992465], [-0.7425221830834519, 1.2050570894470733, 1.4140363436992465], [-0.842012468739788, 1.1377683348047591, 1.4140363436992465], [-0.935439894524089, 1.0622871480585787, 1.4140363436992465], [-1.022131741905734, 0.9791570269300102, 1.4140363436992465], [-1.1014637914791492, 0.8889765448300897, 1.4140363436992465], [-1.1728648176178955, 0.7923950408677525, 1.4140363436992465], [-1.235820701550257, 0.6901079443228415, 1.4140363436992465], [-1.289878133240369, 0.5828517672496223, 1.4140363436992465], [-1.3346478754197275, 0.4713988012662683, 1.4140363436992465], [-1.369807566266604, 0.35655155671575706, 1.4140363436992465], [-1.3951040405528552, 0.23913698423866658, 1.4140363436992465], [-1.4103551525448388, 0.12000052036508647, 1.4140363436992465], [-1.415451087532758, -1.0838303457180053e-15, 1.4140363436992465], [-1.4103551525448386, -0.12000052036508863, 1.4140363436992465], [-1.395104040552855, -0.23913698423866872, 1.4140363436992465], [-1.3698075662666036, -0.35655155671575917, 1.4140363436992465], [-1.3346478754197268, -0.4713988012662704, 1.4140363436992465], [-1.2898781332403682, -0.5828517672496243, 1.4140363436992465], [-1.2358207015502558, -0.6901079443228434, 1.4140363436992465], [-1.1728648176178946, -0.7923950408677543, 1.4140363436992465], [-1.1014637914791479, -0.8889765448300914, 1.4140363436992465], [-1.0221317419057327, -0.9791570269300117, 1.4140363436992465], [-0.9354398945240873, -1.06228714805858, 1.4140363436992465], [-0.8420124687397862, -1.1377683348047605, 1.4140363436992465], [-0.7425221830834501, -1.2050570894470745, 1.4140363436992465], [-0.6376854113416405, -1.263668903376082, 1.4140363436992465], [-0.5282570243507222, -1.3131817457693309, 1.4140363436992465], [-0.4150249545950461, -1.3532391023987766, 1.4140363436992465], [-0.2988045227467358, -1.3835525426899271, 1.4140363436992465], [-0.1804325669984823, -1.403903796548754, 1.4140363436992465], [-0.06076141746073477, -1.414146326002309, 1.4140363436992465], [0.059347240989727615, -1.4142063803365386, 1.4140363436992465], [0.17902857321965182, -1.4040835271338392, 1.4140363436992465], [0.29742082103239914, -1.3838506553866572, 1.4140363436992465], [0.41367150820573706, -1.353653450664703, 1.4140363436992465], [0.5269435786953358, -1.3137093461148168, 1.4140363436992465], [0.636421423806206, -1.2643059568467392, 1.4140363436992465], [0.7413167549337941, -1.2057990089779043, 1.4140363436992465], [0.8408742795884184, -1.1386097782490388, 1.4140363436992465], [0.934377139833176, -1.0632220566536608, 1.4140363436992465], [1.0211520739761741, -0.9801786689230821, 1.4140363436992465], [1.1005742643506373, -0.8900775639497497, 1.4140363436992465], [1.1720718362767384, -0.7935675092923987, 1.4140363436992465], [1.2351299758106566, -0.6913434197644711, 1.4140363436992465], [1.2892946366312519, -0.5841413537420163, 1.4140363436992465], [1.3341758093731482, -0.47273321321985806, 1.4140363436992465], [1.3694503298655898, -0.357921185777951, 1.4140363436992465], [1.394864206056512, -0.2405319684782119, 1.4140363436992465], [1.410234446866957, -0.1214108152823088, 1.4140363436992465], [1.415450379807273, -0.0014154508516150174, 1.4140363436992465]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.0007489996250833, 0.0020007496665416834, 1.2251060416970334e-16], [1.993376241977534, 0.1716150355287184, 1.2251060416970334e-16], [1.971650299221644, 0.33999361770362996, 1.2251060416970334e-16], [1.9357276076946488, 0.5059240963907056, 1.2251060416970334e-16], [1.885866826564958, 0.6682116992105228, 1.2251060416970334e-16], [1.8224269753724511, 0.8256878840910891, 1.2251060416970334e-16], [1.7458648489299868, 0.9772187532843783, 1.2251060416970334e-16], [1.656731728199972, 1.1217132179285103, 1.2251060416970334e-16], [1.555669410829124, 1.2581308543671308, 1.2251060416970334e-16], [1.443405589923317, 1.3854893956570442, 1.2251060416970334e-16], [1.3207486143373726, 1.502871804321949, 1.2251060416970334e-16], [1.1885816682080035, 1.6094328754253404, 1.2251060416970334e-16], [1.0478564116398354, 1.7044053224175544, 1.2251060416970334e-16], [0.8995861283343626, 1.7871053019361762, 1.2251060416970334e-16], [0.7448384295019195, 1.8569373377788263, 1.2251060416970334e-16], [0.5847275665917099, 1.913398608593551, 1.2251060416970334e-16], [0.420406408191616, 1.9560825684135688, 1.2251060416970334e-16], [0.25305813886763506, 1.9846818739669208, 1.2251060416970334e-16], [0.08388773971494896, 1.99899059768312, 1.2251060416970334e-16], [-0.08588668803559706, 1.9989057104621708, 1.2251060416970334e-16], [-0.25504269388175926, 1.9844278235293757, 1.2251060416970334e-16], [-0.4223622802308257, 1.955661184034243, 1.2251060416970334e-16], [-0.5866406725176413, 1.9128129244251906, 1.2251060416970334e-16], [-0.7466949941110217, 1.8561915710048738, 1.2251060416970334e-16], [-0.901372783545418, 1.786204822405198, 1.2251060416970334e-16], [-1.0495602927500205, 1.7033566139779688, 1.2251060416970334e-16], [-1.1901905065244034, 1.6082434892388602, 1.2251060416970334e-16], [-1.3222508255169623, 1.5015503044918983, 1.2251060416970334e-16], [-1.4447903573853231, 1.3840452975630495, 1.2251060416970334e-16], [-1.5569267636391613, 1.2565745561502062, 1.2251060416970334e-16], [-1.6578526128651527, 1.1200559256198708, 1.2251060416970334e-16], [-1.7468411945880493, 0.9754724001170904, 1.2251060416970334e-16], [-1.8232517519055158, 0.8238650445755469, 1.2251060416970334e-16], [-1.8865340952194654, 0.666325498592447, 1.2251060416970334e-16], [-1.9362325638429956, 0.5039881161436045, 1.2251060416970334e-16], [-1.9719893069576147, 0.33802179773622115, 1.2251060416970334e-16], [-1.9935468602964226, 0.1696215738114584, 1.2251060416970334e-16], [-2.00075, -1.5320017648756188e-15, 1.2251060416970334e-16], [-1.9935468602964224, -0.16962157381146145, 1.2251060416970334e-16], [-1.9719893069576142, -0.3380217977362242, 1.2251060416970334e-16], [-1.936232563842995, -0.5039881161436075, 1.2251060416970334e-16], [-1.8865340952194645, -0.6663254985924499, 1.2251060416970334e-16], [-1.8232517519055145, -0.8238650445755497, 1.2251060416970334e-16], [-1.746841194588048, -0.975472400117093, 1.2251060416970334e-16], [-1.6578526128651512, -1.1200559256198732, 1.2251060416970334e-16], [-1.5569267636391593, -1.2565745561502086, 1.2251060416970334e-16], [-1.4447903573853211, -1.3840452975630517, 1.2251060416970334e-16], [-1.3222508255169598, -1.5015503044919003, 1.2251060416970334e-16], [-1.190190506524401, -1.608243489238862, 1.2251060416970334e-16], [-1.049560292750018, -1.7033566139779703, 1.2251060416970334e-16], [-0.9013727835454153, -1.7862048224051994, 1.2251060416970334e-16], [-0.7466949941110185, -1.856191571004875, 1.2251060416970334e-16], [-0.5866406725176375, -1.9128129244251917, 1.2251060416970334e-16], [-0.42236228023082145, -1.9556611840342442, 1.2251060416970334e-16], [-0.2550426938817544, -1.9844278235293764, 1.2251060416970334e-16], [-0.08588668803559178, -1.998905710462171, 1.2251060416970334e-16], [0.08388773971495468, -1.9989905976831197, 1.2251060416970334e-16], [0.25305813886764117, -1.98468187396692, 1.2251060416970334e-16], [0.42040640819162245, -1.9560825684135674, 1.2251060416970334e-16], [0.5847275665917167, -1.913398608593549, 1.2251060416970334e-16], [0.7448384295019264, -1.8569373377788234, 1.2251060416970334e-16], [0.8995861283343697, -1.7871053019361727, 1.2251060416970334e-16], [1.0478564116398428, -1.70440532241755, 1.2251060416970334e-16], [1.1885816682080106, -1.609432875425335, 1.2251060416970334e-16], [1.3207486143373797, -1.5028718043219427, 1.2251060416970334e-16], [1.4434055899233238, -1.385489395657037, 1.2251060416970334e-16], [1.5556694108291305, -1.2581308543671228, 1.2251060416970334e-16], [1.656731728199978, -1.1217132179285014, 1.2251060416970334e-16], [1.7458648489299922, -0.9772187532843687, 1.2251060416970334e-16], [1.8224269753724558, -0.8256878840910786, 1.2251060416970334e-16], [1.8858668265649619, -0.6682116992105118, 1.2251060416970334e-16], [1.935727607694652, -0.5059240963906939, 1.2251060416970334e-16], [1.971650299221646, -0.33999361770361775, 1.2251060416970334e-16], [1.9933762419775352, -0.1716150355287057, 1.2251060416970334e-16], [2.0007489996250833, -0.0020007496665286257, 1.2251060416970334e-16]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.4154503798072726, 0.0014154508516242548, -1.4140363436992467], [1.4102344468669556, 0.12141081528231777, -1.4140363436992467], [1.3948642060565102, 0.24053196847822048, -1.4140363436992467], [1.3694503298655871, 0.35792118577795917, -1.4140363436992467], [1.334175809373145, 0.4727332132198657, -1.4140363436992467], [1.289294636631248, 0.5841413537420235, -1.4140363436992467], [1.2351299758106526, 0.6913434197644777, -1.4140363436992467], [1.1720718362767337, 0.7935675092924048, -1.4140363436992467], [1.1005742643506322, 0.8900775639497551, -1.4140363436992467], [1.021152073976169, 0.9801786689230869, -1.4140363436992467], [0.9343771398331707, 1.0632220566536648, -1.4140363436992467], [0.8408742795884131, 1.138609778249042, -1.4140363436992467], [0.7413167549337888, 1.205799008977907, -1.4140363436992467], [0.6364214238062008, 1.2643059568467412, -1.4140363436992467], [0.5269435786953307, 1.3137093461148184, -1.4140363436992467], [0.4136715082057322, 1.353653450664704, -1.4140363436992467], [0.2974208210323945, 1.3838506553866576, -1.4140363436992467], [0.17902857321964744, 1.4040835271338392, -1.4140363436992467], [0.059347240989723556, 1.4142063803365383, -1.4140363436992467], [-0.06076141746073848, 1.4141463260023086, -1.4140363436992467], [-0.18043256699848573, 1.403903796548753, -1.4140363436992467], [-0.29880452274673874, 1.383552542689926, -1.4140363436992467], [-0.4150249545950486, 1.3532391023987755, -1.4140363436992467], [-0.5282570243507243, 1.3131817457693296, -1.4140363436992467], [-0.6376854113416422, 1.2636689033760806, -1.4140363436992467], [-0.7425221830834516, 1.205057089447073, -1.4140363436992467], [-0.8420124687397876, 1.1377683348047587, -1.4140363436992467], [-0.9354398945240887, 1.0622871480585783, -1.4140363436992467], [-1.0221317419057339, 0.9791570269300099, -1.4140363436992467], [-1.101463791479149, 0.8889765448300894, -1.4140363436992467], [-1.1728648176178953, 0.7923950408677523, -1.4140363436992467], [-1.2358207015502565, 0.6901079443228413, -1.4140363436992467], [-1.2898781332403686, 0.5828517672496222, -1.4140363436992467], [-1.334647875419727, 0.47139880126626815, -1.4140363436992467], [-1.3698075662666036, 0.35655155671575695, -1.4140363436992467], [-1.3951040405528548, 0.2391369842386665, -1.4140363436992467], [-1.4103551525448383, 0.12000052036508643, -1.4140363436992467], [-1.4154510875327575, -1.083830345718005e-15, -1.4140363436992467], [-1.4103551525448383, -0.1200005203650886, -1.4140363436992467], [-1.3951040405528545, -0.23913698423866867, -1.4140363436992467], [-1.3698075662666032, -0.35655155671575905, -1.4140363436992467], [-1.3346478754197264, -0.4713988012662702, -1.4140363436992467], [-1.2898781332403677, -0.5828517672496241, -1.4140363436992467], [-1.2358207015502556, -0.6901079443228432, -1.4140363436992467], [-1.1728648176178942, -0.792395040867754, -1.4140363436992467], [-1.1014637914791474, -0.8889765448300911, -1.4140363436992467], [-1.0221317419057323, -0.9791570269300115, -1.4140363436992467], [-0.935439894524087, -1.0622871480585796, -1.4140363436992467], [-0.842012468739786, -1.13776833480476, -1.4140363436992467], [-0.7425221830834499, -1.205057089447074, -1.4140363436992467], [-0.6376854113416403, -1.2636689033760817, -1.4140363436992467], [-0.528257024350722, -1.3131817457693304, -1.4140363436992467], [-0.41502495459504596, -1.3532391023987764, -1.4140363436992467], [-0.2988045227467357, -1.3835525426899267, -1.4140363436992467], [-0.18043256699848226, -1.4039037965487535, -1.4140363436992467], [-0.060761417460734754, -1.4141463260023086, -1.4140363436992467], [0.0593472409897276, -1.4142063803365381, -1.4140363436992467], [0.17902857321965177, -1.4040835271338388, -1.4140363436992467], [0.29742082103239903, -1.3838506553866567, -1.4140363436992467], [0.41367150820573695, -1.3536534506647027, -1.4140363436992467], [0.5269435786953356, -1.3137093461148164, -1.4140363436992467], [0.6364214238062058, -1.2643059568467387, -1.4140363436992467], [0.7413167549337939, -1.2057990089779038, -1.4140363436992467], [0.8408742795884182, -1.1386097782490383, -1.4140363436992467], [0.9343771398331758, -1.0632220566536605, -1.4140363436992467], [1.021152073976174, -0.9801786689230818, -1.4140363436992467], [1.1005742643506369, -0.8900775639497495, -1.4140363436992467], [1.172071836276738, -0.7935675092923985, -1.4140363436992467], [1.2351299758106564, -0.6913434197644709, -1.4140363436992467], [1.2892946366312514, -0.584141353742016, -1.4140363436992467], [1.3341758093731477, -0.47273321321985795, -1.4140363436992467], [1.3694503298655893, -0.3579211857779509, -1.4140363436992467], [1.3948642060565115, -0.24053196847821182, -1.4140363436992467], [1.4102344468669565, -0.12141081528230876, -1.4140363436992467], [1.4154503798072726, -0.001415450851615017, -1.4140363436992467]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0020007486661660695, 2.0007493330825585e-06, -2.0007489996250833], [0.0019933759097473165, 0.00017161500692613983, -2.0007489996250833], [0.001971649970612426, 0.00033999356103788306, -2.0007489996250833], [0.0019357272850725612, 0.0005059240120698086, -2.0007489996250833], [0.0018858665122530218, 0.0006682115878416234, -2.0007489996250833], [0.0018224266716338504, 0.0008256877464760922, -2.0007489996250833], [0.0017458645579517729, 0.0009772185904141724, -2.0007489996250833], [0.001656731452077316, 0.0011217130309758325, -2.0007489996250833], [0.0015556691515502302, 0.0012581306446781224, -2.0007489996250833], [0.0014434053493551074, 0.0013854891647415585, -2.0007489996250833], [0.0013207483942120444, 0.0015028715538426786, -2.0007489996250833], [0.0011885814701105555, 0.0016094326071858464, -2.0007489996250833], [0.0010478562369966565, 0.001704405038349279, -2.0007489996250833], [0.0008995859784029604, 0.0017871050040845359, -2.0007489996250833], [0.0007448383053618658, 0.0018569370282884839, -2.0007489996250833], [0.0005847274691368679, 0.001913398289692973, -2.0007489996250833], [0.0004204063381237033, 0.001956082242398979, -2.0007489996250833], [0.00025305809669117147, 0.0019846815431857684, -2.0007489996250833], [8.38877257336235e-05, 0.001998990264517174, -2.0007489996250833], [-8.588667372111268e-05, 0.0019989053773103727, -2.0007489996250833], [-0.0002550426513745356, 0.001984427492790565, -2.0007489996250833], [-0.00042236220983693355, 0.0019556608580898844, -2.0007489996250833], [-0.0005866405747439475, 0.0019128126056222267, -2.0007489996250833], [-0.0007466948696615398, 0.0018561912616388261, -2.0007489996250833], [-0.0009013726333162392, 0.0017862045247036382, -2.0007489996250833], [-0.0010495601178228606, 0.0017033563300844787, -2.0007489996250833], [-0.0011901903081588151, 0.0016082432211975977, -2.0007489996250833], [-0.0013222506051412649, 0.0015015500542328785, -2.0007489996250833], [-0.0014447901165863186, 0.0013840450668882473, -2.0007489996250833], [-0.001556926504150708, 0.0012565743467205814, -2.0007489996250833], [-0.001657852336555682, 0.0011200557389434089, -2.0007489996250833], [-0.0017468409034471107, 0.000975472237537944, -2.0007489996250833], [-0.001823251448029452, 0.0008238649072643573, -2.0007489996250833], [-0.0018865337807963175, 0.0006663253875379152, -2.0007489996250833], [-0.0019362322411367486, 0.0005039880321453718, -2.0007489996250833], [-0.0019719889782918954, 0.00033802174139911174, -2.0007489996250833], [-0.0019935465280377686, 0.00016962154554112427, -2.0007489996250833], [-0.0020007496665408195, -1.5320015095413428e-18, -2.0007489996250833], [-0.001993546528037768, -0.00016962154554112734, -2.0007489996250833], [-0.001971988978291895, -0.0003380217413991148, -2.0007489996250833], [-0.001936232241136748, -0.0005039880321453747, -2.0007489996250833], [-0.0018865337807963166, -0.000666325387537918, -2.0007489996250833], [-0.0018232514480294505, -0.0008238649072643601, -2.0007489996250833], [-0.0017468409034471094, -0.0009754722375379467, -2.0007489996250833], [-0.0016578523365556805, -0.0011200557389434115, -2.0007489996250833], [-0.0015569265041507061, -0.001256574346720584, -2.0007489996250833], [-0.0014447901165863166, -0.0013840450668882495, -2.0007489996250833], [-0.0013222506051412625, -0.0015015500542328805, -2.0007489996250833], [-0.0011901903081588125, -0.0016082432211975996, -2.0007489996250833], [-0.0010495601178228582, -0.0017033563300844802, -2.0007489996250833], [-0.0009013726333162364, -0.0017862045247036395, -2.0007489996250833], [-0.0007466948696615367, -0.0018561912616388274, -2.0007489996250833], [-0.0005866405747439438, -0.0019128126056222278, -2.0007489996250833], [-0.00042236220983692926, -0.0019556608580898853, -2.0007489996250833], [-0.00025504265137453073, -0.0019844274927905657, -2.0007489996250833], [-8.588667372110741e-05, -0.001998905377310373, -2.0007489996250833], [8.388772573362922e-05, -0.0019989902645171738, -2.0007489996250833], [0.00025305809669117754, -0.0019846815431857675, -2.0007489996250833], [0.00042040633812370976, -0.0019560822423989777, -2.0007489996250833], [0.0005847274691368747, -0.0019133982896929707, -2.0007489996250833], [0.0007448383053618728, -0.0018569370282884808, -2.0007489996250833], [0.0008995859784029674, -0.0017871050040845324, -2.0007489996250833], [0.0010478562369966638, -0.0017044050383492747, -2.0007489996250833], [0.0011885814701105626, -0.0016094326071858412, -2.0007489996250833], [0.0013207483942120515, -0.0015028715538426723, -2.0007489996250833], [0.0014434053493551143, -0.0013854891647415513, -2.0007489996250833], [0.0015556691515502367, -0.0012581306446781144, -2.0007489996250833], [0.001656731452077322, -0.0011217130309758236, -2.0007489996250833], [0.0017458645579517783, -0.0009772185904141628, -2.0007489996250833], [0.001822426671633855, -0.0008256877464760817, -2.0007489996250833], [0.0018858665122530257, -0.0006682115878416123, -2.0007489996250833], [0.0019357272850725644, -0.000505924012069797, -2.0007489996250833], [0.001971649970612428, -0.00033999356103787086, -2.0007489996250833], [0.0019933759097473173, -0.00017161500692612711, -2.0007489996250833], [0.0020007486661660695, -2.000749333069501e-06, -2.0007489996250833]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.004000497333000533, 4.000498666500177e-06, 4.000497999750166], [0.003985755505159356, 0.00034314423851471626, 4.000497999750166], [0.003942314485787038, 0.0006798171890204366, 4.000497999750166], [0.0038704870693170683, 0.0010115951569592118, 4.000497999750166], [0.003770790444718966, 0.0013360891951326092, 4.000497999750166], [0.0036439424715103657, 0.001650962803838077, 4.000497999750166], [0.003490856510852971, 0.001953948754693782, 4.000497999750166], [0.0033126348489507253, 0.0022428654156794975, 4.000497999750166], [0.0031105607601046516, 0.0025156324598460582, 4.000497999750166], [0.002886089266573835, 0.0027702858445837796, 4.000497999750166], [0.002640836661775616, 0.003004991953592518, 4.000497999750166], [0.0023765688722625663, 0.003218060799724982, 4.000497999750166], [0.0020951887422751138, 0.0034079581936370036, 4.000497999750166], [0.001798722332426638, 0.0035733167906251517, 4.000497999750166], [0.0014893043311765242, 0.0037129459361096018, 4.000497999750166], [0.0011691626841349742, 0.0038258402388704447, 4.000497999750166], [0.0008406025518753473, 0.003911186810306382, 4.000497999750166], [0.0005059897117648223, 0.00396837111758995, 4.000497999750166], [0.00016773352332750502, 0.003996981408573987, 4.000497999750166], [-0.00017173042020315361, 0.003996811676588078, 4.000497999750166], [-0.0005099578292261753, 0.003967863143777125, 4.000497999750166], [-0.0008445133177325413, 0.003910344252301366, 4.000497999750166], [-0.0011729879391549046, 0.003824669163461212, 4.000497999750166], [-0.0014930165318416994, 0.0037114547755538315, 4.000497999750166], [-0.0018022947492606128, 0.0035715162819342687, 4.000497999750166], [-0.0020985956523064684, 0.003405861301264975, 4.000497999750166], [-0.0023797857442416064, 0.0032156826222185515, 4.000497999750166], [-0.002643840332810153, 0.0030023496148750333, 4.000497999750166], [-0.002888858108912189, 0.002767398370655416, 4.000497999750166], [-0.003113074836864974, 0.002512520641788258, 4.000497999750166], [-0.0033148760576753064, 0.0022395516599500397, 4.000497999750166], [-0.0034928087138538957, 0.0019504569217904432, 4.000497999750166], [-0.00364559161206796, 0.0016473180364925573, 4.000497999750166], [-0.003772124648296352, 0.0013323177372718132, 4.000497999750166], [-0.003871496729062055, 0.0010077241647374385, 4.000497999750166], [-0.003942992331705676, 0.0006758745352831339, 4.000497999750166], [-0.003986096656463094, 0.0003391583121017421, 4.000497999750166], [-0.004000499333250033, -3.0632373054718414e-18, 4.000497999750166], [-0.003986096656463094, -0.00033915831210174825, 4.000497999750166], [-0.003942992331705675, -0.00067587453528314, 4.000497999750166], [-0.0038714967290620537, -0.0010077241647374446, 4.000497999750166], [-0.00377212464829635, -0.001332317737271819, 4.000497999750166], [-0.003645591612067957, -0.0016473180364925627, 4.000497999750166], [-0.003492808713853893, -0.0019504569217904486, 4.000497999750166], [-0.0033148760576753034, -0.002239551659950045, 4.000497999750166], [-0.00311307483686497, -0.0025125206417882626, 4.000497999750166], [-0.002888858108912185, -0.0027673983706554203, 4.000497999750166], [-0.002643840332810148, -0.0030023496148750372, 4.000497999750166], [-0.0023797857442416017, -0.003215682622218555, 4.000497999750166], [-0.0020985956523064636, -0.003405861301264978, 4.000497999750166], [-0.0018022947492606072, -0.0035715162819342713, 4.000497999750166], [-0.0014930165318416929, -0.003711454775553834, 4.000497999750166], [-0.001172987939154897, -0.0038246691634612148, 4.000497999750166], [-0.0008445133177325327, -0.003910344252301369, 4.000497999750166], [-0.0005099578292261656, -0.003967863143777126, 4.000497999750166], [-0.00017173042020314307, -0.003996811676588079, 4.000497999750166], [0.00016773352332751646, -0.003996981408573987, 4.000497999750166], [0.0005059897117648346, -0.003968371117589949, 4.000497999750166], [0.00084060255187536, -0.003911186810306379, 4.000497999750166], [0.0011691626841349877, -0.0038258402388704404, 4.000497999750166], [0.001489304331176538, -0.003712945936109596, 4.000497999750166], [0.0017987223324266522, -0.0035733167906251448, 4.000497999750166], [0.0020951887422751285, -0.0034079581936369945, 4.000497999750166], [0.0023765688722625807, -0.0032180607997249716, 4.000497999750166], [0.0026408366617756305, -0.0030049919535925056, 4.000497999750166], [0.0028860892665738486, -0.0027702858445837653, 4.000497999750166], [0.0031105607601046646, -0.002515632459846042, 4.000497999750166], [0.0033126348489507375, -0.0022428654156794797, 4.000497999750166], [0.0034908565108529815, -0.001953948754693763, 4.000497999750166], [0.0036439424715103753, -0.001650962803838056, 4.000497999750166], [0.0037707904447189734, -0.0013360891951325873, 4.000497999750166], [0.0038704870693170744, -0.0010115951569591884, 4.000497999750166], [0.003942314485787041, -0.0006798171890204122, 4.000497999750166], [0.0039857555051593585, -0.00034314423851469094, 4.000497999750166], [0.004000497333000533, -4.000498666474069e-06, 4.000497999750166]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.830193299722102, 0.002830194243120246, 2.8273659342590705], [2.8197640408303175, 0.24276094791298877, 2.8273659342590705], [2.789031241448992, 0.48094371605504, 2.8273659342590705], [2.738216191241926, 0.7156634780480949, 2.8273659342590705], [2.6676847809057946, 0.9452301484373725, 2.8273659342590705], [2.577944867596306, 1.167990746292623, 2.8273659342590705], [2.469642618133458, 1.3823412973973728, 2.8273659342590705], [2.3435578563164188, 1.586738383568295, 2.8273659342590705], [2.200598447849409, 1.7797102559445188, 2.8273659342590705], [2.0417937633095917, 1.95986743222632, 2.8273659342590705], [1.8682872662264656, 2.125912701558409, 2.8273659342590705], [1.681328279641858, 2.2766504650182653, 2.8273659342590705], [1.4822629904348983, 2.410995344453889, 2.8273659342590705], [1.2725247561847841, 2.5279799976835635, 2.8273659342590705], [1.0536237843661984, 2.626762083784747, 2.8273659342590705], [0.827136258191694, 2.7066303283189552, 2.8273659342590705], [0.5946929873997722, 2.7670096448203547, 2.8273659342590705], [0.35796766570795935, 2.807465275671086, 2.8273659342590705], [0.11866481948238868, 2.827705922547206, 2.8273659342590705], [-0.12149246560124172, 2.8275858438946577, 2.8273659342590705], [-0.36077495153189665, 2.8071059043325195, 2.8273659342590705], [-0.5974596992369504, 2.7664135684273647, 2.8273659342590705], [-0.8298424745008085, 2.70580183888357, 2.8273659342590705], [-1.0562500192003363, 2.6257071467950537, 2.8273659342590705], [-1.2750520994988082, 2.526706209149575, 2.8273659342590705], [-1.4846732442460822, 2.4095118762129286, 2.8273659342590705], [-1.6836040890633617, 2.2749679986937092, 2.8273659342590705], [-1.8704122444301476, 2.124043351647304, 2.8273659342590705], [-2.043752609518375, 1.9578246588696766, 2.8273659342590705], [-2.202377057509602, 1.7775087680083836, 2.8273659342590705], [-2.3451434226566996, 1.584394032733447, 2.8273659342590705], [-2.4710237243792585, 1.379870964020256, 2.8273659342590705], [-2.5791115691756072, 1.1654122178593596, 2.8273659342590705], [-2.6686286770544143, 0.9425619914860459, 2.8273659342590705], [-2.7389304854927152, 0.7129249044815124, 2.8273659342590705], [-2.789510790569385, 0.4781544448065903, 2.8273659342590705], [-2.820005391855868, 0.23994106296165357, 2.8273659342590705], [-2.8301947148193416, -2.1671189794051628e-15, 2.8273659342590705], [-2.8200053918558674, -0.2399410629616579, 2.8273659342590705], [-2.7895107905693846, -0.47815444480659464, 2.8273659342590705], [-2.738930485492714, -0.7129249044815167, 2.8273659342590705], [-2.668628677054413, -0.9425619914860499, 2.8273659342590705], [-2.579111569175605, -1.1654122178593636, 2.8273659342590705], [-2.4710237243792568, -1.3798709640202598, 2.8273659342590705], [-2.3451434226566974, -1.5843940327334505, 2.8273659342590705], [-2.202377057509599, -1.7775087680083872, 2.8273659342590705], [-2.0437526095183722, -1.9578246588696797, 2.8273659342590705], [-1.8704122444301443, -2.1240433516473067, 2.8273659342590705], [-1.6836040890633583, -2.2749679986937115, 2.8273659342590705], [-1.4846732442460786, -2.409511876212931, 2.8273659342590705], [-1.2750520994988042, -2.5267062091495767, 2.8273659342590705], [-1.056250019200332, -2.6257071467950555, 2.8273659342590705], [-0.8298424745008032, -2.7058018388835716, 2.8273659342590705], [-0.5974596992369444, -2.766413568427366, 2.8273659342590705], [-0.3607749515318898, -2.8071059043325204, 2.8273659342590705], [-0.12149246560123425, -2.827585843894658, 2.8273659342590705], [0.11866481948239677, -2.8277059225472057, 2.8273659342590705], [0.357967665707968, -2.807465275671085, 2.8273659342590705], [0.5946929873997813, -2.767009644820353, 2.8273659342590705], [0.8271362581917036, -2.7066303283189526, 2.8273659342590705], [1.053623784366208, -2.626762083784743, 2.8273659342590705], [1.272524756184794, -2.5279799976835586, 2.8273659342590705], [1.4822629904349085, -2.410995344453883, 2.8273659342590705], [1.681328279641868, -2.2766504650182577, 2.8273659342590705], [1.8682872662264756, -2.1259127015584003, 2.8273659342590705], [2.0417937633096015, -1.95986743222631, 2.8273659342590705], [2.2005984478494183, -1.7797102559445075, 2.8273659342590705], [2.343557856316427, -1.5867383835682825, 2.8273659342590705], [2.4696426181334656, -1.3823412973973592, 2.8273659342590705], [2.5779448675963126, -1.1679907462926082, 2.8273659342590705], [2.6676847809058, -0.945230148437357, 2.8273659342590705], [2.73821619124193, -0.7156634780480784, 2.8273659342590705], [2.7890312414489946, -0.48094371605502273, 2.8273659342590705], [2.819764040830319, -0.24276094791297081, 2.8273659342590705], [2.830193299722102, -0.002830194243101775, 2.8273659342590705]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[4.000497999750166, 0.004000499333250033, 2.449599759994493e-16], [3.9857561694520176, 0.34314429570542937, 2.449599759994493e-16], [3.9423151428395284, 0.6798173023233146, 2.449599759994493e-16], [3.8704877143983216, 1.0115953255584242, 2.449599759994493e-16], [3.7707910731841134, 1.3360894178141678, 2.449599759994493e-16], [3.643943078834182, 1.6509630789985763, 2.449599759994493e-16], [3.4908570926624574, 1.9539490803519457, 2.449599759994493e-16], [3.312635401056598, 2.242865789490444, 2.449599759994493e-16], [3.1105612785315055, 2.5156328791181837, 2.449599759994493e-16], [2.886089747588769, 2.7702863062981407, 2.449599759994493e-16], [2.6408371019151113, 3.0049924544245687, 2.449599759994493e-16], [2.3765692683574247, 3.2180613360685113, 2.449599759994493e-16], [2.0951890914732783, 3.407958761630102, 2.449599759994493e-16], [1.7987226322137284, 3.5733173861780196, 2.449599759994493e-16], [1.4893045793939417, 3.7129465549339966, 2.449599759994493e-16], [1.1691628789954442, 3.8258408765105587, 2.449599759994493e-16], [0.8406026919757889, 3.9111874621709264, 2.449599759994493e-16], [0.5059897960964508, 3.9683717789852135, 2.449599759994493e-16], [0.1677335512830955, 3.9969820747376335, 2.449599759994493e-16], [-0.17173044882489366, 3.9968123427234357, 2.449599759994493e-16], [-0.5099579142191567, 3.9678638050877257, 2.449599759994493e-16], [-0.8445134584847773, 3.9103449040254845, 2.449599759994493e-16], [-1.1729881346529172, 3.8246698009061473, 2.449599759994493e-16], [-1.493016780677817, 3.7114553941296995, 2.449599759994493e-16], [-1.802295049643106, 3.571516877187052, 2.449599759994493e-16], [-2.0985960020724512, 3.405861868908591, 2.449599759994493e-16], [-2.37978614087261, 3.2156831581657177, 2.449599759994493e-16], [-2.64384077345026, 3.0023501152666943, 2.449599759994493e-16], [-2.8888585903885966, 2.7673988318885314, 2.449599759994493e-16], [-3.1130753557108406, 2.5125210605417467, 2.449599759994493e-16], [-3.314876610154714, 2.2395520332086933, 2.449599759994493e-16], [-3.4928092959887493, 1.9504572468666348, 2.449599759994493e-16], [-3.6455922196666326, 1.6473183110455953, 2.449599759994493e-16], [-3.7721252769838665, 1.3323179593247954, 2.449599759994493e-16], [-3.871497374311585, 1.0077243326914855, 2.449599759994493e-16], [-3.9429929888711417, 0.675874647928903, 2.449599759994493e-16], [-3.9860973208126143, 0.3391583686281341, 2.449599759994493e-16], [-4.0005, -3.063237816011452e-15, 2.449599759994493e-16], [-3.986097320812614, -0.3391583686281402, 2.449599759994493e-16], [-3.942992988871141, -0.6758746479289091, 2.449599759994493e-16], [-3.8714973743115837, -1.0077243326914915, 2.449599759994493e-16], [-3.7721252769838647, -1.3323179593248011, 2.449599759994493e-16], [-3.64559221966663, -1.647318311045601, 2.449599759994493e-16], [-3.4928092959887467, -1.9504572468666401, 2.449599759994493e-16], [-3.3148766101547107, -2.2395520332086982, 2.449599759994493e-16], [-3.1130753557108366, -2.5125210605417516, 2.449599759994493e-16], [-2.8888585903885926, -2.767398831888536, 2.449599759994493e-16], [-2.643840773450255, -3.0023501152666983, 2.449599759994493e-16], [-2.3797861408726053, -3.2156831581657213, 2.449599759994493e-16], [-2.0985960020724463, -3.405861868908594, 2.449599759994493e-16], [-1.8022950496431005, -3.5715168771870545, 2.449599759994493e-16], [-1.4930167806778105, -3.711455394129702, 2.449599759994493e-16], [-1.1729881346529096, -3.8246698009061495, 2.449599759994493e-16], [-0.8445134584847688, -3.9103449040254867, 2.449599759994493e-16], [-0.509957914219147, -3.967863805087727, 2.449599759994493e-16], [-0.17173044882488311, -3.996812342723436, 2.449599759994493e-16], [0.16773355128310694, -3.996982074737633, 2.449599759994493e-16], [0.505989796096463, -3.968371778985212, 2.449599759994493e-16], [0.8406026919758017, -3.9111874621709237, 2.449599759994493e-16], [1.1691628789954578, -3.8258408765105547, 2.449599759994493e-16], [1.4893045793939554, -3.712946554933991, 2.449599759994493e-16], [1.7987226322137426, -3.5733173861780125, 2.449599759994493e-16], [2.095189091473293, -3.407958761630093, 2.449599759994493e-16], [2.376569268357439, -3.2180613360685006, 2.449599759994493e-16], [2.6408371019151256, -3.0049924544245563, 2.449599759994493e-16], [2.8860897475887826, -2.7702863062981264, 2.449599759994493e-16], [3.1105612785315184, -2.5156328791181677, 2.449599759994493e-16], [3.31263540105661, -2.242865789490426, 2.449599759994493e-16], [3.490857092662468, -1.9539490803519264, 2.449599759994493e-16], [3.6439430788341913, -1.6509630789985554, 2.449599759994493e-16], [3.770791073184121, -1.3360894178141458, 2.449599759994493e-16], [3.870487714398328, -1.011595325558401, 2.449599759994493e-16], [3.9423151428395324, -0.6798173023232902, 2.449599759994493e-16], [3.98575616945202, -0.343144295705404, 2.449599759994493e-16], [4.000497999750166, -0.004000499333223924, 2.449599759994493e-16]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.8301932997221013, 0.0028301942431202447, -2.827365934259071], [2.8197640408303166, 0.2427609479129887, -2.827365934259071], [2.789031241448991, 0.4809437160550399, -2.827365934259071], [2.738216191241925, 0.7156634780480947, -2.827365934259071], [2.6676847809057938, 0.9452301484373723, -2.827365934259071], [2.577944867596305, 1.1679907462926225, -2.827365934259071], [2.4696426181334576, 1.3823412973973723, -2.827365934259071], [2.3435578563164183, 1.5867383835682944, -2.827365934259071], [2.2005984478494085, 1.7797102559445181, -2.827365934259071], [2.041793763309591, 1.9598674322263194, -2.827365934259071], [1.868287266226465, 2.1259127015584087, -2.827365934259071], [1.6813282796418576, 2.2766504650182644, -2.827365934259071], [1.4822629904348978, 2.4109953444538883, -2.827365934259071], [1.2725247561847837, 2.5279799976835626, -2.827365934259071], [1.053623784366198, 2.626762083784746, -2.827365934259071], [0.8271362581916938, 2.7066303283189543, -2.827365934259071], [0.594692987399772, 2.767009644820354, -2.827365934259071], [0.35796766570795924, 2.807465275671085, -2.827365934259071], [0.11866481948238863, 2.827705922547205, -2.827365934259071], [-0.12149246560124168, 2.827585843894657, -2.827365934259071], [-0.36077495153189654, 2.8071059043325186, -2.827365934259071], [-0.5974596992369503, 2.766413568427364, -2.827365934259071], [-0.8298424745008083, 2.7058018388835694, -2.827365934259071], [-1.0562500192003361, 2.625707146795053, -2.827365934259071], [-1.2750520994988077, 2.526706209149574, -2.827365934259071], [-1.4846732442460817, 2.4095118762129277, -2.827365934259071], [-1.6836040890633612, 2.2749679986937084, -2.827365934259071], [-1.8704122444301472, 2.124043351647303, -2.827365934259071], [-2.0437526095183745, 1.9578246588696762, -2.827365934259071], [-2.2023770575096013, 1.7775087680083832, -2.827365934259071], [-2.3451434226566987, 1.5843940327334465, -2.827365934259071], [-2.4710237243792577, 1.3798709640202556, -2.827365934259071], [-2.5791115691756064, 1.1654122178593593, -2.827365934259071], [-2.6686286770544134, 0.9425619914860456, -2.827365934259071], [-2.7389304854927143, 0.7129249044815121, -2.827365934259071], [-2.789510790569384, 0.47815444480659014, -2.827365934259071], [-2.820005391855867, 0.2399410629616535, -2.827365934259071], [-2.8301947148193407, -2.1671189794051624e-15, -2.827365934259071], [-2.8200053918558665, -0.23994106296165782, -2.827365934259071], [-2.7895107905693837, -0.47815444480659447, -2.827365934259071], [-2.7389304854927135, -0.7129249044815165, -2.827365934259071], [-2.668628677054412, -0.9425619914860497, -2.827365934259071], [-2.5791115691756046, -1.1654122178593633, -2.827365934259071], [-2.471023724379256, -1.3798709640202593, -2.827365934259071], [-2.3451434226566965, -1.58439403273345, -2.827365934259071], [-2.2023770575095987, -1.7775087680083865, -2.827365934259071], [-2.043752609518372, -1.9578246588696793, -2.827365934259071], [-1.8704122444301436, -2.1240433516473063, -2.827365934259071], [-1.6836040890633577, -2.274967998693711, -2.827365934259071], [-1.4846732442460782, -2.40951187621293, -2.827365934259071], [-1.2750520994988037, -2.5267062091495758, -2.827365934259071], [-1.0562500192003315, -2.6257071467950546, -2.827365934259071], [-0.829842474500803, -2.7058018388835707, -2.827365934259071], [-0.5974596992369442, -2.766413568427365, -2.827365934259071], [-0.3607749515318897, -2.8071059043325195, -2.827365934259071], [-0.12149246560123421, -2.8275858438946573, -2.827365934259071], [0.11866481948239672, -2.8277059225472048, -2.827365934259071], [0.3579676657079679, -2.8074652756710843, -2.827365934259071], [0.5946929873997812, -2.767009644820352, -2.827365934259071], [0.8271362581917033, -2.7066303283189517, -2.827365934259071], [1.0536237843662077, -2.626762083784742, -2.827365934259071], [1.2725247561847937, -2.5279799976835577, -2.827365934259071], [1.482262990434908, -2.410995344453882, -2.827365934259071], [1.6813282796418676, -2.276650465018257, -2.827365934259071], [1.868287266226475, -2.1259127015584, -2.827365934259071], [2.0417937633096006, -1.9598674322263094, -2.827365934259071], [2.2005984478494174, -1.7797102559445068, -2.827365934259071], [2.3435578563164268, -1.586738383568282, -2.827365934259071], [2.469642618133465, -1.3823412973973588, -2.827365934259071], [2.5779448675963117, -1.1679907462926078, -2.827365934259071], [2.667684780905799, -0.9452301484373568, -2.827365934259071], [2.7382161912419294, -0.7156634780480782, -2.827365934259071], [2.7890312414489937, -0.48094371605502256, -2.827365934259071], [2.819764040830318, -0.24276094791297073, -2.827365934259071], [2.8301932997221013, -0.0028301942431017742, -2.827365934259071]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.004000497332998806, 4.00049866649845e-06, -4.000497999750166], [0.003985755505157635, 0.00034314423851456816, -4.000497999750166], [0.003942314485785335, 0.0006798171890201431, -4.000497999750166], [0.0038704870693153973, 0.001011595156958775, -4.000497999750166], [0.003770790444717338, 0.0013360891951320324, -4.000497999750166], [0.003643942471508793, 0.0016509628038373643, -4.000497999750166], [0.003490856510851464, 0.0019539487546929384, -4.000497999750166], [0.003312634848949295, 0.0022428654156785295, -4.000497999750166], [0.003110560760103309, 0.0025156324598449723, -4.000497999750166], [0.0028860892665725888, 0.0027702858445825835, -4.000497999750166], [0.002640836661774476, 0.0030049919535912206, -4.000497999750166], [0.0023765688722615403, 0.003218060799723593, -4.000497999750166], [0.002095188742274209, 0.003407958193635532, -4.000497999750166], [0.0017987223324258616, 0.003573316790623609, -4.000497999750166], [0.0014893043311758813, 0.003712945936107999, -4.000497999750166], [0.0011691626841344694, 0.003825840238868793, -4.000497999750166], [0.0008406025518749843, 0.003911186810304694, -4.000497999750166], [0.0005059897117646038, 0.003968371117588237, -4.000497999750166], [0.0001677335233274326, 0.003996981408572262, -4.000497999750166], [-0.00017173042020307948, 0.003996811676586353, -4.000497999750166], [-0.0005099578292259551, 0.003967863143775412, -4.000497999750166], [-0.0008445133177321767, 0.003910344252299678, -4.000497999750166], [-0.001172987939154398, 0.003824669163459561, -4.000497999750166], [-0.0014930165318410547, 0.003711454775552229, -4.000497999750166], [-0.0018022947492598348, 0.003571516281932727, -4.000497999750166], [-0.0020985956523055624, 0.003405861301263504, -4.000497999750166], [-0.002379785744240579, 0.0032156826222171633, -4.000497999750166], [-0.0026438403328090114, 0.003002349614873737, -4.000497999750166], [-0.0028888581089109417, 0.002767398370654221, -4.000497999750166], [-0.00311307483686363, 0.0025125206417871727, -4.000497999750166], [-0.0033148760576738752, 0.002239551659949073, -4.000497999750166], [-0.003492808713852388, 0.0019504569217896012, -4.000497999750166], [-0.003645591612066386, 0.001647318036491846, -4.000497999750166], [-0.0037721246482947234, 0.001332317737271238, -4.000497999750166], [-0.0038714967290603836, 0.0010077241647370035, -4.000497999750166], [-0.003942992331703974, 0.0006758745352828422, -4.000497999750166], [-0.003986096656461373, 0.0003391583121015957, -4.000497999750166], [-0.004000499333248306, -3.063237305470519e-18, -4.000497999750166], [-0.003986096656461373, -0.0003391583121016018, -4.000497999750166], [-0.0039429923317039735, -0.0006758745352828482, -4.000497999750166], [-0.0038714967290603823, -0.0010077241647370094, -4.000497999750166], [-0.0037721246482947217, -0.0013323177372712438, -4.000497999750166], [-0.0036455916120663834, -0.0016473180364918517, -4.000497999750166], [-0.003492808713852385, -0.0019504569217896066, -4.000497999750166], [-0.003314876057673872, -0.002239551659949078, -4.000497999750166], [-0.003113074836863626, -0.002512520641787178, -4.000497999750166], [-0.002888858108910938, -0.0027673983706542255, -4.000497999750166], [-0.0026438403328090066, -0.0030023496148737414, -4.000497999750166], [-0.0023797857442405743, -0.0032156826222171668, -4.000497999750166], [-0.0020985956523055576, -0.0034058613012635072, -4.000497999750166], [-0.0018022947492598292, -0.0035715162819327296, -4.000497999750166], [-0.0014930165318410482, -0.0037114547755522317, -4.000497999750166], [-0.0011729879391543907, -0.0038246691634595633, -4.000497999750166], [-0.0008445133177321681, -0.003910344252299681, -4.000497999750166], [-0.0005099578292259454, -0.003967863143775413, -4.000497999750166], [-0.00017173042020306894, -0.003996811676586353, -4.000497999750166], [0.00016773352332744403, -0.003996981408572261, -4.000497999750166], [0.0005059897117646161, -0.003968371117588235, -4.000497999750166], [0.0008406025518749972, -0.003911186810304691, -4.000497999750166], [0.0011691626841344829, -0.003825840238868789, -4.000497999750166], [0.001489304331175895, -0.003712945936107993, -4.000497999750166], [0.0017987223324258757, -0.003573316790623602, -4.000497999750166], [0.002095188742274224, -0.0034079581936355234, -4.000497999750166], [0.0023765688722615546, -0.003218060799723582, -4.000497999750166], [0.0026408366617744904, -0.0030049919535912084, -4.000497999750166], [0.0028860892665726026, -0.002770285844582569, -4.000497999750166], [0.003110560760103322, -0.0025156324598449562, -4.000497999750166], [0.003312634848949307, -0.0022428654156785117, -4.000497999750166], [0.0034908565108514745, -0.001953948754692919, -4.000497999750166], [0.003643942471508802, -0.0016509628038373432, -4.000497999750166], [0.003770790444717346, -0.0013360891951320105, -4.000497999750166], [0.0038704870693154034, -0.0010115951569587517, -4.000497999750166], [0.00394231448578534, -0.0006798171890201187, -4.000497999750166], [0.003985755505157638, -0.0003431442385145428, -4.000497999750166], [0.004000497332998806, -4.000498666472342e-06, -4.000497999750166]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.006000245999834133, 6.000247999916933e-06, 6.00024699987525], [0.005978135100570535, 0.0005146734701032187, 6.00024699987525], [0.005912979000960798, 0.0010196408170028432, 6.00024699987525], [0.0058052468535607395, 0.0015172663018483965, 6.00024699987525], [0.005655714377184096, 0.002003966802423307, 6.00024699987525], [0.005465458271386095, 0.0024762378611997054, 6.00024699987525], [0.005235848463753415, 0.0029306789189729697, 6.00024699987525], [0.004968538245823419, 0.0033640178003826785, 6.00024699987525], [0.004665452368658402, 0.003773134275013451, 6.00024699987525], [0.004328773183791939, 0.004155082524425402, 6.00024699987525], [0.0039609249293386176, 0.004507112353341709, 6.00024699987525], [0.0035645562744140644, 0.004826688992263423, 6.00024699987525], [0.0031425212475531183, 0.005111511348923991, 6.00024699987525], [0.0026978586864499277, 0.005359528577164996, 6.00024699987525], [0.002233770356990861, 0.005568954843929918, 6.00024699987525], [0.001753597899132828, 0.005738282188047091, 6.00024699987525], [0.0012607987656268096, 0.005866291378212941, 6.00024699987525], [0.0007589213268383641, 0.0059520606919932755, 6.00024699987525], [0.0002515793209213503, 0.005994972552629939, 6.00024699987525], [-0.0002575741666851575, 0.005994717975864921, 6.00024699987525], [-0.0007648730070777047, 0.0059512987947628266, 6.00024699987525], [-0.0012666644256279667, 0.005865027646512005, 6.00024699987525], [-0.001759335303565608, 0.005736525721299373, 6.00024699987525], [-0.0022393381940215363, 0.0055667182894680355, 6.00024699987525], [-0.0027032168652045977, 0.005356828039164129, 6.00024699987525], [-0.0031476311867896234, 0.005108366272444736, 6.00024699987525], [-0.0035693811803238847, 0.004823122023238811, 6.00024699987525], [-0.00396543006047847, 0.00450314917551654, 6.00024699987525], [-0.004332926101237435, 0.004150751674421987, 6.00024699987525], [-0.0046692231695785675, 0.003768466936855391, 6.00024699987525], [-0.004971899778794214, 0.003359047580956187, 6.00024699987525], [-0.005238776524259928, 0.0029254416060425217, 6.00024699987525], [-0.005467931776105681, 0.0024707711657204015, 6.00024699987525], [-0.005657715515795572, 0.0019983100870054234, 6.00024699987525], [-0.005806761216986526, 0.0015114602973292878, 6.00024699987525], [-0.005913995685118606, 0.0010137273291670101, 6.00024699987525], [-0.005978646784887558, 0.0005086950786622868, 6.00024699987525], [-0.006000248999958383, -4.594473101401679e-18, 6.00024699987525], [-0.005978646784887558, -0.000508695078662296, 6.00024699987525], [-0.005913995685118605, -0.0010137273291670195, 6.00024699987525], [-0.005806761216986523, -0.0015114602973292967, 6.00024699987525], [-0.005657715515795569, -0.001998310087005432, 6.00024699987525], [-0.005467931776105676, -0.00247077116572041, 6.00024699987525], [-0.005238776524259923, -0.0029254416060425295, 6.00024699987525], [-0.00497189977879421, -0.003359047580956194, 6.00024699987525], [-0.004669223169578561, -0.003768466936855398, 6.00024699987525], [-0.004332926101237429, -0.004150751674421993, 6.00024699987525], [-0.003965430060478462, -0.004503149175516546, 6.00024699987525], [-0.003569381180323877, -0.004823122023238816, 6.00024699987525], [-0.0031476311867896156, -0.00510836627244474, 6.00024699987525], [-0.0027032168652045894, -0.005356828039164133, 6.00024699987525], [-0.0022393381940215267, -0.00556671828946804, 6.00024699987525], [-0.0017593353035655968, -0.005736525721299376, 6.00024699987525], [-0.0012666644256279537, -0.005865027646512008, 6.00024699987525], [-0.0007648730070776902, -0.00595129879476283, 6.00024699987525], [-0.00025757416668514165, -0.005994717975864922, 6.00024699987525], [0.00025157932092136743, -0.005994972552629939, 6.00024699987525], [0.0007589213268383824, -0.005952060691993273, 6.00024699987525], [0.0012607987656268291, -0.005866291378212937, 6.00024699987525], [0.0017535978991328487, -0.005738282188047085, 6.00024699987525], [0.0022337703569908812, -0.0055689548439299096, 6.00024699987525], [0.002697858686449949, -0.005359528577164986, 6.00024699987525], [0.0031425212475531404, -0.005111511348923977, 6.00024699987525], [0.0035645562744140856, -0.004826688992263407, 6.00024699987525], [0.003960924929338639, -0.004507112353341691, 6.00024699987525], [0.00432877318379196, -0.004155082524425381, 6.00024699987525], [0.004665452368658422, -0.0037731342750134266, 6.00024699987525], [0.004968538245823438, -0.0033640178003826516, 6.00024699987525], [0.005235848463753432, -0.0029306789189729406, 6.00024699987525], [0.005465458271386109, -0.0024762378611996737, 6.00024699987525], [0.005655714377184107, -0.002003966802423274, 6.00024699987525], [0.005805246853560749, -0.0015172663018483618, 6.00024699987525], [0.005912979000960804, -0.0010196408170028066, 6.00024699987525], [0.005978135100570539, -0.0005146734701031806, 6.00024699987525], [0.006000245999834133, -6.0002479998777725e-06, 6.00024699987525]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[4.244936219636931, 0.004244937634616237, 4.240695524818895], [4.229293634793679, 0.36411108054365976, 4.240695524818895], [4.183198276841472, 0.7213554636318594, 4.240695524818895], [4.106982052618264, 1.0734057703182305, 4.240695524818895], [4.001193752438443, 1.4177270836548794, 4.240695524818895], [3.8665950985613637, 1.7518401388432223, 4.240695524818895], [3.7041552604562638, 2.073339175030268, 4.240695524818895], [3.515043876356103, 2.3799092578441847, 4.240695524818895], [3.300622631348186, 2.669342947939282, 4.240695524818895], [3.062435452643014, 2.9395561955295526, 4.240695524818895], [2.80219739261976, 3.1886033464631534, 4.240695524818895], [2.521782279695303, 3.4146911517874883, 4.240695524818895], [2.223209225936007, 3.6161916799298703, 4.240695524818895], [1.9086280885633673, 3.7916540385203854, 4.240695524818895], [1.5803039900370657, 3.9398148214546747, 4.240695524818895], [1.2406010081776557, 4.059607205973206, 4.240695524818895], [0.8919651537671499, 4.150168634254052, 4.240695524818895], [0.5369067581962713, 4.2108470242083325, 4.240695524818895], [0.17798239797505375, 4.241205464757873, 4.240695524818895], [-0.18222351374174492, 4.241025361787006, 4.240695524818895], [-0.5411173360653075, 4.210308012116285, 4.240695524818895], [-0.8961148757271621, 4.149274594164803, 4.240695524818895], [-1.2446599944065682, 4.058364575368365, 4.240695524818895], [-1.5842430140499484, 3.9382325478207774, 4.240695524818895], [-1.912418787655974, 3.7897435149230687, 4.240695524818895], [-2.2268243054087127, 3.613966662978784, 4.240695524818895], [-2.525195709386936, 3.412167662582659, 4.240695524818895], [-2.8053845943362066, 3.1857995552360294, 4.240695524818895], [-3.0653734771310157, 2.936492290809343, 4.240695524818895], [-3.303290323540055, 2.6660409911866774, 4.240695524818895], [-3.517422027695503, 2.376393024599141, 4.240695524818895], [-3.706226747208261, 2.0696339837176705, 4.240695524818895], [-3.8683450051108452, 1.747972668469097, 4.240695524818895], [-4.002609478689101, 1.4137251817058234, 4.240695524818895], [-4.1080534047188255, 1.0692982522472678, 4.240695524818895], [-4.183917540585915, 0.7171719053745139, 4.240695524818895], [-4.229655631166897, 0.3598816055582207, 4.240695524818895], [-4.244938342105925, -3.2504076130923205e-15, 4.240695524818895], [-4.229655631166897, -0.3598816055582271, 4.240695524818895], [-4.183917540585914, -0.7171719053745206, 4.240695524818895], [-4.108053404718825, -1.069298252247274, 4.240695524818895], [-4.0026094786890996, -1.4137251817058294, 4.240695524818895], [-3.868345005110842, -1.747972668469103, 4.240695524818895], [-3.706226747208258, -2.0696339837176763, 4.240695524818895], [-3.5174220276955, -2.3763930245991465, 4.240695524818895], [-3.3032903235400504, -2.6660409911866827, 4.240695524818895], [-3.0653734771310117, -2.9364922908093476, 4.240695524818895], [-2.805384594336201, -3.185799555236034, 4.240695524818895], [-2.5251957093869306, -3.412167662582663, 4.240695524818895], [-2.2268243054087073, -3.613966662978787, 4.240695524818895], [-1.912418787655968, -3.789743514923072, 4.240695524818895], [-1.5842430140499415, -3.938232547820781, 4.240695524818895], [-1.2446599944065602, -4.058364575368366, 4.240695524818895], [-0.896114875727153, -4.1492745941648055, 4.240695524818895], [-0.5411173360652972, -4.210308012116287, 4.240695524818895], [-0.18222351374173373, -4.241025361787007, 4.240695524818895], [0.17798239797506588, -4.241205464757873, 4.240695524818895], [0.5369067581962842, -4.210847024208331, 4.240695524818895], [0.8919651537671636, -4.150168634254049, 4.240695524818895], [1.2406010081776702, -4.059607205973202, 4.240695524818895], [1.58030399003708, -3.939814821454669, 4.240695524818895], [1.9086280885633824, -3.791654038520378, 4.240695524818895], [2.223209225936023, -3.6161916799298606, 4.240695524818895], [2.521782279695318, -3.4146911517874767, 4.240695524818895], [2.802197392619775, -3.1886033464631405, 4.240695524818895], [3.0624354526430286, -2.9395561955295375, 4.240695524818895], [3.3006226313481997, -2.669342947939265, 4.240695524818895], [3.515043876356116, -2.379909257844166, 4.240695524818895], [3.704155260456275, -2.073339175030247, 4.240695524818895], [3.866595098561373, -1.7518401388432, 4.240695524818895], [4.001193752438452, -1.4177270836548561, 4.240695524818895], [4.10698205261827, -1.0734057703182058, 4.240695524818895], [4.183198276841477, -0.7213554636318336, 4.240695524818895], [4.229293634793682, -0.3641110805436328, 4.240695524818895], [4.244936219636931, -0.004244937634588533, 4.240695524818895]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[6.00024699987525, 0.006000248999958383, 3.6740934782919526e-16], [5.978136096926502, 0.5146735558821404, 3.6740934782919526e-16], [5.912979986457413, 1.0196409869429992, 3.6740934782919526e-16], [5.805247821101995, 1.517266554726143, 3.6740934782919526e-16], [5.655715319803268, 2.003967136417813, 3.6740934782919526e-16], [5.4654591822959135, 2.4762382739060635, 3.6740934782919526e-16], [5.235849336394928, 2.9306794074195133, 3.6740934782919526e-16], [4.968539073913223, 3.364018361052377, 3.6740934782919526e-16], [4.6654531462338875, 3.7731349038692366, 3.6740934782919526e-16], [4.328773905254221, 4.155083216939237, 3.6740934782919526e-16], [3.9609255894928497, 4.507113104527189, 3.6740934782919526e-16], [3.564556868506846, 4.826689796711682, 3.6740934782919526e-16], [3.1425217713067206, 5.111512200842649, 3.6740934782919526e-16], [2.6978591360930944, 5.359529470419863, 3.6740934782919526e-16], [2.233770729285964, 5.568955772089167, 3.6740934782919526e-16], [1.7535981913991787, 5.738283144427567, 3.6740934782919526e-16], [1.2607989757599618, 5.866292355928285, 3.6740934782919526e-16], [0.7589214533252666, 5.952061684003507, 3.6740934782919526e-16], [0.251579362851242, 5.994973551792147, 3.6740934782919526e-16], [-0.25757420961419025, 5.9947189749847, 3.6740934782919526e-16], [-0.7648731345565541, 5.951299786646075, 3.6740934782919526e-16], [-1.2666646367387289, 5.865028624016726, 3.6740934782919526e-16], [-1.759335596788193, 5.736526677387104, 3.6740934782919526e-16], [-2.239338567244612, 5.5667192172545255, 3.6740934782919526e-16], [-2.7032173157407944, 5.356828931968906, 3.6740934782919526e-16], [-3.147631711394882, 5.108367123839214, 3.6740934782919526e-16], [-3.5693817752208172, 4.8231228270925754, 3.6740934782919526e-16], [-3.9654307213835573, 4.50314992604149, 3.6740934782919526e-16], [-4.33292682339187, 4.1507523662140136, 3.6740934782919526e-16], [-4.66922394778252, 3.768467564933287, 3.6740934782919526e-16], [-4.971900607444274, 3.3590481407975155, 3.6740934782919526e-16], [-5.23877739738945, 2.9254420936161796, 3.6740934782919526e-16], [-5.46793268742775, 2.470771577515644, 3.6740934782919526e-16], [-5.657716458748268, 1.9983104200571435, 3.6740934782919526e-16], [-5.806762184780174, 1.5114605492393667, 3.6740934782919526e-16], [-5.913996670784669, 1.0137274981215847, 3.6740934782919526e-16], [-5.978647781328806, 0.5086951634448098, 3.6740934782919526e-16], [-6.000249999999999, -4.594473867147285e-15, 3.6740934782919526e-16], [-5.978647781328806, -0.5086951634448189, 3.6740934782919526e-16], [-5.913996670784668, -1.013727498121594, 3.6740934782919526e-16], [-5.8067621847801725, -1.5114605492393756, 3.6740934782919526e-16], [-5.657716458748265, -1.9983104200571522, 3.6740934782919526e-16], [-5.467932687427745, -2.4707715775156522, 3.6740934782919526e-16], [-5.238777397389446, -2.9254420936161876, 3.6740934782919526e-16], [-4.97190060744427, -3.359048140797523, 3.6740934782919526e-16], [-4.6692239477825135, -3.768467564933294, 3.6740934782919526e-16], [-4.332926823391864, -4.15075236621402, 3.6740934782919526e-16], [-3.96543072138355, -4.503149926041496, 3.6740934782919526e-16], [-3.5693817752208097, -4.823122827092581, 3.6740934782919526e-16], [-3.1476317113948746, -5.108367123839218, 3.6740934782919526e-16], [-2.703217315740786, -5.35682893196891, 3.6740934782919526e-16], [-2.2393385672446025, -5.56671921725453, 3.6740934782919526e-16], [-1.7593355967881816, -5.736526677387108, 3.6740934782919526e-16], [-1.266664636738716, -5.8650286240167295, 3.6740934782919526e-16], [-0.7648731345565396, -5.951299786646078, 3.6740934782919526e-16], [-0.25757420961417443, -5.994718974984701, 3.6740934782919526e-16], [0.25157936285125915, -5.994973551792147, 3.6740934782919526e-16], [0.7589214533252849, -5.952061684003504, 3.6740934782919526e-16], [1.2607989757599811, -5.86629235592828, 3.6740934782919526e-16], [1.7535981913991991, -5.738283144427561, 3.6740934782919526e-16], [2.2337707292859843, -5.568955772089159, 3.6740934782919526e-16], [2.6978591360931157, -5.359529470419853, 3.6740934782919526e-16], [3.142521771306743, -5.111512200842635, 3.6740934782919526e-16], [3.5645568685068674, -4.826689796711666, 3.6740934782919526e-16], [3.960925589492871, -4.50711310452717, 3.6740934782919526e-16], [4.328773905254241, -4.155083216939215, 3.6740934782919526e-16], [4.665453146233907, -3.7731349038692126, 3.6740934782919526e-16], [4.968539073913242, -3.3640183610523504, 3.6740934782919526e-16], [5.235849336394944, -2.930679407419484, 3.6740934782919526e-16], [5.465459182295927, -2.476238273906032, 3.6740934782919526e-16], [5.65571531980328, -2.00396713641778, 3.6740934782919526e-16], [5.805247821102004, -1.5172665547261082, 3.6740934782919526e-16], [5.912979986457419, -1.0196409869429626, 3.6740934782919526e-16], [5.978136096926505, -0.5146735558821023, 3.6740934782919526e-16], [6.00024699987525, -0.006000248999919223, 3.6740934782919526e-16]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[4.24493621963693, 0.004244937634616236, -4.240695524818895], [4.229293634793677, 0.36411108054365965, -4.240695524818895], [4.1831982768414715, 0.7213554636318592, -4.240695524818895], [4.106982052618263, 1.0734057703182303, -4.240695524818895], [4.001193752438442, 1.417727083654879, -4.240695524818895], [3.8665950985613624, 1.7518401388432217, -4.240695524818895], [3.7041552604562624, 2.0733391750302674, -4.240695524818895], [3.515043876356102, 2.3799092578441843, -4.240695524818895], [3.300622631348185, 2.669342947939281, -4.240695524818895], [3.062435452643013, 2.9395561955295517, -4.240695524818895], [2.802197392619759, 3.1886033464631525, -4.240695524818895], [2.521782279695302, 3.414691151787487, -4.240695524818895], [2.2232092259360066, 3.616191679929869, -4.240695524818895], [1.9086280885633666, 3.7916540385203845, -4.240695524818895], [1.5803039900370652, 3.9398148214546733, -4.240695524818895], [1.2406010081776555, 4.059607205973205, -4.240695524818895], [0.8919651537671496, 4.150168634254051, -4.240695524818895], [0.5369067581962711, 4.210847024208332, -4.240695524818895], [0.1779823979750537, 4.241205464757872, -4.240695524818895], [-0.18222351374174486, 4.241025361787005, -4.240695524818895], [-0.5411173360653073, 4.2103080121162835, -4.240695524818895], [-0.8961148757271618, 4.149274594164802, -4.240695524818895], [-1.2446599944065677, 4.058364575368363, -4.240695524818895], [-1.584243014049948, 3.9382325478207765, -4.240695524818895], [-1.9124187876559733, 3.7897435149230674, -4.240695524818895], [-2.226824305408712, 3.6139666629787826, -4.240695524818895], [-2.525195709386935, 3.4121676625826582, -4.240695524818895], [-2.8053845943362057, 3.185799555236028, -4.240695524818895], [-3.065373477131015, 2.9364922908093423, -4.240695524818895], [-3.303290323540054, 2.6660409911866765, -4.240695524818895], [-3.5174220276955017, 2.3763930245991403, -4.240695524818895], [-3.7062267472082597, 2.06963398371767, -4.240695524818895], [-3.868345005110844, 1.7479726684690964, -4.240695524818895], [-4.0026094786890996, 1.413725181705823, -4.240695524818895], [-4.108053404718825, 1.0692982522472676, -4.240695524818895], [-4.183917540585913, 0.7171719053745137, -4.240695524818895], [-4.229655631166895, 0.3598816055582206, -4.240695524818895], [-4.2449383421059235, -3.2504076130923193e-15, -4.240695524818895], [-4.229655631166895, -0.359881605558227, -4.240695524818895], [-4.183917540585913, -0.7171719053745204, -4.240695524818895], [-4.108053404718824, -1.0692982522472738, -4.240695524818895], [-4.002609478689098, -1.413725181705829, -4.240695524818895], [-3.868345005110841, -1.7479726684691024, -4.240695524818895], [-3.7062267472082566, -2.069633983717676, -4.240695524818895], [-3.5174220276954986, -2.3763930245991456, -4.240695524818895], [-3.3032903235400495, -2.666040991186682, -4.240695524818895], [-3.0653734771310104, -2.9364922908093467, -4.240695524818895], [-2.8053845943362, -3.1857995552360325, -4.240695524818895], [-2.5251957093869297, -3.4121676625826622, -4.240695524818895], [-2.2268243054087065, -3.6139666629787857, -4.240695524818895], [-1.9124187876559675, -3.7897435149230705, -4.240695524818895], [-1.584243014049941, -3.9382325478207796, -4.240695524818895], [-1.2446599944065597, -4.0583645753683655, -4.240695524818895], [-0.8961148757271526, -4.149274594164804, -4.240695524818895], [-0.5411173360652971, -4.210308012116285, -4.240695524818895], [-0.18222351374173365, -4.241025361787005, -4.240695524818895], [0.17798239797506582, -4.241205464757872, -4.240695524818895], [0.5369067581962841, -4.21084702420833, -4.240695524818895], [0.8919651537671633, -4.150168634254047, -4.240695524818895], [1.24060100817767, -4.059607205973201, -4.240695524818895], [1.5803039900370797, -3.939814821454668, -4.240695524818895], [1.9086280885633817, -3.791654038520377, -4.240695524818895], [2.223209225936022, -3.6161916799298597, -4.240695524818895], [2.521782279695317, -3.414691151787476, -4.240695524818895], [2.802197392619774, -3.188603346463139, -4.240695524818895], [3.0624354526430277, -2.9395561955295366, -4.240695524818895], [3.3006226313481988, -2.6693429479392643, -4.240695524818895], [3.515043876356115, -2.379909257844165, -4.240695524818895], [3.7041552604562735, -2.0733391750302466, -4.240695524818895], [3.8665950985613717, -1.7518401388431994, -4.240695524818895], [4.00119375243845, -1.4177270836548557, -4.240695524818895], [4.106982052618269, -1.0734057703182056, -4.240695524818895], [4.183198276841476, -0.7213554636318333, -4.240695524818895], [4.22929363479368, -0.36411108054363267, -4.240695524818895], [4.24493621963693, -0.004244937634588531, -4.240695524818895]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.006000245999831543, 6.000247999914343e-06, -6.00024699987525], [0.005978135100567954, 0.0005146734701029965, -6.00024699987525], [0.005912979000958244, 0.001019640817002403, -6.00024699987525], [0.005805246853558234, 0.0015172663018477414, -6.00024699987525], [0.005655714377181654, 0.0020039668024224417, -6.00024699987525], [0.005465458271383736, 0.0024762378611986363, -6.00024699987525], [0.005235848463751155, 0.0029306789189717047, -6.00024699987525], [0.004968538245821274, 0.003364017800381226, -6.00024699987525], [0.004665452368656388, 0.003773134275011822, -6.00024699987525], [0.004328773183790071, 0.004155082524423608, -6.00024699987525], [0.003960924929336908, 0.0045071123533397634, -6.00024699987525], [0.0035645562744125257, 0.004826688992261339, -6.00024699987525], [0.0031425212475517618, 0.005111511348921785, -6.00024699987525], [0.002697858686448763, 0.005359528577162683, -6.00024699987525], [0.002233770356989897, 0.005568954843927514, -6.00024699987525], [0.001753597899132071, 0.005738282188044614, -6.00024699987525], [0.0012607987656262653, 0.005866291378210408, -6.00024699987525], [0.0007589213268380364, 0.005952060691990706, -6.00024699987525], [0.00025157932092124166, 0.0059949725526273505, -6.00024699987525], [-0.00025757416668504624, 0.005994717975862333, -6.00024699987525], [-0.0007648730070773745, 0.0059512987947602574, -6.00024699987525], [-0.0012666644256274198, 0.005865027646509472, -6.00024699987525], [-0.0017593353035648487, 0.005736525721296896, -6.00024699987525], [-0.0022393381940205696, 0.005566718289465632, -6.00024699987525], [-0.0027032168652034306, 0.005356828039161815, -6.00024699987525], [-0.0031476311867882642, 0.005108366272442531, -6.00024699987525], [-0.0035693811803223434, 0.0048231220232367285, -6.00024699987525], [-0.003965430060476758, 0.004503149175514596, -6.00024699987525], [-0.004332926101235565, 0.004150751674420195, -6.00024699987525], [-0.004669223169576552, 0.003768466936853764, -6.00024699987525], [-0.004971899778792068, 0.0033590475809547366, -6.00024699987525], [-0.005238776524257666, 0.002925441606041259, -6.00024699987525], [-0.00546793177610332, 0.0024707711657193346, -6.00024699987525], [-0.005657715515793129, 0.0019983100870045608, -6.00024699987525], [-0.005806761216984018, 0.0015114602973286353, -6.00024699987525], [-0.005913995685116053, 0.0010137273291665725, -6.00024699987525], [-0.005978646784884978, 0.0005086950786620672, -6.00024699987525], [-0.006000248999955792, -4.594473101399695e-18, -6.00024699987525], [-0.005978646784884978, -0.0005086950786620763, -6.00024699987525], [-0.0059139956851160524, -0.0010137273291665819, -6.00024699987525], [-0.005806761216984016, -0.0015114602973286442, -6.00024699987525], [-0.005657715515793127, -0.0019983100870045695, -6.00024699987525], [-0.005467931776103316, -0.0024707711657193433, -6.00024699987525], [-0.005238776524257661, -0.0029254416060412666, -6.00024699987525], [-0.004971899778792064, -0.003359047580954744, -6.00024699987525], [-0.004669223169576546, -0.003768466936853771, -6.00024699987525], [-0.004332926101235559, -0.004150751674420201, -6.00024699987525], [-0.003965430060476751, -0.0045031491755146025, -6.00024699987525], [-0.003569381180322336, -0.004823122023236735, -6.00024699987525], [-0.003147631186788257, -0.005108366272442535, -6.00024699987525], [-0.002703216865203422, -0.005356828039161821, -6.00024699987525], [-0.0022393381940205596, -0.005566718289465637, -6.00024699987525], [-0.0017593353035648372, -0.005736525721296899, -6.00024699987525], [-0.0012666644256274068, -0.005865027646509475, -6.00024699987525], [-0.00076487300707736, -0.00595129879476026, -6.00024699987525], [-0.00025757416668503047, -0.005994717975862334, -6.00024699987525], [0.00025157932092125884, -0.0059949725526273505, -6.00024699987525], [0.0007589213268380547, -0.005952060691990704, -6.00024699987525], [0.0012607987656262846, -0.005866291378210404, -6.00024699987525], [0.0017535978991320914, -0.005738282188044607, -6.00024699987525], [0.002233770356989917, -0.005568954843927505, -6.00024699987525], [0.002697858686448784, -0.0053595285771626715, -6.00024699987525], [0.003142521247551784, -0.005111511348921771, -6.00024699987525], [0.003564556274412547, -0.0048266889922613234, -6.00024699987525], [0.003960924929336929, -0.004507112353339744, -6.00024699987525], [0.004328773183790091, -0.004155082524423587, -6.00024699987525], [0.004665452368656407, -0.0037731342750117977, -6.00024699987525], [0.004968538245821292, -0.003364017800381199, -6.00024699987525], [0.005235848463751171, -0.002930678918971675, -6.00024699987525], [0.005465458271383749, -0.0024762378611986047, -6.00024699987525], [0.005655714377181665, -0.0020039668024224087, -6.00024699987525], [0.005805246853558242, -0.0015172663018477067, -6.00024699987525], [0.005912979000958251, -0.0010196408170023664, -6.00024699987525], [0.005978135100567958, -0.0005146734701029584, -6.00024699987525], [0.006000245999831543, -6.000247999875182e-06, -6.00024699987525]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.007999994666667733, 7.999997333333687e-06, 7.9999960000003325], [0.007970514695981715, 0.0006862027016917211, 7.9999960000003325], [0.007883643516134558, 0.0013594644449852497, 7.9999960000003325], [0.007740006637804411, 0.002022937446737581, 7.9999960000003325], [0.007540638309649225, 0.002671844409714004, 7.9999960000003325], [0.0072869740712618244, 0.0033015129185613333, 7.9999960000003325], [0.00698084041665386, 0.0039074090832521575, 7.9999960000003325], [0.006624441642696113, 0.004485170185085859, 7.9999960000003325], [0.006220343977212152, 0.0050306360901808435, 7.9999960000003325], [0.005771457101010043, 0.0055398792042670245, 7.9999960000003325], [0.005281013196901619, 0.006009232753090899, 7.9999960000003325], [0.004752543676565562, 0.006435317184801863, 7.9999960000003325], [0.004189853752831122, 0.006815064504210979, 7.9999960000003325], [0.0035969950404732168, 0.00714574036370484, 7.9999960000003325], [0.0029782363828051977, 0.007424963751750235, 7.9999960000003325], [0.0023380331141306817, 0.007650724137223736, 7.9999960000003325], [0.0016809949793782722, 0.007821395946119499, 7.9999960000003325], [0.0010118529419119056, 0.007935750266396601, 7.9999960000003325], [0.0003354251185151956, 0.00799296369668589, 7.9999960000003325], [-0.00034341791316716135, 0.007992624275141764, 7.9999960000003325], [-0.0010197881849292342, 0.00793473444574853, 7.9999960000003325], [-0.0016888155335233921, 0.007819711040722642, 7.9999960000003325], [-0.0023456826679763114, 0.007648382279137532, 7.9999960000003325], [-0.002985659856201373, 0.00742198180338224, 7.9999960000003325], [-0.003604138981148582, 0.0071421397963939886, 7.9999960000003325], [-0.0041966667212727776, 0.006810871243624496, 7.9999960000003325], [-0.004758976616406162, 0.00643056142425907, 7.9999960000003325], [-0.005287019788146787, 0.006003948736158046, 7.9999960000003325], [-0.005776994093562682, 0.005534104978188558, 7.9999960000003325], [-0.0062253715022921605, 0.005024413231922524, 7.9999960000003325], [-0.006628923499913123, 0.0044785435019623334, 7.9999960000003325], [-0.006984744334665958, 0.0039004262902946, 7.9999960000003325], [-0.007290271940143402, 0.0032942242949482456, 7.9999960000003325], [-0.007543306383294791, 0.0026643024367390337, 7.9999960000003325], [-0.0077420257049109955, 0.0020151964299211364, 7.9999960000003325], [-0.007884999038531536, 0.0013515801230508865, 7.9999960000003325], [-0.007971196913312023, 0.0006782318452228313, 7.9999960000003325], [-0.007999998666666732, -6.1257088973315165e-18, 7.9999960000003325], [-0.007971196913312023, -0.0006782318452228436, 7.9999960000003325], [-0.007884999038531534, -0.0013515801230508987, 7.9999960000003325], [-0.007742025704910993, -0.0020151964299211485, 7.9999960000003325], [-0.007543306383294788, -0.0026643024367390454, 7.9999960000003325], [-0.0072902719401433955, -0.003294224294948257, 7.9999960000003325], [-0.006984744334665953, -0.00390042629029461, 7.9999960000003325], [-0.006628923499913117, -0.004478543501962343, 7.9999960000003325], [-0.006225371502292153, -0.005024413231922533, 7.9999960000003325], [-0.005776994093562674, -0.005534104978188566, 7.9999960000003325], [-0.0052870197881467774, -0.006003948736158054, 7.9999960000003325], [-0.0047589766164061525, -0.006430561424259078, 7.9999960000003325], [-0.004196666721272767, -0.006810871243624502, 7.9999960000003325], [-0.003604138981148571, -0.007142139796393994, 7.9999960000003325], [-0.00298565985620136, -0.0074219818033822455, 7.9999960000003325], [-0.0023456826679762966, -0.0076483822791375364, 7.9999960000003325], [-0.001688815533523375, -0.007819711040722647, 7.9999960000003325], [-0.001019788184929215, -0.007934734445748532, 7.9999960000003325], [-0.00034341791316714026, -0.007992624275141766, 7.9999960000003325], [0.00033542511851521845, -0.007992963696685888, 7.9999960000003325], [0.00101185294191193, -0.007935750266396598, 7.9999960000003325], [0.0016809949793782978, -0.007821395946119494, 7.9999960000003325], [0.002338033114130709, -0.007650724137223728, 7.9999960000003325], [0.002978236382805225, -0.0074249637517502225, 7.9999960000003325], [0.0035969950404732454, -0.007145740363704826, 7.9999960000003325], [0.004189853752831152, -0.006815064504210962, 7.9999960000003325], [0.004752543676565591, -0.0064353171848018425, 7.9999960000003325], [0.005281013196901648, -0.006009232753090875, 7.9999960000003325], [0.005771457101010071, -0.005539879204266997, 7.9999960000003325], [0.006220343977212178, -0.005030636090180811, 7.9999960000003325], [0.006624441642696137, -0.0044851701850858235, 7.9999960000003325], [0.006980840416653881, -0.0039074090832521184, 7.9999960000003325], [0.007286974071261843, -0.0033015129185612916, 7.9999960000003325], [0.00754063830964924, -0.0026718444097139603, 7.9999960000003325], [0.007740006637804423, -0.0020229374467375344, 7.9999960000003325], [0.007883643516134565, -0.001359464444985201, 7.9999960000003325], [0.007970514695981718, -0.0006862027016916704, 7.9999960000003325], [0.007999994666667733, -7.999997333281476e-06, 7.9999960000003325]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[5.65967913955176, 0.005659681026112227, 5.654025115378718], [5.63882322875704, 0.4854612131743307, 5.654025115378718], [5.577365312233954, 0.9617672112086788, 5.654025115378718], [5.475747913994602, 1.4311480625883661, 5.654025115378718], [5.334702723971092, 1.890224018872386, 5.654025115378718], [5.155245329526421, 2.3356895313938213, 5.654025115378718], [4.938667902779069, 2.7643370526631625, 5.654025115378718], [4.686529896395788, 3.1730801321200746, 5.654025115378718], [4.400646814846962, 3.5589756399340455, 5.654025115378718], [4.083077141976436, 3.9192449588327856, 5.654025115378718], [3.736107519013054, 4.2512939913678975, 5.654025115378718], [3.362236279748747, 4.552731838556711, 5.654025115378718], [2.964155461437116, 4.8213880154058515, 5.654025115378718], [2.5447314209419503, 5.055328079357207, 5.654025115378718], [2.106984195707933, 5.252867559124603, 5.654025115378718], [1.6540657581636173, 5.412584083627457, 5.654025115378718], [1.1892373201345277, 5.533327623687748, 5.654025115378718], [0.7158458506845831, 5.614228772745579, 5.654025115378718], [0.23729997646771883, 5.65470500696854, 5.654025115378718], [-0.24295456188224812, 5.654464879679355, 5.654025115378718], [-0.7214597205987183, 5.6135101199000506, 5.654025115378718], [-1.1947700522173736, 5.532135619902242, 5.654025115378718], [-1.6594775143123277, 5.4109273118531585, 5.654025115378718], [-2.11223600889956, 5.250757948846501, 5.654025115378718], [-2.5497854758131395, 5.0527808206965625, 5.654025115378718], [-2.9689753665713425, 4.818421449744639, 5.654025115378718], [-3.3667873297105095, 4.549367326471609, 5.654025115378718], [-3.7403569442422646, 4.247555758824754, 5.654025115378718], [-4.0869943447436565, 3.9151599227490093, 5.654025115378718], [-4.404203589570508, 3.554573214364971, 5.654025115378718], [-4.689700632734307, 3.168392016464835, 5.654025115378718], [-4.941429770037263, 2.759397003415085, 5.654025115378718], [-5.157578441046083, 2.3305331190788343, 5.654025115378718], [-5.3365902803237875, 1.8848883719256009, 5.654025115378718], [-5.477176323944937, 1.425671600013023, 5.654025115378718], [-5.578324290602445, 0.9561893659424378, 5.654025115378718], [-5.6393058704779255, 0.47982214815478774, 5.654025115378718], [-5.6596819693925084, -4.3336962467794786e-15, 5.654025115378718], [-5.639305870477925, -0.4798221481547964, 5.654025115378718], [-5.578324290602443, -0.9561893659424464, 5.654025115378718], [-5.477176323944935, -1.4256716000130314, 5.654025115378718], [-5.336590280323785, -1.884888371925609, 5.654025115378718], [-5.15757844104608, -2.3305331190788423, 5.654025115378718], [-4.941429770037259, -2.7593970034150925, 5.654025115378718], [-4.6897006327343025, -3.1683920164648423, 5.654025115378718], [-4.404203589570502, -3.5545732143649778, 5.654025115378718], [-4.086994344743651, -3.9151599227490155, 5.654025115378718], [-3.740356944242258, -4.24755575882476, 5.654025115378718], [-3.3667873297105024, -4.549367326471614, 5.654025115378718], [-2.9689753665713354, -4.818421449744643, 5.654025115378718], [-2.5497854758131315, -5.052780820696566, 5.654025115378718], [-2.112236008899551, -5.2507579488465055, 5.654025115378718], [-1.659477514312317, -5.410927311853161, 5.654025115378718], [-1.1947700522173617, -5.5321356199022444, 5.654025115378718], [-0.7214597205987047, -5.613510119900053, 5.654025115378718], [-0.24295456188223322, -5.654464879679356, 5.654025115378718], [0.237299976467735, -5.65470500696854, 5.654025115378718], [0.7158458506846004, -5.614228772745577, 5.654025115378718], [1.1892373201345459, -5.533327623687745, 5.654025115378718], [1.6540657581636367, -5.4125840836274515, 5.654025115378718], [2.1069841957079523, -5.252867559124595, 5.654025115378718], [2.5447314209419702, -5.055328079357197, 5.654025115378718], [2.964155461437137, -4.821388015405839, 5.654025115378718], [3.3622362797487675, -4.552731838556696, 5.654025115378718], [3.736107519013074, -4.25129399136788, 5.654025115378718], [4.083077141976456, -3.9192449588327656, 5.654025115378718], [4.40064681484698, -3.558975639934023, 5.654025115378718], [4.686529896395805, -3.1730801321200497, 5.654025115378718], [4.938667902779084, -2.7643370526631355, 5.654025115378718], [5.155245329526434, -2.335689531393792, 5.654025115378718], [5.334702723971103, -1.890224018872355, 5.654025115378718], [5.475747913994611, -1.431148062588333, 5.654025115378718], [5.577365312233959, -0.9617672112086443, 5.654025115378718], [5.638823228757043, -0.4854612131742948, 5.654025115378718], [5.65967913955176, -0.005659681026075289, 5.654025115378718]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[7.9999960000003325, 0.007999998666666732, 4.898587196589412e-16], [7.970516024400985, 0.6862028160588514, 4.898587196589412e-16], [7.883644830075297, 1.3594646715626837, 4.898587196589412e-16], [7.740007927805667, 2.0229377838938616, 4.898587196589412e-16], [7.540639566422423, 2.6718448550214577, 4.898587196589412e-16], [7.286975285757644, 3.3015134688135506, 4.898587196589412e-16], [6.980841580127398, 3.9074097344870804, 4.898587196589412e-16], [6.624442746769849, 4.48517093261431, 4.898587196589412e-16], [6.220345013936269, 5.030636928620289, 4.898587196589412e-16], [5.771458062919672, 5.539880127580333, 4.898587196589412e-16], [5.281014077070588, 6.0092337546298085, 4.898587196589412e-16], [4.752544468656267, 6.435318257354853, 4.898587196589412e-16], [4.189854451140163, 6.815065640055196, 4.898587196589412e-16], [3.59699563997246, 7.145741554661706, 4.898587196589412e-16], [2.978236879177986, 7.424964989244337, 4.898587196589412e-16], [2.338033503802913, 7.650725412344574, 4.898587196589412e-16], [1.6809952595441346, 7.821397249685642, 4.898587196589412e-16], [1.0118531105540822, 7.935751589021799, 4.898587196589412e-16], [0.3354251744193885, 7.992965028846661, 4.898587196589412e-16], [-0.34341797040348687, 7.992625607245965, 4.898587196589412e-16], [-1.0197883548939515, 7.934735768204425, 4.898587196589412e-16], [-1.6888158149926804, 7.819712344007968, 4.898587196589412e-16], [-2.3456830589234685, 7.648383553868061, 4.898587196589412e-16], [-2.985660353811407, 7.421983040379351, 4.898587196589412e-16], [-3.6041395818384823, 7.14214098675076, 4.898587196589412e-16], [-4.196667420717312, 6.810872378769836, 4.898587196589412e-16], [-4.758977409569024, 6.430562496019433, 4.898587196589412e-16], [-5.287020669316854, 6.003949736816286, 4.898587196589412e-16], [-5.776995056395143, 5.534105900539495, 4.898587196589412e-16], [-6.225372539854199, 5.024414069324827, 4.898587196589412e-16], [-6.628924604733835, 4.478544248386338, 4.898587196589412e-16], [-6.98474549879015, 3.900426940365724, 4.898587196589412e-16], [-7.290273155188866, 3.2942248439856923, 4.898587196589412e-16], [-7.543307640512668, 2.6643028807894917, 4.898587196589412e-16], [-7.7420269952487635, 2.0151967657872474, 4.898587196589412e-16], [-7.885000352698196, 1.3515803483142665, 4.898587196589412e-16], [-7.971198241844998, 0.6782319582614854, 4.898587196589412e-16], [-7.999999999999999, -6.125709918283118e-15, 4.898587196589412e-16], [-7.971198241844997, -0.6782319582614976, 4.898587196589412e-16], [-7.885000352698194, -1.3515803483142788, 4.898587196589412e-16], [-7.742026995248761, -2.0151967657872594, 4.898587196589412e-16], [-7.543307640512665, -2.6643028807895033, 4.898587196589412e-16], [-7.290273155188861, -3.2942248439857034, 4.898587196589412e-16], [-6.9847454987901445, -3.9004269403657346, 4.898587196589412e-16], [-6.628924604733829, -4.478544248386347, 4.898587196589412e-16], [-6.225372539854191, -5.024414069324837, 4.898587196589412e-16], [-5.776995056395135, -5.534105900539504, 4.898587196589412e-16], [-5.287020669316845, -6.003949736816294, 4.898587196589412e-16], [-4.758977409569014, -6.43056249601944, 4.898587196589412e-16], [-4.1966674207173025, -6.810872378769842, 4.898587196589412e-16], [-3.604139581838471, -7.142140986750765, 4.898587196589412e-16], [-2.985660353811394, -7.421983040379357, 4.898587196589412e-16], [-2.3456830589234534, -7.648383553868065, 4.898587196589412e-16], [-1.6888158149926633, -7.819712344007972, 4.898587196589412e-16], [-1.0197883548939322, -7.934735768204428, 4.898587196589412e-16], [-0.3434179704034658, -7.992625607245966, 4.898587196589412e-16], [0.3354251744194114, -7.99296502884666, 4.898587196589412e-16], [1.0118531105541066, -7.9357515890217964, 4.898587196589412e-16], [1.6809952595441604, -7.821397249685637, 4.898587196589412e-16], [2.33803350380294, -7.650725412344566, 4.898587196589412e-16], [2.9782368791780134, -7.424964989244326, 4.898587196589412e-16], [3.5969956399724885, -7.145741554661692, 4.898587196589412e-16], [4.189854451140192, -6.815065640055178, 4.898587196589412e-16], [4.752544468656295, -6.435318257354831, 4.898587196589412e-16], [5.281014077070616, -6.009233754629784, 4.898587196589412e-16], [5.7714580629197, -5.539880127580305, 4.898587196589412e-16], [6.220345013936295, -5.0306369286202575, 4.898587196589412e-16], [6.624442746769873, -4.485170932614275, 4.898587196589412e-16], [6.98084158012742, -3.9074097344870418, 4.898587196589412e-16], [7.286975285757663, -3.301513468813509, 4.898587196589412e-16], [7.540639566422438, -2.671844855021414, 4.898587196589412e-16], [7.74000792780568, -2.022937783893815, 4.898587196589412e-16], [7.883644830075305, -1.3594646715626348, 4.898587196589412e-16], [7.97051602440099, -0.6862028160588006, 4.898587196589412e-16], [7.9999960000003325, -0.00799999866661452, 4.898587196589412e-16]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[5.659679139551758, 0.005659681026112225, -5.654025115378719], [5.638823228757039, 0.48546121317433055, -5.654025115378719], [5.577365312233952, 0.9617672112086785, -5.654025115378719], [5.4757479139946, 1.4311480625883657, -5.654025115378719], [5.33470272397109, 1.8902240188723853, -5.654025115378719], [5.155245329526419, 2.3356895313938204, -5.654025115378719], [4.938667902779067, 2.7643370526631617, -5.654025115378719], [4.686529896395786, 3.1730801321200737, -5.654025115378719], [4.400646814846961, 3.558975639934044, -5.654025115378719], [4.0830771419764345, 3.9192449588327847, -5.654025115378719], [3.7361075190130526, 4.251293991367896, -5.654025115378719], [3.362236279748746, 4.552731838556709, -5.654025115378719], [2.964155461437115, 4.821388015405851, -5.654025115378719], [2.5447314209419494, 5.0553280793572055, -5.654025115378719], [2.1069841957079323, 5.252867559124601, -5.654025115378719], [1.654065758163617, 5.412584083627455, -5.654025115378719], [1.1892373201345272, 5.5333276236877476, -5.654025115378719], [0.7158458506845828, 5.6142287727455775, -5.654025115378719], [0.23729997646771878, 5.6547050069685385, -5.654025115378719], [-0.24295456188224807, 5.654464879679353, -5.654025115378719], [-0.7214597205987181, 5.613510119900049, -5.654025115378719], [-1.1947700522173732, 5.53213561990224, -5.654025115378719], [-1.6594775143123273, 5.410927311853157, -5.654025115378719], [-2.1122360088995595, 5.2507579488465, -5.654025115378719], [-2.5497854758131386, 5.052780820696561, -5.654025115378719], [-2.9689753665713416, 4.818421449744637, -5.654025115378719], [-3.366787329710508, 4.549367326471608, -5.654025115378719], [-3.7403569442422637, 4.247555758824753, -5.654025115378719], [-4.086994344743656, 3.915159922749008, -5.654025115378719], [-4.404203589570506, 3.5545732143649698, -5.654025115378719], [-4.689700632734305, 3.1683920164648343, -5.654025115378719], [-4.941429770037261, 2.759397003415084, -5.654025115378719], [-5.157578441046081, 2.3305331190788334, -5.654025115378719], [-5.336590280323786, 1.8848883719256002, -5.654025115378719], [-5.477176323944935, 1.4256716000130225, -5.654025115378719], [-5.578324290602443, 0.9561893659424374, -5.654025115378719], [-5.639305870477924, 0.4798221481547876, -5.654025115378719], [-5.659681969392507, -4.333696246779477e-15, -5.654025115378719], [-5.639305870477923, -0.47982214815479624, -5.654025115378719], [-5.578324290602441, -0.9561893659424461, -5.654025115378719], [-5.477176323944933, -1.425671600013031, -5.654025115378719], [-5.336590280323783, -1.8848883719256084, -5.654025115378719], [-5.157578441046078, -2.3305331190788414, -5.654025115378719], [-4.941429770037257, -2.7593970034150916, -5.654025115378719], [-4.689700632734301, -3.1683920164648414, -5.654025115378719], [-4.404203589570501, -3.554573214364977, -5.654025115378719], [-4.086994344743649, -3.915159922749014, -5.654025115378719], [-3.7403569442422566, -4.247555758824759, -5.654025115378719], [-3.3667873297105015, -4.549367326471613, -5.654025115378719], [-2.9689753665713345, -4.818421449744641, -5.654025115378719], [-2.549785475813131, -5.052780820696564, -5.654025115378719], [-2.11223600889955, -5.250757948846504, -5.654025115378719], [-1.6594775143123166, -5.410927311853159, -5.654025115378719], [-1.1947700522173612, -5.532135619902243, -5.654025115378719], [-0.7214597205987044, -5.613510119900051, -5.654025115378719], [-0.24295456188223313, -5.654464879679354, -5.654025115378719], [0.23729997646773496, -5.6547050069685385, -5.654025115378719], [0.7158458506846002, -5.614228772745575, -5.654025115378719], [1.1892373201345454, -5.533327623687743, -5.654025115378719], [1.654065758163636, -5.41258408362745, -5.654025115378719], [2.106984195707952, -5.252867559124593, -5.654025115378719], [2.54473142094197, -5.055328079357196, -5.654025115378719], [2.964155461437136, -4.821388015405838, -5.654025115378719], [3.362236279748766, -4.552731838556694, -5.654025115378719], [3.7361075190130726, -4.251293991367878, -5.654025115378719], [4.083077141976454, -3.9192449588327642, -5.654025115378719], [4.400646814846979, -3.558975639934022, -5.654025115378719], [4.686529896395803, -3.1730801321200484, -5.654025115378719], [4.938667902779082, -2.7643370526631346, -5.654025115378719], [5.155245329526433, -2.335689531393791, -5.654025115378719], [5.334702723971101, -1.8902240188723543, -5.654025115378719], [5.475747913994609, -1.4311480625883326, -5.654025115378719], [5.577365312233958, -0.961767211208644, -5.654025115378719], [5.638823228757041, -0.4854612131742947, -5.654025115378719], [5.659679139551758, -0.0056596810260752875, -5.654025115378719]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.00799999466666428, 7.999997333330233e-06, -7.9999960000003325], [0.007970514695978273, 0.0006862027016914248, -7.9999960000003325], [0.007883643516131154, 0.001359464444984663, -7.9999960000003325], [0.007740006637801069, 0.0020229374467367078, -7.9999960000003325], [0.00754063830964597, 0.0026718444097128505, -7.9999960000003325], [0.007286974071258678, 0.0033015129185599078, -7.9999960000003325], [0.006980840416650846, 0.0039074090832504705, -7.9999960000003325], [0.006624441642693253, 0.004485170185083922, -7.9999960000003325], [0.006220343977209467, 0.005030636090178672, -7.9999960000003325], [0.005771457101007551, 0.005539879204264633, -7.9999960000003325], [0.005281013196899339, 0.006009232753088305, -7.9999960000003325], [0.00475254367656351, 0.006435317184799085, -7.9999960000003325], [0.004189853752829314, 0.006815064504208037, -7.9999960000003325], [0.0035969950404716637, 0.007145740363701755, -7.9999960000003325], [0.002978236382803912, 0.007424963751747029, -7.9999960000003325], [0.0023380331141296725, 0.007650724137220433, -7.9999960000003325], [0.0016809949793775464, 0.007821395946116123, -7.9999960000003325], [0.0010118529419114687, 0.007935750266393175, -7.9999960000003325], [0.0003354251185150508, 0.007992963696682438, -7.9999960000003325], [-0.0003434179131670131, 0.007992624275138313, -7.9999960000003325], [-0.0010197881849287938, 0.007934734445745105, -7.9999960000003325], [-0.0016888155335226629, 0.007819711040719267, -7.9999960000003325], [-0.0023456826679752987, 0.00764838227913423, -7.9999960000003325], [-0.002985659856200084, 0.007421981803379035, -7.9999960000003325], [-0.003604138981147026, 0.007142139796390905, -7.9999960000003325], [-0.004196666721270966, 0.006810871243621556, -7.9999960000003325], [-0.004758976616404107, 0.006430561424256295, -7.9999960000003325], [-0.005287019788144504, 0.006003948736155455, -7.9999960000003325], [-0.005776994093560188, 0.005534104978186168, -7.9999960000003325], [-0.006225371502289473, 0.005024413231920355, -7.9999960000003325], [-0.006628923499910261, 0.0044785435019604, -7.9999960000003325], [-0.0069847443346629425, 0.003900426290292916, -7.9999960000003325], [-0.007290271940140254, 0.0032942242949468236, -7.9999960000003325], [-0.007543306383291534, 0.0026643024367378836, -7.9999960000003325], [-0.007742025704907653, 0.0020151964299202664, -7.9999960000003325], [-0.007884999038528132, 0.001351580123050303, -7.9999960000003325], [-0.007971196913308583, 0.0006782318452225385, -7.9999960000003325], [-0.007999998666663278, -6.125708897328872e-18, -7.9999960000003325], [-0.007971196913308581, -0.0006782318452225508, -7.9999960000003325], [-0.00788499903852813, -0.0013515801230503152, -7.9999960000003325], [-0.00774202570490765, -0.0020151964299202785, -7.9999960000003325], [-0.007543306383291531, -0.0026643024367378953, -7.9999960000003325], [-0.007290271940140249, -0.003294224294946835, -7.9999960000003325], [-0.006984744334662937, -0.0039004262902929267, -7.9999960000003325], [-0.006628923499910255, -0.00447854350196041, -7.9999960000003325], [-0.006225371502289465, -0.005024413231920365, -7.9999960000003325], [-0.00577699409356018, -0.005534104978186178, -7.9999960000003325], [-0.0052870197881444946, -0.006003948736155462, -7.9999960000003325], [-0.004758976616404098, -0.0064305614242563015, -7.9999960000003325], [-0.004196666721270955, -0.006810871243621562, -7.9999960000003325], [-0.003604138981147015, -0.00714213979639091, -7.9999960000003325], [-0.0029856598562000712, -0.007421981803379041, -7.9999960000003325], [-0.002345682667975284, -0.007648382279134234, -7.9999960000003325], [-0.0016888155335226457, -0.007819711040719272, -7.9999960000003325], [-0.0010197881849287745, -0.007934734445745106, -7.9999960000003325], [-0.000343417913166992, -0.007992624275138313, -7.9999960000003325], [0.00033542511851507366, -0.007992963696682438, -7.9999960000003325], [0.0010118529419114932, -0.007935750266393172, -7.9999960000003325], [0.0016809949793775722, -0.007821395946116118, -7.9999960000003325], [0.0023380331141296994, -0.0076507241372204245, -7.9999960000003325], [0.002978236382803939, -0.007424963751747018, -7.9999960000003325], [0.0035969950404716924, -0.007145740363701741, -7.9999960000003325], [0.0041898537528293435, -0.00681506450420802, -7.9999960000003325], [0.004752543676563538, -0.0064353171847990635, -7.9999960000003325], [0.005281013196899368, -0.00600923275308828, -7.9999960000003325], [0.005771457101007579, -0.0055398792042646045, -7.9999960000003325], [0.006220343977209492, -0.0050306360901786395, -7.9999960000003325], [0.006624441642693277, -0.004485170185083887, -7.9999960000003325], [0.006980840416650868, -0.003907409083250431, -7.9999960000003325], [0.007286974071258697, -0.003301512918559866, -7.9999960000003325], [0.007540638309645985, -0.0026718444097128067, -7.9999960000003325], [0.007740006637801082, -0.0020229374467366614, -7.9999960000003325], [0.007883643516131161, -0.001359464444984614, -7.9999960000003325], [0.007970514695978278, -0.0006862027016913741, -7.9999960000003325], [0.00799999466666428, -7.999997333278022e-06, -7.9999960000003325]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}];\n",
       "    for ( var i=0 ; i < lines.length ; i++ ) addLine( lines[i] );\n",
       "\n",
       "    function addLine( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        for ( var i=0 ; i < json.points.length ; i++ ) {\n",
       "            var v = json.points[i];\n",
       "            geometry.vertices.push( new THREE.Vector3( a[0]*v[0], a[1]*v[1], a[2]*v[2] ) );\n",
       "        }\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var materialOptions = { color: json.color, linewidth: json.linewidth,\n",
       "                                transparent: transparent, opacity: json.opacity };\n",
       "\n",
       "        var mesh;\n",
       "        if ( json.linewidth > 1 && window.createFatLineStrip ) {\n",
       "            mesh = createFatLineStrip( geometry, materialOptions );\n",
       "        } else {\n",
       "            var material = new THREE.LineBasicMaterial( materialOptions );\n",
       "            mesh = new THREE.Line( geometry, material );\n",
       "        }\n",
       "\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    var surfaces = [];\n",
       "    for ( var i=0 ; i < surfaces.length ; i++ ) addSurface( surfaces[i] );\n",
       "\n",
       "    function addSurface( json ) {\n",
       "\n",
       "        var useFaceColors = 'faceColors' in json ? true : false;\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        for ( var i=0 ; i < json.vertices.length ; i++ ) {\n",
       "            var v = json.vertices[i];\n",
       "            geometry.vertices.push( new THREE.Vector3( a[0]*v.x, a[1]*v.y, a[2]*v.z ) );\n",
       "        }\n",
       "        for ( var i=0 ; i < json.faces.length ; i++ ) {\n",
       "            var f = json.faces[i];\n",
       "            for ( var j=0 ; j < f.length - 2 ; j++ ) {\n",
       "                var face = new THREE.Face3( f[0], f[j+1], f[j+2] );\n",
       "                if ( useFaceColors ) face.color.set( json.faceColors[i] );\n",
       "                geometry.faces.push( face );\n",
       "            }\n",
       "        }\n",
       "        geometry.computeVertexNormals();\n",
       "\n",
       "        var side = json.singleSide ? THREE.FrontSide : THREE.DoubleSide;\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var depthWrite = 'depthWrite' in json ? json.depthWrite : !transparent;\n",
       "        var flatShading = json.useFlatShading ? json.useFlatShading : false;\n",
       "\n",
       "        var material = new THREE.MeshPhongMaterial( { side: side,\n",
       "                                     color: useFaceColors ? 'white' : json.color,\n",
       "                                     vertexColors: useFaceColors ? THREE.FaceColors : THREE.NoColors,\n",
       "                                     transparent: transparent, opacity: json.opacity,\n",
       "                                     shininess: 20, flatShading: flatShading,\n",
       "                                     depthWrite: depthWrite } );\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var mesh = new THREE.Mesh( geometry, material );\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        if ( transparent && json.renderOrder ) mesh.renderOrder = json.renderOrder;\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "        if ( json.showMeshGrid ) addSurfaceMeshGrid( json );\n",
       "\n",
       "    }\n",
       "\n",
       "    function addSurfaceMeshGrid( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "\n",
       "        for ( var i=0 ; i < json.faces.length ; i++ ) {\n",
       "            var f = json.faces[i];\n",
       "            for ( var j=0 ; j < f.length ; j++ ) {\n",
       "                var k = j === f.length-1 ? 0 : j+1;\n",
       "                var v1 = json.vertices[f[j]];\n",
       "                var v2 = json.vertices[f[k]];\n",
       "                // vertices in opposite directions on neighboring faces\n",
       "                var nudge = f[j] < f[k] ? .0005*zRange : -.0005*zRange;\n",
       "                geometry.vertices.push( new THREE.Vector3( a[0]*v1.x, a[1]*v1.y, a[2]*(v1.z+nudge) ) );\n",
       "                geometry.vertices.push( new THREE.Vector3( a[0]*v2.x, a[1]*v2.y, a[2]*(v2.z+nudge) ) );\n",
       "            }\n",
       "        }\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var gridColor = options.theme === 'dark' ? 'white' : 'black';\n",
       "        var linewidth = json.linewidth || 1;\n",
       "        var materialOptions = { color: gridColor, linewidth: linewidth };\n",
       "\n",
       "        var mesh;\n",
       "        if ( linewidth > 1 && window.createFatLineSegments ) {\n",
       "            mesh = createFatLineSegments( geometry, materialOptions );\n",
       "        } else {\n",
       "            var material = new THREE.LineBasicMaterial( materialOptions );\n",
       "            mesh = new THREE.LineSegments( geometry, material );\n",
       "        }\n",
       "\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    function render() {\n",
       "\n",
       "        if ( window.updateAnimation ) animate = updateAnimation();\n",
       "        if ( animate ) requestAnimationFrame( render );\n",
       "\n",
       "        renderer.render( scene, camera );\n",
       "\n",
       "    }\n",
       "\n",
       "    render();\n",
       "    controls.update();\n",
       "    if ( !animate ) render();\n",
       "\n",
       "\n",
       "    // menu functions\n",
       "\n",
       "    function toggleMenu() {\n",
       "\n",
       "        var m = document.getElementById( 'menu-content' );\n",
       "        if ( m.style.display === 'block' ) m.style.display = 'none'\n",
       "        else m.style.display = 'block';\n",
       "\n",
       "    }\n",
       "\n",
       "\n",
       "    function saveAsPNG() {\n",
       "\n",
       "        var a = document.body.appendChild( document.createElement( 'a' ) );\n",
       "        a.href = renderer.domElement.toDataURL( 'image/png' );\n",
       "        a.download = 'screenshot';\n",
       "        a.click();\n",
       "\n",
       "    }\n",
       "\n",
       "    function saveAsHTML() {\n",
       "\n",
       "        toggleMenu(); // otherwise visible in output\n",
       "        event.stopPropagation();\n",
       "\n",
       "        var blob = new Blob( [ '<!DOCTYPE html>\\n' + document.documentElement.outerHTML ] );\n",
       "        var a = document.body.appendChild( document.createElement( 'a' ) );\n",
       "        a.href = window.URL.createObjectURL( blob );\n",
       "        a.download = suggestFilename();\n",
       "        a.click();\n",
       "\n",
       "        function suggestFilename() {\n",
       "            if ( !document.title ) {\n",
       "                return 'graphic.html';\n",
       "            } else if ( /\\.html?$/i.test( document.title ) ) {\n",
       "                return document.title; // already ends in .htm or .html\n",
       "            } else {\n",
       "                return document.title + '.html';\n",
       "            }\n",
       "        }\n",
       "\n",
       "    }\n",
       "\n",
       "    function getViewpoint() {\n",
       "\n",
       "        function roundTo( x, n ) { return +x.toFixed(n); }\n",
       "\n",
       "        var v = camera.quaternion.inverse();\n",
       "        var r = Math.sqrt( v.x*v.x + v.y*v.y + v.z*v.z );\n",
       "        var axis = [ roundTo( v.x / r, 4 ), roundTo( v.y / r, 4 ), roundTo( v.z / r, 4 ) ];\n",
       "        var angle = roundTo( 2 * Math.atan2( r, v.w ) * 180 / Math.PI, 2 );\n",
       "\n",
       "        var textArea = document.createElement( 'textarea' );\n",
       "        textArea.textContent = JSON.stringify( axis ) + ',' + angle;\n",
       "        textArea.style.csstext = 'position: absolute; top: -100%';\n",
       "        document.body.append( textArea );\n",
       "        textArea.select();\n",
       "        document.execCommand( 'copy' );\n",
       "\n",
       "        var m = document.getElementById( 'menu-message' );\n",
       "        m.innerHTML = 'Viewpoint copied to clipboard';\n",
       "        m.style.display = 'block';\n",
       "        setTimeout( function() { m.style.display = 'none'; }, 2000 );\n",
       "\n",
       "    }\n",
       "\n",
       "    function getCamera() {\n",
       "\n",
       "        function roundTo( x, n ) { return +x.toFixed(n); }\n",
       "\n",
       "        var pos = camera.position;\n",
       "        var pos_r = [ roundTo( pos.x, 4 ), roundTo( pos.y, 4 ), roundTo( pos.z, 4 ) ];\n",
       "   //     var up = camera.up; // up is always (0,0,1)\n",
       "        var textArea = document.createElement('textarea');\n",
       "        var cam_position = JSON.stringify(pos_r);\n",
       "        textArea.textContent = ',camera_position=' + cam_position;\n",
       "        textArea.style.csstext = 'position: absolute; top: -100%';\n",
       "        document.body.append( textArea );\n",
       "        textArea.select();\n",
       "        document.execCommand( 'copy' );\n",
       "\n",
       "        var m = document.getElementById( 'menu-message' );\n",
       "        m.innerHTML = 'Camera position '+ cam_position+' copied to clipboard';\n",
       "        m.style.display = 'block';\n",
       "        setTimeout( function() { m.style.display = 'none'; }, 2000 );\n",
       "\n",
       "    }\n",
       "\n",
       "</script>\n",
       "\n",
       "<div id=&quot;menu-container&quot; onclick=&quot;toggleMenu()&quot;>&#x24d8;\n",
       "<div id=&quot;menu-message&quot;></div>\n",
       "<div id=&quot;menu-content&quot;>\n",
       "<div onclick=&quot;saveAsPNG()&quot;>Save as PNG</div>\n",
       "<div onclick=&quot;saveAsHTML()&quot;>Save as HTML</div>\n",
       "<div onclick=&quot;getCamera()&quot;>Get camera</div>\n",
       "<div onclick=&quot;getViewpoint()&quot;>Get viewpoint</div>\n",
       "<div>Close Menu</div>\n",
       "</div></div>\n",
       "\n",
       "\n",
       "</body>\n",
       "</html>\n",
       "\"\n",
       "        width=\"100%\"\n",
       "        height=\"400\"\n",
       "        style=\"border: 0;\">\n",
       "</iframe>\n"
      ],
      "text/plain": [
       "Graphics3d Object"
      ]
     },
     "execution_count": 48,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Y.plot(X,color={r:'red', th:'green', ph:'blue'})"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "`Y.plot(X)` コマンドを使って、座標系$Y$を座標系$X$を使って表示することができます。このコマンドは、座標系$Y$で一定の座標値を持つ線を、座標系$X$に基づく\"直交フレーム\"中に表示します。\n",
    "<div hidden>\n",
    "We can draw the chart $Y$ in terms of the chart $X$ via the command `Y.plot(X)`, which shows the lines of constant coordinates from the $Y$ chart in a \"Cartesian frame\" based on the $X$ coordinates:\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 49,
   "metadata": {
    "scrolled": true
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<iframe srcdoc=\"<!DOCTYPE html>\n",
       "<html>\n",
       "<head>\n",
       "<title></title>\n",
       "<meta charset=&quot;utf-8&quot;>\n",
       "<meta name=viewport content=&quot;width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0&quot;>\n",
       "<style>\n",
       "\n",
       "    body { margin: 0px; overflow: hidden; }\n",
       "\n",
       "    #menu-container { position: absolute; bottom: 30px; right: 40px; cursor: default; }\n",
       "\n",
       "    #menu-message { position: absolute; bottom: 0px; right: 0px; white-space: nowrap;\n",
       "                    display: none; background-color: #F5F5F5; padding: 10px; }\n",
       "\n",
       "    #menu-content { position: absolute; bottom: 0px; right: 0px;\n",
       "                    display: none; background-color: #F5F5F5; border-bottom: 1px solid black;\n",
       "                    border-right: 1px solid black; border-left: 1px solid black; }\n",
       "\n",
       "    #menu-content div { border-top: 1px solid black; padding: 10px; white-space: nowrap; }\n",
       "\n",
       "    #menu-content div:hover { background-color: #FEFEFE; }\n",
       "\n",
       "    .dark-theme #menu-container { color: white; }\n",
       "\n",
       "    .dark-theme #menu-message { background-color: #181818; }\n",
       "\n",
       "    .dark-theme #menu-content { background-color: #181818; border-color: white; }\n",
       "\n",
       "    .dark-theme #menu-content div { border-color: white; }\n",
       "\n",
       "    .dark-theme #menu-content div:hover { background-color: #303030; }\n",
       "\n",
       "</style>\n",
       "\n",
       "</head>\n",
       "\n",
       "<body>\n",
       "\n",
       "<script src=&quot;/nbextensions/threejs-sage/r122/three.min.js&quot;></script>\n",
       "<script>\n",
       "  if ( !window.THREE ) document.write(' \\\n",
       "<script src=&quot;https://cdn.jsdelivr.net/gh/sagemath/threejs-sage@r122/build/three.min.js&quot;><\\/script> \\\n",
       "            ');\n",
       "</script>\n",
       "        \n",
       "<script>\n",
       "\n",
       "    var options = {&quot;animate&quot;: false, &quot;animationControls&quot;: true, &quot;aspectRatio&quot;: [1.0, 1.0, 1.0], &quot;autoScaling&quot;: [false, false, false], &quot;autoPlay&quot;: true, &quot;axes&quot;: false, &quot;axesLabels&quot;: [&quot;x&quot;, &quot;y&quot;, &quot;z&quot;], &quot;axesLabelsStyle&quot;: null, &quot;decimals&quot;: 2, &quot;delay&quot;: 20, &quot;frame&quot;: true, &quot;loop&quot;: true, &quot;projection&quot;: &quot;perspective&quot;, &quot;theme&quot;: &quot;light&quot;, &quot;viewpoint&quot;: false};\n",
       "    var animate = options.animate;\n",
       "\n",
       "    if ( options.theme === 'dark' )\n",
       "        document.body.className = 'dark-theme';\n",
       "\n",
       "    var scene = new THREE.Scene();\n",
       "\n",
       "    var renderer = new THREE.WebGLRenderer( { antialias: true, preserveDrawingBuffer: true } );\n",
       "    renderer.setPixelRatio( window.devicePixelRatio );\n",
       "    renderer.setSize( window.innerWidth, window.innerHeight );\n",
       "    renderer.setClearColor( options.theme === 'dark' ? 0 : 0xffffff, 1 );\n",
       "    document.body.appendChild( renderer.domElement );\n",
       "\n",
       "    var b = [{&quot;x&quot;:-8.799999800000016, &quot;y&quot;:-8.799998900000022, &quot;z&quot;:-8.799995600000365}, {&quot;x&quot;:7.9999960000003325, &quot;y&quot;:7.99999900000002, &quot;z&quot;:7.9999960000003325}]; // bounds\n",
       "\n",
       "    if ( b[0].x === b[1].x ) {\n",
       "        b[0].x -= 1;\n",
       "        b[1].x += 1;\n",
       "    }\n",
       "    if ( b[0].y === b[1].y ) {\n",
       "        b[0].y -= 1;\n",
       "        b[1].y += 1;\n",
       "    }\n",
       "    if ( b[0].z === b[1].z ) {\n",
       "        b[0].z -= 1;\n",
       "        b[1].z += 1;\n",
       "    }\n",
       "\n",
       "    var rxRange = Math.sqrt( Math.pow( b[1].z - b[0].z, 2 )\n",
       "                            + Math.pow( b[1].y - b[0].y, 2 ) );\n",
       "    var ryRange = Math.sqrt( Math.pow( b[1].x - b[0].x, 2 )\n",
       "                            + Math.pow( b[1].z - b[0].z, 2 ) );\n",
       "    var rzRange = Math.sqrt( Math.pow( b[1].x - b[0].x, 2 )\n",
       "                            + Math.pow( b[1].y - b[0].y, 2 ) );\n",
       "    var xRange = b[1].x - b[0].x;\n",
       "    var yRange = b[1].y - b[0].y;\n",
       "    var zRange = b[1].z - b[0].z;\n",
       "\n",
       "    var ar = options.aspectRatio;\n",
       "    var a = [ ar[0], ar[1], ar[2] ]; // aspect multipliers\n",
       "\n",
       "    var autoScaling = options.autoScaling;\n",
       "    var autoAspect = 2.5;\n",
       "    if ( xRange > autoAspect * rxRange && autoScaling[0] ) a[0] = autoAspect * rxRange / xRange;\n",
       "    if ( yRange > autoAspect * ryRange && autoScaling[1] ) a[1] = autoAspect * ryRange / yRange;\n",
       "    if ( zRange > autoAspect * rzRange && autoScaling[2] ) a[2] = autoAspect * rzRange / zRange;\n",
       "\n",
       "    // Distance from (xMid,yMid,zMid) to any corner of the bounding box, after applying aspectRatio\n",
       "    var midToCorner = Math.sqrt( a[0]*a[0]*xRange*xRange + a[1]*a[1]*yRange*yRange + a[2]*a[2]*zRange*zRange ) / 2;\n",
       "\n",
       "    var xMid = ( b[0].x + b[1].x ) / 2;\n",
       "    var yMid = ( b[0].y + b[1].y ) / 2;\n",
       "    var zMid = ( b[0].z + b[1].z ) / 2;\n",
       "\n",
       "    var box = new THREE.Geometry();\n",
       "    box.vertices.push( new THREE.Vector3( a[0]*b[0].x, a[1]*b[0].y, a[2]*b[0].z ) );\n",
       "    box.vertices.push( new THREE.Vector3( a[0]*b[1].x, a[1]*b[1].y, a[2]*b[1].z ) );\n",
       "    var boxMesh = new THREE.Line( box );\n",
       "    var boxColor = options.theme === 'dark' ? 'white' : 'black';\n",
       "    if ( options.frame ) scene.add( new THREE.BoxHelper( boxMesh, boxColor ) );\n",
       "\n",
       "    if ( options.axesLabels ) {\n",
       "\n",
       "        var d = options.decimals; // decimals\n",
       "        var offsetRatio = 0.1;\n",
       "        var al = options.axesLabels;\n",
       "        var als = options.axesLabelsStyle || [{}, {}, {}];\n",
       "\n",
       "        var offset = offsetRatio * a[1]*( b[1].y - b[0].y );\n",
       "        var xm = xMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(xm) ) xm = xm.substr(1);\n",
       "        addLabel( al[0] + '=' + xm, a[0]*xMid, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "        addLabel( ( b[0].x ).toFixed(d), a[0]*b[0].x, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "        addLabel( ( b[1].x ).toFixed(d), a[0]*b[1].x, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "\n",
       "        var offset = offsetRatio * a[0]*( b[1].x - b[0].x );\n",
       "        var ym = yMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(ym) ) ym = ym.substr(1);\n",
       "        addLabel( al[1] + '=' + ym, a[0]*b[1].x+offset, a[1]*yMid, a[2]*b[0].z, als[1] );\n",
       "        addLabel( ( b[0].y ).toFixed(d), a[0]*b[1].x+offset, a[1]*b[0].y, a[2]*b[0].z, als[1] );\n",
       "        addLabel( ( b[1].y ).toFixed(d), a[0]*b[1].x+offset, a[1]*b[1].y, a[2]*b[0].z, als[1] );\n",
       "\n",
       "        var offset = offsetRatio * a[1]*( b[1].y - b[0].y );\n",
       "        var zm = zMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(zm) ) zm = zm.substr(1);\n",
       "        addLabel( al[2] + '=' + zm, a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*zMid, als[2] );\n",
       "        addLabel( ( b[0].z ).toFixed(d), a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*b[0].z, als[2] );\n",
       "        addLabel( ( b[1].z ).toFixed(d), a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*b[1].z, als[2] );\n",
       "\n",
       "    }\n",
       "\n",
       "    function addLabel( text, x, y, z, style ) {\n",
       "\n",
       "        var color = style.color || 'black';\n",
       "        var fontSize = style.fontSize || 14;\n",
       "        var fontFamily = style.fontFamily || 'monospace';\n",
       "        var fontStyle = style.fontStyle || 'normal';\n",
       "        var fontWeight = style.fontWeight || 'normal';\n",
       "        var opacity = style.opacity || 1;\n",
       "\n",
       "        if ( options.theme === 'dark' )\n",
       "            if ( color === 'black' || color === '#000000' )\n",
       "                color = 'white';\n",
       "\n",
       "        if ( Array.isArray( fontStyle ) ) {\n",
       "            fontFamily = fontFamily.map( function( f ) {\n",
       "                // Need to put quotes around fonts that have whitespace in their names.\n",
       "                return /\\s/.test( f ) ? '&quot;' + f + '&quot;' : f;\n",
       "            }).join(', ');\n",
       "        }\n",
       "\n",
       "        var canvas = document.createElement( 'canvas' );\n",
       "        var context = canvas.getContext( '2d' );\n",
       "        var pixelRatio = Math.round( window.devicePixelRatio );\n",
       "\n",
       "        // For example: italic bold 20px &quot;Times New Roman&quot;, Georgia, serif\n",
       "        var font = [fontStyle, fontWeight, fontSize + 'px', fontFamily].join(' ');\n",
       "\n",
       "        context.font = font;\n",
       "        var width = context.measureText( text ).width;\n",
       "        var height = fontSize;\n",
       "\n",
       "        // The dimensions of the canvas's underlying image data need to be powers\n",
       "        // of two in order for the resulting texture to support mipmapping.\n",
       "        canvas.width = THREE.MathUtils.ceilPowerOfTwo( width * pixelRatio );\n",
       "        canvas.height = THREE.MathUtils.ceilPowerOfTwo( height * pixelRatio );\n",
       "\n",
       "        // Re-compute the unscaled dimensions after the power of two conversion.\n",
       "        width = canvas.width / pixelRatio;\n",
       "        height = canvas.height / pixelRatio;\n",
       "\n",
       "        canvas.style.width = width + 'px';\n",
       "        canvas.style.height = height + 'px';\n",
       "\n",
       "        context.scale( pixelRatio, pixelRatio );\n",
       "        context.fillStyle = color;\n",
       "        context.font = font; // Must be set again after measureText.\n",
       "        context.textAlign = 'center';\n",
       "        context.textBaseline = 'middle';\n",
       "        context.fillText( text, width/2, height/2 );\n",
       "\n",
       "        var texture = new THREE.Texture( canvas );\n",
       "        texture.needsUpdate = true;\n",
       "\n",
       "        var materialOptions = { map: texture, sizeAttenuation: false, depthWrite: false };\n",
       "        if ( opacity < 1 ) {\n",
       "            // Setting opacity=1 would cause the texture's alpha component to be\n",
       "            // discarded, giving the text a black background instead of the\n",
       "            // background being transparent.\n",
       "            materialOptions.opacity = opacity;\n",
       "        }\n",
       "        var sprite = new THREE.Sprite( new THREE.SpriteMaterial( materialOptions ) );\n",
       "        sprite.position.set( x, y, z );\n",
       "\n",
       "        // Scaling factor, chosen somewhat arbitrarily so that the size of the text\n",
       "        // is consistent with previously generated plots.\n",
       "        var scale = 1/625;\n",
       "        if ( options.projection === 'orthographic' ) {\n",
       "            scale = midToCorner/256; // Needs to scale along with the plot itself.\n",
       "        }\n",
       "        sprite.scale.set( scale * width, scale * height, 1 );\n",
       "\n",
       "        scene.add( sprite );\n",
       "\n",
       "        return sprite;\n",
       "\n",
       "    }\n",
       "\n",
       "    if ( options.axes ) scene.add( new THREE.AxesHelper( Math.min( a[0]*b[1].x, a[1]*b[1].y, a[2]*b[1].z ) ) );\n",
       "\n",
       "    var camera = createCamera();\n",
       "    camera.up.set( 0, 0, 1 );\n",
       "    camera.position.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "\n",
       "    // camera is positioned so that the line from the camera to the center\n",
       "    // of the bounding sphere of the objects makes an angle of 60 degrees with x-axis\n",
       "    // and an angle of 30 degrees with z-axis and the field of view of the camera looking\n",
       "    // at the center has an angle of 45 degrees.\n",
       "    const sin8 = Math.sin(Math.PI / 8);\n",
       "    const sin5 = Math.sin(Math.PI / 5);\n",
       "    const cos5 = Math.cos(Math.PI / 5);\n",
       "    const sin3 = Math.sin(Math.PI / 3);\n",
       "    const cos3 = Math.cos(Math.PI / 3);\n",
       "    var r = midToCorner / sin8;\n",
       "    var offset = new THREE.Vector3( r * sin3 * cos5, r * sin3 * sin5, r * cos3 );\n",
       "\n",
       "    if ( options.viewpoint ) {\n",
       "\n",
       "        var aa = options.viewpoint;\n",
       "        var axis = new THREE.Vector3( aa[0][0], aa[0][1], aa[0][2] ).normalize();\n",
       "        var angle = aa[1] * Math.PI / 180;\n",
       "        var q = new THREE.Quaternion().setFromAxisAngle( axis, angle ).inverse();\n",
       "\n",
       "        offset.set( 0, 0, offset.length() );\n",
       "        offset.applyQuaternion( q );\n",
       "\n",
       "    }\n",
       "\n",
       "    camera.position.add( offset );\n",
       "\n",
       "    function createCamera() {\n",
       "\n",
       "        var aspect = window.innerWidth / window.innerHeight;\n",
       "\n",
       "        // Scale the near and far clipping planes along with the overall plot size.\n",
       "        var nearClip = 0.01 * midToCorner;\n",
       "        var farClip = 100 * midToCorner;\n",
       "\n",
       "        if ( options.projection === 'orthographic' ) {\n",
       "            var camera = new THREE.OrthographicCamera( -1, 1, 1, -1, -farClip, farClip );\n",
       "            updateCameraAspect( camera, aspect );\n",
       "            return camera;\n",
       "        }\n",
       "\n",
       "        return new THREE.PerspectiveCamera( 45, aspect, nearClip, farClip );\n",
       "\n",
       "    }\n",
       "\n",
       "    function updateCameraAspect( camera, aspect ) {\n",
       "\n",
       "        if ( camera.isPerspectiveCamera ) {\n",
       "            camera.aspect = aspect;\n",
       "        } else if ( camera.isOrthographicCamera ) {\n",
       "            // Fit the camera frustum to the bounding box's diagonal so that the entire plot fits\n",
       "            // within at the default zoom level and camera position.\n",
       "            if ( aspect > 1 ) { // Wide window\n",
       "                camera.top = midToCorner;\n",
       "                camera.right = midToCorner * aspect;\n",
       "            } else { // Tall or square window\n",
       "                camera.top = midToCorner / aspect;\n",
       "                camera.right = midToCorner;\n",
       "            }\n",
       "            camera.bottom = -camera.top;\n",
       "            camera.left = -camera.right;\n",
       "        }\n",
       "\n",
       "        camera.updateProjectionMatrix();\n",
       "\n",
       "    }\n",
       "\n",
       "    var lights = [{&quot;x&quot;:-5, &quot;y&quot;:3, &quot;z&quot;:0, &quot;color&quot;:&quot;#7f7f7f&quot;, &quot;parent&quot;:&quot;camera&quot;}];\n",
       "    for ( var i=0 ; i < lights.length ; i++ ) {\n",
       "        var light = new THREE.DirectionalLight( lights[i].color, 1 );\n",
       "        light.position.set( a[0]*lights[i].x, a[1]*lights[i].y, a[2]*lights[i].z );\n",
       "        if ( lights[i].parent === 'camera' ) {\n",
       "            light.target.position.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "            scene.add( light.target );\n",
       "            camera.add( light );\n",
       "        } else scene.add( light );\n",
       "    }\n",
       "    scene.add( camera );\n",
       "\n",
       "    var ambient = {&quot;color&quot;:&quot;#7f7f7f&quot;};\n",
       "    scene.add( new THREE.AmbientLight( ambient.color, 1 ) );\n",
       "\n",
       "    var controls = new THREE.OrbitControls( camera, renderer.domElement );\n",
       "    controls.target.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "    controls.addEventListener( 'change', function() { if ( !animate ) render(); } );\n",
       "\n",
       "    window.addEventListener( 'resize', function() {\n",
       "\n",
       "        renderer.setSize( window.innerWidth, window.innerHeight );\n",
       "        updateCameraAspect( camera, window.innerWidth / window.innerHeight );\n",
       "        if ( window.rescaleFatLines ) rescaleFatLines();\n",
       "        if ( !animate ) render();\n",
       "\n",
       "    } );\n",
       "\n",
       "    var texts = [{&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  x&quot;, &quot;x&quot;: -1.999999833302013e-06, &quot;y&quot;: -8.799998900000022, &quot;z&quot;: -8.799995600000365}, {&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  y&quot;, &quot;x&quot;: -8.799999800000016, &quot;y&quot;: 0.0, &quot;z&quot;: -8.799995600000365}, {&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  z&quot;, &quot;x&quot;: -8.799999800000016, &quot;y&quot;: -8.799998900000022, &quot;z&quot;: 0.0}];\n",
       "    for ( var i=0 ; i < texts.length ; i++ ) addText( texts[i] );\n",
       "\n",
       "    function addText( json ) {\n",
       "        var sprite = addLabel( json.text, a[0]*json.x, a[1]*json.y, a[2]*json.z, json );\n",
       "        sprite.userData = json;\n",
       "    }\n",
       "\n",
       "    var points = [];\n",
       "    for ( var i=0 ; i < points.length ; i++ ) addPoint( points[i] );\n",
       "\n",
       "    function addPoint( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        var v = json.point;\n",
       "        geometry.vertices.push( new THREE.Vector3( a[0]*v[0], a[1]*v[1], a[2]*v[2] ) );\n",
       "\n",
       "        var canvas = document.createElement( 'canvas' );\n",
       "        canvas.width = 128;\n",
       "        canvas.height = 128;\n",
       "\n",
       "        var context = canvas.getContext( '2d' );\n",
       "        context.arc( 64, 64, 64, 0, 2 * Math.PI );\n",
       "        context.fillStyle = json.color;\n",
       "        context.fill();\n",
       "\n",
       "        var texture = new THREE.Texture( canvas );\n",
       "        texture.needsUpdate = true;\n",
       "\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var size = camera.isOrthographicCamera ? json.size : json.size/100;\n",
       "        var material = new THREE.PointsMaterial( { size: size, map: texture,\n",
       "                                                   transparent: transparent, opacity: json.opacity,\n",
       "                                                   alphaTest: .1 } );\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var mesh = new THREE.Points( geometry, material );\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    var lines = [{&quot;points&quot;: [[9.999993333334667e-07, 9.999996666667112e-10, 0.0009999995000000417], [0.0001090945218648794, 1.0909455822973456e-07, 0.10909454004730183], [0.00021718904439642535, 2.1718911679280245e-07, 0.21718908059460362], [0.00032528356692797125, 3.252836753558703e-07, 0.3252836211419054], [0.0004333780894595172, 4.3337823391893813e-07, 0.43337816168920723], [0.0005414726119910632, 5.41472792482006e-07, 0.541472702236509], [0.0006495671345226092, 6.495673510450739e-07, 0.6495672427838108], [0.000757661657054155, 7.576619096081418e-07, 0.7576617833311126], [0.000865756179585701, 8.657564681712096e-07, 0.8657563238784144], [0.0009738507021172468, 9.738510267342775e-07, 0.9738508644257161], [0.0010819452246487928, 1.0819455852973452e-06, 1.081945404973018], [0.0011900397471803386, 1.190040143860413e-06, 1.1900399455203197], [0.0012981342697118846, 1.298134702423481e-06, 1.2981344860676214], [0.0014062287922434306, 1.4062292609865488e-06, 1.4062290266149233], [0.0015143233147749764, 1.5143238195496166e-06, 1.514323567162225], [0.0016224178373065224, 1.6224183781126845e-06, 1.6224181077095268], [0.0017305123598380682, 1.7305129366757522e-06, 1.7305126482568285], [0.0018386068823696142, 1.8386074952388201e-06, 1.8386071888041304], [0.0019467014049011602, 1.9467020538018883e-06, 1.9467017293514322], [0.002054795927432706, 2.0547966123649558e-06, 2.0547962698987337], [0.0021628904499642514, 2.1628911709280233e-06, 2.162890810446035], [0.0022709849724957976, 2.2709857294910912e-06, 2.270985350993337], [0.002379079495027343, 2.3790802880541587e-06, 2.3790798915406386], [0.002487174017558889, 2.4871748466172262e-06, 2.48717443208794], [0.0025952685400904346, 2.595269405180294e-06, 2.5952689726352416], [0.00270336306262198, 2.7033639637433617e-06, 2.703363513182543], [0.0028114575851535257, 2.811458522306429e-06, 2.8114580537298446], [0.0029195521076850715, 2.9195530808694967e-06, 2.919552594277146], [0.0030276466302166173, 3.0276476394325646e-06, 3.027647134824448], [0.003135741152748163, 3.135742197995632e-06, 3.1357416753717495], [0.003243835675279709, 3.2438367565586996e-06, 3.243836215919051], [0.0033519301978112543, 3.3519313151217676e-06, 3.3519307564663525], [0.0034600247203428, 3.460025873684835e-06, 3.460025297013654], [0.003568119242874346, 3.5681204322479026e-06, 3.5681198375609555], [0.0036762137654058917, 3.6762149908109705e-06, 3.6762143781082575], [0.0037843082879374375, 3.784309549374038e-06, 3.784308918655559], [0.0038924028104689833, 3.8924041079371055e-06, 3.8924034592028605], [0.004000497333000529, 4.000498666500173e-06, 4.000497999750162], [0.004108591855532074, 4.1085932250632406e-06, 4.1085925402974635], [0.00421668637806362, 4.216687783626308e-06, 4.216687080844765], [0.004324780900595166, 4.3247823421893764e-06, 4.3247816213920665], [0.004432875423126711, 4.432876900752444e-06, 4.432876161939368], [0.004540969945658257, 4.5409714593155114e-06, 4.5409707024866695], [0.004649064468189803, 4.649066017878579e-06, 4.649065243033972], [0.004757158990721349, 4.7571605764416465e-06, 4.757159783581273], [0.004865253513252895, 4.865255135004714e-06, 4.865254324128575], [0.00497334803578444, 4.973349693567782e-06, 4.973348864675876], [0.005081442558315986, 5.08144425213085e-06, 5.081443405223178], [0.005189537080847532, 5.189538810693917e-06, 5.189537945770479], [0.005297631603379077, 5.297633369256985e-06, 5.297632486317781], [0.005405726125910623, 5.405727927820052e-06, 5.405727026865082], [0.005513820648442169, 5.51382248638312e-06, 5.513821567412384], [0.005621915170973714, 5.621917044946187e-06, 5.621916107959685], [0.00573000969350526, 5.730011603509256e-06, 5.730010648506987], [0.005838104216036806, 5.838106162072323e-06, 5.838105189054288], [0.005946198738568351, 5.946200720635391e-06, 5.94619972960159], [0.006054293261099897, 6.054295279198458e-06, 6.054294270148892], [0.006162387783631444, 6.162389837761526e-06, 6.162388810696194], [0.006270482306162989, 6.270484396324593e-06, 6.270483351243495], [0.006378576828694534, 6.378578954887661e-06, 6.378577891790797], [0.006486671351226081, 6.486673513450729e-06, 6.486672432338098], [0.006594765873757626, 6.594768072013797e-06, 6.5947669728854], [0.006702860396289171, 6.702862630576864e-06, 6.702861513432701], [0.006810954918820718, 6.810957189139932e-06, 6.810956053980003], [0.006919049441352263, 6.919051747702999e-06, 6.919050594527304], [0.007027143963883808, 7.027146306266067e-06, 7.027145135074606], [0.0071352384864153545, 7.135240864829134e-06, 7.135239675621907], [0.0072433330089469, 7.2433354233922025e-06, 7.243334216169209], [0.007351427531478446, 7.35142998195527e-06, 7.351428756716511], [0.007459522054009992, 7.4595245405183376e-06, 7.459523297263813], [0.007567616576541538, 7.567619099081405e-06, 7.567617837811114], [0.007675711099073083, 7.675713657644473e-06, 7.675712378358416], [0.007783805621604629, 7.78380821620754e-06, 7.783806918905717], [0.007891900144136174, 7.891902774770608e-06, 7.891901459453019], [0.007999994666667721, 7.999997333333675e-06, 7.99999600000032]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.99999895833003e-10, 9.999997083333652e-07, 0.0009999995000000417], [-5.4547285933240976e-08, 0.0001090945627753413, 0.10909454004730183], [-1.0859457197064895e-07, 0.00021718912584234922, 0.21718908059460362], [-1.6264185800805695e-07, 0.0003252836889093572, 0.3252836211419054], [-2.166891440454649e-07, 0.0004333782519763651, 0.43337816168920723], [-2.707364300828729e-07, 0.000541472815043373, 0.541472702236509], [-3.2478371612028086e-07, 0.000649567378110381, 0.6495672427838108], [-3.7883100215768883e-07, 0.0007576619411773889, 0.7576617833311126], [-4.3287828819509676e-07, 0.0008657565042443969, 0.8657563238784144], [-4.869255742325048e-07, 0.0009738510673114047, 0.9738508644257161], [-5.409728602699128e-07, 0.0010819456303784126, 1.081945404973018], [-5.950201463073206e-07, 0.0011900401934454206, 1.1900399455203197], [-6.490674323447286e-07, 0.0012981347565124285, 1.2981344860676214], [-7.031147183821366e-07, 0.0014062293195794364, 1.4062290266149233], [-7.571620044195447e-07, 0.0015143238826464444, 1.514323567162225], [-8.112092904569526e-07, 0.0016224184457134523, 1.6224181077095268], [-8.652565764943605e-07, 0.0017305130087804602, 1.7305126482568285], [-9.193038625317685e-07, 0.0018386075718474682, 1.8386071888041304], [-9.733511485691766e-07, 0.0019467021349144759, 1.9467017293514322], [-1.0273984346065844e-06, 0.002054796697981484, 2.0547962698987337], [-1.0814457206439923e-06, 0.0021628912610484915, 2.162890810446035], [-1.1354930066814001e-06, 0.002270985824115499, 2.270985350993337], [-1.1895402927188079e-06, 0.002379080387182507, 2.3790798915406386], [-1.2435875787562159e-06, 0.0024871749502495145, 2.48717443208794], [-1.2976348647936236e-06, 0.0025952695133165224, 2.5952689726352416], [-1.3516821508310314e-06, 0.0027033640763835303, 2.703363513182543], [-1.4057294368684394e-06, 0.002811458639450538, 2.8114580537298446], [-1.4597767229058473e-06, 0.0029195532025175453, 2.919552594277146], [-1.5138240089432553e-06, 0.0030276477655845533, 3.027647134824448], [-1.567871294980663e-06, 0.003135742328651561, 3.1357416753717495], [-1.6219185810180709e-06, 0.0032438368917185683, 3.243836215919051], [-1.6759658670554788e-06, 0.0033519314547855767, 3.3519307564663525], [-1.7300131530928866e-06, 0.003460026017852584, 3.460025297013654], [-1.7840604391302944e-06, 0.0035681205809195917, 3.5681198375609555], [-1.8381077251677024e-06, 0.0036762151439865996, 3.6762143781082575], [-1.8921550112051101e-06, 0.003784309707053607, 3.784308918655559], [-1.946202297242518e-06, 0.0038924042701206146, 3.8924034592028605], [-2.0002495832799257e-06, 0.004000498833187623, 4.000497999750162], [-2.0542968693173336e-06, 0.0041085933962546305, 4.1085925402974635], [-2.1083441553547416e-06, 0.004216687959321638, 4.216687080844765], [-2.162391441392149e-06, 0.0043247825223886455, 4.3247816213920665], [-2.216438727429557e-06, 0.004432877085455654, 4.432876161939368], [-2.2704860134669655e-06, 0.004540971648522661, 4.5409707024866695], [-2.324533299504373e-06, 0.004649066211589669, 4.649065243033972], [-2.378580585541781e-06, 0.004757160774656677, 4.757159783581273], [-2.432627871579189e-06, 0.004865255337723684, 4.865254324128575], [-2.486675157616597e-06, 0.004973349900790692, 4.973348864675876], [-2.5407224436540046e-06, 0.0050814444638577, 5.081443405223178], [-2.5947697296914126e-06, 0.005189539026924707, 5.189537945770479], [-2.6488170157288205e-06, 0.005297633589991716, 5.297632486317781], [-2.702864301766228e-06, 0.005405728153058723, 5.405727026865082], [-2.756911587803636e-06, 0.005513822716125731, 5.513821567412384], [-2.810958873841044e-06, 0.005621917279192738, 5.621916107959685], [-2.8650061598784516e-06, 0.0057300118422597465, 5.730010648506987], [-2.9190534459158596e-06, 0.005838106405326754, 5.838105189054288], [-2.9731007319532676e-06, 0.0059462009683937615, 5.94619972960159], [-3.027148017990675e-06, 0.00605429553146077, 6.054294270148892], [-3.081195304028083e-06, 0.0061623900945277765, 6.162388810696194], [-3.135242590065491e-06, 0.006270484657594785, 6.270483351243495], [-3.1892898761028986e-06, 0.006378579220661792, 6.378577891790797], [-3.2433371621403066e-06, 0.0064866737837288, 6.486672432338098], [-3.2973844481777146e-06, 0.006594768346795808, 6.5947669728854], [-3.351431734215122e-06, 0.006702862909862816, 6.702861513432701], [-3.4054790202525306e-06, 0.006810957472929823, 6.810956053980003], [-3.4595263062899385e-06, 0.006919052035996831, 6.919050594527304], [-3.513573592327346e-06, 0.007027146599063839, 7.027145135074606], [-3.567620878364754e-06, 0.007135241162130846, 7.135239675621907], [-3.621668164402162e-06, 0.007243335725197854, 7.243334216169209], [-3.67571545043957e-06, 0.0073514302882648624, 7.351428756716511], [-3.7297627364769776e-06, 0.007459524851331869, 7.459523297263813], [-3.7838100225143856e-06, 0.0075676194143988774, 7.567617837811114], [-3.8378573085517935e-06, 0.007675713977465885, 7.675712378358416], [-3.891904594589201e-06, 0.0077838085405328925, 7.783806918905717], [-3.945951880626609e-06, 0.0078919031035999, 7.891901459453019], [-3.999999166664017e-06, 0.007999997666666907, 7.99999600000032]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-9.999998333333416e-07, 5.665537953391544e-22, 0.0009999995000000417], [-0.00010909457641216306, 6.180795661855396e-20, 0.10909454004730183], [-0.0002171891529909928, 1.2304935944176878e-19, 0.21718908059460362], [-0.0003252837295698225, 1.8429076226498358e-19, 0.3252836211419054], [-0.0004333783061486522, 2.455321650881984e-19, 0.43337816168920723], [-0.0005414728827274819, 3.067735679114132e-19, 0.541472702236509], [-0.0006495674593063117, 3.6801497073462795e-19, 0.6495672427838108], [-0.0007576620358851414, 4.292563735578428e-19, 0.7576617833311126], [-0.0008657566124639711, 4.9049777638105765e-19, 0.8657563238784144], [-0.0009738511890428008, 5.517391792042724e-19, 0.9738508644257161], [-0.0010819457656216305, 6.129805820274871e-19, 1.081945404973018], [-0.00119004034220046, 6.742219848507019e-19, 1.1900399455203197], [-0.00129813491877929, 7.3546338767391675e-19, 1.2981344860676214], [-0.0014062294953581197, 7.967047904971315e-19, 1.4062290266149233], [-0.0015143240719369493, 8.579461933203463e-19, 1.514323567162225], [-0.001622418648515779, 9.19187596143561e-19, 1.6224181077095268], [-0.0017305132250946087, 9.80428998966776e-19, 1.7305126482568285], [-0.0018386078016734385, 1.0416704017899908e-18, 1.8386071888041304], [-0.0019467023782522683, 1.1029118046132056e-18, 1.9467017293514322], [-0.0020547969548310977, 1.1641532074364204e-18, 2.0547962698987337], [-0.002162891531409927, 1.225394610259635e-18, 2.162890810446035], [-0.002270986107988757, 1.2866360130828497e-18, 2.270985350993337], [-0.002379080684567586, 1.3478774159060643e-18, 2.3790798915406386], [-0.0024871752611464156, 1.409118818729279e-18, 2.48717443208794], [-0.0025952698377252454, 1.4703602215524937e-18, 2.5952689726352416], [-0.0027033644143040748, 1.5316016243757084e-18, 2.703363513182543], [-0.002811458990882904, 1.592843027198923e-18, 2.8114580537298446], [-0.0029195535674617335, 1.6540844300221378e-18, 2.919552594277146], [-0.0030276481440405633, 1.7153258328453524e-18, 3.027647134824448], [-0.0031357427206193927, 1.776567235668567e-18, 3.1357416753717495], [-0.003243837297198222, 1.837808638491782e-18, 3.243836215919051], [-0.003351931873777052, 1.8990500413149967e-18, 3.3519307564663525], [-0.0034600264503558812, 1.960291444138211e-18, 3.460025297013654], [-0.0035681210269347106, 2.021532846961426e-18, 3.5681198375609555], [-0.0036762156035135404, 2.0827742497846406e-18, 3.6762143781082575], [-0.0037843101800923698, 2.1440156526078554e-18, 3.784308918655559], [-0.003892404756671199, 2.20525705543107e-18, 3.8924034592028605], [-0.0040004993332500285, 2.2664984582542846e-18, 4.000497999750162], [-0.004108593909828858, 2.3277398610774994e-18, 4.1085925402974635], [-0.004216688486407687, 2.388981263900714e-18, 4.216687080844765], [-0.0043247830629865175, 2.450222666723929e-18, 4.3247816213920665], [-0.004432877639565347, 2.511464069547143e-18, 4.432876161939368], [-0.004540972216144176, 2.5727054723703577e-18, 4.5409707024866695], [-0.004649066792723006, 2.6339468751935725e-18, 4.649065243033972], [-0.004757161369301835, 2.6951882780167872e-18, 4.757159783581273], [-0.004865255945880664, 2.7564296808400016e-18, 4.865254324128575], [-0.004973350522459495, 2.8176710836632164e-18, 4.973348864675876], [-0.005081445099038324, 2.878912486486431e-18, 5.081443405223178], [-0.005189539675617153, 2.940153889309646e-18, 5.189537945770479], [-0.005297634252195983, 3.0013952921328607e-18, 5.297632486317781], [-0.005405728828774812, 3.062636694956075e-18, 5.405727026865082], [-0.0055138234053536414, 3.12387809777929e-18, 5.513821567412384], [-0.005621917981932471, 3.1851195006025047e-18, 5.621916107959685], [-0.005730012558511301, 3.2463609034257194e-18, 5.730010648506987], [-0.00583810713509013, 3.307602306248934e-18, 5.838105189054288], [-0.00594620171166896, 3.3688437090721486e-18, 5.94619972960159], [-0.006054296288247789, 3.4300851118953634e-18, 6.054294270148892], [-0.0061623908648266185, 3.4913265147185785e-18, 6.162388810696194], [-0.006270485441405448, 3.5525679175417925e-18, 6.270483351243495], [-0.006378580017984277, 3.613809320365007e-18, 6.378577891790797], [-0.0064866745945631075, 3.675050723188222e-18, 6.486672432338098], [-0.006594769171141937, 3.736292126011437e-18, 6.5947669728854], [-0.006702863747720766, 3.797533528834652e-18, 6.702861513432701], [-0.006810958324299596, 3.8587749316578664e-18, 6.810956053980003], [-0.006919052900878425, 3.920016334481081e-18, 6.919050594527304], [-0.007027147477457254, 3.981257737304295e-18, 7.027145135074606], [-0.007135242054036084, 4.04249914012751e-18, 7.135239675621907], [-0.007243336630614914, 4.103740542950725e-18, 7.243334216169209], [-0.007351431207193743, 4.1649819457739395e-18, 7.351428756716511], [-0.007459525783772573, 4.226223348597154e-18, 7.459523297263813], [-0.007567620360351402, 4.287464751420369e-18, 7.567617837811114], [-0.0076757149369302315, 4.348706154243584e-18, 7.675712378358416], [-0.007783809513509061, 4.409947557066799e-18, 7.783806918905717], [-0.00789190409008789, 4.4711889598900134e-18, 7.891901459453019], [-0.00799999866666672, 4.5324303627132274e-18, 7.99999600000032]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.99999895834136e-10, -9.999997083333652e-07, 0.0009999995000000417], [-5.454728593336459e-08, -0.0001090945627753413, 0.10909454004730183], [-1.0859457197089504e-07, -0.00021718912584234922, 0.21718908059460362], [-1.626418580084255e-07, -0.0003252836889093572, 0.3252836211419054], [-2.1668914404595597e-07, -0.0004333782519763651, 0.43337816168920723], [-2.7073643008348645e-07, -0.000541472815043373, 0.541472702236509], [-3.247837161210169e-07, -0.000649567378110381, 0.6495672427838108], [-3.7883100215854736e-07, -0.0007576619411773889, 0.7576617833311126], [-4.328782881960778e-07, -0.0008657565042443969, 0.8657563238784144], [-4.869255742336083e-07, -0.0009738510673114047, 0.9738508644257161], [-5.409728602711386e-07, -0.0010819456303784126, 1.081945404973018], [-5.950201463086691e-07, -0.0011900401934454206, 1.1900399455203197], [-6.490674323461996e-07, -0.0012981347565124285, 1.2981344860676214], [-7.0311471838373e-07, -0.0014062293195794364, 1.4062290266149233], [-7.571620044212605e-07, -0.0015143238826464444, 1.514323567162225], [-8.112092904587909e-07, -0.0016224184457134523, 1.6224181077095268], [-8.652565764963214e-07, -0.0017305130087804602, 1.7305126482568285], [-9.193038625338518e-07, -0.0018386075718474682, 1.8386071888041304], [-9.733511485713823e-07, -0.0019467021349144759, 1.9467017293514322], [-1.0273984346089126e-06, -0.002054796697981484, 2.0547962698987337], [-1.081445720646443e-06, -0.0021628912610484915, 2.162890810446035], [-1.1354930066839734e-06, -0.002270985824115499, 2.270985350993337], [-1.1895402927215036e-06, -0.002379080387182507, 2.3790798915406386], [-1.243587578759034e-06, -0.0024871749502495145, 2.48717443208794], [-1.2976348647965645e-06, -0.0025952695133165224, 2.5952689726352416], [-1.3516821508340947e-06, -0.0027033640763835303, 2.703363513182543], [-1.405729436871625e-06, -0.002811458639450538, 2.8114580537298446], [-1.4597767229091554e-06, -0.0029195532025175453, 2.919552594277146], [-1.5138240089466856e-06, -0.0030276477655845533, 3.027647134824448], [-1.5678712949842162e-06, -0.003135742328651561, 3.1357416753717495], [-1.6219185810217466e-06, -0.0032438368917185683, 3.243836215919051], [-1.6759658670592767e-06, -0.0033519314547855767, 3.3519307564663525], [-1.730013153096807e-06, -0.003460026017852584, 3.460025297013654], [-1.7840604391343377e-06, -0.0035681205809195917, 3.5681198375609555], [-1.8381077251718678e-06, -0.0036762151439865996, 3.6762143781082575], [-1.8921550112093982e-06, -0.003784309707053607, 3.784308918655559], [-1.9462022972469286e-06, -0.0038924042701206146, 3.8924034592028605], [-2.000249583284459e-06, -0.004000498833187623, 4.000497999750162], [-2.0542968693219893e-06, -0.0041085933962546305, 4.1085925402974635], [-2.1083441553595197e-06, -0.004216687959321638, 4.216687080844765], [-2.16239144139705e-06, -0.0043247825223886455, 4.3247816213920665], [-2.21643872743458e-06, -0.004432877085455654, 4.432876161939368], [-2.2704860134721104e-06, -0.004540971648522661, 4.5409707024866695], [-2.324533299509641e-06, -0.004649066211589669, 4.649065243033972], [-2.378580585547171e-06, -0.004757160774656677, 4.757159783581273], [-2.432627871584702e-06, -0.004865255337723684, 4.865254324128575], [-2.4866751576222323e-06, -0.004973349900790692, 4.973348864675876], [-2.5407224436597623e-06, -0.0050814444638577, 5.081443405223178], [-2.5947697296972927e-06, -0.005189539026924707, 5.189537945770479], [-2.648817015734823e-06, -0.005297633589991716, 5.297632486317781], [-2.7028643017723534e-06, -0.005405728153058723, 5.405727026865082], [-2.756911587809884e-06, -0.005513822716125731, 5.513821567412384], [-2.810958873847414e-06, -0.005621917279192738, 5.621916107959685], [-2.865006159884944e-06, -0.0057300118422597465, 5.730010648506987], [-2.919053445922475e-06, -0.005838106405326754, 5.838105189054288], [-2.9731007319600053e-06, -0.0059462009683937615, 5.94619972960159], [-3.0271480179975357e-06, -0.00605429553146077, 6.054294270148892], [-3.081195304035066e-06, -0.0061623900945277765, 6.162388810696194], [-3.135242590072596e-06, -0.006270484657594785, 6.270483351243495], [-3.1892898761101264e-06, -0.006378579220661792, 6.378577891790797], [-3.2433371621476567e-06, -0.0064866737837288, 6.486672432338098], [-3.297384448185187e-06, -0.006594768346795808, 6.5947669728854], [-3.3514317342227175e-06, -0.006702862909862816, 6.702861513432701], [-3.405479020260248e-06, -0.006810957472929823, 6.810956053980003], [-3.4595263062977782e-06, -0.006919052035996831, 6.919050594527304], [-3.5135735923353086e-06, -0.007027146599063839, 7.027145135074606], [-3.567620878372839e-06, -0.007135241162130846, 7.135239675621907], [-3.6216681644103694e-06, -0.007243335725197854, 7.243334216169209], [-3.6757154504478997e-06, -0.0073514302882648624, 7.351428756716511], [-3.72976273648543e-06, -0.007459524851331869, 7.459523297263813], [-3.78381002252296e-06, -0.0075676194143988774, 7.567617837811114], [-3.837857308560491e-06, -0.007675713977465885, 7.675712378358416], [-3.891904594598021e-06, -0.0077838085405328925, 7.783806918905717], [-3.945951880635551e-06, -0.0078919031035999, 7.891901459453019], [-3.9999991666730816e-06, -0.007999997666666907, 7.99999600000032]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.999993333334667e-07, -9.999996666681784e-10, 0.0009999995000000417], [0.0001090945218648794, -1.0909455822989462e-07, 0.10909454004730183], [0.00021718904439642535, -2.171891167931211e-07, 0.21718908059460362], [0.00032528356692797125, -3.252836753563475e-07, 0.3252836211419054], [0.0004333780894595172, -4.33378233919574e-07, 0.43337816168920723], [0.0005414726119910632, -5.414727924828005e-07, 0.541472702236509], [0.0006495671345226092, -6.495673510460269e-07, 0.6495672427838108], [0.000757661657054155, -7.576619096092533e-07, 0.7576617833311126], [0.000865756179585701, -8.657564681724797e-07, 0.8657563238784144], [0.0009738507021172468, -9.738510267357063e-07, 0.9738508644257161], [0.0010819452246487928, -1.0819455852989326e-06, 1.081945404973018], [0.0011900397471803386, -1.190040143862159e-06, 1.1900399455203197], [0.0012981342697118846, -1.2981347024253855e-06, 1.2981344860676214], [0.0014062287922434306, -1.406229260988612e-06, 1.4062290266149233], [0.0015143233147749764, -1.5143238195518383e-06, 1.514323567162225], [0.0016224178373065224, -1.6224183781150649e-06, 1.6224181077095268], [0.0017305123598380682, -1.7305129366782912e-06, 1.7305126482568285], [0.0018386068823696142, -1.8386074952415177e-06, 1.8386071888041304], [0.0019467014049011602, -1.946702053804744e-06, 1.9467017293514322], [0.002054795927432706, -2.0547966123679704e-06, 2.0547962698987337], [0.0021628904499642514, -2.1628911709311963e-06, 2.162890810446035], [0.0022709849724957976, -2.2709857294944226e-06, 2.270985350993337], [0.002379079495027343, -2.379080288057649e-06, 2.3790798915406386], [0.002487174017558889, -2.4871748466208753e-06, 2.48717443208794], [0.0025952685400904346, -2.5952694051841016e-06, 2.5952689726352416], [0.00270336306262198, -2.7033639637473275e-06, 2.703363513182543], [0.0028114575851535257, -2.811458522310554e-06, 2.8114580537298446], [0.0029195521076850715, -2.91955308087378e-06, 2.919552594277146], [0.0030276466302166173, -3.0276476394370065e-06, 3.027647134824448], [0.003135741152748163, -3.1357421980002324e-06, 3.1357416753717495], [0.003243835675279709, -3.2438367565634587e-06, 3.243836215919051], [0.0033519301978112543, -3.351931315126685e-06, 3.3519307564663525], [0.0034600247203428, -3.4600258736899114e-06, 3.460025297013654], [0.003568119242874346, -3.5681204322531377e-06, 3.5681198375609555], [0.0036762137654058917, -3.6762149908163636e-06, 3.6762143781082575], [0.0037843082879374375, -3.78430954937959e-06, 3.784308918655559], [0.0038924028104689833, -3.892404107942816e-06, 3.8924034592028605], [0.004000497333000529, -4.000498666506042e-06, 4.000497999750162], [0.004108591855532074, -4.108593225069269e-06, 4.1085925402974635], [0.00421668637806362, -4.216687783632495e-06, 4.216687080844765], [0.004324780900595166, -4.3247823421957216e-06, 4.3247816213920665], [0.004432875423126711, -4.4328769007589475e-06, 4.432876161939368], [0.004540969945658257, -4.540971459322173e-06, 4.5409707024866695], [0.004649064468189803, -4.6490660178854e-06, 4.649065243033972], [0.004757158990721349, -4.757160576448626e-06, 4.757159783581273], [0.004865253513252895, -4.865255135011853e-06, 4.865254324128575], [0.00497334803578444, -4.973349693575079e-06, 4.973348864675876], [0.005081442558315986, -5.0814442521383046e-06, 5.081443405223178], [0.005189537080847532, -5.189538810701531e-06, 5.189537945770479], [0.005297631603379077, -5.297633369264757e-06, 5.297632486317781], [0.005405726125910623, -5.405727927827984e-06, 5.405727026865082], [0.005513820648442169, -5.51382248639121e-06, 5.513821567412384], [0.005621915170973714, -5.621917044954436e-06, 5.621916107959685], [0.00573000969350526, -5.7300116035176625e-06, 5.730010648506987], [0.005838104216036806, -5.8381061620808884e-06, 5.838105189054288], [0.005946198738568351, -5.946200720644114e-06, 5.94619972960159], [0.006054293261099897, -6.054295279207341e-06, 6.054294270148892], [0.006162387783631444, -6.162389837770567e-06, 6.162388810696194], [0.006270482306162989, -6.270484396333794e-06, 6.270483351243495], [0.006378576828694534, -6.37857895489702e-06, 6.378577891790797], [0.006486671351226081, -6.4866735134602456e-06, 6.486672432338098], [0.006594765873757626, -6.594768072023472e-06, 6.5947669728854], [0.006702860396289171, -6.702862630586698e-06, 6.702861513432701], [0.006810954918820718, -6.810957189149925e-06, 6.810956053980003], [0.006919049441352263, -6.919051747713151e-06, 6.919050594527304], [0.007027143963883808, -7.027146306276377e-06, 7.027145135074606], [0.0071352384864153545, -7.1352408648396035e-06, 7.135239675621907], [0.0072433330089469, -7.243335423402829e-06, 7.243334216169209], [0.007351427531478446, -7.351429981966056e-06, 7.351428756716511], [0.007459522054009992, -7.459524540529282e-06, 7.459523297263813], [0.007567616576541538, -7.567619099092508e-06, 7.567617837811114], [0.007675711099073083, -7.675713657655734e-06, 7.675712378358416], [0.007783805621604629, -7.783808216218961e-06, 7.783806918905717], [0.007891900144136174, -7.891902774782187e-06, 7.891901459453019], [0.007999994666667721, -7.999997333345412e-06, 7.99999600000032]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0007074598924439701, 7.074601282640285e-07, 0.0007067531394223398], [0.0771800501581104, 7.718007588480407e-05, 0.07710294722373714], [0.15365264042377683, 0.00015365269164134413, 0.15349914130805195], [0.23012523068944327, 0.0002301253073978842, 0.22989533539236678], [0.30659782095510973, 0.00030659792315442425, 0.3062915294766816], [0.3830704112207761, 0.00038307053891096425, 0.3826877235609964], [0.4595430014864426, 0.00045954315466750436, 0.4590839176453112], [0.536015591752109, 0.0005360157704240444, 0.5354801117296261], [0.6124881820177754, 0.0006124883861805845, 0.6118763058139408], [0.6889607722834418, 0.0006889610019371245, 0.6882724998982557], [0.7654333625491083, 0.0007654336176936645, 0.7646686939825703], [0.8419059528147746, 0.0008419062334502045, 0.8410648880668852], [0.9183785430804411, 0.0009183788492067446, 0.9174610821512], [0.9948511333461076, 0.0009948514649632846, 0.9938572762355148], [1.0713237236117739, 0.0010713240807198247, 1.0702534703198296], [1.1477963138774403, 0.0011477966964763648, 1.1466496644041444], [1.2242689041431067, 0.0012242693122329047, 1.2230458584884591], [1.3007414944087732, 0.0013007419279894448, 1.2994420525727741], [1.3772140846744396, 0.001377214543745985, 1.3758382466570889], [1.4536866749401058, 0.0014536871595025246, 1.4522344407414034], [1.530159265205772, 0.0015301597752590645, 1.5286306348257181], [1.6066318554714387, 0.0016066323910156046, 1.605026828910033], [1.683104445737105, 0.0016831050067721445, 1.6814230229943474], [1.7595770360027712, 0.0017595776225286842, 1.7578192170786622], [1.8360496262684374, 0.0018360502382852243, 1.8342154111629767], [1.9125222165341036, 0.0019125228540417642, 1.9106116052472915], [1.9889948067997698, 0.001988995469798304, 1.987007799331606], [2.065467397065436, 0.0020654680855548436, 2.0634039934159207], [2.1419399873311025, 0.0021419407013113837, 2.1398001875002355], [2.218412577596769, 0.002218413317067924, 2.2161963815845502], [2.294885167862435, 0.0022948859328244635, 2.2925925756688645], [2.3713577581281013, 0.0023713585485810036, 2.3689887697531793], [2.4478303483937673, 0.0024478311643375433, 2.445384963837494], [2.524302938659434, 0.0025243037800940834, 2.521781157921809], [2.6007755289251, 0.0026007763958506235, 2.598177352006123], [2.677248119190766, 0.002677249011607163, 2.674573546090438], [2.7537207094564327, 0.002753721627363703, 2.7509697401747526], [2.8301932997220987, 0.0028301942431202425, 2.8273659342590673], [2.906665889987765, 0.0029066668588767827, 2.903762128343382], [2.9831384802534315, 0.0029831394746333223, 2.9801583224276964], [3.0596110705190975, 0.003059612090389863, 3.056554516512011], [3.136083660784764, 0.0031360847061464026, 3.132950710596326], [3.21255625105043, 0.0032125573219029422, 3.2093469046806407], [3.289028841316097, 0.0032890299376594823, 3.2857430987649554], [3.3655014315817633, 0.003365502553416022, 3.3621392928492697], [3.4419740218474293, 0.0034419751691725617, 3.4385354869335845], [3.5184466121130957, 0.0035184477849291023, 3.514931681017899], [3.5949192023787617, 0.003594920400685642, 3.591327875102214], [3.671391792644428, 0.0036713930164421816, 3.6677240691865283], [3.747864382910094, 0.0037478656321987217, 3.744120263270843], [3.8243369731757606, 0.0038243382479552614, 3.8205164573551578], [3.9008095634414266, 0.003900810863711801, 3.8969126514394725], [3.977282153707093, 0.003977283479468341, 3.9733088455237873], [4.0537547439727595, 0.004053756095224881, 4.049705039608102], [4.130227334238425, 0.004130228710981421, 4.126101233692417], [4.2066999245040915, 0.004206701326737961, 4.202497427776731], [4.283172514769759, 0.004283173942494501, 4.278893621861045], [4.359645105035424, 0.004359646558251041, 4.35528981594536], [4.436117695301091, 0.004436119174007581, 4.431686010029675], [4.512590285566757, 0.00451259178976412, 4.50808220411399], [4.589062875832424, 0.004589064405520661, 4.584478398198304], [4.665535466098089, 0.0046655370212772005, 4.660874592282619], [4.742008056363756, 0.00474200963703374, 4.737270786366934], [4.818480646629422, 0.00481848225279028, 4.813666980451249], [4.8949532368950885, 0.0048949548685468195, 4.8900631745355625], [4.971425827160754, 0.00497142748430336, 4.966459368619877], [5.0478984174264205, 0.0050479001000599, 5.042855562704192], [5.124371007692087, 0.00512437271581644, 5.119251756788507], [5.200843597957753, 0.00520084533157298, 5.1956479508728215], [5.27731618822342, 0.00527731794732952, 5.272044144957136], [5.353788778489086, 0.005353790563086059, 5.348440339041451], [5.430261368754753, 0.005430263178842599, 5.424836533125766], [5.506733959020418, 0.005506735794599139, 5.5012327272100805], [5.583206549286085, 0.005583208410355678, 5.577628921294395], [5.659679139551751, 0.005659681026112219, 5.654025115378709]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.537301083480376e-07, 0.0007074601577415348, 0.0007067531394223398], [-3.859004276613117e-05, 0.07718007910064068, 0.07710294722373714], [-7.682635542391431e-05, 0.15365269804353981, 0.15349914130805195], [-0.00011506266808169746, 0.23012531698643895, 0.22989533539236678], [-0.0001532989807394806, 0.3065979359293381, 0.3062915294766816], [-0.00019153529339726373, 0.38307055487223723, 0.3826877235609964], [-0.00022977160605504684, 0.4595431738151364, 0.4590839176453112], [-0.00026800791871283, 0.5360157927580355, 0.5354801117296261], [-0.0003062442313706131, 0.6124884117009346, 0.6118763058139408], [-0.00034448054402839626, 0.6889610306438337, 0.6882724998982557], [-0.0003827168566861794, 0.7654336495867328, 0.7646686939825703], [-0.00042095316934396247, 0.8419062685296319, 0.8410648880668852], [-0.00045918948200174563, 0.9183788874725312, 0.9174610821512], [-0.0004974257946595287, 0.9948515064154302, 0.9938572762355148], [-0.000535662107317312, 1.0713241253583294, 1.0702534703198296], [-0.000573898419975095, 1.1477967443012285, 1.1466496644041444], [-0.0006121347326328782, 1.2242693632441277, 1.2230458584884591], [-0.0006503710452906614, 1.3007419821870267, 1.2994420525727741], [-0.0006886073579484445, 1.3772146011299258, 1.3758382466570889], [-0.0007268436706062275, 1.453687220072825, 1.4522344407414034], [-0.0007650799832640107, 1.5301598390157238, 1.5286306348257181], [-0.0008033162959217937, 1.6066324579586229, 1.605026828910033], [-0.0008415526085795767, 1.6831050769015217, 1.6814230229943474], [-0.0008797889212373598, 1.7595776958444207, 1.7578192170786622], [-0.0009180252338951428, 1.83605031478732, 1.8342154111629767], [-0.0009562615465529258, 1.9125229337302188, 1.9106116052472915], [-0.0009944978592107089, 1.9889955526731178, 1.987007799331606], [-0.0010327341718684919, 2.0654681716160166, 2.0634039934159207], [-0.001070970484526275, 2.1419407905589156, 2.1398001875002355], [-0.001109206797184058, 2.2184134095018146, 2.2161963815845502], [-0.001147443109841841, 2.2948860284447137, 2.2925925756688645], [-0.0011856794224996243, 2.3713586473876127, 2.3689887697531793], [-0.0012239157351574073, 2.4478312663305117, 2.445384963837494], [-0.0012621520478151903, 2.5243038852734108, 2.521781157921809], [-0.0013003883604729735, 2.6007765042163093, 2.598177352006123], [-0.0013386246731307565, 2.6772491231592084, 2.674573546090438], [-0.0013768609857885395, 2.7537217421021074, 2.7509697401747526], [-0.0014150972984463225, 2.8301943610450064, 2.8273659342590673], [-0.0014533336111041057, 2.9066669799879055, 2.903762128343382], [-0.0014915699237618887, 2.9831395989308045, 2.9801583224276964], [-0.0015298062364196717, 3.059612217873703, 3.056554516512011], [-0.0015680425490774547, 3.1360848368166026, 3.132950710596326], [-0.001606278861735238, 3.2125574557595016, 3.2093469046806407], [-0.001644515174393021, 3.2890300747024, 3.2857430987649554], [-0.001682751487050804, 3.3655026936452996, 3.3621392928492697], [-0.001720987799708587, 3.441975312588198, 3.4385354869335845], [-0.0017592241123663703, 3.5184479315310973, 3.514931681017899], [-0.001797460425024153, 3.594920550473996, 3.591327875102214], [-0.0018356967376819363, 3.6713931694168953, 3.6677240691865283], [-0.0018739330503397195, 3.7478657883597943, 3.744120263270843], [-0.0019121693629975023, 3.824338407302693, 3.8205164573551578], [-0.0019504056756552855, 3.9008110262455924, 3.8969126514394725], [-0.0019886419883130687, 3.977283645188491, 3.9733088455237873], [-0.0020268783009708513, 4.0537562641313905, 4.049705039608102], [-0.0020651146136286347, 4.130228883074289, 4.126101233692417], [-0.0021033509262864177, 4.206701502017188, 4.202497427776731], [-0.0021415872389442007, 4.283174120960087, 4.278893621861045], [-0.0021798235516019837, 4.359646739902986, 4.35528981594536], [-0.0022180598642597667, 4.436119358845885, 4.431686010029675], [-0.0022562961769175497, 4.512591977788784, 4.50808220411399], [-0.002294532489575333, 4.589064596731683, 4.584478398198304], [-0.002332768802233116, 4.665537215674583, 4.660874592282619], [-0.002371005114890899, 4.742009834617481, 4.737270786366934], [-0.002409241427548682, 4.81848245356038, 4.813666980451249], [-0.002447477740206465, 4.894955072503278, 4.8900631745355625], [-0.002485714052864248, 4.971427691446178, 4.966459368619877], [-0.002523950365522031, 5.0479003103890765, 5.042855562704192], [-0.0025621866781798145, 5.124372929331976, 5.119251756788507], [-0.0026004229908375975, 5.200845548274875, 5.1956479508728215], [-0.0026386593034953805, 5.277318167217774, 5.272044144957136], [-0.0026768956161531635, 5.353790786160673, 5.348440339041451], [-0.0027151319288109465, 5.430263405103571, 5.424836533125766], [-0.0027533682414687295, 5.506736024046471, 5.5012327272100805], [-0.0027916045541265125, 5.583208642989369, 5.577628921294395], [-0.0028298408667842955, 5.659681261932269, 5.654025115378709]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.0007074602461740637, 4.008143543238773e-19, 0.0007067531394223398], [-0.07718008874815156, 4.3726679492657585e-17, 0.07710294722373714], [-0.15365271725012905, 8.70525446309913e-17, 0.15349914130805195], [-0.23012534575210655, 1.30378409769325e-16, 0.22989533539236678], [-0.306597974254084, 1.7370427490765872e-16, 0.3062915294766816], [-0.38307060275606153, 2.170301400459924e-16, 0.3826877235609964], [-0.45954323125803903, 2.603560051843261e-16, 0.4590839176453112], [-0.5360158597600165, 3.0368187032265983e-16, 0.5354801117296261], [-0.612488488261994, 3.470077354609935e-16, 0.6118763058139408], [-0.6889611167639715, 3.9033360059932723e-16, 0.6882724998982557], [-0.765433745265949, 4.336594657376609e-16, 0.7646686939825703], [-0.8419063737679264, 4.769853308759946e-16, 0.8410648880668852], [-0.918379002269904, 5.203111960143283e-16, 0.9174610821512], [-0.9948516307718814, 5.63637061152662e-16, 0.9938572762355148], [-1.071324259273859, 6.069629262909957e-16, 1.0702534703198296], [-1.1477968877758364, 6.502887914293294e-16, 1.1466496644041444], [-1.2242695162778139, 6.936146565676631e-16, 1.2230458584884591], [-1.3007421447797913, 7.369405217059968e-16, 1.2994420525727741], [-1.377214773281769, 7.802663868443305e-16, 1.3758382466570889], [-1.4536874017837462, 8.235922519826642e-16, 1.4522344407414034], [-1.5301600302857237, 8.669181171209977e-16, 1.5286306348257181], [-1.606632658787701, 9.102439822593314e-16, 1.605026828910033], [-1.6831052872896783, 9.535698473976649e-16, 1.6814230229943474], [-1.7595779157916556, 9.968957125359986e-16, 1.7578192170786622], [-1.836050544293633, 1.0402215776743322e-15, 1.8342154111629767], [-1.9125231727956102, 1.0835474428126659e-15, 1.9106116052472915], [-1.9889958012975877, 1.1268733079509994e-15, 1.987007799331606], [-2.065468429799565, 1.170199173089333e-15, 2.0634039934159207], [-2.1419410583015424, 1.2135250382276665e-15, 2.1398001875002355], [-2.21841368680352, 1.2568509033660004e-15, 2.2161963815845502], [-2.294886315305497, 1.300176768504334e-15, 2.2925925756688645], [-2.3713589438074743, 1.3435026336426677e-15, 2.3689887697531793], [-2.4478315723094517, 1.386828498781001e-15, 2.445384963837494], [-2.524304200811429, 1.4301543639193347e-15, 2.521781157921809], [-2.600776829313406, 1.4734802290576684e-15, 2.598177352006123], [-2.6772494578153836, 1.516806094196002e-15, 2.674573546090438], [-2.753722086317361, 1.5601319593343355e-15, 2.7509697401747526], [-2.8301947148193385, 1.6034578244726692e-15, 2.8273659342590673], [-2.9066673433213155, 1.6467836896110029e-15, 2.903762128343382], [-2.983139971823293, 1.6901095547493365e-15, 2.9801583224276964], [-3.0596126003252704, 1.7334354198876702e-15, 3.056554516512011], [-3.136085228827248, 1.7767612850260035e-15, 3.132950710596326], [-3.2125578573292253, 1.820087150164337e-15, 3.2093469046806407], [-3.2890304858312023, 1.863413015302671e-15, 3.2857430987649554], [-3.3655031143331797, 1.9067388804410045e-15, 3.3621392928492697], [-3.441975742835157, 1.950064745579338e-15, 3.4385354869335845], [-3.5184483713371346, 1.993390610717672e-15, 3.514931681017899], [-3.5949209998391116, 2.0367164758560055e-15, 3.591327875102214], [-3.671393628341089, 2.0800423409943392e-15, 3.6677240691865283], [-3.7478662568430665, 2.123368206132673e-15, 3.744120263270843], [-3.824338885345044, 2.166694071271006e-15, 3.8205164573551578], [-3.900811513847021, 2.21001993640934e-15, 3.8969126514394725], [-3.9772841423489984, 2.2533458015476735e-15, 3.9733088455237873], [-4.053756770850976, 2.296671666686007e-15, 4.049705039608102], [-4.130229399352953, 2.3399975318243404e-15, 4.126101233692417], [-4.206702027854931, 2.383323396962674e-15, 4.202497427776731], [-4.283174656356908, 2.4266492621010078e-15, 4.278893621861045], [-4.359647284858885, 2.4699751272393415e-15, 4.35528981594536], [-4.436119913360862, 2.513300992377675e-15, 4.431686010029675], [-4.51259254186284, 2.556626857516009e-15, 4.50808220411399], [-4.589065170364817, 2.5999527226543425e-15, 4.584478398198304], [-4.6655377988667945, 2.643278587792676e-15, 4.660874592282619], [-4.742010427368772, 2.68660445293101e-15, 4.737270786366934], [-4.818483055870749, 2.7299303180693435e-15, 4.813666980451249], [-4.894955684372727, 2.773256183207677e-15, 4.8900631745355625], [-4.971428312874703, 2.81658204834601e-15, 4.966459368619877], [-5.047900941376681, 2.8599079134843437e-15, 5.042855562704192], [-5.124373569878658, 2.9032337786226774e-15, 5.119251756788507], [-5.200846198380636, 2.946559643761011e-15, 5.1956479508728215], [-5.277318826882613, 2.9898855088993448e-15, 5.272044144957136], [-5.353791455384591, 3.033211374037679e-15, 5.348440339041451], [-5.430264083886568, 3.0765372391760125e-15, 5.424836533125766], [-5.506736712388546, 3.119863104314346e-15, 5.5012327272100805], [-5.583209340890523, 3.16318896945268e-15, 5.577628921294395], [-5.6596819693925, 3.2065148345910127e-15, 5.654025115378709]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.5373010834883914e-07, -0.0007074601577415348, 0.0007067531394223398], [-3.859004276621863e-05, -0.07718007910064068, 0.07710294722373714], [-7.682635542408841e-05, -0.15365269804353981, 0.15349914130805195], [-0.00011506266808195821, -0.23012531698643895, 0.22989533539236678], [-0.000153298980739828, -0.3065979359293381, 0.3062915294766816], [-0.0001915352933976978, -0.38307055487223723, 0.3826877235609964], [-0.00022977160605556758, -0.4595431738151364, 0.4590839176453112], [-0.00026800791871343737, -0.5360157927580355, 0.5354801117296261], [-0.00030624423137130715, -0.6124884117009346, 0.6118763058139408], [-0.00034448054402917694, -0.6889610306438337, 0.6882724998982557], [-0.0003827168566870467, -0.7654336495867328, 0.7646686939825703], [-0.0004209531693449165, -0.8419062685296319, 0.8410648880668852], [-0.00045918948200278625, -0.9183788874725312, 0.9174610821512], [-0.000497425794660656, -0.9948515064154302, 0.9938572762355148], [-0.0005356621073185258, -1.0713241253583294, 1.0702534703198296], [-0.0005738984199763956, -1.1477967443012285, 1.1466496644041444], [-0.0006121347326342654, -1.2242693632441277, 1.2230458584884591], [-0.0006503710452921352, -1.3007419821870267, 1.2994420525727741], [-0.000688607357950005, -1.3772146011299258, 1.3758382466570889], [-0.0007268436706078748, -1.453687220072825, 1.4522344407414034], [-0.0007650799832657444, -1.5301598390157238, 1.5286306348257181], [-0.0008033162959236142, -1.6066324579586229, 1.605026828910033], [-0.0008415526085814838, -1.6831050769015217, 1.6814230229943474], [-0.0008797889212393535, -1.7595776958444207, 1.7578192170786622], [-0.0009180252338972234, -1.83605031478732, 1.8342154111629767], [-0.000956261546555093, -1.9125229337302188, 1.9106116052472915], [-0.0009944978592129627, -1.9889955526731178, 1.987007799331606], [-0.0010327341718708324, -2.0654681716160166, 2.0634039934159207], [-0.001070970484528702, -2.1419407905589156, 2.1398001875002355], [-0.001109206797186572, -2.2184134095018146, 2.2161963815845502], [-0.0011474431098444414, -2.2948860284447137, 2.2925925756688645], [-0.0011856794225023112, -2.3713586473876127, 2.3689887697531793], [-0.001223915735160181, -2.4478312663305117, 2.445384963837494], [-0.0012621520478180506, -2.5243038852734108, 2.521781157921809], [-0.0013003883604759204, -2.6007765042163093, 2.598177352006123], [-0.00133862467313379, -2.6772491231592084, 2.674573546090438], [-0.0013768609857916598, -2.7537217421021074, 2.7509697401747526], [-0.0014150972984495296, -2.8301943610450064, 2.8273659342590673], [-0.0014533336111073993, -2.9066669799879055, 2.903762128343382], [-0.001491569923765269, -2.9831395989308045, 2.9801583224276964], [-0.0015298062364231385, -3.059612217873703, 3.056554516512011], [-0.0015680425490810083, -3.1360848368166026, 3.132950710596326], [-0.001606278861738878, -3.2125574557595016, 3.2093469046806407], [-0.0016445151743967477, -3.2890300747024, 3.2857430987649554], [-0.0016827514870546172, -3.3655026936452996, 3.3621392928492697], [-0.0017209877997124872, -3.441975312588198, 3.4385354869335845], [-0.001759224112370357, -3.5184479315310973, 3.514931681017899], [-0.0017974604250282267, -3.594920550473996, 3.591327875102214], [-0.0018356967376860964, -3.6713931694168953, 3.6677240691865283], [-0.001873933050343966, -3.7478657883597943, 3.744120263270843], [-0.0019121693630018356, -3.824338407302693, 3.8205164573551578], [-0.0019504056756597054, -3.9008110262455924, 3.8969126514394725], [-0.001988641988317575, -3.977283645188491, 3.9733088455237873], [-0.002026878300975445, -4.0537562641313905, 4.049705039608102], [-0.0020651146136333146, -4.130228883074289, 4.126101233692417], [-0.0021033509262911843, -4.206701502017188, 4.202497427776731], [-0.002141587238949054, -4.283174120960087, 4.278893621861045], [-0.0021798235516069238, -4.359646739902986, 4.35528981594536], [-0.0022180598642647935, -4.436119358845885, 4.431686010029675], [-0.0022562961769226632, -4.512591977788784, 4.50808220411399], [-0.002294532489580533, -4.589064596731683, 4.584478398198304], [-0.0023327688022384023, -4.665537215674583, 4.660874592282619], [-0.002371005114896272, -4.742009834617481, 4.737270786366934], [-0.0024092414275541417, -4.81848245356038, 4.813666980451249], [-0.002447477740212012, -4.894955072503278, 4.8900631745355625], [-0.0024857140528698816, -4.971427691446178, 4.966459368619877], [-0.002523950365527751, -5.0479003103890765, 5.042855562704192], [-0.0025621866781856207, -5.124372929331976, 5.119251756788507], [-0.0026004229908434904, -5.200845548274875, 5.1956479508728215], [-0.00263865930350136, -5.277318167217774, 5.272044144957136], [-0.00267689561615923, -5.353790786160673, 5.348440339041451], [-0.0027151319288170996, -5.430263405103571, 5.424836533125766], [-0.0027533682414749693, -5.506736024046471, 5.5012327272100805], [-0.002791604554132839, -5.583208642989369, 5.577628921294395], [-0.0028298408667907084, -5.659681261932269, 5.654025115378709]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0007074598924439701, -7.074601282650666e-07, 0.0007067531394223398], [0.0771800501581104, -7.71800758849173e-05, 0.07710294722373714], [0.15365264042377683, -0.00015365269164156956, 0.15349914130805195], [0.23012523068944327, -0.0002301253073982218, 0.22989533539236678], [0.30659782095510973, -0.00030659792315487403, 0.3062915294766816], [0.3830704112207761, -0.00038307053891152636, 0.3826877235609964], [0.4595430014864426, -0.0004595431546681785, 0.4590839176453112], [0.536015591752109, -0.0005360157704248307, 0.5354801117296261], [0.6124881820177754, -0.0006124883861814831, 0.6118763058139408], [0.6889607722834418, -0.0006889610019381353, 0.6882724998982557], [0.7654333625491083, -0.0007654336176947874, 0.7646686939825703], [0.8419059528147746, -0.0008419062334514397, 0.8410648880668852], [0.9183785430804411, -0.0009183788492080919, 0.9174610821512], [0.9948511333461076, -0.0009948514649647442, 0.9938572762355148], [1.0713237236117739, -0.0010713240807213964, 1.0702534703198296], [1.1477963138774403, -0.0011477966964780486, 1.1466496644041444], [1.2242689041431067, -0.001224269312234701, 1.2230458584884591], [1.3007414944087732, -0.0013007419279913533, 1.2994420525727741], [1.3772140846744396, -0.0013772145437480055, 1.3758382466570889], [1.4536866749401058, -0.0014536871595046575, 1.4522344407414034], [1.530159265205772, -0.0015301597752613095, 1.5286306348257181], [1.6066318554714387, -0.0016066323910179615, 1.605026828910033], [1.683104445737105, -0.0016831050067746137, 1.6814230229943474], [1.7595770360027712, -0.0017595776225312657, 1.7578192170786622], [1.8360496262684374, -0.001836050238287918, 1.8342154111629767], [1.9125222165341036, -0.00191252285404457, 1.9106116052472915], [1.9889948067997698, -0.001988995469801222, 1.987007799331606], [2.065467397065436, -0.002065468085557874, 2.0634039934159207], [2.1419399873311025, -0.002141940701314526, 2.1398001875002355], [2.218412577596769, -0.002218413317071178, 2.2161963815845502], [2.294885167862435, -0.0022948859328278306, 2.2925925756688645], [2.3713577581281013, -0.0023713585485844826, 2.3689887697531793], [2.4478303483937673, -0.0024478311643411346, 2.445384963837494], [2.524302938659434, -0.0025243037800977866, 2.521781157921809], [2.6007755289251, -0.002600776395854439, 2.598177352006123], [2.677248119190766, -0.002677249011611091, 2.674573546090438], [2.7537207094564327, -0.002753721627367743, 2.7509697401747526], [2.8301932997220987, -0.002830194243124395, 2.8273659342590673], [2.906665889987765, -0.002906666858881047, 2.903762128343382], [2.9831384802534315, -0.0029831394746376995, 2.9801583224276964], [3.0596110705190975, -0.0030596120903943515, 3.056554516512011], [3.136083660784764, -0.0031360847061510035, 3.132950710596326], [3.21255625105043, -0.0032125573219076555, 3.2093469046806407], [3.289028841316097, -0.003289029937664308, 3.2857430987649554], [3.3655014315817633, -0.00336550255342096, 3.3621392928492697], [3.4419740218474293, -0.003441975169177612, 3.4385354869335845], [3.5184466121130957, -0.003518447784934264, 3.514931681017899], [3.5949192023787617, -0.003594920400690916, 3.591327875102214], [3.671391792644428, -0.0036713930164475684, 3.6677240691865283], [3.747864382910094, -0.0037478656322042204, 3.744120263270843], [3.8243369731757606, -0.0038243382479608724, 3.8205164573551578], [3.9008095634414266, -0.0039008108637175244, 3.8969126514394725], [3.977282153707093, -0.003977283479474176, 3.9733088455237873], [4.0537547439727595, -0.004053756095230829, 4.049705039608102], [4.130227334238425, -0.00413022871098748, 4.126101233692417], [4.2066999245040915, -0.004206701326744133, 4.202497427776731], [4.283172514769759, -0.004283173942500785, 4.278893621861045], [4.359645105035424, -0.004359646558257437, 4.35528981594536], [4.436117695301091, -0.004436119174014089, 4.431686010029675], [4.512590285566757, -0.004512591789770742, 4.50808220411399], [4.589062875832424, -0.004589064405527393, 4.584478398198304], [4.665535466098089, -0.004665537021284046, 4.660874592282619], [4.742008056363756, -0.004742009637040697, 4.737270786366934], [4.818480646629422, -0.00481848225279735, 4.813666980451249], [4.8949532368950885, -0.004894954868554002, 4.8900631745355625], [4.971425827160754, -0.004971427484310654, 4.966459368619877], [5.0478984174264205, -0.005047900100067306, 5.042855562704192], [5.124371007692087, -0.005124372715823958, 5.119251756788507], [5.200843597957753, -0.00520084533158061, 5.1956479508728215], [5.27731618822342, -0.005277317947337263, 5.272044144957136], [5.353788778489086, -0.005353790563093914, 5.348440339041451], [5.430261368754753, -0.005430263178850567, 5.424836533125766], [5.506733959020418, -0.005506735794607218, 5.5012327272100805], [5.583206549286085, -0.005583208410363871, 5.577628921294395], [5.659679139551751, -0.005659681026120522, 5.654025115378709]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0009999995000000417, 9.999998333333416e-07, 6.123233995736766e-20], [0.10909454004730183, 0.00010909457641216306, 6.68011730372742e-18], [0.21718908059460362, 0.0002171891529909928, 1.3299002267497472e-17], [0.3252836211419054, 0.0003252837295698225, 1.9917887231267525e-17], [0.43337816168920723, 0.0004333783061486522, 2.6536772195037576e-17], [0.541472702236509, 0.0005414728827274819, 3.315565715880763e-17], [0.6495672427838108, 0.0006495674593063117, 3.9774542122577683e-17], [0.7576617833311126, 0.0007576620358851414, 4.639342708634773e-17], [0.8657563238784144, 0.0008657566124639711, 5.3012312050117784e-17], [0.9738508644257161, 0.0009738511890428008, 5.963119701388784e-17], [1.081945404973018, 0.0010819457656216305, 6.625008197765789e-17], [1.1900399455203197, 0.00119004034220046, 7.286896694142793e-17], [1.2981344860676214, 0.00129813491877929, 7.948785190519799e-17], [1.4062290266149233, 0.0014062294953581197, 8.610673686896804e-17], [1.514323567162225, 0.0015143240719369493, 9.272562183273809e-17], [1.6224181077095268, 0.001622418648515779, 9.934450679650815e-17], [1.7305126482568285, 0.0017305132250946087, 1.059633917602782e-16], [1.8386071888041304, 0.0018386078016734385, 1.1258227672404824e-16], [1.9467017293514322, 0.0019467023782522683, 1.192011616878183e-16], [2.0547962698987337, 0.0020547969548310977, 1.2582004665158834e-16], [2.162890810446035, 0.002162891531409927, 1.3243893161535837e-16], [2.270985350993337, 0.002270986107988757, 1.390578165791284e-16], [2.3790798915406386, 0.002379080684567586, 1.4567670154289847e-16], [2.48717443208794, 0.0024871752611464156, 1.522955865066685e-16], [2.5952689726352416, 0.0025952698377252454, 1.5891447147043854e-16], [2.703363513182543, 0.0027033644143040748, 1.6553335643420857e-16], [2.8114580537298446, 0.002811458990882904, 1.721522413979786e-16], [2.919552594277146, 0.0029195535674617335, 1.7877112636174864e-16], [3.027647134824448, 0.0030276481440405633, 1.8539001132551868e-16], [3.1357416753717495, 0.0031357427206193927, 1.9200889628928874e-16], [3.243836215919051, 0.003243837297198222, 1.9862778125305877e-16], [3.3519307564663525, 0.003351931873777052, 2.052466662168288e-16], [3.460025297013654, 0.0034600264503558812, 2.1186555118059884e-16], [3.5681198375609555, 0.0035681210269347106, 2.1848443614436888e-16], [3.6762143781082575, 0.0036762156035135404, 2.2510332110813894e-16], [3.784308918655559, 0.0037843101800923698, 2.3172220607190897e-16], [3.8924034592028605, 0.003892404756671199, 2.38341091035679e-16], [4.000497999750162, 0.0040004993332500285, 2.4495997599944904e-16], [4.1085925402974635, 0.004108593909828858, 2.515788609632191e-16], [4.216687080844765, 0.004216688486407687, 2.581977459269891e-16], [4.3247816213920665, 0.0043247830629865175, 2.6481663089075915e-16], [4.432876161939368, 0.004432877639565347, 2.714355158545292e-16], [4.5409707024866695, 0.004540972216144176, 2.780544008182992e-16], [4.649065243033972, 0.004649066792723006, 2.8467328578206926e-16], [4.757159783581273, 0.004757161369301835, 2.912921707458393e-16], [4.865254324128575, 0.004865255945880664, 2.9791105570960933e-16], [4.973348864675876, 0.004973350522459495, 3.0452994067337936e-16], [5.081443405223178, 0.005081445099038324, 3.1114882563714945e-16], [5.189537945770479, 0.005189539675617153, 3.177677106009195e-16], [5.297632486317781, 0.005297634252195983, 3.243865955646895e-16], [5.405727026865082, 0.005405728828774812, 3.3100548052845955e-16], [5.513821567412384, 0.0055138234053536414, 3.376243654922296e-16], [5.621916107959685, 0.005621917981932471, 3.442432504559996e-16], [5.730010648506987, 0.005730012558511301, 3.5086213541976966e-16], [5.838105189054288, 0.00583810713509013, 3.574810203835397e-16], [5.94619972960159, 0.00594620171166896, 3.6409990534730973e-16], [6.054294270148892, 0.006054296288247789, 3.7071879031107976e-16], [6.162388810696194, 0.0061623908648266185, 3.773376752748498e-16], [6.270483351243495, 0.006270485441405448, 3.8395656023861983e-16], [6.378577891790797, 0.006378580017984277, 3.9057544520238987e-16], [6.486672432338098, 0.0064866745945631075, 3.971943301661599e-16], [6.5947669728854, 0.006594769171141937, 4.0381321512993e-16], [6.702861513432701, 0.006702863747720766, 4.104321000937e-16], [6.810956053980003, 0.006810958324299596, 4.1705098505747006e-16], [6.919050594527304, 0.006919052900878425, 4.236698700212401e-16], [7.027145135074606, 0.007027147477457254, 4.3028875498501013e-16], [7.135239675621907, 0.007135242054036084, 4.3690763994878016e-16], [7.243334216169209, 0.007243336630614914, 4.435265249125502e-16], [7.351428756716511, 0.007351431207193743, 4.501454098763203e-16], [7.459523297263813, 0.007459525783772573, 4.567642948400903e-16], [7.567617837811114, 0.007567620360351402, 4.633831798038604e-16], [7.675712378358416, 0.0076757149369302315, 4.700020647676303e-16], [7.783806918905717, 0.007783809513509061, 4.766209497314004e-16], [7.891901459453019, 0.00789190409008789, 4.832398346951704e-16], [7.99999600000032, 0.00799999866666672, 4.898587196589405e-16]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.999999791663287e-07, 0.0009999998750000027, 6.123233995736766e-20], [-5.454729502445636e-05, 0.10909458095777055, 6.68011730372742e-18], [-0.0001085945900697464, 0.2171891620405411, 1.3299002267497472e-17], [-0.00016264188511503643, 0.32528374312331165, 1.9917887231267525e-17], [-0.00021668918016032646, 0.4333783242060822, 2.6536772195037576e-17], [-0.0002707364752056165, 0.5414729052888527, 3.315565715880763e-17], [-0.0003247837702509065, 0.6495674863716233, 3.9774542122577683e-17], [-0.00037883106529619656, 0.7576620674543938, 4.639342708634773e-17], [-0.00043287836034148656, 0.8657566485371644, 5.3012312050117784e-17], [-0.0004869256553867766, 0.9738512296199349, 5.963119701388784e-17], [-0.0005409729504320666, 1.0819458107027053, 6.625008197765789e-17], [-0.0005950202454773566, 1.1900403917854758, 7.286896694142793e-17], [-0.0006490675405226466, 1.2981349728682465, 7.948785190519799e-17], [-0.0007031148355679367, 1.406229553951017, 8.610673686896804e-17], [-0.0007571621306132267, 1.5143241350337875, 9.272562183273809e-17], [-0.0008112094256585167, 1.6224187161165582, 9.934450679650815e-17], [-0.0008652567207038068, 1.7305132971993287, 1.059633917602782e-16], [-0.0009193040157490968, 1.8386078782820992, 1.1258227672404824e-16], [-0.0009733513107943869, 1.9467024593648696, 1.192011616878183e-16], [-0.0010273986058396767, 2.05479704044764, 1.2582004665158834e-16], [-0.0010814459008849668, 2.1628916215304104, 1.3243893161535837e-16], [-0.0011354931959302566, 2.2709862026131806, 1.390578165791284e-16], [-0.0011895404909755465, 2.379080783695951, 1.4567670154289847e-16], [-0.0012435877860208365, 2.487175364778721, 1.522955865066685e-16], [-0.0012976350810661264, 2.595269945861492, 1.5891447147043854e-16], [-0.0013516823761114162, 2.703364526944262, 1.6553335643420857e-16], [-0.0014057296711567063, 2.8114591080270324, 1.721522413979786e-16], [-0.001459776966201996, 2.9195536891098026, 1.7877112636174864e-16], [-0.0015138242612472862, 3.027648270192573, 1.8539001132551868e-16], [-0.001567871556292576, 3.135742851275343, 1.9200889628928874e-16], [-0.0016219188513378658, 3.2438374323581134, 1.9862778125305877e-16], [-0.001675966146383156, 3.351932013440884, 2.052466662168288e-16], [-0.0017300134414284457, 3.4600265945236544, 2.1186555118059884e-16], [-0.0017840607364737356, 3.5681211756064246, 2.1848443614436888e-16], [-0.0018381080315190256, 3.676215756689195, 2.2510332110813894e-16], [-0.0018921553265643155, 3.784310337771965, 2.3172220607190897e-16], [-0.0019462026216096053, 3.8924049188547354, 2.38341091035679e-16], [-0.002000249916654895, 4.000499499937506, 2.4495997599944904e-16], [-0.0020542972117001852, 4.108594081020276, 2.515788609632191e-16], [-0.0021083445067454753, 4.216688662103047, 2.581977459269891e-16], [-0.002162391801790765, 4.324783243185816, 2.6481663089075915e-16], [-0.002216439096836055, 4.432877824268587, 2.714355158545292e-16], [-0.002270486391881345, 4.540972405351358, 2.780544008182992e-16], [-0.0023245336869266347, 4.649066986434128, 2.8467328578206926e-16], [-0.0023785809819719247, 4.757161567516898, 2.912921707458393e-16], [-0.0024326282770172148, 4.865256148599668, 2.9791105570960933e-16], [-0.002486675572062505, 4.973350729682439, 3.0452994067337936e-16], [-0.0025407228671077945, 5.081445310765209, 3.1114882563714945e-16], [-0.0025947701621530845, 5.189539891847979, 3.177677106009195e-16], [-0.0026488174571983746, 5.29763447293075, 3.243865955646895e-16], [-0.002702864752243664, 5.40572905401352, 3.3100548052845955e-16], [-0.0027569120472889543, 5.513823635096291, 3.376243654922296e-16], [-0.0028109593423342443, 5.62191821617906, 3.442432504559996e-16], [-0.002865006637379534, 5.730012797261831, 3.5086213541976966e-16], [-0.002919053932424824, 5.838107378344602, 3.574810203835397e-16], [-0.002973101227470114, 5.946201959427372, 3.6409990534730973e-16], [-0.0030271485225154037, 6.054296540510142, 3.7071879031107976e-16], [-0.0030811958175606937, 6.162391121592912, 3.773376752748498e-16], [-0.003135243112605984, 6.270485702675683, 3.8395656023861983e-16], [-0.0031892904076512734, 6.378580283758453, 3.9057544520238987e-16], [-0.0032433377026965635, 6.486674864841223, 3.971943301661599e-16], [-0.0032973849977418535, 6.594769445923994, 4.0381321512993e-16], [-0.003351432292787143, 6.702864027006764, 4.104321000937e-16], [-0.0034054795878324332, 6.810958608089535, 4.1705098505747006e-16], [-0.0034595268828777233, 6.919053189172304, 4.236698700212401e-16], [-0.003513574177923013, 7.027147770255075, 4.3028875498501013e-16], [-0.003567621472968303, 7.135242351337845, 4.3690763994878016e-16], [-0.003621668768013593, 7.243336932420616, 4.435265249125502e-16], [-0.003675716063058883, 7.351431513503386, 4.501454098763203e-16], [-0.0037297633581041727, 7.459526094586156, 4.567642948400903e-16], [-0.0037838106531494628, 7.567620675668927, 4.633831798038604e-16], [-0.003837857948194753, 7.675715256751697, 4.700020647676303e-16], [-0.0038919052432400424, 7.783809837834467, 4.766209497314004e-16], [-0.003945952538285332, 7.891904418917237, 4.832398346951704e-16], [-0.003999999833330622, 7.999999000000008, 4.898587196589405e-16]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.001, 5.66553889764798e-19, 6.123233995736766e-20], [-0.10909459459459458, 6.180796691988126e-17, 6.68011730372742e-18], [-0.21718918918918917, 1.2304937994999774e-16, 1.3299002267497472e-17], [-0.32528378378378375, 1.842907929801142e-16, 1.9917887231267525e-17], [-0.43337837837837834, 2.4553220601023067e-16, 2.6536772195037576e-17], [-0.5414729729729729, 3.067736190403471e-16, 3.315565715880763e-17], [-0.6495675675675675, 3.680150320704636e-16, 3.9774542122577683e-17], [-0.7576621621621621, 4.2925644510058006e-16, 4.639342708634773e-17], [-0.8657567567567567, 4.904978581306965e-16, 5.3012312050117784e-17], [-0.9738513513513513, 5.51739271160813e-16, 5.963119701388784e-17], [-1.0819459459459457, 6.129806841909294e-16, 6.625008197765789e-17], [-1.1900405405405403, 6.742220972210458e-16, 7.286896694142793e-17], [-1.298135135135135, 7.3546351025116235e-16, 7.948785190519799e-17], [-1.4062297297297295, 7.967049232812788e-16, 8.610673686896804e-17], [-1.514324324324324, 8.579463363113952e-16, 9.272562183273809e-17], [-1.6224189189189187, 9.191877493415116e-16, 9.934450679650815e-17], [-1.7305135135135132, 9.804291623716283e-16, 1.059633917602782e-16], [-1.8386081081081078, 1.0416705754017447e-15, 1.1258227672404824e-16], [-1.9467027027027024, 1.1029119884318611e-15, 1.192011616878183e-16], [-2.0547972972972968, 1.1641534014619775e-15, 1.2582004665158834e-16], [-2.162891891891891, 1.2253948144920938e-15, 1.3243893161535837e-16], [-2.2709864864864855, 1.2866362275222102e-15, 1.390578165791284e-16], [-2.37908108108108, 1.3478776405523264e-15, 1.4567670154289847e-16], [-2.487175675675674, 1.4091190535824429e-15, 1.522955865066685e-16], [-2.5952702702702686, 1.4703604666125591e-15, 1.5891447147043854e-16], [-2.703364864864863, 1.5316018796426755e-15, 1.6553335643420857e-16], [-2.8114594594594573, 1.5928432926727918e-15, 1.721522413979786e-16], [-2.9195540540540517, 1.6540847057029082e-15, 1.7877112636174864e-16], [-3.027648648648646, 1.7153261187330244e-15, 1.8539001132551868e-16], [-3.1357432432432404, 1.776567531763141e-15, 1.9200889628928874e-16], [-3.2438378378378347, 1.8378089447932573e-15, 1.9862778125305877e-16], [-3.351932432432429, 1.8990503578233737e-15, 2.052466662168288e-16], [-3.4600270270270235, 1.9602917708534897e-15, 2.1186555118059884e-16], [-3.568121621621618, 2.021533183883606e-15, 2.1848443614436888e-16], [-3.676216216216212, 2.0827745969137226e-15, 2.2510332110813894e-16], [-3.7843108108108066, 2.144016009943839e-15, 2.3172220607190897e-16], [-3.892405405405401, 2.205257422973955e-15, 2.38341091035679e-16], [-4.000499999999995, 2.2664988360040715e-15, 2.4495997599944904e-16], [-4.10859459459459, 2.327740249034188e-15, 2.515788609632191e-16], [-4.216689189189184, 2.3889816620643043e-15, 2.581977459269891e-16], [-4.324783783783778, 2.4502230750944208e-15, 2.6481663089075915e-16], [-4.432878378378373, 2.511464488124537e-15, 2.714355158545292e-16], [-4.540972972972967, 2.5727059011546532e-15, 2.780544008182992e-16], [-4.6490675675675615, 2.6339473141847697e-15, 2.8467328578206926e-16], [-4.757162162162156, 2.695188727214886e-15, 2.912921707458393e-16], [-4.86525675675675, 2.756430140245002e-15, 2.9791105570960933e-16], [-4.9733513513513445, 2.8176715532751186e-15, 3.0452994067337936e-16], [-5.081445945945939, 2.878912966305235e-15, 3.1114882563714945e-16], [-5.189540540540533, 2.9401543793353514e-15, 3.177677106009195e-16], [-5.297635135135128, 3.001395792365468e-15, 3.243865955646895e-16], [-5.405729729729722, 3.062637205395584e-15, 3.3100548052845955e-16], [-5.513824324324316, 3.1238786184257003e-15, 3.376243654922296e-16], [-5.621918918918911, 3.1851200314558167e-15, 3.442432504559996e-16], [-5.730013513513505, 3.246361444485933e-15, 3.5086213541976966e-16], [-5.838108108108099, 3.3076028575160492e-15, 3.574810203835397e-16], [-5.946202702702694, 3.3688442705461656e-15, 3.6409990534730973e-16], [-6.054297297297288, 3.430085683576282e-15, 3.7071879031107976e-16], [-6.1623918918918825, 3.4913270966063985e-15, 3.773376752748498e-16], [-6.270486486486477, 3.5525685096365145e-15, 3.8395656023861983e-16], [-6.378581081081071, 3.613809922666631e-15, 3.9057544520238987e-16], [-6.486675675675666, 3.675051335696747e-15, 3.971943301661599e-16], [-6.59477027027026, 3.736292748726864e-15, 4.0381321512993e-16], [-6.702864864864854, 3.79753416175698e-15, 4.104321000937e-16], [-6.810959459459449, 3.858775574787097e-15, 4.1705098505747006e-16], [-6.919054054054043, 3.920016987817213e-15, 4.236698700212401e-16], [-7.027148648648637, 3.981258400847329e-15, 4.3028875498501013e-16], [-7.135243243243232, 4.042499813877445e-15, 4.3690763994878016e-16], [-7.243337837837826, 4.1037412269075616e-15, 4.435265249125502e-16], [-7.3514324324324205, 4.164982639937678e-15, 4.501454098763203e-16], [-7.459527027027015, 4.2262240529677944e-15, 4.567642948400903e-16], [-7.567621621621609, 4.287465465997911e-15, 4.633831798038604e-16], [-7.675716216216204, 4.348706879028027e-15, 4.700020647676303e-16], [-7.783810810810798, 4.409948292058144e-15, 4.766209497314004e-16], [-7.891905405405392, 4.47118970508826e-15, 4.832398346951704e-16], [-7.999999999999987, 4.532431118118376e-15, 4.898587196589405e-16]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.999999791674617e-07, -0.0009999998750000027, 6.123233995736766e-20], [-5.454729502457997e-05, -0.10909458095777055, 6.68011730372742e-18], [-0.00010859459006999249, -0.2171891620405411, 1.3299002267497472e-17], [-0.000162641885115405, -0.32528374312331165, 1.9917887231267525e-17], [-0.00021668918016081752, -0.4333783242060822, 2.6536772195037576e-17], [-0.00027073647520623004, -0.5414729052888527, 3.315565715880763e-17], [-0.00032478377025164256, -0.6495674863716233, 3.9774542122577683e-17], [-0.0003788310652970551, -0.7576620674543938, 4.639342708634773e-17], [-0.00043287836034246755, -0.8657566485371644, 5.3012312050117784e-17], [-0.00048692565538788007, -0.9738512296199349, 5.963119701388784e-17], [-0.0005409729504332925, -1.0819458107027053, 6.625008197765789e-17], [-0.0005950202454787051, -1.1900403917854758, 7.286896694142793e-17], [-0.0006490675405241176, -1.2981349728682465, 7.948785190519799e-17], [-0.00070311483556953, -1.406229553951017, 8.610673686896804e-17], [-0.0007571621306149426, -1.5143241350337875, 9.272562183273809e-17], [-0.0008112094256603551, -1.6224187161165582, 9.934450679650815e-17], [-0.0008652567207057676, -1.7305132971993287, 1.059633917602782e-16], [-0.0009193040157511801, -1.8386078782820992, 1.1258227672404824e-16], [-0.0009733513107965927, -1.9467024593648696, 1.192011616878183e-16], [-0.0010273986058420051, -2.05479704044764, 1.2582004665158834e-16], [-0.0010814459008874175, -2.1628916215304104, 1.3243893161535837e-16], [-0.0011354931959328299, -2.2709862026131806, 1.390578165791284e-16], [-0.0011895404909782422, -2.379080783695951, 1.4567670154289847e-16], [-0.0012435877860236546, -2.487175364778721, 1.522955865066685e-16], [-0.0012976350810690671, -2.595269945861492, 1.5891447147043854e-16], [-0.0013516823761144795, -2.703364526944262, 1.6553335643420857e-16], [-0.0014057296711598919, -2.8114591080270324, 1.721522413979786e-16], [-0.0014597769662053042, -2.9195536891098026, 1.7877112636174864e-16], [-0.0015138242612507166, -3.027648270192573, 1.8539001132551868e-16], [-0.0015678715562961291, -3.135742851275343, 1.9200889628928874e-16], [-0.0016219188513415415, -3.2438374323581134, 1.9862778125305877e-16], [-0.0016759661463869539, -3.351932013440884, 2.052466662168288e-16], [-0.0017300134414323662, -3.4600265945236544, 2.1186555118059884e-16], [-0.0017840607364777788, -3.5681211756064246, 2.1848443614436888e-16], [-0.0018381080315231911, -3.676215756689195, 2.2510332110813894e-16], [-0.0018921553265686035, -3.784310337771965, 2.3172220607190897e-16], [-0.0019462026216140159, -3.8924049188547354, 2.38341091035679e-16], [-0.0020002499166594284, -4.000499499937506, 2.4495997599944904e-16], [-0.002054297211704841, -4.108594081020276, 2.515788609632191e-16], [-0.002108344506750253, -4.216688662103047, 2.581977459269891e-16], [-0.0021623918017956655, -4.324783243185816, 2.6481663089075915e-16], [-0.002216439096841078, -4.432877824268587, 2.714355158545292e-16], [-0.0022704863918864902, -4.540972405351358, 2.780544008182992e-16], [-0.0023245336869319026, -4.649066986434128, 2.8467328578206926e-16], [-0.002378580981977315, -4.757161567516898, 2.912921707458393e-16], [-0.0024326282770227277, -4.865256148599668, 2.9791105570960933e-16], [-0.00248667557206814, -4.973350729682439, 3.0452994067337936e-16], [-0.0025407228671135524, -5.081445310765209, 3.1114882563714945e-16], [-0.002594770162158965, -5.189539891847979, 3.177677106009195e-16], [-0.002648817457204377, -5.29763447293075, 3.243865955646895e-16], [-0.0027028647522497895, -5.40572905401352, 3.3100548052845955e-16], [-0.002756912047295202, -5.513823635096291, 3.376243654922296e-16], [-0.0028109593423406142, -5.62191821617906, 3.442432504559996e-16], [-0.0028650066373860266, -5.730012797261831, 3.5086213541976966e-16], [-0.0029190539324314394, -5.838107378344602, 3.574810203835397e-16], [-0.0029731012274768517, -5.946201959427372, 3.6409990534730973e-16], [-0.003027148522522264, -6.054296540510142, 3.7071879031107976e-16], [-0.0030811958175676764, -6.162391121592912, 3.773376752748498e-16], [-0.003135243112613089, -6.270485702675683, 3.8395656023861983e-16], [-0.003189290407658501, -6.378580283758453, 3.9057544520238987e-16], [-0.0032433377027039135, -6.486674864841223, 3.971943301661599e-16], [-0.003297384997749326, -6.594769445923994, 4.0381321512993e-16], [-0.003351432292794738, -6.702864027006764, 4.104321000937e-16], [-0.0034054795878401506, -6.810958608089535, 4.1705098505747006e-16], [-0.0034595268828855634, -6.919053189172304, 4.236698700212401e-16], [-0.0035135741779309757, -7.027147770255075, 4.3028875498501013e-16], [-0.003567621472976388, -7.135242351337845, 4.3690763994878016e-16], [-0.0036216687680218004, -7.243336932420616, 4.435265249125502e-16], [-0.003675716063067213, -7.351431513503386, 4.501454098763203e-16], [-0.003729763358112625, -7.459526094586156, 4.567642948400903e-16], [-0.0037838106531580375, -7.567620675668927, 4.633831798038604e-16], [-0.00383785794820345, -7.675715256751697, 4.700020647676303e-16], [-0.003891905243248862, -7.783809837834467, 4.766209497314004e-16], [-0.003945952538294275, -7.891904418917237, 4.832398346951704e-16], [-0.003999999833339687, -7.999999000000008, 4.898587196589405e-16]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0009999995000000417, -9.99999833334809e-07, 6.123233995736766e-20], [0.10909454004730183, -0.00010909457641232311, 6.68011730372742e-18], [0.21718908059460362, -0.00021718915299131144, 1.3299002267497472e-17], [0.3252836211419054, -0.00032528372957029973, 1.9917887231267525e-17], [0.43337816168920723, -0.00043337830614928805, 2.6536772195037576e-17], [0.541472702236509, -0.0005414728827282764, 3.315565715880763e-17], [0.6495672427838108, -0.0006495674593072646, 3.9774542122577683e-17], [0.7576617833311126, -0.0007576620358862529, 4.639342708634773e-17], [0.8657563238784144, -0.0008657566124652413, 5.3012312050117784e-17], [0.9738508644257161, -0.0009738511890442296, 5.963119701388784e-17], [1.081945404973018, -0.0010819457656232178, 6.625008197765789e-17], [1.1900399455203197, -0.001190040342202206, 7.286896694142793e-17], [1.2981344860676214, -0.0012981349187811944, 7.948785190519799e-17], [1.4062290266149233, -0.0014062294953601827, 8.610673686896804e-17], [1.514323567162225, -0.001514324071939171, 9.272562183273809e-17], [1.6224181077095268, -0.0016224186485181594, 9.934450679650815e-17], [1.7305126482568285, -0.0017305132250971477, 1.059633917602782e-16], [1.8386071888041304, -0.001838607801676136, 1.1258227672404824e-16], [1.9467017293514322, -0.0019467023782551243, 1.192011616878183e-16], [2.0547962698987337, -0.002054796954834112, 1.2582004665158834e-16], [2.162890810446035, -0.0021628915314131003, 1.3243893161535837e-16], [2.270985350993337, -0.0022709861079920884, 1.390578165791284e-16], [2.3790798915406386, -0.0023790806845710765, 1.4567670154289847e-16], [2.48717443208794, -0.0024871752611500646, 1.522955865066685e-16], [2.5952689726352416, -0.0025952698377290527, 1.5891447147043854e-16], [2.703363513182543, -0.0027033644143080408, 1.6553335643420857e-16], [2.8114580537298446, -0.002811458990887029, 1.721522413979786e-16], [2.919552594277146, -0.002919553567466017, 1.7877112636174864e-16], [3.027647134824448, -0.003027648144045005, 1.8539001132551868e-16], [3.1357416753717495, -0.003135742720623993, 1.9200889628928874e-16], [3.243836215919051, -0.0032438372972029813, 1.9862778125305877e-16], [3.3519307564663525, -0.0033519318737819694, 2.052466662168288e-16], [3.460025297013654, -0.0034600264503609575, 2.1186555118059884e-16], [3.5681198375609555, -0.0035681210269399456, 2.1848443614436888e-16], [3.6762143781082575, -0.0036762156035189337, 2.2510332110813894e-16], [3.784308918655559, -0.0037843101800979217, 2.3172220607190897e-16], [3.8924034592028605, -0.00389240475667691, 2.38341091035679e-16], [4.000497999750162, -0.004000499333255898, 2.4495997599944904e-16], [4.1085925402974635, -0.004108593909834886, 2.515788609632191e-16], [4.216687080844765, -0.004216688486413874, 2.581977459269891e-16], [4.3247816213920665, -0.004324783062992862, 2.6481663089075915e-16], [4.432876161939368, -0.00443287763957185, 2.714355158545292e-16], [4.5409707024866695, -0.0045409722161508384, 2.780544008182992e-16], [4.649065243033972, -0.0046490667927298265, 2.8467328578206926e-16], [4.757159783581273, -0.004757161369308815, 2.912921707458393e-16], [4.865254324128575, -0.004865255945887803, 2.9791105570960933e-16], [4.973348864675876, -0.004973350522466791, 3.0452994067337936e-16], [5.081443405223178, -0.005081445099045779, 3.1114882563714945e-16], [5.189537945770479, -0.005189539675624767, 3.177677106009195e-16], [5.297632486317781, -0.005297634252203755, 3.243865955646895e-16], [5.405727026865082, -0.005405728828782743, 3.3100548052845955e-16], [5.513821567412384, -0.005513823405361731, 3.376243654922296e-16], [5.621916107959685, -0.005621917981940719, 3.442432504559996e-16], [5.730010648506987, -0.0057300125585197075, 3.5086213541976966e-16], [5.838105189054288, -0.005838107135098696, 3.574810203835397e-16], [5.94619972960159, -0.005946201711677684, 3.6409990534730973e-16], [6.054294270148892, -0.006054296288256672, 3.7071879031107976e-16], [6.162388810696194, -0.00616239086483566, 3.773376752748498e-16], [6.270483351243495, -0.006270485441414648, 3.8395656023861983e-16], [6.378577891790797, -0.006378580017993636, 3.9057544520238987e-16], [6.486672432338098, -0.006486674594572624, 3.971943301661599e-16], [6.5947669728854, -0.006594769171151612, 4.0381321512993e-16], [6.702861513432701, -0.0067028637477306, 4.104321000937e-16], [6.810956053980003, -0.0068109583243095885, 4.1705098505747006e-16], [6.919050594527304, -0.006919052900888577, 4.236698700212401e-16], [7.027145135074606, -0.007027147477467565, 4.3028875498501013e-16], [7.135239675621907, -0.007135242054046553, 4.3690763994878016e-16], [7.243334216169209, -0.007243336630625541, 4.435265249125502e-16], [7.351428756716511, -0.007351431207204529, 4.501454098763203e-16], [7.459523297263813, -0.007459525783783517, 4.567642948400903e-16], [7.567617837811114, -0.007567620360362505, 4.633831798038604e-16], [7.675712378358416, -0.007675714936941493, 4.700020647676303e-16], [7.783806918905717, -0.007783809513520481, 4.766209497314004e-16], [7.891901459453019, -0.00789190409009947, 4.832398346951704e-16], [7.99999600000032, -0.007999998666678457, 4.898587196589405e-16]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0007074598924439699, 7.074601282640283e-07, -0.00070675313942234], [0.07718005015811037, 7.718007588480406e-05, -0.07710294722373716], [0.1536526404237768, 0.0001536526916413441, -0.15349914130805198], [0.23012523068944318, 0.0002301253073978841, -0.2298953353923668], [0.3065978209551096, 0.00030659792315442414, -0.30629152947668165], [0.383070411220776, 0.00038307053891096414, -0.38268772356099645], [0.45954300148644245, 0.0004595431546675042, -0.45908391764531126], [0.5360155917521088, 0.0005360157704240443, -0.5354801117296261], [0.6124881820177752, 0.0006124883861805843, -0.6118763058139409], [0.6889607722834417, 0.0006889610019371243, -0.6882724998982558], [0.765433362549108, 0.0007654336176936643, -0.7646686939825705], [0.8419059528147744, 0.0008419062334502042, -0.8410648880668853], [0.9183785430804408, 0.0009183788492067443, -0.9174610821512001], [0.9948511333461073, 0.0009948514649632844, -0.993857276235515], [1.0713237236117736, 0.0010713240807198243, -1.0702534703198299], [1.14779631387744, 0.0011477966964763644, -1.1466496644041446], [1.2242689041431063, 0.0012242693122329043, -1.2230458584884594], [1.300741494408773, 0.0013007419279894444, -1.2994420525727743], [1.3772140846744392, 0.0013772145437459845, -1.375838246657089], [1.4536866749401054, 0.0014536871595025242, -1.4522344407414038], [1.5301592652057716, 0.001530159775259064, -1.5286306348257184], [1.606631855471438, 0.0016066323910156042, -1.6050268289100331], [1.6831044457371043, 0.0016831050067721439, -1.6814230229943476], [1.7595770360027705, 0.0017595776225286838, -1.7578192170786624], [1.8360496262684367, 0.001836050238285224, -1.8342154111629771], [1.912522216534103, 0.0019125228540417636, -1.9106116052472917], [1.9889948067997691, 0.0019889954697983035, -1.9870077993316064], [2.065467397065435, 0.002065468085554843, -2.063403993415921], [2.141939987331102, 0.0021419407013113833, -2.139800187500236], [2.218412577596768, 0.002218413317067923, -2.2161963815845502], [2.2948851678624345, 0.0022948859328244626, -2.292592575668865], [2.3713577581281005, 0.0023713585485810027, -2.3689887697531797], [2.4478303483937665, 0.002447831164337543, -2.4453849638374945], [2.524302938659433, 0.0025243037800940825, -2.5217811579218092], [2.6007755289250993, 0.0026007763958506226, -2.5981773520061235], [2.6772481191907658, 0.0026772490116071623, -2.6745735460904383], [2.7537207094564318, 0.002753721627363702, -2.750969740174753], [2.8301932997220978, 0.0028301942431202417, -2.827365934259068], [2.906665889987764, 0.002906666858876782, -2.9037621283433825], [2.98313848025343, 0.0029831394746333215, -2.980158322427697], [3.0596110705190966, 0.003059612090389862, -3.0565545165120116], [3.1360836607847626, 0.0031360847061464017, -3.1329507105963263], [3.212556251050429, 0.0032125573219029414, -3.209346904680641], [3.289028841316096, 0.003289029937659481, -3.285743098764956], [3.365501431581762, 0.0033655025534160207, -3.3621392928492706], [3.4419740218474284, 0.003441975169172561, -3.438535486933585], [3.5184466121130944, 0.003518447784929101, -3.5149316810178997], [3.594919202378761, 0.003594920400685641, -3.5913278751022144], [3.671391792644427, 0.0036713930164421807, -3.667724069186529], [3.747864382910093, 0.0037478656321987204, -3.744120263270844], [3.8243369731757593, 0.00382433824795526, -3.820516457355158], [3.9008095634414253, 0.0039008108637117998, -3.896912651439473], [3.9772821537070917, 0.00397728347946834, -3.9733088455237877], [4.053754743972758, 0.0040537560952248804, -4.049705039608102], [4.130227334238424, 0.00413022871098142, -4.126101233692417], [4.206699924504091, 0.00420670132673796, -4.2024974277767315], [4.283172514769757, 0.0042831739424944995, -4.278893621861046], [4.3596451050354235, 0.004359646558251039, -4.355289815945361], [4.43611769530109, 0.004436119174007579, -4.431686010029676], [4.5125902855667555, 0.0045125917897641185, -4.5080822041139905], [4.589062875832422, 0.004589064405520659, -4.584478398198305], [4.665535466098088, 0.004665537021277199, -4.66087459228262], [4.742008056363754, 0.004742009637033738, -4.737270786366935], [4.81848064662942, 0.004818482252790279, -4.813666980451249], [4.894953236895087, 0.004894954868546819, -4.890063174535563], [4.971425827160753, 0.004971427484303358, -4.966459368619878], [5.047898417426419, 0.005047900100059898, -5.042855562704193], [5.124371007692085, 0.0051243727158164385, -5.119251756788508], [5.2008435979577525, 0.005200845331572978, -5.195647950872822], [5.277316188223418, 0.005277317947329518, -5.272044144957137], [5.3537887784890845, 0.005353790563086058, -5.348440339041452], [5.430261368754751, 0.005430263178842597, -5.424836533125767], [5.5067339590204165, 0.005506735794599137, -5.501232727210081], [5.583206549286083, 0.005583208410355677, -5.577628921294395], [5.659679139551749, 0.005659681026112217, -5.65402511537871]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.5373010834803747e-07, 0.0007074601577415346, -0.00070675313942234], [-3.859004276613116e-05, 0.07718007910064065, -0.07710294722373716], [-7.68263554239143e-05, 0.15365269804353976, -0.15349914130805198], [-0.00011506266808169742, 0.23012531698643887, -0.2298953353923668], [-0.00015329898073948055, 0.306597935929338, -0.30629152947668165], [-0.00019153529339726368, 0.38307055487223707, -0.38268772356099645], [-0.00022977160605504678, 0.4595431738151362, -0.45908391764531126], [-0.00026800791871282994, 0.5360157927580353, -0.5354801117296261], [-0.00030624423137061305, 0.6124884117009345, -0.6118763058139409], [-0.00034448054402839615, 0.6889610306438335, -0.6882724998982558], [-0.00038271685668617926, 0.7654336495867325, -0.7646686939825705], [-0.00042095316934396236, 0.8419062685296317, -0.8410648880668853], [-0.00045918948200174547, 0.9183788874725308, -0.9174610821512001], [-0.0004974257946595286, 0.99485150641543, -0.993857276235515], [-0.0005356621073173117, 1.071324125358329, -1.0702534703198299], [-0.0005738984199750948, 1.1477967443012282, -1.1466496644041446], [-0.0006121347326328779, 1.2242693632441273, -1.2230458584884594], [-0.0006503710452906612, 1.3007419821870263, -1.2994420525727743], [-0.0006886073579484443, 1.3772146011299253, -1.375838246657089], [-0.0007268436706062273, 1.4536872200728246, -1.4522344407414038], [-0.0007650799832640104, 1.5301598390157234, -1.5286306348257184], [-0.0008033162959217934, 1.6066324579586222, -1.6050268289100331], [-0.0008415526085795764, 1.6831050769015212, -1.6814230229943476], [-0.0008797889212373596, 1.75957769584442, -1.7578192170786624], [-0.0009180252338951426, 1.8360503147873193, -1.8342154111629771], [-0.0009562615465529256, 1.9125229337302183, -1.9106116052472917], [-0.0009944978592107087, 1.9889955526731171, -1.9870077993316064], [-0.0010327341718684917, 2.065468171616016, -2.063403993415921], [-0.0010709704845262749, 2.141940790558915, -2.139800187500236], [-0.0011092067971840579, 2.2184134095018138, -2.2161963815845502], [-0.0011474431098418409, 2.294886028444713, -2.292592575668865], [-0.0011856794224996239, 2.371358647387612, -2.3689887697531797], [-0.0012239157351574069, 2.447831266330511, -2.4453849638374945], [-0.0012621520478151899, 2.52430388527341, -2.5217811579218092], [-0.001300388360472973, 2.600776504216309, -2.5981773520061235], [-0.001338624673130756, 2.6772491231592075, -2.6745735460904383], [-0.001376860985788539, 2.7537217421021065, -2.750969740174753], [-0.001415097298446322, 2.8301943610450055, -2.827365934259068], [-0.0014533336111041053, 2.9066669799879046, -2.9037621283433825], [-0.0014915699237618883, 2.9831395989308036, -2.980158322427697], [-0.0015298062364196713, 3.059612217873702, -3.0565545165120116], [-0.0015680425490774543, 3.136084836816601, -3.1329507105963263], [-0.0016062788617352375, 3.2125574557595007, -3.209346904680641], [-0.0016445151743930202, 3.2890300747023993, -3.285743098764956], [-0.0016827514870508035, 3.3655026936452983, -3.3621392928492706], [-0.0017209877997085867, 3.441975312588197, -3.438535486933585], [-0.0017592241123663697, 3.5184479315310964, -3.5149316810178997], [-0.0017974604250241524, 3.594920550473995, -3.5913278751022144], [-0.0018356967376819357, 3.671393169416894, -3.667724069186529], [-0.0018739330503397189, 3.7478657883597934, -3.744120263270844], [-0.0019121693629975017, 3.824338407302692, -3.820516457355158], [-0.0019504056756552849, 3.900811026245591, -3.896912651439473], [-0.001988641988313068, 3.9772836451884896, -3.9733088455237877], [-0.002026878300970851, 4.053756264131389, -4.049705039608102], [-0.002065114613628634, 4.130228883074288, -4.126101233692417], [-0.0021033509262864173, 4.206701502017187, -4.2024974277767315], [-0.0021415872389442, 4.283174120960086, -4.278893621861046], [-0.0021798235516019833, 4.359646739902985, -4.355289815945361], [-0.0022180598642597663, 4.436119358845883, -4.431686010029676], [-0.002256296176917549, 4.512591977788782, -4.5080822041139905], [-0.0022945324895753323, 4.589064596731681, -4.584478398198305], [-0.0023327688022331153, 4.665537215674581, -4.66087459228262], [-0.0023710051148908983, 4.7420098346174795, -4.737270786366935], [-0.0024092414275486813, 4.818482453560379, -4.813666980451249], [-0.0024474777402064647, 4.8949550725032775, -4.890063174535563], [-0.0024857140528642472, 4.971427691446176, -4.966459368619878], [-0.0025239503655220302, 5.047900310389075, -5.042855562704193], [-0.0025621866781798137, 5.124372929331974, -5.119251756788508], [-0.0026004229908375967, 5.200845548274874, -5.195647950872822], [-0.0026386593034953797, 5.277318167217772, -5.272044144957137], [-0.0026768956161531627, 5.353790786160672, -5.348440339041452], [-0.0027151319288109457, 5.43026340510357, -5.424836533125767], [-0.0027533682414687287, 5.506736024046469, -5.501232727210081], [-0.0027916045541265117, 5.5832086429893675, -5.577628921294395], [-0.0028298408667842946, 5.659681261932267, -5.65402511537871]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.0007074602461740635, 4.0081435432387717e-19, -0.00070675313942234], [-0.07718008874815153, 4.3726679492657566e-17, -0.07710294722373716], [-0.153652717250129, 8.705254463099127e-17, -0.15349914130805198], [-0.23012534575210647, 1.3037840976932494e-16, -0.2298953353923668], [-0.30659797425408397, 1.7370427490765864e-16, -0.30629152947668165], [-0.3830706027560614, 2.1703014004599231e-16, -0.38268772356099645], [-0.4595432312580389, 2.60356005184326e-16, -0.45908391764531126], [-0.5360158597600164, 3.0368187032265973e-16, -0.5354801117296261], [-0.6124884882619939, 3.470077354609934e-16, -0.6118763058139409], [-0.6889611167639713, 3.903336005993271e-16, -0.6882724998982558], [-0.7654337452659488, 4.3365946573766075e-16, -0.7646686939825705], [-0.8419063737679262, 4.769853308759944e-16, -0.8410648880668853], [-0.9183790022699037, 5.2031119601432815e-16, -0.9174610821512001], [-0.9948516307718811, 5.636370611526618e-16, -0.993857276235515], [-1.0713242592738585, 6.069629262909955e-16, -1.0702534703198299], [-1.147796887775836, 6.502887914293292e-16, -1.1466496644041446], [-1.2242695162778134, 6.936146565676629e-16, -1.2230458584884594], [-1.300742144779791, 7.369405217059966e-16, -1.2994420525727743], [-1.3772147732817686, 7.802663868443303e-16, -1.375838246657089], [-1.4536874017837458, 8.23592251982664e-16, -1.4522344407414038], [-1.5301600302857232, 8.669181171209974e-16, -1.5286306348257184], [-1.6066326587877005, 9.102439822593312e-16, -1.6050268289100331], [-1.6831052872896777, 9.535698473976647e-16, -1.6814230229943476], [-1.7595779157916551, 9.968957125359984e-16, -1.7578192170786624], [-1.8360505442936323, 1.0402215776743318e-15, -1.8342154111629771], [-1.9125231727956098, 1.0835474428126655e-15, -1.9106116052472917], [-1.988995801297587, 1.126873307950999e-15, -1.9870077993316064], [-2.0654684297995645, 1.1701991730893327e-15, -2.063403993415921], [-2.1419410583015415, 1.2135250382276663e-15, -2.139800187500236], [-2.218413686803519, 1.256850903366e-15, -2.2161963815845502], [-2.2948863153054964, 1.3001767685043335e-15, -2.292592575668865], [-2.3713589438074734, 1.3435026336426671e-15, -2.3689887697531797], [-2.447831572309451, 1.3868284987810006e-15, -2.4453849638374945], [-2.5243042008114283, 1.4301543639193343e-15, -2.5217811579218092], [-2.6007768293134057, 1.473480229057668e-15, -2.5981773520061235], [-2.6772494578153827, 1.5168060941960016e-15, -2.6745735460904383], [-2.75372208631736, 1.560131959334335e-15, -2.750969740174753], [-2.8301947148193376, 1.6034578244726686e-15, -2.827365934259068], [-2.9066673433213146, 1.6467836896110023e-15, -2.9037621283433825], [-2.983139971823292, 1.690109554749336e-15, -2.980158322427697], [-3.0596126003252695, 1.7334354198876696e-15, -3.0565545165120116], [-3.136085228827247, 1.776761285026003e-15, -3.1329507105963263], [-3.212557857329224, 1.8200871501643368e-15, -3.209346904680641], [-3.2890304858312014, 1.8634130153026704e-15, -3.285743098764956], [-3.365503114333179, 1.906738880441004e-15, -3.3621392928492706], [-3.441975742835156, 1.9500647455793374e-15, -3.438535486933585], [-3.5184483713371333, 1.993390610717671e-15, -3.5149316810178997], [-3.5949209998391107, 2.0367164758560047e-15, -3.5913278751022144], [-3.6713936283410877, 2.0800423409943384e-15, -3.667724069186529], [-3.747866256843065, 2.123368206132672e-15, -3.744120263270844], [-3.8243388853450426, 2.1666940712710054e-15, -3.820516457355158], [-3.90081151384702, 2.210019936409339e-15, -3.896912651439473], [-3.977284142348997, 2.2533458015476727e-15, -3.9733088455237877], [-4.053756770850974, 2.2966716666860064e-15, -4.049705039608102], [-4.1302293993529515, 2.33999753182434e-15, -4.126101233692417], [-4.206702027854929, 2.3833233969626737e-15, -4.2024974277767315], [-4.283174656356906, 2.426649262101007e-15, -4.278893621861046], [-4.359647284858884, 2.4699751272393407e-15, -4.355289815945361], [-4.436119913360861, 2.5133009923776744e-15, -4.431686010029676], [-4.512592541862839, 2.556626857516008e-15, -4.5080822041139905], [-4.589065170364815, 2.5999527226543417e-15, -4.584478398198305], [-4.665537798866793, 2.6432785877926754e-15, -4.66087459228262], [-4.74201042736877, 2.686604452931009e-15, -4.737270786366935], [-4.818483055870748, 2.7299303180693427e-15, -4.813666980451249], [-4.894955684372725, 2.7732561832076764e-15, -4.890063174535563], [-4.9714283128747025, 2.8165820483460093e-15, -4.966459368619878], [-5.04790094137668, 2.859907913484343e-15, -5.042855562704193], [-5.1243735698786566, 2.9032337786226766e-15, -5.119251756788508], [-5.200846198380634, 2.9465596437610103e-15, -5.195647950872822], [-5.2773188268826114, 2.989885508899344e-15, -5.272044144957137], [-5.353791455384589, 3.0332113740376776e-15, -5.348440339041452], [-5.430264083886566, 3.0765372391760113e-15, -5.424836533125767], [-5.506736712388544, 3.119863104314345e-15, -5.501232727210081], [-5.583209340890521, 3.1631889694526787e-15, -5.577628921294395], [-5.659681969392498, 3.206514834591012e-15, -5.65402511537871]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.5373010834883903e-07, -0.0007074601577415346, -0.00070675313942234], [-3.8590042766218614e-05, -0.07718007910064065, -0.07710294722373716], [-7.68263554240884e-05, -0.15365269804353976, -0.15349914130805198], [-0.00011506266808195817, -0.23012531698643887, -0.2298953353923668], [-0.00015329898073982795, -0.306597935929338, -0.30629152947668165], [-0.00019153529339769774, -0.38307055487223707, -0.38268772356099645], [-0.0002297716060555675, -0.4595431738151362, -0.45908391764531126], [-0.0002680079187134373, -0.5360157927580353, -0.5354801117296261], [-0.00030624423137130705, -0.6124884117009345, -0.6118763058139409], [-0.00034448054402917683, -0.6889610306438335, -0.6882724998982558], [-0.00038271685668704656, -0.7654336495867325, -0.7646686939825705], [-0.00042095316934491635, -0.8419062685296317, -0.8410648880668853], [-0.00045918948200278614, -0.9183788874725308, -0.9174610821512001], [-0.0004974257946606559, -0.99485150641543, -0.993857276235515], [-0.0005356621073185257, -1.071324125358329, -1.0702534703198299], [-0.0005738984199763954, -1.1477967443012282, -1.1466496644041446], [-0.0006121347326342653, -1.2242693632441273, -1.2230458584884594], [-0.000650371045292135, -1.3007419821870263, -1.2994420525727743], [-0.0006886073579500047, -1.3772146011299253, -1.375838246657089], [-0.0007268436706078746, -1.4536872200728246, -1.4522344407414038], [-0.0007650799832657442, -1.5301598390157234, -1.5286306348257184], [-0.0008033162959236138, -1.6066324579586222, -1.6050268289100331], [-0.0008415526085814836, -1.6831050769015212, -1.6814230229943476], [-0.0008797889212393532, -1.75957769584442, -1.7578192170786624], [-0.000918025233897223, -1.8360503147873193, -1.8342154111629771], [-0.0009562615465550927, -1.9125229337302183, -1.9106116052472917], [-0.0009944978592129623, -1.9889955526731171, -1.9870077993316064], [-0.001032734171870832, -2.065468171616016, -2.063403993415921], [-0.0010709704845287017, -2.141940790558915, -2.139800187500236], [-0.0011092067971865715, -2.2184134095018138, -2.2161963815845502], [-0.0011474431098444412, -2.294886028444713, -2.292592575668865], [-0.0011856794225023107, -2.371358647387612, -2.3689887697531797], [-0.0012239157351601805, -2.447831266330511, -2.4453849638374945], [-0.0012621520478180504, -2.52430388527341, -2.5217811579218092], [-0.00130038836047592, -2.600776504216309, -2.5981773520061235], [-0.0013386246731337897, -2.6772491231592075, -2.6745735460904383], [-0.0013768609857916594, -2.7537217421021065, -2.750969740174753], [-0.0014150972984495291, -2.8301943610450055, -2.827365934259068], [-0.0014533336111073989, -2.9066669799879046, -2.9037621283433825], [-0.0014915699237652684, -2.9831395989308036, -2.980158322427697], [-0.001529806236423138, -3.059612217873702, -3.0565545165120116], [-0.0015680425490810078, -3.136084836816601, -3.1329507105963263], [-0.0016062788617388774, -3.2125574557595007, -3.209346904680641], [-0.001644515174396747, -3.2890300747023993, -3.285743098764956], [-0.0016827514870546168, -3.3655026936452983, -3.3621392928492706], [-0.0017209877997124868, -3.441975312588197, -3.438535486933585], [-0.0017592241123703565, -3.5184479315310964, -3.5149316810178997], [-0.001797460425028226, -3.594920550473995, -3.5913278751022144], [-0.0018356967376860957, -3.671393169416894, -3.667724069186529], [-0.0018739330503439655, -3.7478657883597934, -3.744120263270844], [-0.001912169363001835, -3.824338407302692, -3.820516457355158], [-0.0019504056756597047, -3.900811026245591, -3.896912651439473], [-0.0019886419883175742, -3.9772836451884896, -3.9733088455237877], [-0.002026878300975444, -4.053756264131389, -4.049705039608102], [-0.002065114613633314, -4.130228883074288, -4.126101233692417], [-0.002103350926291184, -4.206701502017187, -4.2024974277767315], [-0.002141587238949053, -4.283174120960086, -4.278893621861046], [-0.002179823551606923, -4.359646739902985, -4.355289815945361], [-0.0022180598642647926, -4.436119358845883, -4.431686010029676], [-0.0022562961769226624, -4.512591977788782, -4.5080822041139905], [-0.002294532489580532, -4.589064596731681, -4.584478398198305], [-0.002332768802238402, -4.665537215674581, -4.66087459228262], [-0.0023710051148962716, -4.7420098346174795, -4.737270786366935], [-0.002409241427554141, -4.818482453560379, -4.813666980451249], [-0.002447477740212011, -4.8949550725032775, -4.890063174535563], [-0.0024857140528698808, -4.971427691446176, -4.966459368619878], [-0.0025239503655277505, -5.047900310389075, -5.042855562704193], [-0.0025621866781856202, -5.124372929331974, -5.119251756788508], [-0.0026004229908434895, -5.200845548274874, -5.195647950872822], [-0.0026386593035013593, -5.277318167217772, -5.272044144957137], [-0.002676895616159229, -5.353790786160672, -5.348440339041452], [-0.0027151319288170987, -5.43026340510357, -5.424836533125767], [-0.0027533682414749685, -5.506736024046469, -5.501232727210081], [-0.002791604554132838, -5.5832086429893675, -5.577628921294395], [-0.0028298408667907075, -5.659681261932267, -5.65402511537871]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0007074598924439699, -7.074601282650664e-07, -0.00070675313942234], [0.07718005015811037, -7.718007588491729e-05, -0.07710294722373716], [0.1536526404237768, -0.0001536526916415695, -0.15349914130805198], [0.23012523068944318, -0.00023012530739822173, -0.2298953353923668], [0.3065978209551096, -0.000306597923154874, -0.30629152947668165], [0.383070411220776, -0.0003830705389115262, -0.38268772356099645], [0.45954300148644245, -0.00045954315466817836, -0.45908391764531126], [0.5360155917521088, -0.0005360157704248306, -0.5354801117296261], [0.6124881820177752, -0.0006124883861814829, -0.6118763058139409], [0.6889607722834417, -0.0006889610019381351, -0.6882724998982558], [0.765433362549108, -0.0007654336176947872, -0.7646686939825705], [0.8419059528147744, -0.0008419062334514394, -0.8410648880668853], [0.9183785430804408, -0.0009183788492080916, -0.9174610821512001], [0.9948511333461073, -0.000994851464964744, -0.993857276235515], [1.0713237236117736, -0.0010713240807213962, -1.0702534703198299], [1.14779631387744, -0.0011477966964780484, -1.1466496644041446], [1.2242689041431063, -0.0012242693122347006, -1.2230458584884594], [1.300741494408773, -0.0013007419279913528, -1.2994420525727743], [1.3772140846744392, -0.001377214543748005, -1.375838246657089], [1.4536866749401054, -0.0014536871595046568, -1.4522344407414038], [1.5301592652057716, -0.001530159775261309, -1.5286306348257184], [1.606631855471438, -0.001606632391017961, -1.6050268289100331], [1.6831044457371043, -0.001683105006774613, -1.6814230229943476], [1.7595770360027705, -0.0017595776225312653, -1.7578192170786624], [1.8360496262684367, -0.0018360502382879173, -1.8342154111629771], [1.912522216534103, -0.0019125228540445693, -1.9106116052472917], [1.9889948067997691, -0.0019889954698012213, -1.9870077993316064], [2.065467397065435, -0.0020654680855578737, -2.063403993415921], [2.141939987331102, -0.0021419407013145257, -2.139800187500236], [2.218412577596768, -0.0022184133170711777, -2.2161963815845502], [2.2948851678624345, -0.0022948859328278297, -2.292592575668865], [2.3713577581281005, -0.0023713585485844817, -2.3689887697531797], [2.4478303483937665, -0.0024478311643411337, -2.4453849638374945], [2.524302938659433, -0.002524303780097786, -2.5217811579218092], [2.6007755289250993, -0.002600776395854438, -2.5981773520061235], [2.6772481191907658, -0.00267724901161109, -2.6745735460904383], [2.7537207094564318, -0.002753721627367742, -2.750969740174753], [2.8301932997220978, -0.002830194243124394, -2.827365934259068], [2.906665889987764, -0.002906666858881046, -2.9037621283433825], [2.98313848025343, -0.002983139474637698, -2.980158322427697], [3.0596110705190966, -0.0030596120903943506, -3.0565545165120116], [3.1360836607847626, -0.0031360847061510026, -3.1329507105963263], [3.212556251050429, -0.0032125573219076546, -3.209346904680641], [3.289028841316096, -0.0032890299376643066, -3.285743098764956], [3.365501431581762, -0.0033655025534209586, -3.3621392928492706], [3.4419740218474284, -0.0034419751691776106, -3.438535486933585], [3.5184466121130944, -0.003518447784934263, -3.5149316810178997], [3.594919202378761, -0.003594920400690915, -3.5913278751022144], [3.671391792644427, -0.003671393016447567, -3.667724069186529], [3.747864382910093, -0.003747865632204219, -3.744120263270844], [3.8243369731757593, -0.003824338247960871, -3.820516457355158], [3.9008095634414253, -0.003900810863717523, -3.896912651439473], [3.9772821537070917, -0.0039772834794741755, -3.9733088455237877], [4.053754743972758, -0.004053756095230827, -4.049705039608102], [4.130227334238424, -0.0041302287109874795, -4.126101233692417], [4.206699924504091, -0.004206701326744132, -4.2024974277767315], [4.283172514769757, -0.0042831739425007835, -4.278893621861046], [4.3596451050354235, -0.004359646558257436, -4.355289815945361], [4.43611769530109, -0.0044361191740140875, -4.431686010029676], [4.5125902855667555, -0.00451259178977074, -4.5080822041139905], [4.589062875832422, -0.0045890644055273915, -4.584478398198305], [4.665535466098088, -0.004665537021284044, -4.66087459228262], [4.742008056363754, -0.004742009637040696, -4.737270786366935], [4.81848064662942, -0.004818482252797348, -4.813666980451249], [4.894953236895087, -0.004894954868554, -4.890063174535563], [4.971425827160753, -0.004971427484310652, -4.966459368619878], [5.047898417426419, -0.005047900100067304, -5.042855562704193], [5.124371007692085, -0.005124372715823957, -5.119251756788508], [5.2008435979577525, -0.005200845331580608, -5.195647950872822], [5.277316188223418, -0.005277317947337261, -5.272044144957137], [5.3537887784890845, -0.005353790563093912, -5.348440339041452], [5.430261368754751, -0.005430263178850565, -5.424836533125767], [5.5067339590204165, -0.005506735794607216, -5.501232727210081], [5.583206549286083, -0.005583208410363869, -5.577628921294395], [5.659679139551749, -0.00565968102612052, -5.65402511537871]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.99999333333035e-07, 9.999996666662794e-10, -0.0009999995000000417], [0.00010909452186483231, 1.0909455822968747e-07, -0.10909454004730183], [0.00021718904439633157, 2.1718911679270867e-07, -0.21718908059460362], [0.00032528356692783085, 3.2528367535572986e-07, -0.3252836211419054], [0.00043337808945933013, 4.3337823391875104e-07, -0.43337816168920723], [0.0005414726119908294, 5.414727924817722e-07, -0.541472702236509], [0.0006495671345223287, 6.495673510447935e-07, -0.6495672427838108], [0.0007576616570538279, 7.576619096078146e-07, -0.7576617833311126], [0.0008657561795853272, 8.657564681708358e-07, -0.8657563238784144], [0.0009738507021168264, 9.73851026733857e-07, -0.9738508644257161], [0.0010819452246483257, 1.0819455852968781e-06, -1.081945404973018], [0.001190039747179825, 1.1900401438598992e-06, -1.1900399455203197], [0.001298134269711324, 1.2981347024229206e-06, -1.2981344860676214], [0.0014062287922428235, 1.4062292609859417e-06, -1.4062290266149233], [0.0015143233147743226, 1.5143238195489629e-06, -1.514323567162225], [0.0016224178373058218, 1.6224183781119842e-06, -1.6224181077095268], [0.0017305123598373212, 1.7305129366750051e-06, -1.7305126482568285], [0.0018386068823688206, 1.8386074952380265e-06, -1.8386071888041304], [0.0019467014049003198, 1.9467020538010476e-06, -1.9467017293514322], [0.0020547959274318187, 2.0547966123640685e-06, -2.0547962698987337], [0.0021628904499633177, 2.1628911709270894e-06, -2.162890810446035], [0.002270984972494817, 2.2709857294901108e-06, -2.270985350993337], [0.002379079495026316, 2.3790802880531317e-06, -2.3790798915406386], [0.002487174017557815, 2.487174846616152e-06, -2.48717443208794], [0.002595268540089314, 2.5952694051791736e-06, -2.5952689726352416], [0.002703363062620813, 2.7033639637421945e-06, -2.703363513182543], [0.002811457585152312, 2.8114585223052154e-06, -2.8114580537298446], [0.002919552107683811, 2.9195530808682363e-06, -2.919552594277146], [0.00302764663021531, 3.0276476394312572e-06, -3.027647134824448], [0.003135741152746809, 3.135742197994278e-06, -3.1357416753717495], [0.003243835675278308, 3.243836756557299e-06, -3.243836215919051], [0.003351930197809807, 3.3519313151203204e-06, -3.3519307564663525], [0.0034600247203413065, 3.4600258736833413e-06, -3.460025297013654], [0.0035681192428728054, 3.5681204322463623e-06, -3.5681198375609555], [0.003676213765404305, 3.676214990809383e-06, -3.6762143781082575], [0.003784308287935804, 3.784309549372404e-06, -3.784308918655559], [0.0038924028104673027, 3.892404107935425e-06, -3.8924034592028605], [0.004000497332998802, 4.000498666498446e-06, -4.000497999750162], [0.0041085918555303, 4.108593225061467e-06, -4.1085925402974635], [0.0042166863780618, 4.216687783624488e-06, -4.216687080844765], [0.004324780900593298, 4.3247823421875096e-06, -4.3247816213920665], [0.0044328754231247975, 4.4328769007505305e-06, -4.432876161939368], [0.004540969945656296, 4.5409714593135506e-06, -4.5409707024866695], [0.004649064468187796, 4.6490660178765715e-06, -4.649065243033972], [0.004757158990719296, 4.757160576439592e-06, -4.757159783581273], [0.004865253513250794, 4.865255135002613e-06, -4.865254324128575], [0.004973348035782294, 4.973349693565635e-06, -4.973348864675876], [0.005081442558313792, 5.081444252128656e-06, -5.081443405223178], [0.0051895370808452915, 5.189538810691677e-06, -5.189537945770479], [0.00529763160337679, 5.297633369254698e-06, -5.297632486317781], [0.0054057261259082895, 5.405727927817719e-06, -5.405727026865082], [0.005513820648439788, 5.51382248638074e-06, -5.513821567412384], [0.005621915170971287, 5.621917044943761e-06, -5.621916107959685], [0.005730009693502786, 5.730011603506782e-06, -5.730010648506987], [0.005838104216034285, 5.8381061620698025e-06, -5.838105189054288], [0.005946198738565784, 5.946200720632823e-06, -5.94619972960159], [0.006054293261097284, 6.054295279195844e-06, -6.054294270148892], [0.006162387783628783, 6.162389837758865e-06, -6.162388810696194], [0.006270482306160282, 6.270484396321886e-06, -6.270483351243495], [0.0063785768286917805, 6.378578954884907e-06, -6.378577891790797], [0.00648667135122328, 6.486673513447929e-06, -6.486672432338098], [0.006594765873754778, 6.59476807201095e-06, -6.5947669728854], [0.006702860396286278, 6.702862630573971e-06, -6.702861513432701], [0.006810954918817776, 6.810957189136992e-06, -6.810956053980003], [0.006919049441349276, 6.9190517477000125e-06, -6.919050594527304], [0.007027143963880775, 7.027146306263033e-06, -7.027145135074606], [0.007135238486412274, 7.1352408648260535e-06, -7.135239675621907], [0.007243333008943773, 7.243335423389075e-06, -7.243334216169209], [0.0073514275314752724, 7.351429981952096e-06, -7.351428756716511], [0.007459522054006772, 7.459524540515117e-06, -7.459523297263813], [0.00756761657653827, 7.567619099078138e-06, -7.567617837811114], [0.00767571109906977, 7.675713657641158e-06, -7.675712378358416], [0.007783805621601268, 7.783808216204179e-06, -7.783806918905717], [0.007891900144132767, 7.8919027747672e-06, -7.891901459453019], [0.007999994666664267, 7.999997333330221e-06, -7.99999600000032]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.999998958327871e-10, 9.999997083329335e-07, -0.0009999995000000417], [-5.454728593321743e-08, 0.0001090945627752942, -0.10909454004730183], [-1.0859457197060208e-07, 0.00021718912584225546, -0.21718908059460362], [-1.6264185800798672e-07, 0.0003252836889092167, -0.3252836211419054], [-2.1668914404537135e-07, 0.000433378251976178, -0.43337816168920723], [-2.70736430082756e-07, 0.0005414728150431393, -0.541472702236509], [-3.247837161201406e-07, 0.0006495673781101006, -0.6495672427838108], [-3.788310021575253e-07, 0.0007576619411770618, -0.7576617833311126], [-4.328782881949099e-07, 0.0008657565042440231, -0.8657563238784144], [-4.869255742322945e-07, 0.0009738510673109843, -0.9738508644257161], [-5.409728602696792e-07, 0.0010819456303779455, -1.081945404973018], [-5.950201463070638e-07, 0.0011900401934449066, -1.1900399455203197], [-6.490674323444484e-07, 0.0012981347565118682, -1.2981344860676214], [-7.03114718381833e-07, 0.0014062293195788293, -1.4062290266149233], [-7.571620044192177e-07, 0.0015143238826457906, -1.514323567162225], [-8.112092904566023e-07, 0.001622418445712752, -1.6224181077095268], [-8.65256576493987e-07, 0.0017305130087797132, -1.7305126482568285], [-9.193038625313717e-07, 0.0018386075718466743, -1.8386071888041304], [-9.733511485687563e-07, 0.0019467021349136356, -1.9467017293514322], [-1.0273984346061407e-06, 0.0020547966979805967, -2.0547962698987337], [-1.0814457206435254e-06, 0.002162891261047558, -2.162890810446035], [-1.1354930066809099e-06, 0.0022709858241145185, -2.270985350993337], [-1.1895402927182944e-06, 0.0023790803871814796, -2.3790798915406386], [-1.243587578755679e-06, 0.0024871749502484407, -2.48717443208794], [-1.2976348647930635e-06, 0.002595269513315402, -2.5952689726352416], [-1.351682150830448e-06, 0.002703364076382363, -2.703363513182543], [-1.4057294368678325e-06, 0.002811458639449324, -2.8114580537298446], [-1.459776722905217e-06, 0.002919553202516285, -2.919552594277146], [-1.5138240089426016e-06, 0.003027647765583246, -3.027647134824448], [-1.567871294979986e-06, 0.003135742328650207, -3.1357416753717495], [-1.6219185810173706e-06, 0.003243836891717168, -3.243836215919051], [-1.6759658670547553e-06, 0.0033519314547841295, -3.3519307564663525], [-1.7300131530921397e-06, 0.0034600260178510906, -3.460025297013654], [-1.7840604391295242e-06, 0.0035681205809180512, -3.5681198375609555], [-1.8381077251669089e-06, 0.0036762151439850123, -3.6762143781082575], [-1.8921550112042934e-06, 0.0037843097070519734, -3.784308918655559], [-1.946202297241678e-06, 0.003892404270118934, -3.8924034592028605], [-2.000249583279062e-06, 0.004000498833185896, -4.000497999750162], [-2.0542968693164468e-06, 0.004108593396252856, -4.1085925402974635], [-2.1083441553538315e-06, 0.004216687959319817, -4.216687080844765], [-2.1623914413912157e-06, 0.004324782522386778, -4.3247816213920665], [-2.2164387274286004e-06, 0.00443287708545374, -4.432876161939368], [-2.270486013465985e-06, 0.004540971648520701, -4.5409707024866695], [-2.3245332995033694e-06, 0.004649066211587662, -4.649065243033972], [-2.378580585540754e-06, 0.004757160774654623, -4.757159783581273], [-2.4326278715781387e-06, 0.004865255337721584, -4.865254324128575], [-2.4866751576155234e-06, 0.004973349900788545, -4.973348864675876], [-2.5407224436529077e-06, 0.005081444463855505, -5.081443405223178], [-2.5947697296902924e-06, 0.005189539026922467, -5.189537945770479], [-2.648817015727677e-06, 0.005297633589989428, -5.297632486317781], [-2.7028643017650613e-06, 0.005405728153056389, -5.405727026865082], [-2.756911587802446e-06, 0.0055138227161233505, -5.513821567412384], [-2.8109588738398307e-06, 0.005621917279190311, -5.621916107959685], [-2.8650061598772145e-06, 0.005730011842257272, -5.730010648506987], [-2.919053445914599e-06, 0.005838106405324233, -5.838105189054288], [-2.973100731951984e-06, 0.005946200968391194, -5.94619972960159], [-3.027148017989368e-06, 0.006054295531458156, -6.054294270148892], [-3.081195304026753e-06, 0.006162390094525116, -6.162388810696194], [-3.1352425900641375e-06, 0.006270484657592078, -6.270483351243495], [-3.189289876101522e-06, 0.0063785792206590385, -6.378577891790797], [-3.2433371621389065e-06, 0.006486673783725999, -6.486672432338098], [-3.297384448176291e-06, 0.006594768346792961, -6.5947669728854], [-3.3514317342136754e-06, 0.006702862909859921, -6.702861513432701], [-3.40547902025106e-06, 0.006810957472926883, -6.810956053980003], [-3.459526306288445e-06, 0.0069190520359938435, -6.919050594527304], [-3.513573592325829e-06, 0.007027146599060805, -7.027145135074606], [-3.5676208783632137e-06, 0.007135241162127766, -7.135239675621907], [-3.6216681644005984e-06, 0.007243335725194727, -7.243334216169209], [-3.675715450437983e-06, 0.007351430288261688, -7.351428756716511], [-3.7297627364753674e-06, 0.0074595248513286486, -7.459523297263813], [-3.783810022512752e-06, 0.00756761941439561, -7.567617837811114], [-3.837857308550137e-06, 0.007675713977462571, -7.675712378358416], [-3.891904594587521e-06, 0.007783808540529532, -7.783806918905717], [-3.945951880624905e-06, 0.007891903103596493, -7.891901459453019], [-3.9999991666622895e-06, 0.007999997666663454, -7.99999600000032]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-9.999998333329099e-07, 5.665537953389098e-22, -0.0009999995000000417], [-0.00010909457641211596, 6.180795661852727e-20, -0.10909454004730183], [-0.000217189152990899, 1.2304935944171565e-19, -0.21718908059460362], [-0.00032528372956968206, 1.8429076226490402e-19, -0.3252836211419054], [-0.00043337830614846514, 2.455321650880924e-19, -0.43337816168920723], [-0.0005414728827272482, 3.067735679112807e-19, -0.541472702236509], [-0.0006495674593060312, 3.680149707344691e-19, -0.6495672427838108], [-0.0007576620358848143, 4.2925637355765745e-19, -0.7576617833311126], [-0.0008657566124635974, 4.904977763808459e-19, -0.8657563238784144], [-0.0009738511890423804, 5.517391792040342e-19, -0.9738508644257161], [-0.0010819457656211634, 6.129805820272225e-19, -1.081945404973018], [-0.0011900403421999464, 6.742219848504109e-19, -1.1900399455203197], [-0.0012981349187787294, 7.354633876735993e-19, -1.2981344860676214], [-0.0014062294953575125, 7.967047904967876e-19, -1.4062290266149233], [-0.0015143240719362955, 8.579461933199759e-19, -1.514323567162225], [-0.0016224186485150787, 9.191875961431643e-19, -1.6224181077095268], [-0.0017305132250938617, 9.804289989663527e-19, -1.7305126482568285], [-0.0018386078016726446, 1.0416704017895411e-18, -1.8386071888041304], [-0.0019467023782514278, 1.1029118046127295e-18, -1.9467017293514322], [-0.002054796954830211, 1.1641532074359177e-18, -2.0547962698987337], [-0.0021628915314089933, 1.2253946102591059e-18, -2.162890810446035], [-0.0022709861079877763, 1.2866360130822943e-18, -2.270985350993337], [-0.0023790806845665593, 1.3478774159054823e-18, -2.3790798915406386], [-0.002487175261145342, 1.4091188187286707e-18, -2.48717443208794], [-0.0025952698377241248, 1.4703602215518589e-18, -2.5952689726352416], [-0.0027033644143029077, 1.531601624375047e-18, -2.703363513182543], [-0.0028114589908816903, 1.5928430271982353e-18, -2.8114580537298446], [-0.0029195535674604732, 1.6540844300214237e-18, -2.919552594277146], [-0.003027648144039256, 1.7153258328446117e-18, -3.027647134824448], [-0.0031357427206180387, 1.7765672356678002e-18, -3.1357416753717495], [-0.0032438372971968217, 1.8378086384909884e-18, -3.243836215919051], [-0.0033519318737756047, 1.8990500413141766e-18, -3.3519307564663525], [-0.003460026450354387, 1.960291444137365e-18, -3.460025297013654], [-0.00356812102693317, 2.021532846960553e-18, -3.5681198375609555], [-0.003676215603511953, 2.0827742497837412e-18, -3.6762143781082575], [-0.003784310180090736, 2.14401565260693e-18, -3.784308918655559], [-0.0038924047566695186, 2.2052570554301176e-18, -3.8924034592028605], [-0.004000499333248302, 2.266498458253306e-18, -4.000497999750162], [-0.004108593909827084, 2.3277398610764944e-18, -4.1085925402974635], [-0.0042166884864058675, 2.3889812638996826e-18, -4.216687080844765], [-0.00432478306298465, 2.4502226667228708e-18, -4.3247816213920665], [-0.004432877639563433, 2.511464069546059e-18, -4.432876161939368], [-0.004540972216142216, 2.5727054723692472e-18, -4.5409707024866695], [-0.0046490667927209985, 2.6339468751924354e-18, -4.649065243033972], [-0.004757161369299781, 2.695188278015624e-18, -4.757159783581273], [-0.0048652559458785645, 2.7564296808388118e-18, -4.865254324128575], [-0.004973350522457347, 2.817671083662e-18, -4.973348864675876], [-0.0050814450990361295, 2.8789124864851886e-18, -5.081443405223178], [-0.005189539675614913, 2.9401538893083768e-18, -5.189537945770479], [-0.0052976342521936955, 3.001395292131565e-18, -5.297632486317781], [-0.005405728828772478, 3.062636694954753e-18, -5.405727026865082], [-0.005513823405351261, 3.1238780977779414e-18, -5.513821567412384], [-0.005621917981930044, 3.1851195006011296e-18, -5.621916107959685], [-0.0057300125585088265, 3.246360903424318e-18, -5.730010648506987], [-0.00583810713508761, 3.307602306247506e-18, -5.838105189054288], [-0.005946201711666392, 3.368843709070694e-18, -5.94619972960159], [-0.006054296288245175, 3.4300851118938827e-18, -6.054294270148892], [-0.006162390864823958, 3.491326514717071e-18, -6.162388810696194], [-0.006270485441402741, 3.552567917540259e-18, -6.270483351243495], [-0.006378580017981523, 3.613809320363447e-18, -6.378577891790797], [-0.006486674594560307, 3.675050723186635e-18, -6.486672432338098], [-0.006594769171139089, 3.736292126009824e-18, -6.5947669728854], [-0.006702863747717873, 3.797533528833012e-18, -6.702861513432701], [-0.006810958324296655, 3.8587749316562e-18, -6.810956053980003], [-0.006919052900875438, 3.920016334479389e-18, -6.919050594527304], [-0.007027147477454221, 3.9812577373025765e-18, -7.027145135074606], [-0.007135242054033004, 4.042499140125764e-18, -7.135239675621907], [-0.007243336630611786, 4.103740542948953e-18, -7.243334216169209], [-0.00735143120719057, 4.1649819457721415e-18, -7.351428756716511], [-0.007459525783769352, 4.226223348595329e-18, -7.459523297263813], [-0.007567620360348135, 4.287464751418518e-18, -7.567617837811114], [-0.007675714936926918, 4.3487061542417065e-18, -7.675712378358416], [-0.007783809513505701, 4.409947557064894e-18, -7.783806918905717], [-0.007891904090084483, 4.471188959888083e-18, -7.891901459453019], [-0.007999998666663266, 4.532430362711271e-18, -7.99999600000032]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.999998958339201e-10, -9.999997083329335e-07, -0.0009999995000000417], [-5.454728593334104e-08, -0.0001090945627752942, -0.10909454004730183], [-1.0859457197084817e-07, -0.00021718912584225546, -0.21718908059460362], [-1.626418580083553e-07, -0.0003252836889092167, -0.3252836211419054], [-2.1668914404586242e-07, -0.000433378251976178, -0.43337816168920723], [-2.7073643008336956e-07, -0.0005414728150431393, -0.541472702236509], [-3.247837161208767e-07, -0.0006495673781101006, -0.6495672427838108], [-3.788310021583838e-07, -0.0007576619411770618, -0.7576617833311126], [-4.328782881958909e-07, -0.0008657565042440231, -0.8657563238784144], [-4.86925574233398e-07, -0.0009738510673109843, -0.9738508644257161], [-5.409728602709051e-07, -0.0010819456303779455, -1.081945404973018], [-5.950201463084123e-07, -0.0011900401934449066, -1.1900399455203197], [-6.490674323459193e-07, -0.0012981347565118682, -1.2981344860676214], [-7.031147183834264e-07, -0.0014062293195788293, -1.4062290266149233], [-7.571620044209336e-07, -0.0015143238826457906, -1.514323567162225], [-8.112092904584407e-07, -0.001622418445712752, -1.6224181077095268], [-8.652565764959479e-07, -0.0017305130087797132, -1.7305126482568285], [-9.19303862533455e-07, -0.0018386075718466743, -1.8386071888041304], [-9.733511485709621e-07, -0.0019467021349136356, -1.9467017293514322], [-1.0273984346084692e-06, -0.0020547966979805967, -2.0547962698987337], [-1.081445720645976e-06, -0.002162891261047558, -2.162890810446035], [-1.1354930066834832e-06, -0.0022709858241145185, -2.270985350993337], [-1.18954029272099e-06, -0.0023790803871814796, -2.3790798915406386], [-1.2435875787584971e-06, -0.0024871749502484407, -2.48717443208794], [-1.2976348647960042e-06, -0.002595269513315402, -2.5952689726352416], [-1.3516821508335113e-06, -0.002703364076382363, -2.703363513182543], [-1.4057294368710182e-06, -0.002811458639449324, -2.8114580537298446], [-1.4597767229085252e-06, -0.002919553202516285, -2.919552594277146], [-1.5138240089460321e-06, -0.003027647765583246, -3.027647134824448], [-1.5678712949835392e-06, -0.003135742328650207, -3.1357416753717495], [-1.6219185810210463e-06, -0.003243836891717168, -3.243836215919051], [-1.6759658670585531e-06, -0.0033519314547841295, -3.3519307564663525], [-1.7300131530960602e-06, -0.0034600260178510906, -3.460025297013654], [-1.7840604391335673e-06, -0.0035681205809180512, -3.5681198375609555], [-1.8381077251710744e-06, -0.0036762151439850123, -3.6762143781082575], [-1.8921550112085813e-06, -0.0037843097070519734, -3.784308918655559], [-1.9462022972460883e-06, -0.003892404270118934, -3.8924034592028605], [-2.0002495832835954e-06, -0.004000498833185896, -4.000497999750162], [-2.0542968693211025e-06, -0.004108593396252856, -4.1085925402974635], [-2.1083441553586096e-06, -0.004216687959319817, -4.216687080844765], [-2.1623914413961162e-06, -0.004324782522386778, -4.3247816213920665], [-2.2164387274336233e-06, -0.00443287708545374, -4.432876161939368], [-2.2704860134711304e-06, -0.004540971648520701, -4.5409707024866695], [-2.324533299508637e-06, -0.004649066211587662, -4.649065243033972], [-2.378580585546144e-06, -0.004757160774654623, -4.757159783581273], [-2.4326278715836517e-06, -0.004865255337721584, -4.865254324128575], [-2.4866751576211587e-06, -0.004973349900788545, -4.973348864675876], [-2.5407224436586654e-06, -0.005081444463855505, -5.081443405223178], [-2.5947697296961725e-06, -0.005189539026922467, -5.189537945770479], [-2.6488170157336796e-06, -0.005297633589989428, -5.297632486317781], [-2.7028643017711866e-06, -0.005405728153056389, -5.405727026865082], [-2.7569115878086933e-06, -0.0055138227161233505, -5.513821567412384], [-2.8109588738462004e-06, -0.005621917279190311, -5.621916107959685], [-2.8650061598837075e-06, -0.005730011842257272, -5.730010648506987], [-2.919053445921215e-06, -0.005838106405324233, -5.838105189054288], [-2.9731007319587216e-06, -0.005946200968391194, -5.94619972960159], [-3.0271480179962287e-06, -0.006054295531458156, -6.054294270148892], [-3.0811953040337358e-06, -0.006162390094525116, -6.162388810696194], [-3.1352425900712424e-06, -0.006270484657592078, -6.270483351243495], [-3.1892898761087495e-06, -0.0063785792206590385, -6.378577891790797], [-3.2433371621462566e-06, -0.006486673783725999, -6.486672432338098], [-3.2973844481837637e-06, -0.006594768346792961, -6.5947669728854], [-3.3514317342212703e-06, -0.006702862909859921, -6.702861513432701], [-3.4054790202587774e-06, -0.006810957472926883, -6.810956053980003], [-3.459526306296285e-06, -0.0069190520359938435, -6.919050594527304], [-3.513573592333792e-06, -0.007027146599060805, -7.027145135074606], [-3.5676208783712987e-06, -0.007135241162127766, -7.135239675621907], [-3.6216681644088057e-06, -0.007243335725194727, -7.243334216169209], [-3.675715450446313e-06, -0.007351430288261688, -7.351428756716511], [-3.7297627364838195e-06, -0.0074595248513286486, -7.459523297263813], [-3.7838100225213266e-06, -0.00756761941439561, -7.567617837811114], [-3.837857308558833e-06, -0.007675713977462571, -7.675712378358416], [-3.89190459459634e-06, -0.007783808540529532, -7.783806918905717], [-3.945951880633847e-06, -0.007891903103596493, -7.891901459453019], [-3.9999991666713545e-06, -0.007999997666663454, -7.99999600000032]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.99999333333035e-07, -9.999996666677466e-10, -0.0009999995000000417], [0.00010909452186483231, -1.0909455822984752e-07, -0.10909454004730183], [0.00021718904439633157, -2.1718911679302732e-07, -0.21718908059460362], [0.00032528356692783085, -3.252836753562071e-07, -0.3252836211419054], [0.00043337808945933013, -4.3337823391938685e-07, -0.43337816168920723], [0.0005414726119908294, -5.414727924825667e-07, -0.541472702236509], [0.0006495671345223287, -6.495673510457464e-07, -0.6495672427838108], [0.0007576616570538279, -7.576619096089262e-07, -0.7576617833311126], [0.0008657561795853272, -8.65756468172106e-07, -0.8657563238784144], [0.0009738507021168264, -9.738510267352857e-07, -0.9738508644257161], [0.0010819452246483257, -1.0819455852984654e-06, -1.081945404973018], [0.001190039747179825, -1.1900401438616452e-06, -1.1900399455203197], [0.001298134269711324, -1.298134702424825e-06, -1.2981344860676214], [0.0014062287922428235, -1.4062292609880049e-06, -1.4062290266149233], [0.0015143233147743226, -1.5143238195511846e-06, -1.514323567162225], [0.0016224178373058218, -1.6224183781143644e-06, -1.6224181077095268], [0.0017305123598373212, -1.730512936677544e-06, -1.7305126482568285], [0.0018386068823688206, -1.8386074952407238e-06, -1.8386071888041304], [0.0019467014049003198, -1.946702053803904e-06, -1.9467017293514322], [0.0020547959274318187, -2.054796612367083e-06, -2.0547962698987337], [0.0021628904499633177, -2.162891170930263e-06, -2.162890810446035], [0.002270984972494817, -2.270985729493442e-06, -2.270985350993337], [0.002379079495026316, -2.379080288056622e-06, -2.3790798915406386], [0.002487174017557815, -2.4871748466198012e-06, -2.48717443208794], [0.002595268540089314, -2.595269405182981e-06, -2.5952689726352416], [0.002703363062620813, -2.7033639637461607e-06, -2.703363513182543], [0.002811457585152312, -2.81145852230934e-06, -2.8114580537298446], [0.002919552107683811, -2.9195530808725198e-06, -2.919552594277146], [0.00302764663021531, -3.027647639435699e-06, -3.027647134824448], [0.003135741152746809, -3.135742197998879e-06, -3.1357416753717495], [0.003243835675278308, -3.243836756562058e-06, -3.243836215919051], [0.003351930197809807, -3.351931315125238e-06, -3.3519307564663525], [0.0034600247203413065, -3.4600258736884176e-06, -3.460025297013654], [0.0035681192428728054, -3.568120432251597e-06, -3.5681198375609555], [0.003676213765404305, -3.6762149908147767e-06, -3.6762143781082575], [0.003784308287935804, -3.784309549377956e-06, -3.784308918655559], [0.0038924028104673027, -3.892404107941136e-06, -3.8924034592028605], [0.004000497332998802, -4.000498666504315e-06, -4.000497999750162], [0.0041085918555303, -4.108593225067495e-06, -4.1085925402974635], [0.0042166863780618, -4.2166877836306745e-06, -4.216687080844765], [0.004324780900593298, -4.324782342193854e-06, -4.3247816213920665], [0.0044328754231247975, -4.432876900757034e-06, -4.432876161939368], [0.004540969945656296, -4.540971459320213e-06, -4.5409707024866695], [0.004649064468187796, -4.649066017883393e-06, -4.649065243033972], [0.004757158990719296, -4.757160576446572e-06, -4.757159783581273], [0.004865253513250794, -4.865255135009752e-06, -4.865254324128575], [0.004973348035782294, -4.9733496935729314e-06, -4.973348864675876], [0.005081442558313792, -5.081444252136111e-06, -5.081443405223178], [0.0051895370808452915, -5.189538810699291e-06, -5.189537945770479], [0.00529763160337679, -5.29763336926247e-06, -5.297632486317781], [0.0054057261259082895, -5.4057279278256496e-06, -5.405727026865082], [0.005513820648439788, -5.51382248638883e-06, -5.513821567412384], [0.005621915170971287, -5.621917044952009e-06, -5.621916107959685], [0.005730009693502786, -5.730011603515188e-06, -5.730010648506987], [0.005838104216034285, -5.838106162078368e-06, -5.838105189054288], [0.005946198738565784, -5.946200720641548e-06, -5.94619972960159], [0.006054293261097284, -6.054295279204727e-06, -6.054294270148892], [0.006162387783628783, -6.1623898377679065e-06, -6.162388810696194], [0.006270482306160282, -6.270484396331087e-06, -6.270483351243495], [0.0063785768286917805, -6.378578954894266e-06, -6.378577891790797], [0.00648667135122328, -6.486673513457445e-06, -6.486672432338098], [0.006594765873754778, -6.594768072020625e-06, -6.5947669728854], [0.006702860396286278, -6.702862630583805e-06, -6.702861513432701], [0.006810954918817776, -6.810957189146984e-06, -6.810956053980003], [0.006919049441349276, -6.919051747710163e-06, -6.919050594527304], [0.007027143963880775, -7.0271463062733435e-06, -7.027145135074606], [0.007135238486412274, -7.135240864836523e-06, -7.135239675621907], [0.007243333008943773, -7.243335423399702e-06, -7.243334216169209], [0.0073514275314752724, -7.351429981962882e-06, -7.351428756716511], [0.007459522054006772, -7.459524540526062e-06, -7.459523297263813], [0.00756761657653827, -7.567619099089241e-06, -7.567617837811114], [0.00767571109906977, -7.67571365765242e-06, -7.675712378358416], [0.007783805621601268, -7.7838082162156e-06, -7.783806918905717], [0.007891900144132767, -7.89190277477878e-06, -7.891901459453019], [0.007999994666664267, -7.999997333341959e-06, -7.99999600000032]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.999993333334667e-07, 9.999996666667112e-10, 0.0009999995000000417], [4.3413257538534856e-05, 4.3413272009626484e-08, 0.0009990571991558745], [8.574838168282191e-05, 8.574841026562724e-08, 0.000996316820938996], [0.00012792917810194892, 1.2792922074502534e-07, 0.0009917832974114225], [0.00016987973088672842, 1.6987978751332802e-07, 0.0009854647878918407], [0.00021152453851452615, 2.1152460902273383e-07, 0.0009773726642706745], [0.0002527886497349534, 2.5278873399787034e-07, 0.0009675214905432515], [0.0002935977984651942, 2.9359789633116614e-07, 0.0009559289965978992], [0.0003338785374521848, 3.3387864874507516e-07, 0.0009426160463061501], [0.0003735583704610854, 3.73558494980592e-07, 0.0009276065999724826], [0.0004125658827521326, 4.1256602027414847e-07, 0.0009109276712111849], [0.00045083086961104625, 4.5083101988806286e-07, 0.0008926092783279475], [0.0004882844627016629, 4.882846254632155e-07, 0.0008726843902936921], [0.00052485925401339, 5.248594289665446e-07, 0.0008511888674078671], [0.0005604894171804052, 5.604896040102857e-07, 0.0008281613967580072], [0.0005951108259542509, 5.951110243246055e-07, 0.0008036434225917102], [0.0006286611696166013, 6.286613791704084e-07, 0.0007776790717263499], [0.0006610800651244867, 6.610802854845966e-07, 0.0007503150741307684], [0.0006923091657861359, 6.923093965559501e-07, 0.0007216006788218842], [0.0007222922662718467, 7.222925070360317e-07, 0.0006915875652275813], [0.0007509754037708884, 7.509756540961231e-07, 0.0006603297501754091], [0.0007783069551123767, 7.783072145481321e-07, 0.0006278834906744886], [0.0008042377296753241, 8.042379977546746e-07, 0.0005943071826656004], [0.0008287210579206516, 8.287213341611147e-07, 0.0005596612559216747], [0.00085171287538582, 8.517131592902253e-07, 0.0005240080652878475], [0.0008731718019909133, 8.73172093048297e-07, 0.00048741177845681706], [0.0008930592165134391, 8.930595141999636e-07, 0.000449938260481487], [0.0009113393260978083, 9.113396298777051e-07, 0.0004116549552327431], [0.0009279792306743931, 9.27979540000927e-07, 0.0003726307640157144], [0.0009429489821722235, 9.429492964886766e-07, 0.0003329359215629817], [0.0009562216384187535, 9.56221957159427e-07, 0.0002926418696279181], [0.0009677733116296869, 9.677736342209197e-07, 0.0002518211284056639], [0.0009775832114015965, 9.775835372627971e-07, 0.00021054716601315104], [0.0009856336821299548, 9.856340106746468e-07, 0.0001688942662630808], [0.0009919102347852363, 9.919105654221134e-07, 0.00012693739496983473], [0.0009964015729898984, 9.964019051238889e-07, 8.475206502793569e-05], [0.0009990996133493115, 9.99099946382649e-07, 4.24142005058884e-05], [0.0009999995000000417, 9.999998333333416e-07, -1.6081226496766367e-19], [0.0009990996133493115, 9.99099946382649e-07, -4.241420050588872e-05], [0.0009964015729898984, 9.964019051238889e-07, -8.4752065027936e-05], [0.0009919102347852363, 9.919105654221134e-07, -0.00012693739496983506], [0.0009856336821299546, 9.856340106746468e-07, -0.00016889426626308114], [0.0009775832114015963, 9.775835372627971e-07, -0.00021054716601315136], [0.0009677733116296868, 9.677736342209197e-07, -0.00025182112840566425], [0.0009562216384187533, 9.56221957159427e-07, -0.00029264186962791835], [0.0009429489821722234, 9.429492964886765e-07, -0.000332935921562982], [0.000927979230674393, 9.279795400009269e-07, -0.00037263076401571467], [0.0009113393260978082, 9.11339629877705e-07, -0.0004116549552327434], [0.0008930592165134391, 8.930595141999636e-07, -0.00044993826048148706], [0.0008731718019909132, 8.731720930482969e-07, -0.0004874117784568171], [0.00085171287538582, 8.517131592902253e-07, -0.0005240080652878476], [0.0008287210579206515, 8.287213341611146e-07, -0.0005596612559216749], [0.0008042377296753239, 8.042379977546744e-07, -0.0005943071826656006], [0.0007783069551123763, 7.783072145481318e-07, -0.000627883490674489], [0.000750975403770888, 7.509756540961228e-07, -0.0006603297501754094], [0.0007222922662718463, 7.222925070360313e-07, -0.0006915875652275818], [0.0006923091657861354, 6.923093965559496e-07, -0.0007216006788218847], [0.0006610800651244861, 6.610802854845959e-07, -0.000750315074130769], [0.0006286611696166006, 6.286613791704076e-07, -0.0007776790717263504], [0.0005951108259542499, 5.951110243246046e-07, -0.0008036434225917109], [0.0005604894171804042, 5.604896040102846e-07, -0.000828161396758008], [0.0005248592540133889, 5.248594289665435e-07, -0.0008511888674078679], [0.0004882844627016616, 4.882846254632142e-07, -0.0008726843902936927], [0.0004508308696110449, 4.508310198880615e-07, -0.0008926092783279483], [0.00041256588275213115, 4.1256602027414704e-07, -0.0009109276712111856], [0.00037355837046108386, 3.7355849498059046e-07, -0.0009276065999724832], [0.00033387853745218325, 3.3387864874507357e-07, -0.0009426160463061506], [0.0002935977984651925, 2.9359789633116444e-07, -0.0009559289965978998], [0.00025278864973495165, 2.527887339978686e-07, -0.0009675214905432519], [0.00021152453851452428, 2.1152460902273198e-07, -0.000977372664270675], [0.0001698797308867265, 1.698797875133261e-07, -0.000985464787891841], [0.00012792917810194692, 1.2792922074502332e-07, -0.0009917832974114227], [8.574838168281984e-05, 8.574841026562516e-08, -0.0009963168209389962], [4.341325753853271e-05, 4.341327200962434e-08, -0.0009990571991558745], [9.999993333312587e-07, 9.99999666664503e-10, -0.0009999995000000417]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.99999895833003e-10, 9.999997083333652e-07, 0.0009999995000000417], [-2.1706638718128344e-08, 4.341327381851288e-05, 0.0009990571991558745], [-4.287421049206082e-08, 8.574841383847777e-05, 0.000996316820938996], [-6.396461836804653e-08, 0.0001279292260754097, 0.0009917832974114225], [-8.493990437409438e-08, 0.00016987979459165273, 0.0009854647878918407], [-1.0576231773158481e-07, 0.0002115246178362595, 0.0009773726642706745], [-1.263943827981472e-07, 0.0002527887445307346, 0.0009675214905432515], [-1.467989665153542e-07, 0.00029359790856441217, 0.0009559289965978992], [-1.6693934523984237e-07, 0.00033387866265668594, 0.0009426160463061501], [-1.86779270837578e-07, 0.00037355851054552975, 0.0009276065999724826], [-2.0628303592231365e-07, 0.00041256603746439986, 0.0009109276712111849], [-2.2541553812082065e-07, 0.0004508310386726893, 0.0008926092783279475], [-2.4414234324923483e-07, 0.0004882846458084089, 0.0008726843902936921], [-2.6242974728681254e-07, 0.0005248594508356881, 0.0008511888674078671], [-2.8024483703555717e-07, 0.00056048962736402, 0.0008281613967580072], [-2.9755554935654436e-07, 0.0005951110491208989, 0.0008036434225917102], [-3.1433072887633185e-07, 0.0006286614053646333, 0.0007776790717263499], [-3.3054018405959684e-07, 0.0006610803130296094, 0.0007503150741307684], [-3.4615474154708265e-07, 0.0006923094254021758, 0.0007216006788218842], [-3.6114629866105796e-07, 0.0007222925371315538, 0.0006915875652275813], [-3.754878739837908e-07, 0.0007509756853867763, 0.0006603297501754091], [-3.891536559180088e-07, 0.0007783072469776004, 0.0006278834906744886], [-4.021190491419454e-07, 0.0008042380312645922, 0.0005943071826656004], [-4.1436071887536585e-07, 0.0008287213686911714, 0.0005596612559216747], [-4.2585663287690255e-07, 0.0008517131947782747, 0.0005240080652878475], [-4.3658610109711467e-07, 0.0008731721294304687, 0.00048741177845681706], [-4.465298129159052e-07, 0.0008930595514107779, 0.000449938260481487], [-4.556698718972771e-07, 0.0009113396678501909, 0.0004116549552327431], [-4.639898279988769e-07, 0.0009279795786667423, 0.0003726307640157144], [-4.7147470717835655e-07, 0.0009429493357782319, 0.0003329359215629817], [-4.781110383432686e-07, 0.0009562219970020099, 0.0002926418696279181], [-4.83886877595991e-07, 0.0009677736745448225, 0.0002518211284056639], [-4.887918297300454e-07, 0.000977583577995446, 0.00021054716601315104], [-4.928170669391221e-07, 0.0009856340517427318, 0.0001688942662630808], [-4.95955344705138e-07, 0.0009919106067517215, 0.00012693739496983473], [-4.982010148367331e-07, 0.0009964019466406364, 8.475206502793569e-05], [-4.995500356347398e-07, 0.0009990999880118148, 4.24142005058884e-05], [-4.999999791663287e-07, 0.0009999998750000027, -1.6081226496766367e-19], [-4.995500356347398e-07, 0.0009990999880118148, -4.241420050588872e-05], [-4.982010148367331e-07, 0.0009964019466406364, -8.4752065027936e-05], [-4.95955344705138e-07, 0.0009919106067517215, -0.00012693739496983506], [-4.928170669391221e-07, 0.0009856340517427318, -0.00016889426626308114], [-4.887918297300454e-07, 0.0009775835779954457, -0.00021054716601315136], [-4.838868775959909e-07, 0.0009677736745448223, -0.00025182112840566425], [-4.781110383432686e-07, 0.0009562219970020098, -0.00029264186962791835], [-4.714747071783565e-07, 0.0009429493357782318, -0.000332935921562982], [-4.6398982799887686e-07, 0.0009279795786667422, -0.00037263076401571467], [-4.5566987189727705e-07, 0.0009113396678501908, -0.0004116549552327434], [-4.465298129159052e-07, 0.0008930595514107779, -0.00044993826048148706], [-4.365861010971146e-07, 0.0008731721294304686, -0.0004874117784568171], [-4.2585663287690255e-07, 0.0008517131947782747, -0.0005240080652878476], [-4.143607188753658e-07, 0.0008287213686911713, -0.0005596612559216749], [-4.0211904914194525e-07, 0.000804238031264592, -0.0005943071826656006], [-3.8915365591800863e-07, 0.0007783072469776, -0.000627883490674489], [-3.7548787398379065e-07, 0.000750975685386776, -0.0006603297501754094], [-3.6114629866105775e-07, 0.0007222925371315533, -0.0006915875652275818], [-3.461547415470824e-07, 0.0006923094254021753, -0.0007216006788218847], [-3.305401840595965e-07, 0.0006610803130296087, -0.000750315074130769], [-3.143307288763315e-07, 0.0006286614053646326, -0.0007776790717263504], [-2.9755554935654393e-07, 0.000595111049120898, -0.0008036434225917109], [-2.8024483703555664e-07, 0.0005604896273640189, -0.000828161396758008], [-2.6242974728681196e-07, 0.0005248594508356871, -0.0008511888674078679], [-2.441423432492342e-07, 0.0004882846458084076, -0.0008726843902936927], [-2.2541553812081994e-07, 0.00045083103867268794, -0.0008926092783279483], [-2.0628303592231294e-07, 0.00041256603746439845, -0.0009109276712111856], [-1.8677927083757726e-07, 0.0003735585105455283, -0.0009276065999724832], [-1.6693934523984158e-07, 0.00033387866265668437, -0.0009426160463061506], [-1.4679896651535335e-07, 0.00029359790856441054, -0.0009559289965978998], [-1.263943827981463e-07, 0.0002527887445307328, -0.0009675214905432519], [-1.0576231773158388e-07, 0.00021152461783625762, -0.000977372664270675], [-8.493990437409343e-08, 0.0001698797945916508, -0.000985464787891841], [-6.396461836804552e-08, 0.0001279292260754077, -0.0009917832974114227], [-4.2874210492059774e-08, 8.57484138384757e-05, -0.0009963168209389962], [-2.1706638718127272e-08, 4.341327381851073e-05, -0.0009990571991558745], [-4.999998958318989e-10, 9.99999708331157e-07, -0.0009999995000000417]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-9.999998333333416e-07, 5.665537953391544e-22, 0.0009999995000000417], [-4.3413279245172666e-05, 2.4595962223797947e-20, 0.0009990571991558745], [-8.574842455703062e-05, 4.858110347398902e-20, 0.000996316820938996], [-0.00012792924206656462, 7.24788097074746e-20, 0.0009917832974114225], [-0.00016987981582662927, 9.62460704491043e-20, 0.0009854647878918407], [-0.00021152464427683947, 1.198401099961586e-19, 0.0009773726642706745], [-0.00025278877612933094, 1.4321846440495514e-19, 0.0009675214905432515], [-0.0002935979452641546, 1.66339057916359e-19, 0.0009559289965978992], [-0.0003338787043915231, 1.8916027868264856e-19, 0.0009426160463061501], [-0.00037355855724034845, 2.1164105365944533e-19, 0.0009276065999724826], [-0.0004125660890351599, 2.337409225279198e-19, 0.0009109276712111849], [-0.000450831095026575, 2.5542011051422934e-19, 0.0008926092783279475], [-0.000488284706843996, 2.7663959997512993e-19, 0.0008726843902936921], [-0.0005248595164431264, 2.973612006209242e-19, 0.0008511888674078671], [-0.0005604896974252306, 3.1754761824935906e-19, 0.0008281613967580072], [-0.0005951111235097878, 3.3716252186676937e-19, 0.0008036434225917102], [-0.0006286614839473172, 3.5617060907566263e-19, 0.0007776790717263499], [-0.000661080395664657, 3.7453766961106313e-19, 0.0007503150741307684], [-0.000692309511940863, 3.9223064691126477e-19, 0.0007216006788218842], [-0.0007222926274181303, 4.092176976121777e-19, 0.0006915875652275813], [-0.0007509757792587467, 4.2546824885819324e-19, 0.0006603297501754091], [-0.0007783073442660163, 4.409530533264213e-19, 0.0006278834906744886], [-0.0008042381317943565, 4.556442418652669e-19, 0.0005943071826656004], [-0.0008287214722813532, 4.695153736526108e-19, 0.0005596612559216747], [-0.0008517133012424351, 4.825414837833187e-19, 0.0005240080652878475], [-0.0008731722385769962, 4.946991282004333e-19, 0.00048741177845681706], [-0.0008930596630432334, 5.059664258891837e-19, 0.000449938260481487], [-0.0009113397817676612, 5.163230982578706e-19, 0.0004116549552327431], [-0.0009279796946642017, 5.257505056347531e-19, 0.0003726307640157144], [-0.000942949453646911, 5.342316808152485e-19, 0.0003329359215629817], [-0.0009562221165297719, 5.417513595990701e-19, 0.0002926418696279181], [-0.0009677737955165444, 5.482960082623404e-19, 0.0002518211284056639], [-0.0009775837001934058, 5.538538479152381e-19, 0.00021054716601315104], [-0.000985634174947001, 5.584148757013409e-19, 0.0001688942662630808], [-0.0009919107307405602, 5.619708828005075e-19, 0.00012693739496983473], [-0.0009964020711908926, 5.645154692029013e-19, 8.475206502793569e-05], [-0.0009991001128993263, 5.660440552275621e-19, 4.24142005058884e-05], [-0.001, 5.66553889764798e-19, -1.6081226496766367e-19], [-0.0009991001128993263, 5.660440552275621e-19, -4.241420050588872e-05], [-0.0009964020711908926, 5.645154692029013e-19, -8.4752065027936e-05], [-0.0009919107307405602, 5.619708828005075e-19, -0.00012693739496983506], [-0.000985634174947001, 5.584148757013408e-19, -0.00016889426626308114], [-0.0009775837001934056, 5.538538479152381e-19, -0.00021054716601315136], [-0.0009677737955165442, 5.482960082623403e-19, -0.00025182112840566425], [-0.0009562221165297718, 5.417513595990701e-19, -0.00029264186962791835], [-0.0009429494536469109, 5.342316808152485e-19, -0.000332935921562982], [-0.0009279796946642016, 5.25750505634753e-19, -0.00037263076401571467], [-0.0009113397817676611, 5.163230982578705e-19, -0.0004116549552327434], [-0.0008930596630432334, 5.059664258891837e-19, -0.00044993826048148706], [-0.0008731722385769961, 4.946991282004333e-19, -0.0004874117784568171], [-0.0008517133012424351, 4.825414837833187e-19, -0.0005240080652878476], [-0.0008287214722813531, 4.695153736526107e-19, -0.0005596612559216749], [-0.0008042381317943563, 4.556442418652668e-19, -0.0005943071826656006], [-0.000778307344266016, 4.409530533264211e-19, -0.000627883490674489], [-0.0007509757792587464, 4.2546824885819304e-19, -0.0006603297501754094], [-0.0007222926274181298, 4.092176976121774e-19, -0.0006915875652275818], [-0.0006923095119408624, 3.9223064691126443e-19, -0.0007216006788218847], [-0.0006610803956646564, 3.7453766961106274e-19, -0.000750315074130769], [-0.0006286614839473163, 3.561706090756622e-19, -0.0007776790717263504], [-0.0005951111235097869, 3.371625218667689e-19, -0.0008036434225917109], [-0.0005604896974252296, 3.175476182493585e-19, -0.000828161396758008], [-0.0005248595164431253, 2.9736120062092355e-19, -0.0008511888674078679], [-0.0004882847068439946, 2.766395999751292e-19, -0.0008726843902936927], [-0.0004508310950265736, 2.554201105142285e-19, -0.0008926092783279483], [-0.0004125660890351585, 2.33740922527919e-19, -0.0009109276712111856], [-0.00037355855724034693, 2.116410536594445e-19, -0.0009276065999724832], [-0.00033387870439152153, 1.8916027868264764e-19, -0.0009426160463061506], [-0.0002935979452641529, 1.6633905791635807e-19, -0.0009559289965978998], [-0.00025278877612932915, 1.4321846440495413e-19, -0.0009675214905432519], [-0.0002115246442768376, 1.1984010999615754e-19, -0.000977372664270675], [-0.00016987981582662734, 9.624607044910321e-20, -0.000985464787891841], [-0.0001279292420665626, 7.247880970747347e-20, -0.0009917832974114227], [-8.574842455702854e-05, 4.858110347398784e-20, -0.0009963168209389962], [-4.3413279245170525e-05, 2.4595962223796732e-20, -0.0009990571991558745], [-9.999998333311336e-07, 5.665537953379034e-22, -0.0009999995000000417]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-4.99999895834136e-10, -9.999997083333652e-07, 0.0009999995000000417], [-2.170663871817753e-08, -4.341327381851288e-05, 0.0009990571991558745], [-4.287421049215797e-08, -8.574841383847777e-05, 0.000996316820938996], [-6.396461836819147e-08, -0.0001279292260754097, 0.0009917832974114225], [-8.493990437428685e-08, -0.00016987979459165273, 0.0009854647878918407], [-1.0576231773182448e-07, -0.0002115246178362595, 0.0009773726642706745], [-1.263943827984336e-07, -0.0002527887445307346, 0.0009675214905432515], [-1.4679896651568684e-07, -0.00029359790856441217, 0.0009559289965978992], [-1.6693934524022065e-07, -0.00033387866265668594, 0.0009426160463061501], [-1.8677927083800125e-07, -0.00037355851054552975, 0.0009276065999724826], [-2.062830359227811e-07, -0.00041256603746439986, 0.0009109276712111849], [-2.2541553812133144e-07, -0.0004508310386726893, 0.0008926092783279475], [-2.441423432497881e-07, -0.0004882846458084089, 0.0008726843902936921], [-2.624297472874072e-07, -0.0005248594508356881, 0.0008511888674078671], [-2.802448370361922e-07, -0.00056048962736402, 0.0008281613967580072], [-2.9755554935721865e-07, -0.0005951110491208989, 0.0008036434225917102], [-3.1433072887704415e-07, -0.0006286614053646333, 0.0007776790717263499], [-3.305401840603459e-07, -0.0006610803130296094, 0.0007503150741307684], [-3.4615474154786706e-07, -0.0006923094254021758, 0.0007216006788218842], [-3.611462986618763e-07, -0.0007222925371315538, 0.0006915875652275813], [-3.7548787398464165e-07, -0.0007509756853867763, 0.0006603297501754091], [-3.891536559188906e-07, -0.0007783072469776004, 0.0006278834906744886], [-4.021190491428566e-07, -0.0008042380312645922, 0.0005943071826656004], [-4.143607188763048e-07, -0.0008287213686911714, 0.0005596612559216747], [-4.258566328778676e-07, -0.0008517131947782747, 0.0005240080652878475], [-4.36586101098104e-07, -0.0008731721294304687, 0.00048741177845681706], [-4.4652981291691705e-07, -0.0008930595514107779, 0.000449938260481487], [-4.556698718983097e-07, -0.0009113396678501909, 0.0004116549552327431], [-4.6398982799992835e-07, -0.0009279795786667423, 0.0003726307640157144], [-4.714747071794249e-07, -0.0009429493357782319, 0.0003329359215629817], [-4.781110383443521e-07, -0.0009562219970020099, 0.0002926418696279181], [-4.838868775970875e-07, -0.0009677736745448225, 0.0002518211284056639], [-4.88791829731153e-07, -0.000977583577995446, 0.00021054716601315104], [-4.928170669402389e-07, -0.0009856340517427318, 0.0001688942662630808], [-4.959553447062618e-07, -0.0009919106067517215, 0.00012693739496983473], [-4.982010148378619e-07, -0.0009964019466406364, 8.475206502793569e-05], [-4.995500356358717e-07, -0.0009990999880118148, 4.24142005058884e-05], [-4.999999791674617e-07, -0.0009999998750000027, -1.6081226496766367e-19], [-4.995500356358717e-07, -0.0009990999880118148, -4.241420050588872e-05], [-4.982010148378619e-07, -0.0009964019466406364, -8.4752065027936e-05], [-4.959553447062618e-07, -0.0009919106067517215, -0.00012693739496983506], [-4.928170669402388e-07, -0.0009856340517427318, -0.00016889426626308114], [-4.88791829731153e-07, -0.0009775835779954457, -0.00021054716601315136], [-4.838868775970875e-07, -0.0009677736745448223, -0.00025182112840566425], [-4.78111038344352e-07, -0.0009562219970020098, -0.00029264186962791835], [-4.7147470717942487e-07, -0.0009429493357782318, -0.000332935921562982], [-4.639898279999283e-07, -0.0009279795786667422, -0.00037263076401571467], [-4.5566987189830963e-07, -0.0009113396678501908, -0.0004116549552327434], [-4.4652981291691705e-07, -0.0008930595514107779, -0.00044993826048148706], [-4.3658610109810395e-07, -0.0008731721294304686, -0.0004874117784568171], [-4.258566328778676e-07, -0.0008517131947782747, -0.0005240080652878476], [-4.1436071887630473e-07, -0.0008287213686911713, -0.0005596612559216749], [-4.021190491428565e-07, -0.000804238031264592, -0.0005943071826656006], [-3.8915365591889044e-07, -0.0007783072469776, -0.000627883490674489], [-3.754878739846415e-07, -0.000750975685386776, -0.0006603297501754094], [-3.611462986618761e-07, -0.0007222925371315533, -0.0006915875652275818], [-3.461547415478668e-07, -0.0006923094254021753, -0.0007216006788218847], [-3.305401840603455e-07, -0.0006610803130296087, -0.000750315074130769], [-3.143307288770437e-07, -0.0006286614053646326, -0.0007776790717263504], [-2.9755554935721817e-07, -0.000595111049120898, -0.0008036434225917109], [-2.802448370361917e-07, -0.0005604896273640189, -0.000828161396758008], [-2.6242974728740663e-07, -0.0005248594508356871, -0.0008511888674078679], [-2.4414234324978747e-07, -0.0004882846458084076, -0.0008726843902936927], [-2.2541553812133075e-07, -0.00045083103867268794, -0.0008926092783279483], [-2.0628303592278037e-07, -0.00041256603746439845, -0.0009109276712111856], [-1.8677927083800051e-07, -0.0003735585105455283, -0.0009276065999724832], [-1.6693934524021986e-07, -0.00033387866265668437, -0.0009426160463061506], [-1.4679896651568602e-07, -0.00029359790856441054, -0.0009559289965978998], [-1.263943827984327e-07, -0.0002527887445307328, -0.0009675214905432519], [-1.0576231773182354e-07, -0.00021152461783625762, -0.000977372664270675], [-8.49399043742859e-08, -0.0001698797945916508, -0.000985464787891841], [-6.396461836819047e-08, -0.0001279292260754077, -0.0009917832974114227], [-4.287421049215693e-08, -8.57484138384757e-05, -0.0009963168209389962], [-2.170663871817646e-08, -4.341327381851073e-05, -0.0009990571991558745], [-4.99999895833032e-10, -9.99999708331157e-07, -0.0009999995000000417]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.999993333334667e-07, -9.999996666681784e-10, 0.0009999995000000417], [4.3413257538534856e-05, -4.341327200969018e-08, 0.0009990571991558745], [8.574838168282191e-05, -8.574841026575305e-08, 0.000996316820938996], [0.00012792917810194892, -1.2792922074521303e-07, 0.0009917832974114225], [0.00016987973088672842, -1.6987978751357728e-07, 0.0009854647878918407], [0.00021152453851452615, -2.115246090230442e-07, 0.0009773726642706745], [0.0002527886497349534, -2.5278873399824123e-07, 0.0009675214905432515], [0.0002935977984651942, -2.935978963315969e-07, 0.0009559289965978992], [0.0003338785374521848, -3.3387864874556506e-07, 0.0009426160463061501], [0.0003735583704610854, -3.735584949811401e-07, 0.0009276065999724826], [0.0004125658827521326, -4.1256602027475383e-07, 0.0009109276712111849], [0.00045083086961104625, -4.508310198887244e-07, 0.0008926092783279475], [0.0004882844627016629, -4.882846254639319e-07, 0.0008726843902936921], [0.00052485925401339, -5.248594289673147e-07, 0.0008511888674078671], [0.0005604894171804052, -5.60489604011108e-07, 0.0008281613967580072], [0.0005951108259542509, -5.951110243254787e-07, 0.0008036434225917102], [0.0006286611696166013, -6.286613791713308e-07, 0.0007776790717263499], [0.0006610800651244867, -6.610802854855666e-07, 0.0007503150741307684], [0.0006923091657861359, -6.923093965569659e-07, 0.0007216006788218842], [0.0007222922662718467, -7.222925070370916e-07, 0.0006915875652275813], [0.0007509754037708884, -7.50975654097225e-07, 0.0006603297501754091], [0.0007783069551123767, -7.783072145492741e-07, 0.0006278834906744886], [0.0008042377296753241, -8.042379977558547e-07, 0.0005943071826656004], [0.0008287210579206516, -8.287213341623307e-07, 0.0005596612559216747], [0.00085171287538582, -8.51713159291475e-07, 0.0005240080652878475], [0.0008731718019909133, -8.731720930495783e-07, 0.00048741177845681706], [0.0008930592165134391, -8.930595142012739e-07, 0.000449938260481487], [0.0009113393260978083, -9.113396298790423e-07, 0.0004116549552327431], [0.0009279792306743931, -9.279795400022886e-07, 0.0003726307640157144], [0.0009429489821722235, -9.429492964900602e-07, 0.0003329359215629817], [0.0009562216384187535, -9.562219571608301e-07, 0.0002926418696279181], [0.0009677733116296869, -9.677736342223397e-07, 0.0002518211284056639], [0.0009775832114015965, -9.775835372642316e-07, 0.00021054716601315104], [0.0009856336821299548, -9.85634010676093e-07, 0.0001688942662630808], [0.0009919102347852363, -9.919105654235689e-07, 0.00012693739496983473], [0.0009964015729898984, -9.964019051253508e-07, 8.475206502793569e-05], [0.0009990996133493115, -9.99099946384115e-07, 4.24142005058884e-05], [0.0009999995000000417, -9.99999833334809e-07, -1.6081226496766367e-19], [0.0009990996133493115, -9.99099946384115e-07, -4.241420050588872e-05], [0.0009964015729898984, -9.964019051253508e-07, -8.4752065027936e-05], [0.0009919102347852363, -9.919105654235689e-07, -0.00012693739496983506], [0.0009856336821299546, -9.856340106760929e-07, -0.00016889426626308114], [0.0009775832114015963, -9.775835372642316e-07, -0.00021054716601315136], [0.0009677733116296868, -9.677736342223397e-07, -0.00025182112840566425], [0.0009562216384187533, -9.5622195716083e-07, -0.00029264186962791835], [0.0009429489821722234, -9.429492964900601e-07, -0.000332935921562982], [0.000927979230674393, -9.279795400022885e-07, -0.00037263076401571467], [0.0009113393260978082, -9.113396298790421e-07, -0.0004116549552327434], [0.0008930592165134391, -8.930595142012739e-07, -0.00044993826048148706], [0.0008731718019909132, -8.731720930495782e-07, -0.0004874117784568171], [0.00085171287538582, -8.51713159291475e-07, -0.0005240080652878476], [0.0008287210579206515, -8.287213341623306e-07, -0.0005596612559216749], [0.0008042377296753239, -8.042379977558545e-07, -0.0005943071826656006], [0.0007783069551123763, -7.783072145492737e-07, -0.000627883490674489], [0.000750975403770888, -7.509756540972246e-07, -0.0006603297501754094], [0.0007222922662718463, -7.22292507037091e-07, -0.0006915875652275818], [0.0006923091657861354, -6.923093965569654e-07, -0.0007216006788218847], [0.0006610800651244861, -6.610802854855659e-07, -0.000750315074130769], [0.0006286611696166006, -6.2866137917133e-07, -0.0007776790717263504], [0.0005951108259542499, -5.951110243254778e-07, -0.0008036434225917109], [0.0005604894171804042, -5.604896040111071e-07, -0.000828161396758008], [0.0005248592540133889, -5.248594289673137e-07, -0.0008511888674078679], [0.0004882844627016616, -4.882846254639306e-07, -0.0008726843902936927], [0.0004508308696110449, -4.50831019888723e-07, -0.0008926092783279483], [0.00041256588275213115, -4.125660202747524e-07, -0.0009109276712111856], [0.00037355837046108386, -3.735584949811386e-07, -0.0009276065999724832], [0.00033387853745218325, -3.338786487455634e-07, -0.0009426160463061506], [0.0002935977984651925, -2.9359789633159527e-07, -0.0009559289965978998], [0.00025278864973495165, -2.527887339982395e-07, -0.0009675214905432519], [0.00021152453851452428, -2.1152460902304233e-07, -0.000977372664270675], [0.0001698797308867265, -1.6987978751357538e-07, -0.000985464787891841], [0.00012792917810194692, -1.2792922074521105e-07, -0.0009917832974114227], [8.574838168281984e-05, -8.574841026575098e-08, -0.0009963168209389962], [4.341325753853271e-05, -4.341327200968804e-08, -0.0009990571991558745], [9.999993333312587e-07, -9.999996666659702e-10, -0.0009999995000000417]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0020007486661669334, 2.0007493330834225e-06, 2.0007489996250833], [0.08685907502022361, 8.68591039732602e-05, 1.998863691211116], [0.17156107465190595, 0.00017156113183895371, 1.993380879493696], [0.2559543030874743, 0.00025595438840560946, 1.9843104322959038], [0.3398868715716219, 0.0003398869848672911, 1.9716686743746001], [0.42320772043293814, 0.0004232078615022347, 1.955478358039552], [0.505766890957208, 0.0005057670595462391, 1.9357686222044104], [0.5874157952792373, 0.0005874159910845806, 1.9125749399432468], [0.6680074838074588, 0.0006680077064767091, 1.8859390546470296], [0.7473969097000165, 0.0007473971588324195, 1.8559089048949446], [0.8254411899163292, 0.0008254414650635027, 1.8225385381757782], [0.9019998623743007, 0.0009020001630410418, 1.7858880136146411], [0.9769351387503519, 0.0009769354643955285, 1.7460232938801044], [1.05011215246729, 0.0010501125025048142, 1.7030161264662902], [1.1213992014236958, 0.0011213995752235792, 1.656943914563583], [1.1906679850279673, 0.0011906683819174545, 1.6078895777503641], [1.2577938351104152, 0.0012577942543751945, 1.5559414027564946], [1.3226559402978169, 0.0013226563811833067, 1.5011928845671347], [1.3851375634466112, 0.0013851380251593173, 1.4437425581528847], [1.4451262517433971, 0.0014451267334523404, 1.3836938211290835], [1.5025140390946048, 0.0015025145399328182, 1.3211547476634498], [1.5571976404410874, 0.0015571981595071754, 1.2562378939669832], [1.6090786376479047, 0.0016090791740076653, 1.1890600957181998], [1.6580636566347435, 0.0016580642093228504, 1.1197422577852907], [1.7040645354281792, 0.0017040651034499182, 1.0484091366246608], [1.7469984828333198, 0.0017469990651663805, 0.9751891157474767], [1.7867882274392632, 0.0017867888230355773, 0.9002139746583351], [1.8233621566901899, 0.0018233627644778185, 0.8236186516819107], [1.856654445771792, 0.0018566550646568548, 0.7455410011044405], [1.8866051760810763, 0.00188660580494972, 0.6661215450671356], [1.913160443066321, 0.0019131610807867237, 0.585503220658057], [1.936272453243096, 0.0019362730986675052, 0.5038311226576321], [1.955899610211744, 0.0019559002621785415, 0.42125224240081194], [1.9720065895215069, 0.0019720072468573, 0.3379152032258589], [1.9845644022465614, 0.0019845650637682934, 0.25396999298589684], [1.9935504471595393, 0.0019935511116766207, 0.1695676941046423], [1.9989485514086347, 0.0019989492177250852, 0.08486021166215622], [2.0007489996250833, 0.0020007496665416834, -3.217451391340531e-16], [1.9989485514086347, 0.0019989492177250852, -0.08486021166215686], [1.9935504471595393, 0.0019935511116766207, -0.16956769410464295], [1.9845644022465614, 0.0019845650637682934, -0.2539699929858975], [1.9720065895215066, 0.0019720072468572994, -0.33791520322585955], [1.9558996102117439, 0.0019559002621785415, -0.42125224240081255], [1.9362724532430957, 0.001936273098667505, -0.5038311226576327], [1.9131604430663207, 0.0019131610807867235, -0.5855032206580576], [1.886605176081076, 0.0018866058049497197, -0.6661215450671362], [1.8566544457717917, 0.0018566550646568545, -0.7455410011044411], [1.8233621566901896, 0.0018233627644778183, -0.8236186516819113], [1.7867882274392632, 0.0017867888230355773, -0.9002139746583352], [1.7469984828333196, 0.0017469990651663803, -0.9751891157474768], [1.7040645354281792, 0.0017040651034499182, -1.048409136624661], [1.6580636566347433, 0.0016580642093228502, -1.1197422577852911], [1.6090786376479043, 0.0016090791740076649, -1.1890600957182003], [1.5571976404410868, 0.0015571981595071747, -1.2562378939669838], [1.5025140390946041, 0.0015025145399328176, -1.3211547476634504], [1.4451262517433963, 0.0014451267334523396, -1.3836938211290843], [1.38513756344661, 0.0013851380251593162, -1.4437425581528858], [1.3226559402978155, 0.0013226563811833054, -1.501192884567136], [1.2577938351104136, 0.001257794254375193, -1.5559414027564957], [1.1906679850279656, 0.0011906683819174527, -1.6078895777503655], [1.1213992014236938, 0.001121399575223577, -1.6569439145635845], [1.0501121524672878, 0.001050112502504812, -1.7030161264662915], [0.9769351387503493, 0.000976935464395526, -1.7460232938801057], [0.901999862374298, 0.0009020001630410391, -1.7858880136146424], [0.8254411899163263, 0.0008254414650634998, -1.8225385381757795], [0.7473969097000135, 0.0007473971588324164, -1.8559089048949458], [0.6680074838074556, 0.000668007706476706, -1.8859390546470307], [0.5874157952792339, 0.0005874159910845773, -1.912574939943248], [0.5057668909572044, 0.0005057670595462355, -1.9357686222044113], [0.4232077204329344, 0.00042320786150223103, -1.9554783580395527], [0.33988687157161807, 0.00033988698486728724, -1.9716686743746008], [0.2559543030874703, 0.00025595438840560544, -1.9843104322959042], [0.1715610746519018, 0.00017156113183894954, -1.9933808794936965], [0.08685907502021932, 8.685910397325591e-05, -1.998863691211116], [0.0020007486661625155, 2.0007493330790043e-06, -2.0007489996250833]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-1.0003747915878808e-06, 0.0020007494164479803, 2.0007489996250833], [-4.3429557415295284e-05, 0.08685910759238963, 1.998863691211116], [-8.578057664199068e-05, 0.1715611389873344, 1.993380879493696], [-0.00012797721019986908, 0.2559543990703759, 1.9843104322959038], [-0.00016994351367646934, 0.3398869990292492, 1.9716686743746001], [-0.0002116039572014683, 0.42320787913589614, 1.955478358039552], [-0.000252883561383393, 0.5057670806198672, 1.9357686222044104], [-0.0002937080322555949, 0.5874160155602476, 1.9125749399432468], [-0.0003340038949886146, 0.6680077343103644, 1.8859390546470296], [-0.0003736986261282842, 0.7473971899739686, 1.8559089048949446], [-0.00041272078412156905, 0.8254414994568979, 1.8225385381757782], [-0.00045100013789523187, 0.902000200624383, 1.7858880136146411], [-0.0004884677932559066, 0.9769355051011739, 1.7460232938801044], [-0.0005250563168840901, 1.0501125462595031, 1.7030161264662902], [-0.000560699857698891, 1.1213996219485627, 1.656943914563583], [-0.0005953342653751061, 1.1906684315286384, 1.6078895777503641], [-0.000628897205799321, 1.25779430678329, 1.5559414027564946], [-0.0006613282732572384, 1.3226564362939908, 1.5011928845671347], [-0.0006925690991503256, 1.3851380828734032, 1.4437425581528847], [-0.0007225634570461116, 1.4451267936659562, 1.3836938211290835], [-0.0007512573638730694, 1.5025146025375926, 1.3211547476634498], [-0.0007785991770779561, 1.5571982243904339, 1.2562378939669832], [-0.0008045396875707472, 1.6090792410526327, 1.1890600957181998], [-0.0008290322082898882, 1.658064278408861, 1.1197422577852907], [-0.0008520326582284628, 1.704065174452633, 1.0484091366246608], [-0.0008734996417700523, 1.74699913795801, 0.9751891157474767], [-0.0008933945231914973, 1.7867888974851136, 0.9002139746583351], [-0.0009116814961984772, 1.8233628404512694, 0.8236186516819107], [-0.000928327648368753, 1.8566551420174846, 0.7455410011044405], [-0.0009433030203870969, 1.8866058835582973, 0.6661215450671356], [-0.0009565806599652947, 1.913161160501771, 0.585503220658057], [-0.000968136670350179, 1.9362731793455534, 0.5038311226576321], [-0.0009779502533323883, 1.9559003436743883, 0.42125224240081194], [-0.0009860037466784485, 1.9720073290242708, 0.3379152032258589], [-0.0009922826559188049, 1.9845651464585068, 0.25396999298589684], [-0.0009967756804345935, 1.993551194741253, 0.1695676941046423], [-0.0009994747337962056, 1.9989493010146382, 0.08486021166215622], [-0.0010003749583170321, 2.000749749906255, -3.217451391340531e-16], [-0.0009994747337962056, 1.9989493010146382, -0.08486021166215686], [-0.0009967756804345935, 1.993551194741253, -0.16956769410464295], [-0.0009922826559188049, 1.9845651464585068, -0.2539699929858975], [-0.0009860037466784485, 1.9720073290242706, -0.33791520322585955], [-0.0009779502533323883, 1.955900343674388, -0.42125224240081255], [-0.0009681366703501789, 1.9362731793455532, -0.5038311226576327], [-0.0009565806599652946, 1.9131611605017709, -0.5855032206580576], [-0.0009433030203870968, 1.886605883558297, -0.6661215450671362], [-0.0009283276483687528, 1.8566551420174844, -0.7455410011044411], [-0.0009116814961984771, 1.8233628404512692, -0.8236186516819113], [-0.0008933945231914973, 1.7867888974851136, -0.9002139746583352], [-0.0008734996417700522, 1.7469991379580099, -0.9751891157474768], [-0.0008520326582284628, 1.704065174452633, -1.048409136624661], [-0.0008290322082898881, 1.6580642784088608, -1.1197422577852911], [-0.000804539687570747, 1.6090792410526322, -1.1890600957182003], [-0.0007785991770779558, 1.5571982243904332, -1.2562378939669838], [-0.0007512573638730691, 1.502514602537592, -1.3211547476634504], [-0.0007225634570461112, 1.4451267936659553, -1.3836938211290843], [-0.0006925690991503251, 1.3851380828734021, -1.4437425581528858], [-0.0006613282732572377, 1.3226564362939894, -1.501192884567136], [-0.0006288972057993202, 1.2577943067832884, -1.5559414027564957], [-0.0005953342653751052, 1.1906684315286367, -1.6078895777503655], [-0.00056069985769889, 1.1213996219485607, -1.6569439145635845], [-0.000525056316884089, 1.050112546259501, -1.7030161264662915], [-0.0004884677932559053, 0.9769355051011713, -1.7460232938801057], [-0.0004510001378952305, 0.9020002006243802, -1.7858880136146424], [-0.0004127207841215676, 0.825441499456895, -1.8225385381757795], [-0.0003736986261282827, 0.7473971899739656, -1.8559089048949458], [-0.00033400389498861304, 0.6680077343103612, -1.8859390546470307], [-0.0002937080322555932, 0.5874160155602443, -1.912574939943248], [-0.0002528835613833912, 0.5057670806198636, -1.9357686222044113], [-0.00021160395720146646, 0.4232078791358924, -1.9554783580395527], [-0.00016994351367646742, 0.33988699902924535, -1.9716686743746008], [-0.0001279772101998671, 0.25595439907037193, -1.9843104322959042], [-8.57805766419886e-05, 0.17156113898733025, -1.9933808794936965], [-4.3429557415293136e-05, 0.08685910759238534, -1.998863691211116], [-1.0003747915856717e-06, 0.0020007494164435624, -2.0007489996250833]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.0020007496665416834, 1.1335325060248132e-18, 2.0007489996250833], [-0.08685911844977921, 4.921037141926374e-17, 1.998863691211116], [-0.17156116043247902, 9.719864277558353e-17, 1.993380879493696], [-0.25595443106467913, 1.450119785222298e-16, 1.9843104322959038], [-0.3398870415151285, 1.925643254510454e-16, 1.9716686743746001], [-0.42320793203688656, 2.397701000748143e-16, 1.955478358039552], [-0.5057671438407588, 2.86544342658214e-16, 1.9357686222044104], [-0.5874160889872573, 3.328028701261553e-16, 1.9125749399432468], [-0.6680078178113399, 3.784624275743091e-16, 1.8859390546470296], [-0.7473972833986271, 4.2344083810913525e-16, 1.8559089048949446], [-0.8254416026370962, 4.676571507477355e-16, 1.8225385381757782], [-0.9020003133744199, 5.110317861113443e-16, 1.7858880136146411], [-0.9769356272181248, 5.534866796502412e-16, 1.7460232938801044], [-1.050112677523585, 5.949454221423141e-16, 1.7030161264662902], [-1.12139976212353, 6.353333972124052e-16, 1.656943914563583], [-1.190668580362208, 6.745779156249389e-16, 1.6078895777503641], [-1.2577944640075949, 7.12608346108132e-16, 1.5559414027564946], [-1.3226566016260626, 7.493562424743345e-16, 1.5011928845671347], [-1.3851382560156817, 7.84755466807713e-16, 1.4437425581528847], [-1.4451269743068242, 8.187423084975645e-16, 1.3836938211290835], [-1.5025147903519376, 8.512555989030301e-16, 1.3211547476634498], [-1.5571984190402322, 8.822368214428373e-16, 1.2562378939669832], [-1.609079442187559, 9.116302169119327e-16, 1.1890600957181998], [-1.6580644856669173, 9.393828838354612e-16, 1.1197422577852907], [-1.704065387460802, 9.65444873679475e-16, 1.0484091366246608], [-1.7469993563329251, 9.89769280747017e-16, 0.9751891157474767], [-1.7867891208337492, 1.0123123265977842e-15, 0.9002139746583351], [-1.8233630683716482, 1.0330334388394345e-15, 0.8236186516819107], [-1.8566553740994016, 1.0518953241487322e-15, 0.7455410011044405], [-1.8866061193840573, 1.0688640353911084e-15, 0.6661215450671356], [-1.913161399646941, 1.0839090327178397e-15, 0.585503220658057], [-1.9362734213797261, 1.0970032385308774e-15, 0.5038311226576321], [-1.9559005881619567, 1.1081230862164127e-15, 0.42125224240081194], [-1.9720075755252124, 1.1172485625594577e-15, 0.3379152032258589], [-1.984565394529176, 1.1243632437631156e-15, 0.25396999298589684], [-1.9935514439351782, 1.1294543250077049e-15, 0.1695676941046423], [-1.998949550883327, 1.1325126434965448e-15, 0.08486021166215622], [-2.00075, 1.1335326949469195e-15, -3.217451391340531e-16], [-1.998949550883327, 1.1325126434965448e-15, -0.08486021166215686], [-1.9935514439351782, 1.1294543250077049e-15, -0.16956769410464295], [-1.984565394529176, 1.1243632437631156e-15, -0.2539699929858975], [-1.9720075755252122, 1.1172485625594577e-15, -0.33791520322585955], [-1.9559005881619564, 1.1081230862164127e-15, -0.42125224240081255], [-1.936273421379726, 1.0970032385308774e-15, -0.5038311226576327], [-1.9131613996469408, 1.0839090327178395e-15, -0.5855032206580576], [-1.886606119384057, 1.0688640353911084e-15, -0.6661215450671362], [-1.8566553740994014, 1.051895324148732e-15, -0.7455410011044411], [-1.823363068371648, 1.0330334388394345e-15, -0.8236186516819113], [-1.7867891208337492, 1.0123123265977842e-15, -0.9002139746583352], [-1.746999356332925, 9.89769280747017e-16, -0.9751891157474768], [-1.704065387460802, 9.65444873679475e-16, -1.048409136624661], [-1.658064485666917, 9.39382883835461e-16, -1.1197422577852911], [-1.6090794421875585, 9.116302169119325e-16, -1.1890600957182003], [-1.5571984190402315, 8.822368214428369e-16, -1.2562378939669838], [-1.502514790351937, 8.512555989030297e-16, -1.3211547476634504], [-1.4451269743068234, 8.18742308497564e-16, -1.3836938211290843], [-1.3851382560156806, 7.847554668077123e-16, -1.4437425581528858], [-1.3226566016260612, 7.493562424743338e-16, -1.501192884567136], [-1.2577944640075933, 7.126083461081311e-16, -1.5559414027564957], [-1.1906685803622061, 6.745779156249379e-16, -1.6078895777503655], [-1.121399762123528, 6.35333397212404e-16, -1.6569439145635845], [-1.0501126775235827, 5.949454221423128e-16, -1.7030161264662915], [-0.9769356272181222, 5.534866796502397e-16, -1.7460232938801057], [-0.9020003133744171, 5.110317861113427e-16, -1.7858880136146424], [-0.8254416026370933, 4.676571507477339e-16, -1.8225385381757795], [-0.7473972833986241, 4.234408381091335e-16, -1.8559089048949458], [-0.6680078178113367, 3.784624275743073e-16, -1.8859390546470307], [-0.587416088987254, 3.328028701261534e-16, -1.912574939943248], [-0.5057671438407553, 2.86544342658212e-16, -1.9357686222044113], [-0.42320793203688284, 2.397701000748122e-16, -1.9554783580395527], [-0.33988704151512467, 1.9256432545104323e-16, -1.9716686743746008], [-0.25595443106467514, 1.4501197852222756e-16, -1.9843104322959042], [-0.17156116043247485, 9.719864277558118e-17, -1.9933808794936965], [-0.08685911844977492, 4.921037141926131e-17, -1.998863691211116], [-0.0020007496665372655, 1.1335325060223102e-18, -2.0007489996250833]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-1.0003747915901477e-06, -0.0020007494164479803, 2.0007489996250833], [-4.3429557415393696e-05, -0.08685910759238963, 1.998863691211116], [-8.578057664218506e-05, -0.1715611389873344, 1.993380879493696], [-0.00012797721020015908, -0.2559543990703759, 1.9843104322959038], [-0.00016994351367685443, -0.3398869990292492, 1.9716686743746001], [-0.00021160395720194782, -0.42320787913589614, 1.955478358039552], [-0.00025288356138396603, -0.5057670806198672, 1.9357686222044104], [-0.00029370803225626043, -0.5874160155602476, 1.9125749399432468], [-0.0003340038949893715, -0.6680077343103644, 1.8859390546470296], [-0.000373698626129131, -0.7473971899739686, 1.8559089048949446], [-0.0004127207841225043, -0.8254414994568979, 1.8225385381757782], [-0.00045100013789625384, -0.902000200624383, 1.7858880136146411], [-0.0004884677932570135, -0.9769355051011739, 1.7460232938801044], [-0.0005250563168852799, -1.0501125462595031, 1.7030161264662902], [-0.0005606998577001616, -1.1213996219485627, 1.656943914563583], [-0.0005953342653764552, -1.1906684315286384, 1.6078895777503641], [-0.000628897205800746, -1.25779430678329, 1.5559414027564946], [-0.0006613282732587369, -1.3226564362939908, 1.5011928845671347], [-0.000692569099151895, -1.3851380828734032, 1.4437425581528847], [-0.000722563457047749, -1.4451267936659562, 1.3836938211290835], [-0.0007512573638747718, -1.5025146025375926, 1.3211547476634498], [-0.0007785991770797204, -1.5571982243904339, 1.2562378939669832], [-0.0008045396875725703, -1.6090792410526327, 1.1890600957181998], [-0.0008290322082917668, -1.658064278408861, 1.1197422577852907], [-0.0008520326582303934, -1.704065174452633, 1.0484091366246608], [-0.0008734996417720316, -1.74699913795801, 0.9751891157474767], [-0.0008933945231935218, -1.7867888974851136, 0.9002139746583351], [-0.000911681496200543, -1.8233628404512694, 0.8236186516819107], [-0.0009283276483708566, -1.8566551420174846, 0.7455410011044405], [-0.0009433030203892344, -1.8866058835582973, 0.6661215450671356], [-0.0009565806599674624, -1.913161160501771, 0.585503220658057], [-0.0009681366703523728, -1.9362731793455534, 0.5038311226576321], [-0.0009779502533346044, -1.9559003436743883, 0.42125224240081194], [-0.0009860037466806828, -1.9720073290242708, 0.3379152032258589], [-0.0009922826559210533, -1.9845651464585068, 0.25396999298589684], [-0.0009967756804368524, -1.993551194741253, 0.1695676941046423], [-0.0009994747337984703, -1.9989493010146382, 0.08486021166215622], [-0.001000374958319299, -2.000749749906255, -3.217451391340531e-16], [-0.0009994747337984703, -1.9989493010146382, -0.08486021166215686], [-0.0009967756804368524, -1.993551194741253, -0.16956769410464295], [-0.0009922826559210533, -1.9845651464585068, -0.2539699929858975], [-0.0009860037466806828, -1.9720073290242706, -0.33791520322585955], [-0.0009779502533346042, -1.955900343674388, -0.42125224240081255], [-0.0009681366703523727, -1.9362731793455532, -0.5038311226576327], [-0.0009565806599674623, -1.9131611605017709, -0.5855032206580576], [-0.0009433030203892343, -1.886605883558297, -0.6661215450671362], [-0.0009283276483708564, -1.8566551420174844, -0.7455410011044411], [-0.0009116814962005429, -1.8233628404512692, -0.8236186516819113], [-0.0008933945231935218, -1.7867888974851136, -0.9002139746583352], [-0.0008734996417720315, -1.7469991379580099, -0.9751891157474768], [-0.0008520326582303934, -1.704065174452633, -1.048409136624661], [-0.0008290322082917667, -1.6580642784088608, -1.1197422577852911], [-0.0008045396875725701, -1.6090792410526322, -1.1890600957182003], [-0.0007785991770797201, -1.5571982243904332, -1.2562378939669838], [-0.0007512573638747714, -1.502514602537592, -1.3211547476634504], [-0.0007225634570477486, -1.4451267936659553, -1.3836938211290843], [-0.0006925690991518945, -1.3851380828734021, -1.4437425581528858], [-0.0006613282732587363, -1.3226564362939894, -1.501192884567136], [-0.0006288972058007453, -1.2577943067832884, -1.5559414027564957], [-0.0005953342653764542, -1.1906684315286367, -1.6078895777503655], [-0.0005606998577001606, -1.1213996219485607, -1.6569439145635845], [-0.0005250563168852788, -1.050112546259501, -1.7030161264662915], [-0.0004884677932570122, -0.9769355051011713, -1.7460232938801057], [-0.0004510001378962525, -0.9020002006243802, -1.7858880136146424], [-0.0004127207841225028, -0.825441499456895, -1.8225385381757795], [-0.0003736986261291295, -0.7473971899739656, -1.8559089048949458], [-0.00033400389498936987, -0.6680077343103612, -1.8859390546470307], [-0.00029370803225625875, -0.5874160155602443, -1.912574939943248], [-0.00025288356138396424, -0.5057670806198636, -1.9357686222044113], [-0.00021160395720194595, -0.4232078791358924, -1.9554783580395527], [-0.0001699435136768525, -0.33988699902924535, -1.9716686743746008], [-0.0001279772102001571, -0.25595439907037193, -1.9843104322959042], [-8.578057664218297e-05, -0.17156113898733025, -1.9933808794936965], [-4.342955741539155e-05, -0.08685910759238534, -1.998863691211116], [-1.0003747915879386e-06, -0.0020007494164435624, -2.0007489996250833]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0020007486661669334, -2.000749333086358e-06, 2.0007489996250833], [0.08685907502022361, -8.685910397338764e-05, 1.998863691211116], [0.17156107465190595, -0.00017156113183920544, 1.993380879493696], [0.2559543030874743, -0.00025595438840598497, 1.9843104322959038], [0.3398868715716219, -0.00033988698486778977, 1.9716686743746001], [0.42320772043293814, -0.0004232078615028557, 1.955478358039552], [0.505766890957208, -0.0005057670595469812, 1.9357686222044104], [0.5874157952792373, -0.0005874159910854425, 1.9125749399432468], [0.6680074838074588, -0.0006680077064776893, 1.8859390546470296], [0.7473969097000165, -0.0007473971588335161, 1.8559089048949446], [0.8254411899163292, -0.0008254414650647137, 1.8225385381757782], [0.9019998623743007, -0.0009020001630423653, 1.7858880136146411], [0.9769351387503519, -0.0009769354643969618, 1.7460232938801044], [1.05011215246729, -0.001050112502506355, 1.7030161264662902], [1.1213992014236958, -0.0011213995752252246, 1.656943914563583], [1.1906679850279673, -0.0011906683819192015, 1.6078895777503641], [1.2577938351104152, -0.00125779425437704, 1.5559414027564946], [1.3226559402978169, -0.0013226563811852474, 1.5011928845671347], [1.3851375634466112, -0.0013851380251613495, 1.4437425581528847], [1.4451262517433971, -0.001445126733454461, 1.3836938211290835], [1.5025140390946048, -0.0015025145399350228, 1.3211547476634498], [1.5571976404410874, -0.0015571981595094602, 1.2562378939669832], [1.6090786376479047, -0.0016090791740100262, 1.1890600957181998], [1.6580636566347435, -0.0016580642093252831, 1.1197422577852907], [1.7040645354281792, -0.0017040651034524186, 1.0484091366246608], [1.7469984828333198, -0.0017469990651689438, 0.9751891157474767], [1.7867882274392632, -0.0017867888230381989, 0.9002139746583351], [1.8233621566901899, -0.001823362764480494, 0.8236186516819107], [1.856654445771792, -0.001856655064659579, 0.7455410011044405], [1.8866051760810763, -0.001886605804952488, 0.6661215450671356], [1.913160443066321, -0.001913161080789531, 0.585503220658057], [1.936272453243096, -0.0019362730986703463, 0.5038311226576321], [1.955899610211744, -0.0019559002621814116, 0.42125224240081194], [1.9720065895215069, -0.0019720072468601933, 0.3379152032258589], [1.9845644022465614, -0.001984565063771205, 0.25396999298589684], [1.9935504471595393, -0.001993551111679546, 0.1695676941046423], [1.9989485514086347, -0.001998949217728018, 0.08486021166215622], [2.0007489996250833, -0.002000749666544619, -3.217451391340531e-16], [1.9989485514086347, -0.001998949217728018, -0.08486021166215686], [1.9935504471595393, -0.001993551111679546, -0.16956769410464295], [1.9845644022465614, -0.001984565063771205, -0.2539699929858975], [1.9720065895215066, -0.001972007246860193, -0.33791520322585955], [1.9558996102117439, -0.001955900262181411, -0.42125224240081255], [1.9362724532430957, -0.001936273098670346, -0.5038311226576327], [1.9131604430663207, -0.0019131610807895307, -0.5855032206580576], [1.886605176081076, -0.0018866058049524879, -0.6661215450671362], [1.8566544457717917, -0.0018566550646595787, -0.7455410011044411], [1.8233621566901896, -0.0018233627644804937, -0.8236186516819113], [1.7867882274392632, -0.0017867888230381989, -0.9002139746583352], [1.7469984828333196, -0.0017469990651689435, -0.9751891157474768], [1.7040645354281792, -0.0017040651034524186, -1.048409136624661], [1.6580636566347433, -0.001658064209325283, -1.1197422577852911], [1.6090786376479043, -0.0016090791740100258, -1.1890600957182003], [1.5571976404410868, -0.0015571981595094595, -1.2562378939669838], [1.5025140390946041, -0.0015025145399350222, -1.3211547476634504], [1.4451262517433963, -0.00144512673345446, -1.3836938211290843], [1.38513756344661, -0.0013851380251613484, -1.4437425581528858], [1.3226559402978155, -0.001322656381185246, -1.501192884567136], [1.2577938351104136, -0.0012577942543770385, -1.5559414027564957], [1.1906679850279656, -0.0011906683819191998, -1.6078895777503655], [1.1213992014236938, -0.0011213995752252224, -1.6569439145635845], [1.0501121524672878, -0.0010501125025063527, -1.7030161264662915], [0.9769351387503493, -0.0009769354643969592, -1.7460232938801057], [0.901999862374298, -0.0009020001630423625, -1.7858880136146424], [0.8254411899163263, -0.0008254414650647109, -1.8225385381757795], [0.7473969097000135, -0.0007473971588335131, -1.8559089048949458], [0.6680074838074556, -0.0006680077064776861, -1.8859390546470307], [0.5874157952792339, -0.0005874159910854392, -1.912574939943248], [0.5057668909572044, -0.0005057670595469777, -1.9357686222044113], [0.4232077204329344, -0.00042320786150285196, -1.9554783580395527], [0.33988687157161807, -0.0003398869848677859, -1.9716686743746008], [0.2559543030874703, -0.000255954388405981, -1.9843104322959042], [0.1715610746519018, -0.00017156113183920126, -1.9933808794936965], [0.08685907502021932, -8.685910397338335e-05, -1.998863691211116], [0.0020007486661625155, -2.00074933308194e-06, -2.0007489996250833]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.004000497333000533, 4.000498666500177e-06, 4.000497999750166], [0.17367473678290865, 0.00017367479467451073, 3.9967283252230756], [0.34303640092212906, 0.0003430365152676417, 3.9857654421664526], [0.5117806769968466, 0.0005117808475904738, 3.9676290812943957], [0.679603863412357, 0.0006796040899470687, 3.942351883961308], [0.8462039163273617, 0.0008462041983954466, 3.909979343414833], [1.011280993264681, 0.00101128133035848, 3.870569722918277], [1.1745379927600093, 0.0011745383842728298, 3.8241939508898954], [1.3356810890774653, 0.001335681534304673, 3.770935493247753], [1.4944202610295718, 0.001494420759169858, 3.7108902031899165], [1.6504698139499063, 0.001650470364106731, 3.6441661486803447], [1.8035488938789903, 0.0018035494950621954, 3.570883417950954], [1.9533819930380019, 0.0019533826441655933, 3.4911739033699147], [2.0996994456805664, 0.0020997001455806616, 3.405181064065172], [2.242237913430211, 0.0022422386608431477, 3.3130596677304074], [2.3807408592299804, 0.002380741652810584, 3.2149755120781363], [2.5149590090512137, 0.0025149598473712185, 3.1111051264412626], [2.644650800530509, 0.0026446516820811286, 3.0016354540601387], [2.769582817727436, 0.002769583740922078, 2.8867635156269476], [2.8895302112205226, 0.0028895311743976446, 2.766696054692939], [3.0042771027854385, 0.00300427810421154, 2.6416491655767236], [3.1136169739270625, 0.0031136180117998023, 2.5118479044432918], [3.217353037566134, 0.0032173541100175753, 2.377525884253734], [3.3152985922115663, 0.003315299697311539, 2.2389248543146594], [3.4072773579809725, 0.003407278493740546, 2.0962942651840337], [3.4931237938646484, 0.0034931249582397118, 1.9498908197164964], [3.5726833956620125, 0.003572684586556954, 1.7999780110561887], [3.6458129740542815, 0.003645814189325759, 1.6468256484085886], [3.7123809123129092, 0.003712382149773708, 1.4907093714448654], [3.77226740317998, 0.0037722686606029504, 1.331910154212708], [3.8253646644942227, 0.0038253659396162874, 1.170713799446486], [3.871577133174562, 0.003871578423700789, 1.0074104241868584], [3.910821637212086, 0.00391082294081982, 0.8422939376356107], [3.9430275453608834, 0.003943028859703924, 0.6756615121854547], [3.968136894258337, 0.0039681382169711645, 0.5078130485768237], [3.9861044927460885, 0.003986105821448117, 0.3390506361442567], [3.99689800320392, 0.003996899335503787, 0.16967800912380654], [4.000497999750166, 0.004000499333250033, -6.433294660031384e-16], [3.99689800320392, 0.003996899335503787, -0.16967800912380782], [3.9861044927460885, 0.003986105821448117, -0.33905063614425796], [3.968136894258337, 0.0039681382169711645, -0.5078130485768251], [3.943027545360883, 0.003943028859703924, -0.675661512185456], [3.9108216372120856, 0.003910822940819819, -0.8422939376356119], [3.8715771331745614, 0.0038715784237007885, -1.0074104241868598], [3.8253646644942223, 0.003825365939616287, -1.1707137994464871], [3.7722674031799794, 0.00377226866060295, -1.3319101542127092], [3.712380912312909, 0.0037123821497737075, -1.4907093714448665], [3.645812974054281, 0.0036458141893257585, -1.6468256484085897], [3.5726833956620125, 0.003572684586556954, -1.799978011056189], [3.493123793864648, 0.0034931249582397113, -1.9498908197164966], [3.4072773579809725, 0.003407278493740546, -2.096294265184034], [3.315298592211566, 0.0033152996973115387, -2.2389248543146603], [3.217353037566133, 0.0032173541100175744, -2.377525884253735], [3.113616973927061, 0.0031136180117998006, -2.511847904443293], [3.004277102785437, 0.0030042781042115387, -2.641649165576725], [2.889530211220521, 0.002889531174397643, -2.766696054692941], [2.769582817727434, 0.002769583740922076, -2.8867635156269498], [2.6446508005305063, 0.0026446516820811256, -3.0016354540601413], [2.5149590090512106, 0.0025149598473712155, -3.111105126441265], [2.380740859229977, 0.0023807416528105804, -3.214975512078139], [2.242237913430207, 0.002242238660843144, -3.3130596677304105], [2.099699445680562, 0.0020997001455806573, -3.4051810640651747], [1.9533819930379968, 0.001953382644165588, -3.4911739033699174], [1.8035488938789848, 0.0018035494950621898, -3.5708834179509568], [1.6504698139499006, 0.001650470364106725, -3.6441661486803474], [1.4944202610295658, 0.0014944207591698522, -3.7108902031899187], [1.3356810890774589, 0.0013356815343046665, -3.7709354932477552], [1.1745379927600026, 0.0011745383842728233, -3.8241939508898977], [1.0112809932646738, 0.0010112813303584732, -3.8705697229182787], [0.8462039163273543, 0.0008462041983954392, -3.909979343414834], [0.6796038634123494, 0.0006796040899470611, -3.9423518839613094], [0.5117806769968386, 0.0005117808475904658, -3.9676290812943966], [0.34303640092212073, 0.0003430365152676334, -3.9857654421664535], [0.17367473678290007, 0.00017367479467450216, -3.9967283252230756], [0.0040004973329917, 4.000498666491344e-06, -4.000497999750166]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-2.000249583279928e-06, 0.004000498833187627, 4.000497999750166], [-8.683740819187243e-05, 0.17367480191096074, 3.9967283252230756], [-0.0001715182790734893, 0.34303652956083036, 3.9857654421664526], [-0.0002558904557813701, 0.5117808689146764, 3.9676290812943957], [-0.00033980208744856455, 0.6796041182639068, 3.942351883961308], [-0.000423102152085205, 0.846204233653956, 3.909979343414833], [-0.0005056407283839878, 1.0112813724952037, 3.870569722918277], [-0.0005872692655446744, 1.1745384332119309, 3.8241939508898954], [-0.0006678408506319894, 1.335681589958072, 3.770935493247753], [-0.0007472104729857308, 1.4944208214373917, 3.7108902031899165], [-0.0008252352852072157, 1.6504704328763316, 3.6441661486803447], [-0.0009017748602523429, 1.8035495702100934, 3.570883417950954], [-0.000976691444168564, 1.9533827255565395, 3.4911739033699147], [-0.0010498502040208935, 2.0997002330681704, 3.405181064065172], [-0.0011211194705607462, 2.2422387542697617, 3.3130596677304074], [-0.0011903709752008557, 2.380741752008156, 3.2149755120781363], [-0.0012574800808697654, 2.5149599521612154, 3.1111051264412626], [-0.001322326006330417, 2.644651792274952, 3.0016354540601387], [-0.0013847920435591042, 2.7695838563214044, 2.8867635156269476], [-0.0014447657677935622, 2.889531294794781, 2.766696054692939], [-0.001502139239872155, 3.0042782293897985, 2.6416491655767236], [-0.001556809200499994, 3.11361814153389, 2.5118479044432918], [-0.0016086772560923524, 3.217354244074001, 2.377525884253734], [-0.0016576500558609009, 3.315299835449031, 2.2389248543146594], [-0.0017036394598240485, 3.4072786357104876, 2.0962942651840337], [-0.0017465626974390073, 3.49312510378659, 1.9498908197164964], [-0.0017863425165700786, 3.5726847354188167, 1.7999780110561887], [-0.001822907322525057, 3.6458143412346886, 1.6468256484085886], [-0.001856191306909507, 3.7123823044563027, 1.4907093714448654], [-0.0018861345660670153, 3.7722688177808164, 1.331910154212708], [-0.001912683208892246, 3.82536609900654, 1.170713799446486], [-0.0019357894538227617, 3.871578585016562, 1.0074104241868584], [-0.0019554117148350464, 3.910823103770781, 0.8422939376356107], [-0.001971514676289958, 3.943029023996799, 0.6756615121854547], [-0.0019840693564929044, 3.968138382310262, 0.5078130485768237], [-0.00199305315985435, 3.9861059875358653, 0.3390506361442567], [-0.001998449917556776, 3.996899502041265, 0.16967800912380654], [-0.0020002499166548978, 4.0004994999375105, -6.433294660031384e-16], [-0.001998449917556776, 3.996899502041265, -0.16967800912380782], [-0.00199305315985435, 3.9861059875358653, -0.33905063614425796], [-0.0019840693564929044, 3.968138382310262, -0.5078130485768251], [-0.001971514676289958, 3.9430290239967984, -0.675661512185456], [-0.0019554117148350464, 3.9108231037707806, -0.8422939376356119], [-0.0019357894538227615, 3.8715785850165614, -1.0074104241868598], [-0.0019126832088922458, 3.8253660990065397, -1.1707137994464871], [-0.0018861345660670151, 3.772268817780816, -1.3319101542127092], [-0.0018561913069095068, 3.7123823044563022, -1.4907093714448665], [-0.0018229073225250567, 3.645814341234688, -1.6468256484085897], [-0.0017863425165700786, 3.5726847354188167, -1.799978011056189], [-0.001746562697439007, 3.4931251037865896, -1.9498908197164966], [-0.0017036394598240485, 3.4072786357104876, -2.096294265184034], [-0.0016576500558609006, 3.3152998354490304, -2.2389248543146603], [-0.001608677256092352, 3.217354244074, -2.377525884253735], [-0.0015568092004999933, 3.113618141533889, -2.511847904443293], [-0.0015021392398721542, 3.004278229389797, -2.641649165576725], [-0.0014447657677935613, 2.889531294794779, -2.766696054692941], [-0.001384792043559103, 2.769583856321402, -2.8867635156269498], [-0.0013223260063304158, 2.6446517922749493, -3.0016354540601413], [-0.0012574800808697638, 2.5149599521612123, -3.111105126441265], [-0.0011903709752008537, 2.3807417520081526, -3.214975512078139], [-0.0011211194705607443, 2.2422387542697577, -3.3130596677304105], [-0.0010498502040208913, 2.099700233068166, -3.4051810640651747], [-0.0009766914441685613, 1.9533827255565344, -3.4911739033699174], [-0.0009017748602523401, 1.8035495702100879, -3.5708834179509568], [-0.0008252352852072128, 1.6504704328763258, -3.6441661486803474], [-0.0007472104729857278, 1.4944208214373857, -3.7108902031899187], [-0.0006678408506319861, 1.3356815899580656, -3.7709354932477552], [-0.0005872692655446711, 1.1745384332119242, -3.8241939508898977], [-0.0005056407283839842, 1.0112813724951966, -3.8705697229182787], [-0.0004231021520852013, 0.8462042336539486, -3.909979343414834], [-0.0003398020874485607, 0.6796041182638991, -3.9423518839613094], [-0.0002558904557813661, 0.5117808689146685, -3.9676290812943966], [-0.0001715182790734851, 0.34303652956082203, -3.9857654421664535], [-8.683740819186813e-05, 0.17367480191095216, -3.9967283252230756], [-2.0002495832755118e-06, 0.004000498833178794, -4.000497999750166]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.004000499333250033, 2.2664984582542873e-18, 4.000497999750166], [-0.17367482362031325, 9.839614687630368e-17, 3.9967283252230756], [-0.343036572440401, 1.9434870444769307e-16, 3.9857654421664526], [-0.5117809328872917, 2.8995147823475214e-16, 3.9676290812943957], [-0.6796042032144303, 3.8503240483164173e-16, 3.942351883961308], [-0.8462043394294961, 4.794203600396325e-16, 3.909979343414833], [-1.0112814989053882, 5.72945466852023e-16, 3.870569722918277], [-1.1745385800292503, 6.654394011943942e-16, 3.8241939508898954], [-1.3356817569182882, 7.567356948699355e-16, 3.770935493247753], [-1.4944210082400138, 8.46670035164611e-16, 3.7108902031899165], [-1.6504706391851571, 9.350805605729433e-16, 3.6441661486803447], [-1.8035497956538131, 1.0218081521121744e-15, 3.570883417950954], [-1.9533829697294054, 1.1066967197005074e-15, 3.4911739033699147], [-2.0997004955307266, 1.1895934830840072e-15, 3.405181064065172], [-2.242239034549635, 1.2703492468065609e-15, 3.3130596677304074], [-2.3807420496009057, 1.3488186687280108e-15, 3.2149755120781363], [-2.514960266531242, 1.4248605216071883e-15, 3.1111051264412626], [-2.6446521228564603, 1.498337947279058e-15, 3.0016354540601387], [-2.769584202519422, 1.5691187029685147e-15, 2.8867635156269476], [-2.88953165598623, 1.6370753992975168e-15, 2.766696054692939], [-3.004278604924616, 1.702085729557202e-15, 2.6416491655767236], [-3.1136185307361983, 1.7640326898323482e-15, 2.5118479044432918], [-3.217354646243323, 1.8228047895820002e-15, 2.377525884253734], [-3.3153002498615534, 1.8782962522972695e-15, 2.2389248543146594], [-3.407279061620361, 1.9304072058751665e-15, 2.0962942651840337], [-3.493125540427273, 1.9790438623658337e-15, 1.9498908197164964], [-3.572685182004455, 2.0241186867696794e-15, 1.7999780110561887], [-3.6458147969615284, 2.0655505545806113e-15, 1.6468256484085886], [-3.712382768504139, 2.1032648977918293e-15, 1.4907093714448654], [-3.7722692893144676, 2.137193839101402e-15, 1.331910154212708], [-3.825366577177352, 2.16727631407608e-15, 1.170713799446486], [-3.871579068963935, 2.1934581810534925e-15, 1.0074104241868584], [-3.9108235926237196, 2.21569231858491e-15, 0.8422939376356107], [-3.9430295168754776, 2.233938710243214e-15, 0.6756615121854547], [-3.968138878327611, 2.2481645166434306e-15, 0.5078130485768237], [-3.9861064857991653, 2.2583441345462066e-15, 0.3390506361442567], [-3.996900001653754, 2.264459242937862e-15, 0.16967800912380654], [-4.0005, 2.2664988360040743e-15, -6.433294660031384e-16], [-3.996900001653754, 2.264459242937862e-15, -0.16967800912380782], [-3.9861064857991653, 2.2583441345462066e-15, -0.33905063614425796], [-3.968138878327611, 2.2481645166434306e-15, -0.5078130485768251], [-3.943029516875477, 2.2339387102432137e-15, -0.675661512185456], [-3.910823592623719, 2.21569231858491e-15, -0.8422939376356119], [-3.8715790689639347, 2.1934581810534925e-15, -1.0074104241868598], [-3.8253665771773515, 2.16727631407608e-15, -1.1707137994464871], [-3.772269289314467, 2.1371938391014015e-15, -1.3319101542127092], [-3.7123827685041384, 2.1032648977918293e-15, -1.4907093714448665], [-3.645814796961528, 2.065550554580611e-15, -1.6468256484085897], [-3.572685182004455, 2.0241186867696794e-15, -1.799978011056189], [-3.4931255404272727, 1.9790438623658333e-15, -1.9498908197164966], [-3.407279061620361, 1.9304072058751665e-15, -2.096294265184034], [-3.315300249861553, 1.8782962522972695e-15, -2.2389248543146603], [-3.2173546462433222, 1.822804789582e-15, -2.377525884253735], [-3.113618530736197, 1.7640326898323476e-15, -2.511847904443293], [-3.0042786049246146, 1.7020857295572013e-15, -2.641649165576725], [-2.8895316559862283, 1.6370753992975158e-15, -2.766696054692941], [-2.76958420251942, 1.5691187029685133e-15, -2.8867635156269498], [-2.6446521228564577, 1.4983379472790566e-15, -3.0016354540601413], [-2.5149602665312387, 1.4248605216071865e-15, -3.111105126441265], [-2.380742049600902, 1.3488186687280089e-15, -3.214975512078139], [-2.242239034549631, 1.2703492468065587e-15, -3.3130596677304105], [-2.099700495530722, 1.1895934830840046e-15, -3.4051810640651747], [-1.9533829697294003, 1.1066967197005044e-15, -3.4911739033699174], [-1.8035497956538076, 1.0218081521121712e-15, -3.5708834179509568], [-1.6504706391851514, 9.3508056057294e-16, -3.6441661486803474], [-1.4944210082400078, 8.466700351646077e-16, -3.7108902031899187], [-1.3356817569182817, 7.567356948699319e-16, -3.7709354932477552], [-1.1745385800292436, 6.654394011943905e-16, -3.8241939508898977], [-1.011281498905381, 5.72945466852019e-16, -3.8705697229182787], [-0.8462043394294887, 4.794203600396283e-16, -3.909979343414834], [-0.6796042032144226, 3.850324048316374e-16, -3.9423518839613094], [-0.5117809328872837, 2.899514782347476e-16, -3.9676290812943966], [-0.34303657244039265, 1.9434870444768836e-16, -3.9857654421664535], [-0.17367482362030465, 9.839614687629882e-17, -3.9967283252230756], [-0.0040004993332412, 2.2664984582492826e-18, -4.000497999750166]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-2.000249583284461e-06, -0.004000498833187627, 4.000497999750166], [-8.683740819206921e-05, -0.17367480191096074, 3.9967283252230756], [-0.00017151827907387797, -0.34303652956083036, 3.9857654421664526], [-0.00025589045578195, -0.5117808689146764, 3.9676290812943957], [-0.0003398020874493346, -0.6796041182639068, 3.942351883961308], [-0.00042310215208616383, -0.846204233653956, 3.909979343414833], [-0.0005056407283851337, -1.0112813724952037, 3.870569722918277], [-0.0005872692655460052, -1.1745384332119309, 3.8241939508898954], [-0.0006678408506335028, -1.335681589958072, 3.770935493247753], [-0.0007472104729874241, -1.4944208214373917, 3.7108902031899165], [-0.0008252352852090859, -1.6504704328763316, 3.6441661486803447], [-0.0009017748602543864, -1.8035495702100934, 3.570883417950954], [-0.0009766914441707772, -1.9533827255565395, 3.4911739033699147], [-0.0010498502040232724, -2.0997002330681704, 3.405181064065172], [-0.001121119470563287, -2.2422387542697617, 3.3130596677304074], [-0.0011903709752035532, -2.380741752008156, 3.2149755120781363], [-0.001257480080872615, -2.5149599521612154, 3.1111051264412626], [-0.0013223260063334136, -2.644651792274952, 3.0016354540601387], [-0.0013847920435622423, -2.7695838563214044, 2.8867635156269476], [-0.0014447657677968363, -2.889531294794781, 2.766696054692939], [-0.001502139239875559, -3.0042782293897985, 2.6416491655767236], [-0.001556809200503522, -3.11361814153389, 2.5118479044432918], [-0.001608677256095998, -3.217354244074001, 2.377525884253734], [-0.0016576500558646574, -3.315299835449031, 2.2389248543146594], [-0.0017036394598279093, -3.4072786357104876, 2.0962942651840337], [-0.001746562697442965, -3.49312510378659, 1.9498908197164964], [-0.0017863425165741268, -3.5726847354188167, 1.7999780110561887], [-0.001822907322529188, -3.6458143412346886, 1.6468256484085886], [-0.0018561913069137133, -3.7123823044563027, 1.4907093714448654], [-0.0018861345660712895, -3.7722688177808164, 1.331910154212708], [-0.0019126832088965805, -3.82536609900654, 1.170713799446486], [-0.0019357894538271486, -3.871578585016562, 1.0074104241868584], [-0.0019554117148394778, -3.910823103770781, 0.8422939376356107], [-0.0019715146762944256, -3.943029023996799, 0.6756615121854547], [-0.0019840693564974004, -3.968138382310262, 0.5078130485768237], [-0.001993053159858867, -3.9861059875358653, 0.3390506361442567], [-0.001998449917561305, -3.996899502041265, 0.16967800912380654], [-0.0020002499166594306, -4.0004994999375105, -6.433294660031384e-16], [-0.001998449917561305, -3.996899502041265, -0.16967800912380782], [-0.001993053159858867, -3.9861059875358653, -0.33905063614425796], [-0.0019840693564974004, -3.968138382310262, -0.5078130485768251], [-0.0019715146762944256, -3.9430290239967984, -0.675661512185456], [-0.0019554117148394773, -3.9108231037707806, -0.8422939376356119], [-0.0019357894538271484, -3.8715785850165614, -1.0074104241868598], [-0.0019126832088965802, -3.8253660990065397, -1.1707137994464871], [-0.0018861345660712893, -3.772268817780816, -1.3319101542127092], [-0.001856191306913713, -3.7123823044563022, -1.4907093714448665], [-0.0018229073225291877, -3.645814341234688, -1.6468256484085897], [-0.0017863425165741268, -3.5726847354188167, -1.799978011056189], [-0.0017465626974429648, -3.4931251037865896, -1.9498908197164966], [-0.0017036394598279093, -3.4072786357104876, -2.096294265184034], [-0.0016576500558646572, -3.3152998354490304, -2.2389248543146603], [-0.0016086772560959975, -3.217354244074, -2.377525884253735], [-0.0015568092005035213, -3.113618141533889, -2.511847904443293], [-0.0015021392398755584, -3.004278229389797, -2.641649165576725], [-0.0014447657677968354, -2.889531294794779, -2.766696054692941], [-0.0013847920435622412, -2.769583856321402, -2.8867635156269498], [-0.0013223260063334123, -2.6446517922749493, -3.0016354540601413], [-0.0012574800808726136, -2.5149599521612123, -3.111105126441265], [-0.0011903709752035514, -2.3807417520081526, -3.214975512078139], [-0.001121119470563285, -2.2422387542697577, -3.3130596677304105], [-0.0010498502040232702, -2.099700233068166, -3.4051810640651747], [-0.0009766914441707746, -1.9533827255565344, -3.4911739033699174], [-0.0009017748602543836, -1.8035495702100879, -3.5708834179509568], [-0.0008252352852090829, -1.6504704328763258, -3.6441661486803474], [-0.000747210472987421, -1.4944208214373857, -3.7108902031899187], [-0.0006678408506334996, -1.3356815899580656, -3.7709354932477552], [-0.0005872692655460019, -1.1745384332119242, -3.8241939508898977], [-0.0005056407283851301, -1.0112813724951966, -3.8705697229182787], [-0.0004231021520861601, -0.8462042336539486, -3.909979343414834], [-0.00033980208744933076, -0.6796041182638991, -3.9423518839613094], [-0.000255890455781946, -0.5117808689146685, -3.9676290812943966], [-0.0001715182790738738, -0.34303652956082203, -3.9857654421664535], [-8.683740819206493e-05, -0.17367480191095216, -3.9967283252230756], [-2.0002495832800447e-06, -0.004000498833178794, -4.000497999750166]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.004000497333000533, -4.000498666506047e-06, 4.000497999750166], [0.17367473678290865, -0.00017367479467476554, 3.9967283252230756], [0.34303640092212906, -0.000343036515268145, 3.9857654421664526], [0.5117806769968466, -0.0005117808475912246, 3.9676290812943957], [0.679603863412357, -0.0006796040899480658, 3.942351883961308], [0.8462039163273617, -0.0008462041983966881, 3.909979343414833], [1.011280993264681, -0.001011281330359964, 3.870569722918277], [1.1745379927600093, -0.0011745383842745533, 3.8241939508898954], [1.3356810890774653, -0.0013356815343066328, 3.770935493247753], [1.4944202610295718, -0.0014944207591720507, 3.7108902031899165], [1.6504698139499063, -0.0016504703641091524, 3.6441661486803447], [1.8035488938789903, -0.0018035494950648415, 3.570883417950954], [1.9533819930380019, -0.001953382644168459, 3.4911739033699147], [2.0996994456805664, -0.002099700145583742, 3.405181064065172], [2.242237913430211, -0.002242238660846437, 3.3130596677304074], [2.3807408592299804, -0.002380741652814077, 3.2149755120781363], [2.5149590090512137, -0.0025149598473749083, 3.1111051264412626], [2.644650800530509, -0.0026446516820850087, 3.0016354540601387], [2.769582817727436, -0.0027695837409261416, 2.8867635156269476], [2.8895302112205226, -0.002889531174401884, 2.766696054692939], [3.0042771027854385, -0.003004278104215948, 2.6416491655767236], [3.1136169739270625, -0.0031136180118043703, 2.5118479044432918], [3.217353037566134, -0.003217354110022296, 2.377525884253734], [3.3152985922115663, -0.0033152996973164033, 2.2389248543146594], [3.4072773579809725, -0.003407278493745545, 2.0962942651840337], [3.4931237938646484, -0.003493124958244837, 1.9498908197164964], [3.5726833956620125, -0.003572684586562196, 1.7999780110561887], [3.6458129740542815, -0.003645814189331108, 1.6468256484085886], [3.7123809123129092, -0.0037123821497791545, 1.4907093714448654], [3.77226740317998, -0.003772268660608485, 1.331910154212708], [3.8253646644942227, -0.0038253659396219, 1.170713799446486], [3.871577133174562, -0.0038715784237064693, 1.0074104241868584], [3.910821637212086, -0.003910822940825558, 0.8422939376356107], [3.9430275453608834, -0.003943028859709709, 0.6756615121854547], [3.968136894258337, -0.003968138216976986, 0.5078130485768237], [3.9861044927460885, -0.003986105821453966, 0.3390506361442567], [3.99689800320392, -0.003996899335509651, 0.16967800912380654], [4.000497999750166, -0.004000499333255902, -6.433294660031384e-16], [3.99689800320392, -0.003996899335509651, -0.16967800912380782], [3.9861044927460885, -0.003986105821453966, -0.33905063614425796], [3.968136894258337, -0.003968138216976986, -0.5078130485768251], [3.943027545360883, -0.003943028859709709, -0.675661512185456], [3.9108216372120856, -0.003910822940825558, -0.8422939376356119], [3.8715771331745614, -0.003871578423706469, -1.0074104241868598], [3.8253646644942223, -0.0038253659396218997, -1.1707137994464871], [3.7722674031799794, -0.0037722686606084846, -1.3319101542127092], [3.712380912312909, -0.003712382149779154, -1.4907093714448665], [3.645812974054281, -0.0036458141893311075, -1.6468256484085897], [3.5726833956620125, -0.003572684586562196, -1.799978011056189], [3.493123793864648, -0.0034931249582448366, -1.9498908197164966], [3.4072773579809725, -0.003407278493745545, -2.096294265184034], [3.315298592211566, -0.003315299697316403, -2.2389248543146603], [3.217353037566133, -0.003217354110022295, -2.377525884253735], [3.113616973927061, -0.003113618011804369, -2.511847904443293], [3.004277102785437, -0.0030042781042159466, -2.641649165576725], [2.889530211220521, -0.002889531174401882, -2.766696054692941], [2.769582817727434, -0.0027695837409261394, -2.8867635156269498], [2.6446508005305063, -0.0026446516820850057, -3.0016354540601413], [2.5149590090512106, -0.0025149598473749053, -3.111105126441265], [2.380740859229977, -0.0023807416528140732, -3.214975512078139], [2.242237913430207, -0.0022422386608464333, -3.3130596677304105], [2.099699445680562, -0.0020997001455837377, -3.4051810640651747], [1.9533819930379968, -0.0019533826441684543, -3.4911739033699174], [1.8035488938789848, -0.001803549495064836, -3.5708834179509568], [1.6504698139499006, -0.0016504703641091467, -3.6441661486803474], [1.4944202610295658, -0.0014944207591720447, -3.7108902031899187], [1.3356810890774589, -0.0013356815343066263, -3.7709354932477552], [1.1745379927600026, -0.0011745383842745466, -3.8241939508898977], [1.0112809932646738, -0.0010112813303599568, -3.8705697229182787], [0.8462039163273543, -0.0008462041983966807, -3.909979343414834], [0.6796038634123494, -0.0006796040899480581, -3.9423518839613094], [0.5117806769968386, -0.0005117808475912167, -3.9676290812943966], [0.34303640092212073, -0.0003430365152681367, -3.9857654421664535], [0.17367473678290007, -0.00017367479467475698, -3.9967283252230756], [0.0040004973329917, -4.0004986664972135e-06, -4.000497999750166]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.006000245999834133, 6.000247999916933e-06, 6.00024699987525], [0.26049039854559375, 0.00026049048537576133, 5.994592959235035], [0.5145117271923522, 0.0005145118986963299, 5.978150004839209], [0.767607050906219, 0.0007676073067753382, 5.950947730292888], [1.0193208552530921, 0.0010193211950268466, 5.913035093548016], [1.2692001122217853, 0.0012692005352886587, 5.864480328790114], [1.516795095572154, 0.0015167956011707215, 5.805370823632144], [1.7616601902407811, 0.0017616607774610794, 5.735812961836544], [2.003354694347472, 0.0020033553621326373, 5.655931931848476], [2.2414436123591273, 0.002241444359507297, 5.565871501484889], [2.4754984379834832, 0.0024754992631499597, 5.465793759184912], [2.70509792538368, 0.0027050988270833493, 5.355878822287266], [2.9298288473256524, 0.0029298298239356585, 5.236324512859725], [3.149286738893843, 0.003149287788656509, 5.107346001664054], [3.3630766254367264, 0.0033630777464627166, 4.969175420897232], [3.5708137334319936, 0.003570814923703714, 4.822061446405908], [3.772124182992012, 0.003772125440367243, 4.6662688501260305], [3.9666456607632017, 0.003966646982978951, 4.502078023553143], [4.154028072008262, 0.004154029456684839, 4.32978447310101], [4.333934170697648, 0.004333935615342949, 4.149698288256794], [4.506040166476272, 0.004506041668490262, 3.962143583489998], [4.670036307413038, 0.00467003786409243, 3.7674579149196004], [4.825627437484363, 0.004825629046027486, 3.565991672789268], [4.972533527788389, 0.0049725351853002284, 3.3581074508440283], [5.110490180533766, 0.005110491884031174, 3.1441793937434066], [5.239249104895977, 0.005239250851313044, 2.9245925236855164], [5.3585785638847625, 0.005358580350078332, 2.699742047454042], [5.468263791418374, 0.0054682656141737, 2.4700326451352663], [5.568107378854027, 0.005568109234890562, 2.23587774178529], [5.657929630278884, 0.005657931516256182, 1.9976987633582806], [5.737568885922125, 0.005737570798445852, 1.7559243782349152], [5.8068818131060285, 0.0058068837487340735, 1.5109897257160847], [5.865743664212429, 0.005865745619461099, 1.2633356328704095], [5.914048501200261, 0.00591405047255055, 1.0134078211450503], [5.951709386270114, 0.005951711370174036, 0.7616561041677508], [5.978658538332638, 0.0059786605312196145, 0.508533578183871], [5.9948474549992055, 0.00599484945328249, 0.25449580658545684], [6.00024699987525, 0.006000248999958383, -9.649137928722239e-16], [5.9948474549992055, 0.00599484945328249, -0.2544958065854588], [5.978658538332638, 0.0059786605312196145, -0.5085335781838729], [5.951709386270114, 0.005951711370174036, -0.7616561041677528], [5.91404850120026, 0.005914050472550549, -1.0134078211450523], [5.865743664212428, 0.005865745619461098, -1.2633356328704113], [5.806881813106028, 0.005806883748734073, -1.5109897257160867], [5.7375688859221246, 0.005737570798445851, -1.7559243782349168], [5.6579296302788835, 0.005657931516256182, -1.9976987633582823], [5.568107378854026, 0.005568109234890562, -2.2358777417852918], [5.468263791418373, 0.0054682656141737, -2.470032645135268], [5.3585785638847625, 0.005358580350078332, -2.6997420474540426], [5.239249104895976, 0.0052392508513130435, -2.9245925236855164], [5.110490180533766, 0.005110491884031174, -3.144179393743407], [4.972533527788388, 0.004972535185300228, -3.3581074508440296], [4.825627437484362, 0.004825629046027485, -3.5659916727892695], [4.670036307413036, 0.004670037864092428, -3.767457914919602], [4.506040166476271, 0.00450604166849026, -3.96214358349], [4.3339341706976455, 0.004333935615342946, -4.149698288256797], [4.154028072008258, 0.004154029456684836, -4.3297844731010136], [3.9666456607631977, 0.003966646982978946, -4.502078023553146], [3.7721241829920076, 0.003772125440367238, -4.666268850126034], [3.5708137334319883, 0.003570814923703709, -4.822061446405913], [3.3630766254367206, 0.0033630777464627106, -4.969175420897237], [3.1492867388938364, 0.0031492877886565027, -5.107346001664058], [2.9298288473256444, 0.0029298298239356507, -5.2363245128597296], [2.7050979253836718, 0.002705098827083341, -5.355878822287271], [2.475498437983475, 0.002475499263149951, -5.4657937591849155], [2.2414436123591184, 0.002241444359507288, -5.565871501484891], [2.0033546943474625, 0.0020033553621326278, -5.655931931848479], [1.7616601902407711, 0.0017616607774610694, -5.735812961836547], [1.5167950955721434, 0.001516795601170711, -5.805370823632146], [1.2692001122217742, 0.0012692005352886475, -5.864480328790116], [1.0193208552530806, 0.001019321195026835, -5.913035093548018], [0.767607050906207, 0.0007676073067753263, -5.950947730292889], [0.5145117271923397, 0.0005145118986963174, -5.978150004839211], [0.26049039854558087, 0.00026049048537574843, -5.994592959235035], [0.0060002459998208845, 6.000247999903684e-06, -6.00024699987525]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.0001243749719754e-06, 0.006000248249927273, 6.00024699987525], [-0.00013024525896844955, 0.26049049622953185, 5.994592959235035], [-0.00025725598150498787, 0.5145119201343262, 5.978150004839209], [-0.0003838037013628711, 0.7676073387589769, 5.950947730292888], [-0.0005096606612206597, 1.019321237498564, 5.913035093548016], [-0.0006346003469689417, 1.2692005881720156, 5.864480328790114], [-0.0007583978953845825, 1.51679566437054, 5.805370823632144], [-0.0008808304988337538, 1.7616608508636138, 5.735812961836544], [-0.001001677806275364, 2.0033554456057794, 5.655931931848476], [-0.0011207223198431771, 2.2414444529008146, 5.565871501484889], [-0.0012377497862928622, 2.475499366295765, 5.465793759184912], [-0.0013525495826094537, 2.7050989397958034, 5.355878822287266], [-0.0014649150950812211, 2.9298299460119046, 5.236324512859725], [-0.0015746440911576965, 3.1492879198768375, 5.107346001664054], [-0.0016815390834226014, 3.36307788659096, 4.969175420897232], [-0.0017854076850266048, 3.5708150724876733, 4.822061446405908], [-0.0018860629559402098, 3.7721255975391403, 4.6662688501260305], [-0.0019833237394035956, 3.966647148255913, 4.502078023553143], [-0.0020770149879678823, 4.154029629769405, 4.32978447310101], [-0.0021669680785410123, 4.333935795923605, 4.149698288256794], [-0.00225302111587124, 4.506041856242003, 3.962143583489998], [-0.0023350192239220318, 4.670038058677346, 3.7674579149196004], [-0.002412814824613957, 4.825629247095368, 3.565991672789268], [-0.0024862679034319134, 4.9725353924892, 3.3581074508440283], [-0.002555246261419634, 5.110492096968342, 3.1441793937434066], [-0.002619625753107962, 5.239251069615169, 2.9245925236855164], [-0.0026792905099486597, 5.358580573352519, 2.699742047454042], [-0.0027341331488516364, 5.4682658420181065, 2.4700326451352663], [-0.0027840549654502608, 5.56810946689512, 2.23587774178529], [-0.0028289661117469334, 5.657931752003335, 1.9976987633582806], [-0.002868785757819197, 5.737571037511309, 1.7559243782349152], [-0.0029034422372953444, 5.80688399068757, 1.5109897257160847], [-0.0029328731763377043, 5.865745863867173, 1.2633356328704095], [-0.002957025605901467, 5.914050718969326, 1.0134078211450503], [-0.0029758560570670033, 5.951711618162016, 0.7616561041677508], [-0.0029893306392741064, 5.978660780330477, 0.508533578183871], [-0.0029974251013173466, 5.9948497030678904, 0.25449580658545684], [-0.003000124874992763, 6.000249249968765, -9.649137928722239e-16], [-0.0029974251013173466, 5.9948497030678904, -0.2544958065854588], [-0.0029893306392741064, 5.978660780330477, -0.5085335781838729], [-0.0029758560570670033, 5.951711618162016, -0.7616561041677528], [-0.0029570256059014664, 5.914050718969325, -1.0134078211450523], [-0.002932873176337704, 5.865745863867172, -1.2633356328704113], [-0.002903442237295344, 5.806883990687569, -1.5109897257160867], [-0.0028687857578191967, 5.737571037511308, -1.7559243782349168], [-0.002828966111746933, 5.657931752003334, -1.9976987633582823], [-0.0027840549654502603, 5.568109466895119, -2.2358777417852918], [-0.002734133148851636, 5.4682658420181065, -2.470032645135268], [-0.0026792905099486597, 5.358580573352519, -2.6997420474540426], [-0.0026196257531079614, 5.239251069615168, -2.9245925236855164], [-0.002555246261419634, 5.110492096968342, -3.144179393743407], [-0.002486267903431913, 4.972535392489199, -3.3581074508440296], [-0.0024128148246139566, 4.8256292470953674, -3.5659916727892695], [-0.0023350192239220305, 4.670038058677344, -3.767457914919602], [-0.0022530211158712393, 4.5060418562420015, -3.96214358349], [-0.002166968078541011, 4.333935795923602, -4.149698288256797], [-0.0020770149879678805, 4.1540296297694015, -4.3297844731010136], [-0.0019833237394035934, 3.966647148255909, -4.502078023553146], [-0.0018860629559402074, 3.772125597539136, -4.666268850126034], [-0.0017854076850266022, 3.570815072487668, -4.822061446405913], [-0.0016815390834225984, 3.3630778865909536, -4.969175420897237], [-0.0015746440911576932, 3.149287919876831, -5.107346001664058], [-0.0014649150950812172, 2.929829946011897, -5.2363245128597296], [-0.0013525495826094496, 2.7050989397957954, -5.355878822287271], [-0.0012377497862928579, 2.475499366295756, -5.4657937591849155], [-0.0011207223198431728, 2.2414444529008057, -5.565871501484891], [-0.001001677806275359, 2.00335544560577, -5.655931931848479], [-0.0008808304988337488, 1.7616608508636038, -5.735812961836547], [-0.0007583978953845772, 1.5167956643705294, -5.805370823632146], [-0.000634600346968936, 1.2692005881720045, -5.864480328790116], [-0.000509660661220654, 1.0193212374985525, -5.913035093548018], [-0.0003838037013628651, 0.7676073387589649, -5.950947730292889], [-0.00025725598150498164, 0.5145119201343137, -5.978150004839211], [-0.00013024525896844312, 0.260490496229519, -5.994592959235035], [-3.000124374965351e-06, 0.006000248249914024, -6.00024699987525]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.006000248999958383, 3.3994644104837606e-18, 6.00024699987525], [-0.2604905287908473, 1.4758192233334362e-16, 5.994592959235035], [-0.5145119844483229, 2.914987661198026e-16, 5.978150004839209], [-0.7676074347099042, 4.3489097794727444e-16, 5.950947730292888], [-1.019321364913732, 5.775004842122379e-16, 5.913035093548016], [-1.2692007468221058, 7.190706200044506e-16, 5.864480328790114], [-1.5167958539700177, 8.59346591045832e-16, 5.805370823632144], [-1.7616610710712433, 9.980759322626331e-16, 5.735812961836544], [-2.0033556960252366, 1.1350089621655619e-15, 5.655931931848476], [-2.2414447330814005, 1.2698992322200866e-15, 5.565871501484889], [-2.475499675733218, 1.4025039703981506e-15, 5.465793759184912], [-2.7050992779332064, 1.5325845181130042e-15, 5.355878822287266], [-2.929830312240686, 1.6599067597507732e-15, 5.236324512859725], [-3.1492883135378684, 1.7842415440257e-15, 5.107346001664054], [-3.3630783069757393, 1.9053650964007165e-15, 4.969175420897232], [-3.570815518839604, 2.0230594218310825e-15, 4.822061446405908], [-3.7721260690548895, 2.1371126971062445e-15, 4.6662688501260305], [-3.966647644086858, 2.2473196520837813e-15, 4.502078023553143], [-4.154030149023162, 2.3534819391293163e-15, 4.32978447310101], [-4.3339363376656355, 2.4554084900974686e-15, 4.149698288256794], [-4.506042419497295, 2.5529158602113737e-15, 3.962143583489998], [-4.670038642432164, 2.645828558221859e-15, 3.7674579149196004], [-4.825629850299087, 2.7339793622520677e-15, 3.565991672789268], [-4.972536014056189, 2.817209620759078e-15, 3.3581074508440283], [-5.11049273577992, 2.8953695380708577e-15, 3.1441793937434066], [-5.239251724521621, 2.96831844398465e-15, 2.9245925236855164], [-5.35858124317516, 3.0359250469415738e-15, 2.699742047454042], [-5.4682665255514085, 3.0980676703217873e-15, 2.4700326451352663], [-5.568110162908876, 3.1546344714349263e-15, 2.23587774178529], [-5.657932459244877, 3.2055236428116945e-15, 1.9976987633582806], [-5.737571754707763, 3.2506435954343204e-15, 1.7559243782349152], [-5.8068847165481445, 3.2899131235761073e-15, 1.5109897257160847], [-5.865746597085483, 3.323261550953407e-15, 1.2633356328704095], [-5.914051458225743, 3.35062885792697e-15, 1.0134078211450503], [-5.951712362126046, 3.371965789523745e-15, 0.7616561041677508], [-5.978661527663152, 3.387233944084708e-15, 0.508533578183871], [-5.994850452424181, 3.3964058423791787e-15, 0.25449580658545684], [-6.000249999999999, 3.3994649770612286e-15, -9.649137928722239e-16], [-5.994850452424181, 3.3964058423791787e-15, -0.2544958065854588], [-5.978661527663152, 3.387233944084708e-15, -0.5085335781838729], [-5.951712362126046, 3.371965789523745e-15, -0.7616561041677528], [-5.914051458225742, 3.3506288579269698e-15, -1.0134078211450523], [-5.865746597085482, 3.3232615509534066e-15, -1.2633356328704113], [-5.806884716548144, 3.289913123576107e-15, -1.5109897257160867], [-5.737571754707762, 3.25064359543432e-15, -1.7559243782349168], [-5.6579324592448765, 3.205523642811694e-15, -1.9976987633582823], [-5.568110162908875, 3.154634471434926e-15, -2.2358777417852918], [-5.468266525551408, 3.098067670321787e-15, -2.470032645135268], [-5.35858124317516, 3.0359250469415738e-15, -2.6997420474540426], [-5.239251724521621, 2.9683184439846496e-15, -2.9245925236855164], [-5.11049273577992, 2.8953695380708577e-15, -3.144179393743407], [-4.972536014056188, 2.8172096207590774e-15, -3.3581074508440296], [-4.825629850299086, 2.733979362252067e-15, -3.5659916727892695], [-4.670038642432162, 2.645828558221858e-15, -3.767457914919602], [-4.506042419497293, 2.5529158602113726e-15, -3.96214358349], [-4.333936337665633, 2.4554084900974674e-15, -4.149698288256797], [-4.15403014902316, 2.3534819391293143e-15, -4.3297844731010136], [-3.966647644086854, 2.247319652083779e-15, -4.502078023553146], [-3.7721260690548846, 2.1371126971062417e-15, -4.666268850126034], [-3.5708155188395985, 2.0230594218310798e-15, -4.822061446405913], [-3.3630783069757335, 1.905365096400713e-15, -4.969175420897237], [-3.1492883135378618, 1.784241544025696e-15, -5.107346001664058], [-2.9298303122406786, 1.6599067597507688e-15, -5.2363245128597296], [-2.705099277933198, 1.5325845181129995e-15, -5.355878822287271], [-2.4754996757332095, 1.4025039703981457e-15, -5.4657937591849155], [-2.2414447330813916, 1.2698992322200815e-15, -5.565871501484891], [-2.003355696025227, 1.1350089621655564e-15, -5.655931931848479], [-1.7616610710712333, 9.980759322626274e-16, -5.735812961836547], [-1.516795853970007, 8.59346591045826e-16, -5.805370823632146], [-1.2692007468220947, 7.190706200044442e-16, -5.864480328790116], [-1.0193213649137205, 5.775004842122314e-16, -5.913035093548018], [-0.7676074347098922, 4.3489097794726764e-16, -5.950947730292889], [-0.5145119844483105, 2.9149876611979553e-16, -5.978150004839211], [-0.2604905287908344, 1.4758192233333632e-16, -5.994592959235035], [-0.006000248999945134, 3.3994644104762545e-18, -6.00024699987525]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.0001243749787745e-06, -0.006000248249927273, 6.00024699987525], [-0.00013024525896874472, -0.26049049622953185, 5.994592959235035], [-0.00025725598150557085, -0.5145119201343262, 5.978150004839209], [-0.00038380370136374085, -0.7676073387589769, 5.950947730292888], [-0.0005096606612218147, -1.019321237498564, 5.913035093548016], [-0.0006346003469703798, -1.2692005881720156, 5.864480328790114], [-0.0007583978953863012, -1.51679566437054, 5.805370823632144], [-0.0008808304988357499, -1.7616608508636138, 5.735812961836544], [-0.001001677806277634, -2.0033554456057794, 5.655931931848476], [-0.001120722319845717, -2.2414444529008146, 5.565871501484889], [-0.0012377497862956673, -2.475499366295765, 5.465793759184912], [-0.0013525495826125188, -2.7050989397958034, 5.355878822287266], [-0.0014649150950845407, -2.9298299460119046, 5.236324512859725], [-0.0015746440911612648, -3.1492879198768375, 5.107346001664054], [-0.0016815390834264122, -3.36307788659096, 4.969175420897232], [-0.0017854076850306508, -3.5708150724876733, 4.822061446405908], [-0.001886062955944484, -3.7721255975391403, 4.6662688501260305], [-0.0019833237394080903, -3.966647148255913, 4.502078023553143], [-0.002077014987972589, -4.154029629769405, 4.32978447310101], [-0.0021669680785459233, -4.333935795923605, 4.149698288256794], [-0.002253021115876346, -4.506041856242003, 3.962143583489998], [-0.002335019223927323, -4.670038058677346, 3.7674579149196004], [-0.002412814824619425, -4.825629247095368, 3.565991672789268], [-0.0024862679034375473, -4.9725353924892, 3.3581074508440283], [-0.0025552462614254244, -5.110492096968342, 3.1441793937434066], [-0.0026196257531138985, -5.239251069615169, 2.9245925236855164], [-0.002679290509954731, -5.358580573352519, 2.699742047454042], [-0.0027341331488578324, -5.4682658420181065, 2.4700326451352663], [-0.0027840549654565695, -5.56810946689512, 2.23587774178529], [-0.002828966111753344, -5.657931752003335, 1.9976987633582806], [-0.002868785757825698, -5.737571037511309, 1.7559243782349152], [-0.0029034422373019238, -5.80688399068757, 1.5109897257160847], [-0.0029328731763443505, -5.865745863867173, 1.2633356328704095], [-0.002957025605908168, -5.914050718969326, 1.0134078211450503], [-0.0029758560570737475, -5.951711618162016, 0.7616561041677508], [-0.002989330639280881, -5.978660780330477, 0.508533578183871], [-0.002997425101324139, -5.9948497030678904, 0.25449580658545684], [-0.003000124874999562, -6.000249249968765, -9.649137928722239e-16], [-0.002997425101324139, -5.9948497030678904, -0.2544958065854588], [-0.002989330639280881, -5.978660780330477, -0.5085335781838729], [-0.0029758560570737475, -5.951711618162016, -0.7616561041677528], [-0.0029570256059081677, -5.914050718969325, -1.0134078211450523], [-0.0029328731763443505, -5.865745863867172, -1.2633356328704113], [-0.0029034422373019238, -5.806883990687569, -1.5109897257160867], [-0.002868785757825698, -5.737571037511308, -1.7559243782349168], [-0.002828966111753344, -5.657931752003334, -1.9976987633582823], [-0.0027840549654565695, -5.568109466895119, -2.2358777417852918], [-0.002734133148857832, -5.4682658420181065, -2.470032645135268], [-0.002679290509954731, -5.358580573352519, -2.6997420474540426], [-0.002619625753113898, -5.239251069615168, -2.9245925236855164], [-0.0025552462614254244, -5.110492096968342, -3.144179393743407], [-0.0024862679034375473, -4.972535392489199, -3.3581074508440296], [-0.0024128148246194245, -4.8256292470953674, -3.5659916727892695], [-0.0023350192239273222, -4.670038058677344, -3.767457914919602], [-0.002253021115876345, -4.5060418562420015, -3.96214358349], [-0.002166968078545922, -4.333935795923602, -4.149698288256797], [-0.0020770149879725877, -4.1540296297694015, -4.3297844731010136], [-0.001983323739408088, -3.966647148255909, -4.502078023553146], [-0.0018860629559444815, -3.772125597539136, -4.666268850126034], [-0.0017854076850306482, -3.570815072487668, -4.822061446405913], [-0.0016815390834264091, -3.3630778865909536, -4.969175420897237], [-0.0015746440911612615, -3.149287919876831, -5.107346001664058], [-0.001464915095084537, -2.929829946011897, -5.2363245128597296], [-0.0013525495826125146, -2.7050989397957954, -5.355878822287271], [-0.001237749786295663, -2.475499366295756, -5.4657937591849155], [-0.0011207223198457124, -2.2414444529008057, -5.565871501484891], [-0.0010016778062776292, -2.00335544560577, -5.655931931848479], [-0.0008808304988357449, -1.7616608508636038, -5.735812961836547], [-0.0007583978953862959, -1.5167956643705294, -5.805370823632146], [-0.0006346003469703741, -1.2692005881720045, -5.864480328790116], [-0.000509660661221809, -1.0193212374985525, -5.913035093548018], [-0.00038380370136373483, -0.7676073387589649, -5.950947730292889], [-0.0002572559815055646, -0.5145119201343137, -5.978150004839211], [-0.00013024525896873827, -0.260490496229519, -5.994592959235035], [-3.00012437497215e-06, -0.006000248249914024, -6.00024699987525]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.006000245999834133, -6.000247999925736e-06, 6.00024699987525], [0.26049039854559375, -0.00026049048537614346, 5.994592959235035], [0.5145117271923522, -0.0005145118986970847, 5.978150004839209], [0.767607050906219, -0.0007676073067764644, 5.950947730292888], [1.0193208552530921, -0.001019321195028342, 5.913035093548016], [1.2692001122217853, -0.0012692005352905207, 5.864480328790114], [1.516795095572154, -0.0015167956011729467, 5.805370823632144], [1.7616601902407811, -0.001761660777463664, 5.735812961836544], [2.003354694347472, -0.0020033553621355764, 5.655931931848476], [2.2414436123591273, -0.0022414443595105854, 5.565871501484889], [2.4754984379834832, -0.0024754992631535913, 5.465793759184912], [2.70509792538368, -0.002705098827087318, 5.355878822287266], [2.9298288473256524, -0.0029298298239399567, 5.236324512859725], [3.149286738893843, -0.0031492877886611296, 5.107346001664054], [3.3630766254367264, -0.0033630777464676506, 4.969175420897232], [3.5708137334319936, -0.0035708149237089525, 4.822061446405908], [3.772124182992012, -0.0037721254403727767, 4.6662688501260305], [3.9666456607632017, -0.00396664698298477, 4.502078023553143], [4.154028072008262, -0.004154029456690933, 4.32978447310101], [4.333934170697648, -0.004333935615349308, 4.149698288256794], [4.506040166476272, -0.004506041668496873, 3.962143583489998], [4.670036307413038, -0.004670037864099281, 3.7674579149196004], [4.825627437484363, -0.004825629046034566, 3.565991672789268], [4.972533527788389, -0.004972535185307524, 3.3581074508440283], [5.110490180533766, -0.005110491884038671, 3.1441793937434066], [5.239249104895977, -0.005239250851320731, 2.9245925236855164], [5.3585785638847625, -0.0053585803500861935, 2.699742047454042], [5.468263791418374, -0.005468265614181723, 2.4700326451352663], [5.568107378854027, -0.005568109234898731, 2.23587774178529], [5.657929630278884, -0.005657931516264482, 1.9976987633582806], [5.737568885922125, -0.00573757079845427, 1.7559243782349152], [5.8068818131060285, -0.005806883748742593, 1.5109897257160847], [5.865743664212429, -0.005865745619469704, 1.2633356328704095], [5.914048501200261, -0.005914050472559226, 1.0134078211450503], [5.951709386270114, -0.005951711370182767, 0.7616561041677508], [5.978658538332638, -0.005978660531228386, 0.508533578183871], [5.9948474549992055, -0.005994849453291285, 0.25449580658545684], [6.00024699987525, -0.006000248999967186, -9.649137928722239e-16], [5.9948474549992055, -0.005994849453291285, -0.2544958065854588], [5.978658538332638, -0.005978660531228386, -0.5085335781838729], [5.951709386270114, -0.005951711370182767, -0.7616561041677528], [5.91404850120026, -0.005914050472559225, -1.0134078211450523], [5.865743664212428, -0.005865745619469704, -1.2633356328704113], [5.806881813106028, -0.005806883748742592, -1.5109897257160867], [5.7375688859221246, -0.005737570798454269, -1.7559243782349168], [5.6579296302788835, -0.005657931516264482, -1.9976987633582823], [5.568107378854026, -0.005568109234898731, -2.2358777417852918], [5.468263791418373, -0.005468265614181722, -2.470032645135268], [5.3585785638847625, -0.0053585803500861935, -2.6997420474540426], [5.239249104895976, -0.00523925085132073, -2.9245925236855164], [5.110490180533766, -0.005110491884038671, -3.144179393743407], [4.972533527788388, -0.004972535185307523, -3.3581074508440296], [4.825627437484362, -0.004825629046034565, -3.5659916727892695], [4.670036307413036, -0.004670037864099279, -3.767457914919602], [4.506040166476271, -0.004506041668496871, -3.96214358349], [4.3339341706976455, -0.004333935615349305, -4.149698288256797], [4.154028072008258, -0.004154029456690931, -4.3297844731010136], [3.9666456607631977, -0.003966646982984766, -4.502078023553146], [3.7721241829920076, -0.003772125440372772, -4.666268850126034], [3.5708137334319883, -0.0035708149237089473, -4.822061446405913], [3.3630766254367206, -0.0033630777464676445, -4.969175420897237], [3.1492867388938364, -0.003149287788661123, -5.107346001664058], [2.9298288473256444, -0.0029298298239399494, -5.2363245128597296], [2.7050979253836718, -0.0027050988270873096, -5.355878822287271], [2.475498437983475, -0.0024754992631535826, -5.4657937591849155], [2.2414436123591184, -0.0022414443595105762, -5.565871501484891], [2.0033546943474625, -0.002003355362135567, -5.655931931848479], [1.7616601902407711, -0.001761660777463654, -5.735812961836547], [1.5167950955721434, -0.0015167956011729361, -5.805370823632146], [1.2692001122217742, -0.0012692005352905095, -5.864480328790116], [1.0193208552530806, -0.0010193211950283304, -5.913035093548018], [0.767607050906207, -0.0007676073067764523, -5.950947730292889], [0.5145117271923397, -0.0005145118986970722, -5.978150004839211], [0.26049039854558087, -0.0002604904853761306, -5.994592959235035], [0.0060002459998208845, -6.000247999912487e-06, -6.00024699987525]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.007999994666667733, 7.999997333333687e-06, 7.9999960000003325], [0.34730606030827876, 0.00034730617607701183, 7.9924575932469955], [0.6859870534625753, 0.0006859872821250178, 7.970534567511966], [1.0234334248155912, 0.0010234337659602024, 7.93426637929138], [1.3590378470938271, 0.001359038300106624, 7.883718303134724], [1.6921963081162088, 0.0016921968721818703, 7.818981314165395], [2.022309197879627, 0.0020223098719829623, 7.7401719243460105], [2.348782387721553, 0.0023487831706493286, 7.647431972783193], [2.6710282996174786, 0.0026710291899606007, 7.540928370449199], [2.9884669636886825, 0.0029884679598447352, 7.42085279977986], [3.30052706201706, 0.0033005281621931873, 7.287421369689478], [3.6066469568883694, 0.0036066481591045026, 7.14087422662358], [3.906275701613302, 0.003906277003705723, 6.9814751223495355], [4.19887403210712, 0.004198875431732356, 6.809510939262936], [4.483915337443241, 0.004483916832082284, 6.625291174064056], [4.760886607634006, 0.004760888194596843, 6.4291473807336805], [5.029289356932811, 0.005029291033363266, 6.221432573810798], [5.2886405209958935, 0.0052886422838767716, 6.002520593046146], [5.538473326289086, 0.0055384751724476, 5.7728054305750724], [5.778338130174773, 0.005778340056288253, 5.53270052182065], [6.007803230167107, 0.0060078052327689835, 5.282638001403272], [6.226455640899013, 0.006226457716385056, 5.0230679253959085], [6.433901837402592, 0.006433903982037395, 4.754457461324802], [6.629768463365211, 0.006629770673288916, 4.477290047373397], [6.813703003086559, 0.006813705274321801, 4.192064522302779], [6.985374415927306, 0.006985376744386375, 3.899294227654536], [7.144473732107512, 0.007144476113599707, 3.5995060838518955], [7.290714608782466, 0.00729071703902164, 3.2932396418619443], [7.423833845395143, 0.007423836320007414, 2.9810461121257146], [7.543591857377788, 0.007543594371909412, 2.663487372503853], [7.649773107350026, 0.007649775657275415, 2.341134957023344], [7.742186493037494, 0.007742189073767357, 2.0145690272453107], [7.8206656912127706, 0.007820668298102375, 1.6843773281052081], [7.885069457039637, 0.007885072085397174, 1.3511541301046461], [7.935281878281889, 0.007935284523376905, 1.0154991597586775], [7.971212583919186, 0.00797121524099111, 0.6780165202234854], [7.99279690679449, 0.007992799571061191, 0.33931360404710714], [7.9999960000003325, 0.007999998666666732, -1.286498119741309e-15], [7.99279690679449, 0.007992799571061191, -0.3393136040471097], [7.971212583919186, 0.00797121524099111, -0.6780165202234879], [7.935281878281889, 0.007935284523376905, -1.0154991597586802], [7.885069457039636, 0.007885072085397172, -1.3511541301046488], [7.82066569121277, 0.007820668298102375, -1.6843773281052106], [7.742186493037493, 0.007742189073767356, -2.0145690272453134], [7.6497731073500255, 0.007649775657275414, -2.341134957023346], [7.543591857377787, 0.007543594371909411, -2.6634873725038553], [7.4238338453951425, 0.007423836320007413, -2.981046112125717], [7.290714608782465, 0.007290717039021639, -3.2932396418619465], [7.144473732107512, 0.007144476113599707, -3.599506083851896], [6.985374415927305, 0.006985376744386374, -3.8992942276545364], [6.813703003086559, 0.006813705274321801, -4.19206452230278], [6.6297684633652105, 0.006629770673288915, -4.4772900473733985], [6.4339018374025905, 0.006433903982037394, -4.754457461324804], [6.22645564089901, 0.006226457716385053, -5.023067925395911], [6.007803230167104, 0.006007805232768981, -5.282638001403274], [5.778338130174769, 0.005778340056288249, -5.5327005218206535], [5.538473326289082, 0.0055384751724475954, -5.772805430575077], [5.288640520995888, 0.005288642283876766, -6.002520593046151], [5.0292893569328045, 0.00502929103336326, -6.2214325738108025], [4.760886607633999, 0.004760888194596836, -6.429147380733686], [4.483915337443233, 0.0044839168320822765, -6.6252911740640625], [4.198874032107111, 0.004198875431732347, -6.809510939262942], [3.906275701613292, 0.0039062770037057125, -6.981475122349541], [3.6066469568883583, 0.0036066481591044914, -7.140874226623585], [3.3005270620170486, 0.0033005281621931756, -7.287421369689484], [2.9884669636886705, 0.0029884679598447235, -7.420852799779865], [2.6710282996174657, 0.0026710291899605877, -7.540928370449204], [2.3487823877215397, 0.002348783170649315, -7.647431972783197], [2.0223091978796126, 0.002022309871982948, -7.740171924346014], [1.692196308116194, 0.0016921968721818554, -7.818981314165398], [1.3590378470938118, 0.0013590383001066087, -7.883718303134727], [1.0234334248155752, 0.0010234337659601866, -7.9342663792913815], [0.6859870534625586, 0.0006859872821250012, -7.970534567511968], [0.3473060603082616, 0.0003473061760769947, -7.9924575932469955], [0.007999994666650068, 7.999997333316023e-06, -7.9999960000003325]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.9999991666640226e-06, 0.00799999766666692, 7.9999960000003325], [-0.0001736531097450267, 0.34730619054810297, 7.9924575932469955], [-0.0003429936839364864, 0.6859873107078222, 7.970534567511966], [-0.000511716946944372, 1.0234338086032775, 7.93426637929138], [-0.0006795192349927548, 1.3590383567332216, 7.883718303134724], [-0.0008460985418526783, 1.6921969426900756, 7.818981314165395], [-0.0010111550623851772, 2.0223099562458766, 7.7401719243460105], [-0.0011743917321228332, 2.348783268515297, 7.647431972783193], [-0.0013355147619187385, 2.6710293012534874, 7.540928370449199], [-0.0014942341667006237, 2.9884680843642375, 7.42085279977986], [-0.0016502642873785088, 3.3005282997151983, 7.287421369689478], [-0.0018033243049665646, 3.606648309381514, 7.14087422662358], [-0.0019531387459938783, 3.90627716646727, 6.9814751223495355], [-0.0020994379782944997, 4.198875606685505, 6.809510939262936], [-0.0022419586962844564, 4.483917018912159, 6.625291174064056], [-0.002380444394852354, 4.760888392967191, 6.4291473807336805], [-0.0025146458310106538, 5.029291242917066, 6.221432573810798], [-0.002644321472476774, 5.288642504236874, 6.002520593046146], [-0.0027692379323766606, 5.538475403217406, 5.7728054305750724], [-0.0028891703892884625, 5.77834029705243, 5.53270052182065], [-0.0030039029918703256, 6.007805483094209, 5.282638001403272], [-0.003113229247344069, 6.226457975820802, 5.0230679253959085], [-0.003216952393135562, 6.433904250116737, 4.754457461324802], [-0.0033148857510029257, 6.6297709495293695, 4.477290047373397], [-0.0034068530630152194, 6.8137055582261965, 4.192064522302779], [-0.0034926888087769164, 6.985377035443749, 3.899294227654536], [-0.0035722385033272403, 7.144476411286222, 3.5995060838518955], [-0.003645358975178216, 7.290717342801526, 3.2932396418619443], [-0.003711918623991014, 7.4238366293339375, 2.9810461121257146], [-0.003771797657426851, 7.5435946862258545, 2.663487372503853], [-0.003824888306746148, 7.649775976016078, 2.341134957023344], [-0.0038710950207679266, 7.742189396358579, 2.0145690272453107], [-0.003910334637840362, 7.820668623963566, 1.6843773281052081], [-0.003942536535512976, 7.885072413941854, 1.3511541301046461], [-0.003967642757641103, 7.935284854013771, 1.0154991597586775], [-0.003985608118693863, 7.9712155731250895, 0.6780165202234854], [-0.003996400285077917, 7.992799904094517, 0.33931360404710714], [-0.003999999833330628, 7.99999900000002, -1.286498119741309e-15], [-0.003996400285077917, 7.992799904094517, -0.3393136040471097], [-0.003985608118693863, 7.9712155731250895, -0.6780165202234879], [-0.003967642757641103, 7.935284854013771, -1.0154991597586802], [-0.003942536535512975, 7.885072413941853, -1.3511541301046488], [-0.003910334637840362, 7.820668623963565, -1.6843773281052106], [-0.003871095020767926, 7.742189396358578, -2.0145690272453134], [-0.0038248883067461474, 7.649775976016077, -2.341134957023346], [-0.0037717976574268507, 7.543594686225854, -2.6634873725038553], [-0.0037119186239910136, 7.423836629333937, -2.981046112125717], [-0.0036453589751782155, 7.290717342801525, -3.2932396418619465], [-0.0035722385033272403, 7.144476411286222, -3.599506083851896], [-0.003492688808776916, 6.985377035443748, -3.8992942276545364], [-0.0034068530630152194, 6.8137055582261965, -4.19206452230278], [-0.0033148857510029253, 6.629770949529369, -4.4772900473733985], [-0.003216952393135561, 6.433904250116735, -4.754457461324804], [-0.003113229247344068, 6.226457975820799, -5.023067925395911], [-0.0030039029918703243, 6.007805483094207, -5.282638001403274], [-0.0028891703892884608, 5.778340297052426, -5.5327005218206535], [-0.0027692379323766584, 5.538475403217402, -5.772805430575077], [-0.002644321472476771, 5.2886425042368685, -6.002520593046151], [-0.0025146458310106507, 5.0292912429170595, -6.2214325738108025], [-0.0023804443948523507, 4.760888392967184, -6.429147380733686], [-0.0022419586962844525, 4.483917018912151, -6.6252911740640625], [-0.002099437978294495, 4.198875606685496, -6.809510939262942], [-0.001953138745993873, 3.9062771664672598, -6.981475122349541], [-0.001803324304966559, 3.606648309381503, -7.140874226623585], [-0.001650264287378503, 3.300528299715187, -7.287421369689484], [-0.0014942341667006176, 2.9884680843642255, -7.420852799779865], [-0.0013355147619187322, 2.6710293012534745, -7.540928370449204], [-0.0011743917321228264, 2.348783268515284, -7.647431972783197], [-0.00101115506238517, 2.0223099562458624, -7.740171924346014], [-0.0008460985418526708, 1.6921969426900607, -7.818981314165398], [-0.0006795192349927472, 1.3590383567332063, -7.883718303134727], [-0.000511716946944364, 1.0234338086032615, -7.9342663792913815], [-0.0003429936839364781, 0.6859873107078055, -7.970534567511968], [-0.0001736531097450181, 0.3473061905480858, -7.9924575932469955], [-3.9999991666551905e-06, 0.007999997666649255, -7.9999960000003325]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.007999998666666732, 4.532430362713234e-18, 7.9999960000003325], [-0.34730623396138127, 1.9676769779038353e-16, 7.9924575932469955], [-0.6859873964562448, 3.886488277919121e-16, 7.970534567511966], [-1.0234339365325167, 5.798304776597967e-16, 7.93426637929138], [-1.3590385266130338, 7.699685635928342e-16, 7.883718303134724], [-1.6921971542147154, 9.587208799692687e-16, 7.818981314165395], [-2.022310209034647, 1.145747715239641e-15, 7.7401719243460105], [-2.348783562113236, 1.330712463330872e-15, 7.647431972783193], [-2.6710296351321845, 1.513282229461188e-15, 7.540928370449199], [-2.988468457922787, 1.6931284292755623e-15, 7.42085279977986], [-3.3005287122812788, 1.869927380223358e-15, 7.287421369689478], [-3.6066487602125994, 2.0433608841138343e-15, 7.14087422662358], [-3.9062776547519666, 2.213116799801039e-15, 6.9814751223495355], [-4.19887613154501, 2.3788896049673928e-15, 6.809510939262936], [-4.483917579401844, 2.540380945994872e-15, 6.625291174064056], [-4.760888988078301, 2.6973001749341544e-15, 6.4291473807336805], [-5.029291871578536, 2.8493648726053004e-15, 6.221432573810798], [-5.288643165317255, 2.9963013568885046e-15, 6.002520593046146], [-5.538476095526903, 3.1378451752901178e-15, 5.7728054305750724], [-5.778341019345041, 3.2737415808974207e-15, 5.53270052182065], [-6.007806234069973, 3.4037459908655454e-15, 5.282638001403272], [-6.22645875412813, 3.5276244266113694e-15, 5.0230679253959085], [-6.4339050543548515, 3.6451539349221345e-15, 4.754457461324802], [-6.6297717782508245, 3.756122989220886e-15, 4.477290047373397], [-6.8137064099394795, 3.860331870266549e-15, 4.192064522302779], [-6.985377908615969, 3.957593025603467e-15, 3.899294227654536], [-7.144477304345866, 4.0477314071134686e-15, 3.5995060838518955], [-7.2907182541412885, 4.130584786062963e-15, 3.2932396418619443], [-7.423837557313613, 4.206004045078023e-15, 2.9810461121257146], [-7.543595629175288, 4.273853446521987e-15, 2.663487372503853], [-7.649776932238174, 4.3340108767925604e-15, 2.341134957023344], [-7.7421903641323535, 4.386368066098722e-15, 2.0145690272453107], [-7.820669601547245, 4.4308307833219044e-15, 1.6843773281052081], [-7.885073399576008, 4.467319005610726e-15, 1.3511541301046461], [-7.935285845924481, 4.49576706240406e-15, 1.0154991597586775], [-7.971216569527139, 4.5161237536232096e-15, 0.6780165202234854], [-7.992800903194609, 4.528352441820496e-15, 0.33931360404710714], [-7.999999999999999, 4.532431118118383e-15, -1.286498119741309e-15], [-7.992800903194609, 4.528352441820496e-15, -0.3393136040471097], [-7.971216569527139, 4.5161237536232096e-15, -0.6780165202234879], [-7.935285845924481, 4.49576706240406e-15, -1.0154991597586802], [-7.885073399576007, 4.4673190056107254e-15, -1.3511541301046488], [-7.8206696015472446, 4.430830783321904e-15, -1.6843773281052106], [-7.742190364132353, 4.3863680660987214e-15, -2.0145690272453134], [-7.649776932238173, 4.33401087679256e-15, -2.341134957023346], [-7.543595629175287, 4.273853446521987e-15, -2.6634873725038553], [-7.423837557313612, 4.2060040450780225e-15, -2.981046112125717], [-7.290718254141288, 4.130584786062963e-15, -3.2932396418619465], [-7.144477304345866, 4.0477314071134686e-15, -3.599506083851896], [-6.985377908615968, 3.957593025603466e-15, -3.8992942276545364], [-6.8137064099394795, 3.860331870266549e-15, -4.19206452230278], [-6.629771778250824, 3.756122989220886e-15, -4.4772900473733985], [-6.43390505435485, 3.645153934922134e-15, -4.754457461324804], [-6.226458754128127, 3.5276244266113682e-15, -5.023067925395911], [-6.00780623406997, 3.4037459908655438e-15, -5.282638001403274], [-5.778341019345038, 3.2737415808974188e-15, -5.5327005218206535], [-5.538476095526899, 3.137845175290115e-15, -5.772805430575077], [-5.28864316531725, 2.9963013568885014e-15, -6.002520593046151], [-5.02929187157853, 2.849364872605297e-15, -6.2214325738108025], [-4.760888988078294, 2.6973001749341505e-15, -6.429147380733686], [-4.483917579401836, 2.5403809459948675e-15, -6.6252911740640625], [-4.198876131545001, 2.378889604967388e-15, -6.809510939262942], [-3.9062776547519564, 2.2131167998010332e-15, -6.981475122349541], [-3.6066487602125883, 2.043360884113828e-15, -7.140874226623585], [-3.300528712281267, 1.8699273802233514e-15, -7.287421369689484], [-2.988468457922775, 1.6931284292755556e-15, -7.420852799779865], [-2.6710296351321716, 1.5132822294611808e-15, -7.540928370449204], [-2.3487835621132227, 1.3307124633308642e-15, -7.647431972783197], [-2.0223102090346328, 1.1457477152396328e-15, -7.740171924346014], [-1.6921971542147005, 9.587208799692602e-16, -7.818981314165398], [-1.3590385266130185, 7.699685635928255e-16, -7.883718303134727], [-1.0234339365325007, 5.798304776597876e-16, -7.9342663792913815], [-0.6859873964562282, 3.8864882779190267e-16, -7.970534567511968], [-0.3473062339613641, 1.9676769779037382e-16, -7.9924575932469955], [-0.007999998666649067, 4.5324303627032264e-18, -7.9999960000003325]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-3.9999991666730875e-06, -0.00799999766666692, 7.9999960000003325], [-0.00017365310974542023, -0.34730619054810297, 7.9924575932469955], [-0.00034299368393726374, -0.6859873107078222, 7.970534567511966], [-0.0005117169469455317, -1.0234338086032775, 7.93426637929138], [-0.0006795192349942948, -1.3590383567332216, 7.883718303134724], [-0.0008460985418545957, -1.6921969426900756, 7.818981314165395], [-0.0010111550623874686, -2.0223099562458766, 7.7401719243460105], [-0.0011743917321254945, -2.348783268515297, 7.647431972783193], [-0.0013355147619217651, -2.6710293012534874, 7.540928370449199], [-0.0014942341667040099, -2.9884680843642375, 7.42085279977986], [-0.0016502642873822485, -3.3005282997151983, 7.287421369689478], [-0.0018033243049706512, -3.606648309381514, 7.14087422662358], [-0.0019531387459983045, -3.90627716646727, 6.9814751223495355], [-0.002099437978299257, -4.198875606685505, 6.809510939262936], [-0.0022419586962895374, -4.483917018912159, 6.625291174064056], [-0.0023804443948577487, -4.760888392967191, 6.4291473807336805], [-0.0025146458310163528, -5.029291242917066, 6.221432573810798], [-0.0026443214724827663, -5.288642504236874, 6.002520593046146], [-0.002769237932382936, -5.538475403217406, 5.7728054305750724], [-0.0028891703892950102, -5.77834029705243, 5.53270052182065], [-0.003003902991877133, -6.007805483094209, 5.282638001403272], [-0.0031132292473511243, -6.226457975820802, 5.0230679253959085], [-0.0032169523931428524, -6.433904250116737, 4.754457461324802], [-0.003314885751010438, -6.6297709495293695, 4.477290047373397], [-0.0034068530630229398, -6.8137055582261965, 4.192064522302779], [-0.0034926888087848315, -6.985377035443749, 3.899294227654536], [-0.003572238503335336, -7.144476411286222, 3.5995060838518955], [-0.0036453589751864767, -7.290717342801526, 3.2932396418619443], [-0.003711918623999426, -7.4238366293339375, 2.9810461121257146], [-0.003771797657435399, -7.5435946862258545, 2.663487372503853], [-0.003824888306754816, -7.649775976016078, 2.341134957023344], [-0.003871095020776699, -7.742189396358579, 2.0145690272453107], [-0.003910334637849224, -7.820668623963566, 1.6843773281052081], [-0.003942536535521911, -7.885072413941854, 1.3511541301046461], [-0.003967642757650094, -7.935284854013771, 1.0154991597586775], [-0.003985608118702895, -7.9712155731250895, 0.6780165202234854], [-0.003996400285086973, -7.992799904094517, 0.33931360404710714], [-0.003999999833339693, -7.99999900000002, -1.286498119741309e-15], [-0.003996400285086973, -7.992799904094517, -0.3393136040471097], [-0.003985608118702895, -7.9712155731250895, -0.6780165202234879], [-0.003967642757650094, -7.935284854013771, -1.0154991597586802], [-0.00394253653552191, -7.885072413941853, -1.3511541301046488], [-0.003910334637849223, -7.820668623963565, -1.6843773281052106], [-0.0038710950207766987, -7.742189396358578, -2.0145690272453134], [-0.0038248883067548154, -7.649775976016077, -2.341134957023346], [-0.0037717976574353986, -7.543594686225854, -2.6634873725038553], [-0.0037119186239994257, -7.423836629333937, -2.981046112125717], [-0.0036453589751864763, -7.290717342801525, -3.2932396418619465], [-0.003572238503335336, -7.144476411286222, -3.599506083851896], [-0.003492688808784831, -6.985377035443748, -3.8992942276545364], [-0.0034068530630229398, -6.8137055582261965, -4.19206452230278], [-0.0033148857510104375, -6.629770949529369, -4.4772900473733985], [-0.0032169523931428515, -6.433904250116735, -4.754457461324804], [-0.003113229247351123, -6.226457975820799, -5.023067925395911], [-0.0030039029918771313, -6.007805483094207, -5.282638001403274], [-0.0028891703892950085, -5.778340297052426, -5.5327005218206535], [-0.002769237932382934, -5.538475403217402, -5.772805430575077], [-0.0026443214724827637, -5.2886425042368685, -6.002520593046151], [-0.0025146458310163497, -5.0292912429170595, -6.2214325738108025], [-0.0023804443948577452, -4.760888392967184, -6.429147380733686], [-0.0022419586962895335, -4.483917018912151, -6.6252911740640625], [-0.002099437978299253, -4.198875606685496, -6.809510939262942], [-0.0019531387459982993, -3.9062771664672598, -6.981475122349541], [-0.0018033243049706458, -3.606648309381503, -7.140874226623585], [-0.0016502642873822428, -3.300528299715187, -7.287421369689484], [-0.0014942341667040038, -2.9884680843642255, -7.420852799779865], [-0.0013355147619217586, -2.6710293012534745, -7.540928370449204], [-0.001174391732125488, -2.348783268515284, -7.647431972783197], [-0.0010111550623874616, -2.0223099562458624, -7.740171924346014], [-0.0008460985418545882, -1.6921969426900607, -7.818981314165398], [-0.0006795192349942871, -1.3590383567332063, -7.883718303134727], [-0.0005117169469455237, -1.0234338086032615, -7.9342663792913815], [-0.0003429936839372554, -0.6859873107078055, -7.970534567511968], [-0.00017365310974541164, -0.3473061905480858, -7.9924575932469955], [-3.9999991666642555e-06, -0.007999997666649255, -7.9999960000003325]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.007999994666667733, -7.999997333345425e-06, 7.9999960000003325], [0.34730606030827876, -0.00034730617607752135, 7.9924575932469955], [0.6859870534625753, -0.0006859872821260242, 7.970534567511966], [1.0234334248155912, -0.001023433765961704, 7.93426637929138], [1.3590378470938271, -0.001359038300108618, 7.883718303134724], [1.6921963081162088, -0.001692196872184353, 7.818981314165395], [2.022309197879627, -0.0020223098719859296, 7.7401719243460105], [2.348782387721553, -0.0023487831706527746, 7.647431972783193], [2.6710282996174786, -0.0026710291899645195, 7.540928370449199], [2.9884669636886825, -0.0029884679598491198, 7.42085279977986], [3.30052706201706, -0.00330052816219803, 7.287421369689478], [3.6066469568883694, -0.003606648159109794, 7.14087422662358], [3.906275701613302, -0.003906277003711454, 6.9814751223495355], [4.19887403210712, -0.004198875431738517, 6.809510939262936], [4.483915337443241, -0.004483916832088863, 6.625291174064056], [4.760886607634006, -0.004760888194603828, 6.4291473807336805], [5.029289356932811, -0.005029291033370645, 6.221432573810798], [5.2886405209958935, -0.005288642283884531, 6.002520593046146], [5.538473326289086, -0.005538475172455725, 5.7728054305750724], [5.778338130174773, -0.00577834005629673, 5.53270052182065], [6.007803230167107, -0.006007805232777798, 5.282638001403272], [6.226455640899013, -0.006226457716394191, 5.0230679253959085], [6.433901837402592, -0.006433903982046835, 4.754457461324802], [6.629768463365211, -0.0066297706732986435, 4.477290047373397], [6.813703003086559, -0.0068137052743317975, 4.192064522302779], [6.985374415927306, -0.006985376744396624, 3.899294227654536], [7.144473732107512, -0.007144476113610189, 3.5995060838518955], [7.290714608782466, -0.007290717039032336, 3.2932396418619443], [7.423833845395143, -0.007423836320018307, 2.9810461121257146], [7.543591857377788, -0.0075435943719204795, 2.663487372503853], [7.649773107350026, -0.0076497756572866385, 2.341134957023344], [7.742186493037494, -0.007742189073778716, 2.0145690272453107], [7.8206656912127706, -0.00782066829811385, 1.6843773281052081], [7.885069457039637, -0.007885072085408742, 1.3511541301046461], [7.935281878281889, -0.007935284523388547, 1.0154991597586775], [7.971212583919186, -0.007971215241002805, 0.6780165202234854], [7.99279690679449, -0.007992799571072918, 0.33931360404710714], [7.9999960000003325, -0.007999998666678469, -1.286498119741309e-15], [7.99279690679449, -0.007992799571072918, -0.3393136040471097], [7.971212583919186, -0.007971215241002805, -0.6780165202234879], [7.935281878281889, -0.007935284523388547, -1.0154991597586802], [7.885069457039636, -0.00788507208540874, -1.3511541301046488], [7.82066569121277, -0.007820668298113849, -1.6843773281052106], [7.742186493037493, -0.007742189073778715, -2.0145690272453134], [7.6497731073500255, -0.007649775657286638, -2.341134957023346], [7.543591857377787, -0.007543594371920479, -2.6634873725038553], [7.4238338453951425, -0.007423836320018306, -2.981046112125717], [7.290714608782465, -0.007290717039032335, -3.2932396418619465], [7.144473732107512, -0.007144476113610189, -3.599506083851896], [6.985374415927305, -0.006985376744396623, -3.8992942276545364], [6.813703003086559, -0.0068137052743317975, -4.19206452230278], [6.6297684633652105, -0.006629770673298643, -4.4772900473733985], [6.4339018374025905, -0.006433903982046833, -4.754457461324804], [6.22645564089901, -0.006226457716394188, -5.023067925395911], [6.007803230167104, -0.006007805232777795, -5.282638001403274], [5.778338130174769, -0.005778340056296727, -5.5327005218206535], [5.538473326289082, -0.005538475172455721, -5.772805430575077], [5.288640520995888, -0.005288642283884526, -6.002520593046151], [5.0292893569328045, -0.005029291033370639, -6.2214325738108025], [4.760886607633999, -0.0047608881946038205, -6.429147380733686], [4.483915337443233, -0.004483916832088855, -6.6252911740640625], [4.198874032107111, -0.004198875431738508, -6.809510939262942], [3.906275701613292, -0.003906277003711444, -6.981475122349541], [3.6066469568883583, -0.0036066481591097827, -7.140874226623585], [3.3005270620170486, -0.003300528162198018, -7.287421369689484], [2.9884669636886705, -0.002988467959849108, -7.420852799779865], [2.6710282996174657, -0.002671029189964507, -7.540928370449204], [2.3487823877215397, -0.002348783170652761, -7.647431972783197], [2.0223091978796126, -0.0020223098719859152, -7.740171924346014], [1.692196308116194, -0.0016921968721843382, -7.818981314165398], [1.3590378470938118, -0.0013590383001086026, -7.883718303134727], [1.0234334248155752, -0.001023433765961688, -7.9342663792913815], [0.6859870534625586, -0.0006859872821260076, -7.970534567511968], [0.3473060603082616, -0.0003473061760775042, -7.9924575932469955], [0.007999994666650068, -7.99999733332776e-06, -7.9999960000003325]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.999993333334667e-07, 9.999996666667112e-10, 0.0009999995000000417], [9.963143369977144e-07, 8.577533771146516e-08, 0.0009999995000000417], [9.854554395168197e-07, 1.6993305562315624e-07, 0.0009999995000000417], [9.675008297255515e-07, 2.528671808421977e-07, 0.0009999995000000417], [9.425797887061533e-07, 3.339805512142506e-07, 0.0009999995000000417], [9.108717589077281e-07, 4.1268911482016674e-07, 0.0009999995000000417], [8.726050520817326e-07, 4.884261354065198e-07, 0.0009999995000000417], [8.280552053370142e-07, 5.606462731357325e-07, 0.0009999995000000417], [7.775429971515191e-07, 6.288295112726056e-07, 0.0009999995000000417], [7.214321376262555e-07, 6.924849005333782e-07, 0.0009999995000000417], [6.601266496127026e-07, 7.511540941363626e-07, 0.0009999995000000417], [5.940679595706954e-07, 8.04414648100233e-07, 0.0009999995000000417], [5.237317191038905e-07, 8.518830630263725e-07, 0.0009999995000000417], [4.4962438005915215e-07, 8.932175454631051e-07, 0.0009999995000000417], [3.7227954785064977e-07, 9.281204689687794e-07, 0.0009999995000000417], [2.9225413926633534e-07, 9.563405171529671e-07, 0.0009999995000000417], [2.1012437242228405e-07, 9.776744932649374e-07, 0.0009999995000000417], [1.2648161773898822e-07, 9.919687832995752e-07, 0.0009999995000000417], [4.192813981439945e-08, 9.991204620857365e-07, 0.0009999995000000417], [-4.2927239145895176e-08, 9.990780343927207e-07, 0.0009999995000000417], [-1.274735231161543e-07, 9.918418057185663e-07, 0.0009999995000000417], [-2.1110194169042405e-07, 9.774638800903306e-07, 0.0009999995000000417], [-2.93210333497039e-07, 9.560477848921916e-07, 0.0009999995000000417], [-3.7320748202517166e-07, 9.277477254227801e-07, 0.0009999995000000417], [-4.505173726435728e-07, 8.927674745492487e-07, 0.0009999995000000417], [-5.245833401590972e-07, 8.513589054530622e-07, 0.0009999995000000417], [-5.948720770507704e-07, 8.038201780323839e-07, 0.0009999995000000417], [-6.608774735183485e-07, 7.504935920197559e-07, 0.0009999995000000417], [-7.221242616953353e-07, 6.917631222735698e-07, 0.0009999995000000417], [-7.781714377865202e-07, 6.280516539903156e-07, 0.0009999995000000417], [-8.286154374891405e-07, 5.598179377452918e-07, 0.0009999995000000417], [-8.73093041833245e-07, 4.87553286286825e-07, 0.0009999995000000417], [-9.112839925179252e-07, 4.1177803686853077e-07, 0.0009999995000000417], [-9.429132979118489e-07, 3.3303780459237927e-07, 0.0009999995000000417], [-9.677532131138746e-07, 2.518995537401421e-07, 0.0009999995000000417], [-9.856248798164422e-07, 1.6894751538136083e-07, 0.0009999995000000417], [-9.963996141640031e-07, 8.477898065285393e-08, 0.0009999995000000417], [-9.999998333333416e-07, -7.657136121664397e-22, 0.0009999995000000417], [-9.96399614164003e-07, -8.477898065285546e-08, 0.0009999995000000417], [-9.85624879816442e-07, -1.6894751538136234e-07, 0.0009999995000000417], [-9.677532131138743e-07, -2.5189955374014363e-07, 0.0009999995000000417], [-9.429132979118485e-07, -3.3303780459238075e-07, 0.0009999995000000417], [-9.112839925179246e-07, -4.117780368685322e-07, 0.0009999995000000417], [-8.730930418332442e-07, -4.875532862868264e-07, 0.0009999995000000417], [-8.286154374891397e-07, -5.59817937745293e-07, 0.0009999995000000417], [-7.781714377865192e-07, -6.280516539903169e-07, 0.0009999995000000417], [-7.221242616953344e-07, -6.917631222735709e-07, 0.0009999995000000417], [-6.608774735183473e-07, -7.504935920197568e-07, 0.0009999995000000417], [-5.948720770507692e-07, -8.038201780323848e-07, 0.0009999995000000417], [-5.24583340159096e-07, -8.513589054530629e-07, 0.0009999995000000417], [-4.5051737264357143e-07, -8.927674745492493e-07, 0.0009999995000000417], [-3.732074820251701e-07, -9.277477254227808e-07, 0.0009999995000000417], [-2.9321033349703714e-07, -9.560477848921922e-07, 0.0009999995000000417], [-2.111019416904219e-07, -9.77463880090331e-07, 0.0009999995000000417], [-1.274735231161519e-07, -9.918418057185667e-07, 0.0009999995000000417], [-4.292723914589254e-08, -9.990780343927207e-07, 0.0009999995000000417], [4.192813981440232e-08, -9.991204620857362e-07, 0.0009999995000000417], [1.264816177389913e-07, -9.91968783299575e-07, 0.0009999995000000417], [2.1012437242228728e-07, -9.776744932649368e-07, 0.0009999995000000417], [2.922541392663387e-07, -9.56340517152966e-07, 0.0009999995000000417], [3.7227954785065316e-07, -9.28120468968778e-07, 0.0009999995000000417], [4.496243800591557e-07, -8.932175454631034e-07, 0.0009999995000000417], [5.237317191038941e-07, -8.518830630263704e-07, 0.0009999995000000417], [5.940679595706989e-07, -8.044146481002304e-07, 0.0009999995000000417], [6.601266496127061e-07, -7.511540941363595e-07, 0.0009999995000000417], [7.21432137626259e-07, -6.924849005333746e-07, 0.0009999995000000417], [7.775429971515224e-07, -6.288295112726016e-07, 0.0009999995000000417], [8.280552053370172e-07, -5.60646273135728e-07, 0.0009999995000000417], [8.726050520817353e-07, -4.884261354065148e-07, 0.0009999995000000417], [9.108717589077306e-07, -4.126891148201615e-07, 0.0009999995000000417], [9.425797887061552e-07, -3.339805512142451e-07, 0.0009999995000000417], [9.67500829725553e-07, -2.528671808421919e-07, 0.0009999995000000417], [9.85455439516821e-07, -1.6993305562315015e-07, 0.0009999995000000417], [9.96314336997715e-07, -8.57753377114588e-08, 0.0009999995000000417], [9.999993333334667e-07, -9.999996666601847e-10, 0.0009999995000000417]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0007074598924439701, 7.074601282640285e-07, 0.0007067531394223398], [0.0007048529035946302, 6.068265164679135e-05, 0.0007067531394223398], [0.0006971706640292442, 0.00012022090140108486, 0.0007067531394223398], [0.0006844684892493253, 0.0001788935078235458, 0.0007067531394223398], [0.0006668378404963867, 0.0002362780023590483, 0.0007067531394223398], [0.0006444056661908027, 0.00029196119142422774, 0.0007067531394223398], [0.0006173334878473837, 0.0003455421315828954, 0.0007067531394223398], [0.0005858162370494735, 0.0003966350165150094, 0.0007067531394223398], [0.0005500808518558703, 0.0004448719549917558, 0.0007067531394223398], [0.0005103846427470546, 0.0004899056198540983, 0.0007067531394223398], [0.0004670134398766318, 0.0005314117489209873, 0.0007067531394223398], [0.00042027953496859353, 0.0005690914798195889, 0.0007067531394223398], [0.0003705194326796396, 0.0006026735019257315, 0.0007067531394223398], [0.00031809142761774384, 0.000631916009919651, 0.0007067531394223398], [0.0002633730244634917, 0.0006566084448905755, 0.0007067531394223398], [0.00020675821977045225, 0.0006765730104534323, 0.0007067531394223398], [0.00014865466501681596, 0.0006916659529609687, 0.0007067531394223398], [8.94807313355729e-05, 0.0007017785965931974, 0.0007067531394223398], [2.966249705846486e-05, 0.0007068381258710677, 0.0007067531394223398], [-3.036932023528102e-05, 0.0007068081099599196, 0.0007067531394223398], [-9.01824650748398e-05, 0.0007016887649875064, 0.0007067531394223398], [-0.00014934625652717173, 0.0006915169524877803, 0.0007067531394223398], [-0.00020743468928904099, 0.0006763659139816449, 0.0007067531394223398], [-0.00026402950111244504, 0.0006563447436058128, 0.0007067531394223398], [-0.0003187231844766425, 0.0006315976025870704, 0.0007067531394223398], [-0.0003711219208214179, 0.0006023026812180799, 0.0007067531394223398], [-0.0004208484162138138, 0.0005686709158089512, 0.0007067531394223398], [-0.00046754461803028317, 0.0005309444698530944, 0.0007067531394223398], [-0.0005108742930929572, 0.0004893949903436262, 0.0007067531394223398], [-0.0005505254486963136, 0.00044432165179562145, 0.0007067531394223398], [-0.0005862125790917884, 0.0003960490020581045, 0.0007067531394223398], [-0.000617678721254658, 0.00034492462542688566, 0.0007067531394223398], [-0.0006446973051307605, 0.0002913166398848543, 0.0007067531394223398], [-0.0006670737850404735, 0.00023561104649070014, 0.0007067531394223398], [-0.0006846470404931171, 0.0001782089500016279, 0.0007067531394223398], [-0.0006972905363253056, 0.00011952367074280474, 0.0007067531394223398], [-0.0007049132338097408, 5.997776851934848e-05, 0.0007067531394223398], [-0.0007074602461740637, -5.417120308474348e-19, 0.0007067531394223398], [-0.0007049132338097407, -5.9977768519349564e-05, 0.0007067531394223398], [-0.0006972905363253055, -0.00011952367074280581, 0.0007067531394223398], [-0.0006846470404931169, -0.00017820895000162897, 0.0007067531394223398], [-0.0006670737850404732, -0.00023561104649070117, 0.0007067531394223398], [-0.00064469730513076, -0.0002913166398848553, 0.0007067531394223398], [-0.0006176787212546574, -0.00034492462542688664, 0.0007067531394223398], [-0.0005862125790917879, -0.00039604900205810536, 0.0007067531394223398], [-0.0005505254486963128, -0.0004443216517956224, 0.0007067531394223398], [-0.0005108742930929565, -0.0004893949903436271, 0.0007067531394223398], [-0.0004675446180302823, -0.000530944469853095, 0.0007067531394223398], [-0.0004208484162138129, -0.0005686709158089519, 0.0007067531394223398], [-0.00037112192082141703, -0.0006023026812180804, 0.0007067531394223398], [-0.0003187231844766415, -0.0006315976025870709, 0.0007067531394223398], [-0.0002640295011124439, -0.0006563447436058132, 0.0007067531394223398], [-0.00020743468928903968, -0.0006763659139816452, 0.0007067531394223398], [-0.0001493462565271702, -0.0006915169524877806, 0.0007067531394223398], [-9.01824650748381e-05, -0.0007016887649875067, 0.0007067531394223398], [-3.0369320235279158e-05, -0.0007068081099599196, 0.0007067531394223398], [2.9662497058466884e-05, -0.0007068381258710676, 0.0007067531394223398], [8.948073133557507e-05, -0.0007017785965931973, 0.0007067531394223398], [0.00014865466501681824, -0.0006916659529609682, 0.0007067531394223398], [0.00020675821977045463, -0.0006765730104534315, 0.0007067531394223398], [0.00026337302446349407, -0.0006566084448905745, 0.0007067531394223398], [0.00031809142761774633, -0.0006319160099196497, 0.0007067531394223398], [0.0003705194326796422, -0.00060267350192573, 0.0007067531394223398], [0.00042027953496859597, -0.000569091479819587, 0.0007067531394223398], [0.00046701343987663437, -0.0005314117489209851, 0.0007067531394223398], [0.000510384642747057, -0.0004899056198540958, 0.0007067531394223398], [0.0005500808518558727, -0.00044487195499175294, 0.0007067531394223398], [0.0005858162370494757, -0.00039663501651500627, 0.0007067531394223398], [0.0006173334878473856, -0.00034554213158289194, 0.0007067531394223398], [0.0006444056661908044, -0.000291961191424224, 0.0007067531394223398], [0.000666837840496388, -0.00023627800235904441, 0.0007067531394223398], [0.0006844684892493264, -0.0001788935078235417, 0.0007067531394223398], [0.000697170664029245, -0.00012022090140108055, 0.0007067531394223398], [0.0007048529035946305, -6.0682651646786864e-05, 0.0007067531394223398], [0.0007074598924439701, -7.074601282594114e-07, 0.0007067531394223398]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0009999995000000417, 9.999998333333416e-07, 6.123233995736766e-20], [0.0009963145030501234, 8.577535200735643e-05, 6.123233995736766e-20], [0.0009854556037594121, 0.00016993308394533548, 6.123233995736766e-20], [0.0009675009909757085, 0.00025286722298673275, 6.123233995736766e-20], [0.0009425799458028031, 0.0003339806068776823, 6.123233995736766e-20], [0.0009108719107197057, 0.0004126891836016939, 6.123233995736766e-20], [0.0008726051975159249, 0.0004884262168108851, 6.123233995736766e-20], [0.0008280553433462312, 0.0005606463665767889, 6.123233995736766e-20], [0.0007775431267420338, 0.0006288296160775363, 6.123233995736766e-20], [0.0007214322578649591, 0.0006924850159475417, 6.123233995736766e-20], [0.0006601267596338236, 0.0007511542193287262, 6.123233995736766e-20], [0.0005940680585820335, 0.0008044147821693567, 6.123233995736766e-20], [0.0005237318063925205, 0.0008518832050068996, 6.123233995736766e-20], [0.00044962445499655755, 0.0008932176943327134, 6.123233995736766e-20], [0.0003722796098972483, 0.0009281206236555423, 6.123233995736766e-20], [0.0002922541879753642, 0.0009563406765430719, 6.123233995736766e-20], [0.00021012440744301686, 0.0009776746562107053, 6.123233995736766e-20], [0.0001264816388192603, 0.000991968948627725, 6.123233995736766e-20], [4.192814680242357e-05, 0.0009991206286058328, 6.123233995736766e-20], [-4.292724630043587e-05, 0.0009990782009057458, 6.123233995736766e-20], [-0.00012747354436174396, 0.0009918419710255532, 6.123233995736766e-20], [-0.0002111019768740851, 0.0009774640430009961, 6.123233995736766e-20], [-0.0002932103823654336, 0.0009560479442335077, 6.123233995736766e-20], [-0.00037320754422642593, 0.0009277478800474191, 6.123233995736766e-20], [-0.00045051744772981036, 0.0008927676233438451, 6.123233995736766e-20], [-0.0005245834275896641, 0.0008513590473462296, 6.123233995736766e-20], [-0.0005948721761961281, 0.0008038203120024292, 6.123233995736766e-20], [-0.0006608775836646069, 0.0007504937171020358, 6.123233995736766e-20], [-0.000722124382049393, 0.0006917632375674369, 6.123233995736766e-20], [-0.000778171567481775, 0.0006280517586656035, 6.123233995736766e-20], [-0.0008286155755917295, 0.0005598180310482923, 6.123233995736766e-20], [-0.0008730931873487689, 0.00048755336754571554, 6.123233995736766e-20], [-0.0009112841443986084, 0.0004117781054982116, 6.123233995736766e-20], [-0.0009429134550640836, 0.0003330378600986865, 6.123233995736766e-20], [-0.0009677533744060956, 0.00025189959572340597, 6.123233995736766e-20], [-0.0009856250440872746, 0.00016894754353928335, 6.123233995736766e-20], [-0.000996399780230625, 8.477899478268569e-05, 6.123233995736766e-20], [-0.001, -7.657137397853899e-19, 6.123233995736766e-20], [-0.0009963997802306247, -8.477899478268722e-05, 6.123233995736766e-20], [-0.0009856250440872744, -0.00016894754353928486, 6.123233995736766e-20], [-0.0009677533744060952, -0.0002518995957234075, 6.123233995736766e-20], [-0.0009429134550640832, -0.00033303786009868797, 6.123233995736766e-20], [-0.0009112841443986077, -0.000411778105498213, 6.123233995736766e-20], [-0.0008730931873487681, -0.0004875533675457169, 6.123233995736766e-20], [-0.0008286155755917287, -0.0005598180310482935, 6.123233995736766e-20], [-0.000778171567481774, -0.0006280517586656048, 6.123233995736766e-20], [-0.000722124382049392, -0.0006917632375674381, 6.123233995736766e-20], [-0.0006608775836646057, -0.0007504937171020368, 6.123233995736766e-20], [-0.0005948721761961269, -0.0008038203120024301, 6.123233995736766e-20], [-0.0005245834275896629, -0.0008513590473462303, 6.123233995736766e-20], [-0.00045051744772980895, -0.0008927676233438458, 6.123233995736766e-20], [-0.0003732075442264243, -0.0009277478800474197, 6.123233995736766e-20], [-0.00029321038236543176, -0.0009560479442335082, 6.123233995736766e-20], [-0.00021110197687408295, -0.0009774640430009966, 6.123233995736766e-20], [-0.00012747354436174155, -0.0009918419710255536, 6.123233995736766e-20], [-4.292724630043323e-05, -0.0009990782009057458, 6.123233995736766e-20], [4.192814680242643e-05, -0.0009991206286058326, 6.123233995736766e-20], [0.00012648163881926337, -0.0009919689486277247, 6.123233995736766e-20], [0.0002101244074430201, -0.0009776746562107047, 6.123233995736766e-20], [0.00029225418797536757, -0.0009563406765430709, 6.123233995736766e-20], [0.0003722796098972517, -0.0009281206236555409, 6.123233995736766e-20], [0.00044962445499656113, -0.0008932176943327116, 6.123233995736766e-20], [0.0005237318063925242, -0.0008518832050068974, 6.123233995736766e-20], [0.000594068058582037, -0.0008044147821693541, 6.123233995736766e-20], [0.0006601267596338272, -0.0007511542193287231, 6.123233995736766e-20], [0.0007214322578649626, -0.0006924850159475382, 6.123233995736766e-20], [0.000777543126742037, -0.0006288296160775323, 6.123233995736766e-20], [0.0008280553433462342, -0.0005606463665767845, 6.123233995736766e-20], [0.0008726051975159276, -0.0004884262168108803, 6.123233995736766e-20], [0.000910871910719708, -0.00041268918360168864, 6.123233995736766e-20], [0.0009425799458028049, -0.0003339806068776768, 6.123233995736766e-20], [0.0009675009909757101, -0.00025286722298672695, 6.123233995736766e-20], [0.0009854556037594132, -0.00016993308394532938, 6.123233995736766e-20], [0.0009963145030501238, -8.577535200735009e-05, 6.123233995736766e-20], [0.0009999995000000417, -9.999998333268153e-07, 6.123233995736766e-20]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0007074598924439699, 7.074601282640283e-07, -0.00070675313942234], [0.00070485290359463, 6.068265164679133e-05, -0.00070675313942234], [0.000697170664029244, 0.00012022090140108482, -0.00070675313942234], [0.0006844684892493251, 0.00017889350782354576, -0.00070675313942234], [0.0006668378404963865, 0.0002362780023590482, -0.00070675313942234], [0.0006444056661908025, 0.00029196119142422763, -0.00070675313942234], [0.0006173334878473834, 0.0003455421315828953, -0.00070675313942234], [0.0005858162370494733, 0.0003966350165150093, -0.00070675313942234], [0.0005500808518558702, 0.00044487195499175565, -0.00070675313942234], [0.0005103846427470544, 0.0004899056198540982, -0.00070675313942234], [0.0004670134398766317, 0.000531411748920987, -0.00070675313942234], [0.00042027953496859337, 0.0005690914798195887, -0.00070675313942234], [0.0003705194326796395, 0.0006026735019257313, -0.00070675313942234], [0.00031809142761774373, 0.0006319160099196508, -0.00070675313942234], [0.0002633730244634916, 0.0006566084448905753, -0.00070675313942234], [0.00020675821977045216, 0.000676573010453432, -0.00070675313942234], [0.0001486546650168159, 0.0006916659529609684, -0.00070675313942234], [8.948073133557287e-05, 0.0007017785965931972, -0.00070675313942234], [2.966249705846485e-05, 0.0007068381258710675, -0.00070675313942234], [-3.0369320235281015e-05, 0.0007068081099599194, -0.00070675313942234], [-9.018246507483978e-05, 0.0007016887649875062, -0.00070675313942234], [-0.0001493462565271717, 0.00069151695248778, -0.00070675313942234], [-0.00020743468928904093, 0.0006763659139816447, -0.00070675313942234], [-0.000264029501112445, 0.0006563447436058126, -0.00070675313942234], [-0.0003187231844766424, 0.0006315976025870702, -0.00070675313942234], [-0.00037112192082141773, 0.0006023026812180798, -0.00070675313942234], [-0.0004208484162138136, 0.0005686709158089511, -0.00070675313942234], [-0.000467544618030283, 0.0005309444698530941, -0.00070675313942234], [-0.000510874293092957, 0.0004893949903436261, -0.00070675313942234], [-0.0005505254486963133, 0.0004443216517956213, -0.00070675313942234], [-0.0005862125790917882, 0.0003960490020581044, -0.00070675313942234], [-0.0006176787212546578, 0.00034492462542688555, -0.00070675313942234], [-0.0006446973051307602, 0.0002913166398848542, -0.00070675313942234], [-0.0006670737850404733, 0.00023561104649070006, -0.00070675313942234], [-0.0006846470404931169, 0.00017820895000162786, -0.00070675313942234], [-0.0006972905363253054, 0.0001195236707428047, -0.00070675313942234], [-0.0007049132338097406, 5.997776851934846e-05, -0.00070675313942234], [-0.0007074602461740635, -5.417120308474347e-19, -0.00070675313942234], [-0.0007049132338097405, -5.9977768519349544e-05, -0.00070675313942234], [-0.0006972905363253053, -0.00011952367074280577, -0.00070675313942234], [-0.0006846470404931167, -0.00017820895000162892, -0.00070675313942234], [-0.000667073785040473, -0.0002356110464907011, -0.00070675313942234], [-0.0006446973051307598, -0.00029131663988485524, -0.00070675313942234], [-0.0006176787212546572, -0.00034492462542688653, -0.00070675313942234], [-0.0005862125790917877, -0.0003960490020581052, -0.00070675313942234], [-0.0005505254486963126, -0.0004443216517956222, -0.00070675313942234], [-0.0005108742930929563, -0.000489394990343627, -0.00070675313942234], [-0.0004675446180302822, -0.0005309444698530949, -0.00070675313942234], [-0.0004208484162138128, -0.0005686709158089516, -0.00070675313942234], [-0.0003711219208214169, -0.0006023026812180803, -0.00070675313942234], [-0.0003187231844766414, -0.0006315976025870706, -0.00070675313942234], [-0.0002640295011124438, -0.0006563447436058131, -0.00070675313942234], [-0.00020743468928903963, -0.000676365913981645, -0.00070675313942234], [-0.00014934625652717018, -0.0006915169524877804, -0.00070675313942234], [-9.018246507483807e-05, -0.0007016887649875065, -0.00070675313942234], [-3.0369320235279148e-05, -0.0007068081099599194, -0.00070675313942234], [2.9662497058466874e-05, -0.0007068381258710674, -0.00070675313942234], [8.948073133557504e-05, -0.0007017785965931971, -0.00070675313942234], [0.0001486546650168182, -0.000691665952960968, -0.00070675313942234], [0.00020675821977045455, -0.0006765730104534313, -0.00070675313942234], [0.000263373024463494, -0.0006566084448905743, -0.00070675313942234], [0.0003180914276177462, -0.0006319160099196496, -0.00070675313942234], [0.0003705194326796421, -0.0006026735019257298, -0.00070675313942234], [0.00042027953496859586, -0.0005690914798195868, -0.00070675313942234], [0.0004670134398766342, -0.0005314117489209849, -0.00070675313942234], [0.0005103846427470569, -0.0004899056198540956, -0.00070675313942234], [0.0005500808518558725, -0.00044487195499175284, -0.00070675313942234], [0.0005858162370494755, -0.00039663501651500616, -0.00070675313942234], [0.0006173334878473854, -0.00034554213158289183, -0.00070675313942234], [0.0006444056661908041, -0.0002919611914242239, -0.00070675313942234], [0.0006668378404963878, -0.00023627800235904433, -0.00070675313942234], [0.0006844684892493262, -0.00017889350782354164, -0.00070675313942234], [0.0006971706640292448, -0.00012022090140108051, -0.00070675313942234], [0.0007048529035946303, -6.0682651646786844e-05, -0.00070675313942234], [0.0007074598924439699, -7.074601282594111e-07, -0.00070675313942234]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.99999333333035e-07, 9.999996666662794e-10, -0.0009999995000000417], [9.963143369972843e-07, 8.577533771142811e-08, -0.0009999995000000417], [9.854554395163942e-07, 1.6993305562308287e-07, -0.0009999995000000417], [9.675008297251337e-07, 2.528671808420885e-07, -0.0009999995000000417], [9.425797887057464e-07, 3.339805512141064e-07, -0.0009999995000000417], [9.108717589073349e-07, 4.1268911481998855e-07, -0.0009999995000000417], [8.726050520813558e-07, 4.884261354063089e-07, -0.0009999995000000417], [8.280552053366567e-07, 5.606462731354905e-07, -0.0009999995000000417], [7.775429971511834e-07, 6.288295112723341e-07, -0.0009999995000000417], [7.21432137625944e-07, 6.924849005330792e-07, -0.0009999995000000417], [6.601266496124176e-07, 7.511540941360383e-07, -0.0009999995000000417], [5.94067959570439e-07, 8.044146480998857e-07, -0.0009999995000000417], [5.237317191036644e-07, 8.518830630260048e-07, -0.0009999995000000417], [4.49624380058958e-07, 8.932175454627195e-07, -0.0009999995000000417], [3.7227954785048905e-07, 9.281204689683788e-07, -0.0009999995000000417], [2.9225413926620913e-07, 9.563405171525542e-07, -0.0009999995000000417], [2.1012437242219334e-07, 9.776744932645154e-07, -0.0009999995000000417], [1.2648161773893362e-07, 9.919687832991468e-07, -0.0009999995000000417], [4.1928139814381354e-08, 9.991204620853051e-07, -0.0009999995000000417], [-4.292723914587664e-08, 9.990780343922894e-07, -0.0009999995000000417], [-1.2747352311609927e-07, 9.918418057181381e-07, -0.0009999995000000417], [-2.1110194169033292e-07, 9.774638800899085e-07, -0.0009999995000000417], [-2.932103334969124e-07, 9.560477848917789e-07, -0.0009999995000000417], [-3.7320748202501057e-07, 9.277477254223796e-07, -0.0009999995000000417], [-4.505173726433783e-07, 8.927674745488633e-07, -0.0009999995000000417], [-5.245833401588707e-07, 8.513589054526946e-07, -0.0009999995000000417], [-5.948720770505135e-07, 8.038201780320369e-07, -0.0009999995000000417], [-6.608774735180632e-07, 7.504935920194319e-07, -0.0009999995000000417], [-7.221242616950235e-07, 6.917631222732711e-07, -0.0009999995000000417], [-7.781714377861843e-07, 6.280516539900444e-07, -0.0009999995000000417], [-8.286154374887828e-07, 5.598179377450502e-07, -0.0009999995000000417], [-8.73093041832868e-07, 4.875532862866145e-07, -0.0009999995000000417], [-9.112839925175319e-07, 4.11778036868353e-07, -0.0009999995000000417], [-9.429132979114419e-07, 3.330378045922355e-07, -0.0009999995000000417], [-9.677532131134568e-07, 2.5189955374003336e-07, -0.0009999995000000417], [-9.856248798160166e-07, 1.6894751538128788e-07, -0.0009999995000000417], [-9.96399614163573e-07, 8.477898065281733e-08, -0.0009999995000000417], [-9.999998333329099e-07, -7.657136121661091e-22, -0.0009999995000000417], [-9.963996141635728e-07, -8.477898065281887e-08, -0.0009999995000000417], [-9.856248798160164e-07, -1.6894751538128942e-07, -0.0009999995000000417], [-9.677532131134563e-07, -2.518995537400349e-07, -0.0009999995000000417], [-9.429132979114415e-07, -3.3303780459223696e-07, -0.0009999995000000417], [-9.112839925175311e-07, -4.117780368683544e-07, -0.0009999995000000417], [-8.730930418328673e-07, -4.875532862866159e-07, -0.0009999995000000417], [-8.286154374887819e-07, -5.598179377450513e-07, -0.0009999995000000417], [-7.781714377861832e-07, -6.280516539900457e-07, -0.0009999995000000417], [-7.221242616950226e-07, -6.917631222732724e-07, -0.0009999995000000417], [-6.60877473518062e-07, -7.504935920194328e-07, -0.0009999995000000417], [-5.948720770505123e-07, -8.038201780320377e-07, -0.0009999995000000417], [-5.245833401588695e-07, -8.513589054526953e-07, -0.0009999995000000417], [-4.5051737264337693e-07, -8.927674745488639e-07, -0.0009999995000000417], [-3.7320748202500893e-07, -9.277477254223803e-07, -0.0009999995000000417], [-2.9321033349691056e-07, -9.560477848917795e-07, -0.0009999995000000417], [-2.1110194169033077e-07, -9.77463880089909e-07, -0.0009999995000000417], [-1.2747352311609686e-07, -9.918418057181386e-07, -0.0009999995000000417], [-4.292723914587401e-08, -9.990780343922894e-07, -0.0009999995000000417], [4.192813981438421e-08, -9.99120462085305e-07, -0.0009999995000000417], [1.264816177389367e-07, -9.919687832991466e-07, -0.0009999995000000417], [2.1012437242219654e-07, -9.776744932645147e-07, -0.0009999995000000417], [2.922541392662125e-07, -9.563405171525531e-07, -0.0009999995000000417], [3.7227954785049244e-07, -9.281204689683774e-07, -0.0009999995000000417], [4.496243800589616e-07, -8.932175454627178e-07, -0.0009999995000000417], [5.237317191036681e-07, -8.518830630260026e-07, -0.0009999995000000417], [5.940679595704424e-07, -8.044146480998831e-07, -0.0009999995000000417], [6.601266496124212e-07, -7.511540941360352e-07, -0.0009999995000000417], [7.214321376259475e-07, -6.924849005330756e-07, -0.0009999995000000417], [7.775429971511867e-07, -6.288295112723301e-07, -0.0009999995000000417], [8.280552053366597e-07, -5.60646273135486e-07, -0.0009999995000000417], [8.726050520813586e-07, -4.88426135406304e-07, -0.0009999995000000417], [9.108717589073372e-07, -4.126891148199833e-07, -0.0009999995000000417], [9.425797887057482e-07, -3.3398055121410094e-07, -0.0009999995000000417], [9.675008297251354e-07, -2.5286718084208273e-07, -0.0009999995000000417], [9.854554395163953e-07, -1.6993305562307678e-07, -0.0009999995000000417], [9.963143369972847e-07, -8.577533771142177e-08, -0.0009999995000000417], [9.99999333333035e-07, -9.99999666659753e-10, -0.0009999995000000417]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0020007486661669334, 2.0007493330834225e-06, 2.0007489996250833], [0.001993375909748177, 0.0001716150069262139, 2.0007489996250833], [0.0019716499706132775, 0.00033999356103802986, 2.0007489996250833], [0.0019357272850733971, 0.0005059240120700271, 2.0007489996250833], [0.001885866512253836, 0.0006682115878419119, 2.0007489996250833], [0.001822426671634637, 0.0008256877464764487, 2.0007489996250833], [0.0017458645579525266, 0.0009772185904145944, 2.0007489996250833], [0.001656731452078031, 0.0011217130309763167, 2.0007489996250833], [0.0015556691515509018, 0.0012581306446786656, 2.0007489996250833], [0.0014434053493557306, 0.0013854891647421565, 2.0007489996250833], [0.0013207483942126144, 0.0015028715538433273, 2.0007489996250833], [0.0011885814701110687, 0.0016094326071865413, 2.0007489996250833], [0.001047856236997109, 0.0017044050383500148, 2.0007489996250833], [0.0008995859784033487, 0.0017871050040853074, 2.0007489996250833], [0.0007448383053621874, 0.0018569370282892855, 2.0007489996250833], [0.0005847274691371204, 0.0019133982896937989, 2.0007489996250833], [0.0004204063381238848, 0.001956082242399824, 2.0007489996250833], [0.0002530580966912807, 0.001984681543186625, 2.0007489996250833], [8.388772573365971e-05, 0.001998990264518037, 2.0007489996250833], [-8.588667372114976e-05, 0.0019989053773112357, 2.0007489996250833], [-0.00025504265137464577, 0.001984427492791422, 2.0007489996250833], [-0.00042236220983711586, 0.001955660858090729, 2.0007489996250833], [-0.0005866405747442007, 0.0019128126056230524, 2.0007489996250833], [-0.0007466948696618623, 0.0018561912616396274, 2.0007489996250833], [-0.0009013726333166283, 0.0017862045247044093, 2.0007489996250833], [-0.0010495601178233138, 0.001703356330085214, 2.0007489996250833], [-0.0011901903081593288, 0.001608243221198292, 2.0007489996250833], [-0.0013222506051418358, 0.0015015500542335267, 2.0007489996250833], [-0.0014447901165869422, 0.0013840450668888447, 2.0007489996250833], [-0.0015569265041513803, 0.001256574346721124, 2.0007489996250833], [-0.0016578523365563978, 0.0011200557389438926, 2.0007489996250833], [-0.0017468409034478649, 0.0009754722375383652, 2.0007489996250833], [-0.0018232514480302391, 0.000823864907264713, 2.0007489996250833], [-0.001886533780797132, 0.0006663253875382029, 2.0007489996250833], [-0.0019362322411375845, 0.0005039880321455894, 2.0007489996250833], [-0.0019719889782927468, 0.00033802174139925767, 2.0007489996250833], [-0.001993546528038629, 0.0001696215455411975, 2.0007489996250833], [-0.0020007496665416834, -1.5320015095420042e-18, 2.0007489996250833], [-0.001993546528038629, -0.00016962154554120057, 2.0007489996250833], [-0.0019719889782927463, -0.00033802174139926076, 2.0007489996250833], [-0.0019362322411375838, -0.0005039880321455923, 2.0007489996250833], [-0.001886533780797131, -0.0006663253875382057, 2.0007489996250833], [-0.0018232514480302378, -0.0008238649072647157, 2.0007489996250833], [-0.0017468409034478636, -0.0009754722375383678, 2.0007489996250833], [-0.0016578523365563963, -0.001120055738943895, 2.0007489996250833], [-0.0015569265041513783, -0.0012565743467211265, 2.0007489996250833], [-0.0014447901165869402, -0.001384045066888847, 2.0007489996250833], [-0.0013222506051418332, -0.0015015500542335288, 2.0007489996250833], [-0.0011901903081593264, -0.001608243221198294, 2.0007489996250833], [-0.0010495601178233114, -0.0017033563300852155, 2.0007489996250833], [-0.0009013726333166256, -0.0017862045247044106, 2.0007489996250833], [-0.000746694869661859, -0.0018561912616396287, 2.0007489996250833], [-0.000586640574744197, -0.0019128126056230535, 2.0007489996250833], [-0.00042236220983711163, -0.0019556608580907297, 2.0007489996250833], [-0.0002550426513746409, -0.0019844274927914222, 2.0007489996250833], [-8.588667372114449e-05, -0.001998905377311236, 2.0007489996250833], [8.388772573366543e-05, -0.0019989902645180368, 2.0007489996250833], [0.00025305809669128683, -0.0019846815431866244, 2.0007489996250833], [0.00042040633812389126, -0.0019560822423998225, 2.0007489996250833], [0.0005847274691371271, -0.001913398289693797, 2.0007489996250833], [0.0007448383053621944, -0.0018569370282892827, 2.0007489996250833], [0.0008995859784033558, -0.001787105004085304, 2.0007489996250833], [0.0010478562369971162, -0.0017044050383500104, 2.0007489996250833], [0.001188581470111076, -0.001609432607186536, 2.0007489996250833], [0.0013207483942126216, -0.0015028715538433213, 2.0007489996250833], [0.0014434053493557375, -0.0013854891647421493, 2.0007489996250833], [0.0015556691515509083, -0.0012581306446786576, 2.0007489996250833], [0.0016567314520780372, -0.0011217130309763078, 2.0007489996250833], [0.001745864557952532, -0.0009772185904145846, 2.0007489996250833], [0.0018224266716346418, -0.0008256877464764381, 2.0007489996250833], [0.0018858665122538398, -0.0006682115878419009, 2.0007489996250833], [0.0019357272850734001, -0.0005059240120700154, 2.0007489996250833], [0.0019716499706132792, -0.0003399935610380176, 2.0007489996250833], [0.001993375909748178, -0.0001716150069262012, 2.0007489996250833], [0.0020007486661669334, -2.0007493330703646e-06, 2.0007489996250833]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.415450379807273, 0.0014154508516242552, 1.4140363436992465], [1.410234446866956, 0.1214108152823178, 1.4140363436992465], [1.3948642060565106, 0.24053196847822053, 1.4140363436992465], [1.3694503298655876, 0.3579211857779593, 1.4140363436992465], [1.3341758093731455, 0.47273321321986583, 1.4140363436992465], [1.2892946366312485, 0.5841413537420236, 1.4140363436992465], [1.2351299758106529, 0.6913434197644779, 1.4140363436992465], [1.1720718362767342, 0.793567509292405, 1.4140363436992465], [1.1005742643506327, 0.8900775639497553, 1.4140363436992465], [1.0211520739761695, 0.9801786689230872, 1.4140363436992465], [0.934377139833171, 1.0632220566536652, 1.4140363436992465], [0.8408742795884134, 1.1386097782490425, 1.4140363436992465], [0.741316754933789, 1.2057990089779074, 1.4140363436992465], [0.6364214238062009, 1.2643059568467416, 1.4140363436992465], [0.5269435786953309, 1.3137093461148188, 1.4140363436992465], [0.4136715082057323, 1.3536534506647044, 1.4140363436992465], [0.29742082103239453, 1.383850655386658, 1.4140363436992465], [0.1790285732196475, 1.4040835271338397, 1.4140363436992465], [0.05934724098972357, 1.4142063803365388, 1.4140363436992465], [-0.0607614174607385, 1.414146326002309, 1.4140363436992465], [-0.18043256699848578, 1.4039037965487535, 1.4140363436992465], [-0.29880452274673885, 1.3835525426899264, 1.4140363436992465], [-0.4150249545950488, 1.353239102398776, 1.4140363436992465], [-0.5282570243507244, 1.31318174576933, 1.4140363436992465], [-0.6376854113416425, 1.263668903376081, 1.4140363436992465], [-0.7425221830834519, 1.2050570894470733, 1.4140363436992465], [-0.842012468739788, 1.1377683348047591, 1.4140363436992465], [-0.935439894524089, 1.0622871480585787, 1.4140363436992465], [-1.022131741905734, 0.9791570269300102, 1.4140363436992465], [-1.1014637914791492, 0.8889765448300897, 1.4140363436992465], [-1.1728648176178955, 0.7923950408677525, 1.4140363436992465], [-1.235820701550257, 0.6901079443228415, 1.4140363436992465], [-1.289878133240369, 0.5828517672496223, 1.4140363436992465], [-1.3346478754197275, 0.4713988012662683, 1.4140363436992465], [-1.369807566266604, 0.35655155671575706, 1.4140363436992465], [-1.3951040405528552, 0.23913698423866658, 1.4140363436992465], [-1.4103551525448388, 0.12000052036508647, 1.4140363436992465], [-1.415451087532758, -1.0838303457180053e-15, 1.4140363436992465], [-1.4103551525448386, -0.12000052036508863, 1.4140363436992465], [-1.395104040552855, -0.23913698423866872, 1.4140363436992465], [-1.3698075662666036, -0.35655155671575917, 1.4140363436992465], [-1.3346478754197268, -0.4713988012662704, 1.4140363436992465], [-1.2898781332403682, -0.5828517672496243, 1.4140363436992465], [-1.2358207015502558, -0.6901079443228434, 1.4140363436992465], [-1.1728648176178946, -0.7923950408677543, 1.4140363436992465], [-1.1014637914791479, -0.8889765448300914, 1.4140363436992465], [-1.0221317419057327, -0.9791570269300117, 1.4140363436992465], [-0.9354398945240873, -1.06228714805858, 1.4140363436992465], [-0.8420124687397862, -1.1377683348047605, 1.4140363436992465], [-0.7425221830834501, -1.2050570894470745, 1.4140363436992465], [-0.6376854113416405, -1.263668903376082, 1.4140363436992465], [-0.5282570243507222, -1.3131817457693309, 1.4140363436992465], [-0.4150249545950461, -1.3532391023987766, 1.4140363436992465], [-0.2988045227467358, -1.3835525426899271, 1.4140363436992465], [-0.1804325669984823, -1.403903796548754, 1.4140363436992465], [-0.06076141746073477, -1.414146326002309, 1.4140363436992465], [0.059347240989727615, -1.4142063803365386, 1.4140363436992465], [0.17902857321965182, -1.4040835271338392, 1.4140363436992465], [0.29742082103239914, -1.3838506553866572, 1.4140363436992465], [0.41367150820573706, -1.353653450664703, 1.4140363436992465], [0.5269435786953358, -1.3137093461148168, 1.4140363436992465], [0.636421423806206, -1.2643059568467392, 1.4140363436992465], [0.7413167549337941, -1.2057990089779043, 1.4140363436992465], [0.8408742795884184, -1.1386097782490388, 1.4140363436992465], [0.934377139833176, -1.0632220566536608, 1.4140363436992465], [1.0211520739761741, -0.9801786689230821, 1.4140363436992465], [1.1005742643506373, -0.8900775639497497, 1.4140363436992465], [1.1720718362767384, -0.7935675092923987, 1.4140363436992465], [1.2351299758106566, -0.6913434197644711, 1.4140363436992465], [1.2892946366312519, -0.5841413537420163, 1.4140363436992465], [1.3341758093731482, -0.47273321321985806, 1.4140363436992465], [1.3694503298655898, -0.357921185777951, 1.4140363436992465], [1.394864206056512, -0.2405319684782119, 1.4140363436992465], [1.410234446866957, -0.1214108152823088, 1.4140363436992465], [1.415450379807273, -0.0014154508516150174, 1.4140363436992465]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.0007489996250833, 0.0020007496665416834, 1.2251060416970334e-16], [1.993376241977534, 0.1716150355287184, 1.2251060416970334e-16], [1.971650299221644, 0.33999361770362996, 1.2251060416970334e-16], [1.9357276076946488, 0.5059240963907056, 1.2251060416970334e-16], [1.885866826564958, 0.6682116992105228, 1.2251060416970334e-16], [1.8224269753724511, 0.8256878840910891, 1.2251060416970334e-16], [1.7458648489299868, 0.9772187532843783, 1.2251060416970334e-16], [1.656731728199972, 1.1217132179285103, 1.2251060416970334e-16], [1.555669410829124, 1.2581308543671308, 1.2251060416970334e-16], [1.443405589923317, 1.3854893956570442, 1.2251060416970334e-16], [1.3207486143373726, 1.502871804321949, 1.2251060416970334e-16], [1.1885816682080035, 1.6094328754253404, 1.2251060416970334e-16], [1.0478564116398354, 1.7044053224175544, 1.2251060416970334e-16], [0.8995861283343626, 1.7871053019361762, 1.2251060416970334e-16], [0.7448384295019195, 1.8569373377788263, 1.2251060416970334e-16], [0.5847275665917099, 1.913398608593551, 1.2251060416970334e-16], [0.420406408191616, 1.9560825684135688, 1.2251060416970334e-16], [0.25305813886763506, 1.9846818739669208, 1.2251060416970334e-16], [0.08388773971494896, 1.99899059768312, 1.2251060416970334e-16], [-0.08588668803559706, 1.9989057104621708, 1.2251060416970334e-16], [-0.25504269388175926, 1.9844278235293757, 1.2251060416970334e-16], [-0.4223622802308257, 1.955661184034243, 1.2251060416970334e-16], [-0.5866406725176413, 1.9128129244251906, 1.2251060416970334e-16], [-0.7466949941110217, 1.8561915710048738, 1.2251060416970334e-16], [-0.901372783545418, 1.786204822405198, 1.2251060416970334e-16], [-1.0495602927500205, 1.7033566139779688, 1.2251060416970334e-16], [-1.1901905065244034, 1.6082434892388602, 1.2251060416970334e-16], [-1.3222508255169623, 1.5015503044918983, 1.2251060416970334e-16], [-1.4447903573853231, 1.3840452975630495, 1.2251060416970334e-16], [-1.5569267636391613, 1.2565745561502062, 1.2251060416970334e-16], [-1.6578526128651527, 1.1200559256198708, 1.2251060416970334e-16], [-1.7468411945880493, 0.9754724001170904, 1.2251060416970334e-16], [-1.8232517519055158, 0.8238650445755469, 1.2251060416970334e-16], [-1.8865340952194654, 0.666325498592447, 1.2251060416970334e-16], [-1.9362325638429956, 0.5039881161436045, 1.2251060416970334e-16], [-1.9719893069576147, 0.33802179773622115, 1.2251060416970334e-16], [-1.9935468602964226, 0.1696215738114584, 1.2251060416970334e-16], [-2.00075, -1.5320017648756188e-15, 1.2251060416970334e-16], [-1.9935468602964224, -0.16962157381146145, 1.2251060416970334e-16], [-1.9719893069576142, -0.3380217977362242, 1.2251060416970334e-16], [-1.936232563842995, -0.5039881161436075, 1.2251060416970334e-16], [-1.8865340952194645, -0.6663254985924499, 1.2251060416970334e-16], [-1.8232517519055145, -0.8238650445755497, 1.2251060416970334e-16], [-1.746841194588048, -0.975472400117093, 1.2251060416970334e-16], [-1.6578526128651512, -1.1200559256198732, 1.2251060416970334e-16], [-1.5569267636391593, -1.2565745561502086, 1.2251060416970334e-16], [-1.4447903573853211, -1.3840452975630517, 1.2251060416970334e-16], [-1.3222508255169598, -1.5015503044919003, 1.2251060416970334e-16], [-1.190190506524401, -1.608243489238862, 1.2251060416970334e-16], [-1.049560292750018, -1.7033566139779703, 1.2251060416970334e-16], [-0.9013727835454153, -1.7862048224051994, 1.2251060416970334e-16], [-0.7466949941110185, -1.856191571004875, 1.2251060416970334e-16], [-0.5866406725176375, -1.9128129244251917, 1.2251060416970334e-16], [-0.42236228023082145, -1.9556611840342442, 1.2251060416970334e-16], [-0.2550426938817544, -1.9844278235293764, 1.2251060416970334e-16], [-0.08588668803559178, -1.998905710462171, 1.2251060416970334e-16], [0.08388773971495468, -1.9989905976831197, 1.2251060416970334e-16], [0.25305813886764117, -1.98468187396692, 1.2251060416970334e-16], [0.42040640819162245, -1.9560825684135674, 1.2251060416970334e-16], [0.5847275665917167, -1.913398608593549, 1.2251060416970334e-16], [0.7448384295019264, -1.8569373377788234, 1.2251060416970334e-16], [0.8995861283343697, -1.7871053019361727, 1.2251060416970334e-16], [1.0478564116398428, -1.70440532241755, 1.2251060416970334e-16], [1.1885816682080106, -1.609432875425335, 1.2251060416970334e-16], [1.3207486143373797, -1.5028718043219427, 1.2251060416970334e-16], [1.4434055899233238, -1.385489395657037, 1.2251060416970334e-16], [1.5556694108291305, -1.2581308543671228, 1.2251060416970334e-16], [1.656731728199978, -1.1217132179285014, 1.2251060416970334e-16], [1.7458648489299922, -0.9772187532843687, 1.2251060416970334e-16], [1.8224269753724558, -0.8256878840910786, 1.2251060416970334e-16], [1.8858668265649619, -0.6682116992105118, 1.2251060416970334e-16], [1.935727607694652, -0.5059240963906939, 1.2251060416970334e-16], [1.971650299221646, -0.33999361770361775, 1.2251060416970334e-16], [1.9933762419775352, -0.1716150355287057, 1.2251060416970334e-16], [2.0007489996250833, -0.0020007496665286257, 1.2251060416970334e-16]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.4154503798072726, 0.0014154508516242548, -1.4140363436992467], [1.4102344468669556, 0.12141081528231777, -1.4140363436992467], [1.3948642060565102, 0.24053196847822048, -1.4140363436992467], [1.3694503298655871, 0.35792118577795917, -1.4140363436992467], [1.334175809373145, 0.4727332132198657, -1.4140363436992467], [1.289294636631248, 0.5841413537420235, -1.4140363436992467], [1.2351299758106526, 0.6913434197644777, -1.4140363436992467], [1.1720718362767337, 0.7935675092924048, -1.4140363436992467], [1.1005742643506322, 0.8900775639497551, -1.4140363436992467], [1.021152073976169, 0.9801786689230869, -1.4140363436992467], [0.9343771398331707, 1.0632220566536648, -1.4140363436992467], [0.8408742795884131, 1.138609778249042, -1.4140363436992467], [0.7413167549337888, 1.205799008977907, -1.4140363436992467], [0.6364214238062008, 1.2643059568467412, -1.4140363436992467], [0.5269435786953307, 1.3137093461148184, -1.4140363436992467], [0.4136715082057322, 1.353653450664704, -1.4140363436992467], [0.2974208210323945, 1.3838506553866576, -1.4140363436992467], [0.17902857321964744, 1.4040835271338392, -1.4140363436992467], [0.059347240989723556, 1.4142063803365383, -1.4140363436992467], [-0.06076141746073848, 1.4141463260023086, -1.4140363436992467], [-0.18043256699848573, 1.403903796548753, -1.4140363436992467], [-0.29880452274673874, 1.383552542689926, -1.4140363436992467], [-0.4150249545950486, 1.3532391023987755, -1.4140363436992467], [-0.5282570243507243, 1.3131817457693296, -1.4140363436992467], [-0.6376854113416422, 1.2636689033760806, -1.4140363436992467], [-0.7425221830834516, 1.205057089447073, -1.4140363436992467], [-0.8420124687397876, 1.1377683348047587, -1.4140363436992467], [-0.9354398945240887, 1.0622871480585783, -1.4140363436992467], [-1.0221317419057339, 0.9791570269300099, -1.4140363436992467], [-1.101463791479149, 0.8889765448300894, -1.4140363436992467], [-1.1728648176178953, 0.7923950408677523, -1.4140363436992467], [-1.2358207015502565, 0.6901079443228413, -1.4140363436992467], [-1.2898781332403686, 0.5828517672496222, -1.4140363436992467], [-1.334647875419727, 0.47139880126626815, -1.4140363436992467], [-1.3698075662666036, 0.35655155671575695, -1.4140363436992467], [-1.3951040405528548, 0.2391369842386665, -1.4140363436992467], [-1.4103551525448383, 0.12000052036508643, -1.4140363436992467], [-1.4154510875327575, -1.083830345718005e-15, -1.4140363436992467], [-1.4103551525448383, -0.1200005203650886, -1.4140363436992467], [-1.3951040405528545, -0.23913698423866867, -1.4140363436992467], [-1.3698075662666032, -0.35655155671575905, -1.4140363436992467], [-1.3346478754197264, -0.4713988012662702, -1.4140363436992467], [-1.2898781332403677, -0.5828517672496241, -1.4140363436992467], [-1.2358207015502556, -0.6901079443228432, -1.4140363436992467], [-1.1728648176178942, -0.792395040867754, -1.4140363436992467], [-1.1014637914791474, -0.8889765448300911, -1.4140363436992467], [-1.0221317419057323, -0.9791570269300115, -1.4140363436992467], [-0.935439894524087, -1.0622871480585796, -1.4140363436992467], [-0.842012468739786, -1.13776833480476, -1.4140363436992467], [-0.7425221830834499, -1.205057089447074, -1.4140363436992467], [-0.6376854113416403, -1.2636689033760817, -1.4140363436992467], [-0.528257024350722, -1.3131817457693304, -1.4140363436992467], [-0.41502495459504596, -1.3532391023987764, -1.4140363436992467], [-0.2988045227467357, -1.3835525426899267, -1.4140363436992467], [-0.18043256699848226, -1.4039037965487535, -1.4140363436992467], [-0.060761417460734754, -1.4141463260023086, -1.4140363436992467], [0.0593472409897276, -1.4142063803365381, -1.4140363436992467], [0.17902857321965177, -1.4040835271338388, -1.4140363436992467], [0.29742082103239903, -1.3838506553866567, -1.4140363436992467], [0.41367150820573695, -1.3536534506647027, -1.4140363436992467], [0.5269435786953356, -1.3137093461148164, -1.4140363436992467], [0.6364214238062058, -1.2643059568467387, -1.4140363436992467], [0.7413167549337939, -1.2057990089779038, -1.4140363436992467], [0.8408742795884182, -1.1386097782490383, -1.4140363436992467], [0.9343771398331758, -1.0632220566536605, -1.4140363436992467], [1.021152073976174, -0.9801786689230818, -1.4140363436992467], [1.1005742643506369, -0.8900775639497495, -1.4140363436992467], [1.172071836276738, -0.7935675092923985, -1.4140363436992467], [1.2351299758106564, -0.6913434197644709, -1.4140363436992467], [1.2892946366312514, -0.584141353742016, -1.4140363436992467], [1.3341758093731477, -0.47273321321985795, -1.4140363436992467], [1.3694503298655893, -0.3579211857779509, -1.4140363436992467], [1.3948642060565115, -0.24053196847821182, -1.4140363436992467], [1.4102344468669565, -0.12141081528230876, -1.4140363436992467], [1.4154503798072726, -0.001415450851615017, -1.4140363436992467]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0020007486661660695, 2.0007493330825585e-06, -2.0007489996250833], [0.0019933759097473165, 0.00017161500692613983, -2.0007489996250833], [0.001971649970612426, 0.00033999356103788306, -2.0007489996250833], [0.0019357272850725612, 0.0005059240120698086, -2.0007489996250833], [0.0018858665122530218, 0.0006682115878416234, -2.0007489996250833], [0.0018224266716338504, 0.0008256877464760922, -2.0007489996250833], [0.0017458645579517729, 0.0009772185904141724, -2.0007489996250833], [0.001656731452077316, 0.0011217130309758325, -2.0007489996250833], [0.0015556691515502302, 0.0012581306446781224, -2.0007489996250833], [0.0014434053493551074, 0.0013854891647415585, -2.0007489996250833], [0.0013207483942120444, 0.0015028715538426786, -2.0007489996250833], [0.0011885814701105555, 0.0016094326071858464, -2.0007489996250833], [0.0010478562369966565, 0.001704405038349279, -2.0007489996250833], [0.0008995859784029604, 0.0017871050040845359, -2.0007489996250833], [0.0007448383053618658, 0.0018569370282884839, -2.0007489996250833], [0.0005847274691368679, 0.001913398289692973, -2.0007489996250833], [0.0004204063381237033, 0.001956082242398979, -2.0007489996250833], [0.00025305809669117147, 0.0019846815431857684, -2.0007489996250833], [8.38877257336235e-05, 0.001998990264517174, -2.0007489996250833], [-8.588667372111268e-05, 0.0019989053773103727, -2.0007489996250833], [-0.0002550426513745356, 0.001984427492790565, -2.0007489996250833], [-0.00042236220983693355, 0.0019556608580898844, -2.0007489996250833], [-0.0005866405747439475, 0.0019128126056222267, -2.0007489996250833], [-0.0007466948696615398, 0.0018561912616388261, -2.0007489996250833], [-0.0009013726333162392, 0.0017862045247036382, -2.0007489996250833], [-0.0010495601178228606, 0.0017033563300844787, -2.0007489996250833], [-0.0011901903081588151, 0.0016082432211975977, -2.0007489996250833], [-0.0013222506051412649, 0.0015015500542328785, -2.0007489996250833], [-0.0014447901165863186, 0.0013840450668882473, -2.0007489996250833], [-0.001556926504150708, 0.0012565743467205814, -2.0007489996250833], [-0.001657852336555682, 0.0011200557389434089, -2.0007489996250833], [-0.0017468409034471107, 0.000975472237537944, -2.0007489996250833], [-0.001823251448029452, 0.0008238649072643573, -2.0007489996250833], [-0.0018865337807963175, 0.0006663253875379152, -2.0007489996250833], [-0.0019362322411367486, 0.0005039880321453718, -2.0007489996250833], [-0.0019719889782918954, 0.00033802174139911174, -2.0007489996250833], [-0.0019935465280377686, 0.00016962154554112427, -2.0007489996250833], [-0.0020007496665408195, -1.5320015095413428e-18, -2.0007489996250833], [-0.001993546528037768, -0.00016962154554112734, -2.0007489996250833], [-0.001971988978291895, -0.0003380217413991148, -2.0007489996250833], [-0.001936232241136748, -0.0005039880321453747, -2.0007489996250833], [-0.0018865337807963166, -0.000666325387537918, -2.0007489996250833], [-0.0018232514480294505, -0.0008238649072643601, -2.0007489996250833], [-0.0017468409034471094, -0.0009754722375379467, -2.0007489996250833], [-0.0016578523365556805, -0.0011200557389434115, -2.0007489996250833], [-0.0015569265041507061, -0.001256574346720584, -2.0007489996250833], [-0.0014447901165863166, -0.0013840450668882495, -2.0007489996250833], [-0.0013222506051412625, -0.0015015500542328805, -2.0007489996250833], [-0.0011901903081588125, -0.0016082432211975996, -2.0007489996250833], [-0.0010495601178228582, -0.0017033563300844802, -2.0007489996250833], [-0.0009013726333162364, -0.0017862045247036395, -2.0007489996250833], [-0.0007466948696615367, -0.0018561912616388274, -2.0007489996250833], [-0.0005866405747439438, -0.0019128126056222278, -2.0007489996250833], [-0.00042236220983692926, -0.0019556608580898853, -2.0007489996250833], [-0.00025504265137453073, -0.0019844274927905657, -2.0007489996250833], [-8.588667372110741e-05, -0.001998905377310373, -2.0007489996250833], [8.388772573362922e-05, -0.0019989902645171738, -2.0007489996250833], [0.00025305809669117754, -0.0019846815431857675, -2.0007489996250833], [0.00042040633812370976, -0.0019560822423989777, -2.0007489996250833], [0.0005847274691368747, -0.0019133982896929707, -2.0007489996250833], [0.0007448383053618728, -0.0018569370282884808, -2.0007489996250833], [0.0008995859784029674, -0.0017871050040845324, -2.0007489996250833], [0.0010478562369966638, -0.0017044050383492747, -2.0007489996250833], [0.0011885814701105626, -0.0016094326071858412, -2.0007489996250833], [0.0013207483942120515, -0.0015028715538426723, -2.0007489996250833], [0.0014434053493551143, -0.0013854891647415513, -2.0007489996250833], [0.0015556691515502367, -0.0012581306446781144, -2.0007489996250833], [0.001656731452077322, -0.0011217130309758236, -2.0007489996250833], [0.0017458645579517783, -0.0009772185904141628, -2.0007489996250833], [0.001822426671633855, -0.0008256877464760817, -2.0007489996250833], [0.0018858665122530257, -0.0006682115878416123, -2.0007489996250833], [0.0019357272850725644, -0.000505924012069797, -2.0007489996250833], [0.001971649970612428, -0.00033999356103787086, -2.0007489996250833], [0.0019933759097473173, -0.00017161500692612711, -2.0007489996250833], [0.0020007486661660695, -2.000749333069501e-06, -2.0007489996250833]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.004000497333000533, 4.000498666500177e-06, 4.000497999750166], [0.003985755505159356, 0.00034314423851471626, 4.000497999750166], [0.003942314485787038, 0.0006798171890204366, 4.000497999750166], [0.0038704870693170683, 0.0010115951569592118, 4.000497999750166], [0.003770790444718966, 0.0013360891951326092, 4.000497999750166], [0.0036439424715103657, 0.001650962803838077, 4.000497999750166], [0.003490856510852971, 0.001953948754693782, 4.000497999750166], [0.0033126348489507253, 0.0022428654156794975, 4.000497999750166], [0.0031105607601046516, 0.0025156324598460582, 4.000497999750166], [0.002886089266573835, 0.0027702858445837796, 4.000497999750166], [0.002640836661775616, 0.003004991953592518, 4.000497999750166], [0.0023765688722625663, 0.003218060799724982, 4.000497999750166], [0.0020951887422751138, 0.0034079581936370036, 4.000497999750166], [0.001798722332426638, 0.0035733167906251517, 4.000497999750166], [0.0014893043311765242, 0.0037129459361096018, 4.000497999750166], [0.0011691626841349742, 0.0038258402388704447, 4.000497999750166], [0.0008406025518753473, 0.003911186810306382, 4.000497999750166], [0.0005059897117648223, 0.00396837111758995, 4.000497999750166], [0.00016773352332750502, 0.003996981408573987, 4.000497999750166], [-0.00017173042020315361, 0.003996811676588078, 4.000497999750166], [-0.0005099578292261753, 0.003967863143777125, 4.000497999750166], [-0.0008445133177325413, 0.003910344252301366, 4.000497999750166], [-0.0011729879391549046, 0.003824669163461212, 4.000497999750166], [-0.0014930165318416994, 0.0037114547755538315, 4.000497999750166], [-0.0018022947492606128, 0.0035715162819342687, 4.000497999750166], [-0.0020985956523064684, 0.003405861301264975, 4.000497999750166], [-0.0023797857442416064, 0.0032156826222185515, 4.000497999750166], [-0.002643840332810153, 0.0030023496148750333, 4.000497999750166], [-0.002888858108912189, 0.002767398370655416, 4.000497999750166], [-0.003113074836864974, 0.002512520641788258, 4.000497999750166], [-0.0033148760576753064, 0.0022395516599500397, 4.000497999750166], [-0.0034928087138538957, 0.0019504569217904432, 4.000497999750166], [-0.00364559161206796, 0.0016473180364925573, 4.000497999750166], [-0.003772124648296352, 0.0013323177372718132, 4.000497999750166], [-0.003871496729062055, 0.0010077241647374385, 4.000497999750166], [-0.003942992331705676, 0.0006758745352831339, 4.000497999750166], [-0.003986096656463094, 0.0003391583121017421, 4.000497999750166], [-0.004000499333250033, -3.0632373054718414e-18, 4.000497999750166], [-0.003986096656463094, -0.00033915831210174825, 4.000497999750166], [-0.003942992331705675, -0.00067587453528314, 4.000497999750166], [-0.0038714967290620537, -0.0010077241647374446, 4.000497999750166], [-0.00377212464829635, -0.001332317737271819, 4.000497999750166], [-0.003645591612067957, -0.0016473180364925627, 4.000497999750166], [-0.003492808713853893, -0.0019504569217904486, 4.000497999750166], [-0.0033148760576753034, -0.002239551659950045, 4.000497999750166], [-0.00311307483686497, -0.0025125206417882626, 4.000497999750166], [-0.002888858108912185, -0.0027673983706554203, 4.000497999750166], [-0.002643840332810148, -0.0030023496148750372, 4.000497999750166], [-0.0023797857442416017, -0.003215682622218555, 4.000497999750166], [-0.0020985956523064636, -0.003405861301264978, 4.000497999750166], [-0.0018022947492606072, -0.0035715162819342713, 4.000497999750166], [-0.0014930165318416929, -0.003711454775553834, 4.000497999750166], [-0.001172987939154897, -0.0038246691634612148, 4.000497999750166], [-0.0008445133177325327, -0.003910344252301369, 4.000497999750166], [-0.0005099578292261656, -0.003967863143777126, 4.000497999750166], [-0.00017173042020314307, -0.003996811676588079, 4.000497999750166], [0.00016773352332751646, -0.003996981408573987, 4.000497999750166], [0.0005059897117648346, -0.003968371117589949, 4.000497999750166], [0.00084060255187536, -0.003911186810306379, 4.000497999750166], [0.0011691626841349877, -0.0038258402388704404, 4.000497999750166], [0.001489304331176538, -0.003712945936109596, 4.000497999750166], [0.0017987223324266522, -0.0035733167906251448, 4.000497999750166], [0.0020951887422751285, -0.0034079581936369945, 4.000497999750166], [0.0023765688722625807, -0.0032180607997249716, 4.000497999750166], [0.0026408366617756305, -0.0030049919535925056, 4.000497999750166], [0.0028860892665738486, -0.0027702858445837653, 4.000497999750166], [0.0031105607601046646, -0.002515632459846042, 4.000497999750166], [0.0033126348489507375, -0.0022428654156794797, 4.000497999750166], [0.0034908565108529815, -0.001953948754693763, 4.000497999750166], [0.0036439424715103753, -0.001650962803838056, 4.000497999750166], [0.0037707904447189734, -0.0013360891951325873, 4.000497999750166], [0.0038704870693170744, -0.0010115951569591884, 4.000497999750166], [0.003942314485787041, -0.0006798171890204122, 4.000497999750166], [0.0039857555051593585, -0.00034314423851469094, 4.000497999750166], [0.004000497333000533, -4.000498666474069e-06, 4.000497999750166]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.830193299722102, 0.002830194243120246, 2.8273659342590705], [2.8197640408303175, 0.24276094791298877, 2.8273659342590705], [2.789031241448992, 0.48094371605504, 2.8273659342590705], [2.738216191241926, 0.7156634780480949, 2.8273659342590705], [2.6676847809057946, 0.9452301484373725, 2.8273659342590705], [2.577944867596306, 1.167990746292623, 2.8273659342590705], [2.469642618133458, 1.3823412973973728, 2.8273659342590705], [2.3435578563164188, 1.586738383568295, 2.8273659342590705], [2.200598447849409, 1.7797102559445188, 2.8273659342590705], [2.0417937633095917, 1.95986743222632, 2.8273659342590705], [1.8682872662264656, 2.125912701558409, 2.8273659342590705], [1.681328279641858, 2.2766504650182653, 2.8273659342590705], [1.4822629904348983, 2.410995344453889, 2.8273659342590705], [1.2725247561847841, 2.5279799976835635, 2.8273659342590705], [1.0536237843661984, 2.626762083784747, 2.8273659342590705], [0.827136258191694, 2.7066303283189552, 2.8273659342590705], [0.5946929873997722, 2.7670096448203547, 2.8273659342590705], [0.35796766570795935, 2.807465275671086, 2.8273659342590705], [0.11866481948238868, 2.827705922547206, 2.8273659342590705], [-0.12149246560124172, 2.8275858438946577, 2.8273659342590705], [-0.36077495153189665, 2.8071059043325195, 2.8273659342590705], [-0.5974596992369504, 2.7664135684273647, 2.8273659342590705], [-0.8298424745008085, 2.70580183888357, 2.8273659342590705], [-1.0562500192003363, 2.6257071467950537, 2.8273659342590705], [-1.2750520994988082, 2.526706209149575, 2.8273659342590705], [-1.4846732442460822, 2.4095118762129286, 2.8273659342590705], [-1.6836040890633617, 2.2749679986937092, 2.8273659342590705], [-1.8704122444301476, 2.124043351647304, 2.8273659342590705], [-2.043752609518375, 1.9578246588696766, 2.8273659342590705], [-2.202377057509602, 1.7775087680083836, 2.8273659342590705], [-2.3451434226566996, 1.584394032733447, 2.8273659342590705], [-2.4710237243792585, 1.379870964020256, 2.8273659342590705], [-2.5791115691756072, 1.1654122178593596, 2.8273659342590705], [-2.6686286770544143, 0.9425619914860459, 2.8273659342590705], [-2.7389304854927152, 0.7129249044815124, 2.8273659342590705], [-2.789510790569385, 0.4781544448065903, 2.8273659342590705], [-2.820005391855868, 0.23994106296165357, 2.8273659342590705], [-2.8301947148193416, -2.1671189794051628e-15, 2.8273659342590705], [-2.8200053918558674, -0.2399410629616579, 2.8273659342590705], [-2.7895107905693846, -0.47815444480659464, 2.8273659342590705], [-2.738930485492714, -0.7129249044815167, 2.8273659342590705], [-2.668628677054413, -0.9425619914860499, 2.8273659342590705], [-2.579111569175605, -1.1654122178593636, 2.8273659342590705], [-2.4710237243792568, -1.3798709640202598, 2.8273659342590705], [-2.3451434226566974, -1.5843940327334505, 2.8273659342590705], [-2.202377057509599, -1.7775087680083872, 2.8273659342590705], [-2.0437526095183722, -1.9578246588696797, 2.8273659342590705], [-1.8704122444301443, -2.1240433516473067, 2.8273659342590705], [-1.6836040890633583, -2.2749679986937115, 2.8273659342590705], [-1.4846732442460786, -2.409511876212931, 2.8273659342590705], [-1.2750520994988042, -2.5267062091495767, 2.8273659342590705], [-1.056250019200332, -2.6257071467950555, 2.8273659342590705], [-0.8298424745008032, -2.7058018388835716, 2.8273659342590705], [-0.5974596992369444, -2.766413568427366, 2.8273659342590705], [-0.3607749515318898, -2.8071059043325204, 2.8273659342590705], [-0.12149246560123425, -2.827585843894658, 2.8273659342590705], [0.11866481948239677, -2.8277059225472057, 2.8273659342590705], [0.357967665707968, -2.807465275671085, 2.8273659342590705], [0.5946929873997813, -2.767009644820353, 2.8273659342590705], [0.8271362581917036, -2.7066303283189526, 2.8273659342590705], [1.053623784366208, -2.626762083784743, 2.8273659342590705], [1.272524756184794, -2.5279799976835586, 2.8273659342590705], [1.4822629904349085, -2.410995344453883, 2.8273659342590705], [1.681328279641868, -2.2766504650182577, 2.8273659342590705], [1.8682872662264756, -2.1259127015584003, 2.8273659342590705], [2.0417937633096015, -1.95986743222631, 2.8273659342590705], [2.2005984478494183, -1.7797102559445075, 2.8273659342590705], [2.343557856316427, -1.5867383835682825, 2.8273659342590705], [2.4696426181334656, -1.3823412973973592, 2.8273659342590705], [2.5779448675963126, -1.1679907462926082, 2.8273659342590705], [2.6676847809058, -0.945230148437357, 2.8273659342590705], [2.73821619124193, -0.7156634780480784, 2.8273659342590705], [2.7890312414489946, -0.48094371605502273, 2.8273659342590705], [2.819764040830319, -0.24276094791297081, 2.8273659342590705], [2.830193299722102, -0.002830194243101775, 2.8273659342590705]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[4.000497999750166, 0.004000499333250033, 2.449599759994493e-16], [3.9857561694520176, 0.34314429570542937, 2.449599759994493e-16], [3.9423151428395284, 0.6798173023233146, 2.449599759994493e-16], [3.8704877143983216, 1.0115953255584242, 2.449599759994493e-16], [3.7707910731841134, 1.3360894178141678, 2.449599759994493e-16], [3.643943078834182, 1.6509630789985763, 2.449599759994493e-16], [3.4908570926624574, 1.9539490803519457, 2.449599759994493e-16], [3.312635401056598, 2.242865789490444, 2.449599759994493e-16], [3.1105612785315055, 2.5156328791181837, 2.449599759994493e-16], [2.886089747588769, 2.7702863062981407, 2.449599759994493e-16], [2.6408371019151113, 3.0049924544245687, 2.449599759994493e-16], [2.3765692683574247, 3.2180613360685113, 2.449599759994493e-16], [2.0951890914732783, 3.407958761630102, 2.449599759994493e-16], [1.7987226322137284, 3.5733173861780196, 2.449599759994493e-16], [1.4893045793939417, 3.7129465549339966, 2.449599759994493e-16], [1.1691628789954442, 3.8258408765105587, 2.449599759994493e-16], [0.8406026919757889, 3.9111874621709264, 2.449599759994493e-16], [0.5059897960964508, 3.9683717789852135, 2.449599759994493e-16], [0.1677335512830955, 3.9969820747376335, 2.449599759994493e-16], [-0.17173044882489366, 3.9968123427234357, 2.449599759994493e-16], [-0.5099579142191567, 3.9678638050877257, 2.449599759994493e-16], [-0.8445134584847773, 3.9103449040254845, 2.449599759994493e-16], [-1.1729881346529172, 3.8246698009061473, 2.449599759994493e-16], [-1.493016780677817, 3.7114553941296995, 2.449599759994493e-16], [-1.802295049643106, 3.571516877187052, 2.449599759994493e-16], [-2.0985960020724512, 3.405861868908591, 2.449599759994493e-16], [-2.37978614087261, 3.2156831581657177, 2.449599759994493e-16], [-2.64384077345026, 3.0023501152666943, 2.449599759994493e-16], [-2.8888585903885966, 2.7673988318885314, 2.449599759994493e-16], [-3.1130753557108406, 2.5125210605417467, 2.449599759994493e-16], [-3.314876610154714, 2.2395520332086933, 2.449599759994493e-16], [-3.4928092959887493, 1.9504572468666348, 2.449599759994493e-16], [-3.6455922196666326, 1.6473183110455953, 2.449599759994493e-16], [-3.7721252769838665, 1.3323179593247954, 2.449599759994493e-16], [-3.871497374311585, 1.0077243326914855, 2.449599759994493e-16], [-3.9429929888711417, 0.675874647928903, 2.449599759994493e-16], [-3.9860973208126143, 0.3391583686281341, 2.449599759994493e-16], [-4.0005, -3.063237816011452e-15, 2.449599759994493e-16], [-3.986097320812614, -0.3391583686281402, 2.449599759994493e-16], [-3.942992988871141, -0.6758746479289091, 2.449599759994493e-16], [-3.8714973743115837, -1.0077243326914915, 2.449599759994493e-16], [-3.7721252769838647, -1.3323179593248011, 2.449599759994493e-16], [-3.64559221966663, -1.647318311045601, 2.449599759994493e-16], [-3.4928092959887467, -1.9504572468666401, 2.449599759994493e-16], [-3.3148766101547107, -2.2395520332086982, 2.449599759994493e-16], [-3.1130753557108366, -2.5125210605417516, 2.449599759994493e-16], [-2.8888585903885926, -2.767398831888536, 2.449599759994493e-16], [-2.643840773450255, -3.0023501152666983, 2.449599759994493e-16], [-2.3797861408726053, -3.2156831581657213, 2.449599759994493e-16], [-2.0985960020724463, -3.405861868908594, 2.449599759994493e-16], [-1.8022950496431005, -3.5715168771870545, 2.449599759994493e-16], [-1.4930167806778105, -3.711455394129702, 2.449599759994493e-16], [-1.1729881346529096, -3.8246698009061495, 2.449599759994493e-16], [-0.8445134584847688, -3.9103449040254867, 2.449599759994493e-16], [-0.509957914219147, -3.967863805087727, 2.449599759994493e-16], [-0.17173044882488311, -3.996812342723436, 2.449599759994493e-16], [0.16773355128310694, -3.996982074737633, 2.449599759994493e-16], [0.505989796096463, -3.968371778985212, 2.449599759994493e-16], [0.8406026919758017, -3.9111874621709237, 2.449599759994493e-16], [1.1691628789954578, -3.8258408765105547, 2.449599759994493e-16], [1.4893045793939554, -3.712946554933991, 2.449599759994493e-16], [1.7987226322137426, -3.5733173861780125, 2.449599759994493e-16], [2.095189091473293, -3.407958761630093, 2.449599759994493e-16], [2.376569268357439, -3.2180613360685006, 2.449599759994493e-16], [2.6408371019151256, -3.0049924544245563, 2.449599759994493e-16], [2.8860897475887826, -2.7702863062981264, 2.449599759994493e-16], [3.1105612785315184, -2.5156328791181677, 2.449599759994493e-16], [3.31263540105661, -2.242865789490426, 2.449599759994493e-16], [3.490857092662468, -1.9539490803519264, 2.449599759994493e-16], [3.6439430788341913, -1.6509630789985554, 2.449599759994493e-16], [3.770791073184121, -1.3360894178141458, 2.449599759994493e-16], [3.870487714398328, -1.011595325558401, 2.449599759994493e-16], [3.9423151428395324, -0.6798173023232902, 2.449599759994493e-16], [3.98575616945202, -0.343144295705404, 2.449599759994493e-16], [4.000497999750166, -0.004000499333223924, 2.449599759994493e-16]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.8301932997221013, 0.0028301942431202447, -2.827365934259071], [2.8197640408303166, 0.2427609479129887, -2.827365934259071], [2.789031241448991, 0.4809437160550399, -2.827365934259071], [2.738216191241925, 0.7156634780480947, -2.827365934259071], [2.6676847809057938, 0.9452301484373723, -2.827365934259071], [2.577944867596305, 1.1679907462926225, -2.827365934259071], [2.4696426181334576, 1.3823412973973723, -2.827365934259071], [2.3435578563164183, 1.5867383835682944, -2.827365934259071], [2.2005984478494085, 1.7797102559445181, -2.827365934259071], [2.041793763309591, 1.9598674322263194, -2.827365934259071], [1.868287266226465, 2.1259127015584087, -2.827365934259071], [1.6813282796418576, 2.2766504650182644, -2.827365934259071], [1.4822629904348978, 2.4109953444538883, -2.827365934259071], [1.2725247561847837, 2.5279799976835626, -2.827365934259071], [1.053623784366198, 2.626762083784746, -2.827365934259071], [0.8271362581916938, 2.7066303283189543, -2.827365934259071], [0.594692987399772, 2.767009644820354, -2.827365934259071], [0.35796766570795924, 2.807465275671085, -2.827365934259071], [0.11866481948238863, 2.827705922547205, -2.827365934259071], [-0.12149246560124168, 2.827585843894657, -2.827365934259071], [-0.36077495153189654, 2.8071059043325186, -2.827365934259071], [-0.5974596992369503, 2.766413568427364, -2.827365934259071], [-0.8298424745008083, 2.7058018388835694, -2.827365934259071], [-1.0562500192003361, 2.625707146795053, -2.827365934259071], [-1.2750520994988077, 2.526706209149574, -2.827365934259071], [-1.4846732442460817, 2.4095118762129277, -2.827365934259071], [-1.6836040890633612, 2.2749679986937084, -2.827365934259071], [-1.8704122444301472, 2.124043351647303, -2.827365934259071], [-2.0437526095183745, 1.9578246588696762, -2.827365934259071], [-2.2023770575096013, 1.7775087680083832, -2.827365934259071], [-2.3451434226566987, 1.5843940327334465, -2.827365934259071], [-2.4710237243792577, 1.3798709640202556, -2.827365934259071], [-2.5791115691756064, 1.1654122178593593, -2.827365934259071], [-2.6686286770544134, 0.9425619914860456, -2.827365934259071], [-2.7389304854927143, 0.7129249044815121, -2.827365934259071], [-2.789510790569384, 0.47815444480659014, -2.827365934259071], [-2.820005391855867, 0.2399410629616535, -2.827365934259071], [-2.8301947148193407, -2.1671189794051624e-15, -2.827365934259071], [-2.8200053918558665, -0.23994106296165782, -2.827365934259071], [-2.7895107905693837, -0.47815444480659447, -2.827365934259071], [-2.7389304854927135, -0.7129249044815165, -2.827365934259071], [-2.668628677054412, -0.9425619914860497, -2.827365934259071], [-2.5791115691756046, -1.1654122178593633, -2.827365934259071], [-2.471023724379256, -1.3798709640202593, -2.827365934259071], [-2.3451434226566965, -1.58439403273345, -2.827365934259071], [-2.2023770575095987, -1.7775087680083865, -2.827365934259071], [-2.043752609518372, -1.9578246588696793, -2.827365934259071], [-1.8704122444301436, -2.1240433516473063, -2.827365934259071], [-1.6836040890633577, -2.274967998693711, -2.827365934259071], [-1.4846732442460782, -2.40951187621293, -2.827365934259071], [-1.2750520994988037, -2.5267062091495758, -2.827365934259071], [-1.0562500192003315, -2.6257071467950546, -2.827365934259071], [-0.829842474500803, -2.7058018388835707, -2.827365934259071], [-0.5974596992369442, -2.766413568427365, -2.827365934259071], [-0.3607749515318897, -2.8071059043325195, -2.827365934259071], [-0.12149246560123421, -2.8275858438946573, -2.827365934259071], [0.11866481948239672, -2.8277059225472048, -2.827365934259071], [0.3579676657079679, -2.8074652756710843, -2.827365934259071], [0.5946929873997812, -2.767009644820352, -2.827365934259071], [0.8271362581917033, -2.7066303283189517, -2.827365934259071], [1.0536237843662077, -2.626762083784742, -2.827365934259071], [1.2725247561847937, -2.5279799976835577, -2.827365934259071], [1.482262990434908, -2.410995344453882, -2.827365934259071], [1.6813282796418676, -2.276650465018257, -2.827365934259071], [1.868287266226475, -2.1259127015584, -2.827365934259071], [2.0417937633096006, -1.9598674322263094, -2.827365934259071], [2.2005984478494174, -1.7797102559445068, -2.827365934259071], [2.3435578563164268, -1.586738383568282, -2.827365934259071], [2.469642618133465, -1.3823412973973588, -2.827365934259071], [2.5779448675963117, -1.1679907462926078, -2.827365934259071], [2.667684780905799, -0.9452301484373568, -2.827365934259071], [2.7382161912419294, -0.7156634780480782, -2.827365934259071], [2.7890312414489937, -0.48094371605502256, -2.827365934259071], [2.819764040830318, -0.24276094791297073, -2.827365934259071], [2.8301932997221013, -0.0028301942431017742, -2.827365934259071]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.004000497332998806, 4.00049866649845e-06, -4.000497999750166], [0.003985755505157635, 0.00034314423851456816, -4.000497999750166], [0.003942314485785335, 0.0006798171890201431, -4.000497999750166], [0.0038704870693153973, 0.001011595156958775, -4.000497999750166], [0.003770790444717338, 0.0013360891951320324, -4.000497999750166], [0.003643942471508793, 0.0016509628038373643, -4.000497999750166], [0.003490856510851464, 0.0019539487546929384, -4.000497999750166], [0.003312634848949295, 0.0022428654156785295, -4.000497999750166], [0.003110560760103309, 0.0025156324598449723, -4.000497999750166], [0.0028860892665725888, 0.0027702858445825835, -4.000497999750166], [0.002640836661774476, 0.0030049919535912206, -4.000497999750166], [0.0023765688722615403, 0.003218060799723593, -4.000497999750166], [0.002095188742274209, 0.003407958193635532, -4.000497999750166], [0.0017987223324258616, 0.003573316790623609, -4.000497999750166], [0.0014893043311758813, 0.003712945936107999, -4.000497999750166], [0.0011691626841344694, 0.003825840238868793, -4.000497999750166], [0.0008406025518749843, 0.003911186810304694, -4.000497999750166], [0.0005059897117646038, 0.003968371117588237, -4.000497999750166], [0.0001677335233274326, 0.003996981408572262, -4.000497999750166], [-0.00017173042020307948, 0.003996811676586353, -4.000497999750166], [-0.0005099578292259551, 0.003967863143775412, -4.000497999750166], [-0.0008445133177321767, 0.003910344252299678, -4.000497999750166], [-0.001172987939154398, 0.003824669163459561, -4.000497999750166], [-0.0014930165318410547, 0.003711454775552229, -4.000497999750166], [-0.0018022947492598348, 0.003571516281932727, -4.000497999750166], [-0.0020985956523055624, 0.003405861301263504, -4.000497999750166], [-0.002379785744240579, 0.0032156826222171633, -4.000497999750166], [-0.0026438403328090114, 0.003002349614873737, -4.000497999750166], [-0.0028888581089109417, 0.002767398370654221, -4.000497999750166], [-0.00311307483686363, 0.0025125206417871727, -4.000497999750166], [-0.0033148760576738752, 0.002239551659949073, -4.000497999750166], [-0.003492808713852388, 0.0019504569217896012, -4.000497999750166], [-0.003645591612066386, 0.001647318036491846, -4.000497999750166], [-0.0037721246482947234, 0.001332317737271238, -4.000497999750166], [-0.0038714967290603836, 0.0010077241647370035, -4.000497999750166], [-0.003942992331703974, 0.0006758745352828422, -4.000497999750166], [-0.003986096656461373, 0.0003391583121015957, -4.000497999750166], [-0.004000499333248306, -3.063237305470519e-18, -4.000497999750166], [-0.003986096656461373, -0.0003391583121016018, -4.000497999750166], [-0.0039429923317039735, -0.0006758745352828482, -4.000497999750166], [-0.0038714967290603823, -0.0010077241647370094, -4.000497999750166], [-0.0037721246482947217, -0.0013323177372712438, -4.000497999750166], [-0.0036455916120663834, -0.0016473180364918517, -4.000497999750166], [-0.003492808713852385, -0.0019504569217896066, -4.000497999750166], [-0.003314876057673872, -0.002239551659949078, -4.000497999750166], [-0.003113074836863626, -0.002512520641787178, -4.000497999750166], [-0.002888858108910938, -0.0027673983706542255, -4.000497999750166], [-0.0026438403328090066, -0.0030023496148737414, -4.000497999750166], [-0.0023797857442405743, -0.0032156826222171668, -4.000497999750166], [-0.0020985956523055576, -0.0034058613012635072, -4.000497999750166], [-0.0018022947492598292, -0.0035715162819327296, -4.000497999750166], [-0.0014930165318410482, -0.0037114547755522317, -4.000497999750166], [-0.0011729879391543907, -0.0038246691634595633, -4.000497999750166], [-0.0008445133177321681, -0.003910344252299681, -4.000497999750166], [-0.0005099578292259454, -0.003967863143775413, -4.000497999750166], [-0.00017173042020306894, -0.003996811676586353, -4.000497999750166], [0.00016773352332744403, -0.003996981408572261, -4.000497999750166], [0.0005059897117646161, -0.003968371117588235, -4.000497999750166], [0.0008406025518749972, -0.003911186810304691, -4.000497999750166], [0.0011691626841344829, -0.003825840238868789, -4.000497999750166], [0.001489304331175895, -0.003712945936107993, -4.000497999750166], [0.0017987223324258757, -0.003573316790623602, -4.000497999750166], [0.002095188742274224, -0.0034079581936355234, -4.000497999750166], [0.0023765688722615546, -0.003218060799723582, -4.000497999750166], [0.0026408366617744904, -0.0030049919535912084, -4.000497999750166], [0.0028860892665726026, -0.002770285844582569, -4.000497999750166], [0.003110560760103322, -0.0025156324598449562, -4.000497999750166], [0.003312634848949307, -0.0022428654156785117, -4.000497999750166], [0.0034908565108514745, -0.001953948754692919, -4.000497999750166], [0.003643942471508802, -0.0016509628038373432, -4.000497999750166], [0.003770790444717346, -0.0013360891951320105, -4.000497999750166], [0.0038704870693154034, -0.0010115951569587517, -4.000497999750166], [0.00394231448578534, -0.0006798171890201187, -4.000497999750166], [0.003985755505157638, -0.0003431442385145428, -4.000497999750166], [0.004000497332998806, -4.000498666472342e-06, -4.000497999750166]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.006000245999834133, 6.000247999916933e-06, 6.00024699987525], [0.005978135100570535, 0.0005146734701032187, 6.00024699987525], [0.005912979000960798, 0.0010196408170028432, 6.00024699987525], [0.0058052468535607395, 0.0015172663018483965, 6.00024699987525], [0.005655714377184096, 0.002003966802423307, 6.00024699987525], [0.005465458271386095, 0.0024762378611997054, 6.00024699987525], [0.005235848463753415, 0.0029306789189729697, 6.00024699987525], [0.004968538245823419, 0.0033640178003826785, 6.00024699987525], [0.004665452368658402, 0.003773134275013451, 6.00024699987525], [0.004328773183791939, 0.004155082524425402, 6.00024699987525], [0.0039609249293386176, 0.004507112353341709, 6.00024699987525], [0.0035645562744140644, 0.004826688992263423, 6.00024699987525], [0.0031425212475531183, 0.005111511348923991, 6.00024699987525], [0.0026978586864499277, 0.005359528577164996, 6.00024699987525], [0.002233770356990861, 0.005568954843929918, 6.00024699987525], [0.001753597899132828, 0.005738282188047091, 6.00024699987525], [0.0012607987656268096, 0.005866291378212941, 6.00024699987525], [0.0007589213268383641, 0.0059520606919932755, 6.00024699987525], [0.0002515793209213503, 0.005994972552629939, 6.00024699987525], [-0.0002575741666851575, 0.005994717975864921, 6.00024699987525], [-0.0007648730070777047, 0.0059512987947628266, 6.00024699987525], [-0.0012666644256279667, 0.005865027646512005, 6.00024699987525], [-0.001759335303565608, 0.005736525721299373, 6.00024699987525], [-0.0022393381940215363, 0.0055667182894680355, 6.00024699987525], [-0.0027032168652045977, 0.005356828039164129, 6.00024699987525], [-0.0031476311867896234, 0.005108366272444736, 6.00024699987525], [-0.0035693811803238847, 0.004823122023238811, 6.00024699987525], [-0.00396543006047847, 0.00450314917551654, 6.00024699987525], [-0.004332926101237435, 0.004150751674421987, 6.00024699987525], [-0.0046692231695785675, 0.003768466936855391, 6.00024699987525], [-0.004971899778794214, 0.003359047580956187, 6.00024699987525], [-0.005238776524259928, 0.0029254416060425217, 6.00024699987525], [-0.005467931776105681, 0.0024707711657204015, 6.00024699987525], [-0.005657715515795572, 0.0019983100870054234, 6.00024699987525], [-0.005806761216986526, 0.0015114602973292878, 6.00024699987525], [-0.005913995685118606, 0.0010137273291670101, 6.00024699987525], [-0.005978646784887558, 0.0005086950786622868, 6.00024699987525], [-0.006000248999958383, -4.594473101401679e-18, 6.00024699987525], [-0.005978646784887558, -0.000508695078662296, 6.00024699987525], [-0.005913995685118605, -0.0010137273291670195, 6.00024699987525], [-0.005806761216986523, -0.0015114602973292967, 6.00024699987525], [-0.005657715515795569, -0.001998310087005432, 6.00024699987525], [-0.005467931776105676, -0.00247077116572041, 6.00024699987525], [-0.005238776524259923, -0.0029254416060425295, 6.00024699987525], [-0.00497189977879421, -0.003359047580956194, 6.00024699987525], [-0.004669223169578561, -0.003768466936855398, 6.00024699987525], [-0.004332926101237429, -0.004150751674421993, 6.00024699987525], [-0.003965430060478462, -0.004503149175516546, 6.00024699987525], [-0.003569381180323877, -0.004823122023238816, 6.00024699987525], [-0.0031476311867896156, -0.00510836627244474, 6.00024699987525], [-0.0027032168652045894, -0.005356828039164133, 6.00024699987525], [-0.0022393381940215267, -0.00556671828946804, 6.00024699987525], [-0.0017593353035655968, -0.005736525721299376, 6.00024699987525], [-0.0012666644256279537, -0.005865027646512008, 6.00024699987525], [-0.0007648730070776902, -0.00595129879476283, 6.00024699987525], [-0.00025757416668514165, -0.005994717975864922, 6.00024699987525], [0.00025157932092136743, -0.005994972552629939, 6.00024699987525], [0.0007589213268383824, -0.005952060691993273, 6.00024699987525], [0.0012607987656268291, -0.005866291378212937, 6.00024699987525], [0.0017535978991328487, -0.005738282188047085, 6.00024699987525], [0.0022337703569908812, -0.0055689548439299096, 6.00024699987525], [0.002697858686449949, -0.005359528577164986, 6.00024699987525], [0.0031425212475531404, -0.005111511348923977, 6.00024699987525], [0.0035645562744140856, -0.004826688992263407, 6.00024699987525], [0.003960924929338639, -0.004507112353341691, 6.00024699987525], [0.00432877318379196, -0.004155082524425381, 6.00024699987525], [0.004665452368658422, -0.0037731342750134266, 6.00024699987525], [0.004968538245823438, -0.0033640178003826516, 6.00024699987525], [0.005235848463753432, -0.0029306789189729406, 6.00024699987525], [0.005465458271386109, -0.0024762378611996737, 6.00024699987525], [0.005655714377184107, -0.002003966802423274, 6.00024699987525], [0.005805246853560749, -0.0015172663018483618, 6.00024699987525], [0.005912979000960804, -0.0010196408170028066, 6.00024699987525], [0.005978135100570539, -0.0005146734701031806, 6.00024699987525], [0.006000245999834133, -6.0002479998777725e-06, 6.00024699987525]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[4.244936219636931, 0.004244937634616237, 4.240695524818895], [4.229293634793679, 0.36411108054365976, 4.240695524818895], [4.183198276841472, 0.7213554636318594, 4.240695524818895], [4.106982052618264, 1.0734057703182305, 4.240695524818895], [4.001193752438443, 1.4177270836548794, 4.240695524818895], [3.8665950985613637, 1.7518401388432223, 4.240695524818895], [3.7041552604562638, 2.073339175030268, 4.240695524818895], [3.515043876356103, 2.3799092578441847, 4.240695524818895], [3.300622631348186, 2.669342947939282, 4.240695524818895], [3.062435452643014, 2.9395561955295526, 4.240695524818895], [2.80219739261976, 3.1886033464631534, 4.240695524818895], [2.521782279695303, 3.4146911517874883, 4.240695524818895], [2.223209225936007, 3.6161916799298703, 4.240695524818895], [1.9086280885633673, 3.7916540385203854, 4.240695524818895], [1.5803039900370657, 3.9398148214546747, 4.240695524818895], [1.2406010081776557, 4.059607205973206, 4.240695524818895], [0.8919651537671499, 4.150168634254052, 4.240695524818895], [0.5369067581962713, 4.2108470242083325, 4.240695524818895], [0.17798239797505375, 4.241205464757873, 4.240695524818895], [-0.18222351374174492, 4.241025361787006, 4.240695524818895], [-0.5411173360653075, 4.210308012116285, 4.240695524818895], [-0.8961148757271621, 4.149274594164803, 4.240695524818895], [-1.2446599944065682, 4.058364575368365, 4.240695524818895], [-1.5842430140499484, 3.9382325478207774, 4.240695524818895], [-1.912418787655974, 3.7897435149230687, 4.240695524818895], [-2.2268243054087127, 3.613966662978784, 4.240695524818895], [-2.525195709386936, 3.412167662582659, 4.240695524818895], [-2.8053845943362066, 3.1857995552360294, 4.240695524818895], [-3.0653734771310157, 2.936492290809343, 4.240695524818895], [-3.303290323540055, 2.6660409911866774, 4.240695524818895], [-3.517422027695503, 2.376393024599141, 4.240695524818895], [-3.706226747208261, 2.0696339837176705, 4.240695524818895], [-3.8683450051108452, 1.747972668469097, 4.240695524818895], [-4.002609478689101, 1.4137251817058234, 4.240695524818895], [-4.1080534047188255, 1.0692982522472678, 4.240695524818895], [-4.183917540585915, 0.7171719053745139, 4.240695524818895], [-4.229655631166897, 0.3598816055582207, 4.240695524818895], [-4.244938342105925, -3.2504076130923205e-15, 4.240695524818895], [-4.229655631166897, -0.3598816055582271, 4.240695524818895], [-4.183917540585914, -0.7171719053745206, 4.240695524818895], [-4.108053404718825, -1.069298252247274, 4.240695524818895], [-4.0026094786890996, -1.4137251817058294, 4.240695524818895], [-3.868345005110842, -1.747972668469103, 4.240695524818895], [-3.706226747208258, -2.0696339837176763, 4.240695524818895], [-3.5174220276955, -2.3763930245991465, 4.240695524818895], [-3.3032903235400504, -2.6660409911866827, 4.240695524818895], [-3.0653734771310117, -2.9364922908093476, 4.240695524818895], [-2.805384594336201, -3.185799555236034, 4.240695524818895], [-2.5251957093869306, -3.412167662582663, 4.240695524818895], [-2.2268243054087073, -3.613966662978787, 4.240695524818895], [-1.912418787655968, -3.789743514923072, 4.240695524818895], [-1.5842430140499415, -3.938232547820781, 4.240695524818895], [-1.2446599944065602, -4.058364575368366, 4.240695524818895], [-0.896114875727153, -4.1492745941648055, 4.240695524818895], [-0.5411173360652972, -4.210308012116287, 4.240695524818895], [-0.18222351374173373, -4.241025361787007, 4.240695524818895], [0.17798239797506588, -4.241205464757873, 4.240695524818895], [0.5369067581962842, -4.210847024208331, 4.240695524818895], [0.8919651537671636, -4.150168634254049, 4.240695524818895], [1.2406010081776702, -4.059607205973202, 4.240695524818895], [1.58030399003708, -3.939814821454669, 4.240695524818895], [1.9086280885633824, -3.791654038520378, 4.240695524818895], [2.223209225936023, -3.6161916799298606, 4.240695524818895], [2.521782279695318, -3.4146911517874767, 4.240695524818895], [2.802197392619775, -3.1886033464631405, 4.240695524818895], [3.0624354526430286, -2.9395561955295375, 4.240695524818895], [3.3006226313481997, -2.669342947939265, 4.240695524818895], [3.515043876356116, -2.379909257844166, 4.240695524818895], [3.704155260456275, -2.073339175030247, 4.240695524818895], [3.866595098561373, -1.7518401388432, 4.240695524818895], [4.001193752438452, -1.4177270836548561, 4.240695524818895], [4.10698205261827, -1.0734057703182058, 4.240695524818895], [4.183198276841477, -0.7213554636318336, 4.240695524818895], [4.229293634793682, -0.3641110805436328, 4.240695524818895], [4.244936219636931, -0.004244937634588533, 4.240695524818895]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[6.00024699987525, 0.006000248999958383, 3.6740934782919526e-16], [5.978136096926502, 0.5146735558821404, 3.6740934782919526e-16], [5.912979986457413, 1.0196409869429992, 3.6740934782919526e-16], [5.805247821101995, 1.517266554726143, 3.6740934782919526e-16], [5.655715319803268, 2.003967136417813, 3.6740934782919526e-16], [5.4654591822959135, 2.4762382739060635, 3.6740934782919526e-16], [5.235849336394928, 2.9306794074195133, 3.6740934782919526e-16], [4.968539073913223, 3.364018361052377, 3.6740934782919526e-16], [4.6654531462338875, 3.7731349038692366, 3.6740934782919526e-16], [4.328773905254221, 4.155083216939237, 3.6740934782919526e-16], [3.9609255894928497, 4.507113104527189, 3.6740934782919526e-16], [3.564556868506846, 4.826689796711682, 3.6740934782919526e-16], [3.1425217713067206, 5.111512200842649, 3.6740934782919526e-16], [2.6978591360930944, 5.359529470419863, 3.6740934782919526e-16], [2.233770729285964, 5.568955772089167, 3.6740934782919526e-16], [1.7535981913991787, 5.738283144427567, 3.6740934782919526e-16], [1.2607989757599618, 5.866292355928285, 3.6740934782919526e-16], [0.7589214533252666, 5.952061684003507, 3.6740934782919526e-16], [0.251579362851242, 5.994973551792147, 3.6740934782919526e-16], [-0.25757420961419025, 5.9947189749847, 3.6740934782919526e-16], [-0.7648731345565541, 5.951299786646075, 3.6740934782919526e-16], [-1.2666646367387289, 5.865028624016726, 3.6740934782919526e-16], [-1.759335596788193, 5.736526677387104, 3.6740934782919526e-16], [-2.239338567244612, 5.5667192172545255, 3.6740934782919526e-16], [-2.7032173157407944, 5.356828931968906, 3.6740934782919526e-16], [-3.147631711394882, 5.108367123839214, 3.6740934782919526e-16], [-3.5693817752208172, 4.8231228270925754, 3.6740934782919526e-16], [-3.9654307213835573, 4.50314992604149, 3.6740934782919526e-16], [-4.33292682339187, 4.1507523662140136, 3.6740934782919526e-16], [-4.66922394778252, 3.768467564933287, 3.6740934782919526e-16], [-4.971900607444274, 3.3590481407975155, 3.6740934782919526e-16], [-5.23877739738945, 2.9254420936161796, 3.6740934782919526e-16], [-5.46793268742775, 2.470771577515644, 3.6740934782919526e-16], [-5.657716458748268, 1.9983104200571435, 3.6740934782919526e-16], [-5.806762184780174, 1.5114605492393667, 3.6740934782919526e-16], [-5.913996670784669, 1.0137274981215847, 3.6740934782919526e-16], [-5.978647781328806, 0.5086951634448098, 3.6740934782919526e-16], [-6.000249999999999, -4.594473867147285e-15, 3.6740934782919526e-16], [-5.978647781328806, -0.5086951634448189, 3.6740934782919526e-16], [-5.913996670784668, -1.013727498121594, 3.6740934782919526e-16], [-5.8067621847801725, -1.5114605492393756, 3.6740934782919526e-16], [-5.657716458748265, -1.9983104200571522, 3.6740934782919526e-16], [-5.467932687427745, -2.4707715775156522, 3.6740934782919526e-16], [-5.238777397389446, -2.9254420936161876, 3.6740934782919526e-16], [-4.97190060744427, -3.359048140797523, 3.6740934782919526e-16], [-4.6692239477825135, -3.768467564933294, 3.6740934782919526e-16], [-4.332926823391864, -4.15075236621402, 3.6740934782919526e-16], [-3.96543072138355, -4.503149926041496, 3.6740934782919526e-16], [-3.5693817752208097, -4.823122827092581, 3.6740934782919526e-16], [-3.1476317113948746, -5.108367123839218, 3.6740934782919526e-16], [-2.703217315740786, -5.35682893196891, 3.6740934782919526e-16], [-2.2393385672446025, -5.56671921725453, 3.6740934782919526e-16], [-1.7593355967881816, -5.736526677387108, 3.6740934782919526e-16], [-1.266664636738716, -5.8650286240167295, 3.6740934782919526e-16], [-0.7648731345565396, -5.951299786646078, 3.6740934782919526e-16], [-0.25757420961417443, -5.994718974984701, 3.6740934782919526e-16], [0.25157936285125915, -5.994973551792147, 3.6740934782919526e-16], [0.7589214533252849, -5.952061684003504, 3.6740934782919526e-16], [1.2607989757599811, -5.86629235592828, 3.6740934782919526e-16], [1.7535981913991991, -5.738283144427561, 3.6740934782919526e-16], [2.2337707292859843, -5.568955772089159, 3.6740934782919526e-16], [2.6978591360931157, -5.359529470419853, 3.6740934782919526e-16], [3.142521771306743, -5.111512200842635, 3.6740934782919526e-16], [3.5645568685068674, -4.826689796711666, 3.6740934782919526e-16], [3.960925589492871, -4.50711310452717, 3.6740934782919526e-16], [4.328773905254241, -4.155083216939215, 3.6740934782919526e-16], [4.665453146233907, -3.7731349038692126, 3.6740934782919526e-16], [4.968539073913242, -3.3640183610523504, 3.6740934782919526e-16], [5.235849336394944, -2.930679407419484, 3.6740934782919526e-16], [5.465459182295927, -2.476238273906032, 3.6740934782919526e-16], [5.65571531980328, -2.00396713641778, 3.6740934782919526e-16], [5.805247821102004, -1.5172665547261082, 3.6740934782919526e-16], [5.912979986457419, -1.0196409869429626, 3.6740934782919526e-16], [5.978136096926505, -0.5146735558821023, 3.6740934782919526e-16], [6.00024699987525, -0.006000248999919223, 3.6740934782919526e-16]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[4.24493621963693, 0.004244937634616236, -4.240695524818895], [4.229293634793677, 0.36411108054365965, -4.240695524818895], [4.1831982768414715, 0.7213554636318592, -4.240695524818895], [4.106982052618263, 1.0734057703182303, -4.240695524818895], [4.001193752438442, 1.417727083654879, -4.240695524818895], [3.8665950985613624, 1.7518401388432217, -4.240695524818895], [3.7041552604562624, 2.0733391750302674, -4.240695524818895], [3.515043876356102, 2.3799092578441843, -4.240695524818895], [3.300622631348185, 2.669342947939281, -4.240695524818895], [3.062435452643013, 2.9395561955295517, -4.240695524818895], [2.802197392619759, 3.1886033464631525, -4.240695524818895], [2.521782279695302, 3.414691151787487, -4.240695524818895], [2.2232092259360066, 3.616191679929869, -4.240695524818895], [1.9086280885633666, 3.7916540385203845, -4.240695524818895], [1.5803039900370652, 3.9398148214546733, -4.240695524818895], [1.2406010081776555, 4.059607205973205, -4.240695524818895], [0.8919651537671496, 4.150168634254051, -4.240695524818895], [0.5369067581962711, 4.210847024208332, -4.240695524818895], [0.1779823979750537, 4.241205464757872, -4.240695524818895], [-0.18222351374174486, 4.241025361787005, -4.240695524818895], [-0.5411173360653073, 4.2103080121162835, -4.240695524818895], [-0.8961148757271618, 4.149274594164802, -4.240695524818895], [-1.2446599944065677, 4.058364575368363, -4.240695524818895], [-1.584243014049948, 3.9382325478207765, -4.240695524818895], [-1.9124187876559733, 3.7897435149230674, -4.240695524818895], [-2.226824305408712, 3.6139666629787826, -4.240695524818895], [-2.525195709386935, 3.4121676625826582, -4.240695524818895], [-2.8053845943362057, 3.185799555236028, -4.240695524818895], [-3.065373477131015, 2.9364922908093423, -4.240695524818895], [-3.303290323540054, 2.6660409911866765, -4.240695524818895], [-3.5174220276955017, 2.3763930245991403, -4.240695524818895], [-3.7062267472082597, 2.06963398371767, -4.240695524818895], [-3.868345005110844, 1.7479726684690964, -4.240695524818895], [-4.0026094786890996, 1.413725181705823, -4.240695524818895], [-4.108053404718825, 1.0692982522472676, -4.240695524818895], [-4.183917540585913, 0.7171719053745137, -4.240695524818895], [-4.229655631166895, 0.3598816055582206, -4.240695524818895], [-4.2449383421059235, -3.2504076130923193e-15, -4.240695524818895], [-4.229655631166895, -0.359881605558227, -4.240695524818895], [-4.183917540585913, -0.7171719053745204, -4.240695524818895], [-4.108053404718824, -1.0692982522472738, -4.240695524818895], [-4.002609478689098, -1.413725181705829, -4.240695524818895], [-3.868345005110841, -1.7479726684691024, -4.240695524818895], [-3.7062267472082566, -2.069633983717676, -4.240695524818895], [-3.5174220276954986, -2.3763930245991456, -4.240695524818895], [-3.3032903235400495, -2.666040991186682, -4.240695524818895], [-3.0653734771310104, -2.9364922908093467, -4.240695524818895], [-2.8053845943362, -3.1857995552360325, -4.240695524818895], [-2.5251957093869297, -3.4121676625826622, -4.240695524818895], [-2.2268243054087065, -3.6139666629787857, -4.240695524818895], [-1.9124187876559675, -3.7897435149230705, -4.240695524818895], [-1.584243014049941, -3.9382325478207796, -4.240695524818895], [-1.2446599944065597, -4.0583645753683655, -4.240695524818895], [-0.8961148757271526, -4.149274594164804, -4.240695524818895], [-0.5411173360652971, -4.210308012116285, -4.240695524818895], [-0.18222351374173365, -4.241025361787005, -4.240695524818895], [0.17798239797506582, -4.241205464757872, -4.240695524818895], [0.5369067581962841, -4.21084702420833, -4.240695524818895], [0.8919651537671633, -4.150168634254047, -4.240695524818895], [1.24060100817767, -4.059607205973201, -4.240695524818895], [1.5803039900370797, -3.939814821454668, -4.240695524818895], [1.9086280885633817, -3.791654038520377, -4.240695524818895], [2.223209225936022, -3.6161916799298597, -4.240695524818895], [2.521782279695317, -3.414691151787476, -4.240695524818895], [2.802197392619774, -3.188603346463139, -4.240695524818895], [3.0624354526430277, -2.9395561955295366, -4.240695524818895], [3.3006226313481988, -2.6693429479392643, -4.240695524818895], [3.515043876356115, -2.379909257844165, -4.240695524818895], [3.7041552604562735, -2.0733391750302466, -4.240695524818895], [3.8665950985613717, -1.7518401388431994, -4.240695524818895], [4.00119375243845, -1.4177270836548557, -4.240695524818895], [4.106982052618269, -1.0734057703182056, -4.240695524818895], [4.183198276841476, -0.7213554636318333, -4.240695524818895], [4.22929363479368, -0.36411108054363267, -4.240695524818895], [4.24493621963693, -0.004244937634588531, -4.240695524818895]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.006000245999831543, 6.000247999914343e-06, -6.00024699987525], [0.005978135100567954, 0.0005146734701029965, -6.00024699987525], [0.005912979000958244, 0.001019640817002403, -6.00024699987525], [0.005805246853558234, 0.0015172663018477414, -6.00024699987525], [0.005655714377181654, 0.0020039668024224417, -6.00024699987525], [0.005465458271383736, 0.0024762378611986363, -6.00024699987525], [0.005235848463751155, 0.0029306789189717047, -6.00024699987525], [0.004968538245821274, 0.003364017800381226, -6.00024699987525], [0.004665452368656388, 0.003773134275011822, -6.00024699987525], [0.004328773183790071, 0.004155082524423608, -6.00024699987525], [0.003960924929336908, 0.0045071123533397634, -6.00024699987525], [0.0035645562744125257, 0.004826688992261339, -6.00024699987525], [0.0031425212475517618, 0.005111511348921785, -6.00024699987525], [0.002697858686448763, 0.005359528577162683, -6.00024699987525], [0.002233770356989897, 0.005568954843927514, -6.00024699987525], [0.001753597899132071, 0.005738282188044614, -6.00024699987525], [0.0012607987656262653, 0.005866291378210408, -6.00024699987525], [0.0007589213268380364, 0.005952060691990706, -6.00024699987525], [0.00025157932092124166, 0.0059949725526273505, -6.00024699987525], [-0.00025757416668504624, 0.005994717975862333, -6.00024699987525], [-0.0007648730070773745, 0.0059512987947602574, -6.00024699987525], [-0.0012666644256274198, 0.005865027646509472, -6.00024699987525], [-0.0017593353035648487, 0.005736525721296896, -6.00024699987525], [-0.0022393381940205696, 0.005566718289465632, -6.00024699987525], [-0.0027032168652034306, 0.005356828039161815, -6.00024699987525], [-0.0031476311867882642, 0.005108366272442531, -6.00024699987525], [-0.0035693811803223434, 0.0048231220232367285, -6.00024699987525], [-0.003965430060476758, 0.004503149175514596, -6.00024699987525], [-0.004332926101235565, 0.004150751674420195, -6.00024699987525], [-0.004669223169576552, 0.003768466936853764, -6.00024699987525], [-0.004971899778792068, 0.0033590475809547366, -6.00024699987525], [-0.005238776524257666, 0.002925441606041259, -6.00024699987525], [-0.00546793177610332, 0.0024707711657193346, -6.00024699987525], [-0.005657715515793129, 0.0019983100870045608, -6.00024699987525], [-0.005806761216984018, 0.0015114602973286353, -6.00024699987525], [-0.005913995685116053, 0.0010137273291665725, -6.00024699987525], [-0.005978646784884978, 0.0005086950786620672, -6.00024699987525], [-0.006000248999955792, -4.594473101399695e-18, -6.00024699987525], [-0.005978646784884978, -0.0005086950786620763, -6.00024699987525], [-0.0059139956851160524, -0.0010137273291665819, -6.00024699987525], [-0.005806761216984016, -0.0015114602973286442, -6.00024699987525], [-0.005657715515793127, -0.0019983100870045695, -6.00024699987525], [-0.005467931776103316, -0.0024707711657193433, -6.00024699987525], [-0.005238776524257661, -0.0029254416060412666, -6.00024699987525], [-0.004971899778792064, -0.003359047580954744, -6.00024699987525], [-0.004669223169576546, -0.003768466936853771, -6.00024699987525], [-0.004332926101235559, -0.004150751674420201, -6.00024699987525], [-0.003965430060476751, -0.0045031491755146025, -6.00024699987525], [-0.003569381180322336, -0.004823122023236735, -6.00024699987525], [-0.003147631186788257, -0.005108366272442535, -6.00024699987525], [-0.002703216865203422, -0.005356828039161821, -6.00024699987525], [-0.0022393381940205596, -0.005566718289465637, -6.00024699987525], [-0.0017593353035648372, -0.005736525721296899, -6.00024699987525], [-0.0012666644256274068, -0.005865027646509475, -6.00024699987525], [-0.00076487300707736, -0.00595129879476026, -6.00024699987525], [-0.00025757416668503047, -0.005994717975862334, -6.00024699987525], [0.00025157932092125884, -0.0059949725526273505, -6.00024699987525], [0.0007589213268380547, -0.005952060691990704, -6.00024699987525], [0.0012607987656262846, -0.005866291378210404, -6.00024699987525], [0.0017535978991320914, -0.005738282188044607, -6.00024699987525], [0.002233770356989917, -0.005568954843927505, -6.00024699987525], [0.002697858686448784, -0.0053595285771626715, -6.00024699987525], [0.003142521247551784, -0.005111511348921771, -6.00024699987525], [0.003564556274412547, -0.0048266889922613234, -6.00024699987525], [0.003960924929336929, -0.004507112353339744, -6.00024699987525], [0.004328773183790091, -0.004155082524423587, -6.00024699987525], [0.004665452368656407, -0.0037731342750117977, -6.00024699987525], [0.004968538245821292, -0.003364017800381199, -6.00024699987525], [0.005235848463751171, -0.002930678918971675, -6.00024699987525], [0.005465458271383749, -0.0024762378611986047, -6.00024699987525], [0.005655714377181665, -0.0020039668024224087, -6.00024699987525], [0.005805246853558242, -0.0015172663018477067, -6.00024699987525], [0.005912979000958251, -0.0010196408170023664, -6.00024699987525], [0.005978135100567958, -0.0005146734701029584, -6.00024699987525], [0.006000245999831543, -6.000247999875182e-06, -6.00024699987525]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.007999994666667733, 7.999997333333687e-06, 7.9999960000003325], [0.007970514695981715, 0.0006862027016917211, 7.9999960000003325], [0.007883643516134558, 0.0013594644449852497, 7.9999960000003325], [0.007740006637804411, 0.002022937446737581, 7.9999960000003325], [0.007540638309649225, 0.002671844409714004, 7.9999960000003325], [0.0072869740712618244, 0.0033015129185613333, 7.9999960000003325], [0.00698084041665386, 0.0039074090832521575, 7.9999960000003325], [0.006624441642696113, 0.004485170185085859, 7.9999960000003325], [0.006220343977212152, 0.0050306360901808435, 7.9999960000003325], [0.005771457101010043, 0.0055398792042670245, 7.9999960000003325], [0.005281013196901619, 0.006009232753090899, 7.9999960000003325], [0.004752543676565562, 0.006435317184801863, 7.9999960000003325], [0.004189853752831122, 0.006815064504210979, 7.9999960000003325], [0.0035969950404732168, 0.00714574036370484, 7.9999960000003325], [0.0029782363828051977, 0.007424963751750235, 7.9999960000003325], [0.0023380331141306817, 0.007650724137223736, 7.9999960000003325], [0.0016809949793782722, 0.007821395946119499, 7.9999960000003325], [0.0010118529419119056, 0.007935750266396601, 7.9999960000003325], [0.0003354251185151956, 0.00799296369668589, 7.9999960000003325], [-0.00034341791316716135, 0.007992624275141764, 7.9999960000003325], [-0.0010197881849292342, 0.00793473444574853, 7.9999960000003325], [-0.0016888155335233921, 0.007819711040722642, 7.9999960000003325], [-0.0023456826679763114, 0.007648382279137532, 7.9999960000003325], [-0.002985659856201373, 0.00742198180338224, 7.9999960000003325], [-0.003604138981148582, 0.0071421397963939886, 7.9999960000003325], [-0.0041966667212727776, 0.006810871243624496, 7.9999960000003325], [-0.004758976616406162, 0.00643056142425907, 7.9999960000003325], [-0.005287019788146787, 0.006003948736158046, 7.9999960000003325], [-0.005776994093562682, 0.005534104978188558, 7.9999960000003325], [-0.0062253715022921605, 0.005024413231922524, 7.9999960000003325], [-0.006628923499913123, 0.0044785435019623334, 7.9999960000003325], [-0.006984744334665958, 0.0039004262902946, 7.9999960000003325], [-0.007290271940143402, 0.0032942242949482456, 7.9999960000003325], [-0.007543306383294791, 0.0026643024367390337, 7.9999960000003325], [-0.0077420257049109955, 0.0020151964299211364, 7.9999960000003325], [-0.007884999038531536, 0.0013515801230508865, 7.9999960000003325], [-0.007971196913312023, 0.0006782318452228313, 7.9999960000003325], [-0.007999998666666732, -6.1257088973315165e-18, 7.9999960000003325], [-0.007971196913312023, -0.0006782318452228436, 7.9999960000003325], [-0.007884999038531534, -0.0013515801230508987, 7.9999960000003325], [-0.007742025704910993, -0.0020151964299211485, 7.9999960000003325], [-0.007543306383294788, -0.0026643024367390454, 7.9999960000003325], [-0.0072902719401433955, -0.003294224294948257, 7.9999960000003325], [-0.006984744334665953, -0.00390042629029461, 7.9999960000003325], [-0.006628923499913117, -0.004478543501962343, 7.9999960000003325], [-0.006225371502292153, -0.005024413231922533, 7.9999960000003325], [-0.005776994093562674, -0.005534104978188566, 7.9999960000003325], [-0.0052870197881467774, -0.006003948736158054, 7.9999960000003325], [-0.0047589766164061525, -0.006430561424259078, 7.9999960000003325], [-0.004196666721272767, -0.006810871243624502, 7.9999960000003325], [-0.003604138981148571, -0.007142139796393994, 7.9999960000003325], [-0.00298565985620136, -0.0074219818033822455, 7.9999960000003325], [-0.0023456826679762966, -0.0076483822791375364, 7.9999960000003325], [-0.001688815533523375, -0.007819711040722647, 7.9999960000003325], [-0.001019788184929215, -0.007934734445748532, 7.9999960000003325], [-0.00034341791316714026, -0.007992624275141766, 7.9999960000003325], [0.00033542511851521845, -0.007992963696685888, 7.9999960000003325], [0.00101185294191193, -0.007935750266396598, 7.9999960000003325], [0.0016809949793782978, -0.007821395946119494, 7.9999960000003325], [0.002338033114130709, -0.007650724137223728, 7.9999960000003325], [0.002978236382805225, -0.0074249637517502225, 7.9999960000003325], [0.0035969950404732454, -0.007145740363704826, 7.9999960000003325], [0.004189853752831152, -0.006815064504210962, 7.9999960000003325], [0.004752543676565591, -0.0064353171848018425, 7.9999960000003325], [0.005281013196901648, -0.006009232753090875, 7.9999960000003325], [0.005771457101010071, -0.005539879204266997, 7.9999960000003325], [0.006220343977212178, -0.005030636090180811, 7.9999960000003325], [0.006624441642696137, -0.0044851701850858235, 7.9999960000003325], [0.006980840416653881, -0.0039074090832521184, 7.9999960000003325], [0.007286974071261843, -0.0033015129185612916, 7.9999960000003325], [0.00754063830964924, -0.0026718444097139603, 7.9999960000003325], [0.007740006637804423, -0.0020229374467375344, 7.9999960000003325], [0.007883643516134565, -0.001359464444985201, 7.9999960000003325], [0.007970514695981718, -0.0006862027016916704, 7.9999960000003325], [0.007999994666667733, -7.999997333281476e-06, 7.9999960000003325]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[5.65967913955176, 0.005659681026112227, 5.654025115378718], [5.63882322875704, 0.4854612131743307, 5.654025115378718], [5.577365312233954, 0.9617672112086788, 5.654025115378718], [5.475747913994602, 1.4311480625883661, 5.654025115378718], [5.334702723971092, 1.890224018872386, 5.654025115378718], [5.155245329526421, 2.3356895313938213, 5.654025115378718], [4.938667902779069, 2.7643370526631625, 5.654025115378718], [4.686529896395788, 3.1730801321200746, 5.654025115378718], [4.400646814846962, 3.5589756399340455, 5.654025115378718], [4.083077141976436, 3.9192449588327856, 5.654025115378718], [3.736107519013054, 4.2512939913678975, 5.654025115378718], [3.362236279748747, 4.552731838556711, 5.654025115378718], [2.964155461437116, 4.8213880154058515, 5.654025115378718], [2.5447314209419503, 5.055328079357207, 5.654025115378718], [2.106984195707933, 5.252867559124603, 5.654025115378718], [1.6540657581636173, 5.412584083627457, 5.654025115378718], [1.1892373201345277, 5.533327623687748, 5.654025115378718], [0.7158458506845831, 5.614228772745579, 5.654025115378718], [0.23729997646771883, 5.65470500696854, 5.654025115378718], [-0.24295456188224812, 5.654464879679355, 5.654025115378718], [-0.7214597205987183, 5.6135101199000506, 5.654025115378718], [-1.1947700522173736, 5.532135619902242, 5.654025115378718], [-1.6594775143123277, 5.4109273118531585, 5.654025115378718], [-2.11223600889956, 5.250757948846501, 5.654025115378718], [-2.5497854758131395, 5.0527808206965625, 5.654025115378718], [-2.9689753665713425, 4.818421449744639, 5.654025115378718], [-3.3667873297105095, 4.549367326471609, 5.654025115378718], [-3.7403569442422646, 4.247555758824754, 5.654025115378718], [-4.0869943447436565, 3.9151599227490093, 5.654025115378718], [-4.404203589570508, 3.554573214364971, 5.654025115378718], [-4.689700632734307, 3.168392016464835, 5.654025115378718], [-4.941429770037263, 2.759397003415085, 5.654025115378718], [-5.157578441046083, 2.3305331190788343, 5.654025115378718], [-5.3365902803237875, 1.8848883719256009, 5.654025115378718], [-5.477176323944937, 1.425671600013023, 5.654025115378718], [-5.578324290602445, 0.9561893659424378, 5.654025115378718], [-5.6393058704779255, 0.47982214815478774, 5.654025115378718], [-5.6596819693925084, -4.3336962467794786e-15, 5.654025115378718], [-5.639305870477925, -0.4798221481547964, 5.654025115378718], [-5.578324290602443, -0.9561893659424464, 5.654025115378718], [-5.477176323944935, -1.4256716000130314, 5.654025115378718], [-5.336590280323785, -1.884888371925609, 5.654025115378718], [-5.15757844104608, -2.3305331190788423, 5.654025115378718], [-4.941429770037259, -2.7593970034150925, 5.654025115378718], [-4.6897006327343025, -3.1683920164648423, 5.654025115378718], [-4.404203589570502, -3.5545732143649778, 5.654025115378718], [-4.086994344743651, -3.9151599227490155, 5.654025115378718], [-3.740356944242258, -4.24755575882476, 5.654025115378718], [-3.3667873297105024, -4.549367326471614, 5.654025115378718], [-2.9689753665713354, -4.818421449744643, 5.654025115378718], [-2.5497854758131315, -5.052780820696566, 5.654025115378718], [-2.112236008899551, -5.2507579488465055, 5.654025115378718], [-1.659477514312317, -5.410927311853161, 5.654025115378718], [-1.1947700522173617, -5.5321356199022444, 5.654025115378718], [-0.7214597205987047, -5.613510119900053, 5.654025115378718], [-0.24295456188223322, -5.654464879679356, 5.654025115378718], [0.237299976467735, -5.65470500696854, 5.654025115378718], [0.7158458506846004, -5.614228772745577, 5.654025115378718], [1.1892373201345459, -5.533327623687745, 5.654025115378718], [1.6540657581636367, -5.4125840836274515, 5.654025115378718], [2.1069841957079523, -5.252867559124595, 5.654025115378718], [2.5447314209419702, -5.055328079357197, 5.654025115378718], [2.964155461437137, -4.821388015405839, 5.654025115378718], [3.3622362797487675, -4.552731838556696, 5.654025115378718], [3.736107519013074, -4.25129399136788, 5.654025115378718], [4.083077141976456, -3.9192449588327656, 5.654025115378718], [4.40064681484698, -3.558975639934023, 5.654025115378718], [4.686529896395805, -3.1730801321200497, 5.654025115378718], [4.938667902779084, -2.7643370526631355, 5.654025115378718], [5.155245329526434, -2.335689531393792, 5.654025115378718], [5.334702723971103, -1.890224018872355, 5.654025115378718], [5.475747913994611, -1.431148062588333, 5.654025115378718], [5.577365312233959, -0.9617672112086443, 5.654025115378718], [5.638823228757043, -0.4854612131742948, 5.654025115378718], [5.65967913955176, -0.005659681026075289, 5.654025115378718]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[7.9999960000003325, 0.007999998666666732, 4.898587196589412e-16], [7.970516024400985, 0.6862028160588514, 4.898587196589412e-16], [7.883644830075297, 1.3594646715626837, 4.898587196589412e-16], [7.740007927805667, 2.0229377838938616, 4.898587196589412e-16], [7.540639566422423, 2.6718448550214577, 4.898587196589412e-16], [7.286975285757644, 3.3015134688135506, 4.898587196589412e-16], [6.980841580127398, 3.9074097344870804, 4.898587196589412e-16], [6.624442746769849, 4.48517093261431, 4.898587196589412e-16], [6.220345013936269, 5.030636928620289, 4.898587196589412e-16], [5.771458062919672, 5.539880127580333, 4.898587196589412e-16], [5.281014077070588, 6.0092337546298085, 4.898587196589412e-16], [4.752544468656267, 6.435318257354853, 4.898587196589412e-16], [4.189854451140163, 6.815065640055196, 4.898587196589412e-16], [3.59699563997246, 7.145741554661706, 4.898587196589412e-16], [2.978236879177986, 7.424964989244337, 4.898587196589412e-16], [2.338033503802913, 7.650725412344574, 4.898587196589412e-16], [1.6809952595441346, 7.821397249685642, 4.898587196589412e-16], [1.0118531105540822, 7.935751589021799, 4.898587196589412e-16], [0.3354251744193885, 7.992965028846661, 4.898587196589412e-16], [-0.34341797040348687, 7.992625607245965, 4.898587196589412e-16], [-1.0197883548939515, 7.934735768204425, 4.898587196589412e-16], [-1.6888158149926804, 7.819712344007968, 4.898587196589412e-16], [-2.3456830589234685, 7.648383553868061, 4.898587196589412e-16], [-2.985660353811407, 7.421983040379351, 4.898587196589412e-16], [-3.6041395818384823, 7.14214098675076, 4.898587196589412e-16], [-4.196667420717312, 6.810872378769836, 4.898587196589412e-16], [-4.758977409569024, 6.430562496019433, 4.898587196589412e-16], [-5.287020669316854, 6.003949736816286, 4.898587196589412e-16], [-5.776995056395143, 5.534105900539495, 4.898587196589412e-16], [-6.225372539854199, 5.024414069324827, 4.898587196589412e-16], [-6.628924604733835, 4.478544248386338, 4.898587196589412e-16], [-6.98474549879015, 3.900426940365724, 4.898587196589412e-16], [-7.290273155188866, 3.2942248439856923, 4.898587196589412e-16], [-7.543307640512668, 2.6643028807894917, 4.898587196589412e-16], [-7.7420269952487635, 2.0151967657872474, 4.898587196589412e-16], [-7.885000352698196, 1.3515803483142665, 4.898587196589412e-16], [-7.971198241844998, 0.6782319582614854, 4.898587196589412e-16], [-7.999999999999999, -6.125709918283118e-15, 4.898587196589412e-16], [-7.971198241844997, -0.6782319582614976, 4.898587196589412e-16], [-7.885000352698194, -1.3515803483142788, 4.898587196589412e-16], [-7.742026995248761, -2.0151967657872594, 4.898587196589412e-16], [-7.543307640512665, -2.6643028807895033, 4.898587196589412e-16], [-7.290273155188861, -3.2942248439857034, 4.898587196589412e-16], [-6.9847454987901445, -3.9004269403657346, 4.898587196589412e-16], [-6.628924604733829, -4.478544248386347, 4.898587196589412e-16], [-6.225372539854191, -5.024414069324837, 4.898587196589412e-16], [-5.776995056395135, -5.534105900539504, 4.898587196589412e-16], [-5.287020669316845, -6.003949736816294, 4.898587196589412e-16], [-4.758977409569014, -6.43056249601944, 4.898587196589412e-16], [-4.1966674207173025, -6.810872378769842, 4.898587196589412e-16], [-3.604139581838471, -7.142140986750765, 4.898587196589412e-16], [-2.985660353811394, -7.421983040379357, 4.898587196589412e-16], [-2.3456830589234534, -7.648383553868065, 4.898587196589412e-16], [-1.6888158149926633, -7.819712344007972, 4.898587196589412e-16], [-1.0197883548939322, -7.934735768204428, 4.898587196589412e-16], [-0.3434179704034658, -7.992625607245966, 4.898587196589412e-16], [0.3354251744194114, -7.99296502884666, 4.898587196589412e-16], [1.0118531105541066, -7.9357515890217964, 4.898587196589412e-16], [1.6809952595441604, -7.821397249685637, 4.898587196589412e-16], [2.33803350380294, -7.650725412344566, 4.898587196589412e-16], [2.9782368791780134, -7.424964989244326, 4.898587196589412e-16], [3.5969956399724885, -7.145741554661692, 4.898587196589412e-16], [4.189854451140192, -6.815065640055178, 4.898587196589412e-16], [4.752544468656295, -6.435318257354831, 4.898587196589412e-16], [5.281014077070616, -6.009233754629784, 4.898587196589412e-16], [5.7714580629197, -5.539880127580305, 4.898587196589412e-16], [6.220345013936295, -5.0306369286202575, 4.898587196589412e-16], [6.624442746769873, -4.485170932614275, 4.898587196589412e-16], [6.98084158012742, -3.9074097344870418, 4.898587196589412e-16], [7.286975285757663, -3.301513468813509, 4.898587196589412e-16], [7.540639566422438, -2.671844855021414, 4.898587196589412e-16], [7.74000792780568, -2.022937783893815, 4.898587196589412e-16], [7.883644830075305, -1.3594646715626348, 4.898587196589412e-16], [7.97051602440099, -0.6862028160588006, 4.898587196589412e-16], [7.9999960000003325, -0.00799999866661452, 4.898587196589412e-16]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[5.659679139551758, 0.005659681026112225, -5.654025115378719], [5.638823228757039, 0.48546121317433055, -5.654025115378719], [5.577365312233952, 0.9617672112086785, -5.654025115378719], [5.4757479139946, 1.4311480625883657, -5.654025115378719], [5.33470272397109, 1.8902240188723853, -5.654025115378719], [5.155245329526419, 2.3356895313938204, -5.654025115378719], [4.938667902779067, 2.7643370526631617, -5.654025115378719], [4.686529896395786, 3.1730801321200737, -5.654025115378719], [4.400646814846961, 3.558975639934044, -5.654025115378719], [4.0830771419764345, 3.9192449588327847, -5.654025115378719], [3.7361075190130526, 4.251293991367896, -5.654025115378719], [3.362236279748746, 4.552731838556709, -5.654025115378719], [2.964155461437115, 4.821388015405851, -5.654025115378719], [2.5447314209419494, 5.0553280793572055, -5.654025115378719], [2.1069841957079323, 5.252867559124601, -5.654025115378719], [1.654065758163617, 5.412584083627455, -5.654025115378719], [1.1892373201345272, 5.5333276236877476, -5.654025115378719], [0.7158458506845828, 5.6142287727455775, -5.654025115378719], [0.23729997646771878, 5.6547050069685385, -5.654025115378719], [-0.24295456188224807, 5.654464879679353, -5.654025115378719], [-0.7214597205987181, 5.613510119900049, -5.654025115378719], [-1.1947700522173732, 5.53213561990224, -5.654025115378719], [-1.6594775143123273, 5.410927311853157, -5.654025115378719], [-2.1122360088995595, 5.2507579488465, -5.654025115378719], [-2.5497854758131386, 5.052780820696561, -5.654025115378719], [-2.9689753665713416, 4.818421449744637, -5.654025115378719], [-3.366787329710508, 4.549367326471608, -5.654025115378719], [-3.7403569442422637, 4.247555758824753, -5.654025115378719], [-4.086994344743656, 3.915159922749008, -5.654025115378719], [-4.404203589570506, 3.5545732143649698, -5.654025115378719], [-4.689700632734305, 3.1683920164648343, -5.654025115378719], [-4.941429770037261, 2.759397003415084, -5.654025115378719], [-5.157578441046081, 2.3305331190788334, -5.654025115378719], [-5.336590280323786, 1.8848883719256002, -5.654025115378719], [-5.477176323944935, 1.4256716000130225, -5.654025115378719], [-5.578324290602443, 0.9561893659424374, -5.654025115378719], [-5.639305870477924, 0.4798221481547876, -5.654025115378719], [-5.659681969392507, -4.333696246779477e-15, -5.654025115378719], [-5.639305870477923, -0.47982214815479624, -5.654025115378719], [-5.578324290602441, -0.9561893659424461, -5.654025115378719], [-5.477176323944933, -1.425671600013031, -5.654025115378719], [-5.336590280323783, -1.8848883719256084, -5.654025115378719], [-5.157578441046078, -2.3305331190788414, -5.654025115378719], [-4.941429770037257, -2.7593970034150916, -5.654025115378719], [-4.689700632734301, -3.1683920164648414, -5.654025115378719], [-4.404203589570501, -3.554573214364977, -5.654025115378719], [-4.086994344743649, -3.915159922749014, -5.654025115378719], [-3.7403569442422566, -4.247555758824759, -5.654025115378719], [-3.3667873297105015, -4.549367326471613, -5.654025115378719], [-2.9689753665713345, -4.818421449744641, -5.654025115378719], [-2.549785475813131, -5.052780820696564, -5.654025115378719], [-2.11223600889955, -5.250757948846504, -5.654025115378719], [-1.6594775143123166, -5.410927311853159, -5.654025115378719], [-1.1947700522173612, -5.532135619902243, -5.654025115378719], [-0.7214597205987044, -5.613510119900051, -5.654025115378719], [-0.24295456188223313, -5.654464879679354, -5.654025115378719], [0.23729997646773496, -5.6547050069685385, -5.654025115378719], [0.7158458506846002, -5.614228772745575, -5.654025115378719], [1.1892373201345454, -5.533327623687743, -5.654025115378719], [1.654065758163636, -5.41258408362745, -5.654025115378719], [2.106984195707952, -5.252867559124593, -5.654025115378719], [2.54473142094197, -5.055328079357196, -5.654025115378719], [2.964155461437136, -4.821388015405838, -5.654025115378719], [3.362236279748766, -4.552731838556694, -5.654025115378719], [3.7361075190130726, -4.251293991367878, -5.654025115378719], [4.083077141976454, -3.9192449588327642, -5.654025115378719], [4.400646814846979, -3.558975639934022, -5.654025115378719], [4.686529896395803, -3.1730801321200484, -5.654025115378719], [4.938667902779082, -2.7643370526631346, -5.654025115378719], [5.155245329526433, -2.335689531393791, -5.654025115378719], [5.334702723971101, -1.8902240188723543, -5.654025115378719], [5.475747913994609, -1.4311480625883326, -5.654025115378719], [5.577365312233958, -0.961767211208644, -5.654025115378719], [5.638823228757041, -0.4854612131742947, -5.654025115378719], [5.659679139551758, -0.0056596810260752875, -5.654025115378719]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.00799999466666428, 7.999997333330233e-06, -7.9999960000003325], [0.007970514695978273, 0.0006862027016914248, -7.9999960000003325], [0.007883643516131154, 0.001359464444984663, -7.9999960000003325], [0.007740006637801069, 0.0020229374467367078, -7.9999960000003325], [0.00754063830964597, 0.0026718444097128505, -7.9999960000003325], [0.007286974071258678, 0.0033015129185599078, -7.9999960000003325], [0.006980840416650846, 0.0039074090832504705, -7.9999960000003325], [0.006624441642693253, 0.004485170185083922, -7.9999960000003325], [0.006220343977209467, 0.005030636090178672, -7.9999960000003325], [0.005771457101007551, 0.005539879204264633, -7.9999960000003325], [0.005281013196899339, 0.006009232753088305, -7.9999960000003325], [0.00475254367656351, 0.006435317184799085, -7.9999960000003325], [0.004189853752829314, 0.006815064504208037, -7.9999960000003325], [0.0035969950404716637, 0.007145740363701755, -7.9999960000003325], [0.002978236382803912, 0.007424963751747029, -7.9999960000003325], [0.0023380331141296725, 0.007650724137220433, -7.9999960000003325], [0.0016809949793775464, 0.007821395946116123, -7.9999960000003325], [0.0010118529419114687, 0.007935750266393175, -7.9999960000003325], [0.0003354251185150508, 0.007992963696682438, -7.9999960000003325], [-0.0003434179131670131, 0.007992624275138313, -7.9999960000003325], [-0.0010197881849287938, 0.007934734445745105, -7.9999960000003325], [-0.0016888155335226629, 0.007819711040719267, -7.9999960000003325], [-0.0023456826679752987, 0.00764838227913423, -7.9999960000003325], [-0.002985659856200084, 0.007421981803379035, -7.9999960000003325], [-0.003604138981147026, 0.007142139796390905, -7.9999960000003325], [-0.004196666721270966, 0.006810871243621556, -7.9999960000003325], [-0.004758976616404107, 0.006430561424256295, -7.9999960000003325], [-0.005287019788144504, 0.006003948736155455, -7.9999960000003325], [-0.005776994093560188, 0.005534104978186168, -7.9999960000003325], [-0.006225371502289473, 0.005024413231920355, -7.9999960000003325], [-0.006628923499910261, 0.0044785435019604, -7.9999960000003325], [-0.0069847443346629425, 0.003900426290292916, -7.9999960000003325], [-0.007290271940140254, 0.0032942242949468236, -7.9999960000003325], [-0.007543306383291534, 0.0026643024367378836, -7.9999960000003325], [-0.007742025704907653, 0.0020151964299202664, -7.9999960000003325], [-0.007884999038528132, 0.001351580123050303, -7.9999960000003325], [-0.007971196913308583, 0.0006782318452225385, -7.9999960000003325], [-0.007999998666663278, -6.125708897328872e-18, -7.9999960000003325], [-0.007971196913308581, -0.0006782318452225508, -7.9999960000003325], [-0.00788499903852813, -0.0013515801230503152, -7.9999960000003325], [-0.00774202570490765, -0.0020151964299202785, -7.9999960000003325], [-0.007543306383291531, -0.0026643024367378953, -7.9999960000003325], [-0.007290271940140249, -0.003294224294946835, -7.9999960000003325], [-0.006984744334662937, -0.0039004262902929267, -7.9999960000003325], [-0.006628923499910255, -0.00447854350196041, -7.9999960000003325], [-0.006225371502289465, -0.005024413231920365, -7.9999960000003325], [-0.00577699409356018, -0.005534104978186178, -7.9999960000003325], [-0.0052870197881444946, -0.006003948736155462, -7.9999960000003325], [-0.004758976616404098, -0.0064305614242563015, -7.9999960000003325], [-0.004196666721270955, -0.006810871243621562, -7.9999960000003325], [-0.003604138981147015, -0.00714213979639091, -7.9999960000003325], [-0.0029856598562000712, -0.007421981803379041, -7.9999960000003325], [-0.002345682667975284, -0.007648382279134234, -7.9999960000003325], [-0.0016888155335226457, -0.007819711040719272, -7.9999960000003325], [-0.0010197881849287745, -0.007934734445745106, -7.9999960000003325], [-0.000343417913166992, -0.007992624275138313, -7.9999960000003325], [0.00033542511851507366, -0.007992963696682438, -7.9999960000003325], [0.0010118529419114932, -0.007935750266393172, -7.9999960000003325], [0.0016809949793775722, -0.007821395946116118, -7.9999960000003325], [0.0023380331141296994, -0.0076507241372204245, -7.9999960000003325], [0.002978236382803939, -0.007424963751747018, -7.9999960000003325], [0.0035969950404716924, -0.007145740363701741, -7.9999960000003325], [0.0041898537528293435, -0.00681506450420802, -7.9999960000003325], [0.004752543676563538, -0.0064353171847990635, -7.9999960000003325], [0.005281013196899368, -0.00600923275308828, -7.9999960000003325], [0.005771457101007579, -0.0055398792042646045, -7.9999960000003325], [0.006220343977209492, -0.0050306360901786395, -7.9999960000003325], [0.006624441642693277, -0.004485170185083887, -7.9999960000003325], [0.006980840416650868, -0.003907409083250431, -7.9999960000003325], [0.007286974071258697, -0.003301512918559866, -7.9999960000003325], [0.007540638309645985, -0.0026718444097128067, -7.9999960000003325], [0.007740006637801082, -0.0020229374467366614, -7.9999960000003325], [0.007883643516131161, -0.001359464444984614, -7.9999960000003325], [0.007970514695978278, -0.0006862027016913741, -7.9999960000003325], [0.00799999466666428, -7.999997333278022e-06, -7.9999960000003325]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}];\n",
       "    for ( var i=0 ; i < lines.length ; i++ ) addLine( lines[i] );\n",
       "\n",
       "    function addLine( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        for ( var i=0 ; i < json.points.length ; i++ ) {\n",
       "            var v = json.points[i];\n",
       "            geometry.vertices.push( new THREE.Vector3( a[0]*v[0], a[1]*v[1], a[2]*v[2] ) );\n",
       "        }\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var materialOptions = { color: json.color, linewidth: json.linewidth,\n",
       "                                transparent: transparent, opacity: json.opacity };\n",
       "\n",
       "        var mesh;\n",
       "        if ( json.linewidth > 1 && window.createFatLineStrip ) {\n",
       "            mesh = createFatLineStrip( geometry, materialOptions );\n",
       "        } else {\n",
       "            var material = new THREE.LineBasicMaterial( materialOptions );\n",
       "            mesh = new THREE.Line( geometry, material );\n",
       "        }\n",
       "\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    var surfaces = [];\n",
       "    for ( var i=0 ; i < surfaces.length ; i++ ) addSurface( surfaces[i] );\n",
       "\n",
       "    function addSurface( json ) {\n",
       "\n",
       "        var useFaceColors = 'faceColors' in json ? true : false;\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        for ( var i=0 ; i < json.vertices.length ; i++ ) {\n",
       "            var v = json.vertices[i];\n",
       "            geometry.vertices.push( new THREE.Vector3( a[0]*v.x, a[1]*v.y, a[2]*v.z ) );\n",
       "        }\n",
       "        for ( var i=0 ; i < json.faces.length ; i++ ) {\n",
       "            var f = json.faces[i];\n",
       "            for ( var j=0 ; j < f.length - 2 ; j++ ) {\n",
       "                var face = new THREE.Face3( f[0], f[j+1], f[j+2] );\n",
       "                if ( useFaceColors ) face.color.set( json.faceColors[i] );\n",
       "                geometry.faces.push( face );\n",
       "            }\n",
       "        }\n",
       "        geometry.computeVertexNormals();\n",
       "\n",
       "        var side = json.singleSide ? THREE.FrontSide : THREE.DoubleSide;\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var depthWrite = 'depthWrite' in json ? json.depthWrite : !transparent;\n",
       "        var flatShading = json.useFlatShading ? json.useFlatShading : false;\n",
       "\n",
       "        var material = new THREE.MeshPhongMaterial( { side: side,\n",
       "                                     color: useFaceColors ? 'white' : json.color,\n",
       "                                     vertexColors: useFaceColors ? THREE.FaceColors : THREE.NoColors,\n",
       "                                     transparent: transparent, opacity: json.opacity,\n",
       "                                     shininess: 20, flatShading: flatShading,\n",
       "                                     depthWrite: depthWrite } );\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var mesh = new THREE.Mesh( geometry, material );\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        if ( transparent && json.renderOrder ) mesh.renderOrder = json.renderOrder;\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "        if ( json.showMeshGrid ) addSurfaceMeshGrid( json );\n",
       "\n",
       "    }\n",
       "\n",
       "    function addSurfaceMeshGrid( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "\n",
       "        for ( var i=0 ; i < json.faces.length ; i++ ) {\n",
       "            var f = json.faces[i];\n",
       "            for ( var j=0 ; j < f.length ; j++ ) {\n",
       "                var k = j === f.length-1 ? 0 : j+1;\n",
       "                var v1 = json.vertices[f[j]];\n",
       "                var v2 = json.vertices[f[k]];\n",
       "                // vertices in opposite directions on neighboring faces\n",
       "                var nudge = f[j] < f[k] ? .0005*zRange : -.0005*zRange;\n",
       "                geometry.vertices.push( new THREE.Vector3( a[0]*v1.x, a[1]*v1.y, a[2]*(v1.z+nudge) ) );\n",
       "                geometry.vertices.push( new THREE.Vector3( a[0]*v2.x, a[1]*v2.y, a[2]*(v2.z+nudge) ) );\n",
       "            }\n",
       "        }\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var gridColor = options.theme === 'dark' ? 'white' : 'black';\n",
       "        var linewidth = json.linewidth || 1;\n",
       "        var materialOptions = { color: gridColor, linewidth: linewidth };\n",
       "\n",
       "        var mesh;\n",
       "        if ( linewidth > 1 && window.createFatLineSegments ) {\n",
       "            mesh = createFatLineSegments( geometry, materialOptions );\n",
       "        } else {\n",
       "            var material = new THREE.LineBasicMaterial( materialOptions );\n",
       "            mesh = new THREE.LineSegments( geometry, material );\n",
       "        }\n",
       "\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    function render() {\n",
       "\n",
       "        if ( window.updateAnimation ) animate = updateAnimation();\n",
       "        if ( animate ) requestAnimationFrame( render );\n",
       "\n",
       "        renderer.render( scene, camera );\n",
       "\n",
       "    }\n",
       "\n",
       "    render();\n",
       "    controls.update();\n",
       "    if ( !animate ) render();\n",
       "\n",
       "\n",
       "    // menu functions\n",
       "\n",
       "    function toggleMenu() {\n",
       "\n",
       "        var m = document.getElementById( 'menu-content' );\n",
       "        if ( m.style.display === 'block' ) m.style.display = 'none'\n",
       "        else m.style.display = 'block';\n",
       "\n",
       "    }\n",
       "\n",
       "\n",
       "    function saveAsPNG() {\n",
       "\n",
       "        var a = document.body.appendChild( document.createElement( 'a' ) );\n",
       "        a.href = renderer.domElement.toDataURL( 'image/png' );\n",
       "        a.download = 'screenshot';\n",
       "        a.click();\n",
       "\n",
       "    }\n",
       "\n",
       "    function saveAsHTML() {\n",
       "\n",
       "        toggleMenu(); // otherwise visible in output\n",
       "        event.stopPropagation();\n",
       "\n",
       "        var blob = new Blob( [ '<!DOCTYPE html>\\n' + document.documentElement.outerHTML ] );\n",
       "        var a = document.body.appendChild( document.createElement( 'a' ) );\n",
       "        a.href = window.URL.createObjectURL( blob );\n",
       "        a.download = suggestFilename();\n",
       "        a.click();\n",
       "\n",
       "        function suggestFilename() {\n",
       "            if ( !document.title ) {\n",
       "                return 'graphic.html';\n",
       "            } else if ( /\\.html?$/i.test( document.title ) ) {\n",
       "                return document.title; // already ends in .htm or .html\n",
       "            } else {\n",
       "                return document.title + '.html';\n",
       "            }\n",
       "        }\n",
       "\n",
       "    }\n",
       "\n",
       "    function getViewpoint() {\n",
       "\n",
       "        function roundTo( x, n ) { return +x.toFixed(n); }\n",
       "\n",
       "        var v = camera.quaternion.inverse();\n",
       "        var r = Math.sqrt( v.x*v.x + v.y*v.y + v.z*v.z );\n",
       "        var axis = [ roundTo( v.x / r, 4 ), roundTo( v.y / r, 4 ), roundTo( v.z / r, 4 ) ];\n",
       "        var angle = roundTo( 2 * Math.atan2( r, v.w ) * 180 / Math.PI, 2 );\n",
       "\n",
       "        var textArea = document.createElement( 'textarea' );\n",
       "        textArea.textContent = JSON.stringify( axis ) + ',' + angle;\n",
       "        textArea.style.csstext = 'position: absolute; top: -100%';\n",
       "        document.body.append( textArea );\n",
       "        textArea.select();\n",
       "        document.execCommand( 'copy' );\n",
       "\n",
       "        var m = document.getElementById( 'menu-message' );\n",
       "        m.innerHTML = 'Viewpoint copied to clipboard';\n",
       "        m.style.display = 'block';\n",
       "        setTimeout( function() { m.style.display = 'none'; }, 2000 );\n",
       "\n",
       "    }\n",
       "\n",
       "    function getCamera() {\n",
       "\n",
       "        function roundTo( x, n ) { return +x.toFixed(n); }\n",
       "\n",
       "        var pos = camera.position;\n",
       "        var pos_r = [ roundTo( pos.x, 4 ), roundTo( pos.y, 4 ), roundTo( pos.z, 4 ) ];\n",
       "   //     var up = camera.up; // up is always (0,0,1)\n",
       "        var textArea = document.createElement('textarea');\n",
       "        var cam_position = JSON.stringify(pos_r);\n",
       "        textArea.textContent = ',camera_position=' + cam_position;\n",
       "        textArea.style.csstext = 'position: absolute; top: -100%';\n",
       "        document.body.append( textArea );\n",
       "        textArea.select();\n",
       "        document.execCommand( 'copy' );\n",
       "\n",
       "        var m = document.getElementById( 'menu-message' );\n",
       "        m.innerHTML = 'Camera position '+ cam_position+' copied to clipboard';\n",
       "        m.style.display = 'block';\n",
       "        setTimeout( function() { m.style.display = 'none'; }, 2000 );\n",
       "\n",
       "    }\n",
       "\n",
       "</script>\n",
       "\n",
       "<div id=&quot;menu-container&quot; onclick=&quot;toggleMenu()&quot;>&#x24d8;\n",
       "<div id=&quot;menu-message&quot;></div>\n",
       "<div id=&quot;menu-content&quot;>\n",
       "<div onclick=&quot;saveAsPNG()&quot;>Save as PNG</div>\n",
       "<div onclick=&quot;saveAsHTML()&quot;>Save as HTML</div>\n",
       "<div onclick=&quot;getCamera()&quot;>Get camera</div>\n",
       "<div onclick=&quot;getViewpoint()&quot;>Get viewpoint</div>\n",
       "<div>Close Menu</div>\n",
       "</div></div>\n",
       "\n",
       "\n",
       "</body>\n",
       "</html>\n",
       "\"\n",
       "        width=\"100%\"\n",
       "        height=\"400\"\n",
       "        style=\"border: 0;\">\n",
       "</iframe>\n"
      ],
      "text/plain": [
       "Graphics3d Object"
      ]
     },
     "execution_count": 49,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Y.plot(X,  color={r:'blue', th:'green', ph:'red'}, aspect_ratio=1)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "コマンド`plot()`は多くのオプションを持っています。オプションを使い、描画される座標線の数、スタイル、色、そして座標の範囲などを指定します。\n",
    "(参照:[list of all options](http://doc.sagemath.org/html/en/reference/manifolds/sage/manifolds/chart.html#sage.manifolds.chart.RealChart.plot)):\n",
    "<div hidden>\n",
    "The command plot() allows for many options, to control the number of coordinate lines to be drawn, their style and color, as well as the coordinate ranges (cf. the [list of all options](http://doc.sagemath.org/html/en/reference/manifolds/sage/manifolds/chart.html#sage.manifolds.chart.RealChart.plot)):\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 50,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<iframe srcdoc=\"<!DOCTYPE html>\n",
       "<html>\n",
       "<head>\n",
       "<title></title>\n",
       "<meta charset=&quot;utf-8&quot;>\n",
       "<meta name=viewport content=&quot;width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0&quot;>\n",
       "<style>\n",
       "\n",
       "    body { margin: 0px; overflow: hidden; }\n",
       "\n",
       "    #menu-container { position: absolute; bottom: 30px; right: 40px; cursor: default; }\n",
       "\n",
       "    #menu-message { position: absolute; bottom: 0px; right: 0px; white-space: nowrap;\n",
       "                    display: none; background-color: #F5F5F5; padding: 10px; }\n",
       "\n",
       "    #menu-content { position: absolute; bottom: 0px; right: 0px;\n",
       "                    display: none; background-color: #F5F5F5; border-bottom: 1px solid black;\n",
       "                    border-right: 1px solid black; border-left: 1px solid black; }\n",
       "\n",
       "    #menu-content div { border-top: 1px solid black; padding: 10px; white-space: nowrap; }\n",
       "\n",
       "    #menu-content div:hover { background-color: #FEFEFE; }\n",
       "\n",
       "    .dark-theme #menu-container { color: white; }\n",
       "\n",
       "    .dark-theme #menu-message { background-color: #181818; }\n",
       "\n",
       "    .dark-theme #menu-content { background-color: #181818; border-color: white; }\n",
       "\n",
       "    .dark-theme #menu-content div { border-color: white; }\n",
       "\n",
       "    .dark-theme #menu-content div:hover { background-color: #303030; }\n",
       "\n",
       "</style>\n",
       "\n",
       "</head>\n",
       "\n",
       "<body>\n",
       "\n",
       "<script src=&quot;/nbextensions/threejs-sage/r122/three.min.js&quot;></script>\n",
       "<script>\n",
       "  if ( !window.THREE ) document.write(' \\\n",
       "<script src=&quot;https://cdn.jsdelivr.net/gh/sagemath/threejs-sage@r122/build/three.min.js&quot;><\\/script> \\\n",
       "            ');\n",
       "</script>\n",
       "        \n",
       "<script>\n",
       "\n",
       "    var options = {&quot;animate&quot;: false, &quot;animationControls&quot;: true, &quot;aspectRatio&quot;: [1.0, 1.0, 1.0], &quot;autoScaling&quot;: [false, false, false], &quot;autoPlay&quot;: true, &quot;axes&quot;: false, &quot;axesLabels&quot;: [&quot;x&quot;, &quot;y&quot;, &quot;z&quot;], &quot;axesLabelsStyle&quot;: null, &quot;decimals&quot;: 2, &quot;delay&quot;: 20, &quot;frame&quot;: true, &quot;loop&quot;: true, &quot;projection&quot;: &quot;perspective&quot;, &quot;theme&quot;: &quot;light&quot;, &quot;viewpoint&quot;: false};\n",
       "    var animate = options.animate;\n",
       "\n",
       "    if ( options.theme === 'dark' )\n",
       "        document.body.className = 'dark-theme';\n",
       "\n",
       "    var scene = new THREE.Scene();\n",
       "\n",
       "    var renderer = new THREE.WebGLRenderer( { antialias: true, preserveDrawingBuffer: true } );\n",
       "    renderer.setPixelRatio( window.devicePixelRatio );\n",
       "    renderer.setSize( window.innerWidth, window.innerHeight );\n",
       "    renderer.setClearColor( options.theme === 'dark' ? 0 : 0xffffff, 1 );\n",
       "    document.body.appendChild( renderer.domElement );\n",
       "\n",
       "    var b = [{&quot;x&quot;:-2.199999950000004, &quot;y&quot;:-2.1980653829328314, &quot;z&quot;:-0.10000000000000485}, {&quot;x&quot;:1.9999990000000896, &quot;y&quot;:1.9982412572116652, &quot;z&quot;:2.000000000000006}]; // bounds\n",
       "\n",
       "    if ( b[0].x === b[1].x ) {\n",
       "        b[0].x -= 1;\n",
       "        b[1].x += 1;\n",
       "    }\n",
       "    if ( b[0].y === b[1].y ) {\n",
       "        b[0].y -= 1;\n",
       "        b[1].y += 1;\n",
       "    }\n",
       "    if ( b[0].z === b[1].z ) {\n",
       "        b[0].z -= 1;\n",
       "        b[1].z += 1;\n",
       "    }\n",
       "\n",
       "    var rxRange = Math.sqrt( Math.pow( b[1].z - b[0].z, 2 )\n",
       "                            + Math.pow( b[1].y - b[0].y, 2 ) );\n",
       "    var ryRange = Math.sqrt( Math.pow( b[1].x - b[0].x, 2 )\n",
       "                            + Math.pow( b[1].z - b[0].z, 2 ) );\n",
       "    var rzRange = Math.sqrt( Math.pow( b[1].x - b[0].x, 2 )\n",
       "                            + Math.pow( b[1].y - b[0].y, 2 ) );\n",
       "    var xRange = b[1].x - b[0].x;\n",
       "    var yRange = b[1].y - b[0].y;\n",
       "    var zRange = b[1].z - b[0].z;\n",
       "\n",
       "    var ar = options.aspectRatio;\n",
       "    var a = [ ar[0], ar[1], ar[2] ]; // aspect multipliers\n",
       "\n",
       "    var autoScaling = options.autoScaling;\n",
       "    var autoAspect = 2.5;\n",
       "    if ( xRange > autoAspect * rxRange && autoScaling[0] ) a[0] = autoAspect * rxRange / xRange;\n",
       "    if ( yRange > autoAspect * ryRange && autoScaling[1] ) a[1] = autoAspect * ryRange / yRange;\n",
       "    if ( zRange > autoAspect * rzRange && autoScaling[2] ) a[2] = autoAspect * rzRange / zRange;\n",
       "\n",
       "    // Distance from (xMid,yMid,zMid) to any corner of the bounding box, after applying aspectRatio\n",
       "    var midToCorner = Math.sqrt( a[0]*a[0]*xRange*xRange + a[1]*a[1]*yRange*yRange + a[2]*a[2]*zRange*zRange ) / 2;\n",
       "\n",
       "    var xMid = ( b[0].x + b[1].x ) / 2;\n",
       "    var yMid = ( b[0].y + b[1].y ) / 2;\n",
       "    var zMid = ( b[0].z + b[1].z ) / 2;\n",
       "\n",
       "    var box = new THREE.Geometry();\n",
       "    box.vertices.push( new THREE.Vector3( a[0]*b[0].x, a[1]*b[0].y, a[2]*b[0].z ) );\n",
       "    box.vertices.push( new THREE.Vector3( a[0]*b[1].x, a[1]*b[1].y, a[2]*b[1].z ) );\n",
       "    var boxMesh = new THREE.Line( box );\n",
       "    var boxColor = options.theme === 'dark' ? 'white' : 'black';\n",
       "    if ( options.frame ) scene.add( new THREE.BoxHelper( boxMesh, boxColor ) );\n",
       "\n",
       "    if ( options.axesLabels ) {\n",
       "\n",
       "        var d = options.decimals; // decimals\n",
       "        var offsetRatio = 0.1;\n",
       "        var al = options.axesLabels;\n",
       "        var als = options.axesLabelsStyle || [{}, {}, {}];\n",
       "\n",
       "        var offset = offsetRatio * a[1]*( b[1].y - b[0].y );\n",
       "        var xm = xMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(xm) ) xm = xm.substr(1);\n",
       "        addLabel( al[0] + '=' + xm, a[0]*xMid, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "        addLabel( ( b[0].x ).toFixed(d), a[0]*b[0].x, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "        addLabel( ( b[1].x ).toFixed(d), a[0]*b[1].x, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "\n",
       "        var offset = offsetRatio * a[0]*( b[1].x - b[0].x );\n",
       "        var ym = yMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(ym) ) ym = ym.substr(1);\n",
       "        addLabel( al[1] + '=' + ym, a[0]*b[1].x+offset, a[1]*yMid, a[2]*b[0].z, als[1] );\n",
       "        addLabel( ( b[0].y ).toFixed(d), a[0]*b[1].x+offset, a[1]*b[0].y, a[2]*b[0].z, als[1] );\n",
       "        addLabel( ( b[1].y ).toFixed(d), a[0]*b[1].x+offset, a[1]*b[1].y, a[2]*b[0].z, als[1] );\n",
       "\n",
       "        var offset = offsetRatio * a[1]*( b[1].y - b[0].y );\n",
       "        var zm = zMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(zm) ) zm = zm.substr(1);\n",
       "        addLabel( al[2] + '=' + zm, a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*zMid, als[2] );\n",
       "        addLabel( ( b[0].z ).toFixed(d), a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*b[0].z, als[2] );\n",
       "        addLabel( ( b[1].z ).toFixed(d), a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*b[1].z, als[2] );\n",
       "\n",
       "    }\n",
       "\n",
       "    function addLabel( text, x, y, z, style ) {\n",
       "\n",
       "        var color = style.color || 'black';\n",
       "        var fontSize = style.fontSize || 14;\n",
       "        var fontFamily = style.fontFamily || 'monospace';\n",
       "        var fontStyle = style.fontStyle || 'normal';\n",
       "        var fontWeight = style.fontWeight || 'normal';\n",
       "        var opacity = style.opacity || 1;\n",
       "\n",
       "        if ( options.theme === 'dark' )\n",
       "            if ( color === 'black' || color === '#000000' )\n",
       "                color = 'white';\n",
       "\n",
       "        if ( Array.isArray( fontStyle ) ) {\n",
       "            fontFamily = fontFamily.map( function( f ) {\n",
       "                // Need to put quotes around fonts that have whitespace in their names.\n",
       "                return /\\s/.test( f ) ? '&quot;' + f + '&quot;' : f;\n",
       "            }).join(', ');\n",
       "        }\n",
       "\n",
       "        var canvas = document.createElement( 'canvas' );\n",
       "        var context = canvas.getContext( '2d' );\n",
       "        var pixelRatio = Math.round( window.devicePixelRatio );\n",
       "\n",
       "        // For example: italic bold 20px &quot;Times New Roman&quot;, Georgia, serif\n",
       "        var font = [fontStyle, fontWeight, fontSize + 'px', fontFamily].join(' ');\n",
       "\n",
       "        context.font = font;\n",
       "        var width = context.measureText( text ).width;\n",
       "        var height = fontSize;\n",
       "\n",
       "        // The dimensions of the canvas's underlying image data need to be powers\n",
       "        // of two in order for the resulting texture to support mipmapping.\n",
       "        canvas.width = THREE.MathUtils.ceilPowerOfTwo( width * pixelRatio );\n",
       "        canvas.height = THREE.MathUtils.ceilPowerOfTwo( height * pixelRatio );\n",
       "\n",
       "        // Re-compute the unscaled dimensions after the power of two conversion.\n",
       "        width = canvas.width / pixelRatio;\n",
       "        height = canvas.height / pixelRatio;\n",
       "\n",
       "        canvas.style.width = width + 'px';\n",
       "        canvas.style.height = height + 'px';\n",
       "\n",
       "        context.scale( pixelRatio, pixelRatio );\n",
       "        context.fillStyle = color;\n",
       "        context.font = font; // Must be set again after measureText.\n",
       "        context.textAlign = 'center';\n",
       "        context.textBaseline = 'middle';\n",
       "        context.fillText( text, width/2, height/2 );\n",
       "\n",
       "        var texture = new THREE.Texture( canvas );\n",
       "        texture.needsUpdate = true;\n",
       "\n",
       "        var materialOptions = { map: texture, sizeAttenuation: false, depthWrite: false };\n",
       "        if ( opacity < 1 ) {\n",
       "            // Setting opacity=1 would cause the texture's alpha component to be\n",
       "            // discarded, giving the text a black background instead of the\n",
       "            // background being transparent.\n",
       "            materialOptions.opacity = opacity;\n",
       "        }\n",
       "        var sprite = new THREE.Sprite( new THREE.SpriteMaterial( materialOptions ) );\n",
       "        sprite.position.set( x, y, z );\n",
       "\n",
       "        // Scaling factor, chosen somewhat arbitrarily so that the size of the text\n",
       "        // is consistent with previously generated plots.\n",
       "        var scale = 1/625;\n",
       "        if ( options.projection === 'orthographic' ) {\n",
       "            scale = midToCorner/256; // Needs to scale along with the plot itself.\n",
       "        }\n",
       "        sprite.scale.set( scale * width, scale * height, 1 );\n",
       "\n",
       "        scene.add( sprite );\n",
       "\n",
       "        return sprite;\n",
       "\n",
       "    }\n",
       "\n",
       "    if ( options.axes ) scene.add( new THREE.AxesHelper( Math.min( a[0]*b[1].x, a[1]*b[1].y, a[2]*b[1].z ) ) );\n",
       "\n",
       "    var camera = createCamera();\n",
       "    camera.up.set( 0, 0, 1 );\n",
       "    camera.position.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "\n",
       "    // camera is positioned so that the line from the camera to the center\n",
       "    // of the bounding sphere of the objects makes an angle of 60 degrees with x-axis\n",
       "    // and an angle of 30 degrees with z-axis and the field of view of the camera looking\n",
       "    // at the center has an angle of 45 degrees.\n",
       "    const sin8 = Math.sin(Math.PI / 8);\n",
       "    const sin5 = Math.sin(Math.PI / 5);\n",
       "    const cos5 = Math.cos(Math.PI / 5);\n",
       "    const sin3 = Math.sin(Math.PI / 3);\n",
       "    const cos3 = Math.cos(Math.PI / 3);\n",
       "    var r = midToCorner / sin8;\n",
       "    var offset = new THREE.Vector3( r * sin3 * cos5, r * sin3 * sin5, r * cos3 );\n",
       "\n",
       "    if ( options.viewpoint ) {\n",
       "\n",
       "        var aa = options.viewpoint;\n",
       "        var axis = new THREE.Vector3( aa[0][0], aa[0][1], aa[0][2] ).normalize();\n",
       "        var angle = aa[1] * Math.PI / 180;\n",
       "        var q = new THREE.Quaternion().setFromAxisAngle( axis, angle ).inverse();\n",
       "\n",
       "        offset.set( 0, 0, offset.length() );\n",
       "        offset.applyQuaternion( q );\n",
       "\n",
       "    }\n",
       "\n",
       "    camera.position.add( offset );\n",
       "\n",
       "    function createCamera() {\n",
       "\n",
       "        var aspect = window.innerWidth / window.innerHeight;\n",
       "\n",
       "        // Scale the near and far clipping planes along with the overall plot size.\n",
       "        var nearClip = 0.01 * midToCorner;\n",
       "        var farClip = 100 * midToCorner;\n",
       "\n",
       "        if ( options.projection === 'orthographic' ) {\n",
       "            var camera = new THREE.OrthographicCamera( -1, 1, 1, -1, -farClip, farClip );\n",
       "            updateCameraAspect( camera, aspect );\n",
       "            return camera;\n",
       "        }\n",
       "\n",
       "        return new THREE.PerspectiveCamera( 45, aspect, nearClip, farClip );\n",
       "\n",
       "    }\n",
       "\n",
       "    function updateCameraAspect( camera, aspect ) {\n",
       "\n",
       "        if ( camera.isPerspectiveCamera ) {\n",
       "            camera.aspect = aspect;\n",
       "        } else if ( camera.isOrthographicCamera ) {\n",
       "            // Fit the camera frustum to the bounding box's diagonal so that the entire plot fits\n",
       "            // within at the default zoom level and camera position.\n",
       "            if ( aspect > 1 ) { // Wide window\n",
       "                camera.top = midToCorner;\n",
       "                camera.right = midToCorner * aspect;\n",
       "            } else { // Tall or square window\n",
       "                camera.top = midToCorner / aspect;\n",
       "                camera.right = midToCorner;\n",
       "            }\n",
       "            camera.bottom = -camera.top;\n",
       "            camera.left = -camera.right;\n",
       "        }\n",
       "\n",
       "        camera.updateProjectionMatrix();\n",
       "\n",
       "    }\n",
       "\n",
       "    var lights = [{&quot;x&quot;:-5, &quot;y&quot;:3, &quot;z&quot;:0, &quot;color&quot;:&quot;#7f7f7f&quot;, &quot;parent&quot;:&quot;camera&quot;}];\n",
       "    for ( var i=0 ; i < lights.length ; i++ ) {\n",
       "        var light = new THREE.DirectionalLight( lights[i].color, 1 );\n",
       "        light.position.set( a[0]*lights[i].x, a[1]*lights[i].y, a[2]*lights[i].z );\n",
       "        if ( lights[i].parent === 'camera' ) {\n",
       "            light.target.position.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "            scene.add( light.target );\n",
       "            camera.add( light );\n",
       "        } else scene.add( light );\n",
       "    }\n",
       "    scene.add( camera );\n",
       "\n",
       "    var ambient = {&quot;color&quot;:&quot;#7f7f7f&quot;};\n",
       "    scene.add( new THREE.AmbientLight( ambient.color, 1 ) );\n",
       "\n",
       "    var controls = new THREE.OrbitControls( camera, renderer.domElement );\n",
       "    controls.target.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "    controls.addEventListener( 'change', function() { if ( !animate ) render(); } );\n",
       "\n",
       "    window.addEventListener( 'resize', function() {\n",
       "\n",
       "        renderer.setSize( window.innerWidth, window.innerHeight );\n",
       "        updateCameraAspect( camera, window.innerWidth / window.innerHeight );\n",
       "        if ( window.rescaleFatLines ) rescaleFatLines();\n",
       "        if ( !animate ) render();\n",
       "\n",
       "    } );\n",
       "\n",
       "    var texts = [{&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  x&quot;, &quot;x&quot;: -4.999999549948342e-07, &quot;y&quot;: -2.1980653829328314, &quot;z&quot;: -0.10000000000000485}, {&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  y&quot;, &quot;x&quot;: -2.199999950000004, &quot;y&quot;: 0.0, &quot;z&quot;: -0.10000000000000485}, {&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  z&quot;, &quot;x&quot;: -2.199999950000004, &quot;y&quot;: -2.1980653829328314, &quot;z&quot;: 1.000000000000001}];\n",
       "    for ( var i=0 ; i < texts.length ; i++ ) addText( texts[i] );\n",
       "\n",
       "    function addText( json ) {\n",
       "        var sprite = addLabel( json.text, a[0]*json.x, a[1]*json.y, a[2]*json.z, json );\n",
       "        sprite.userData = json;\n",
       "    }\n",
       "\n",
       "    var points = [];\n",
       "    for ( var i=0 ; i < points.length ; i++ ) addPoint( points[i] );\n",
       "\n",
       "    function addPoint( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        var v = json.point;\n",
       "        geometry.vertices.push( new THREE.Vector3( a[0]*v[0], a[1]*v[1], a[2]*v[2] ) );\n",
       "\n",
       "        var canvas = document.createElement( 'canvas' );\n",
       "        canvas.width = 128;\n",
       "        canvas.height = 128;\n",
       "\n",
       "        var context = canvas.getContext( '2d' );\n",
       "        context.arc( 64, 64, 64, 0, 2 * Math.PI );\n",
       "        context.fillStyle = json.color;\n",
       "        context.fill();\n",
       "\n",
       "        var texture = new THREE.Texture( canvas );\n",
       "        texture.needsUpdate = true;\n",
       "\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var size = camera.isOrthographicCamera ? json.size : json.size/100;\n",
       "        var material = new THREE.PointsMaterial( { size: size, map: texture,\n",
       "                                                   transparent: transparent, opacity: json.opacity,\n",
       "                                                   alphaTest: .1 } );\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var mesh = new THREE.Points( geometry, material );\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    var lines = [{&quot;points&quot;: [[0.0, 0.0, 1.0], [0.0, 0.0, 1.0135135135135136], [0.0, 0.0, 1.0270270270270272], [0.0, 0.0, 1.0405405405405408], [0.0, 0.0, 1.0540540540540544], [0.0, 0.0, 1.067567567567568], [0.0, 0.0, 1.0810810810810816], [0.0, 0.0, 1.0945945945945952], [0.0, 0.0, 1.1081081081081088], [0.0, 0.0, 1.1216216216216224], [0.0, 0.0, 1.135135135135136], [0.0, 0.0, 1.1486486486486496], [0.0, 0.0, 1.1621621621621632], [0.0, 0.0, 1.1756756756756768], [0.0, 0.0, 1.1891891891891904], [0.0, 0.0, 1.202702702702704], [0.0, 0.0, 1.2162162162162176], [0.0, 0.0, 1.2297297297297312], [0.0, 0.0, 1.2432432432432448], [0.0, 0.0, 1.2567567567567584], [0.0, 0.0, 1.270270270270272], [0.0, 0.0, 1.2837837837837855], [0.0, 0.0, 1.2972972972972991], [0.0, 0.0, 1.3108108108108127], [0.0, 0.0, 1.3243243243243263], [0.0, 0.0, 1.33783783783784], [0.0, 0.0, 1.3513513513513535], [0.0, 0.0, 1.3648648648648671], [0.0, 0.0, 1.3783783783783807], [0.0, 0.0, 1.3918918918918943], [0.0, 0.0, 1.405405405405408], [0.0, 0.0, 1.4189189189189215], [0.0, 0.0, 1.4324324324324351], [0.0, 0.0, 1.4459459459459487], [0.0, 0.0, 1.4594594594594623], [0.0, 0.0, 1.472972972972976], [0.0, 0.0, 1.4864864864864895], [0.0, 0.0, 1.500000000000003], [0.0, 0.0, 1.5135135135135167], [0.0, 0.0, 1.5270270270270303], [0.0, 0.0, 1.540540540540544], [0.0, 0.0, 1.5540540540540575], [0.0, 0.0, 1.567567567567571], [0.0, 0.0, 1.5810810810810847], [0.0, 0.0, 1.5945945945945983], [0.0, 0.0, 1.6081081081081119], [0.0, 0.0, 1.6216216216216255], [0.0, 0.0, 1.635135135135139], [0.0, 0.0, 1.6486486486486527], [0.0, 0.0, 1.6621621621621663], [0.0, 0.0, 1.6756756756756799], [0.0, 0.0, 1.6891891891891935], [0.0, 0.0, 1.702702702702707], [0.0, 0.0, 1.7162162162162207], [0.0, 0.0, 1.7297297297297343], [0.0, 0.0, 1.7432432432432479], [0.0, 0.0, 1.7567567567567615], [0.0, 0.0, 1.770270270270275], [0.0, 0.0, 1.7837837837837887], [0.0, 0.0, 1.7972972972973023], [0.0, 0.0, 1.8108108108108159], [0.0, 0.0, 1.8243243243243294], [0.0, 0.0, 1.837837837837843], [0.0, 0.0, 1.8513513513513566], [0.0, 0.0, 1.8648648648648702], [0.0, 0.0, 1.8783783783783838], [0.0, 0.0, 1.8918918918918974], [0.0, 0.0, 1.905405405405411], [0.0, 0.0, 1.9189189189189246], [0.0, 0.0, 1.9324324324324382], [0.0, 0.0, 1.9459459459459518], [0.0, 0.0, 1.9594594594594654], [0.0, 0.0, 1.972972972972979], [0.0, 0.0, 1.9864864864864926], [0.0, 0.0, 2.000000000000006]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.0], [0.0, 0.0, 1.0135135135135136], [0.0, 0.0, 1.0270270270270272], [0.0, 0.0, 1.0405405405405408], [0.0, 0.0, 1.0540540540540544], [0.0, 0.0, 1.067567567567568], [0.0, 0.0, 1.0810810810810816], [0.0, 0.0, 1.0945945945945952], [0.0, 0.0, 1.1081081081081088], [0.0, 0.0, 1.1216216216216224], [0.0, 0.0, 1.135135135135136], [0.0, 0.0, 1.1486486486486496], [0.0, 0.0, 1.1621621621621632], [0.0, 0.0, 1.1756756756756768], [0.0, 0.0, 1.1891891891891904], [0.0, 0.0, 1.202702702702704], [0.0, 0.0, 1.2162162162162176], [0.0, 0.0, 1.2297297297297312], [0.0, 0.0, 1.2432432432432448], [0.0, 0.0, 1.2567567567567584], [0.0, 0.0, 1.270270270270272], [0.0, 0.0, 1.2837837837837855], [0.0, 0.0, 1.2972972972972991], [0.0, 0.0, 1.3108108108108127], [0.0, 0.0, 1.3243243243243263], [0.0, 0.0, 1.33783783783784], [0.0, 0.0, 1.3513513513513535], [0.0, 0.0, 1.3648648648648671], [0.0, 0.0, 1.3783783783783807], [0.0, 0.0, 1.3918918918918943], [0.0, 0.0, 1.405405405405408], [0.0, 0.0, 1.4189189189189215], [0.0, 0.0, 1.4324324324324351], [0.0, 0.0, 1.4459459459459487], [0.0, 0.0, 1.4594594594594623], [0.0, 0.0, 1.472972972972976], [0.0, 0.0, 1.4864864864864895], [0.0, 0.0, 1.500000000000003], [0.0, 0.0, 1.5135135135135167], [0.0, 0.0, 1.5270270270270303], [0.0, 0.0, 1.540540540540544], [0.0, 0.0, 1.5540540540540575], [0.0, 0.0, 1.567567567567571], [0.0, 0.0, 1.5810810810810847], [0.0, 0.0, 1.5945945945945983], [0.0, 0.0, 1.6081081081081119], [0.0, 0.0, 1.6216216216216255], [0.0, 0.0, 1.635135135135139], [0.0, 0.0, 1.6486486486486527], [0.0, 0.0, 1.6621621621621663], [0.0, 0.0, 1.6756756756756799], [0.0, 0.0, 1.6891891891891935], [0.0, 0.0, 1.702702702702707], [0.0, 0.0, 1.7162162162162207], [0.0, 0.0, 1.7297297297297343], [0.0, 0.0, 1.7432432432432479], [0.0, 0.0, 1.7567567567567615], [0.0, 0.0, 1.770270270270275], [0.0, 0.0, 1.7837837837837887], [0.0, 0.0, 1.7972972972973023], [0.0, 0.0, 1.8108108108108159], [0.0, 0.0, 1.8243243243243294], [0.0, 0.0, 1.837837837837843], [0.0, 0.0, 1.8513513513513566], [0.0, 0.0, 1.8648648648648702], [0.0, 0.0, 1.8783783783783838], [0.0, 0.0, 1.8918918918918974], [0.0, 0.0, 1.905405405405411], [0.0, 0.0, 1.9189189189189246], [0.0, 0.0, 1.9324324324324382], [0.0, 0.0, 1.9459459459459518], [0.0, 0.0, 1.9594594594594654], [0.0, 0.0, 1.972972972972979], [0.0, 0.0, 1.9864864864864926], [0.0, 0.0, 2.000000000000006]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.0], [0.0, 0.0, 1.0135135135135136], [0.0, 0.0, 1.0270270270270272], [0.0, 0.0, 1.0405405405405408], [0.0, 0.0, 1.0540540540540544], [0.0, 0.0, 1.067567567567568], [0.0, 0.0, 1.0810810810810816], [0.0, 0.0, 1.0945945945945952], [0.0, 0.0, 1.1081081081081088], [0.0, 0.0, 1.1216216216216224], [0.0, 0.0, 1.135135135135136], [0.0, 0.0, 1.1486486486486496], [0.0, 0.0, 1.1621621621621632], [0.0, 0.0, 1.1756756756756768], [0.0, 0.0, 1.1891891891891904], [0.0, 0.0, 1.202702702702704], [0.0, 0.0, 1.2162162162162176], [0.0, 0.0, 1.2297297297297312], [0.0, 0.0, 1.2432432432432448], [0.0, 0.0, 1.2567567567567584], [0.0, 0.0, 1.270270270270272], [0.0, 0.0, 1.2837837837837855], [0.0, 0.0, 1.2972972972972991], [0.0, 0.0, 1.3108108108108127], [0.0, 0.0, 1.3243243243243263], [0.0, 0.0, 1.33783783783784], [0.0, 0.0, 1.3513513513513535], [0.0, 0.0, 1.3648648648648671], [0.0, 0.0, 1.3783783783783807], [0.0, 0.0, 1.3918918918918943], [0.0, 0.0, 1.405405405405408], [0.0, 0.0, 1.4189189189189215], [0.0, 0.0, 1.4324324324324351], [0.0, 0.0, 1.4459459459459487], [0.0, 0.0, 1.4594594594594623], [0.0, 0.0, 1.472972972972976], [0.0, 0.0, 1.4864864864864895], [0.0, 0.0, 1.500000000000003], [0.0, 0.0, 1.5135135135135167], [0.0, 0.0, 1.5270270270270303], [0.0, 0.0, 1.540540540540544], [0.0, 0.0, 1.5540540540540575], [0.0, 0.0, 1.567567567567571], [0.0, 0.0, 1.5810810810810847], [0.0, 0.0, 1.5945945945945983], [0.0, 0.0, 1.6081081081081119], [0.0, 0.0, 1.6216216216216255], [0.0, 0.0, 1.635135135135139], [0.0, 0.0, 1.6486486486486527], [0.0, 0.0, 1.6621621621621663], [0.0, 0.0, 1.6756756756756799], [0.0, 0.0, 1.6891891891891935], [0.0, 0.0, 1.702702702702707], [0.0, 0.0, 1.7162162162162207], [0.0, 0.0, 1.7297297297297343], [0.0, 0.0, 1.7432432432432479], [0.0, 0.0, 1.7567567567567615], [0.0, 0.0, 1.770270270270275], [0.0, 0.0, 1.7837837837837887], [0.0, 0.0, 1.7972972972973023], [0.0, 0.0, 1.8108108108108159], [0.0, 0.0, 1.8243243243243294], [0.0, 0.0, 1.837837837837843], [0.0, 0.0, 1.8513513513513566], [0.0, 0.0, 1.8648648648648702], [0.0, 0.0, 1.8783783783783838], [0.0, 0.0, 1.8918918918918974], [0.0, 0.0, 1.905405405405411], [0.0, 0.0, 1.9189189189189246], [0.0, 0.0, 1.9324324324324382], [0.0, 0.0, 1.9459459459459518], [0.0, 0.0, 1.9594594594594654], [0.0, 0.0, 1.972972972972979], [0.0, 0.0, 1.9864864864864926], [0.0, 0.0, 2.000000000000006]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.0], [0.0, 0.0, 1.0135135135135136], [0.0, 0.0, 1.0270270270270272], [0.0, 0.0, 1.0405405405405408], [0.0, 0.0, 1.0540540540540544], [0.0, 0.0, 1.067567567567568], [0.0, 0.0, 1.0810810810810816], [0.0, 0.0, 1.0945945945945952], [0.0, 0.0, 1.1081081081081088], [0.0, 0.0, 1.1216216216216224], [0.0, 0.0, 1.135135135135136], [0.0, 0.0, 1.1486486486486496], [0.0, 0.0, 1.1621621621621632], [0.0, 0.0, 1.1756756756756768], [0.0, 0.0, 1.1891891891891904], [0.0, 0.0, 1.202702702702704], [0.0, 0.0, 1.2162162162162176], [0.0, 0.0, 1.2297297297297312], [0.0, 0.0, 1.2432432432432448], [0.0, 0.0, 1.2567567567567584], [0.0, 0.0, 1.270270270270272], [0.0, 0.0, 1.2837837837837855], [0.0, 0.0, 1.2972972972972991], [0.0, 0.0, 1.3108108108108127], [0.0, 0.0, 1.3243243243243263], [0.0, 0.0, 1.33783783783784], [0.0, 0.0, 1.3513513513513535], [0.0, 0.0, 1.3648648648648671], [0.0, 0.0, 1.3783783783783807], [0.0, 0.0, 1.3918918918918943], [0.0, 0.0, 1.405405405405408], [0.0, 0.0, 1.4189189189189215], [0.0, 0.0, 1.4324324324324351], [0.0, 0.0, 1.4459459459459487], [0.0, 0.0, 1.4594594594594623], [0.0, 0.0, 1.472972972972976], [0.0, 0.0, 1.4864864864864895], [0.0, 0.0, 1.500000000000003], [0.0, 0.0, 1.5135135135135167], [0.0, 0.0, 1.5270270270270303], [0.0, 0.0, 1.540540540540544], [0.0, 0.0, 1.5540540540540575], [0.0, 0.0, 1.567567567567571], [0.0, 0.0, 1.5810810810810847], [0.0, 0.0, 1.5945945945945983], [0.0, 0.0, 1.6081081081081119], [0.0, 0.0, 1.6216216216216255], [0.0, 0.0, 1.635135135135139], [0.0, 0.0, 1.6486486486486527], [0.0, 0.0, 1.6621621621621663], [0.0, 0.0, 1.6756756756756799], [0.0, 0.0, 1.6891891891891935], [0.0, 0.0, 1.702702702702707], [0.0, 0.0, 1.7162162162162207], [0.0, 0.0, 1.7297297297297343], [0.0, 0.0, 1.7432432432432479], [0.0, 0.0, 1.7567567567567615], [0.0, 0.0, 1.770270270270275], [0.0, 0.0, 1.7837837837837887], [0.0, 0.0, 1.7972972972973023], [0.0, 0.0, 1.8108108108108159], [0.0, 0.0, 1.8243243243243294], [0.0, 0.0, 1.837837837837843], [0.0, 0.0, 1.8513513513513566], [0.0, 0.0, 1.8648648648648702], [0.0, 0.0, 1.8783783783783838], [0.0, 0.0, 1.8918918918918974], [0.0, 0.0, 1.905405405405411], [0.0, 0.0, 1.9189189189189246], [0.0, 0.0, 1.9324324324324382], [0.0, 0.0, 1.9459459459459518], [0.0, 0.0, 1.9594594594594654], [0.0, 0.0, 1.972972972972979], [0.0, 0.0, 1.9864864864864926], [0.0, 0.0, 2.000000000000006]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.4999997500000208, 0.0004999999166666707, 0.8660254037844387], [0.5067565033783994, 0.0005067566722973015, 0.8777284497815258], [0.5135132567567782, 0.0005135134279279322, 0.8894314957786129], [0.5202700101351568, 0.000520270183558563, 0.9011345417757], [0.5270267635135355, 0.0005270269391891936, 0.912837587772787], [0.5337835168919143, 0.0005337836948198244, 0.9245406337698742], [0.5405402702702929, 0.0005405404504504551, 0.9362436797669612], [0.5472970236486716, 0.0005472972060810859, 0.9479467257640483], [0.5540537770270504, 0.0005540539617117165, 0.9596497717611354], [0.560810530405429, 0.0005608107173423473, 0.9713528177582225], [0.5675672837838077, 0.000567567472972978, 0.9830558637553095], [0.5743240371621865, 0.0005743242286036088, 0.9947589097523966], [0.5810807905405652, 0.0005810809842342395, 1.0064619557494836], [0.5878375439189438, 0.0005878377398648702, 1.0181650017465709], [0.5945942972973226, 0.0005945944954955009, 1.029868047743658], [0.6013510506757013, 0.0006013512511261317, 1.041571093740745], [0.6081078040540799, 0.0006081080067567624, 1.053274139737832], [0.6148645574324587, 0.0006148647623873931, 1.064977185734919], [0.6216213108108374, 0.0006216215180180238, 1.076680231732006], [0.628378064189216, 0.0006283782736486546, 1.0883832777290934], [0.6351348175675947, 0.0006351350292792853, 1.1000863237261804], [0.6418915709459735, 0.000641891784909916, 1.1117893697232675], [0.6486483243243522, 0.0006486485405405467, 1.1234924157203545], [0.6554050777027308, 0.0006554052961711775, 1.1351954617174416], [0.6621618310811096, 0.0006621620518018083, 1.1468985077145286], [0.6689185844594883, 0.000668918807432439, 1.1586015537116157], [0.6756753378378669, 0.0006756755630630697, 1.170304599708703], [0.6824320912162457, 0.0006824323186937004, 1.18200764570579], [0.6891888445946244, 0.0006891890743243312, 1.193710691702877], [0.695945597973003, 0.0006959458299549619, 1.205413737699964], [0.7027023513513818, 0.0007027025855855926, 1.2171167836970511], [0.7094591047297605, 0.0007094593412162233, 1.2288198296941382], [0.7162158581081391, 0.0007162160968468541, 1.2405228756912254], [0.7229726114865179, 0.0007229728524774848, 1.2522259216883125], [0.7297293648648966, 0.0007297296081081155, 1.2639289676853995], [0.7364861182432753, 0.0007364863637387462, 1.2756320136824866], [0.743242871621654, 0.000743243119369377, 1.2873350596795736], [0.7499996250000327, 0.0007499998750000077, 1.2990381056766607], [0.7567563783784114, 0.0007567566306306385, 1.310741151673748], [0.7635131317567901, 0.0007635133862612691, 1.322444197670835], [0.7702698851351688, 0.0007702701418918999, 1.334147243667922], [0.7770266385135475, 0.0007770268975225306, 1.345850289665009], [0.7837833918919263, 0.0007837836531531614, 1.3575533356620961], [0.7905401452703049, 0.000790540408783792, 1.3692563816591832], [0.7972968986486836, 0.0007972971644144228, 1.3809594276562702], [0.8040536520270624, 0.0008040539200450536, 1.3926624736533575], [0.810810405405441, 0.0008108106756756843, 1.4043655196504445], [0.8175671587838197, 0.000817567431306315, 1.4160685656475316], [0.8243239121621985, 0.0008243241869369457, 1.4277716116446186], [0.8310806655405771, 0.0008310809425675765, 1.4394746576417057], [0.8378374189189558, 0.0008378376981982072, 1.4511777036387927], [0.8445941722973346, 0.000844594453828838, 1.46288074963588], [0.8513509256757132, 0.0008513512094594686, 1.474583795632967], [0.8581076790540919, 0.0008581079650900994, 1.486286841630054], [0.8648644324324707, 0.0008648647207207301, 1.4979898876271411], [0.8716211858108494, 0.0008716214763513609, 1.5096929336242282], [0.878377939189228, 0.0008783782319819915, 1.5213959796213152], [0.8851346925676067, 0.0008851349876126223, 1.5330990256184025], [0.8918914459459855, 0.000891891743243253, 1.5448020716154895], [0.8986481993243641, 0.0008986484988738838, 1.5565051176125766], [0.9054049527027428, 0.0009054052545045144, 1.5682081636096636], [0.9121617060811216, 0.0009121620101351452, 1.5799112096067507], [0.9189184594595002, 0.0009189187657657759, 1.5916142556038377], [0.9256752128378789, 0.0009256755213964067, 1.603317301600925], [0.9324319662162577, 0.0009324322770270373, 1.615020347598012], [0.9391887195946363, 0.0009391890326576681, 1.626723393595099], [0.945945472973015, 0.0009459457882882988, 1.6384264395921861], [0.9527022263513938, 0.0009527025439189296, 1.6501294855892732], [0.9594589797297725, 0.0009594592995495604, 1.6618325315863602], [0.9662157331081511, 0.000966216055180191, 1.6735355775834473], [0.9729724864865299, 0.0009729728108108218, 1.6852386235805346], [0.9797292398649086, 0.0009797295664414525, 1.6969416695776216], [0.9864859932432872, 0.0009864863220720832, 1.7086447155747087], [0.993242746621666, 0.0009932430777027138, 1.7203477615717957], [0.9999995000000447, 0.0009999998333333445, 1.7320508075688827]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.2501443236757356, 0.4329293445041682, 0.8660254037844387], [-0.25352465237405636, 0.43877974105152184, 0.8777284497815258], [-0.25690498107237714, 0.44463013759887554, 0.8894314957786129], [-0.2602853097706979, 0.4504805341462292, 0.9011345417757], [-0.2636656384690187, 0.4563309306935828, 0.912837587772787], [-0.26704596716733947, 0.4621813272409365, 0.9245406337698742], [-0.2704262958656602, 0.46803172378829017, 0.9362436797669612], [-0.27380662456398097, 0.4738821203356438, 0.9479467257640483], [-0.27718695326230175, 0.4797325168829975, 0.9596497717611354], [-0.2805672819606225, 0.48558291343035115, 0.9713528177582225], [-0.2839476106589433, 0.4914333099777048, 0.9830558637553095], [-0.2873279393572641, 0.4972837065250585, 0.9947589097523966], [-0.29070826805558486, 0.5031341030724121, 1.0064619557494836], [-0.29408859675390564, 0.5089844996197658, 1.0181650017465709], [-0.2974689254522264, 0.5148348961671194, 1.029868047743658], [-0.3008492541505472, 0.5206852927144731, 1.041571093740745], [-0.3042295828488679, 0.5265356892618267, 1.053274139737832], [-0.3076099115471887, 0.5323860858091803, 1.064977185734919], [-0.3109902402455095, 0.5382364823565341, 1.076680231732006], [-0.31437056894383025, 0.5440868789038877, 1.0883832777290934], [-0.31775089764215103, 0.5499372754512414, 1.1000863237261804], [-0.3211312263404718, 0.555787671998595, 1.1117893697232675], [-0.3245115550387926, 0.5616380685459487, 1.1234924157203545], [-0.32789188373711337, 0.5674884650933023, 1.1351954617174416], [-0.33127221243543414, 0.5733388616406561, 1.1468985077145286], [-0.3346525411337549, 0.5791892581880097, 1.1586015537116157], [-0.3380328698320757, 0.5850396547353633, 1.170304599708703], [-0.3414131985303964, 0.590890051282717, 1.18200764570579], [-0.3447935272287172, 0.5967404478300706, 1.193710691702877], [-0.348173855927038, 0.6025908443774243, 1.205413737699964], [-0.35155418462535876, 0.608441240924778, 1.2171167836970511], [-0.35493451332367953, 0.6142916374721317, 1.2288198296941382], [-0.3583148420220003, 0.6201420340194853, 1.2405228756912254], [-0.3616951707203211, 0.625992430566839, 1.2522259216883125], [-0.36507549941864187, 0.6318428271141926, 1.2639289676853995], [-0.36845582811696265, 0.6376932236615463, 1.2756320136824866], [-0.3718361568152834, 0.6435436202089, 1.2873350596795736], [-0.3752164855136042, 0.6493940167562536, 1.2990381056766607], [-0.3785968142119249, 0.6552444133036073, 1.310741151673748], [-0.3819771429102457, 0.6610948098509609, 1.322444197670835], [-0.3853574716085665, 0.6669452063983146, 1.334147243667922], [-0.38873780030688726, 0.6727956029456683, 1.345850289665009], [-0.39211812900520804, 0.678645999493022, 1.3575533356620961], [-0.3954984577035288, 0.6844963960403756, 1.3692563816591832], [-0.3988787864018496, 0.6903467925877292, 1.3809594276562702], [-0.4022591151001704, 0.6961971891350829, 1.3926624736533575], [-0.40563944379849115, 0.7020475856824365, 1.4043655196504445], [-0.40901977249681193, 0.7078979822297903, 1.4160685656475316], [-0.41240010119513265, 0.7137483787771439, 1.4277716116446186], [-0.41578042989345343, 0.7195987753244976, 1.4394746576417057], [-0.4191607585917742, 0.7254491718718512, 1.4511777036387927], [-0.422541087290095, 0.7312995684192048, 1.46288074963588], [-0.42592141598841576, 0.7371499649665585, 1.474583795632967], [-0.42930174468673654, 0.7430003615139122, 1.486286841630054], [-0.4326820733850573, 0.7488507580612659, 1.4979898876271411], [-0.4360624020833781, 0.7547011546086195, 1.5096929336242282], [-0.4394427307816989, 0.7605515511559732, 1.5213959796213152], [-0.44282305948001965, 0.7664019477033268, 1.5330990256184025], [-0.44620338817834043, 0.7722523442506805, 1.5448020716154895], [-0.44958371687666115, 0.7781027407980342, 1.5565051176125766], [-0.45296404557498193, 0.7839531373453879, 1.5682081636096636], [-0.4563443742733027, 0.7898035338927415, 1.5799112096067507], [-0.4597247029716235, 0.7956539304400951, 1.5916142556038377], [-0.46310503166994427, 0.8015043269874488, 1.603317301600925], [-0.46648536036826505, 0.8073547235348025, 1.615020347598012], [-0.4698656890665858, 0.8132051200821562, 1.626723393595099], [-0.4732460177649066, 0.8190555166295098, 1.6384264395921861], [-0.4766263464632274, 0.8249059131768635, 1.6501294855892732], [-0.48000667516154816, 0.8307563097242171, 1.6618325315863602], [-0.4833870038598689, 0.8366067062715707, 1.6735355775834473], [-0.48676733255818966, 0.8424571028189245, 1.6852386235805346], [-0.49014766125651044, 0.8483074993662781, 1.6969416695776216], [-0.4935279899548312, 0.8541578959136318, 1.7086447155747087], [-0.496908318653152, 0.8600082924609854, 1.7203477615717957], [-0.5002886473514727, 0.8658586890083391, 1.7320508075688827]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.25014432367573564, -0.43292934450416815, 0.8660254037844387], [-0.2535246523740564, -0.4387797410515218, 0.8777284497815258], [-0.2569049810723772, -0.4446301375988755, 0.8894314957786129], [-0.26028530977069797, -0.45048053414622913, 0.9011345417757], [-0.26366563846901875, -0.45633093069358277, 0.912837587772787], [-0.2670459671673395, -0.46218132724093647, 0.9245406337698742], [-0.2704262958656603, -0.4680317237882901, 0.9362436797669612], [-0.273806624563981, -0.47388212033564375, 0.9479467257640483], [-0.2771869532623018, -0.47973251688299745, 0.9596497717611354], [-0.2805672819606226, -0.4855829134303511, 0.9713528177582225], [-0.28394761065894336, -0.49143330997770474, 0.9830558637553095], [-0.28732793935726414, -0.49728370652505843, 0.9947589097523966], [-0.2907082680555849, -0.503134103072412, 1.0064619557494836], [-0.2940885967539057, -0.5089844996197657, 1.0181650017465709], [-0.2974689254522265, -0.5148348961671193, 1.029868047743658], [-0.30084925415054725, -0.520685292714473, 1.041571093740745], [-0.30422958284886803, -0.5265356892618267, 1.053274139737832], [-0.3076099115471888, -0.5323860858091803, 1.064977185734919], [-0.3109902402455096, -0.538236482356534, 1.076680231732006], [-0.3143705689438303, -0.5440868789038876, 1.0883832777290934], [-0.3177508976421511, -0.5499372754512413, 1.1000863237261804], [-0.32113122634047186, -0.5557876719985949, 1.1117893697232675], [-0.32451155503879264, -0.5616380685459487, 1.1234924157203545], [-0.3278918837371134, -0.5674884650933023, 1.1351954617174416], [-0.3312722124354342, -0.573338861640656, 1.1468985077145286], [-0.334652541133755, -0.5791892581880096, 1.1586015537116157], [-0.33803286983207576, -0.5850396547353632, 1.170304599708703], [-0.34141319853039653, -0.5908900512827169, 1.18200764570579], [-0.3447935272287173, -0.5967404478300706, 1.193710691702877], [-0.3481738559270381, -0.6025908443774243, 1.205413737699964], [-0.35155418462535887, -0.6084412409247779, 1.2171167836970511], [-0.3549345133236796, -0.6142916374721316, 1.2288198296941382], [-0.35831484202200037, -0.6201420340194852, 1.2405228756912254], [-0.36169517072032115, -0.6259924305668388, 1.2522259216883125], [-0.3650754994186419, -0.6318428271141926, 1.2639289676853995], [-0.3684558281169627, -0.6376932236615462, 1.2756320136824866], [-0.3718361568152835, -0.6435436202088999, 1.2873350596795736], [-0.37521648551360426, -0.6493940167562535, 1.2990381056766607], [-0.37859681421192504, -0.6552444133036072, 1.310741151673748], [-0.3819771429102458, -0.6610948098509608, 1.322444197670835], [-0.3853574716085666, -0.6669452063983146, 1.334147243667922], [-0.38873780030688737, -0.6727956029456682, 1.345850289665009], [-0.39211812900520815, -0.6786459994930218, 1.3575533356620961], [-0.3954984577035289, -0.6844963960403755, 1.3692563816591832], [-0.39887878640184965, -0.6903467925877291, 1.3809594276562702], [-0.40225911510017043, -0.6961971891350828, 1.3926624736533575], [-0.4056394437984912, -0.7020475856824365, 1.4043655196504445], [-0.409019772496812, -0.7078979822297902, 1.4160685656475316], [-0.41240010119513276, -0.7137483787771438, 1.4277716116446186], [-0.41578042989345354, -0.7195987753244975, 1.4394746576417057], [-0.4191607585917743, -0.7254491718718511, 1.4511777036387927], [-0.4225410872900951, -0.7312995684192047, 1.46288074963588], [-0.4259214159884159, -0.7371499649665585, 1.474583795632967], [-0.42930174468673665, -0.7430003615139121, 1.486286841630054], [-0.43268207338505743, -0.7488507580612658, 1.4979898876271411], [-0.4360624020833782, -0.7547011546086194, 1.5096929336242282], [-0.43944273078169893, -0.7605515511559731, 1.5213959796213152], [-0.4428230594800197, -0.7664019477033267, 1.5330990256184025], [-0.4462033881783405, -0.7722523442506805, 1.5448020716154895], [-0.44958371687666127, -0.7781027407980341, 1.5565051176125766], [-0.45296404557498204, -0.7839531373453877, 1.5682081636096636], [-0.4563443742733028, -0.7898035338927414, 1.5799112096067507], [-0.4597247029716236, -0.795653930440095, 1.5916142556038377], [-0.4631050316699444, -0.8015043269874487, 1.603317301600925], [-0.46648536036826516, -0.8073547235348024, 1.615020347598012], [-0.46986568906658593, -0.8132051200821561, 1.626723393595099], [-0.4732460177649067, -0.8190555166295097, 1.6384264395921861], [-0.4766263464632275, -0.8249059131768633, 1.6501294855892732], [-0.48000667516154827, -0.830756309724217, 1.6618325315863602], [-0.483387003859869, -0.8366067062715706, 1.6735355775834473], [-0.48676733255818977, -0.8424571028189244, 1.6852386235805346], [-0.49014766125651055, -0.848307499366278, 1.6969416695776216], [-0.4935279899548313, -0.8541578959136317, 1.7086447155747087], [-0.4969083186531521, -0.8600082924609853, 1.7203477615717957], [-0.5002886473514728, -0.865858689008339, 1.7320508075688827]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.4999997500000208, -0.0004999999166665161, 0.8660254037844387], [0.5067565033783994, -0.0005067566722971447, 0.8777284497815258], [0.5135132567567782, -0.0005135134279277735, 0.8894314957786129], [0.5202700101351568, -0.0005202701835584021, 0.9011345417757], [0.5270267635135355, -0.0005270269391890307, 0.912837587772787], [0.5337835168919143, -0.0005337836948196593, 0.9245406337698742], [0.5405402702702929, -0.000540540450450288, 0.9362436797669612], [0.5472970236486716, -0.0005472972060809166, 0.9479467257640483], [0.5540537770270504, -0.0005540539617115452, 0.9596497717611354], [0.560810530405429, -0.0005608107173421739, 0.9713528177582225], [0.5675672837838077, -0.0005675674729728026, 0.9830558637553095], [0.5743240371621865, -0.0005743242286034312, 0.9947589097523966], [0.5810807905405652, -0.0005810809842340598, 1.0064619557494836], [0.5878375439189438, -0.0005878377398646884, 1.0181650017465709], [0.5945942972973226, -0.0005945944954953171, 1.029868047743658], [0.6013510506757013, -0.0006013512511259457, 1.041571093740745], [0.6081078040540799, -0.0006081080067565744, 1.053274139737832], [0.6148645574324587, -0.000614864762387203, 1.064977185734919], [0.6216213108108374, -0.0006216215180178317, 1.076680231732006], [0.628378064189216, -0.0006283782736484603, 1.0883832777290934], [0.6351348175675947, -0.0006351350292790889, 1.1000863237261804], [0.6418915709459735, -0.0006418917849097175, 1.1117893697232675], [0.6486483243243522, -0.0006486485405403462, 1.1234924157203545], [0.6554050777027308, -0.0006554052961709749, 1.1351954617174416], [0.6621618310811096, -0.0006621620518016035, 1.1468985077145286], [0.6689185844594883, -0.0006689188074322321, 1.1586015537116157], [0.6756753378378669, -0.0006756755630628608, 1.170304599708703], [0.6824320912162457, -0.0006824323186934894, 1.18200764570579], [0.6891888445946244, -0.000689189074324118, 1.193710691702877], [0.695945597973003, -0.0006959458299547466, 1.205413737699964], [0.7027023513513818, -0.0007027025855853754, 1.2171167836970511], [0.7094591047297605, -0.000709459341216004, 1.2288198296941382], [0.7162158581081391, -0.0007162160968466326, 1.2405228756912254], [0.7229726114865179, -0.0007229728524772612, 1.2522259216883125], [0.7297293648648966, -0.0007297296081078899, 1.2639289676853995], [0.7364861182432753, -0.0007364863637385185, 1.2756320136824866], [0.743242871621654, -0.0007432431193691471, 1.2873350596795736], [0.7499996250000327, -0.0007499998749997758, 1.2990381056766607], [0.7567563783784114, -0.0007567566306304045, 1.310741151673748], [0.7635131317567901, -0.0007635133862610331, 1.322444197670835], [0.7702698851351688, -0.0007702701418916617, 1.334147243667922], [0.7770266385135475, -0.0007770268975222903, 1.345850289665009], [0.7837833918919263, -0.000783783653152919, 1.3575533356620961], [0.7905401452703049, -0.0007905404087835477, 1.3692563816591832], [0.7972968986486836, -0.0007972971644141763, 1.3809594276562702], [0.8040536520270624, -0.0008040539200448049, 1.3926624736533575], [0.810810405405441, -0.0008108106756754336, 1.4043655196504445], [0.8175671587838197, -0.0008175674313060622, 1.4160685656475316], [0.8243239121621985, -0.0008243241869366908, 1.4277716116446186], [0.8310806655405771, -0.0008310809425673194, 1.4394746576417057], [0.8378374189189558, -0.0008378376981979482, 1.4511777036387927], [0.8445941722973346, -0.0008445944538285768, 1.46288074963588], [0.8513509256757132, -0.0008513512094592054, 1.474583795632967], [0.8581076790540919, -0.000858107965089834, 1.486286841630054], [0.8648644324324707, -0.0008648647207204627, 1.4979898876271411], [0.8716211858108494, -0.0008716214763510913, 1.5096929336242282], [0.878377939189228, -0.0008783782319817199, 1.5213959796213152], [0.8851346925676067, -0.0008851349876123486, 1.5330990256184025], [0.8918914459459855, -0.0008918917432429773, 1.5448020716154895], [0.8986481993243641, -0.0008986484988736059, 1.5565051176125766], [0.9054049527027428, -0.0009054052545042345, 1.5682081636096636], [0.9121617060811216, -0.0009121620101348631, 1.5799112096067507], [0.9189184594595002, -0.0009189187657654918, 1.5916142556038377], [0.9256752128378789, -0.0009256755213961204, 1.603317301600925], [0.9324319662162577, -0.000932432277026749, 1.615020347598012], [0.9391887195946363, -0.0009391890326573777, 1.626723393595099], [0.945945472973015, -0.0009459457882880064, 1.6384264395921861], [0.9527022263513938, -0.000952702543918635, 1.6501294855892732], [0.9594589797297725, -0.0009594592995492636, 1.6618325315863602], [0.9662157331081511, -0.0009662160551798922, 1.6735355775834473], [0.9729724864865299, -0.0009729728108105209, 1.6852386235805346], [0.9797292398649086, -0.0009797295664411493, 1.6969416695776216], [0.9864859932432872, -0.000986486322071778, 1.7086447155747087], [0.993242746621666, -0.0009932430777024068, 1.7203477615717957], [0.9999995000000447, -0.0009999998333330353, 1.7320508075688827]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.8660249707717728, 0.0008660252594468786, 0.5000000000000001], [0.8777280109173373, 0.0008777283034934582, 0.5067567567567569], [0.889431051062902, 0.0008894313475400375, 0.5135135135135137], [0.9011340912084665, 0.0009011343915866171, 0.5202702702702705], [0.912837131354031, 0.0009128374356331965, 0.5270270270270273], [0.9245401714995957, 0.0009245404796797762, 0.5337837837837841], [0.9362432116451602, 0.0009362435237263556, 0.5405405405405409], [0.9479462517907248, 0.0009479465677729352, 0.5472972972972977], [0.9596492919362895, 0.0009596496118195146, 0.5540540540540545], [0.9713523320818539, 0.0009713526558660942, 0.5608108108108113], [0.9830553722274185, 0.0009830556999126736, 0.5675675675675681], [0.9947584123729831, 0.0009947587439592532, 0.5743243243243249], [1.0064614525185476, 0.0010064617880058326, 0.5810810810810817], [1.0181644926641122, 0.0010181648320524122, 0.5878378378378385], [1.029867532809677, 0.0010298678760989916, 0.5945945945945953], [1.0415705729552414, 0.0010415709201455712, 0.6013513513513521], [1.0532736131008058, 0.0010532739641921506, 0.6081081081081089], [1.0649766532463705, 0.0010649770082387302, 0.6148648648648657], [1.0766796933919351, 0.0010766800522853098, 0.6216216216216225], [1.0883827335374996, 0.0010883830963318894, 0.6283783783783793], [1.100085773683064, 0.0011000861403784687, 0.6351351351351361], [1.1117888138286287, 0.0011117891844250483, 0.6418918918918929], [1.1234918539741934, 0.0011234922284716277, 0.6486486486486497], [1.1351948941197578, 0.0011351952725182073, 0.6554054054054065], [1.1468979342653225, 0.001146898316564787, 0.6621621621621633], [1.158600974410887, 0.0011586013606113663, 0.6689189189189201], [1.1703040145564516, 0.0011703044046579459, 0.6756756756756769], [1.1820070547020163, 0.0011820074487045253, 0.6824324324324337], [1.1937100948475807, 0.0011937104927511048, 0.6891891891891905], [1.2054131349931452, 0.0012054135367976844, 0.6959459459459473], [1.2171161751387098, 0.001217116580844264, 0.7027027027027041], [1.2288192152842745, 0.0012288196248908434, 0.7094594594594609], [1.240522255429839, 0.001240522668937423, 0.7162162162162177], [1.2522252955754036, 0.0012522257129840024, 0.7229729729729745], [1.263928335720968, 0.001263928757030582, 0.7297297297297313], [1.2756313758665327, 0.0012756318010771614, 0.7364864864864881], [1.2873344160120974, 0.001287334845123741, 0.7432432432432449], [1.2990374561576619, 0.0012990378891703203, 0.7500000000000018], [1.3107404963032263, 0.0013107409332169, 0.7567567567567586], [1.3224435364487912, 0.0013224439772634795, 0.7635135135135154], [1.3341465765943556, 0.0013341470213100591, 0.7702702702702722], [1.34584961673992, 0.0013458500653566385, 0.777027027027029], [1.3575526568854848, 0.001357553109403218, 0.7837837837837858], [1.3692556970310492, 0.0013692561534497975, 0.7905405405405426], [1.3809587371766139, 0.001380959197496377, 0.7972972972972994], [1.3926617773221786, 0.0013926622415429567, 0.8040540540540562], [1.404364817467743, 0.001404365285589536, 0.810810810810813], [1.4160678576133074, 0.0014160683296361156, 0.8175675675675698], [1.4277708977588723, 0.001427771373682695, 0.8243243243243266], [1.4394739379044368, 0.0014394744177292746, 0.8310810810810834], [1.4511769780500012, 0.0014511774617758542, 0.8378378378378402], [1.462880018195566, 0.0014628805058224338, 0.844594594594597], [1.4745830583411306, 0.0014745835498690132, 0.8513513513513538], [1.486286098486695, 0.0014862865939155928, 0.8581081081081106], [1.4979891386322597, 0.0014979896379621722, 0.8648648648648674], [1.5096921787778241, 0.0015096926820087518, 0.8716216216216242], [1.5213952189233886, 0.0015213957260553311, 0.878378378378381], [1.5330982590689533, 0.0015330987701019107, 0.8851351351351378], [1.544801299214518, 0.00154480181414849, 0.8918918918918946], [1.5565043393600824, 0.0015565048581950697, 0.8986486486486513], [1.5682073795056468, 0.0015682079022416493, 0.9054054054054081], [1.5799104196512117, 0.0015799109462882289, 0.912162162162165], [1.5916134597967762, 0.0015916139903348083, 0.9189189189189217], [1.6033164999423406, 0.0016033170343813879, 0.9256756756756785], [1.6150195400879053, 0.0016150200784279672, 0.9324324324324353], [1.62672258023347, 0.0016267231224745468, 0.9391891891891921], [1.6384256203790344, 0.0016384261665211262, 0.9459459459459489], [1.650128660524599, 0.0016501292105677058, 0.9527027027027057], [1.6618317006701635, 0.0016618322546142854, 0.9594594594594625], [1.673534740815728, 0.0016735352986608648, 0.9662162162162193], [1.6852377809612928, 0.0016852383427074444, 0.9729729729729761], [1.6969408211068573, 0.001696941386754024, 0.9797297297297329], [1.7086438612524217, 0.0017086444308006036, 0.9864864864864897], [1.7203469013979864, 0.001720347474847183, 0.9932432432432465], [1.732049941543551, 0.0017320505188937623, 1.0000000000000033]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.4332626778313285, 0.7498556207687093, 0.5000000000000001], [-0.43911757888310327, 0.7599888048331513, 0.5067567567567569], [-0.44497247993487804, 0.7701219888975934, 0.5135135135135137], [-0.45082738098665276, 0.7802551729620355, 0.5202702702702705], [-0.45668228203842753, 0.7903883570264776, 0.5270270270270273], [-0.4625371830902023, 0.8005215410909197, 0.5337837837837841], [-0.46839208414197697, 0.8106547251553617, 0.5405405405405409], [-0.4742469851937517, 0.8207879092198038, 0.5472972972972977], [-0.48010188624552647, 0.8309210932842459, 0.5540540540540545], [-0.48595678729730124, 0.841054277348688, 0.5608108108108113], [-0.49181168834907596, 0.8511874614131301, 0.5675675675675681], [-0.49766658940085073, 0.8613206454775721, 0.5743243243243249], [-0.5035214904526255, 0.8714538295420143, 0.5810810810810817], [-0.5093763915044003, 0.8815870136064564, 0.5878378378378385], [-0.515231292556175, 0.8917201976708984, 0.5945945945945953], [-0.5210861936079497, 0.9018533817353405, 0.6013513513513521], [-0.5269410946597244, 0.9119865657997825, 0.6081081081081089], [-0.5327959957114992, 0.9221197498642245, 0.6148648648648657], [-0.5386508967632739, 0.9322529339286668, 0.6216216216216225], [-0.5445057978150487, 0.9423861179931089, 0.6283783783783793], [-0.5503606988668234, 0.9525193020575509, 0.6351351351351361], [-0.5562155999185981, 0.962652486121993, 0.6418918918918929], [-0.5620705009703729, 0.972785670186435, 0.6486486486486497], [-0.5679254020221477, 0.982918854250877, 0.6554054054054065], [-0.5737803030739225, 0.9930520383153193, 0.6621621621621633], [-0.5796352041256972, 1.0031852223797613, 0.6689189189189201], [-0.5854901051774719, 1.0133184064442033, 0.6756756756756769], [-0.5913450062292466, 1.0234515905086454, 0.6824324324324337], [-0.5971999072810213, 1.0335847745730875, 0.6891891891891905], [-0.6030548083327961, 1.0437179586375296, 0.6959459459459473], [-0.6089097093845709, 1.0538511427019717, 0.7027027027027041], [-0.6147646104363457, 1.0639843267664137, 0.7094594594594609], [-0.6206195114881204, 1.0741175108308558, 0.7162162162162177], [-0.6264744125398951, 1.084250694895298, 0.7229729729729745], [-0.6323293135916699, 1.09438387895974, 0.7297297297297313], [-0.6381842146434447, 1.104517063024182, 0.7364864864864881], [-0.6440391156952194, 1.1146502470886241, 0.7432432432432449], [-0.6498940167469942, 1.1247834311530662, 0.7500000000000018], [-0.6557489177987689, 1.1349166152175083, 0.7567567567567586], [-0.6616038188505435, 1.1450497992819504, 0.7635135135135154], [-0.6674587199023183, 1.1551829833463925, 0.7702702702702722], [-0.6733136209540931, 1.1653161674108345, 0.777027027027029], [-0.6791685220058679, 1.1754493514752766, 0.7837837837837858], [-0.6850234230576426, 1.1855825355397187, 0.7905405405405426], [-0.6908783241094174, 1.1957157196041608, 0.7972972972972994], [-0.6967332251611921, 1.2058489036686029, 0.8040540540540562], [-0.7025881262129668, 1.215982087733045, 0.810810810810813], [-0.7084430272647416, 1.226115271797487, 0.8175675675675698], [-0.7142979283165163, 1.236248455861929, 0.8243243243243266], [-0.7201528293682911, 1.2463816399263712, 0.8310810810810834], [-0.7260077304200658, 1.2565148239908133, 0.8378378378378402], [-0.7318626314718405, 1.2666480080552553, 0.844594594594597], [-0.7377175325236153, 1.2767811921196974, 0.8513513513513538], [-0.74357243357539, 1.2869143761841395, 0.8581081081081106], [-0.7494273346271648, 1.2970475602485816, 0.8648648648648674], [-0.7552822356789396, 1.3071807443130237, 0.8716216216216242], [-0.7611371367307144, 1.3173139283774657, 0.878378378378381], [-0.766992037782489, 1.3274471124419078, 0.8851351351351378], [-0.7728469388342638, 1.33758029650635, 0.8918918918918946], [-0.7787018398860385, 1.347713480570792, 0.8986486486486513], [-0.7845567409378132, 1.357846664635234, 0.9054054054054081], [-0.790411641989588, 1.3679798486996761, 0.912162162162165], [-0.7962665430413628, 1.3781130327641182, 0.9189189189189217], [-0.8021214440931375, 1.3882462168285603, 0.9256756756756785], [-0.8079763451449122, 1.3983794008930024, 0.9324324324324353], [-0.813831246196687, 1.4085125849574445, 0.9391891891891921], [-0.8196861472484618, 1.4186457690218865, 0.9459459459459489], [-0.8255410483002366, 1.4287789530863286, 0.9527027027027057], [-0.8313959493520113, 1.4389121371507707, 0.9594594594594625], [-0.837250850403786, 1.4490453212152128, 0.9662162162162193], [-0.8431057514555607, 1.4591785052796549, 0.9729729729729761], [-0.8489606525073354, 1.469311689344097, 0.9797297297297329], [-0.8548155535591102, 1.479444873408539, 0.9864864864864897], [-0.860670454610885, 1.489578057472981, 0.9932432432432465], [-0.8665253556626598, 1.4997112415374232, 1.0000000000000033]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.4332626778313286, -0.7498556207687092, 0.5000000000000001], [-0.4391175788831034, -0.7599888048331512, 0.5067567567567569], [-0.4449724799348781, -0.7701219888975933, 0.5135135135135137], [-0.45082738098665287, -0.7802551729620354, 0.5202702702702705], [-0.45668228203842764, -0.7903883570264775, 0.5270270270270273], [-0.46253718309020236, -0.8005215410909196, 0.5337837837837841], [-0.46839208414197714, -0.8106547251553616, 0.5405405405405409], [-0.4742469851937518, -0.8207879092198037, 0.5472972972972977], [-0.4801018862455266, -0.8309210932842458, 0.5540540540540545], [-0.4859567872973013, -0.8410542773486879, 0.5608108108108113], [-0.49181168834907607, -0.85118746141313, 0.5675675675675681], [-0.49766658940085085, -0.861320645477572, 0.5743243243243249], [-0.5035214904526256, -0.8714538295420141, 0.5810810810810817], [-0.5093763915044003, -0.8815870136064562, 0.5878378378378385], [-0.5152312925561751, -0.8917201976708983, 0.5945945945945953], [-0.5210861936079498, -0.9018533817353402, 0.6013513513513521], [-0.5269410946597246, -0.9119865657997825, 0.6081081081081089], [-0.5327959957114994, -0.9221197498642245, 0.6148648648648657], [-0.5386508967632742, -0.9322529339286666, 0.6216216216216225], [-0.5445057978150488, -0.9423861179931087, 0.6283783783783793], [-0.5503606988668235, -0.9525193020575506, 0.6351351351351361], [-0.5562155999185983, -0.9626524861219927, 0.6418918918918929], [-0.562070500970373, -0.972785670186435, 0.6486486486486497], [-0.5679254020221478, -0.982918854250877, 0.6554054054054065], [-0.5737803030739226, -0.9930520383153191, 0.6621621621621633], [-0.5796352041256972, -1.003185222379761, 0.6689189189189201], [-0.585490105177472, -1.0133184064442031, 0.6756756756756769], [-0.5913450062292468, -1.0234515905086452, 0.6824324324324337], [-0.5971999072810216, -1.0335847745730875, 0.6891891891891905], [-0.6030548083327963, -1.0437179586375296, 0.6959459459459473], [-0.6089097093845711, -1.0538511427019714, 0.7027027027027041], [-0.6147646104363458, -1.0639843267664135, 0.7094594594594609], [-0.6206195114881204, -1.0741175108308556, 0.7162162162162177], [-0.6264744125398952, -1.0842506948952977, 0.7229729729729745], [-0.63232931359167, -1.09438387895974, 0.7297297297297313], [-0.6381842146434448, -1.104517063024182, 0.7364864864864881], [-0.6440391156952195, -1.114650247088624, 0.7432432432432449], [-0.6498940167469943, -1.124783431153066, 0.7500000000000018], [-0.655748917798769, -1.134916615217508, 0.7567567567567586], [-0.6616038188505438, -1.1450497992819502, 0.7635135135135154], [-0.6674587199023185, -1.1551829833463925, 0.7702702702702722], [-0.6733136209540933, -1.1653161674108345, 0.777027027027029], [-0.6791685220058681, -1.1754493514752764, 0.7837837837837858], [-0.6850234230576427, -1.1855825355397185, 0.7905405405405426], [-0.6908783241094174, -1.1957157196041606, 0.7972972972972994], [-0.6967332251611922, -1.2058489036686026, 0.8040540540540562], [-0.702588126212967, -1.215982087733045, 0.810810810810813], [-0.7084430272647417, -1.226115271797487, 0.8175675675675698], [-0.7142979283165165, -1.2362484558619289, 0.8243243243243266], [-0.7201528293682913, -1.246381639926371, 0.8310810810810834], [-0.7260077304200659, -1.256514823990813, 0.8378378378378402], [-0.7318626314718407, -1.2666480080552551, 0.844594594594597], [-0.7377175325236155, -1.2767811921196974, 0.8513513513513538], [-0.7435724335753903, -1.2869143761841395, 0.8581081081081106], [-0.749427334627165, -1.2970475602485814, 0.8648648648648674], [-0.7552822356789397, -1.3071807443130234, 0.8716216216216242], [-0.7611371367307144, -1.3173139283774655, 0.878378378378381], [-0.7669920377824891, -1.3274471124419076, 0.8851351351351378], [-0.7728469388342639, -1.33758029650635, 0.8918918918918946], [-0.7787018398860387, -1.347713480570792, 0.8986486486486513], [-0.7845567409378135, -1.3578466646352338, 0.9054054054054081], [-0.7904116419895882, -1.367979848699676, 0.912162162162165], [-0.7962665430413629, -1.378113032764118, 0.9189189189189217], [-0.8021214440931377, -1.38824621682856, 0.9256756756756785], [-0.8079763451449125, -1.3983794008930024, 0.9324324324324353], [-0.8138312461966872, -1.4085125849574442, 0.9391891891891921], [-0.819686147248462, -1.4186457690218863, 0.9459459459459489], [-0.8255410483002368, -1.4287789530863284, 0.9527027027027057], [-0.8313959493520114, -1.4389121371507705, 0.9594594594594625], [-0.8372508504037861, -1.4490453212152126, 0.9662162162162193], [-0.8431057514555609, -1.4591785052796549, 0.9729729729729761], [-0.8489606525073357, -1.4693116893440967, 0.9797297297297329], [-0.8548155535591104, -1.4794448734085388, 0.9864864864864897], [-0.8606704546108852, -1.4895780574729809, 0.9932432432432465], [-0.8665253556626599, -1.499711241537423, 1.0000000000000033]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.8660249707717728, -0.0008660252594466108, 0.5000000000000001], [0.8777280109173373, -0.0008777283034931866, 0.5067567567567569], [0.889431051062902, -0.0008894313475397626, 0.5135135135135137], [0.9011340912084665, -0.0009011343915863385, 0.5202702702702705], [0.912837131354031, -0.0009128374356329143, 0.5270270270270273], [0.9245401714995957, -0.0009245404796794902, 0.5337837837837841], [0.9362432116451602, -0.0009362435237260662, 0.5405405405405409], [0.9479462517907248, -0.000947946567772642, 0.5472972972972977], [0.9596492919362895, -0.0009596496118192179, 0.5540540540540545], [0.9713523320818539, -0.0009713526558657937, 0.5608108108108113], [0.9830553722274185, -0.0009830556999123699, 0.5675675675675681], [0.9947584123729831, -0.0009947587439589455, 0.5743243243243249], [1.0064614525185476, -0.0010064617880055215, 0.5810810810810817], [1.0181644926641122, -0.0010181648320520974, 0.5878378378378385], [1.029867532809677, -0.0010298678760986733, 0.5945945945945953], [1.0415705729552414, -0.0010415709201452492, 0.6013513513513521], [1.0532736131008058, -0.001053273964191825, 0.6081081081081089], [1.0649766532463705, -0.0010649770082384008, 0.6148648648648657], [1.0766796933919351, -0.001076680052284977, 0.6216216216216225], [1.0883827335374996, -0.0010883830963315528, 0.6283783783783793], [1.100085773683064, -0.0011000861403781285, 0.6351351351351361], [1.1117888138286287, -0.0011117891844247044, 0.6418918918918929], [1.1234918539741934, -0.0011234922284712805, 0.6486486486486497], [1.1351948941197578, -0.0011351952725178562, 0.6554054054054065], [1.1468979342653225, -0.0011468983165644321, 0.6621621621621633], [1.158600974410887, -0.001158601360611008, 0.6689189189189201], [1.1703040145564516, -0.001170304404657584, 0.6756756756756769], [1.1820070547020163, -0.0011820074487041599, 0.6824324324324337], [1.1937100948475807, -0.0011937104927507358, 0.6891891891891905], [1.2054131349931452, -0.0012054135367973117, 0.6959459459459473], [1.2171161751387098, -0.0012171165808438876, 0.7027027027027041], [1.2288192152842745, -0.0012288196248904635, 0.7094594594594609], [1.240522255429839, -0.0012405226689370394, 0.7162162162162177], [1.2522252955754036, -0.0012522257129836151, 0.7229729729729745], [1.263928335720968, -0.0012639287570301912, 0.7297297297297313], [1.2756313758665327, -0.0012756318010767671, 0.7364864864864881], [1.2873344160120974, -0.0012873348451233428, 0.7432432432432449], [1.2990374561576619, -0.0012990378891699187, 0.7500000000000018], [1.3107404963032263, -0.0013107409332164949, 0.7567567567567586], [1.3224435364487912, -0.0013224439772630706, 0.7635135135135154], [1.3341465765943556, -0.0013341470213096465, 0.7702702702702722], [1.34584961673992, -0.0013458500653562224, 0.777027027027029], [1.3575526568854848, -0.0013575531094027983, 0.7837837837837858], [1.3692556970310492, -0.0013692561534493742, 0.7905405405405426], [1.3809587371766139, -0.0013809591974959501, 0.7972972972972994], [1.3926617773221786, -0.0013926622415425258, 0.8040540540540562], [1.404364817467743, -0.001404365285589102, 0.810810810810813], [1.4160678576133074, -0.0014160683296356778, 0.8175675675675698], [1.4277708977588723, -0.0014277713736822535, 0.8243243243243266], [1.4394739379044368, -0.0014394744177288294, 0.8310810810810834], [1.4511769780500012, -0.0014511774617754056, 0.8378378378378402], [1.462880018195566, -0.0014628805058219813, 0.844594594594597], [1.4745830583411306, -0.0014745835498685572, 0.8513513513513538], [1.486286098486695, -0.001486286593915133, 0.8581081081081106], [1.4979891386322597, -0.001497989637961709, 0.8648648648648674], [1.5096921787778241, -0.001509692682008285, 0.8716216216216242], [1.5213952189233886, -0.0015213957260548608, 0.878378378378381], [1.5330982590689533, -0.0015330987701014367, 0.8851351351351378], [1.544801299214518, -0.0015448018141480126, 0.8918918918918946], [1.5565043393600824, -0.0015565048581945885, 0.8986486486486513], [1.5682073795056468, -0.0015682079022411642, 0.9054054054054081], [1.5799104196512117, -0.0015799109462877401, 0.912162162162165], [1.5916134597967762, -0.0015916139903343163, 0.9189189189189217], [1.6033164999423406, -0.001603317034380892, 0.9256756756756785], [1.6150195400879053, -0.0016150200784274679, 0.9324324324324353], [1.62672258023347, -0.0016267231224740438, 0.9391891891891921], [1.6384256203790344, -0.0016384261665206197, 0.9459459459459489], [1.650128660524599, -0.0016501292105671956, 0.9527027027027057], [1.6618317006701635, -0.0016618322546137715, 0.9594594594594625], [1.673534740815728, -0.0016735352986603474, 0.9662162162162193], [1.6852377809612928, -0.0016852383427069233, 0.9729729729729761], [1.6969408211068573, -0.001696941386753499, 0.9797297297297329], [1.7086438612524217, -0.0017086444308000751, 0.9864864864864897], [1.7203469013979864, -0.001720347474846651, 0.9932432432432465], [1.732049941543551, -0.0017320505188932267, 1.0000000000000033]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.9999995000000417, 0.0009999998333333417, 6.123233995736766e-17], [1.013513006756799, 0.0010135133445946032, 6.205980401084561e-17], [1.0270265135135566, 0.0010270268558558646, 6.288726806432355e-17], [1.040540020270314, 0.0010405403671171261, 6.37147321178015e-17], [1.0540535270270712, 0.0010540538783783875, 6.454219617127944e-17], [1.0675670337838288, 0.001067567389639649, 6.53696602247574e-17], [1.081080540540586, 0.0010810809009009104, 6.619712427823533e-17], [1.0945940472973434, 0.001094594412162172, 6.702458833171329e-17], [1.108107554054101, 0.0011081079234234333, 6.785205238519124e-17], [1.1216210608108583, 0.0011216214346846949, 6.867951643866918e-17], [1.1351345675676157, 0.0011351349459459562, 6.950698049214713e-17], [1.1486480743243732, 0.0011486484572072178, 7.033444454562507e-17], [1.1621615810811305, 0.0011621619684684791, 7.116190859910302e-17], [1.1756750878378879, 0.0011756754797297407, 7.198937265258096e-17], [1.1891885945946454, 0.001189188990991002, 7.281683670605891e-17], [1.2027021013514028, 0.0012027025022522636, 7.364430075953685e-17], [1.21621560810816, 0.001216216013513525, 7.44717648130148e-17], [1.2297291148649176, 0.0012297295247747865, 7.529922886649276e-17], [1.243242621621675, 0.0012432430360360478, 7.61266929199707e-17], [1.2567561283784323, 0.0012567565472973094, 7.695415697344865e-17], [1.2702696351351896, 0.0012702700585585707, 7.778162102692659e-17], [1.2837831418919472, 0.0012837835698198323, 7.860908508040454e-17], [1.2972966486487045, 0.0012972970810810937, 7.943654913388248e-17], [1.3108101554054619, 0.0013108105923423552, 8.026401318736043e-17], [1.3243236621622194, 0.0013243241036036168, 8.109147724083838e-17], [1.3378371689189767, 0.0013378376148648781, 8.191894129431632e-17], [1.351350675675734, 0.0013513511261261397, 8.274640534779427e-17], [1.3648641824324916, 0.001364864637387401, 8.357386940127221e-17], [1.378377689189249, 0.0013783781486486626, 8.440133345475016e-17], [1.3918911959460063, 0.001391891659909924, 8.52287975082281e-17], [1.4054047027027639, 0.0014054051711711855, 8.605626156170606e-17], [1.4189182094595212, 0.0014189186824324468, 8.688372561518401e-17], [1.4324317162162785, 0.0014324321936937084, 8.771118966866195e-17], [1.445945222973036, 0.0014459457049549697, 8.85386537221399e-17], [1.4594587297297934, 0.0014594592162162313, 8.936611777561784e-17], [1.4729722364865507, 0.0014729727274774927, 9.019358182909579e-17], [1.4864857432433083, 0.0014864862387387542, 9.102104588257373e-17], [1.4999992500000656, 0.0014999997500000156, 9.184850993605168e-17], [1.513512756756823, 0.0015135132612612771, 9.267597398952963e-17], [1.5270262635135805, 0.0015270267725225385, 9.350343804300757e-17], [1.5405397702703378, 0.0015405402837838, 9.433090209648552e-17], [1.5540532770270952, 0.0015540537950450614, 9.515836614996346e-17], [1.5675667837838527, 0.001567567306306323, 9.598583020344142e-17], [1.58108029054061, 0.0015810808175675843, 9.681329425691936e-17], [1.5945937972973674, 0.0015945943288288458, 9.764075831039731e-17], [1.608107304054125, 0.0016081078400901074, 9.846822236387525e-17], [1.6216208108108823, 0.0016216213513513687, 9.92956864173532e-17], [1.6351343175676396, 0.0016351348626126303, 1.0012315047083115e-16], [1.6486478243243972, 0.0016486483738738917, 1.0095061452430909e-16], [1.6621613310811545, 0.0016621618851351532, 1.0177807857778704e-16], [1.6756748378379118, 0.0016756753963964146, 1.0260554263126498e-16], [1.6891883445946694, 0.0016891889076576761, 1.0343300668474293e-16], [1.7027018513514267, 0.0017027024189189375, 1.0426047073822087e-16], [1.716215358108184, 0.001716215930180199, 1.0508793479169882e-16], [1.7297288648649416, 0.0017297294414414604, 1.0591539884517678e-16], [1.743242371621699, 0.001743242952702722, 1.0674286289865472e-16], [1.7567558783784563, 0.0017567564639639833, 1.0757032695213267e-16], [1.7702693851352136, 0.0017702699752252448, 1.0839779100561061e-16], [1.7837828918919711, 0.0017837834864865062, 1.0922525505908856e-16], [1.7972963986487285, 0.0017972969977477677, 1.100527191125665e-16], [1.8108099054054858, 0.001810810509009029, 1.1088018316604445e-16], [1.8243234121622434, 0.0018243240202702907, 1.117076472195224e-16], [1.8378369189190007, 0.001837837531531552, 1.1253511127300034e-16], [1.851350425675758, 0.0018513510427928136, 1.1336257532647828e-16], [1.8648639324325156, 0.001864864554054075, 1.1419003937995625e-16], [1.878377439189273, 0.0018783780653153365, 1.1501750343343419e-16], [1.8918909459460302, 0.0018918915765765978, 1.1584496748691213e-16], [1.9054044527027878, 0.0019054050878378594, 1.1667243154039006e-16], [1.9189179594595451, 0.001918918599099121, 1.1749989559386803e-16], [1.9324314662163025, 0.0019324321103603823, 1.1832735964734597e-16], [1.94594497297306, 0.0019459456216216438, 1.191548237008239e-16], [1.9594584797298173, 0.0019594591328829054, 1.1998228775430187e-16], [1.9729719864865747, 0.0019729726441441667, 1.208097518077798e-16], [1.9864854932433322, 0.001986486155405428, 1.2163721586125775e-16], [1.9999990000000896, 0.0019999996666666894, 1.224646799147357e-16]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.5002886473514713, 0.8658586890083365, 6.123233995736766e-17], [-0.5070493047481128, 0.8775594821030438, 6.205980401084561e-17], [-0.5138099621447544, 0.8892602751977512, 6.288726806432355e-17], [-0.5205706195413959, 0.9009610682924585, 6.37147321178015e-17], [-0.5273312769380375, 0.9126618613871658, 6.454219617127944e-17], [-0.534091934334679, 0.9243626544818732, 6.53696602247574e-17], [-0.5408525917313205, 0.9360634475765804, 6.619712427823533e-17], [-0.547613249127962, 0.9477642406712877, 6.702458833171329e-17], [-0.5543739065246036, 0.9594650337659951, 6.785205238519124e-17], [-0.5611345639212452, 0.9711658268607024, 6.867951643866918e-17], [-0.5678952213178867, 0.9828666199554097, 6.950698049214713e-17], [-0.5746558787145283, 0.9945674130501171, 7.033444454562507e-17], [-0.5814165361111698, 1.0062682061448245, 7.116190859910302e-17], [-0.5881771935078114, 1.0179689992395318, 7.198937265258096e-17], [-0.594937850904453, 1.029669792334239, 7.281683670605891e-17], [-0.6016985083010945, 1.0413705854289463, 7.364430075953685e-17], [-0.608459165697736, 1.0530713785236536, 7.44717648130148e-17], [-0.6152198230943775, 1.064772171618361, 7.529922886649276e-17], [-0.6219804804910191, 1.0764729647130684, 7.61266929199707e-17], [-0.6287411378876606, 1.0881737578077757, 7.695415697344865e-17], [-0.6355017952843022, 1.099874550902483, 7.778162102692659e-17], [-0.6422624526809437, 1.1115753439971903, 7.860908508040454e-17], [-0.6490231100775853, 1.1232761370918976, 7.943654913388248e-17], [-0.6557837674742268, 1.1349769301866048, 8.026401318736043e-17], [-0.6625444248708684, 1.1466777232813123, 8.109147724083838e-17], [-0.66930508226751, 1.1583785163760196, 8.191894129431632e-17], [-0.6760657396641515, 1.170079309470727, 8.274640534779427e-17], [-0.682826397060793, 1.1817801025654342, 8.357386940127221e-17], [-0.6895870544574345, 1.1934808956601415, 8.440133345475016e-17], [-0.6963477118540761, 1.2051816887548488, 8.52287975082281e-17], [-0.7031083692507176, 1.2168824818495563, 8.605626156170606e-17], [-0.7098690266473592, 1.2285832749442636, 8.688372561518401e-17], [-0.7166296840440007, 1.2402840680389708, 8.771118966866195e-17], [-0.7233903414406423, 1.2519848611336781, 8.85386537221399e-17], [-0.7301509988372838, 1.2636856542283854, 8.936611777561784e-17], [-0.7369116562339254, 1.275386447323093, 9.019358182909579e-17], [-0.743672313630567, 1.2870872404178002, 9.102104588257373e-17], [-0.7504329710272085, 1.2987880335125075, 9.184850993605168e-17], [-0.75719362842385, 1.3104888266072148, 9.267597398952963e-17], [-0.7639542858204915, 1.322189619701922, 9.350343804300757e-17], [-0.7707149432171331, 1.3338904127966293, 9.433090209648552e-17], [-0.7774756006137746, 1.3455912058913369, 9.515836614996346e-17], [-0.7842362580104162, 1.3572919989860441, 9.598583020344142e-17], [-0.7909969154070577, 1.3689927920807514, 9.681329425691936e-17], [-0.7977575728036993, 1.3806935851754587, 9.764075831039731e-17], [-0.8045182302003409, 1.392394378270166, 9.846822236387525e-17], [-0.8112788875969824, 1.4040951713648733, 9.92956864173532e-17], [-0.818039544993624, 1.4157959644595808, 1.0012315047083115e-16], [-0.8248002023902654, 1.427496757554288, 1.0095061452430909e-16], [-0.831560859786907, 1.4391975506489953, 1.0177807857778704e-16], [-0.8383215171835485, 1.4508983437437026, 1.0260554263126498e-16], [-0.8450821745801901, 1.46259913683841, 1.0343300668474293e-16], [-0.8518428319768316, 1.4742999299331172, 1.0426047073822087e-16], [-0.8586034893734732, 1.4860007230278247, 1.0508793479169882e-16], [-0.8653641467701148, 1.497701516122532, 1.0591539884517678e-16], [-0.8721248041667563, 1.5094023092172393, 1.0674286289865472e-16], [-0.8788854615633979, 1.5211031023119466, 1.0757032695213267e-16], [-0.8856461189600394, 1.5328038954066538, 1.0839779100561061e-16], [-0.892406776356681, 1.5445046885013611, 1.0922525505908856e-16], [-0.8991674337533224, 1.5562054815960686, 1.100527191125665e-16], [-0.905928091149964, 1.567906274690776, 1.1088018316604445e-16], [-0.9126887485466055, 1.5796070677854832, 1.117076472195224e-16], [-0.9194494059432471, 1.5913078608801905, 1.1253511127300034e-16], [-0.9262100633398886, 1.6030086539748978, 1.1336257532647828e-16], [-0.9329707207365302, 1.6147094470696053, 1.1419003937995625e-16], [-0.9397313781331718, 1.6264102401643126, 1.1501750343343419e-16], [-0.9464920355298133, 1.6381110332590199, 1.1584496748691213e-16], [-0.9532526929264549, 1.6498118263537271, 1.1667243154039006e-16], [-0.9600133503230964, 1.6615126194484344, 1.1749989559386803e-16], [-0.9667740077197379, 1.6732134125431417, 1.1832735964734597e-16], [-0.9735346651163794, 1.6849142056378492, 1.191548237008239e-16], [-0.980295322513021, 1.6966149987325565, 1.1998228775430187e-16], [-0.9870559799096625, 1.7083157918272638, 1.208097518077798e-16], [-0.9938166373063041, 1.720016584921971, 1.2163721586125775e-16], [-1.0005772947029457, 1.7317173780166784, 1.224646799147357e-16]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[-0.5002886473514714, -0.8658586890083364, 6.123233995736766e-17], [-0.5070493047481129, -0.8775594821030437, 6.205980401084561e-17], [-0.5138099621447545, -0.8892602751977511, 6.288726806432355e-17], [-0.520570619541396, -0.9009610682924584, 6.37147321178015e-17], [-0.5273312769380376, -0.9126618613871657, 6.454219617127944e-17], [-0.5340919343346792, -0.924362654481873, 6.53696602247574e-17], [-0.5408525917313207, -0.9360634475765803, 6.619712427823533e-17], [-0.5476132491279622, -0.9477642406712876, 6.702458833171329e-17], [-0.5543739065246037, -0.959465033765995, 6.785205238519124e-17], [-0.5611345639212453, -0.9711658268607023, 6.867951643866918e-17], [-0.5678952213178868, -0.9828666199554096, 6.950698049214713e-17], [-0.5746558787145284, -0.994567413050117, 7.033444454562507e-17], [-0.58141653611117, -1.0062682061448243, 7.116190859910302e-17], [-0.5881771935078115, -1.0179689992395315, 7.198937265258096e-17], [-0.5949378509044531, -1.0296697923342388, 7.281683670605891e-17], [-0.6016985083010946, -1.0413705854289461, 7.364430075953685e-17], [-0.6084591656977362, -1.0530713785236536, 7.44717648130148e-17], [-0.6152198230943777, -1.064772171618361, 7.529922886649276e-17], [-0.6219804804910193, -1.0764729647130682, 7.61266929199707e-17], [-0.6287411378876607, -1.0881737578077755, 7.695415697344865e-17], [-0.6355017952843023, -1.0998745509024828, 7.778162102692659e-17], [-0.6422624526809438, -1.11157534399719, 7.860908508040454e-17], [-0.6490231100775854, -1.1232761370918976, 7.943654913388248e-17], [-0.655783767474227, -1.1349769301866048, 8.026401318736043e-17], [-0.6625444248708685, -1.1466777232813121, 8.109147724083838e-17], [-0.6693050822675101, -1.1583785163760194, 8.191894129431632e-17], [-0.6760657396641516, -1.1700793094707267, 8.274640534779427e-17], [-0.6828263970607932, -1.181780102565434, 8.357386940127221e-17], [-0.6895870544574347, -1.1934808956601415, 8.440133345475016e-17], [-0.6963477118540763, -1.2051816887548488, 8.52287975082281e-17], [-0.7031083692507178, -1.216882481849556, 8.605626156170606e-17], [-0.7098690266473593, -1.2285832749442633, 8.688372561518401e-17], [-0.7166296840440008, -1.2402840680389706, 8.771118966866195e-17], [-0.7233903414406424, -1.251984861133678, 8.85386537221399e-17], [-0.730150998837284, -1.2636856542283854, 8.936611777561784e-17], [-0.7369116562339255, -1.2753864473230927, 9.019358182909579e-17], [-0.7436723136305671, -1.2870872404178, 9.102104588257373e-17], [-0.7504329710272086, -1.2987880335125073, 9.184850993605168e-17], [-0.7571936284238502, -1.3104888266072146, 9.267597398952963e-17], [-0.7639542858204917, -1.3221896197019218, 9.350343804300757e-17], [-0.7707149432171333, -1.3338904127966293, 9.433090209648552e-17], [-0.7774756006137749, -1.3455912058913366, 9.515836614996346e-17], [-0.7842362580104164, -1.357291998986044, 9.598583020344142e-17], [-0.790996915407058, -1.3689927920807512, 9.681329425691936e-17], [-0.7977575728036994, -1.3806935851754585, 9.764075831039731e-17], [-0.804518230200341, -1.3923943782701658, 9.846822236387525e-17], [-0.8112788875969825, -1.4040951713648733, 9.92956864173532e-17], [-0.8180395449936241, -1.4157959644595806, 1.0012315047083115e-16], [-0.8248002023902656, -1.4274967575542878, 1.0095061452430909e-16], [-0.8315608597869072, -1.4391975506489951, 1.0177807857778704e-16], [-0.8383215171835487, -1.4508983437437024, 1.0260554263126498e-16], [-0.8450821745801903, -1.4625991368384097, 1.0343300668474293e-16], [-0.8518428319768319, -1.4742999299331172, 1.0426047073822087e-16], [-0.8586034893734734, -1.4860007230278245, 1.0508793479169882e-16], [-0.865364146770115, -1.4977015161225318, 1.0591539884517678e-16], [-0.8721248041667565, -1.509402309217239, 1.0674286289865472e-16], [-0.878885461563398, -1.5211031023119463, 1.0757032695213267e-16], [-0.8856461189600395, -1.5328038954066536, 1.0839779100561061e-16], [-0.8924067763566811, -1.5445046885013611, 1.0922525505908856e-16], [-0.8991674337533226, -1.5562054815960684, 1.100527191125665e-16], [-0.9059280911499642, -1.5679062746907757, 1.1088018316604445e-16], [-0.9126887485466058, -1.579607067785483, 1.117076472195224e-16], [-0.9194494059432473, -1.5913078608801903, 1.1253511127300034e-16], [-0.9262100633398889, -1.6030086539748976, 1.1336257532647828e-16], [-0.9329707207365304, -1.614709447069605, 1.1419003937995625e-16], [-0.939731378133172, -1.6264102401643123, 1.1501750343343419e-16], [-0.9464920355298135, -1.6381110332590196, 1.1584496748691213e-16], [-0.9532526929264551, -1.649811826353727, 1.1667243154039006e-16], [-0.9600133503230966, -1.6615126194484342, 1.1749989559386803e-16], [-0.9667740077197381, -1.6732134125431415, 1.1832735964734597e-16], [-0.9735346651163796, -1.684914205637849, 1.191548237008239e-16], [-0.9802953225130212, -1.6966149987325563, 1.1998228775430187e-16], [-0.9870559799096628, -1.7083157918272636, 1.208097518077798e-16], [-0.9938166373063043, -1.7200165849219708, 1.2163721586125775e-16], [-1.0005772947029459, -1.7317173780166781, 1.224646799147357e-16]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.9999995000000417, -0.0009999998333330325, 6.123233995736766e-17], [1.013513006756799, -0.0010135133445942897, 6.205980401084561e-17], [1.0270265135135566, -0.0010270268558555471, 6.288726806432355e-17], [1.040540020270314, -0.0010405403671168044, 6.37147321178015e-17], [1.0540535270270712, -0.0010540538783780616, 6.454219617127944e-17], [1.0675670337838288, -0.0010675673896393188, 6.53696602247574e-17], [1.081080540540586, -0.0010810809009005762, 6.619712427823533e-17], [1.0945940472973434, -0.0010945944121618335, 6.702458833171329e-17], [1.108107554054101, -0.0011081079234230907, 6.785205238519124e-17], [1.1216210608108583, -0.001121621434684348, 6.867951643866918e-17], [1.1351345675676157, -0.0011351349459456054, 6.950698049214713e-17], [1.1486480743243732, -0.0011486484572068626, 7.033444454562507e-17], [1.1621615810811305, -0.0011621619684681198, 7.116190859910302e-17], [1.1756750878378879, -0.001175675479729377, 7.198937265258096e-17], [1.1891885945946454, -0.0011891889909906345, 7.281683670605891e-17], [1.2027021013514028, -0.0012027025022518917, 7.364430075953685e-17], [1.21621560810816, -0.001216216013513149, 7.44717648130148e-17], [1.2297291148649176, -0.0012297295247744062, 7.529922886649276e-17], [1.243242621621675, -0.0012432430360356636, 7.61266929199707e-17], [1.2567561283784323, -0.0012567565472969208, 7.695415697344865e-17], [1.2702696351351896, -0.001270270058558178, 7.778162102692659e-17], [1.2837831418919472, -0.0012837835698194353, 7.860908508040454e-17], [1.2972966486487045, -0.0012972970810806927, 7.943654913388248e-17], [1.3108101554054619, -0.00131081059234195, 8.026401318736043e-17], [1.3243236621622194, -0.0013243241036032072, 8.109147724083838e-17], [1.3378371689189767, -0.0013378376148644644, 8.191894129431632e-17], [1.351350675675734, -0.0013513511261257218, 8.274640534779427e-17], [1.3648641824324916, -0.001364864637386979, 8.357386940127221e-17], [1.378377689189249, -0.0013783781486482363, 8.440133345475016e-17], [1.3918911959460063, -0.0013918916599094935, 8.52287975082281e-17], [1.4054047027027639, -0.001405405171170751, 8.605626156170606e-17], [1.4189182094595212, -0.0014189186824320082, 8.688372561518401e-17], [1.4324317162162785, -0.0014324321936932654, 8.771118966866195e-17], [1.445945222973036, -0.0014459457049545226, 8.85386537221399e-17], [1.4594587297297934, -0.00145945921621578, 8.936611777561784e-17], [1.4729722364865507, -0.0014729727274770373, 9.019358182909579e-17], [1.4864857432433083, -0.0014864862387382945, 9.102104588257373e-17], [1.4999992500000656, -0.0014999997499995517, 9.184850993605168e-17], [1.513512756756823, -0.0015135132612608092, 9.267597398952963e-17], [1.5270262635135805, -0.0015270267725220664, 9.350343804300757e-17], [1.5405397702703378, -0.0015405402837833236, 9.433090209648552e-17], [1.5540532770270952, -0.0015540537950445809, 9.515836614996346e-17], [1.5675667837838527, -0.0015675673063058383, 9.598583020344142e-17], [1.58108029054061, -0.0015810808175670955, 9.681329425691936e-17], [1.5945937972973674, -0.0015945943288283527, 9.764075831039731e-17], [1.608107304054125, -0.00160810784008961, 9.846822236387525e-17], [1.6216208108108823, -0.0016216213513508674, 9.92956864173532e-17], [1.6351343175676396, -0.0016351348626121246, 1.0012315047083115e-16], [1.6486478243243972, -0.0016486483738733819, 1.0095061452430909e-16], [1.6621613310811545, -0.001662161885134639, 1.0177807857778704e-16], [1.6756748378379118, -0.0016756753963958965, 1.0260554263126498e-16], [1.6891883445946694, -0.0016891889076571538, 1.0343300668474293e-16], [1.7027018513514267, -0.001702702418918411, 1.0426047073822087e-16], [1.716215358108184, -0.0017162159301796682, 1.0508793479169882e-16], [1.7297288648649416, -0.0017297294414409256, 1.0591539884517678e-16], [1.743242371621699, -0.0017432429527021829, 1.0674286289865472e-16], [1.7567558783784563, -0.00175675646396344, 1.0757032695213267e-16], [1.7702693851352136, -0.0017702699752246973, 1.0839779100561061e-16], [1.7837828918919711, -0.0017837834864859548, 1.0922525505908856e-16], [1.7972963986487285, -0.001797296997747212, 1.100527191125665e-16], [1.8108099054054858, -0.0018108105090084692, 1.1088018316604445e-16], [1.8243234121622434, -0.0018243240202697264, 1.117076472195224e-16], [1.8378369189190007, -0.0018378375315309839, 1.1253511127300034e-16], [1.851350425675758, -0.001851351042792241, 1.1336257532647828e-16], [1.8648639324325156, -0.0018648645540534983, 1.1419003937995625e-16], [1.878377439189273, -0.0018783780653147555, 1.1501750343343419e-16], [1.8918909459460302, -0.001891891576576013, 1.1584496748691213e-16], [1.9054044527027878, -0.0019054050878372702, 1.1667243154039006e-16], [1.9189179594595451, -0.0019189185990985274, 1.1749989559386803e-16], [1.9324314662163025, -0.0019324321103597847, 1.1832735964734597e-16], [1.94594497297306, -0.001945945621621042, 1.191548237008239e-16], [1.9594584797298173, -0.001959459132882299, 1.1998228775430187e-16], [1.9729719864865747, -0.0019729726441435566, 1.208097518077798e-16], [1.9864854932433322, -0.001986486155404814, 1.2163721586125775e-16], [1.9999990000000896, -0.001999999666666071, 1.224646799147357e-16]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.0], [0.021225372720932754, 2.1225379796059823e-05, 0.9997747161747694], [0.04244118197554848, 4.2441196122614794e-05, 0.9990989662046815], [0.06363786860651868, 6.363788981915003e-05, 0.9979730545608125], [0.08480588207255049, 8.480591034118915e-05, 0.9963974885425265], [0.10593568475155157, 0.00010593572006346061, 0.9943729780489025], [0.12701775623797415, 0.00012701779857724317, 0.991900435258877], [0.14804259763240174, 0.00014804264697995402, 0.9889809742202453], [0.16900073582144592, 0.00016900079215504706, 0.9856159103477085], [0.18988272774602483, 0.00018988279104029273, 0.9818067598301892], [0.21067916465610004, 0.00021067923488251634, 0.9775552389476863], [0.23138067634995504, 0.00023138075347687803, 0.9728632632979746], [0.2519779353961049, 0.0002519780193887837, 0.9677329469334989], [0.2724616613359354, 0.0002724617521565255, 0.9621666014088494], [0.2928226248651769, 0.00029282272247275755, 0.956166734739251], [0.31305165199233104, 0.0003130517563429234, 0.9497360502705319], [0.333139628172174, 0.00033313973921876116, 0.9428774454610842], [0.35307750241247593, 0.00035307762010502384, 0.9355940105763623], [0.37285629135208515, 0.0003728564156375653, 0.9278890272965093], [0.39246708330854024, 0.00039246721413095366, 0.9197659672377387], [0.41190104229338564, 0.000411901179593788, 0.9112284903881358], [0.43114941199338236, 0.00043114955570991046, 0.9022804434585853], [0.4502035197158195, 0.00045020366978371947, 0.8929258581495686], [0.469054780296149, 0.000469054936647805, 0.8831689493346093], [0.4876946999661829, 0.0004876948625311479, 0.8730141131611882], [0.5061148801811107, 0.0005061150488861382, 0.8624659250699805], [0.5243070214036117, 0.0005243071961726888, 0.8515291377333113], [0.5422629268433588, 0.00054226310759774, 0.8402086789137543], [0.5599745061502257, 0.0005599746928084691, 0.8285096492438421], [0.5774337790595384, 0.0005774339715375417, 0.8164373199278856], [0.5946328789877234, 0.0005946330771987624, 0.8039971303669404], [0.6115640565767358, 0.000611564260431503, 0.7911946857079882], [0.6282196831856701, 0.0006282198925923149, 0.7780357543184393], [0.6445922543279778, 0.0006445924691921486, 0.7645262651870923], [0.6606743930527476, 0.0006606746132776333, 0.7506723052527241], [0.6764588532685196, 0.0006764590787548942, 0.7364801166615119], [0.6919385230081408, 0.0006919387536544075, 0.7219560939545241], [0.7071064276331868, 0.0007071066633354236, 0.7071067811865471], [0.721955732976508, 0.0007219559736285152, 0.6919388689775458], [0.7364797484214849, 0.0007364799939148327, 0.6764591914980864], [0.7506719299166035, 0.0007506721801406801, 0.6606747233900809], [0.7645258829239923, 0.0007645261377660551, 0.6445925766242385], [0.7780353653005952, 0.0007780356246458207, 0.6282199972956417], [0.791194290110679, 0.0007911945538422145, 0.6115643623588908], [0.8039967283684094, 0.000803996996367426, 0.5946331763042859], [0.8164369117092604, 0.0008164371838550065, 0.5774340677765474], [0.8285092349890525, 0.000828509511158908, 0.5599747861375945], [0.8402082588094504, 0.0008402085388789821, 0.5422631979749343], [0.8515287119687783, 0.0008515289958117959, 0.5243072835572309], [0.8624654938370544, 0.0008624657813256673, 0.5061151332386553], [0.8730136766541685, 0.0008730139676588439, 0.48769494381363365], [0.8831685077501719, 0.0008831688021397922, 0.46905501482363604], [0.8929254116866772, 0.0008929257093286001, 0.4502037448176723], [0.9022799923184016, 0.0009022802930785193, 0.4311496275681772], [0.911228034773929, 0.0009112283385167288, 0.41190124824399155], [0.919765507354794, 0.0009197658139434191, 0.3924672795421626], [0.9278885633520348, 0.0009278888726483464, 0.3728564777803074], [0.9355935427793964, 0.0009355938546440354, 0.3530776789512995], [0.9428769740224012, 0.0009428772883148517, 0.33313979474205624], [0.9497355754025467, 0.0009497358919811985, 0.31305180851822095], [0.9561662566559239, 0.0009561665753781369, 0.29282277127654893], [0.9621661203255892, 0.0009621664410477576, 0.2724617975668214], [0.9677324630670661, 0.0009677327856446828, 0.25197806138512363], [0.9728627768663839, 0.000972863101154106, 0.2313807920403399], [0.9775547501701078, 0.0009775550760218216, 0.21067926999572467], [0.9818062689268505, 0.0009818065961957377, 0.1898828226874266], [0.9856154175397946, 0.0009856157460783987, 0.16900082032184732], [0.9889804797297996, 0.0009889808093900914, 0.1480426716537296], [0.9918999393087009, 0.0009919002699421463, 0.1270178197468769], [0.9943724808624551, 0.0009943728123200813, 0.10593573771941411], [0.9963969903438239, 0.0009963973224762868, 0.08480592447550722], [0.997972555574327, 0.0009979728882319786, 0.06363790042546423], [0.99909846665524, 0.0009990987996881956, 0.04244120319614624], [0.999774216287453, 0.0009997745495456585, 0.021225383333621426], [0.9999995000000417, 0.0009999998333333417, -2.1592137092929455e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.0], [-0.01061881831749498, 0.01837818258695067, 0.9997747161747694], [-0.021232852138969974, 0.03674808455935339, 0.9990989662046815], [-0.03183731912414412, 0.05510142903363726, 0.9979730545608125], [-0.042427441243243526, 0.07342994658650438, 0.9963974885425265], [-0.05299844692982687, 0.09172537898086454, 0.9943729780489025], [-0.06354557323069895, 0.10997948288672961, 0.991900435258877], [-0.07406406795194327, 0.1281840335953915, 0.9889809742202453], [-0.0845491918001069, 0.14633082872520964, 0.9856159103477085], [-0.09499622051757274, 0.16441169191733904, 0.9818067598301892], [-0.10540044701115729, 0.1824184765197329, 0.9775552389476863], [-0.11575718347297448, 0.20034306925776058, 0.9728632632979746], [-0.12606176349261025, 0.21817739388978657, 0.9677329469334989], [-0.13630954415965618, 0.23591341484606398, 0.9621666014088494], [-0.1464959081556546, 0.25354314084930185, 0.956166734739251], [-0.15661626583451319, 0.2710586285152767, 0.9497360502705319], [-0.16666605729045073, 0.2884519859318642, 0.9428774454610842], [-0.17664075441254326, 0.30571537621487954, 0.9355940105763623], [-0.18653586292494445, 0.3228410210391239, 0.9278890272965093], [-0.1963469244118608, 0.3398212041430462, 0.9197659672377387], [-0.20606951832636963, 0.3566482748054408, 0.9112284903881358], [-0.21569926398217446, 0.37331465129261526, 0.9022804434585853], [-0.22523182252740065, 0.38981282427447417, 0.8929258581495686], [-0.2346628988995416, 0.4061353602079801, 0.8831689493346093], [-0.243988243760675, 0.4222749046864679, 0.8730141131611882], [-0.25320365541207696, 0.4382241857533024, 0.8624659250699805], [-0.2623049816873717, 0.45397601717838676, 0.8515291377333113], [-0.27128812182336337, 0.4695233016960454, 0.8402086789137543], [-0.28014902830770705, 0.484859034202822, 0.8285096492438421], [-0.2888837087025871, 0.499976304913753, 0.8164373199278856], [-0.2974882274435806, 0.5148683024756928, 0.8039971303669404], [-0.3059587076128949, 0.5295283170362891, 0.7911946857079882], [-0.314291332686182, 0.5439497432672258, 0.7780357543184393], [-0.3224823482521403, 0.5581260833403695, 0.7645262651870923], [-0.3305280637041314, 0.5720509498554815, 0.7506723052527241], [-0.33842485390304794, 0.585718068718173, 0.7364801166615119], [-0.34616916081068366, 0.5991212819668096, 0.7219560939545241], [-0.3537574950928708, 0.612254550547089, 0.7071067811865471], [-0.361186437691661, 0.6251119570330443, 0.6919388689775458], [-0.3684526413658419, 0.6376877082932441, 0.6764591914980864], [-0.3755528321990964, 0.6499761381009901, 0.6606747233900809], [-0.38248381107512297, 0.6619717096873362, 0.6445925766242385], [-0.389242455119054, 0.6736690182357766, 0.6282199972956417], [-0.3958257191045222, 0.6850627933174821, 0.6115643623588908], [-0.40223063682574145, 0.6961479012659842, 0.5946331763042859], [-0.4084543224339826, 0.7069193474902394, 0.5774340677765474], [-0.4144939717378439, 0.7173722787250303, 0.5599747861375945], [-0.42034686346672906, 0.7275019852176902, 0.5422631979749343], [-0.4260103604969632, 0.7373039028501646, 0.5243072835572309], [-0.43148191103999617, 0.7467736151954559, 0.5061151332386553], [-0.43675904979215535, 0.7559068555075223, 0.48769494381363365], [-0.44183939904543196, 0.7646995086437351, 0.46905501482363604], [-0.4467206697587996, 0.7731476129190297, 0.4502037448176723], [-0.4514006625895815, 0.7812473618909115, 0.4311496275681772], [-0.45587726888440383, 0.7889951060745172, 0.41190124824399155], [-0.46014847162928624, 0.7963873545869535, 0.3924672795421626], [-0.4642123463584433, 0.8034207767201765, 0.3728564777803074], [-0.4680670620213866, 0.8100922034417012, 0.3530776789512995], [-0.4717108818079367, 0.8163986288224641, 0.33313979474205624], [-0.4751421639307735, 0.8223372113911986, 0.31305180851822095], [-0.4783593623651731, 0.82790527541471, 0.29282277127654893], [-0.4813610275455957, 0.8331003121034734, 0.2724617975668214], [-0.48414580701881343, 0.8379199807420137, 0.25197806138512363], [-0.4867124460532822, 0.8423621097435567, 0.2313807920403399], [-0.4890597882044824, 0.846424697628475, 0.21067926999572467], [-0.4911867758359763, 0.8501059139260906, 0.1898828226874266], [-0.4930924505959442, 0.8534040999994252, 0.16900082032184732], [-0.4947759538489869, 0.8563177697925293, 0.1480426716537296], [-0.49623652706299926, 0.8588456105000497, 0.1270178197468769], [-0.49747351215093977, 0.8609864831587383, 0.10593573771941411], [-0.49848635176734374, 0.8627394231606311, 0.08480592447550722], [-0.499274589559445, 0.8641036406876703, 0.06363790042546423], [-0.4998378703727934, 0.8650785210675699, 0.04244120319614624], [-0.5001759404112766, 0.8656636250507675, 0.021225383333621426], [-0.5002886473514713, 0.8658586890083365, -2.1592137092929455e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.0], [-0.010618818317494984, -0.01837818258695067, 0.9997747161747694], [-0.021232852138969978, -0.03674808455935338, 0.9990989662046815], [-0.031837319124144135, -0.05510142903363725, 0.9979730545608125], [-0.04242744124324353, -0.07342994658650438, 0.9963974885425265], [-0.05299844692982689, -0.09172537898086452, 0.9943729780489025], [-0.06354557323069897, -0.1099794828867296, 0.991900435258877], [-0.07406406795194329, -0.12818403359539146, 0.9889809742202453], [-0.08454919180010692, -0.14633082872520964, 0.9856159103477085], [-0.09499622051757277, -0.16441169191733904, 0.9818067598301892], [-0.10540044701115732, -0.18241847651973286, 0.9775552389476863], [-0.1157571834729745, -0.20034306925776055, 0.9728632632979746], [-0.12606176349261028, -0.21817739388978655, 0.9677329469334989], [-0.1363095441596562, -0.23591341484606396, 0.9621666014088494], [-0.14649590815565464, -0.2535431408493018, 0.956166734739251], [-0.1566162658345132, -0.2710586285152767, 0.9497360502705319], [-0.16666605729045078, -0.2884519859318642, 0.9428774454610842], [-0.17664075441254332, -0.30571537621487954, 0.9355940105763623], [-0.18653586292494448, -0.3228410210391238, 0.9278890272965093], [-0.19634692441186086, -0.3398212041430461, 0.9197659672377387], [-0.2060695183263697, -0.35664827480544076, 0.9112284903881358], [-0.2156992639821745, -0.3733146512926152, 0.9022804434585853], [-0.2252318225274007, -0.3898128242744741, 0.8929258581495686], [-0.23466289889954164, -0.40613536020798, 0.8831689493346093], [-0.24398824376067504, -0.42227490468646783, 0.8730141131611882], [-0.253203655412077, -0.43822418575330235, 0.8624659250699805], [-0.26230498168737176, -0.4539760171783867, 0.8515291377333113], [-0.2712881218233634, -0.46952330169604534, 0.8402086789137543], [-0.2801490283077071, -0.48485903420282195, 0.8285096492438421], [-0.28888370870258717, -0.49997630491375294, 0.8164373199278856], [-0.29748822744358067, -0.5148683024756927, 0.8039971303669404], [-0.30595870761289495, -0.529528317036289, 0.7911946857079882], [-0.31429133268618203, -0.5439497432672258, 0.7780357543184393], [-0.32248234825214034, -0.5581260833403695, 0.7645262651870923], [-0.3305280637041315, -0.5720509498554814, 0.7506723052527241], [-0.338424853903048, -0.585718068718173, 0.7364801166615119], [-0.3461691608106837, -0.5991212819668095, 0.7219560939545241], [-0.3537574950928709, -0.612254550547089, 0.7071067811865471], [-0.36118643769166103, -0.6251119570330442, 0.6919388689775458], [-0.368452641365842, -0.637687708293244, 0.6764591914980864], [-0.3755528321990965, -0.64997613810099, 0.6606747233900809], [-0.3824838110751231, -0.6619717096873361, 0.6445925766242385], [-0.38924245511905403, -0.6736690182357765, 0.6282199972956417], [-0.3958257191045223, -0.685062793317482, 0.6115643623588908], [-0.40223063682574156, -0.6961479012659841, 0.5946331763042859], [-0.4084543224339827, -0.7069193474902393, 0.5774340677765474], [-0.414493971737844, -0.7173722787250302, 0.5599747861375945], [-0.42034686346672917, -0.72750198521769, 0.5422631979749343], [-0.4260103604969633, -0.7373039028501644, 0.5243072835572309], [-0.4314819110399963, -0.7467736151954558, 0.5061151332386553], [-0.43675904979215546, -0.7559068555075223, 0.48769494381363365], [-0.44183939904543207, -0.764699508643735, 0.46905501482363604], [-0.4467206697587997, -0.7731476129190296, 0.4502037448176723], [-0.4514006625895816, -0.7812473618909114, 0.4311496275681772], [-0.45587726888440394, -0.7889951060745172, 0.41190124824399155], [-0.46014847162928635, -0.7963873545869534, 0.3924672795421626], [-0.4642123463584434, -0.8034207767201764, 0.3728564777803074], [-0.4680670620213867, -0.8100922034417011, 0.3530776789512995], [-0.47171088180793674, -0.816398628822464, 0.33313979474205624], [-0.47514216393077363, -0.8223372113911986, 0.31305180851822095], [-0.47835936236517324, -0.8279052754147099, 0.29282277127654893], [-0.4813610275455958, -0.8331003121034732, 0.2724617975668214], [-0.48414580701881355, -0.8379199807420136, 0.25197806138512363], [-0.4867124460532823, -0.8423621097435566, 0.2313807920403399], [-0.48905978820448254, -0.8464246976284749, 0.21067926999572467], [-0.4911867758359764, -0.8501059139260905, 0.1898828226874266], [-0.4930924505959443, -0.8534040999994251, 0.16900082032184732], [-0.49477595384898704, -0.8563177697925292, 0.1480426716537296], [-0.49623652706299937, -0.8588456105000496, 0.1270178197468769], [-0.4974735121509399, -0.8609864831587382, 0.10593573771941411], [-0.49848635176734385, -0.862739423160631, 0.08480592447550722], [-0.4992745895594451, -0.8641036406876702, 0.06363790042546423], [-0.49983787037279354, -0.8650785210675698, 0.04244120319614624], [-0.5001759404112767, -0.8656636250507674, 0.021225383333621426], [-0.5002886473514714, -0.8658586890083364, -2.1592137092929455e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.0], [0.021225372720932754, -2.122537979605326e-05, 0.9997747161747694], [0.04244118197554848, -4.244119612260167e-05, 0.9990989662046815], [0.06363786860651868, -6.363788981913035e-05, 0.9979730545608125], [0.08480588207255049, -8.480591034116294e-05, 0.9963974885425265], [0.10593568475155157, -0.00010593572006342785, 0.9943729780489025], [0.12701775623797415, -0.0001270177985772039, 0.991900435258877], [0.14804259763240174, -0.00014804264697990824, 0.9889809742202453], [0.16900073582144592, -0.0001690007921549948, 0.9856159103477085], [0.18988272774602483, -0.00018988279104023402, 0.9818067598301892], [0.21067916465610004, -0.0002106792348824512, 0.9775552389476863], [0.23138067634995504, -0.00023138075347680647, 0.9728632632979746], [0.2519779353961049, -0.00025197801938870573, 0.9677329469334989], [0.2724616613359354, -0.00027246175215644124, 0.9621666014088494], [0.2928226248651769, -0.000292822722472667, 0.956166734739251], [0.31305165199233104, -0.00031305175634282665, 0.9497360502705319], [0.333139628172174, -0.00033313973921865817, 0.9428774454610842], [0.35307750241247593, -0.00035307762010491466, 0.9355940105763623], [0.37285629135208515, -0.00037285641563745004, 0.9278890272965093], [0.39246708330854024, -0.00039246721413083234, 0.9197659672377387], [0.41190104229338564, -0.00041190117959366063, 0.9112284903881358], [0.43114941199338236, -0.00043114955570977716, 0.9022804434585853], [0.4502035197158195, -0.00045020366978358025, 0.8929258581495686], [0.469054780296149, -0.00046905493664765993, 0.8831689493346093], [0.4876946999661829, -0.00048769486253099714, 0.8730141131611882], [0.5061148801811107, -0.0005061150488859818, 0.8624659250699805], [0.5243070214036117, -0.0005243071961725267, 0.8515291377333113], [0.5422629268433588, -0.0005422631075975723, 0.8402086789137543], [0.5599745061502257, -0.000559974692808296, 0.8285096492438421], [0.5774337790595384, -0.0005774339715373633, 0.8164373199278856], [0.5946328789877234, -0.0005946330771985785, 0.8039971303669404], [0.6115640565767358, -0.0006115642604313139, 0.7911946857079882], [0.6282196831856701, -0.0006282198925921207, 0.7780357543184393], [0.6445922543279778, -0.0006445924691919492, 0.7645262651870923], [0.6606743930527476, -0.000660674613277429, 0.7506723052527241], [0.6764588532685196, -0.0006764590787546851, 0.7364801166615119], [0.6919385230081408, -0.0006919387536541935, 0.7219560939545241], [0.7071064276331868, -0.000707106663335205, 0.7071067811865471], [0.721955732976508, -0.000721955973628292, 0.6919388689775458], [0.7364797484214849, -0.0007364799939146049, 0.6764591914980864], [0.7506719299166035, -0.000750672180140448, 0.6606747233900809], [0.7645258829239923, -0.0007645261377658188, 0.6445925766242385], [0.7780353653005952, -0.0007780356246455801, 0.6282199972956417], [0.791194290110679, -0.00079119455384197, 0.6115643623588908], [0.8039967283684094, -0.0008039969963671774, 0.5946331763042859], [0.8164369117092604, -0.000816437183854754, 0.5774340677765474], [0.8285092349890525, -0.0008285095111586518, 0.5599747861375945], [0.8402082588094504, -0.0008402085388787222, 0.5422631979749343], [0.8515287119687783, -0.0008515289958115326, 0.5243072835572309], [0.8624654938370544, -0.0008624657813254006, 0.5061151332386553], [0.8730136766541685, -0.0008730139676585739, 0.48769494381363365], [0.8831685077501719, -0.0008831688021395191, 0.46905501482363604], [0.8929254116866772, -0.0008929257093283241, 0.4502037448176723], [0.9022799923184016, -0.0009022802930782404, 0.4311496275681772], [0.911228034773929, -0.000911228338516447, 0.41190124824399155], [0.919765507354794, -0.0009197658139431347, 0.3924672795421626], [0.9278885633520348, -0.0009278888726480594, 0.3728564777803074], [0.9355935427793964, -0.0009355938546437462, 0.3530776789512995], [0.9428769740224012, -0.0009428772883145601, 0.33313979474205624], [0.9497355754025467, -0.0009497358919809049, 0.31305180851822095], [0.9561662566559239, -0.0009561665753778412, 0.29282277127654893], [0.9621661203255892, -0.00096216644104746, 0.2724617975668214], [0.9677324630670661, -0.0009677327856443835, 0.25197806138512363], [0.9728627768663839, -0.0009728631011538051, 0.2313807920403399], [0.9775547501701078, -0.0009775550760215193, 0.21067926999572467], [0.9818062689268505, -0.0009818065961954342, 0.1898828226874266], [0.9856154175397946, -0.0009856157460780939, 0.16900082032184732], [0.9889804797297996, -0.0009889808093897856, 0.1480426716537296], [0.9918999393087009, -0.0009919002699418395, 0.1270178197468769], [0.9943724808624551, -0.0009943728123197738, 0.10593573771941411], [0.9963969903438239, -0.0009963973224759789, 0.08480592447550722], [0.997972555574327, -0.00099797288823167, 0.06363790042546423], [0.99909846665524, -0.0009990987996878866, 0.04244120319614624], [0.999774216287453, -0.0009997745495453493, 0.021225383333621426], [0.9999995000000417, -0.0009999998333330325, -2.1592137092929455e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.3333333333333333], [0.02830049696124367, 2.830050639474643e-05, 1.3330329548996924], [0.05658824263406463, 5.6588261496819716e-05, 1.3321319549395754], [0.08485049147535824, 8.485051975886671e-05, 1.3306307394144166], [0.11307450943006732, 0.00011307454712158553, 1.3285299847233687], [0.14124757966873544, 0.0001412476267512808, 1.3258306373985365], [0.16935700831729886, 0.00016935706476965754, 1.3225339136785026], [0.19739013017653564, 0.000197390195973272, 1.3186412989603271], [0.22533431442859456, 0.00022533438954006274, 1.3141545471302778], [0.2531769703280331, 0.0002531770547203903, 1.3090756797735854], [0.28090555287480007, 0.00028090564651002176, 1.3034069852635817], [0.3085075684666067, 0.000308507671302504, 1.2971510177306327], [0.33597058052813994, 0.0003359706925183782, 1.2903105959113317], [0.36328221511458053, 0.0003632823362087006, 1.2828888018784657], [0.3904301664869025, 0.0003904302966303434, 1.2748889796523346], [0.41740220265644135, 0.00041740234179056453, 1.2663147336940423], [0.444186170896232, 0.0004441863189583482, 1.2571699272814456], [0.4707700032166346, 0.00047077016014003174, 1.2474586807684829], [0.4971417218027802, 0.0004971418875167538, 1.237185369728679], [0.523289444411387, 0.0005232896188412715, 1.2263546229836515], [0.5492013897245142, 0.0005492015727917173, 1.2149713205175143], [0.5748658826578431, 0.0005748660742798806, 1.2030405912781137], [0.6002713596210927, 0.0006002715597116259, 1.1905678108660913], [0.6254063737281986, 0.0006254065821970733, 1.1775585991128124], [0.6502595999549106, 0.0006502598167081972, 1.1640188175482509], [0.6748198402414809, 0.0006748200651815175, 1.149954566759974], [0.699076028538149, 0.000699076261563585, 1.135372183644415], [0.7230172357911451, 0.0007230174767969866, 1.1202782385516723], [0.7466326748669676, 0.0007466329237446254, 1.1046795323251226], [0.7699117054127179, 0.0007699119620500557, 1.0885830932371807], [0.792843838650298, 0.0007928441029316832, 1.0719961738225872], [0.8154187421023145, 0.0008154190139086705, 1.054926247610651], [0.8376262442475602, 0.0008376265234564199, 1.037381005757919], [0.8594563391039705, 0.0008594566255895314, 1.0193683535827898], [0.8808991907369967, 0.0008808994843701777, 1.0008964070036321], [0.9019451376913595, 0.000901945438339859, 0.9819734888820159], [0.9225846973441878, 0.0009225850048725433, 0.9626081252726988], [0.9428085701775824, 0.0009428088844472314, 0.9428090415820628], [0.9626076439686773, 0.0009626079648380202, 0.9225851586367276], [0.9819729978953132, 0.0009819733252197768, 0.9019455886641152], [1.0008959065554712, 0.0010008962401875734, 0.8808996311867745], [1.0193678438986564, 0.0010193681836880735, 0.859456768832318], [1.0373804870674603, 0.0010373808328610942, 0.8376266630608555], [1.0549257201475721, 0.0010549260717896193, 0.8154191498118544], [1.0719956378245459, 0.0010719959951565681, 0.7928442350723812], [1.0885825489456804, 0.0010885829118066751, 0.7699120903687298], [1.1046789799854033, 0.0011046793482118772, 0.7466330481834593], [1.1202776784126005, 0.0011202780518386427, 0.7230175972999123], [1.135371615958371, 0.0011353719944157277, 0.6990763780763078], [1.1499539917827393, 0.0011499543751008897, 0.6748201776515403], [1.1640182355388913, 0.001164018623545125, 0.6502599250848449], [1.1775580103335626, 0.0011775584028530562, 0.6254066864315146], [1.1905672155822362, 0.0011905676124381334, 0.6002716597568963], [1.2030399897578687, 0.0012030403907713591, 0.5748661700909029], [1.2149707130319054, 0.001214971118022305, 0.549201664325322], [1.226354009806392, 0.0012263544185912253, 0.5232897060562167], [1.2371847511360463, 0.0012371851635311283, 0.4971419703737432], [1.2474580570391953, 0.0012474584728587139, 0.4707702386017326], [1.257169298696535, 0.0012571697177531354, 0.4441863929894083], [1.266314100536729, 0.001266314522641598, 0.4174024113576279], [1.2748883422078985, 0.0012748887671708493, 0.39043036170206524], [1.282888160434119, 0.0012828885880636768, 0.3632823967557618], [1.290309950756088, 0.001290310380859577, 0.3359707485134982], [1.2971503691551785, 0.0012971508015388077, 0.3085077227204532], [1.3034063335601438, 0.0013034067680290954, 0.2809056933276329], [1.3090750252358008, 0.0013090754615943168, 0.25317709691656876], [1.3141538900530596, 0.0013141543281045315, 0.22533442709579643], [1.318640639639733, 0.0013186410791867886, 0.19739022887163948], [1.3225332524116011, 0.001322533693256195, 0.16935709299583585], [1.3258299744832736, 0.001325830416426775, 0.14124765029255215], [1.3285293204584319, 0.0013285297633017158, 0.11307456596734296], [1.3306300740991026, 0.001330630517642638, 0.08485053390061897], [1.3321312888736534, 0.0013321317329175939, 0.05658827092819499], [1.3330322883832706, 0.0013330327327275445, 0.028300511111495234], [1.3333326666667222, 0.0013333331111111222, -2.8789516123905937e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.3333333333333333], [-0.01415842442332664, 0.024504243449267556, 1.3330329548996924], [-0.028310469518626633, 0.04899744607913785, 1.3321319549395754], [-0.042449758832192167, 0.07346857204484968, 1.3306307394144166], [-0.056569921657658034, 0.0979065954486725, 1.3285299847233687], [-0.07066459590643583, 0.12230050530781937, 1.3258306373985365], [-0.08472743097426527, 0.14663931051563947, 1.3225339136785026], [-0.09875209060259103, 0.1709120447938553, 1.3186412989603271], [-0.11273225573347587, 0.19510777163361284, 1.3141545471302778], [-0.12666162735676367, 0.2192155892231187, 1.3090756797735854], [-0.1405339293482097, 0.24322463535964384, 1.3034069852635817], [-0.15434291129729932, 0.26712409234368073, 1.2971510177306327], [-0.16808235132348032, 0.29090319185304875, 1.2903105959113317], [-0.18174605887954157, 0.3145512197947519, 1.2828888018784657], [-0.19532787754087283, 0.3380575211324024, 1.2748889796523346], [-0.20882168777935092, 0.36141150468703553, 1.2663147336940423], [-0.22222140972060098, 0.3846026479091523, 1.2571699272814456], [-0.23552100588339103, 0.40762050161983937, 1.2474586807684829], [-0.24871448389992593, 0.4304546947188318, 1.237185369728679], [-0.2617958992158144, 0.4530949388573948, 1.2263546229836515], [-0.27475935776849286, 0.47553103307392103, 1.2149713205175143], [-0.2875990186428993, 0.49775286839015365, 1.2030405912781137], [-0.3003090967032009, 0.5197504323659655, 1.1905678108660913], [-0.3128838651993888, 0.54151381361064, 1.1775585991128124], [-0.32531765834756665, 0.5630332062486237, 1.1640188175482509], [-0.3376048738827693, 0.5842989143377365, 1.149954566759974], [-0.3497399755831623, 0.605301356237849, 1.135372183644415], [-0.36171749576448453, 0.6260310689280605, 1.1202782385516723], [-0.3735320377436094, 0.6464787122704292, 1.1046795323251226], [-0.38517827827011614, 0.6666350732183373, 1.0885830932371807], [-0.3966509699247741, 0.6864910699675904, 1.0719961738225872], [-0.40794494348385985, 0.7060377560483854, 1.054926247610651], [-0.41905511024824266, 0.725266324356301, 1.037381005757919], [-0.429976464336187, 0.7441681111204926, 1.0193683535827898], [-0.4407040849388419, 0.7627345998073086, 1.0008964070036321], [-0.4512331385373972, 0.7809574249575639, 0.9819734888820159], [-0.46155888108091153, 0.798828375955746, 0.9626081252726988], [-0.47167666012382775, 0.816339400729452, 0.9428090415820628], [-0.4815819169222146, 0.8334826093773924, 0.9225851586367276], [-0.4912701884877892, 0.8502502777243253, 0.9019455886641152], [-0.5007371095987952, 0.86663485080132, 0.8808996311867745], [-0.5099784147668306, 0.8826289462497814, 0.859456768832318], [-0.5189899401587386, 0.8982253576477021, 0.8376266630608555], [-0.5277676254726963, 0.9134170577566427, 0.8154191498118544], [-0.5363075157676553, 0.9281972016879788, 0.7928442350723812], [-0.5446057632453102, 0.9425591299869858, 0.7699120903687298], [-0.5526586289837919, 0.9564963716333736, 0.7466330481834593], [-0.5604624846223054, 0.9700026469569201, 0.7230175972999123], [-0.568013813995951, 0.9830718704668859, 0.6990763780763078], [-0.5753092147199949, 0.9956981535939411, 0.6748201776515403], [-0.5823453997228738, 1.0078758073433631, 0.6502599250848449], [-0.5891191987272426, 1.0195993448583134, 0.6254066864315146], [-0.5956275596783994, 1.0308634838920394, 0.6002716597568963], [-0.601867550119442, 1.0416631491878818, 0.5748661700909029], [-0.6078363585125385, 1.051993474766023, 0.549201664325322], [-0.613531295505715, 1.0618498061159378, 0.5232897060562167], [-0.618949795144591, 1.0712277022935686, 0.4971419703737432], [-0.6240894160285155, 1.080122937922268, 0.4707702386017326], [-0.6289478424105822, 1.0885315050966187, 0.4441863929894083], [-0.6335228852410314, 1.0964496151882648, 0.4174024113576279], [-0.6378124831535642, 1.1038737005529466, 0.39043036170206524], [-0.6418147033941276, 1.1108004161379643, 0.3632823967557618], [-0.6455277426917513, 1.1172266409893514, 0.3359707485134982], [-0.6489499280710429, 1.1231494796580754, 0.3085077227204532], [-0.6520797176059765, 1.1285662635046332, 0.2809056933276329], [-0.6549157011146352, 1.133474551901454, 0.25317709691656876], [-0.6574566007945922, 1.137872133332567, 0.22533442709579643], [-0.6597012717986492, 1.141757026390039, 0.19739022887163948], [-0.6616487027506657, 1.1451274806667329, 0.16935709299583585], [-0.6632980162012531, 1.1479819775449842, 0.14124765029255215], [-0.664648469023125, 1.1503192308808414, 0.11307456596734296], [-0.6656994527459267, 1.1521381875835603, 0.08485053390061897], [-0.6664504938303912, 1.1534380280900929, 0.05658827092819499], [-0.666901253881702, 1.1542181667343567, 0.028300511111495234], [-0.6670515298019617, 1.1544782520111152, -2.8789516123905937e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.3333333333333333], [-0.014158424423326644, -0.024504243449267556, 1.3330329548996924], [-0.028310469518626636, -0.04899744607913785, 1.3321319549395754], [-0.04244975883219217, -0.07346857204484968, 1.3306307394144166], [-0.05656992165765804, -0.0979065954486725, 1.3285299847233687], [-0.07066459590643584, -0.12230050530781937, 1.3258306373985365], [-0.08472743097426529, -0.14663931051563947, 1.3225339136785026], [-0.09875209060259105, -0.1709120447938553, 1.3186412989603271], [-0.11273225573347588, -0.19510777163361284, 1.3141545471302778], [-0.12666162735676367, -0.2192155892231187, 1.3090756797735854], [-0.14053392934820974, -0.24322463535964384, 1.3034069852635817], [-0.15434291129729932, -0.26712409234368073, 1.2971510177306327], [-0.16808235132348034, -0.29090319185304875, 1.2903105959113317], [-0.1817460588795416, -0.3145512197947519, 1.2828888018784657], [-0.19532787754087286, -0.3380575211324024, 1.2748889796523346], [-0.20882168777935095, -0.36141150468703553, 1.2663147336940423], [-0.22222140972060103, -0.3846026479091523, 1.2571699272814456], [-0.23552100588339106, -0.40762050161983937, 1.2474586807684829], [-0.24871448389992598, -0.4304546947188318, 1.237185369728679], [-0.2617958992158145, -0.4530949388573948, 1.2263546229836515], [-0.2747593577684929, -0.47553103307392103, 1.2149713205175143], [-0.28759901864289933, -0.49775286839015365, 1.2030405912781137], [-0.30030909670320094, -0.5197504323659655, 1.1905678108660913], [-0.3128838651993888, -0.54151381361064, 1.1775585991128124], [-0.3253176583475667, -0.5630332062486237, 1.1640188175482509], [-0.33760487388276933, -0.5842989143377365, 1.149954566759974], [-0.34973997558316233, -0.605301356237849, 1.135372183644415], [-0.3617174957644846, -0.6260310689280605, 1.1202782385516723], [-0.37353203774360944, -0.6464787122704292, 1.1046795323251226], [-0.3851782782701162, -0.6666350732183373, 1.0885830932371807], [-0.39665096992477417, -0.6864910699675904, 1.0719961738225872], [-0.4079449434838599, -0.7060377560483854, 1.054926247610651], [-0.4190551102482427, -0.725266324356301, 1.037381005757919], [-0.42997646433618714, -0.7441681111204926, 1.0193683535827898], [-0.44070408493884194, -0.7627345998073086, 1.0008964070036321], [-0.4512331385373973, -0.7809574249575639, 0.9819734888820159], [-0.46155888108091164, -0.798828375955746, 0.9626081252726988], [-0.47167666012382786, -0.816339400729452, 0.9428090415820628], [-0.4815819169222147, -0.8334826093773924, 0.9225851586367276], [-0.49127018848778925, -0.8502502777243253, 0.9019455886641152], [-0.5007371095987954, -0.86663485080132, 0.8808996311867745], [-0.5099784147668307, -0.8826289462497814, 0.859456768832318], [-0.5189899401587387, -0.8982253576477021, 0.8376266630608555], [-0.5277676254726964, -0.9134170577566427, 0.8154191498118544], [-0.5363075157676553, -0.9281972016879788, 0.7928442350723812], [-0.5446057632453103, -0.9425591299869858, 0.7699120903687298], [-0.552658628983792, -0.9564963716333736, 0.7466330481834593], [-0.5604624846223055, -0.9700026469569201, 0.7230175972999123], [-0.5680138139959511, -0.9830718704668859, 0.6990763780763078], [-0.575309214719995, -0.9956981535939411, 0.6748201776515403], [-0.5823453997228739, -1.0078758073433631, 0.6502599250848449], [-0.5891191987272427, -1.0195993448583134, 0.6254066864315146], [-0.5956275596783995, -1.0308634838920394, 0.6002716597568963], [-0.6018675501194422, -1.0416631491878818, 0.5748661700909029], [-0.6078363585125386, -1.051993474766023, 0.549201664325322], [-0.6135312955057151, -1.0618498061159378, 0.5232897060562167], [-0.6189497951445911, -1.0712277022935686, 0.4971419703737432], [-0.6240894160285155, -1.080122937922268, 0.4707702386017326], [-0.6289478424105823, -1.0885315050966187, 0.4441863929894083], [-0.6335228852410315, -1.0964496151882648, 0.4174024113576279], [-0.6378124831535643, -1.1038737005529466, 0.39043036170206524], [-0.6418147033941277, -1.1108004161379643, 0.3632823967557618], [-0.6455277426917514, -1.1172266409893514, 0.3359707485134982], [-0.648949928071043, -1.1231494796580754, 0.3085077227204532], [-0.6520797176059766, -1.1285662635046332, 0.2809056933276329], [-0.6549157011146353, -1.133474551901454, 0.25317709691656876], [-0.6574566007945923, -1.137872133332567, 0.22533442709579643], [-0.6597012717986493, -1.141757026390039, 0.19739022887163948], [-0.6616487027506658, -1.1451274806667329, 0.16935709299583585], [-0.6632980162012532, -1.1479819775449842, 0.14124765029255215], [-0.6646484690231251, -1.1503192308808414, 0.11307456596734296], [-0.6656994527459268, -1.1521381875835603, 0.08485053390061897], [-0.6664504938303913, -1.1534380280900929, 0.05658827092819499], [-0.6669012538817021, -1.1542181667343567, 0.028300511111495234], [-0.6670515298019618, -1.1544782520111152, -2.8789516123905937e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.3333333333333333], [0.02830049696124367, -2.830050639473768e-05, 1.3330329548996924], [0.05658824263406463, -5.658826149680223e-05, 1.3321319549395754], [0.08485049147535824, -8.485051975884048e-05, 1.3306307394144166], [0.11307450943006732, -0.00011307454712155057, 1.3285299847233687], [0.14124757966873544, -0.00014124762675123714, 1.3258306373985365], [0.16935700831729886, -0.00016935706476960518, 1.3225339136785026], [0.19739013017653564, -0.00019739019597321097, 1.3186412989603271], [0.22533431442859456, -0.00022533438953999308, 1.3141545471302778], [0.2531769703280331, -0.00025317705472031204, 1.3090756797735854], [0.28090555287480007, -0.0002809056465099349, 1.3034069852635817], [0.3085075684666067, -0.00030850767130240865, 1.2971510177306327], [0.33597058052813994, -0.00033597069251827433, 1.2903105959113317], [0.36328221511458053, -0.00036328233620858835, 1.2828888018784657], [0.3904301664869025, -0.00039043029663022265, 1.2748889796523346], [0.41740220265644135, -0.0004174023417904355, 1.2663147336940423], [0.444186170896232, -0.00044418631895821087, 1.2571699272814456], [0.4707700032166346, -0.0004707701601398862, 1.2474586807684829], [0.4971417218027802, -0.0004971418875166, 1.237185369728679], [0.523289444411387, -0.0005232896188411098, 1.2263546229836515], [0.5492013897245142, -0.0005492015727915475, 1.2149713205175143], [0.5748658826578431, -0.0005748660742797029, 1.2030405912781137], [0.6002713596210927, -0.0006002715597114404, 1.1905678108660913], [0.6254063737281986, -0.0006254065821968799, 1.1775585991128124], [0.6502595999549106, -0.0006502598167079962, 1.1640188175482509], [0.6748198402414809, -0.0006748200651813089, 1.149954566759974], [0.699076028538149, -0.0006990762615633689, 1.135372183644415], [0.7230172357911451, -0.0007230174767967632, 1.1202782385516723], [0.7466326748669676, -0.0007466329237443946, 1.1046795323251226], [0.7699117054127179, -0.0007699119620498176, 1.0885830932371807], [0.792843838650298, -0.000792844102931438, 1.0719961738225872], [0.8154187421023145, -0.0008154190139084184, 1.054926247610651], [0.8376262442475602, -0.000837626523456161, 1.037381005757919], [0.8594563391039705, -0.0008594566255892657, 1.0193683535827898], [0.8808991907369967, -0.0008808994843699054, 1.0008964070036321], [0.9019451376913595, -0.0009019454383395802, 0.9819734888820159], [0.9225846973441878, -0.000922585004872258, 0.9626081252726988], [0.9428085701775824, -0.00094280888444694, 0.9428090415820628], [0.9626076439686773, -0.0009626079648377226, 0.9225851586367276], [0.9819729978953132, -0.0009819733252194732, 0.9019455886641152], [1.0008959065554712, -0.001000896240187264, 0.8808996311867745], [1.0193678438986564, -0.0010193681836877585, 0.859456768832318], [1.0373804870674603, -0.0010373808328607735, 0.8376266630608555], [1.0549257201475721, -0.0010549260717892931, 0.8154191498118544], [1.0719956378245459, -0.0010719959951562366, 0.7928442350723812], [1.0885825489456804, -0.0010885829118063386, 0.7699120903687298], [1.1046789799854033, -0.0011046793482115357, 0.7466330481834593], [1.1202776784126005, -0.0011202780518382964, 0.7230175972999123], [1.135371615958371, -0.0011353719944153767, 0.6990763780763078], [1.1499539917827393, -0.0011499543751005343, 0.6748201776515403], [1.1640182355388913, -0.001164018623544765, 0.6502599250848449], [1.1775580103335626, -0.0011775584028526922, 0.6254066864315146], [1.1905672155822362, -0.0011905676124377654, 0.6002716597568963], [1.2030399897578687, -0.001203040390770987, 0.5748661700909029], [1.2149707130319054, -0.0012149711180219293, 0.549201664325322], [1.226354009806392, -0.0012263544185908463, 0.5232897060562167], [1.2371847511360463, -0.0012371851635307458, 0.4971419703737432], [1.2474580570391953, -0.0012474584728583281, 0.4707702386017326], [1.257169298696535, -0.0012571697177527468, 0.4441863929894083], [1.266314100536729, -0.0012663145226412065, 0.4174024113576279], [1.2748883422078985, -0.001274888767170455, 0.39043036170206524], [1.282888160434119, -0.0012828885880632802, 0.3632823967557618], [1.290309950756088, -0.001290310380859178, 0.3359707485134982], [1.2971503691551785, -0.0012971508015384068, 0.3085077227204532], [1.3034063335601438, -0.0013034067680286925, 0.2809056933276329], [1.3090750252358008, -0.0013090754615939122, 0.25317709691656876], [1.3141538900530596, -0.0013141543281041251, 0.22533442709579643], [1.318640639639733, -0.001318641079186381, 0.19739022887163948], [1.3225332524116011, -0.001322533693255786, 0.16935709299583585], [1.3258299744832736, -0.001325830416426365, 0.14124765029255215], [1.3285293204584319, -0.001328529763301305, 0.11307456596734296], [1.3306300740991026, -0.0013306305176422266, 0.08485053390061897], [1.3321312888736534, -0.001332131732917182, 0.05658827092819499], [1.3330322883832706, -0.0013330327327271323, 0.028300511111495234], [1.3333326666667222, -0.00133333311111071, -2.8789516123905937e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.6666666666666665], [0.03537562120155458, 3.537563299343304e-05, 1.6662911936246156], [0.07073530329258078, 7.073532687102465e-05, 1.665164943674469], [0.1060631143441978, 0.00010606314969858338, 1.6632884242680208], [0.14134313678758412, 0.0001413431839019819, 1.6606624809042108], [0.17655947458591925, 0.000176559533439101, 1.6572882967481706], [0.21169626039662356, 0.00021169633096207192, 1.653167392098128], [0.24673766272066952, 0.00024673774496659, 1.6483016237004087], [0.2816678930357432, 0.00028166798692507843, 1.6426931839128474], [0.3164712129100413, 0.00031647131840048786, 1.6363445997169819], [0.3511319410935, 0.0003511320581375272, 1.6292587315794769], [0.38563446058325834, 0.00038563458912813, 1.6214387721632908], [0.41996322566017485, 0.00041996336564797276, 1.6128882448891646], [0.4541027688932256, 0.0004541029202608758, 1.603611002348082], [0.48803770810862807, 0.0004880378707879292, 1.5936112245654181], [0.5217527533205516, 0.0005217529272382057, 1.582893417117553], [0.5552327136202899, 0.0005552328986979352, 1.5714624091018068], [0.5884625040207931, 0.0005884627001750397, 1.5593233509606037], [0.6214271522534752, 0.0006214273593959422, 1.5464817121608487], [0.6541118055142336, 0.0006541120235515894, 1.5329432787295645], [0.6865017371556427, 0.0006865019659896466, 1.5187141506468929], [0.7185823533223038, 0.0007185825928498508, 1.503800739097642], [0.7503391995263657, 0.0007503394496395324, 1.4882097635826141], [0.7817579671602483, 0.0007817582277463416, 1.4719482488910154], [0.812824499943638, 0.0008128247708852464, 1.4550235219353134], [0.8435248003018511, 0.000843525081476897, 1.4374432084499675], [0.8738450356726861, 0.0008738453269544812, 1.4192152295555187], [0.9037715447389312, 0.0009037718459962333, 1.4003477981895904], [0.9332908435837094, 0.0009332911546807817, 1.3808494154064033], [0.9623896317658973, 0.0009623899525625695, 1.3607288665464758], [0.9910547983128722, 0.000991055128664604, 1.339995217278234], [1.019273427627893, 0.001019273767385838, 1.3186578095133137], [1.04703280530945, 0.0010470331543205248, 1.2967262571973988], [1.0743204238799628, 0.0010743207819869142, 1.274210441978487], [1.1011239884212458, 0.0011011243554627222, 1.25112050875454], [1.1274314221141992, 0.0011274317979248236, 1.2274668611025197], [1.1532308716802346, 0.001153231256090679, 1.2032601565908734], [1.1785107127219778, 0.0011785111055590393, 1.1785113019775784], [1.2032595549608465, 0.0012032599560475254, 1.1532314482959094], [1.2274662473691413, 0.0012274666565247208, 1.127431985830144], [1.2511198831943389, 0.0012511203002344667, 1.101124538983468], [1.2742098048733204, 0.0012742102296100918, 1.0743209610403974], [1.2967256088343253, 0.0012967260410763678, 1.0470333288260694], [1.3186571501844648, 0.0013186575897370242, 1.0192739372648179], [1.3399945472806822, 0.00133999499394571, 0.9910552938404764], [1.3607281861821003, 0.001360728639758344, 0.9623901129609123], [1.380848724981754, 0.0013808491852648466, 0.9332913102293242], [1.4003470980157504, 0.0014003475647983033, 0.9037719966248904], [1.4192145199479638, 0.0014192149930196598, 0.8738454725953847], [1.4374424897284237, 0.001437442968876112, 0.8435252220644255], [1.455022794423614, 0.0014550232794314061, 0.812824906356056], [1.471947512916953, 0.0014719480035663202, 0.7817583580393933], [1.488209019477795, 0.0014882095155476667, 0.7503395746961204], [1.5037999871973358, 0.0015038004884641988, 0.7185827126136286], [1.5187133912898816, 0.001518713897527881, 0.6865020804066525], [1.5329425122579898, 0.0015329430232390317, 0.6541121325702709], [1.5464809389200578, 0.0015464814544139103, 0.621427462967179], [1.5593225712989938, 0.0015593230910733921, 0.5884627982521657], [1.5714616233706684, 0.0015714621471914192, 0.5552329912367604], [1.582892625670911, 0.0015828931533019973, 0.5217530141970349], [1.5936104277598728, 0.0015936109589635614, 0.4880379521275815], [1.6036102005426485, 0.0016036107350795958, 0.45410299594470227], [1.61288743844511, 0.0016128879760744712, 0.41996343564187266], [1.621437961443973, 0.0016214385019235097, 0.38563465340056646], [1.6292579169501795, 0.0016292584600363692, 0.3511321166595411], [1.6363437815447506, 0.0016363443269928962, 0.31647137114571094], [1.6426923625663243, 0.0016426929101306643, 0.28166803386974554], [1.648300799549666, 0.0016483013489834856, 0.24673778608954933], [1.6531665655145011, 0.0016531671165702436, 0.21169636624479482], [1.6572874681040917, 0.0016572880205334686, 0.17655956286569016], [1.6606616505730396, 0.0016606622041271447, 0.1413432074591787], [1.663287592623878, 0.0016632881470532975, 0.1060631673757737], [1.6651641110920665, 0.0016651646661469924, 0.07073533866024373], [1.6662903604790882, 0.0016662909159094305, 0.03537563888936904], [1.6666658333334026, 0.0016666663888889027, -3.598689515488242e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.6666666666666665], [-0.017698030529158297, 0.030630304311584446, 1.6662911936246156], [-0.03538808689828329, 0.06124680759892231, 1.665164943674469], [-0.0530621985402402, 0.09183571505606208, 1.6632884242680208], [-0.07071240207207254, 0.12238324431084063, 1.6606624809042108], [-0.08833074488304478, 0.15287563163477422, 1.6572882967481706], [-0.10590928871783158, 0.18329913814454935, 1.653167392098128], [-0.12344011325323878, 0.2136400559923191, 1.6483016237004087], [-0.1409153196668448, 0.24388471454201605, 1.6426931839128474], [-0.15832703419595456, 0.2740194865288984, 1.6363445997169819], [-0.17566741168526212, 0.3040307941995548, 1.6292587315794769], [-0.1929286391216241, 0.3339051154296009, 1.6214387721632908], [-0.21010293915435038, 0.3636289898163109, 1.6128882448891646], [-0.22718257359942692, 0.3931890247434399, 1.603611002348082], [-0.244159846926091, 0.422571901415503, 1.5936112245654181], [-0.26102710972418863, 0.45176438085879445, 1.582893417117553], [-0.2777767621507512, 0.4807533098864403, 1.5714624091018068], [-0.2944012573542387, 0.5095256270247992, 1.5593233509606037], [-0.31089310487490734, 0.5380683683985398, 1.5464817121608487], [-0.327244874019768, 0.5663686735717435, 1.5329432787295645], [-0.343449197210616, 0.5944137913424012, 1.5187141506468929], [-0.35949877330362406, 0.6221910854876921, 1.503800739097642], [-0.37538637087900106, 0.6496880404574569, 1.4882097635826141], [-0.3911048314992359, 0.6768922670133001, 1.4719482488910154], [-0.40664707293445823, 0.7037915078107797, 1.4550235219353134], [-0.42200609235346154, 0.7303736429221706, 1.4374432084499675], [-0.4371749694789528, 0.7566266952973112, 1.4192152295555187], [-0.4521468697056056, 0.7825388361600756, 1.4003477981895904], [-0.46691504717951166, 0.8080983903380365, 1.3808494154064033], [-0.48147284783764516, 0.8332938415229216, 1.3607288665464758], [-0.49581371240596755, 0.8581138374594879, 1.339995217278234], [-0.5099311793548248, 0.8825471950604817, 1.3186578095133137], [-0.5238188878103032, 0.9065829054453762, 1.2967262571973988], [-0.5374705804202338, 0.9302101389006158, 1.274210441978487], [-0.5508801061735523, 0.9534182497591357, 1.25112050875454], [-0.5640414231717464, 0.976196781196955, 1.2274668611025197], [-0.5769486013511393, 0.9985354699446825, 1.2032601565908734], [-0.5895958251547846, 1.0204242509118149, 1.1785113019775784], [-0.6019773961527681, 1.0418532617217404, 1.1532314482959094], [-0.6140877356097364, 1.0628128471554066, 1.127431985830144], [-0.625921386998494, 1.08329356350165, 1.101124538983468], [-0.6374730184585382, 1.103286182812227, 1.0743209610403974], [-0.6487374251984231, 1.1227816970596276, 1.0470333288260694], [-0.6597095318408702, 1.1417713221958035, 1.0192739372648179], [-0.670384394709569, 1.1602465021099735, 0.9910552938404764], [-0.6807572040566376, 1.1781989124837322, 0.9623901129609123], [-0.6908232862297398, 1.195620464541717, 0.9332913102293242], [-0.7005781057778817, 1.21250330869615, 0.9037719966248904], [-0.7100172674949385, 1.2288398380836074, 0.8738454725953847], [-0.7191365183999935, 1.2446226919924264, 0.8435252220644255], [-0.7279317496535922, 1.259844759179204, 0.812824906356056], [-0.7363989984090532, 1.2744991810728918, 0.7817583580393933], [-0.7445344495979992, 1.2885793548650493, 0.7503395746961204], [-0.7523344376493024, 1.3020789364848524, 0.7185827126136286], [-0.7597954481406729, 1.3149918434575285, 0.6865020804066525], [-0.7669141193821436, 1.3273122576449223, 0.6541121325702709], [-0.7736872439307387, 1.3390346278669607, 0.621427462967179], [-0.7801117700356442, 1.3501536724028351, 0.5884627982521657], [-0.7861848030132277, 1.3606643813707733, 0.5552329912367604], [-0.7919036065512891, 1.370562018985331, 0.5217530141970349], [-0.7972656039419551, 1.3798421256911833, 0.4880379521275815], [-0.8022683792426594, 1.3885005201724554, 0.45410299594470227], [-0.806909678364689, 1.3965333012366894, 0.41996343564187266], [-0.8111874100888035, 1.4039368495725943, 0.38563465340056646], [-0.8150996470074706, 1.4107078293807915, 0.3511321166595411], [-0.8186446263932937, 1.4168431898768175, 0.31647137114571094], [-0.8218207509932403, 1.4223401666657085, 0.28166803386974554], [-0.8246265897483115, 1.4271962829875486, 0.24673778608954933], [-0.827060878438332, 1.431409350833416, 0.21169636624479482], [-0.8291225202515662, 1.4349774719312303, 0.17655956286569016], [-0.8308105862789061, 1.4378990386010517, 0.1413432074591787], [-0.8321243159324082, 1.4401727344794504, 0.1060631673757737], [-0.833063117287989, 1.4417975351126162, 0.07073533866024373], [-0.8336265673521274, 1.4427727084179458, 0.03537563888936904], [-0.833814412252452, 1.443097815013894, -3.598689515488242e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.6666666666666665], [-0.017698030529158304, -0.03063030431158444, 1.6662911936246156], [-0.035388086898283294, -0.0612468075989223, 1.665164943674469], [-0.05306219854024021, -0.09183571505606207, 1.6632884242680208], [-0.07071240207207255, -0.1223832443108406, 1.6606624809042108], [-0.08833074488304479, -0.1528756316347742, 1.6572882967481706], [-0.1059092887178316, -0.18329913814454932, 1.653167392098128], [-0.12344011325323881, -0.21364005599231908, 1.6483016237004087], [-0.14091531966684484, -0.24388471454201602, 1.6426931839128474], [-0.1583270341959546, -0.27401948652889835, 1.6363445997169819], [-0.17566741168526218, -0.30403079419955475, 1.6292587315794769], [-0.19292863912162417, -0.3339051154296009, 1.6214387721632908], [-0.21010293915435044, -0.36362898981631087, 1.6128882448891646], [-0.22718257359942698, -0.39318902474343986, 1.603611002348082], [-0.24415984692609105, -0.42257190141550294, 1.5936112245654181], [-0.2610271097241887, -0.45176438085879433, 1.582893417117553], [-0.27777676215075126, -0.48075330988644027, 1.5714624091018068], [-0.29440125735423883, -0.5095256270247991, 1.5593233509606037], [-0.31089310487490746, -0.5380683683985397, 1.5464817121608487], [-0.32724487401976804, -0.5663686735717434, 1.5329432787295645], [-0.3434491972106161, -0.5944137913424011, 1.5187141506468929], [-0.3594987733036241, -0.622191085487692, 1.503800739097642], [-0.3753863708790011, -0.6496880404574568, 1.4882097635826141], [-0.391104831499236, -0.6768922670133, 1.4719482488910154], [-0.40664707293445834, -0.7037915078107796, 1.4550235219353134], [-0.42200609235346165, -0.7303736429221704, 1.4374432084499675], [-0.43717496947895296, -0.7566266952973111, 1.4192152295555187], [-0.4521468697056057, -0.7825388361600755, 1.4003477981895904], [-0.46691504717951177, -0.8080983903380364, 1.3808494154064033], [-0.48147284783764527, -0.8332938415229214, 1.3607288665464758], [-0.4958137124059677, -0.8581138374594878, 1.339995217278234], [-0.5099311793548249, -0.8825471950604816, 1.3186578095133137], [-0.5238188878103034, -0.9065829054453761, 1.2967262571973988], [-0.5374705804202339, -0.9302101389006157, 1.274210441978487], [-0.5508801061735524, -0.9534182497591356, 1.25112050875454], [-0.5640414231717467, -0.9761967811969547, 1.2274668611025197], [-0.5769486013511395, -0.9985354699446823, 1.2032601565908734], [-0.5895958251547848, -1.0204242509118149, 1.1785113019775784], [-0.6019773961527684, -1.0418532617217402, 1.1532314482959094], [-0.6140877356097366, -1.0628128471554064, 1.127431985830144], [-0.6259213869984941, -1.0832935635016498, 1.101124538983468], [-0.6374730184585383, -1.1032861828122267, 1.0743209610403974], [-0.6487374251984234, -1.1227816970596274, 1.0470333288260694], [-0.6597095318408704, -1.1417713221958032, 1.0192739372648179], [-0.6703843947095692, -1.1602465021099735, 0.9910552938404764], [-0.6807572040566378, -1.178198912483732, 0.9623901129609123], [-0.69082328622974, -1.1956204645417168, 0.9332913102293242], [-0.7005781057778818, -1.2125033086961499, 0.9037719966248904], [-0.7100172674949388, -1.2288398380836072, 0.8738454725953847], [-0.7191365183999937, -1.2446226919924261, 0.8435252220644255], [-0.7279317496535924, -1.2598447591792037, 0.812824906356056], [-0.7363989984090534, -1.2744991810728916, 0.7817583580393933], [-0.7445344495979994, -1.288579354865049, 0.7503395746961204], [-0.7523344376493026, -1.3020789364848522, 0.7185827126136286], [-0.7597954481406731, -1.3149918434575283, 0.6865020804066525], [-0.7669141193821438, -1.3273122576449221, 0.6541121325702709], [-0.773687243930739, -1.3390346278669605, 0.621427462967179], [-0.7801117700356445, -1.350153672402835, 0.5884627982521657], [-0.7861848030132279, -1.360664381370773, 0.5552329912367604], [-0.7919036065512893, -1.3705620189853307, 0.5217530141970349], [-0.7972656039419553, -1.379842125691183, 0.4880379521275815], [-0.8022683792426596, -1.3885005201724552, 0.45410299594470227], [-0.8069096783646892, -1.3965333012366892, 0.41996343564187266], [-0.8111874100888037, -1.4039368495725941, 0.38563465340056646], [-0.8150996470074708, -1.4107078293807913, 0.3511321166595411], [-0.8186446263932939, -1.4168431898768172, 0.31647137114571094], [-0.8218207509932405, -1.4223401666657083, 0.28166803386974554], [-0.8246265897483117, -1.4271962829875484, 0.24673778608954933], [-0.8270608784383322, -1.4314093508334158, 0.21169636624479482], [-0.8291225202515664, -1.43497747193123, 0.17655956286569016], [-0.8308105862789064, -1.4378990386010515, 0.1413432074591787], [-0.8321243159324084, -1.4401727344794502, 0.1060631673757737], [-0.8330631172879892, -1.441797535112616, 0.07073533866024373], [-0.8336265673521276, -1.4427727084179456, 0.03537563888936904], [-0.8338144122524522, -1.4430978150138938, -3.598689515488242e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.6666666666666665], [0.03537562120155458, -3.5375632993422095e-05, 1.6662911936246156], [0.07073530329258078, -7.073532687100276e-05, 1.665164943674469], [0.1060631143441978, -0.00010606314969855058, 1.6632884242680208], [0.14134313678758412, -0.0001413431839019382, 1.6606624809042108], [0.17655947458591925, -0.0001765595334390464, 1.6572882967481706], [0.21169626039662356, -0.00021169633096200646, 1.653167392098128], [0.24673766272066952, -0.0002467377449665137, 1.6483016237004087], [0.2816678930357432, -0.0002816679869249913, 1.6426931839128474], [0.3164712129100413, -0.00031647131840039, 1.6363445997169819], [0.3511319410935, -0.00035113205813741864, 1.6292587315794769], [0.38563446058325834, -0.00038563458912801074, 1.6214387721632908], [0.41996322566017485, -0.00041996336564784287, 1.6128882448891646], [0.4541027688932256, -0.00045410292026073536, 1.603611002348082], [0.48803770810862807, -0.0004880378707877783, 1.5936112245654181], [0.5217527533205516, -0.0005217529272380443, 1.582893417117553], [0.5552327136202899, -0.0005552328986977636, 1.5714624091018068], [0.5884625040207931, -0.0005884627001748576, 1.5593233509606037], [0.6214271522534752, -0.00062142735939575, 1.5464817121608487], [0.6541118055142336, -0.0006541120235513871, 1.5329432787295645], [0.6865017371556427, -0.0006865019659894343, 1.5187141506468929], [0.7185823533223038, -0.0007185825928496285, 1.503800739097642], [0.7503391995263657, -0.0007503394496393003, 1.4882097635826141], [0.7817579671602483, -0.0007817582277460998, 1.4719482488910154], [0.812824499943638, -0.0008128247708849951, 1.4550235219353134], [0.8435248003018511, -0.0008435250814766361, 1.4374432084499675], [0.8738450356726861, -0.0008738453269542109, 1.4192152295555187], [0.9037715447389312, -0.0009037718459959538, 1.4003477981895904], [0.9332908435837094, -0.0009332911546804931, 1.3808494154064033], [0.9623896317658973, -0.0009623899525622719, 1.3607288665464758], [0.9910547983128722, -0.0009910551286642973, 1.339995217278234], [1.019273427627893, -0.001019273767385523, 1.3186578095133137], [1.04703280530945, -0.001047033154320201, 1.2967262571973988], [1.0743204238799628, -0.001074320781986582, 1.274210441978487], [1.1011239884212458, -0.0011011243554623815, 1.25112050875454], [1.1274314221141992, -0.0011274317979244751, 1.2274668611025197], [1.1532308716802346, -0.0011532312560903223, 1.2032601565908734], [1.1785107127219778, -0.0011785111055586748, 1.1785113019775784], [1.2032595549608465, -0.0012032599560471533, 1.1532314482959094], [1.2274662473691413, -0.0012274666565243414, 1.127431985830144], [1.2511198831943389, -0.0012511203002340799, 1.101124538983468], [1.2742098048733204, -0.0012742102296096978, 1.0743209610403974], [1.2967256088343253, -0.0012967260410759668, 1.0470333288260694], [1.3186571501844648, -0.0013186575897366163, 1.0192739372648179], [1.3399945472806822, -0.0013399949939452956, 0.9910552938404764], [1.3607281861821003, -0.0013607286397579231, 0.9623901129609123], [1.380848724981754, -0.0013808491852644194, 0.9332913102293242], [1.4003470980157504, -0.0014003475647978703, 0.9037719966248904], [1.4192145199479638, -0.0014192149930192207, 0.8738454725953847], [1.4374424897284237, -0.0014374429688756676, 0.8435252220644255], [1.455022794423614, -0.0014550232794309562, 0.812824906356056], [1.471947512916953, -0.001471948003565865, 0.7817583580393933], [1.488209019477795, -0.0014882095155472066, 0.7503395746961204], [1.5037999871973358, -0.0015038004884637337, 0.7185827126136286], [1.5187133912898816, -0.0015187138975274114, 0.6865020804066525], [1.5329425122579898, -0.0015329430232385577, 0.6541121325702709], [1.5464809389200578, -0.0015464814544134322, 0.621427462967179], [1.5593225712989938, -0.0015593230910729101, 0.5884627982521657], [1.5714616233706684, -0.0015714621471909333, 0.5552329912367604], [1.582892625670911, -0.001582893153301508, 0.5217530141970349], [1.5936104277598728, -0.0015936109589630685, 0.4880379521275815], [1.6036102005426485, -0.0016036107350791, 0.45410299594470227], [1.61288743844511, -0.0016128879760739724, 0.41996343564187266], [1.621437961443973, -0.0016214385019230084, 0.38563465340056646], [1.6292579169501795, -0.0016292584600358653, 0.3511321166595411], [1.6363437815447506, -0.00163634432699239, 0.31647137114571094], [1.6426923625663243, -0.0016426929101301562, 0.28166803386974554], [1.648300799549666, -0.0016483013489829758, 0.24673778608954933], [1.6531665655145011, -0.0016531671165697323, 0.21169636624479482], [1.6572874681040917, -0.0016572880205329562, 0.17655956286569016], [1.6606616505730396, -0.001660662204126631, 0.1413432074591787], [1.663287592623878, -0.001663288147052783, 0.1060631673757737], [1.6651641110920665, -0.0016651646661464774, 0.07073533866024373], [1.6662903604790882, -0.0016662909159089153, 0.03537563888936904], [1.6666658333334026, -0.0016666663888883872, -3.598689515488242e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.9999999999999998], [0.0424507454418655, 4.245075959211964e-05, 1.9995494323495386], [0.08488236395109694, 8.488239224522956e-05, 1.9981979324093628], [0.12727573721303734, 0.00012727577963830004, 1.9959461091216248], [0.16961176414510096, 0.00016961182068237827, 1.9927949770850528], [0.21187136950310312, 0.0002118714401269212, 1.9887459560978047], [0.25403551247594824, 0.0002540355971544863, 1.9838008705177537], [0.2960851952648034, 0.000296085293959908, 1.9779619484404904], [0.3380014716428918, 0.00033800158431009406, 1.9712318206954167], [0.3797654554920496, 0.0003797655820805854, 1.9636135196603781], [0.4213583293122, 0.0004213584697650326, 1.9551104778953723], [0.46276135269991003, 0.00046276150695375595, 1.945726526595949], [0.5039558707922098, 0.0005039560387775673, 1.9354658938669975], [0.5449233226718707, 0.0005449235043130508, 1.9243332028176985], [0.5856452497303537, 0.000585645444945515, 1.9123334694785017], [0.626103303984662, 0.0006261035126858467, 1.8994721005410635], [0.666279256344348, 0.0006662794784375222, 1.8857548909221682], [0.7061550048249519, 0.0007061552402100475, 1.8711880211527243], [0.7457125827041702, 0.0007457128312751305, 1.8557780545930185], [0.7849341666170804, 0.0007849344282619072, 1.8395319344754772], [0.8238020845867712, 0.0008238023591875758, 1.8224569807762714], [0.8622988239867646, 0.0008622991114198208, 1.8045608869171703], [0.9004070394316389, 0.0009004073395674387, 1.785851716299137], [0.9381095605922979, 0.0009381098732956098, 1.7663378986692184], [0.9753893999323657, 0.0009753897250622956, 1.746028226322376], [1.0122297603622212, 0.0010122300977722762, 1.7249318501399609], [1.0486140428072233, 0.0010486143923453773, 1.7030582754666224], [1.0845258536867175, 0.0010845262151954799, 1.6804173578275083], [1.1199490123004512, 0.001119949385616938, 1.657019298487684], [1.1548675581190768, 0.0011548679430750833, 1.632874639855771], [1.1892657579754466, 0.0011892661543975245, 1.6079942607338806], [1.2231281131534717, 0.0012231285208630057, 1.5823893714159762], [1.25643936637134, 0.0012564397851846296, 1.5560715086368784], [1.2891845086559555, 0.0012891849383842968, 1.5290525303741844], [1.3213487861054949, 0.0013213492265552664, 1.501344610505448], [1.352917706537039, 0.0013529181575097882, 1.4729602333230236], [1.3838770460162817, 0.0013838775073088147, 1.443912187909048], [1.4142128552663733, 0.001414213326670847, 1.414213562373094], [1.443911465953016, 0.0014439119472570302, 1.3838777379550913], [1.4729594968429698, 0.0014729599878296649, 1.3529183829961726], [1.5013438598332067, 0.00150134436028136, 1.3213494467801616], [1.5290517658479843, 0.00152905227553211, 1.2891851532484768], [1.5560707306011903, 0.0015560712492916412, 1.2564399945912832], [1.5823885802213578, 0.0015823891076844287, 1.2231287247177813], [1.6079934567368186, 0.0016079939927348518, 1.1892663526085716], [1.6328738234185205, 0.0016328743677100125, 1.1548681355530945], [1.657018469978105, 0.0016570190223178156, 1.1199495722751889], [1.6804165176189005, 0.0016804170777579637, 1.0845263959498683], [1.7030574239375564, 0.0017030579916235914, 1.0486145671144615], [1.7249309876741086, 0.0017249315626513342, 1.0122302664773104], [1.7460273533083368, 0.0017460279353176873, 0.9753898876272672], [1.7663370155003437, 0.001766337604279584, 0.938110029647272], [1.785850823373354, 0.0017858514186571998, 0.9004074896353444], [1.804559984636803, 0.0018045605861570382, 0.8622992551363543], [1.8224560695478578, 0.0018224566770334572, 0.823802496487983], [1.8395310147095878, 0.0018395316278868377, 0.7849345590843251], [1.8557771267040695, 0.0018557777452966923, 0.7457129555606147], [1.8711870855587927, 0.0018711877092880704, 0.7061553579025989], [1.8857539480448022, 0.0018857545766297029, 0.6662795894841124], [1.8994711508050932, 0.0018994717839623968, 0.6261036170364418], [1.9123325133118476, 0.0019123331507562734, 0.5856455425530978], [1.9243322406511782, 0.0019243328820955149, 0.5449235951336426], [1.935464926134132, 0.0019354655712893651, 0.5039561227702472], [1.9457255537327676, 0.0019457262023082115, 0.46276158408067974], [1.9551095003402155, 0.001955110152043643, 0.4213585399914493], [1.9636125378537008, 0.001963613192391475, 0.37976564537485313], [1.971230835079589, 0.001971231492156797, 0.3380016406436946], [1.977960959459599, 0.0019779616187801823, 0.29608534330745917], [1.9837998786174016, 0.001983800539884292, 0.25403563949375374], [1.98874496172491, 0.001988745624640162, 0.2118714754388282], [1.9927939806876476, 0.001992794644952573, 0.16961184895101442], [1.9959451111486537, 0.0019959457764639568, 0.12727580085092843], [1.9981969333104799, 0.0019981975993763907, 0.08488240639229247], [1.9995484325749058, 0.0019995490990913165, 0.042450766667242845], [1.9999990000000831, 0.001999999666666683, -4.31842741858589e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.9999999999999998], [-0.021237636634989957, 0.03675636517390134, 1.9995494323495386], [-0.042465704277939935, 0.07349616911870677, 1.9981979324093628], [-0.06367463824828823, 0.1102028580672745, 1.9959461091216248], [-0.08485488248648702, 0.14685989317300877, 1.9927949770850528], [-0.10599689385965372, 0.18345075796172905, 1.9887459560978047], [-0.12709114646139788, 0.2199589657734592, 1.9838008705177537], [-0.14812813590388652, 0.2563680671907829, 1.9779619484404904], [-0.16909838360021376, 0.2926616574504193, 1.9712318206954167], [-0.18999244103514545, 0.3288233838346781, 1.9636135196603781], [-0.21080089402231456, 0.36483695303946573, 1.9551104778953723], [-0.2315143669459489, 0.4006861385155211, 1.945726526595949], [-0.25212352698522045, 0.4363547877795731, 1.9354658938669975], [-0.2726190883193123, 0.4718268296921279, 1.9243332028176985], [-0.29299181631130916, 0.5070862816986036, 1.9123334694785017], [-0.3132325316690263, 0.5421172570305534, 1.8994721005410635], [-0.3333321145809014, 0.5769039718637284, 1.8857548909221682], [-0.35328150882508647, 0.6114307524297591, 1.8711880211527243], [-0.3730717258498888, 0.6456820420782476, 1.8557780545930185], [-0.39269384882372155, 0.6796424082860922, 1.8395319344754772], [-0.4121390366527392, 0.7132965496108815, 1.8224569807762714], [-0.4313985279643488, 0.7466293025852304, 1.8045608869171703], [-0.4504636450548012, 0.7796256485489482, 1.785851716299137], [-0.46932579779908307, 0.81227072041596, 1.7663378986692184], [-0.48797648752134987, 0.8445498093729357, 1.746028226322376], [-0.5064073108241538, 0.8764483715066047, 1.7249318501399609], [-0.5246099633747433, 0.9079520343567734, 1.7030582754666224], [-0.5425762436467266, 0.9390466033920907, 1.6804173578275083], [-0.5602980566154139, 0.9697180684056439, 1.657019298487684], [-0.5777674174051741, 0.9999526098275059, 1.632874639855771], [-0.594976454887161, 1.0297366049513854, 1.6079942607338806], [-0.6119174152257897, 1.059056634072578, 1.5823893714159762], [-0.6285826653723638, 1.0878994865344516, 1.5560715086368784], [-0.6449646965042805, 1.116252166680739, 1.5290525303741844], [-0.6610561274082627, 1.1441018997109629, 1.501344610505448], [-0.6768497078060957, 1.171436137436346, 1.4729602333230236], [-0.6923383216213672, 1.198242563933619, 1.443912187909048], [-0.7075149901857415, 1.224509101094178, 1.414213562373094], [-0.7223728753833217, 1.2502239140660885, 1.3838777379550913], [-0.7369052827316837, 1.275375416586488, 1.3529183829961726], [-0.7511056643981927, 1.29995227620198, 1.3213494467801616], [-0.7649676221502458, 1.3239434193746722, 1.2891851532484768], [-0.7784849102381077, 1.347338036471553, 1.2564399945912832], [-0.7916514382090443, 1.370125586634964, 1.2231287247177813], [-0.8044612736514828, 1.3922958025319683, 1.1892663526085716], [-0.8169086448679651, 1.4138386949804786, 1.1548681355530945], [-0.8289879434756877, 1.4347445574500604, 1.1199495722751889], [-0.8406937269334579, 1.45500397043538, 1.0845263959498683], [-0.8520207209939262, 1.474607805700329, 1.0486145671144615], [-0.8629638220799921, 1.4935472303909116, 1.0122302664773104], [-0.8735180995843106, 1.5118137110150447, 0.9753898876272672], [-0.8836787980908638, 1.52939901728747, 0.938110029647272], [-0.893441339517599, 1.5462952258380591, 0.9004074896353444], [-0.9028013251791628, 1.5624947237818227, 0.8622992551363543], [-0.9117545377688074, 1.5779902121490343, 0.823802496487983], [-0.9202969432585723, 1.5927747091739068, 0.7849345590843251], [-0.9284246927168863, 1.6068415534403528, 0.7457129555606147], [-0.936134124042773, 1.6201844068834022, 0.7061553579025989], [-0.9434217636158732, 1.632797257644928, 0.6662795894841124], [-0.9502843278615468, 1.6446744227823973, 0.6261036170364418], [-0.956718724730346, 1.6558105508294199, 0.5856455425530978], [-0.9627220550911911, 1.6662006242069465, 0.5449235951336426], [-0.9682916140376266, 1.6758399614840271, 0.5039561227702472], [-0.9734248921065641, 1.6847242194871133, 0.46276158408067974], [-0.9781195764089646, 1.6928493952569499, 0.4213585399914493], [-0.9823735516719524, 1.700211827852181, 0.37976564537485313], [-0.9861849011918882, 1.7068081999988503, 0.3380016406436946], [-0.9895519076979736, 1.7126355395850583, 0.29608534330745917], [-0.9924730541259983, 1.7176912210000992, 0.25403563949375374], [-0.9949470243018793, 1.7219729663174763, 0.2118714754388282], [-0.9969727035346873, 1.725478846321262, 0.16961184895101442], [-0.9985491791188897, 1.7282072813753404, 0.12727580085092843], [-0.9996757407455866, 1.7301570421351395, 0.08488240639229247], [-1.0003518808225529, 1.7313272501015349, 0.042450766667242845], [-1.0005772947029423, 1.7317173780166728, -4.31842741858589e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.9999999999999998], [-0.02123763663498996, -0.03675636517390133, 1.9995494323495386], [-0.04246570427793995, -0.07349616911870677, 1.9981979324093628], [-0.06367463824828824, -0.11020285806727449, 1.9959461091216248], [-0.08485488248648705, -0.14685989317300874, 1.9927949770850528], [-0.10599689385965375, -0.18345075796172902, 1.9887459560978047], [-0.1270911464613979, -0.21995896577345916, 1.9838008705177537], [-0.14812813590388654, -0.2563680671907829, 1.9779619484404904], [-0.1690983836002138, -0.2926616574504192, 1.9712318206954167], [-0.18999244103514548, -0.328823383834678, 1.9636135196603781], [-0.21080089402231458, -0.36483695303946573, 1.9551104778953723], [-0.23151436694594896, -0.40068613851552104, 1.945726526595949], [-0.2521235269852205, -0.43635478777957304, 1.9354658938669975], [-0.27261908831931236, -0.4718268296921278, 1.9243332028176985], [-0.2929918163113092, -0.5070862816986036, 1.9123334694785017], [-0.31323253166902637, -0.5421172570305532, 1.8994721005410635], [-0.33333211458090145, -0.5769039718637283, 1.8857548909221682], [-0.3532815088250865, -0.611430752429759, 1.8711880211527243], [-0.3730717258498889, -0.6456820420782475, 1.8557780545930185], [-0.3926938488237216, -0.6796424082860921, 1.8395319344754772], [-0.41213903665273927, -0.7132965496108814, 1.8224569807762714], [-0.4313985279643489, -0.7466293025852304, 1.8045608869171703], [-0.4504636450548013, -0.7796256485489481, 1.785851716299137], [-0.4693257977990832, -0.8122707204159599, 1.7663378986692184], [-0.48797648752135, -0.8445498093729356, 1.746028226322376], [-0.5064073108241539, -0.8764483715066046, 1.7249318501399609], [-0.5246099633747434, -0.9079520343567733, 1.7030582754666224], [-0.5425762436467267, -0.9390466033920906, 1.6804173578275083], [-0.5602980566154141, -0.9697180684056438, 1.657019298487684], [-0.5777674174051742, -0.9999526098275058, 1.632874639855771], [-0.5949764548871612, -1.0297366049513854, 1.6079942607338806], [-0.6119174152257898, -1.059056634072578, 1.5823893714159762], [-0.628582665372364, -1.0878994865344513, 1.5560715086368784], [-0.6449646965042806, -1.1162521666807388, 1.5290525303741844], [-0.6610561274082628, -1.1441018997109627, 1.501344610505448], [-0.6768497078060959, -1.1714361374363458, 1.4729602333230236], [-0.6923383216213673, -1.1982425639336187, 1.443912187909048], [-0.7075149901857416, -1.2245091010941778, 1.414213562373094], [-0.722372875383322, -1.2502239140660882, 1.3838777379550913], [-0.7369052827316838, -1.2753754165864877, 1.3529183829961726], [-0.7511056643981928, -1.2999522762019797, 1.3213494467801616], [-0.7649676221502459, -1.323943419374672, 1.2891851532484768], [-0.778484910238108, -1.3473380364715528, 1.2564399945912832], [-0.7916514382090444, -1.370125586634964, 1.2231287247177813], [-0.8044612736514829, -1.392295802531968, 1.1892663526085716], [-0.8169086448679652, -1.4138386949804784, 1.1548681355530945], [-0.8289879434756878, -1.4347445574500601, 1.1199495722751889], [-0.8406937269334581, -1.4550039704353799, 1.0845263959498683], [-0.8520207209939265, -1.4746078057003287, 1.0486145671144615], [-0.8629638220799923, -1.4935472303909114, 1.0122302664773104], [-0.8735180995843107, -1.5118137110150445, 0.9753898876272672], [-0.8836787980908639, -1.52939901728747, 0.938110029647272], [-0.8934413395175992, -1.5462952258380591, 0.9004074896353444], [-0.902801325179163, -1.5624947237818227, 0.8622992551363543], [-0.9117545377688077, -1.5779902121490341, 0.823802496487983], [-0.9202969432585725, -1.5927747091739066, 0.7849345590843251], [-0.9284246927168865, -1.6068415534403526, 0.7457129555606147], [-0.9361341240427732, -1.620184406883402, 0.7061553579025989], [-0.9434217636158734, -1.6327972576449277, 0.6662795894841124], [-0.950284327861547, -1.644674422782397, 0.6261036170364418], [-0.9567187247303462, -1.6558105508294196, 0.5856455425530978], [-0.9627220550911914, -1.6662006242069463, 0.5449235951336426], [-0.9682916140376269, -1.675839961484027, 0.5039561227702472], [-0.9734248921065644, -1.684724219487113, 0.46276158408067974], [-0.9781195764089649, -1.6928493952569497, 0.4213585399914493], [-0.9823735516719526, -1.7002118278521807, 0.37976564537485313], [-0.9861849011918884, -1.70680819999885, 0.3380016406436946], [-0.9895519076979739, -1.712635539585058, 0.29608534330745917], [-0.9924730541259985, -1.717691221000099, 0.25403563949375374], [-0.9949470243018795, -1.721972966317476, 0.2118714754388282], [-0.9969727035346875, -1.7254788463212618, 0.16961184895101442], [-0.99854917911889, -1.7282072813753402, 0.12727580085092843], [-0.9996757407455868, -1.7301570421351393, 0.08488240639229247], [-1.000351880822553, -1.7313272501015347, 0.042450766667242845], [-1.0005772947029425, -1.7317173780166726, -4.31842741858589e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.9999999999999998], [0.0424507454418655, -4.2450759592106515e-05, 1.9995494323495386], [0.08488236395109694, -8.488239224520332e-05, 1.9981979324093628], [0.12727573721303734, -0.00012727577963826068, 1.9959461091216248], [0.16961176414510096, -0.00016961182068232582, 1.9927949770850528], [0.21187136950310312, -0.00021187144012685567, 1.9887459560978047], [0.25403551247594824, -0.00025403559715440774, 1.9838008705177537], [0.2960851952648034, -0.0002960852939598164, 1.9779619484404904], [0.3380014716428918, -0.00033800158430998954, 1.9712318206954167], [0.3797654554920496, -0.0003797655820804679, 1.9636135196603781], [0.4213583293122, -0.0004213584697649023, 1.9551104778953723], [0.46276135269991003, -0.00046276150695361283, 1.945726526595949], [0.5039558707922098, -0.0005039560387774114, 1.9354658938669975], [0.5449233226718707, -0.0005449235043128824, 1.9243332028176985], [0.5856452497303537, -0.0005856454449453339, 1.9123334694785017], [0.626103303984662, -0.0006261035126856531, 1.8994721005410635], [0.666279256344348, -0.0006662794784373162, 1.8857548909221682], [0.7061550048249519, -0.0007061552402098291, 1.8711880211527243], [0.7457125827041702, -0.0007457128312748999, 1.8557780545930185], [0.7849341666170804, -0.0007849344282616645, 1.8395319344754772], [0.8238020845867712, -0.000823802359187321, 1.8224569807762714], [0.8622988239867646, -0.0008622991114195541, 1.8045608869171703], [0.9004070394316389, -0.0009004073395671603, 1.785851716299137], [0.9381095605922979, -0.0009381098732953196, 1.7663378986692184], [0.9753893999323657, -0.0009753897250619941, 1.746028226322376], [1.0122297603622212, -0.0010122300977719633, 1.7249318501399609], [1.0486140428072233, -0.0010486143923450532, 1.7030582754666224], [1.0845258536867175, -0.0010845262151951444, 1.6804173578275083], [1.1199490123004512, -0.0011199493856165917, 1.657019298487684], [1.1548675581190768, -0.0011548679430747261, 1.632874639855771], [1.1892657579754466, -0.0011892661543971568, 1.6079942607338806], [1.2231281131534717, -0.0012231285208626273, 1.5823893714159762], [1.25643936637134, -0.0012564397851842412, 1.5560715086368784], [1.2891845086559555, -0.0012891849383838982, 1.5290525303741844], [1.3213487861054949, -0.0013213492265548579, 1.501344610505448], [1.352917706537039, -0.00135291815750937, 1.4729602333230236], [1.3838770460162817, -0.0013838775073083866, 1.443912187909048], [1.4142128552663733, -0.0014142133266704096, 1.414213562373094], [1.443911465953016, -0.0014439119472565837, 1.3838777379550913], [1.4729594968429698, -0.0014729599878292095, 1.3529183829961726], [1.5013438598332067, -0.0015013443602808958, 1.3213494467801616], [1.5290517658479843, -0.0015290522755316371, 1.2891851532484768], [1.5560707306011903, -0.00155607124929116, 1.2564399945912832], [1.5823885802213578, -0.0015823891076839395, 1.2231287247177813], [1.6079934567368186, -0.0016079939927343546, 1.1892663526085716], [1.6328738234185205, -0.0016328743677095077, 1.1548681355530945], [1.657018469978105, -0.0016570190223173032, 1.1199495722751889], [1.6804165176189005, -0.0016804170777574442, 1.0845263959498683], [1.7030574239375564, -0.0017030579916230647, 1.0486145671144615], [1.7249309876741086, -0.001724931562650801, 1.0122302664773104], [1.7460273533083368, -0.0017460279353171473, 0.9753898876272672], [1.7663370155003437, -0.001766337604279038, 0.938110029647272], [1.785850823373354, -0.0017858514186566477, 0.9004074896353444], [1.804559984636803, -0.0018045605861564803, 0.8622992551363543], [1.8224560695478578, -0.0018224566770328936, 0.823802496487983], [1.8395310147095878, -0.001839531627886269, 0.7849345590843251], [1.8557771267040695, -0.0018557777452961185, 0.7457129555606147], [1.8711870855587927, -0.0018711877092874919, 0.7061553579025989], [1.8857539480448022, -0.0018857545766291198, 0.6662795894841124], [1.8994711508050932, -0.0018994717839618093, 0.6261036170364418], [1.9123325133118476, -0.001912333150755682, 0.5856455425530978], [1.9243322406511782, -0.0019243328820949198, 0.5449235951336426], [1.935464926134132, -0.0019354655712887667, 0.5039561227702472], [1.9457255537327676, -0.0019457262023076097, 0.46276158408067974], [1.9551095003402155, -0.0019551101520430382, 0.4213585399914493], [1.9636125378537008, -0.001963613192390868, 0.37976564537485313], [1.971230835079589, -0.0019712314921561873, 0.3380016406436946], [1.977960959459599, -0.001977961618779571, 0.29608534330745917], [1.9837998786174016, -0.0019838005398836785, 0.25403563949375374], [1.98874496172491, -0.001988745624639547, 0.2118714754388282], [1.9927939806876476, -0.0019927946449519573, 0.16961184895101442], [1.9959451111486537, -0.0019959457764633396, 0.12727580085092843], [1.9981969333104799, -0.0019981975993757727, 0.08488240639229247], [1.9995484325749058, -0.001999549099090698, 0.042450766667242845], [1.9999990000000831, -0.0019999996666660645, -4.31842741858589e-15]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0], [0.0, 0.0, 1.0]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.4999997500000208, 0.0004999999166666707, 0.8660254037844387], [0.4981572515250616, 0.04288767600367821, 0.8660254037844387], [0.49272780187970605, 0.08496654197266773, 0.8660254037844387], [0.4837504954878542, 0.12643361149336635, 0.8660254037844387], [0.47128997290140145, 0.1669903034388411, 0.8660254037844387], [0.45543595535985276, 0.2063445918008469, 0.8660254037844387], [0.4363025987579624, 0.24421310840544252, 0.8660254037844387], [0.41402767167311555, 0.2803231832883944, 0.8660254037844387], [0.3887715633710168, 0.3144148080387681, 0.8660254037844387], [0.3607161289324795, 0.3462425079737708, 0.8660254037844387], [0.33006337981691175, 0.37557710966436303, 0.8660254037844387], [0.2970340292910167, 0.4022073910846783, 0.8660254037844387], [0.2618659031962602, 0.42594160250344976, 0.8660254037844387], [0.22481222749827875, 0.4466088471663566, 0.8660254037844387], [0.18613980494862412, 0.4640603118277711, 0.8660254037844387], [0.14612709398768206, 0.4781703382715359, 0.8660254037844387], [0.10506220372150842, 0.48883732810535263, 0.8660254037844387], [0.06324081940963014, 0.49598447431386244, 0.8660254037844387], [0.020964073401211782, 0.4995603143029163, 0.8660254037844387], [-0.02146362315021793, 0.4995391004528728, 0.8660254037844387], [-0.06373677218087197, 0.4959209855127766, 0.8660254037844387], [-0.10555098843704253, 0.488732021500498, 0.8660254037844387], [-0.14660519118271678, 0.4780239721167538, 0.8660254037844387], [-0.18660377211321294, 0.46387394002370946, 0.8660254037844387], [-0.22525872386490514, 0.4463838116719225, 0.8660254037844387], [-0.262291713794832, 0.42567952367311473, 0.8660254037844387], [-0.297436088098064, 0.40191015600121455, 0.8660254037844387], [-0.3304387918323034, 0.37524685855101786, 0.8660254037844387], [-0.36106219102469644, 0.3458816187837184, 0.8660254037844387], [-0.3890857837408874, 0.3140258793328017, 0.8660254037844387], [-0.4143077877958647, 0.2799090155241461, 0.8660254037844387], [-0.43654659367438436, 0.24377668377285774, 0.8660254037844387], [-0.45564207219930414, 0.20588905274910577, 0.8660254037844387], [-0.47145672753204176, 0.16651893004934323, 0.8660254037844387], [-0.4838766872030477, 0.12594979786170296, 0.8660254037844387], [-0.49281252204363724, 0.08447377176964166, 0.8660254037844387], [-0.49819989011531235, 0.04238949739134284, 0.8660254037844387], [-0.49999999999999994, -3.828568698926949e-16, 0.8660254037844387], [-0.4981998901153123, -0.0423894973913436, 0.8660254037844387], [-0.4928125220436371, -0.08447377176964242, 0.8660254037844387], [-0.48387668720304755, -0.1259497978617037, 0.8660254037844387], [-0.47145672753204154, -0.16651893004934396, 0.8660254037844387], [-0.4556420721993038, -0.20588905274910646, 0.8660254037844387], [-0.43654659367438403, -0.2437766837728584, 0.8660254037844387], [-0.4143077877958643, -0.2799090155241467, 0.8660254037844387], [-0.3890857837408869, -0.3140258793328023, 0.8660254037844387], [-0.36106219102469594, -0.345881618783719, 0.8660254037844387], [-0.3304387918323028, -0.37524685855101836, 0.8660254037844387], [-0.2974360880980634, -0.401910156001215, 0.8660254037844387], [-0.2622917137948314, -0.4256795236731151, 0.8660254037844387], [-0.22525872386490445, -0.4463838116719228, 0.8660254037844387], [-0.18660377211321214, -0.4638739400237098, 0.8660254037844387], [-0.14660519118271584, -0.47802397211675407, 0.8660254037844387], [-0.10555098843704146, -0.48873202150049827, 0.8660254037844387], [-0.06373677218087076, -0.49592098551277675, 0.8660254037844387], [-0.02146362315021661, -0.49953910045287286, 0.8660254037844387], [0.02096407340121321, -0.49956031430291625, 0.8660254037844387], [0.06324081940963167, -0.4959844743138623, 0.8660254037844387], [0.10506220372151003, -0.4888373281053523, 0.8660254037844387], [0.14612709398768375, -0.4781703382715354, 0.8660254037844387], [0.18613980494862584, -0.46406031182777036, 0.8660254037844387], [0.22481222749828053, -0.44660884716635574, 0.8660254037844387], [0.261865903196262, -0.42594160250344865, 0.8660254037844387], [0.29703402929101846, -0.40220739108467696, 0.8660254037844387], [0.3300633798169135, -0.3755771096643615, 0.8660254037844387], [0.36071612893248123, -0.34624250797376904, 0.8660254037844387], [0.3887715633710184, -0.3144148080387661, 0.8660254037844387], [0.41402767167311705, -0.2803231832883922, 0.8660254037844387], [0.43630259875796373, -0.2442131084054401, 0.8660254037844387], [0.45543595535985393, -0.2063445918008443, 0.8660254037844387], [0.4712899729014024, -0.16699030343883836, 0.8660254037844387], [0.483750495487855, -0.12643361149336343, 0.8660254037844387], [0.49272780187970655, -0.08496654197266468, 0.8660254037844387], [0.49815725152506185, -0.04288767600367504, 0.8660254037844387], [0.4999997500000208, -0.0004999999166634075, 0.8660254037844387]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.8660249707717728, 0.0008660252594468786, 0.5000000000000001], [0.8628336698002753, 0.07428363385692321, 0.5000000000000001], [0.8534295871573827, 0.14716636764009405, 0.5000000000000001], [0.8378804363715825, 0.21898943889093492, 0.5000000000000001], [0.8162981781629868, 0.28923568992741666, 0.5000000000000001], [0.7888382142769361, 0.35739931686612725, 0.5000000000000001], [0.7556982685231287, 0.42298951163255255, 0.5000000000000001], [0.7171169630772818, 0.485533995994942, 0.5000000000000001], [0.6733721002965847, 0.5445824221751618, 0.5000000000000001], [0.6247786624206204, 0.5997096155506433, 0.5000000000000001], [0.5716865435607952, 0.6505186360985449, 0.5000000000000001], [0.5144780303089431, 0.6966436365383883, 0.5000000000000001], [0.45356504910583595, 0.7377524965932819, 0.5000000000000001], [0.3893862001897519, 0.7735492144018934, 0.5000000000000001], [0.3224035994819777, 0.803776037861956, 0.5000000000000001], [0.25309955114905797, 0.828215320558697, 0.5000000000000001], [0.18197307480080457, 0.8466910889146884, 0.5000000000000001], [0.10953631232976743, 0.8590703092769506, 0.5000000000000001], [0.03631084026450209, 0.8652638458177284, 0.5000000000000001], [-0.03717608581068902, 0.8652271023516289, 0.5000000000000001], [-0.11039532772771286, 0.8589603434477582, 0.5000000000000001], [-0.18281967476207275, 0.8465086925247075, 0.5000000000000001], [-0.25392763978181426, 0.827961806942106, 0.5000000000000001], [-0.32320721418408926, 0.803453232428223, 0.5000000000000001], [-0.3901595545821437, 0.773159441492027, 0.5000000000000001], [-0.45430257469696367, 0.7372985627435534, 0.5000000000000001], [-0.5151744165903795, 0.6961288102720372, 0.5000000000000001], [-0.5723367762452253, 0.6499466243909748, 0.5000000000000001], [-0.6253780595469137, 0.5990845371375702, 0.5000000000000001], [-0.6739163459419737, 0.5439087778959061, 0.5000000000000001], [-0.7176021384339025, 0.48481663638440675, 0.5000000000000001], [-0.75612088011516, 0.4222336019952411, 0.5000000000000001], [-0.7891952191151614, 0.35661030008367983, 0.5000000000000001], [-0.8165870056556531, 0.28841924726747037, 0.5000000000000001], [-0.8380990068337919, 0.21815144909949952, 0.5000000000000001], [-0.853576326785737, 0.14631286461199688, 0.5000000000000001], [-0.8629075220049527, 0.07342076318911418, 0.5000000000000001], [-0.8660254037844386, -6.631275506809348e-16, 0.5000000000000001], [-0.8629075220049527, -0.07342076318911551, 0.5000000000000001], [-0.8535763267857369, -0.1463128646119982, 0.5000000000000001], [-0.8380990068337916, -0.2181514490995008, 0.5000000000000001], [-0.8165870056556528, -0.2884192472674716, 0.5000000000000001], [-0.7891952191151609, -0.35661030008368105, 0.5000000000000001], [-0.7561208801151594, -0.42223360199524224, 0.5000000000000001], [-0.7176021384339019, -0.4848166363844078, 0.5000000000000001], [-0.6739163459419728, -0.5439087778959071, 0.5000000000000001], [-0.625378059546913, -0.599084537137571, 0.5000000000000001], [-0.5723367762452243, -0.6499466243909757, 0.5000000000000001], [-0.5151744165903784, -0.696128810272038, 0.5000000000000001], [-0.4543025746969626, -0.7372985627435541, 0.5000000000000001], [-0.3901595545821425, -0.7731594414920276, 0.5000000000000001], [-0.3232072141840879, -0.8034532324282235, 0.5000000000000001], [-0.25392763978181265, -0.8279618069421064, 0.5000000000000001], [-0.1828196747620709, -0.846508692524708, 0.5000000000000001], [-0.11039532772771077, -0.8589603434477585, 0.5000000000000001], [-0.03717608581068674, -0.865227102351629, 0.5000000000000001], [0.03631084026450457, -0.8652638458177283, 0.5000000000000001], [0.10953631232977007, -0.8590703092769503, 0.5000000000000001], [0.18197307480080735, -0.8466910889146877, 0.5000000000000001], [0.2530995511490609, -0.8282153205586962, 0.5000000000000001], [0.3224035994819807, -0.8037760378619547, 0.5000000000000001], [0.389386200189755, -0.7735492144018918, 0.5000000000000001], [0.45356504910583917, -0.73775249659328, 0.5000000000000001], [0.5144780303089461, -0.696643636538386, 0.5000000000000001], [0.5716865435607982, -0.6505186360985421, 0.5000000000000001], [0.6247786624206234, -0.5997096155506402, 0.5000000000000001], [0.6733721002965875, -0.5445824221751584, 0.5000000000000001], [0.7171169630772845, -0.48553399599493813, 0.5000000000000001], [0.7556982685231309, -0.42298951163254833, 0.5000000000000001], [0.7888382142769382, -0.35739931686612275, 0.5000000000000001], [0.8162981781629883, -0.2892356899274119, 0.5000000000000001], [0.8378804363715838, -0.21898943889092987, 0.5000000000000001], [0.8534295871573836, -0.14716636764008878, 0.5000000000000001], [0.8628336698002758, -0.07428363385691772, 0.5000000000000001], [0.8660249707717728, -0.0008660252594412264, 0.5000000000000001]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.9999995000000417, 0.0009999998333333417, 6.123233995736766e-17], [0.9963145030501233, 0.08577535200735643, 6.123233995736766e-17], [0.9854556037594122, 0.1699330839453355, 6.123233995736766e-17], [0.9675009909757085, 0.25286722298673275, 6.123233995736766e-17], [0.942579945802803, 0.3339806068776823, 6.123233995736766e-17], [0.9108719107197056, 0.4126891836016939, 6.123233995736766e-17], [0.8726051975159249, 0.4884262168108851, 6.123233995736766e-17], [0.8280553433462312, 0.5606463665767889, 6.123233995736766e-17], [0.7775431267420337, 0.6288296160775363, 6.123233995736766e-17], [0.7214322578649591, 0.6924850159475417, 6.123233995736766e-17], [0.6601267596338236, 0.7511542193287262, 6.123233995736766e-17], [0.5940680585820335, 0.8044147821693567, 6.123233995736766e-17], [0.5237318063925205, 0.8518832050068996, 6.123233995736766e-17], [0.44962445499655757, 0.8932176943327134, 6.123233995736766e-17], [0.3722796098972483, 0.9281206236555423, 6.123233995736766e-17], [0.2922541879753642, 0.9563406765430719, 6.123233995736766e-17], [0.21012440744301686, 0.9776746562107054, 6.123233995736766e-17], [0.1264816388192603, 0.991968948627725, 6.123233995736766e-17], [0.04192814680242357, 0.9991206286058327, 6.123233995736766e-17], [-0.042927246300435866, 0.9990782009057457, 6.123233995736766e-17], [-0.12747354436174396, 0.9918419710255533, 6.123233995736766e-17], [-0.21110197687408508, 0.9774640430009961, 6.123233995736766e-17], [-0.2932103823654336, 0.9560479442335077, 6.123233995736766e-17], [-0.37320754422642594, 0.927747880047419, 6.123233995736766e-17], [-0.45051744772981034, 0.8927676233438451, 6.123233995736766e-17], [-0.5245834275896641, 0.8513590473462296, 6.123233995736766e-17], [-0.5948721761961281, 0.8038203120024292, 6.123233995736766e-17], [-0.6608775836646069, 0.7504937171020358, 6.123233995736766e-17], [-0.722124382049393, 0.691763237567437, 6.123233995736766e-17], [-0.778171567481775, 0.6280517586656035, 6.123233995736766e-17], [-0.8286155755917295, 0.5598180310482923, 6.123233995736766e-17], [-0.8730931873487688, 0.48755336754571554, 6.123233995736766e-17], [-0.9112841443986084, 0.4117781054982116, 6.123233995736766e-17], [-0.9429134550640836, 0.3330378600986865, 6.123233995736766e-17], [-0.9677533744060955, 0.251899595723406, 6.123233995736766e-17], [-0.9856250440872746, 0.16894754353928335, 6.123233995736766e-17], [-0.9963997802306248, 0.08477899478268569, 6.123233995736766e-17], [-1.0, -7.657137397853899e-16, 6.123233995736766e-17], [-0.9963997802306247, -0.08477899478268722, 6.123233995736766e-17], [-0.9856250440872744, -0.16894754353928487, 6.123233995736766e-17], [-0.9677533744060952, -0.2518995957234075, 6.123233995736766e-17], [-0.9429134550640832, -0.33303786009868797, 6.123233995736766e-17], [-0.9112841443986077, -0.411778105498213, 6.123233995736766e-17], [-0.8730931873487682, -0.4875533675457169, 6.123233995736766e-17], [-0.8286155755917287, -0.5598180310482935, 6.123233995736766e-17], [-0.778171567481774, -0.6280517586656047, 6.123233995736766e-17], [-0.722124382049392, -0.6917632375674381, 6.123233995736766e-17], [-0.6608775836646057, -0.7504937171020368, 6.123233995736766e-17], [-0.5948721761961269, -0.8038203120024301, 6.123233995736766e-17], [-0.5245834275896629, -0.8513590473462304, 6.123233995736766e-17], [-0.45051744772980895, -0.8927676233438457, 6.123233995736766e-17], [-0.3732075442264243, -0.9277478800474197, 6.123233995736766e-17], [-0.29321038236543173, -0.9560479442335083, 6.123233995736766e-17], [-0.21110197687408294, -0.9774640430009967, 6.123233995736766e-17], [-0.12747354436174155, -0.9918419710255536, 6.123233995736766e-17], [-0.04292724630043323, -0.9990782009057458, 6.123233995736766e-17], [0.04192814680242643, -0.9991206286058326, 6.123233995736766e-17], [0.12648163881926336, -0.9919689486277247, 6.123233995736766e-17], [0.21012440744302008, -0.9776746562107047, 6.123233995736766e-17], [0.29225418797536756, -0.9563406765430709, 6.123233995736766e-17], [0.37227960989725173, -0.9281206236555408, 6.123233995736766e-17], [0.4496244549965611, -0.8932176943327116, 6.123233995736766e-17], [0.5237318063925241, -0.8518832050068974, 6.123233995736766e-17], [0.594068058582037, -0.804414782169354, 6.123233995736766e-17], [0.6601267596338272, -0.7511542193287231, 6.123233995736766e-17], [0.7214322578649626, -0.6924850159475382, 6.123233995736766e-17], [0.777543126742037, -0.6288296160775323, 6.123233995736766e-17], [0.8280553433462342, -0.5606463665767845, 6.123233995736766e-17], [0.8726051975159276, -0.4884262168108803, 6.123233995736766e-17], [0.910871910719708, -0.41268918360168866, 6.123233995736766e-17], [0.9425799458028049, -0.3339806068776768, 6.123233995736766e-17], [0.9675009909757101, -0.2528672229867269, 6.123233995736766e-17], [0.9854556037594132, -0.16993308394532938, 6.123233995736766e-17], [0.9963145030501238, -0.08577535200735009, 6.123233995736766e-17], [0.9999995000000417, -0.0009999998333268152, 6.123233995736766e-17]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333], [0.0, 0.0, 1.3333333333333333]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.666666333333361, 0.000666666555555561, 1.1547005383792515], [0.664209668700082, 0.05718356800490428, 1.1547005383792515], [0.6569704025062747, 0.11328872263022365, 1.1547005383792515], [0.6450006606504722, 0.1685781486578218, 1.1547005383792515], [0.6283866305352018, 0.2226537379184548, 1.1547005383792515], [0.6072479404798036, 0.27512612240112916, 1.1547005383792515], [0.5817367983439498, 0.3256174778739233, 1.1547005383792515], [0.552036895564154, 0.3737642443845259, 1.1547005383792515], [0.518362084494689, 0.41921974405169077, 1.1547005383792515], [0.48095483857663934, 0.4616566772983611, 1.1547005383792515], [0.440084506422549, 0.500769479552484, 1.1547005383792515], [0.39604537238802223, 0.5362765214462376, 1.1547005383792515], [0.3491545375950136, 0.5679221366712662, 1.1547005383792515], [0.29974963666437165, 0.5954784628884754, 1.1547005383792515], [0.2481864065981655, 0.618747082437028, 1.1547005383792515], [0.19483612531690941, 0.6375604510287144, 1.1547005383792515], [0.14008293829534454, 0.6517831041404701, 1.1547005383792515], [0.08432109254617352, 0.6613126324184831, 1.1547005383792515], [0.027952097868282375, 0.666080419070555, 1.1547005383792515], [-0.028618164200290574, 0.6660521339371637, 1.1547005383792515], [-0.08498236290782929, 0.661227980683702, 1.1547005383792515], [-0.14073465124939002, 0.6516426953339972, 1.1547005383792515], [-0.19547358824362238, 0.6373652961556716, 1.1547005383792515], [-0.24880502948428393, 0.6184985866982792, 1.1547005383792515], [-0.3003449651532068, 0.5951784155625632, 1.1547005383792515], [-0.34972228505977604, 0.5675726982308196, 1.1547005383792515], [-0.39658145079741863, 0.5358802080016193, 1.1547005383792515], [-0.44058505577640455, 0.5003291447346904, 1.1547005383792515], [-0.48141625469959526, 0.4611754917116246, 1.1547005383792515], [-0.5187810449878498, 0.41870117244373556, 1.1547005383792515], [-0.5524103837278195, 0.37321202069886145, 1.1547005383792515], [-0.5820621248991791, 0.3250355783638103, 1.1547005383792515], [-0.6075227629324055, 0.27451873699880763, 1.1547005383792515], [-0.6286089700427223, 0.22202524006579097, 1.1547005383792515], [-0.6451689162707303, 0.16793306381560394, 1.1547005383792515], [-0.6570833627248496, 0.11263169569285554, 1.1547005383792515], [-0.6642665201537498, 0.056519329855123784, 1.1547005383792515], [-0.6666666666666665, -5.104758265235932e-16, 1.1547005383792515], [-0.6642665201537497, -0.056519329855124804, 1.1547005383792515], [-0.6570833627248495, -0.11263169569285657, 1.1547005383792515], [-0.64516891627073, -0.16793306381560494, 1.1547005383792515], [-0.628608970042722, -0.22202524006579194, 1.1547005383792515], [-0.607522762932405, -0.2745187369988086, 1.1547005383792515], [-0.5820621248991786, -0.3250355783638112, 1.1547005383792515], [-0.552410383727819, -0.3732120206988623, 1.1547005383792515], [-0.5187810449878492, -0.4187011724437364, 1.1547005383792515], [-0.4814162546995946, -0.4611754917116253, 1.1547005383792515], [-0.4405850557764037, -0.500329144734691, 1.1547005383792515], [-0.39658145079741786, -0.53588020800162, 1.1547005383792515], [-0.3497222850597752, -0.5675726982308201, 1.1547005383792515], [-0.3003449651532059, -0.5951784155625637, 1.1547005383792515], [-0.24880502948428285, -0.6184985866982796, 1.1547005383792515], [-0.19547358824362113, -0.6373652961556721, 1.1547005383792515], [-0.14073465124938858, -0.6516426953339977, 1.1547005383792515], [-0.08498236290782768, -0.6612279806837023, 1.1547005383792515], [-0.028618164200288815, -0.6660521339371638, 1.1547005383792515], [0.027952097868284283, -0.6660804190705549, 1.1547005383792515], [0.08432109254617555, -0.6613126324184829, 1.1547005383792515], [0.14008293829534668, -0.6517831041404697, 1.1547005383792515], [0.19483612531691166, -0.6375604510287137, 1.1547005383792515], [0.2481864065981678, -0.618747082437027, 1.1547005383792515], [0.299749636664374, -0.5954784628884743, 1.1547005383792515], [0.349154537595016, -0.5679221366712648, 1.1547005383792515], [0.3960453723880246, -0.5362765214462358, 1.1547005383792515], [0.44008450642255137, -0.5007694795524819, 1.1547005383792515], [0.4809548385766416, -0.46165667729835874, 1.1547005383792515], [0.5183620844946911, -0.4192197440516881, 1.1547005383792515], [0.552036895564156, -0.3737642443845229, 1.1547005383792515], [0.5817367983439515, -0.3256174778739201, 1.1547005383792515], [0.6072479404798051, -0.2751261224011257, 1.1547005383792515], [0.6283866305352032, -0.22265373791845114, 1.1547005383792515], [0.6450006606504732, -0.16857814865781792, 1.1547005383792515], [0.6569704025062754, -0.11328872263021957, 1.1547005383792515], [0.6642096687000824, -0.05718356800490005, 1.1547005383792515], [0.666666333333361, -0.00066666655555121, 1.1547005383792515]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.1546999610290305, 0.0011547003459291714, 0.6666666666666667], [1.1504448930670337, 0.09904484514256429, 0.6666666666666667], [1.1379061162098436, 0.19622182352012543, 0.6666666666666667], [1.1171739151621098, 0.29198591852124656, 0.6666666666666667], [1.0883975708839821, 0.38564758656988884, 0.6666666666666667], [1.0517842857025814, 0.4765324224881696, 0.6666666666666667], [1.0075976913641713, 0.56398601551007, 0.6666666666666667], [0.956155950769709, 0.6473786613265893, 0.6666666666666667], [0.8978294670621129, 0.726109896233549, 0.6666666666666667], [0.8330382165608272, 0.7996128207341909, 0.6666666666666667], [0.7622487247477268, 0.8673581814647264, 0.6666666666666667], [0.6859707070785906, 0.9288581820511843, 0.6666666666666667], [0.6047533988077812, 0.9836699954577092, 0.6666666666666667], [0.5191816002530025, 1.0313989525358576, 0.6666666666666667], [0.4298714659759703, 1.0717013838159413, 0.6666666666666667], [0.337466068198744, 1.1042870940782625, 0.6666666666666667], [0.24263076640107276, 1.1289214518862511, 0.6666666666666667], [0.1460484164396899, 1.145427079035934, 0.6666666666666667], [0.048414453686002785, 1.1536851277569713, 0.6666666666666667], [-0.049568114414252025, 1.1536361364688386, 0.6666666666666667], [-0.14719377030361713, 1.1452804579303442, 0.6666666666666667], [-0.24375956634943033, 1.1286782566996099, 0.6666666666666667], [-0.33857018637575237, 1.1039490759228079, 0.6666666666666667], [-0.4309429522454523, 1.0712709765709638, 0.6666666666666667], [-0.5202127394428582, 1.0308792553227026, 0.6666666666666667], [-0.6057367662626183, 0.9830647503247378, 0.6666666666666667], [-0.686899222120506, 0.9281717470293828, 0.6666666666666667], [-0.7631157016603004, 0.8665954991879663, 0.6666666666666667], [-0.8338374127292183, 0.7987793828500935, 0.6666666666666667], [-0.8985551279226315, 0.725211703861208, 0.6666666666666667], [-0.9568028512452033, 0.6464221818458755, 0.6666666666666667], [-1.00816117348688, 0.5629781359936548, 0.6666666666666667], [-1.0522602921535487, 0.47548040011157305, 0.6666666666666667], [-1.0887826742075375, 0.3845589963566271, 0.6666666666666667], [-1.1174653424450558, 0.29086859879933263, 0.6666666666666667], [-1.1381017690476494, 0.19508381948266248, 0.6666666666666667], [-1.1505433626732704, 0.09789435091881891, 0.6666666666666667], [-1.1547005383792515, -8.841700675745797e-16, 0.6666666666666667], [-1.1505433626732702, -0.09789435091882068, 0.6666666666666667], [-1.1381017690476491, -0.19508381948266426, 0.6666666666666667], [-1.1174653424450554, -0.29086859879933435, 0.6666666666666667], [-1.0887826742075368, -0.3845589963566288, 0.6666666666666667], [-1.0522602921535478, -0.4754804001115747, 0.6666666666666667], [-1.0081611734868792, -0.5629781359936563, 0.6666666666666667], [-0.9568028512452025, -0.646422181845877, 0.6666666666666667], [-0.8985551279226304, -0.7252117038612095, 0.6666666666666667], [-0.8338374127292172, -0.7987793828500948, 0.6666666666666667], [-0.763115701660299, -0.8665954991879674, 0.6666666666666667], [-0.6868992221205046, -0.9281717470293839, 0.6666666666666667], [-0.6057367662626169, -0.9830647503247388, 0.6666666666666667], [-0.5202127394428566, -1.0308792553227033, 0.6666666666666667], [-0.43094295224545043, -1.0712709765709647, 0.6666666666666667], [-0.3385701863757502, -1.1039490759228086, 0.6666666666666667], [-0.24375956634942783, -1.1286782566996105, 0.6666666666666667], [-0.14719377030361436, -1.1452804579303446, 0.6666666666666667], [-0.04956811441424898, -1.1536361364688388, 0.6666666666666667], [0.04841445368600609, -1.153685127756971, 0.6666666666666667], [0.1460484164396934, -1.1454270790359335, 0.6666666666666667], [0.24263076640107645, -1.1289214518862503, 0.6666666666666667], [0.33746606819874786, -1.1042870940782614, 0.6666666666666667], [0.4298714659759743, -1.0717013838159395, 0.6666666666666667], [0.5191816002530065, -1.0313989525358558, 0.6666666666666667], [0.6047533988077854, -0.9836699954577066, 0.6666666666666667], [0.6859707070785949, -0.9288581820511812, 0.6666666666666667], [0.7622487247477309, -0.8673581814647228, 0.6666666666666667], [0.8330382165608312, -0.7996128207341869, 0.6666666666666667], [0.8978294670621165, -0.7261098962335445, 0.6666666666666667], [0.9561559507697126, -0.6473786613265842, 0.6666666666666667], [1.0075976913641744, -0.5639860155100644, 0.6666666666666667], [1.051784285702584, -0.47653242248816363, 0.6666666666666667], [1.0883975708839846, -0.38564758656988246, 0.6666666666666667], [1.1171739151621116, -0.2919859185212398, 0.6666666666666667], [1.1379061162098447, -0.19622182352011835, 0.6666666666666667], [1.1504448930670341, -0.09904484514255694, 0.6666666666666667], [1.1546999610290305, -0.0011547003459216351, 0.6666666666666667]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.3333326666667222, 0.0013333331111111222, 8.164311994315688e-17], [1.3284193374001643, 0.11436713600980858, 8.164311994315688e-17], [1.3139408050125496, 0.22657744526044732, 8.164311994315688e-17], [1.2900013213009447, 0.33715629731564367, 8.164311994315688e-17], [1.2567732610704039, 0.44530747583690966, 8.164311994315688e-17], [1.2144958809596074, 0.5502522448022584, 8.164311994315688e-17], [1.1634735966878997, 0.6512349557478467, 8.164311994315688e-17], [1.1040737911283083, 0.7475284887690519, 8.164311994315688e-17], [1.0367241689893782, 0.8384394881033816, 8.164311994315688e-17], [0.9619096771532788, 0.9233133545967223, 8.164311994315688e-17], [0.8801690128450981, 1.0015389591049682, 8.164311994315688e-17], [0.7920907447760446, 1.0725530428924754, 8.164311994315688e-17], [0.6983090751900273, 1.1358442733425327, 8.164311994315688e-17], [0.5994992733287434, 1.190956925776951, 8.164311994315688e-17], [0.49637281319633103, 1.2374941648740563, 8.164311994315688e-17], [0.3896722506338189, 1.275120902057429, 8.164311994315688e-17], [0.28016587659068914, 1.3035662082809405, 8.164311994315688e-17], [0.16864218509234707, 1.3226252648369665, 8.164311994315688e-17], [0.05590419573656476, 1.3321608381411103, 8.164311994315688e-17], [-0.057236328400581155, 1.3321042678743276, 8.164311994315688e-17], [-0.1699647258156586, 1.3224559613674043, 8.164311994315688e-17], [-0.2814693024987801, 1.3032853906679946, 8.164311994315688e-17], [-0.3909471764872448, 1.2747305923113434, 8.164311994315688e-17], [-0.4976100589685679, 1.2369971733965586, 8.164311994315688e-17], [-0.6006899303064137, 1.1903568311251267, 8.164311994315688e-17], [-0.6994445701195522, 1.1351453964616394, 8.164311994315688e-17], [-0.7931629015948374, 1.0717604160032388, 8.164311994315688e-17], [-0.8811701115528092, 1.000658289469381, 8.164311994315688e-17], [-0.9628325093991906, 0.9223509834232493, 8.164311994315688e-17], [-1.0375620899756999, 0.8374023448874712, 8.164311994315688e-17], [-1.1048207674556392, 0.746424041397723, 8.164311994315688e-17], [-1.1641242497983584, 0.6500711567276207, 8.164311994315688e-17], [-1.2150455258648112, 0.5490374739976154, 8.164311994315688e-17], [-1.2572179400854449, 0.444050480131582, 8.164311994315688e-17], [-1.2903378325414607, 0.33586612763120793, 8.164311994315688e-17], [-1.3141667254496994, 0.2252633913857111, 8.164311994315688e-17], [-1.3285330403074997, 0.11303865971024758, 8.164311994315688e-17], [-1.3333333333333333, -1.0209516530471865e-15, 8.164311994315688e-17], [-1.3285330403074995, -0.11303865971024962, 8.164311994315688e-17], [-1.3141667254496991, -0.22526339138571316, 8.164311994315688e-17], [-1.2903378325414603, -0.33586612763120993, 8.164311994315688e-17], [-1.2572179400854442, -0.44405048013158394, 8.164311994315688e-17], [-1.2150455258648103, -0.5490374739976173, 8.164311994315688e-17], [-1.1641242497983575, -0.6500711567276225, 8.164311994315688e-17], [-1.1048207674556383, -0.7464240413977247, 8.164311994315688e-17], [-1.0375620899756985, -0.8374023448874729, 8.164311994315688e-17], [-0.9628325093991893, -0.9223509834232507, 8.164311994315688e-17], [-0.8811701115528076, -1.0006582894693823, 8.164311994315688e-17], [-0.7931629015948358, -1.0717604160032401, 8.164311994315688e-17], [-0.6994445701195505, -1.1351453964616405, 8.164311994315688e-17], [-0.6006899303064119, -1.1903568311251276, 8.164311994315688e-17], [-0.49761005896856575, -1.2369971733965595, 8.164311994315688e-17], [-0.3909471764872423, -1.2747305923113443, 8.164311994315688e-17], [-0.2814693024987772, -1.3032853906679955, 8.164311994315688e-17], [-0.1699647258156554, -1.3224559613674047, 8.164311994315688e-17], [-0.05723632840057764, -1.3321042678743278, 8.164311994315688e-17], [0.055904195736568574, -1.33216083814111, 8.164311994315688e-17], [0.16864218509235113, -1.322625264836966, 8.164311994315688e-17], [0.2801658765906934, -1.3035662082809396, 8.164311994315688e-17], [0.3896722506338234, -1.2751209020574277, 8.164311994315688e-17], [0.49637281319633564, -1.2374941648740543, 8.164311994315688e-17], [0.5994992733287481, -1.1909569257769488, 8.164311994315688e-17], [0.6983090751900322, -1.1358442733425298, 8.164311994315688e-17], [0.7920907447760493, -1.0725530428924719, 8.164311994315688e-17], [0.8801690128451028, -1.001538959104964, 8.164311994315688e-17], [0.9619096771532833, -0.9233133545967176, 8.164311994315688e-17], [1.0367241689893825, -0.8384394881033763, 8.164311994315688e-17], [1.1040737911283123, -0.7475284887690459, 8.164311994315688e-17], [1.1634735966879033, -0.6512349557478403, 8.164311994315688e-17], [1.2144958809596105, -0.5502522448022515, 8.164311994315688e-17], [1.2567732610704065, -0.44530747583690233, 8.164311994315688e-17], [1.2900013213009467, -0.3371562973156359, 8.164311994315688e-17], [1.313940805012551, -0.22657744526043916, 8.164311994315688e-17], [1.328419337400165, -0.11436713600980011, 8.164311994315688e-17], [1.3333326666667222, -0.0013333331111024201, 8.164311994315688e-17]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665], [0.0, 0.0, 1.6666666666666665]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.8333329166667012, 0.0008333331944444512, 1.4433756729740643], [0.8302620858751025, 0.07147946000613034, 1.4433756729740643], [0.8212130031328433, 0.14161090328777953, 1.4433756729740643], [0.8062508258130903, 0.21072268582227724, 1.4433756729740643], [0.7854832881690024, 0.27831717239806847, 1.4433756729740643], [0.7590599255997545, 0.34390765300141146, 1.4433756729740643], [0.7271709979299372, 0.40702184734240415, 1.4433756729740643], [0.6900461194551925, 0.4672053054806573, 1.4433756729740643], [0.6479526056183613, 0.5240246800646134, 1.4433756729740643], [0.6011935482207991, 0.5770708466229513, 1.4433756729740643], [0.5501056330281862, 0.625961849440605, 1.4433756729740643], [0.49505671548502783, 0.670345651807797, 1.4433756729740643], [0.436443171993767, 0.7099026708390829, 1.4433756729740643], [0.3746870458304645, 0.7443480786105943, 1.4433756729740643], [0.31023300824770683, 0.7734338530462851, 1.4433756729740643], [0.24354515664613677, 0.796950563785893, 1.4433756729740643], [0.17510367286918066, 0.8147288801755876, 1.4433756729740643], [0.1054013656827169, 0.826640790523104, 1.4433756729740643], [0.034940122335352965, 0.8326005238381937, 1.4433756729740643], [-0.03577270525036321, 0.8325651674214546, 1.4433756729740643], [-0.10622795363478661, 0.8265349758546275, 1.4433756729740643], [-0.17591831406173752, 0.8145533691674965, 1.4433756729740643], [-0.24434198530452797, 0.7967066201945896, 1.4433756729740643], [-0.31100628685535486, 0.773123233372849, 1.4433756729740643], [-0.3754312064415085, 0.743973019453204, 1.4433756729740643], [-0.43715285632472, 0.7094658727885245, 1.4433756729740643], [-0.49572681349677333, 0.6698502600020242, 1.4433756729740643], [-0.5507313197205056, 0.625411430918363, 1.4433756729740643], [-0.601770318374494, 0.5764693646395307, 1.4433756729740643], [-0.6484763062348123, 0.5233764655546694, 1.4433756729740643], [-0.6905129796597744, 0.46651502587357685, 1.4433756729740643], [-0.7275776561239738, 0.40629447295476284, 1.4433756729740643], [-0.7594034536655068, 0.3431484212485096, 1.4433756729740643], [-0.7857612125534028, 0.2775315500822387, 1.4433756729740643], [-0.8064611453384127, 0.20991632976950494, 1.4433756729740643], [-0.821354203406062, 0.14078961961606942, 1.4433756729740643], [-0.8303331501921871, 0.07064916231890472, 1.4433756729740643], [-0.8333333333333331, -6.380947831544914e-16, 1.4433756729740643], [-0.8303331501921871, -0.070649162318906, 1.4433756729740643], [-0.8213542034060618, -0.1407896196160707, 1.4433756729740643], [-0.8064611453384125, -0.2099163297695062, 1.4433756729740643], [-0.7857612125534025, -0.2775315500822399, 1.4433756729740643], [-0.7594034536655062, -0.34314842124851075, 1.4433756729740643], [-0.7275776561239733, -0.40629447295476395, 1.4433756729740643], [-0.6905129796597738, -0.46651502587357785, 1.4433756729740643], [-0.6484763062348115, -0.5233764655546704, 1.4433756729740643], [-0.6017703183744931, -0.5764693646395316, 1.4433756729740643], [-0.5507313197205046, -0.6254114309183638, 1.4433756729740643], [-0.4957268134967723, -0.6698502600020249, 1.4433756729740643], [-0.437152856324719, -0.7094658727885251, 1.4433756729740643], [-0.37543120644150735, -0.7439730194532046, 1.4433756729740643], [-0.31100628685535353, -0.7731232333728496, 1.4433756729740643], [-0.2443419853045264, -0.79670662019459, 1.4433756729740643], [-0.17591831406173575, -0.814553369167497, 1.4433756729740643], [-0.1062279536347846, -0.8265349758546279, 1.4433756729740643], [-0.03577270525036101, -0.8325651674214547, 1.4433756729740643], [0.03494012233535535, -0.8326005238381937, 1.4433756729740643], [0.10540136568271945, -0.8266407905231037, 1.4433756729740643], [0.17510367286918335, -0.8147288801755871, 1.4433756729740643], [0.2435451566461396, -0.7969505637858922, 1.4433756729740643], [0.3102330082477097, -0.7734338530462839, 1.4433756729740643], [0.3746870458304675, -0.7443480786105928, 1.4433756729740643], [0.43644317199377003, -0.709902670839081, 1.4433756729740643], [0.4950567154850308, -0.6703456518077948, 1.4433756729740643], [0.5501056330281892, -0.6259618494406024, 1.4433756729740643], [0.601193548220802, -0.5770708466229484, 1.4433756729740643], [0.647952605618364, -0.5240246800646101, 1.4433756729740643], [0.690046119455195, -0.46720530548065364, 1.4433756729740643], [0.7271709979299394, -0.40702184734240016, 1.4433756729740643], [0.7590599255997564, -0.34390765300140713, 1.4433756729740643], [0.7854832881690039, -0.2783171723980639, 1.4433756729740643], [0.8062508258130916, -0.21072268582227238, 1.4433756729740643], [0.8212130031328442, -0.14161090328777445, 1.4433756729740643], [0.830262085875103, -0.07147946000612505, 1.4433756729740643], [0.8333329166667012, -0.0008333331944390125, 1.4433756729740643]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.443374951286288, 0.001443375432411464, 0.8333333333333335], [1.438056116333792, 0.12380605642820534, 0.8333333333333335], [1.4223826452623043, 0.24527727940015676, 0.8333333333333335], [1.3964673939526373, 0.36498239815155814, 0.8333333333333335], [1.3604969636049777, 0.48205948321236103, 0.8333333333333335], [1.314730357128227, 0.595665528110212, 0.8333333333333335], [1.2594971142052143, 0.7049825193875875, 0.8333333333333335], [1.195194938462136, 0.8092233266582366, 0.8333333333333335], [1.122286833827641, 0.9076373702919364, 0.8333333333333335], [1.041297770701034, 0.9995160259177386, 0.8333333333333335], [0.9528109059346584, 1.084197726830908, 0.8333333333333335], [0.8574633838482384, 1.1610727275639805, 0.8333333333333335], [0.7559417485097265, 1.2295874943221365, 0.8333333333333335], [0.648977000316253, 1.2892486906698222, 0.8333333333333335], [0.5373393324699629, 1.3396267297699265, 0.8333333333333335], [0.4218325852484299, 1.3803588675978282, 0.8333333333333335], [0.3032884580013409, 1.4111518148578137, 0.8333333333333335], [0.18256052054961236, 1.4317838487949175, 0.8333333333333335], [0.06051806710750348, 1.4421064096962137, 0.8333333333333335], [-0.06196014301781502, 1.442045170586048, 0.8333333333333335], [-0.18399221287952142, 1.4316005724129302, 0.8333333333333335], [-0.3046994579367879, 1.4108478208745123, 0.8333333333333335], [-0.4232127329696904, 1.3799363449035098, 0.8333333333333335], [-0.5386786903068154, 1.339088720713705, 0.8333333333333335], [-0.6502659243035728, 1.2885990691533782, 0.8333333333333335], [-0.7571709578282727, 1.2288309379059223, 0.8333333333333335], [-0.8586240276506325, 1.1602146837867287, 0.8333333333333335], [-0.9538946270753754, 1.083244373984958, 0.8333333333333335], [-1.042296765911523, 0.9984742285626169, 0.8333333333333335], [-1.1231939099032895, 0.90651462982651, 0.8333333333333335], [-1.196003564056504, 0.8080277273073445, 0.8333333333333335], [-1.2602014668586, 0.7037226699920685, 0.8333333333333335], [-1.3153253651919357, 0.5943505001394663, 0.8333333333333335], [-1.3609783427594218, 0.4806987454457839, 0.8333333333333335], [-1.3968316780563197, 0.3635857484991658, 0.8333333333333335], [-1.4226272113095617, 0.2438547743533281, 0.8333333333333335], [-1.4381792033415877, 0.12236793864852363, 0.8333333333333335], [-1.443375672974064, -1.1052125844682245e-15, 0.8333333333333335], [-1.4381792033415877, -0.12236793864852585, 0.8333333333333335], [-1.4226272113095613, -0.24385477435333033, 0.8333333333333335], [-1.3968316780563192, -0.36358574849916797, 0.8333333333333335], [-1.360978342759421, -0.480698745445786, 0.8333333333333335], [-1.3153253651919345, -0.5943505001394684, 0.8333333333333335], [-1.260201466858599, -0.7037226699920703, 0.8333333333333335], [-1.196003564056503, -0.8080277273073463, 0.8333333333333335], [-1.123193909903288, -0.9065146298265118, 0.8333333333333335], [-1.0422967659115214, -0.9984742285626184, 0.8333333333333335], [-0.9538946270753736, -1.0832443739849593, 0.8333333333333335], [-0.8586240276506307, -1.1602146837867298, 0.8333333333333335], [-0.757170957828271, -1.2288309379059235, 0.8333333333333335], [-0.6502659243035708, -1.2885990691533793, 0.8333333333333335], [-0.538678690306813, -1.3390887207137059, 0.8333333333333335], [-0.4232127329696877, -1.3799363449035107, 0.8333333333333335], [-0.3046994579367848, -1.410847820874513, 0.8333333333333335], [-0.18399221287951795, -1.4316005724129308, 0.8333333333333335], [-0.06196014301781121, -1.4420451705860482, 0.8333333333333335], [0.060518067107507616, -1.4421064096962137, 0.8333333333333335], [0.18256052054961677, -1.431783848794917, 0.8333333333333335], [0.3032884580013456, -1.4111518148578128, 0.8333333333333335], [0.42183258524843487, -1.3803588675978269, 0.8333333333333335], [0.5373393324699679, -1.3396267297699245, 0.8333333333333335], [0.6489770003162583, -1.2892486906698195, 0.8333333333333335], [0.7559417485097318, -1.2295874943221332, 0.8333333333333335], [0.8574633838482435, -1.1610727275639765, 0.8333333333333335], [0.9528109059346637, -1.0841977268309035, 0.8333333333333335], [1.041297770701039, -0.9995160259177336, 0.8333333333333335], [1.1222868338276457, -0.9076373702919306, 0.8333333333333335], [1.1951949384621405, -0.8092233266582302, 0.8333333333333335], [1.259497114205218, -0.7049825193875805, 0.8333333333333335], [1.3147303571282303, -0.5956655281102045, 0.8333333333333335], [1.3604969636049806, -0.48205948321235315, 0.8333333333333335], [1.3964673939526395, -0.3649823981515497, 0.8333333333333335], [1.4223826452623058, -0.24527727940014796, 0.8333333333333335], [1.4380561163337928, -0.12380605642819618, 0.8333333333333335], [1.443374951286288, -0.001443375432402044, 0.8333333333333335]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.6666658333334026, 0.0016666663888889027, 1.0205389992894609e-16], [1.6605241717502053, 0.1429589200122607, 1.0205389992894609e-16], [1.6424260062656868, 0.2832218065755591, 1.0205389992894609e-16], [1.6125016516261808, 0.42144537164455453, 1.0205389992894609e-16], [1.570966576338005, 0.556634344796137, 1.0205389992894609e-16], [1.5181198511995093, 0.687815306002823, 1.0205389992894609e-16], [1.4543419958598747, 0.8140436946848084, 1.0205389992894609e-16], [1.3800922389103851, 0.9344106109613147, 1.0205389992894609e-16], [1.2959052112367229, 1.0480493601292271, 1.0205389992894609e-16], [1.2023870964415984, 1.1541416932459028, 1.0205389992894609e-16], [1.1002112660563725, 1.2519236988812101, 1.0205389992894609e-16], [0.9901134309700558, 1.3406913036155943, 1.0205389992894609e-16], [0.8728863439875341, 1.419805341678166, 1.0205389992894609e-16], [0.7493740916609292, 1.4886961572211888, 1.0205389992894609e-16], [0.6204660164954138, 1.5468677060925704, 1.0205389992894609e-16], [0.4870903132922736, 1.5939011275717863, 1.0205389992894609e-16], [0.3502073457383614, 1.6294577603511755, 1.0205389992894609e-16], [0.21080273136543382, 1.6532815810462083, 1.0205389992894609e-16], [0.06988024467070594, 1.6652010476763877, 1.0205389992894609e-16], [-0.07154541050072644, 1.6651303348429094, 1.0205389992894609e-16], [-0.21245590726957325, 1.6530699517092553, 1.0205389992894609e-16], [-0.3518366281234751, 1.6291067383349933, 1.0205389992894609e-16], [-0.488683970609056, 1.5934132403891794, 1.0205389992894609e-16], [-0.6220125737107098, 1.5462464667456983, 1.0205389992894609e-16], [-0.7508624128830171, 1.4879460389064083, 1.0205389992894609e-16], [-0.8743057126494401, 1.4189317455770492, 1.0205389992894609e-16], [-0.9914536269935468, 1.3397005200040486, 1.0205389992894609e-16], [-1.1014626394410114, 1.2508228618367263, 1.0205389992894609e-16], [-1.2035406367489883, 1.1529387292790616, 1.0205389992894609e-16], [-1.296952612469625, 1.046752931109339, 1.0205389992894609e-16], [-1.381025959319549, 0.9330300517471538, 1.0205389992894609e-16], [-1.455155312247948, 0.8125889459095258, 1.0205389992894609e-16], [-1.5188069073310138, 0.6862968424970193, 1.0205389992894609e-16], [-1.5715224251068058, 0.5550631001644775, 1.0205389992894609e-16], [-1.6129222906768257, 0.41983265953900994, 1.0205389992894609e-16], [-1.6427084068121243, 0.2815792392321389, 1.0205389992894609e-16], [-1.6606663003843745, 0.14129832463780947, 1.0205389992894609e-16], [-1.6666666666666665, -1.276189566308983e-15, 1.0205389992894609e-16], [-1.6606663003843745, -0.14129832463781203, 1.0205389992894609e-16], [-1.6427084068121238, -0.28157923923214145, 1.0205389992894609e-16], [-1.6129222906768252, -0.41983265953901244, 1.0205389992894609e-16], [-1.5715224251068052, -0.5550631001644799, 1.0205389992894609e-16], [-1.5188069073310126, -0.6862968424970216, 1.0205389992894609e-16], [-1.4551553122479468, -0.812588945909528, 1.0205389992894609e-16], [-1.3810259593195477, -0.9330300517471558, 1.0205389992894609e-16], [-1.2969526124696231, -1.046752931109341, 1.0205389992894609e-16], [-1.2035406367489865, -1.1529387292790634, 1.0205389992894609e-16], [-1.1014626394410094, -1.2508228618367279, 1.0205389992894609e-16], [-0.9914536269935447, -1.33970052000405, 1.0205389992894609e-16], [-0.8743057126494381, -1.4189317455770505, 1.0205389992894609e-16], [-0.7508624128830148, -1.4879460389064094, 1.0205389992894609e-16], [-0.6220125737107072, -1.5462464667456994, 1.0205389992894609e-16], [-0.48868397060905283, -1.5934132403891803, 1.0205389992894609e-16], [-0.35183662812347155, -1.6291067383349942, 1.0205389992894609e-16], [-0.21245590726956923, -1.653069951709256, 1.0205389992894609e-16], [-0.07154541050072204, -1.6651303348429096, 1.0205389992894609e-16], [0.06988024467071072, -1.6652010476763877, 1.0205389992894609e-16], [0.21080273136543892, -1.6532815810462076, 1.0205389992894609e-16], [0.35020734573836676, -1.6294577603511744, 1.0205389992894609e-16], [0.48709031329227925, -1.5939011275717847, 1.0205389992894609e-16], [0.6204660164954195, -1.546867706092568, 1.0205389992894609e-16], [0.7493740916609352, -1.4886961572211859, 1.0205389992894609e-16], [0.8728863439875402, -1.4198053416781622, 1.0205389992894609e-16], [0.9901134309700617, -1.3406913036155899, 1.0205389992894609e-16], [1.1002112660563785, -1.251923698881205, 1.0205389992894609e-16], [1.2023870964416041, -1.154141693245897, 1.0205389992894609e-16], [1.2959052112367282, -1.0480493601292205, 1.0205389992894609e-16], [1.3800922389103902, -0.9344106109613074, 1.0205389992894609e-16], [1.454341995859879, -0.8140436946848004, 1.0205389992894609e-16], [1.518119851199513, -0.6878153060028144, 1.0205389992894609e-16], [1.570966576338008, -0.5566343447961279, 1.0205389992894609e-16], [1.6125016516261834, -0.4214453716445448, 1.0205389992894609e-16], [1.6424260062656886, -0.28322180657554896, 1.0205389992894609e-16], [1.6605241717502062, -0.14295892001225013, 1.0205389992894609e-16], [1.6666658333334026, -0.0016666663888780253, 1.0205389992894609e-16]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998], [0.0, 0.0, 1.9999999999999998]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.9999995000000415, 0.0009999998333333412, 1.7320508075688772], [0.996314503050123, 0.0857753520073564, 1.7320508075688772], [0.985455603759412, 0.16993308394533543, 1.7320508075688772], [0.9675009909757083, 0.25286722298673264, 1.7320508075688772], [0.9425799458028028, 0.33398060687768216, 1.7320508075688772], [0.9108719107197054, 0.41268918360169377, 1.7320508075688772], [0.8726051975159247, 0.488426216810885, 1.7320508075688772], [0.828055343346231, 0.5606463665767887, 1.7320508075688772], [0.7775431267420335, 0.6288296160775361, 1.7320508075688772], [0.7214322578649589, 0.6924850159475415, 1.7320508075688772], [0.6601267596338234, 0.751154219328726, 1.7320508075688772], [0.5940680585820333, 0.8044147821693565, 1.7320508075688772], [0.5237318063925203, 0.8518832050068994, 1.7320508075688772], [0.44962445499655745, 0.8932176943327131, 1.7320508075688772], [0.3722796098972482, 0.928120623655542, 1.7320508075688772], [0.29225418797536407, 0.9563406765430716, 1.7320508075688772], [0.2101244074430168, 0.9776746562107052, 1.7320508075688772], [0.12648163881926025, 0.9919689486277248, 1.7320508075688772], [0.04192814680242356, 0.9991206286058325, 1.7320508075688772], [-0.04292724630043585, 0.9990782009057455, 1.7320508075688772], [-0.1274735443617439, 0.991841971025553, 1.7320508075688772], [-0.21110197687408502, 0.9774640430009959, 1.7320508075688772], [-0.2932103823654335, 0.9560479442335075, 1.7320508075688772], [-0.3732075442264258, 0.9277478800474188, 1.7320508075688772], [-0.4505174477298102, 0.8927676233438449, 1.7320508075688772], [-0.5245834275896639, 0.8513590473462294, 1.7320508075688772], [-0.5948721761961279, 0.803820312002429, 1.7320508075688772], [-0.6608775836646067, 0.7504937171020356, 1.7320508075688772], [-0.7221243820493928, 0.6917632375674367, 1.7320508075688772], [-0.7781715674817747, 0.6280517586656033, 1.7320508075688772], [-0.8286155755917293, 0.5598180310482921, 1.7320508075688772], [-0.8730931873487686, 0.48755336754571543, 1.7320508075688772], [-0.9112841443986082, 0.4117781054982115, 1.7320508075688772], [-0.9429134550640834, 0.3330378600986864, 1.7320508075688772], [-0.9677533744060953, 0.25189959572340587, 1.7320508075688772], [-0.9856250440872744, 0.1689475435392833, 1.7320508075688772], [-0.9963997802306246, 0.08477899478268566, 1.7320508075688772], [-0.9999999999999998, -7.657137397853897e-16, 1.7320508075688772], [-0.9963997802306245, -0.08477899478268719, 1.7320508075688772], [-0.9856250440872741, -0.16894754353928482, 1.7320508075688772], [-0.967753374406095, -0.25189959572340737, 1.7320508075688772], [-0.942913455064083, -0.33303786009868785, 1.7320508075688772], [-0.9112841443986075, -0.41177810549821287, 1.7320508075688772], [-0.873093187348768, -0.48755336754571676, 1.7320508075688772], [-0.8286155755917285, -0.5598180310482933, 1.7320508075688772], [-0.7781715674817737, -0.6280517586656045, 1.7320508075688772], [-0.7221243820493918, -0.6917632375674378, 1.7320508075688772], [-0.6608775836646055, -0.7504937171020366, 1.7320508075688772], [-0.5948721761961266, -0.8038203120024299, 1.7320508075688772], [-0.5245834275896627, -0.8513590473462301, 1.7320508075688772], [-0.45051744772980884, -0.8927676233438455, 1.7320508075688772], [-0.3732075442264242, -0.9277478800474195, 1.7320508075688772], [-0.2932103823654316, -0.956047944233508, 1.7320508075688772], [-0.2111019768740829, -0.9774640430009964, 1.7320508075688772], [-0.1274735443617415, -0.9918419710255534, 1.7320508075688772], [-0.042927246300433215, -0.9990782009057456, 1.7320508075688772], [0.041928146802426416, -0.9991206286058324, 1.7320508075688772], [0.1264816388192633, -0.9919689486277244, 1.7320508075688772], [0.21012440744302002, -0.9776746562107045, 1.7320508075688772], [0.29225418797536745, -0.9563406765430706, 1.7320508075688772], [0.3722796098972516, -0.9281206236555406, 1.7320508075688772], [0.449624454996561, -0.8932176943327114, 1.7320508075688772], [0.5237318063925239, -0.8518832050068972, 1.7320508075688772], [0.5940680585820368, -0.8044147821693538, 1.7320508075688772], [0.6601267596338269, -0.7511542193287228, 1.7320508075688772], [0.7214322578649623, -0.692485015947538, 1.7320508075688772], [0.7775431267420367, -0.6288296160775321, 1.7320508075688772], [0.828055343346234, -0.5606463665767842, 1.7320508075688772], [0.8726051975159274, -0.48842621681088016, 1.7320508075688772], [0.9108719107197077, -0.41268918360168855, 1.7320508075688772], [0.9425799458028047, -0.33398060687767667, 1.7320508075688772], [0.9675009909757099, -0.2528672229867268, 1.7320508075688772], [0.985455603759413, -0.16993308394532933, 1.7320508075688772], [0.9963145030501236, -0.08577535200735006, 1.7320508075688772], [0.9999995000000415, -0.0009999998333268148, 1.7320508075688772]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.7320499415435453, 0.0017320505188937567, 1.0], [1.7256673396005504, 0.1485672677138464, 1.0], [1.7068591743147652, 0.2943327352801881, 1.0], [1.6757608727431648, 0.4379788777818697, 1.0], [1.6325963563259733, 0.5784713798548332, 1.0], [1.5776764285538722, 0.7147986337322544, 1.0], [1.5113965370462572, 0.845979023265105, 1.0], [1.4342339261545634, 0.9710679919898838, 1.0], [1.3467442005931691, 1.0891648443503235, 1.0], [1.2495573248412408, 1.1994192311012863, 1.0], [1.1433730871215901, 1.3010372721970895, 1.0], [1.028956060617886, 1.3932872730767765, 1.0], [0.9071300982116718, 1.4755049931865636, 1.0], [0.7787724003795037, 1.5470984288037866, 1.0], [0.6448071989639553, 1.6075520757239117, 1.0], [0.5061991022981158, 1.656430641117394, 1.0], [0.3639461496016091, 1.6933821778293765, 1.0], [0.2190726246595348, 1.718140618553901, 1.0], [0.07262168052900417, 1.7305276916354566, 1.0], [-0.07435217162137803, 1.7304542047032576, 1.0], [-0.22079065545542567, 1.7179206868955161, 1.0], [-0.36563934952414545, 1.6930173850494148, 1.0], [-0.5078552795636285, 1.6559236138842117, 1.0], [-0.6464144283681784, 1.6069064648564457, 1.0], [-0.7803191091642874, 1.546318882984054, 1.0], [-0.9086051493939272, 1.4745971254871066, 1.0], [-1.0303488331807589, 1.3922576205440742, 1.0], [-1.1446735524904503, 1.2998932487819495, 1.0], [-1.2507561190938274, 1.19816907427514, 1.0], [-1.3478326918839472, 1.087817555791812, 1.0], [-1.4352042768678048, 0.9696332727688133, 1.0], [-1.51224176023032, 0.8444672039904821, 1.0], [-1.5783904382303227, 0.7132206001673596, 1.0], [-1.633174011311306, 0.5768384945349406, 1.0], [-1.6761980136675836, 0.4363028981989989, 1.0], [-1.7071526535714738, 0.2926257292239937, 1.0], [-1.7258150440099054, 0.14684152637822837, 1.0], [-1.732050807568877, -1.3262551013618694e-15, 1.0], [-1.7258150440099052, -0.146841526378231, 1.0], [-1.7071526535714736, -0.2926257292239964, 1.0], [-1.676198013667583, -0.43630289819900153, 1.0], [-1.6331740113113054, -0.5768384945349432, 1.0], [-1.5783904382303215, -0.713220600167362, 1.0], [-1.5122417602303186, -0.8444672039904845, 1.0], [-1.4352042768678035, -0.9696332727688154, 1.0], [-1.3478326918839454, -1.087817555791814, 1.0], [-1.2507561190938257, -1.198169074275142, 1.0], [-1.1446735524904483, -1.2998932487819512, 1.0], [-1.0303488331807567, -1.3922576205440758, 1.0], [-0.9086051493939251, -1.474597125487108, 1.0], [-0.7803191091642849, -1.546318882984055, 1.0], [-0.6464144283681756, -1.6069064648564468, 1.0], [-0.5078552795636252, -1.6559236138842126, 1.0], [-0.36563934952414173, -1.6930173850494157, 1.0], [-0.22079065545542148, -1.7179206868955168, 1.0], [-0.07435217162137346, -1.7304542047032578, 1.0], [0.07262168052900912, -1.7305276916354564, 1.0], [0.2190726246595401, -1.7181406185539003, 1.0], [0.36394614960161464, -1.6933821778293752, 1.0], [0.5061991022981217, -1.6564306411173921, 1.0], [0.6448071989639613, -1.6075520757239092, 1.0], [0.7787724003795099, -1.5470984288037835, 1.0], [0.9071300982116781, -1.4755049931865598, 1.0], [1.028956060617892, -1.3932872730767718, 1.0], [1.1433730871215961, -1.301037272197084, 1.0], [1.2495573248412466, -1.1994192311012801, 1.0], [1.3467442005931747, -1.0891648443503166, 1.0], [1.4342339261545687, -0.9710679919898761, 1.0], [1.5113965370462619, -0.8459790232650966, 1.0], [1.5776764285538762, -0.7147986337322454, 1.0], [1.6325963563259764, -0.5784713798548237, 1.0], [1.6757608727431674, -0.4379788777818596, 1.0], [1.706859174314767, -0.2943327352801775, 1.0], [1.7256673396005513, -0.1485672677138354, 1.0], [1.7320499415435453, -0.0017320505188824526, 1.0]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.9999990000000831, 0.001999999666666683, 1.224646799147353e-16], [1.9926290061002463, 0.17155070401471284, 1.224646799147353e-16], [1.9709112075188242, 0.3398661678906709, 1.224646799147353e-16], [1.9350019819514168, 0.5057344459734654, 1.224646799147353e-16], [1.8851598916056058, 0.6679612137553644, 1.224646799147353e-16], [1.821743821439411, 0.8253783672033876, 1.224646799147353e-16], [1.7452103950318496, 0.9768524336217701, 1.224646799147353e-16], [1.6561106866924622, 1.1212927331535776, 1.224646799147353e-16], [1.5550862534840673, 1.2576592321550724, 1.224646799147353e-16], [1.442864515729918, 1.3849700318950833, 1.224646799147353e-16], [1.320253519267647, 1.5023084386574521, 1.224646799147353e-16], [1.1881361171640668, 1.6088295643387132, 1.224646799147353e-16], [1.0474636127850407, 1.703766410013799, 1.224646799147353e-16], [0.899248909993115, 1.7864353886654265, 1.224646799147353e-16], [0.7445592197944965, 1.8562412473110843, 1.224646799147353e-16], [0.5845083759507282, 1.9126813530861435, 1.224646799147353e-16], [0.42024881488603366, 1.9553493124214105, 1.224646799147353e-16], [0.25296327763852056, 1.9839378972554498, 1.224646799147353e-16], [0.08385629360484713, 1.9982412572116652, 1.224646799147353e-16], [-0.08585449260087172, 1.9981564018114912, 1.224646799147353e-16], [-0.25494708872348787, 1.9836839420511063, 1.224646799147353e-16], [-0.4222039537481701, 1.954928086001992, 1.224646799147353e-16], [-0.5864207647308671, 1.9120958884670152, 1.224646799147353e-16], [-0.7464150884528518, 1.8554957600948379, 1.224646799147353e-16], [-0.9010348954596206, 1.78553524668769, 1.224646799147353e-16], [-1.049166855179328, 1.702718094692459, 1.224646799147353e-16], [-1.189744352392256, 1.6076406240048582, 1.224646799147353e-16], [-1.3217551673292136, 1.5009874342040714, 1.224646799147353e-16], [-1.4442487640987858, 1.3835264751348737, 1.224646799147353e-16], [-1.5563431349635497, 1.2561035173312067, 1.224646799147353e-16], [-1.6572311511834588, 1.1196360620965844, 1.224646799147353e-16], [-1.7461863746975375, 0.975106735091431, 1.224646799147353e-16], [-1.8225682887972166, 0.8235562109964231, 1.224646799147353e-16], [-1.885826910128167, 0.6660757201973729, 1.224646799147353e-16], [-1.9355067488121909, 0.5037991914468118, 1.224646799147353e-16], [-1.971250088174549, 0.33789508707856664, 1.224646799147353e-16], [-1.9927995604612494, 0.16955798956537135, 1.224646799147353e-16], [-1.9999999999999998, -1.5314274795707796e-15, 1.224646799147353e-16], [-1.9927995604612492, -0.1695579895653744, 1.224646799147353e-16], [-1.9712500881745485, -0.3378950870785697, 1.224646799147353e-16], [-1.9355067488121902, -0.5037991914468148, 1.224646799147353e-16], [-1.8858269101281662, -0.6660757201973758, 1.224646799147353e-16], [-1.8225682887972152, -0.8235562109964258, 1.224646799147353e-16], [-1.7461863746975361, -0.9751067350914336, 1.224646799147353e-16], [-1.6572311511834572, -1.1196360620965868, 1.224646799147353e-16], [-1.5563431349635477, -1.2561035173312092, 1.224646799147353e-16], [-1.4442487640987838, -1.383526475134876, 1.224646799147353e-16], [-1.3217551673292112, -1.5009874342040734, 1.224646799147353e-16], [-1.1897443523922535, -1.60764062400486, 1.224646799147353e-16], [-1.0491668551793256, -1.7027180946924605, 1.224646799147353e-16], [-0.9010348954596178, -1.7855352466876913, 1.224646799147353e-16], [-0.7464150884528485, -1.8554957600948392, 1.224646799147353e-16], [-0.5864207647308634, -1.9120958884670163, 1.224646799147353e-16], [-0.42220395374816583, -1.954928086001993, 1.224646799147353e-16], [-0.25494708872348304, -1.983683942051107, 1.224646799147353e-16], [-0.08585449260086644, -1.9981564018114915, 1.224646799147353e-16], [0.08385629360485285, -1.998241257211665, 1.224646799147353e-16], [0.25296327763852666, -1.9839378972554491, 1.224646799147353e-16], [0.4202488148860401, -1.9553493124214092, 1.224646799147353e-16], [0.584508375950735, -1.9126813530861415, 1.224646799147353e-16], [0.7445592197945033, -1.8562412473110814, 1.224646799147353e-16], [0.8992489099931221, -1.786435388665423, 1.224646799147353e-16], [1.047463612785048, -1.7037664100137946, 1.224646799147353e-16], [1.1881361171640739, -1.6088295643387078, 1.224646799147353e-16], [1.320253519267654, -1.502308438657446, 1.224646799147353e-16], [1.442864515729925, -1.3849700318950762, 1.224646799147353e-16], [1.5550862534840737, -1.2576592321550644, 1.224646799147353e-16], [1.6561106866924682, -1.1212927331535687, 1.224646799147353e-16], [1.745210395031855, -0.9768524336217604, 1.224646799147353e-16], [1.8217438214394157, -0.8253783672033772, 1.224646799147353e-16], [1.8851598916056096, -0.6679612137553534, 1.224646799147353e-16], [1.93500198195142, -0.5057344459734537, 1.224646799147353e-16], [1.9709112075188262, -0.3398661678906587, 1.224646799147353e-16], [1.9926290061002474, -0.17155070401470016, 1.224646799147353e-16], [1.9999990000000831, -0.00199999966665363, 1.224646799147353e-16]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}];\n",
       "    for ( var i=0 ; i < lines.length ; i++ ) addLine( lines[i] );\n",
       "\n",
       "    function addLine( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        for ( var i=0 ; i < json.points.length ; i++ ) {\n",
       "            var v = json.points[i];\n",
       "            geometry.vertices.push( new THREE.Vector3( a[0]*v[0], a[1]*v[1], a[2]*v[2] ) );\n",
       "        }\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var materialOptions = { color: json.color, linewidth: json.linewidth,\n",
       "                                transparent: transparent, opacity: json.opacity };\n",
       "\n",
       "        var mesh;\n",
       "        if ( json.linewidth > 1 && window.createFatLineStrip ) {\n",
       "            mesh = createFatLineStrip( geometry, materialOptions );\n",
       "        } else {\n",
       "            var material = new THREE.LineBasicMaterial( materialOptions );\n",
       "            mesh = new THREE.Line( geometry, material );\n",
       "        }\n",
       "\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    var surfaces = [];\n",
       "    for ( var i=0 ; i < surfaces.length ; i++ ) addSurface( surfaces[i] );\n",
       "\n",
       "    function addSurface( json ) {\n",
       "\n",
       "        var useFaceColors = 'faceColors' in json ? true : false;\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        for ( var i=0 ; i < json.vertices.length ; i++ ) {\n",
       "            var v = json.vertices[i];\n",
       "            geometry.vertices.push( new THREE.Vector3( a[0]*v.x, a[1]*v.y, a[2]*v.z ) );\n",
       "        }\n",
       "        for ( var i=0 ; i < json.faces.length ; i++ ) {\n",
       "            var f = json.faces[i];\n",
       "            for ( var j=0 ; j < f.length - 2 ; j++ ) {\n",
       "                var face = new THREE.Face3( f[0], f[j+1], f[j+2] );\n",
       "                if ( useFaceColors ) face.color.set( json.faceColors[i] );\n",
       "                geometry.faces.push( face );\n",
       "            }\n",
       "        }\n",
       "        geometry.computeVertexNormals();\n",
       "\n",
       "        var side = json.singleSide ? THREE.FrontSide : THREE.DoubleSide;\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var depthWrite = 'depthWrite' in json ? json.depthWrite : !transparent;\n",
       "        var flatShading = json.useFlatShading ? json.useFlatShading : false;\n",
       "\n",
       "        var material = new THREE.MeshPhongMaterial( { side: side,\n",
       "                                     color: useFaceColors ? 'white' : json.color,\n",
       "                                     vertexColors: useFaceColors ? THREE.FaceColors : THREE.NoColors,\n",
       "                                     transparent: transparent, opacity: json.opacity,\n",
       "                                     shininess: 20, flatShading: flatShading,\n",
       "                                     depthWrite: depthWrite } );\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var mesh = new THREE.Mesh( geometry, material );\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        if ( transparent && json.renderOrder ) mesh.renderOrder = json.renderOrder;\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "        if ( json.showMeshGrid ) addSurfaceMeshGrid( json );\n",
       "\n",
       "    }\n",
       "\n",
       "    function addSurfaceMeshGrid( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "\n",
       "        for ( var i=0 ; i < json.faces.length ; i++ ) {\n",
       "            var f = json.faces[i];\n",
       "            for ( var j=0 ; j < f.length ; j++ ) {\n",
       "                var k = j === f.length-1 ? 0 : j+1;\n",
       "                var v1 = json.vertices[f[j]];\n",
       "                var v2 = json.vertices[f[k]];\n",
       "                // vertices in opposite directions on neighboring faces\n",
       "                var nudge = f[j] < f[k] ? .0005*zRange : -.0005*zRange;\n",
       "                geometry.vertices.push( new THREE.Vector3( a[0]*v1.x, a[1]*v1.y, a[2]*(v1.z+nudge) ) );\n",
       "                geometry.vertices.push( new THREE.Vector3( a[0]*v2.x, a[1]*v2.y, a[2]*(v2.z+nudge) ) );\n",
       "            }\n",
       "        }\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var gridColor = options.theme === 'dark' ? 'white' : 'black';\n",
       "        var linewidth = json.linewidth || 1;\n",
       "        var materialOptions = { color: gridColor, linewidth: linewidth };\n",
       "\n",
       "        var mesh;\n",
       "        if ( linewidth > 1 && window.createFatLineSegments ) {\n",
       "            mesh = createFatLineSegments( geometry, materialOptions );\n",
       "        } else {\n",
       "            var material = new THREE.LineBasicMaterial( materialOptions );\n",
       "            mesh = new THREE.LineSegments( geometry, material );\n",
       "        }\n",
       "\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    function render() {\n",
       "\n",
       "        if ( window.updateAnimation ) animate = updateAnimation();\n",
       "        if ( animate ) requestAnimationFrame( render );\n",
       "\n",
       "        renderer.render( scene, camera );\n",
       "\n",
       "    }\n",
       "\n",
       "    render();\n",
       "    controls.update();\n",
       "    if ( !animate ) render();\n",
       "\n",
       "\n",
       "    // menu functions\n",
       "\n",
       "    function toggleMenu() {\n",
       "\n",
       "        var m = document.getElementById( 'menu-content' );\n",
       "        if ( m.style.display === 'block' ) m.style.display = 'none'\n",
       "        else m.style.display = 'block';\n",
       "\n",
       "    }\n",
       "\n",
       "\n",
       "    function saveAsPNG() {\n",
       "\n",
       "        var a = document.body.appendChild( document.createElement( 'a' ) );\n",
       "        a.href = renderer.domElement.toDataURL( 'image/png' );\n",
       "        a.download = 'screenshot';\n",
       "        a.click();\n",
       "\n",
       "    }\n",
       "\n",
       "    function saveAsHTML() {\n",
       "\n",
       "        toggleMenu(); // otherwise visible in output\n",
       "        event.stopPropagation();\n",
       "\n",
       "        var blob = new Blob( [ '<!DOCTYPE html>\\n' + document.documentElement.outerHTML ] );\n",
       "        var a = document.body.appendChild( document.createElement( 'a' ) );\n",
       "        a.href = window.URL.createObjectURL( blob );\n",
       "        a.download = suggestFilename();\n",
       "        a.click();\n",
       "\n",
       "        function suggestFilename() {\n",
       "            if ( !document.title ) {\n",
       "                return 'graphic.html';\n",
       "            } else if ( /\\.html?$/i.test( document.title ) ) {\n",
       "                return document.title; // already ends in .htm or .html\n",
       "            } else {\n",
       "                return document.title + '.html';\n",
       "            }\n",
       "        }\n",
       "\n",
       "    }\n",
       "\n",
       "    function getViewpoint() {\n",
       "\n",
       "        function roundTo( x, n ) { return +x.toFixed(n); }\n",
       "\n",
       "        var v = camera.quaternion.inverse();\n",
       "        var r = Math.sqrt( v.x*v.x + v.y*v.y + v.z*v.z );\n",
       "        var axis = [ roundTo( v.x / r, 4 ), roundTo( v.y / r, 4 ), roundTo( v.z / r, 4 ) ];\n",
       "        var angle = roundTo( 2 * Math.atan2( r, v.w ) * 180 / Math.PI, 2 );\n",
       "\n",
       "        var textArea = document.createElement( 'textarea' );\n",
       "        textArea.textContent = JSON.stringify( axis ) + ',' + angle;\n",
       "        textArea.style.csstext = 'position: absolute; top: -100%';\n",
       "        document.body.append( textArea );\n",
       "        textArea.select();\n",
       "        document.execCommand( 'copy' );\n",
       "\n",
       "        var m = document.getElementById( 'menu-message' );\n",
       "        m.innerHTML = 'Viewpoint copied to clipboard';\n",
       "        m.style.display = 'block';\n",
       "        setTimeout( function() { m.style.display = 'none'; }, 2000 );\n",
       "\n",
       "    }\n",
       "\n",
       "    function getCamera() {\n",
       "\n",
       "        function roundTo( x, n ) { return +x.toFixed(n); }\n",
       "\n",
       "        var pos = camera.position;\n",
       "        var pos_r = [ roundTo( pos.x, 4 ), roundTo( pos.y, 4 ), roundTo( pos.z, 4 ) ];\n",
       "   //     var up = camera.up; // up is always (0,0,1)\n",
       "        var textArea = document.createElement('textarea');\n",
       "        var cam_position = JSON.stringify(pos_r);\n",
       "        textArea.textContent = ',camera_position=' + cam_position;\n",
       "        textArea.style.csstext = 'position: absolute; top: -100%';\n",
       "        document.body.append( textArea );\n",
       "        textArea.select();\n",
       "        document.execCommand( 'copy' );\n",
       "\n",
       "        var m = document.getElementById( 'menu-message' );\n",
       "        m.innerHTML = 'Camera position '+ cam_position+' copied to clipboard';\n",
       "        m.style.display = 'block';\n",
       "        setTimeout( function() { m.style.display = 'none'; }, 2000 );\n",
       "\n",
       "    }\n",
       "\n",
       "</script>\n",
       "\n",
       "<div id=&quot;menu-container&quot; onclick=&quot;toggleMenu()&quot;>&#x24d8;\n",
       "<div id=&quot;menu-message&quot;></div>\n",
       "<div id=&quot;menu-content&quot;>\n",
       "<div onclick=&quot;saveAsPNG()&quot;>Save as PNG</div>\n",
       "<div onclick=&quot;saveAsHTML()&quot;>Save as HTML</div>\n",
       "<div onclick=&quot;getCamera()&quot;>Get camera</div>\n",
       "<div onclick=&quot;getViewpoint()&quot;>Get viewpoint</div>\n",
       "<div>Close Menu</div>\n",
       "</div></div>\n",
       "\n",
       "\n",
       "</body>\n",
       "</html>\n",
       "\"\n",
       "        width=\"100%\"\n",
       "        height=\"400\"\n",
       "        style=\"border: 0;\">\n",
       "</iframe>\n"
      ],
      "text/plain": [
       "Graphics3d Object"
      ]
     },
     "execution_count": 50,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Y.plot(X, ranges={r:(1,2), th:(0,pi/2)}, number_values=4, \n",
    "       color={r:'blue', th:'green', ph:'red'}, aspect_ratio=1)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "逆に、（制限された）座標系 $X|_{U}$ を座標系$Y$を使って表示することも可能です。この場合、座標系 $X$ の全てを表示することはできません、なぜなら $X$ の定義域(ドメイン)は $Y$ のそれより広いからです。\n",
    "<div hidden>\n",
    "<p>Conversly, the chart $X|_{U}$ can be plotted in terms of the chart $Y$ (this is not possible for the whole chart $X$ since its domain is larger than that of chart $Y$):</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 51,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<iframe srcdoc=\"<!DOCTYPE html>\n",
       "<html>\n",
       "<head>\n",
       "<title></title>\n",
       "<meta charset=&quot;utf-8&quot;>\n",
       "<meta name=viewport content=&quot;width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0&quot;>\n",
       "<style>\n",
       "\n",
       "    body { margin: 0px; overflow: hidden; }\n",
       "\n",
       "    #menu-container { position: absolute; bottom: 30px; right: 40px; cursor: default; }\n",
       "\n",
       "    #menu-message { position: absolute; bottom: 0px; right: 0px; white-space: nowrap;\n",
       "                    display: none; background-color: #F5F5F5; padding: 10px; }\n",
       "\n",
       "    #menu-content { position: absolute; bottom: 0px; right: 0px;\n",
       "                    display: none; background-color: #F5F5F5; border-bottom: 1px solid black;\n",
       "                    border-right: 1px solid black; border-left: 1px solid black; }\n",
       "\n",
       "    #menu-content div { border-top: 1px solid black; padding: 10px; white-space: nowrap; }\n",
       "\n",
       "    #menu-content div:hover { background-color: #FEFEFE; }\n",
       "\n",
       "    .dark-theme #menu-container { color: white; }\n",
       "\n",
       "    .dark-theme #menu-message { background-color: #181818; }\n",
       "\n",
       "    .dark-theme #menu-content { background-color: #181818; border-color: white; }\n",
       "\n",
       "    .dark-theme #menu-content div { border-color: white; }\n",
       "\n",
       "    .dark-theme #menu-content div:hover { background-color: #303030; }\n",
       "\n",
       "</style>\n",
       "\n",
       "</head>\n",
       "\n",
       "<body>\n",
       "\n",
       "<script src=&quot;/nbextensions/threejs-sage/r122/three.min.js&quot;></script>\n",
       "<script>\n",
       "  if ( !window.THREE ) document.write(' \\\n",
       "<script src=&quot;https://cdn.jsdelivr.net/gh/sagemath/threejs-sage@r122/build/three.min.js&quot;><\\/script> \\\n",
       "            ');\n",
       "</script>\n",
       "        \n",
       "<script>\n",
       "\n",
       "    var options = {&quot;animate&quot;: false, &quot;animationControls&quot;: true, &quot;aspectRatio&quot;: [1.0, 1.0, 1.0], &quot;autoScaling&quot;: [false, false, false], &quot;autoPlay&quot;: true, &quot;axes&quot;: false, &quot;axesLabels&quot;: [&quot;r&quot;, &quot;theta&quot;, &quot;phi&quot;], &quot;axesLabelsStyle&quot;: null, &quot;decimals&quot;: 2, &quot;delay&quot;: 20, &quot;frame&quot;: true, &quot;loop&quot;: true, &quot;projection&quot;: &quot;perspective&quot;, &quot;theme&quot;: &quot;light&quot;, &quot;viewpoint&quot;: false};\n",
       "    var animate = options.animate;\n",
       "\n",
       "    if ( options.theme === 'dark' )\n",
       "        document.body.className = 'dark-theme';\n",
       "\n",
       "    var scene = new THREE.Scene();\n",
       "\n",
       "    var renderer = new THREE.WebGLRenderer( { antialias: true, preserveDrawingBuffer: true } );\n",
       "    renderer.setPixelRatio( window.devicePixelRatio );\n",
       "    renderer.setSize( window.innerWidth, window.innerHeight );\n",
       "    renderer.setClearColor( options.theme === 'dark' ? 0 : 0xffffff, 1 );\n",
       "    document.body.appendChild( renderer.domElement );\n",
       "\n",
       "    var b = [{&quot;x&quot;:-0.6928203230275429, &quot;y&quot;:-0.15707963267948863, &quot;z&quot;:-3.4557519189487715}, {&quot;x&quot;:13.856406460551018, &quot;y&quot;:3.1415926535897922, &quot;z&quot;:3.141592653589793}]; // bounds\n",
       "\n",
       "    if ( b[0].x === b[1].x ) {\n",
       "        b[0].x -= 1;\n",
       "        b[1].x += 1;\n",
       "    }\n",
       "    if ( b[0].y === b[1].y ) {\n",
       "        b[0].y -= 1;\n",
       "        b[1].y += 1;\n",
       "    }\n",
       "    if ( b[0].z === b[1].z ) {\n",
       "        b[0].z -= 1;\n",
       "        b[1].z += 1;\n",
       "    }\n",
       "\n",
       "    var rxRange = Math.sqrt( Math.pow( b[1].z - b[0].z, 2 )\n",
       "                            + Math.pow( b[1].y - b[0].y, 2 ) );\n",
       "    var ryRange = Math.sqrt( Math.pow( b[1].x - b[0].x, 2 )\n",
       "                            + Math.pow( b[1].z - b[0].z, 2 ) );\n",
       "    var rzRange = Math.sqrt( Math.pow( b[1].x - b[0].x, 2 )\n",
       "                            + Math.pow( b[1].y - b[0].y, 2 ) );\n",
       "    var xRange = b[1].x - b[0].x;\n",
       "    var yRange = b[1].y - b[0].y;\n",
       "    var zRange = b[1].z - b[0].z;\n",
       "\n",
       "    var ar = options.aspectRatio;\n",
       "    var a = [ ar[0], ar[1], ar[2] ]; // aspect multipliers\n",
       "\n",
       "    var autoScaling = options.autoScaling;\n",
       "    var autoAspect = 2.5;\n",
       "    if ( xRange > autoAspect * rxRange && autoScaling[0] ) a[0] = autoAspect * rxRange / xRange;\n",
       "    if ( yRange > autoAspect * ryRange && autoScaling[1] ) a[1] = autoAspect * ryRange / yRange;\n",
       "    if ( zRange > autoAspect * rzRange && autoScaling[2] ) a[2] = autoAspect * rzRange / zRange;\n",
       "\n",
       "    // Distance from (xMid,yMid,zMid) to any corner of the bounding box, after applying aspectRatio\n",
       "    var midToCorner = Math.sqrt( a[0]*a[0]*xRange*xRange + a[1]*a[1]*yRange*yRange + a[2]*a[2]*zRange*zRange ) / 2;\n",
       "\n",
       "    var xMid = ( b[0].x + b[1].x ) / 2;\n",
       "    var yMid = ( b[0].y + b[1].y ) / 2;\n",
       "    var zMid = ( b[0].z + b[1].z ) / 2;\n",
       "\n",
       "    var box = new THREE.Geometry();\n",
       "    box.vertices.push( new THREE.Vector3( a[0]*b[0].x, a[1]*b[0].y, a[2]*b[0].z ) );\n",
       "    box.vertices.push( new THREE.Vector3( a[0]*b[1].x, a[1]*b[1].y, a[2]*b[1].z ) );\n",
       "    var boxMesh = new THREE.Line( box );\n",
       "    var boxColor = options.theme === 'dark' ? 'white' : 'black';\n",
       "    if ( options.frame ) scene.add( new THREE.BoxHelper( boxMesh, boxColor ) );\n",
       "\n",
       "    if ( options.axesLabels ) {\n",
       "\n",
       "        var d = options.decimals; // decimals\n",
       "        var offsetRatio = 0.1;\n",
       "        var al = options.axesLabels;\n",
       "        var als = options.axesLabelsStyle || [{}, {}, {}];\n",
       "\n",
       "        var offset = offsetRatio * a[1]*( b[1].y - b[0].y );\n",
       "        var xm = xMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(xm) ) xm = xm.substr(1);\n",
       "        addLabel( al[0] + '=' + xm, a[0]*xMid, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "        addLabel( ( b[0].x ).toFixed(d), a[0]*b[0].x, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "        addLabel( ( b[1].x ).toFixed(d), a[0]*b[1].x, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "\n",
       "        var offset = offsetRatio * a[0]*( b[1].x - b[0].x );\n",
       "        var ym = yMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(ym) ) ym = ym.substr(1);\n",
       "        addLabel( al[1] + '=' + ym, a[0]*b[1].x+offset, a[1]*yMid, a[2]*b[0].z, als[1] );\n",
       "        addLabel( ( b[0].y ).toFixed(d), a[0]*b[1].x+offset, a[1]*b[0].y, a[2]*b[0].z, als[1] );\n",
       "        addLabel( ( b[1].y ).toFixed(d), a[0]*b[1].x+offset, a[1]*b[1].y, a[2]*b[0].z, als[1] );\n",
       "\n",
       "        var offset = offsetRatio * a[1]*( b[1].y - b[0].y );\n",
       "        var zm = zMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(zm) ) zm = zm.substr(1);\n",
       "        addLabel( al[2] + '=' + zm, a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*zMid, als[2] );\n",
       "        addLabel( ( b[0].z ).toFixed(d), a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*b[0].z, als[2] );\n",
       "        addLabel( ( b[1].z ).toFixed(d), a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*b[1].z, als[2] );\n",
       "\n",
       "    }\n",
       "\n",
       "    function addLabel( text, x, y, z, style ) {\n",
       "\n",
       "        var color = style.color || 'black';\n",
       "        var fontSize = style.fontSize || 14;\n",
       "        var fontFamily = style.fontFamily || 'monospace';\n",
       "        var fontStyle = style.fontStyle || 'normal';\n",
       "        var fontWeight = style.fontWeight || 'normal';\n",
       "        var opacity = style.opacity || 1;\n",
       "\n",
       "        if ( options.theme === 'dark' )\n",
       "            if ( color === 'black' || color === '#000000' )\n",
       "                color = 'white';\n",
       "\n",
       "        if ( Array.isArray( fontStyle ) ) {\n",
       "            fontFamily = fontFamily.map( function( f ) {\n",
       "                // Need to put quotes around fonts that have whitespace in their names.\n",
       "                return /\\s/.test( f ) ? '&quot;' + f + '&quot;' : f;\n",
       "            }).join(', ');\n",
       "        }\n",
       "\n",
       "        var canvas = document.createElement( 'canvas' );\n",
       "        var context = canvas.getContext( '2d' );\n",
       "        var pixelRatio = Math.round( window.devicePixelRatio );\n",
       "\n",
       "        // For example: italic bold 20px &quot;Times New Roman&quot;, Georgia, serif\n",
       "        var font = [fontStyle, fontWeight, fontSize + 'px', fontFamily].join(' ');\n",
       "\n",
       "        context.font = font;\n",
       "        var width = context.measureText( text ).width;\n",
       "        var height = fontSize;\n",
       "\n",
       "        // The dimensions of the canvas's underlying image data need to be powers\n",
       "        // of two in order for the resulting texture to support mipmapping.\n",
       "        canvas.width = THREE.MathUtils.ceilPowerOfTwo( width * pixelRatio );\n",
       "        canvas.height = THREE.MathUtils.ceilPowerOfTwo( height * pixelRatio );\n",
       "\n",
       "        // Re-compute the unscaled dimensions after the power of two conversion.\n",
       "        width = canvas.width / pixelRatio;\n",
       "        height = canvas.height / pixelRatio;\n",
       "\n",
       "        canvas.style.width = width + 'px';\n",
       "        canvas.style.height = height + 'px';\n",
       "\n",
       "        context.scale( pixelRatio, pixelRatio );\n",
       "        context.fillStyle = color;\n",
       "        context.font = font; // Must be set again after measureText.\n",
       "        context.textAlign = 'center';\n",
       "        context.textBaseline = 'middle';\n",
       "        context.fillText( text, width/2, height/2 );\n",
       "\n",
       "        var texture = new THREE.Texture( canvas );\n",
       "        texture.needsUpdate = true;\n",
       "\n",
       "        var materialOptions = { map: texture, sizeAttenuation: false, depthWrite: false };\n",
       "        if ( opacity < 1 ) {\n",
       "            // Setting opacity=1 would cause the texture's alpha component to be\n",
       "            // discarded, giving the text a black background instead of the\n",
       "            // background being transparent.\n",
       "            materialOptions.opacity = opacity;\n",
       "        }\n",
       "        var sprite = new THREE.Sprite( new THREE.SpriteMaterial( materialOptions ) );\n",
       "        sprite.position.set( x, y, z );\n",
       "\n",
       "        // Scaling factor, chosen somewhat arbitrarily so that the size of the text\n",
       "        // is consistent with previously generated plots.\n",
       "        var scale = 1/625;\n",
       "        if ( options.projection === 'orthographic' ) {\n",
       "            scale = midToCorner/256; // Needs to scale along with the plot itself.\n",
       "        }\n",
       "        sprite.scale.set( scale * width, scale * height, 1 );\n",
       "\n",
       "        scene.add( sprite );\n",
       "\n",
       "        return sprite;\n",
       "\n",
       "    }\n",
       "\n",
       "    if ( options.axes ) scene.add( new THREE.AxesHelper( Math.min( a[0]*b[1].x, a[1]*b[1].y, a[2]*b[1].z ) ) );\n",
       "\n",
       "    var camera = createCamera();\n",
       "    camera.up.set( 0, 0, 1 );\n",
       "    camera.position.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "\n",
       "    // camera is positioned so that the line from the camera to the center\n",
       "    // of the bounding sphere of the objects makes an angle of 60 degrees with x-axis\n",
       "    // and an angle of 30 degrees with z-axis and the field of view of the camera looking\n",
       "    // at the center has an angle of 45 degrees.\n",
       "    const sin8 = Math.sin(Math.PI / 8);\n",
       "    const sin5 = Math.sin(Math.PI / 5);\n",
       "    const cos5 = Math.cos(Math.PI / 5);\n",
       "    const sin3 = Math.sin(Math.PI / 3);\n",
       "    const cos3 = Math.cos(Math.PI / 3);\n",
       "    var r = midToCorner / sin8;\n",
       "    var offset = new THREE.Vector3( r * sin3 * cos5, r * sin3 * sin5, r * cos3 );\n",
       "\n",
       "    if ( options.viewpoint ) {\n",
       "\n",
       "        var aa = options.viewpoint;\n",
       "        var axis = new THREE.Vector3( aa[0][0], aa[0][1], aa[0][2] ).normalize();\n",
       "        var angle = aa[1] * Math.PI / 180;\n",
       "        var q = new THREE.Quaternion().setFromAxisAngle( axis, angle ).inverse();\n",
       "\n",
       "        offset.set( 0, 0, offset.length() );\n",
       "        offset.applyQuaternion( q );\n",
       "\n",
       "    }\n",
       "\n",
       "    camera.position.add( offset );\n",
       "\n",
       "    function createCamera() {\n",
       "\n",
       "        var aspect = window.innerWidth / window.innerHeight;\n",
       "\n",
       "        // Scale the near and far clipping planes along with the overall plot size.\n",
       "        var nearClip = 0.01 * midToCorner;\n",
       "        var farClip = 100 * midToCorner;\n",
       "\n",
       "        if ( options.projection === 'orthographic' ) {\n",
       "            var camera = new THREE.OrthographicCamera( -1, 1, 1, -1, -farClip, farClip );\n",
       "            updateCameraAspect( camera, aspect );\n",
       "            return camera;\n",
       "        }\n",
       "\n",
       "        return new THREE.PerspectiveCamera( 45, aspect, nearClip, farClip );\n",
       "\n",
       "    }\n",
       "\n",
       "    function updateCameraAspect( camera, aspect ) {\n",
       "\n",
       "        if ( camera.isPerspectiveCamera ) {\n",
       "            camera.aspect = aspect;\n",
       "        } else if ( camera.isOrthographicCamera ) {\n",
       "            // Fit the camera frustum to the bounding box's diagonal so that the entire plot fits\n",
       "            // within at the default zoom level and camera position.\n",
       "            if ( aspect > 1 ) { // Wide window\n",
       "                camera.top = midToCorner;\n",
       "                camera.right = midToCorner * aspect;\n",
       "            } else { // Tall or square window\n",
       "                camera.top = midToCorner / aspect;\n",
       "                camera.right = midToCorner;\n",
       "            }\n",
       "            camera.bottom = -camera.top;\n",
       "            camera.left = -camera.right;\n",
       "        }\n",
       "\n",
       "        camera.updateProjectionMatrix();\n",
       "\n",
       "    }\n",
       "\n",
       "    var lights = [{&quot;x&quot;:-5, &quot;y&quot;:3, &quot;z&quot;:0, &quot;color&quot;:&quot;#7f7f7f&quot;, &quot;parent&quot;:&quot;camera&quot;}];\n",
       "    for ( var i=0 ; i < lights.length ; i++ ) {\n",
       "        var light = new THREE.DirectionalLight( lights[i].color, 1 );\n",
       "        light.position.set( a[0]*lights[i].x, a[1]*lights[i].y, a[2]*lights[i].z );\n",
       "        if ( lights[i].parent === 'camera' ) {\n",
       "            light.target.position.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "            scene.add( light.target );\n",
       "            camera.add( light );\n",
       "        } else scene.add( light );\n",
       "    }\n",
       "    scene.add( camera );\n",
       "\n",
       "    var ambient = {&quot;color&quot;:&quot;#7f7f7f&quot;};\n",
       "    scene.add( new THREE.AmbientLight( ambient.color, 1 ) );\n",
       "\n",
       "    var controls = new THREE.OrbitControls( camera, renderer.domElement );\n",
       "    controls.target.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "    controls.addEventListener( 'change', function() { if ( !animate ) render(); } );\n",
       "\n",
       "    window.addEventListener( 'resize', function() {\n",
       "\n",
       "        renderer.setSize( window.innerWidth, window.innerHeight );\n",
       "        updateCameraAspect( camera, window.innerWidth / window.innerHeight );\n",
       "        if ( window.rescaleFatLines ) rescaleFatLines();\n",
       "        if ( !animate ) render();\n",
       "\n",
       "    } );\n",
       "\n",
       "    var texts = [{&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  r&quot;, &quot;x&quot;: 6.928203230275512, &quot;y&quot;: -0.15707963267948863, &quot;z&quot;: -3.4557519189487715}, {&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  th&quot;, &quot;x&quot;: -0.6928203230275429, &quot;y&quot;: 1.5707963267948966, &quot;z&quot;: -3.4557519189487715}, {&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  ph&quot;, &quot;x&quot;: -0.6928203230275429, &quot;y&quot;: -0.15707963267948863, &quot;z&quot;: 4.440892098500626e-16}];\n",
       "    for ( var i=0 ; i < texts.length ; i++ ) addText( texts[i] );\n",
       "\n",
       "    function addText( json ) {\n",
       "        var sprite = addLabel( json.text, a[0]*json.x, a[1]*json.y, a[2]*json.z, json );\n",
       "        sprite.userData = json;\n",
       "    }\n",
       "\n",
       "    var points = [];\n",
       "    for ( var i=0 ; i < points.length ; i++ ) addPoint( points[i] );\n",
       "\n",
       "    function addPoint( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        var v = json.point;\n",
       "        geometry.vertices.push( new THREE.Vector3( a[0]*v[0], a[1]*v[1], a[2]*v[2] ) );\n",
       "\n",
       "        var canvas = document.createElement( 'canvas' );\n",
       "        canvas.width = 128;\n",
       "        canvas.height = 128;\n",
       "\n",
       "        var context = canvas.getContext( '2d' );\n",
       "        context.arc( 64, 64, 64, 0, 2 * Math.PI );\n",
       "        context.fillStyle = json.color;\n",
       "        context.fill();\n",
       "\n",
       "        var texture = new THREE.Texture( canvas );\n",
       "        texture.needsUpdate = true;\n",
       "\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var size = camera.isOrthographicCamera ? json.size : json.size/100;\n",
       "        var material = new THREE.PointsMaterial( { size: size, map: texture,\n",
       "                                                   transparent: transparent, opacity: json.opacity,\n",
       "                                                   alphaTest: .1 } );\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var mesh = new THREE.Points( geometry, material );\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    var lines = [{&quot;points&quot;: [[13.856406460551018, 2.186276035465284, -2.356194490192345], [13.73270876384901, 2.192659767733596, -2.342496716819479], [13.611321717221312, 2.1990663494909954, -2.328423853598924], [13.492307685900709, 2.2054894703319037, -2.3139660880793427], [13.375730013597012, 2.2119222946510666, -2.2991137077860806], [13.261652951520567, 2.2183574430082045, -2.28385715965375], [13.150141577976191, 2.224786975474495, -2.2681871166646044], [13.041261708108301, 2.2312023774519116, -2.252094552082746], [12.93507979342359, 2.237594548502693, -2.2355708216122423], [12.831662810774306, 2.2439537947701345, -2.2186077537219955], [12.731078140553974, 2.250269825611703, -2.201197748268404], [12.633393433938632, 2.2565317550989716, -2.1833338834052003], [12.538676469100956, 2.2627281090636853, -2.165010030595331], [12.44699499643179, 2.2688468383825535, -2.1462209773301817], [12.358416572923884, 2.27487533919217, -2.12696255691535], [12.273008386005085, 2.280800480706467, -2.1072317843996284], [12.190837067252284, 2.286608641269134, -2.087026997406645], [12.111968496571608, 2.292285753209113, -2.0663480002807257], [12.036467597592893, 2.297817356975726, -2.0451962095868046], [11.964398125195178, 2.303188664908665, -2.023574798618433], [11.89582244625204, 2.3083846348452517, -2.0014888381814053], [11.830801314857906, 2.3133900535824137, -1.9789454305499865], [11.769393643465367, 2.3181896299943996, -1.9559538331583715], [11.711656271525055, 2.322768097361791, -1.9325255683148295], [11.657643733369577, 2.327110324197196, -1.9086745150351758], [11.60740802721691, 2.3312014325645833, -1.8844169790115957], [11.560998387282035, 2.3350269225912417, -1.8597717367874638], [11.518461061074339, 2.338572801574609, -1.8347600504206019], [11.479839094017978, 2.3418257158034015, -1.8094056493030983], [11.445172123559825, 2.344773082957628, -1.7837346763742945], [11.414496184921525, 2.347403222739961, -1.7577755967138085], [11.387843530606437, 2.349705483236157, -1.7315590674207322], [11.36524246568772, 2.3516703604181086, -1.705117768747866], [11.346717200780045, 2.353289608200822, -1.6784861976277181], [11.332287724435597, 2.3545563365517723, -1.651700425950128], [11.32196969650685, 2.355465095331165, -1.6247978271708656], [11.315774363787698, 2.35601194181297, -1.5978167759821622], [11.313708498984761, 2.356194490192345, -1.5707963267948974], [11.315774363787698, 2.35601194181297, -1.5437758776076327], [11.32196969650685, 2.355465095331165, -1.5167948264189293], [11.332287724435597, 2.3545563365517728, -1.4898922276396669], [11.346717200780043, 2.353289608200822, -1.4631064559620768], [11.365242465687716, 2.3516703604181086, -1.436474884841929], [11.387843530606437, 2.3497054832361575, -1.410033586169063], [11.414496184921523, 2.3474032227399615, -1.3838170568759864], [11.445172123559823, 2.344773082957628, -1.3578579772155004], [11.479839094017974, 2.341825715803402, -1.3321870042866966], [11.518461061074335, 2.3385728015746094, -1.3068326031691928], [11.560998387282032, 2.335026922591242, -1.2818209168023311], [11.607408027216906, 2.331201432564584, -1.2571756745781992], [11.657643733369573, 2.3271103241971964, -1.232918138554619], [11.711656271525051, 2.3227680973617915, -1.2090670852749652], [11.769393643465364, 2.3181896299944, -1.1856388204314232], [11.830801314857903, 2.313390053582414, -1.1626472230398082], [11.895822446252035, 2.308384634845252, -1.1401038154083893], [11.964398125195173, 2.3031886649086655, -1.1180178549713613], [12.036467597592889, 2.2978173569757265, -1.09639644400299], [12.111968496571603, 2.292285753209113, -1.0752446533090687], [12.190837067252277, 2.286608641269134, -1.0545656561831496], [12.273008386005078, 2.2808004807064672, -1.034360869190166], [12.358416572923877, 2.27487533919217, -1.0146300966744444], [12.446994996431783, 2.268846838382554, -0.9953716762596124], [12.53867646910095, 2.2627281090636853, -0.9765826229944635], [12.633393433938627, 2.256531755098972, -0.958258770184594], [12.731078140553967, 2.2502698256117037, -0.9403949053213901], [12.831662810774299, 2.243953794770135, -0.922984899867799], [12.935079793423583, 2.2375945485026936, -0.9060218319775518], [13.041261708108294, 2.231202377451912, -0.8894981015070484], [13.150141577976184, 2.224786975474495, -0.87340553692519], [13.26165295152056, 2.218357443008205, -0.8577354939360441], [13.375730013597003, 2.211922294651067, -0.8424789458037137], [13.492307685900702, 2.205489470331904, -0.8276265655104511], [13.611321717221305, 2.1990663494909963, -0.8131687999908702], [13.732708763849002, 2.1926597677335966, -0.799095936770315], [13.85640646055101, 2.1862760354652844, -0.7853981633974492]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 1.9106332362490184, -2.356194490192345], [11.85695112550842, 1.9149019357817996, -2.342496716819479], [11.716146076662774, 1.9192120963788253, -2.328423853598924], [11.577666720501819, 1.923560153024317, -2.3139660880793427], [11.441597501950499, 1.9279420898383735, -2.2991137077860806], [11.30802542474035, 1.9323534111242453, -2.28385715965375], [11.177040016069467, 1.9367891128521368, -2.2681871166646044], [11.048733273066729, 1.9412436550654175, -2.252094552082746], [10.923199589050602, 1.9457109357755595, -2.2355708216122423], [10.800535657522193, 1.9501842669961138, -2.2186077537219955], [10.6808403518118, 1.9546563536516113, -2.201197748268404], [10.564214578315028, 1.9591192761817748, -2.1833338834052003], [10.450761101316306, 1.9635644777415222, -2.165010030595331], [10.340584337511977, 1.9679827569687838, -2.1462209773301817], [10.233790118520103, 1.972364267350299, -2.12696255691535], [10.130485419907139, 1.9766985242546367, -2.1072317843996284], [10.03077805557935, 1.980974420715524, -2.087026997406645], [9.934776336784996, 1.9851802530304825, -2.0663480002807257], [9.842588695455259, 1.9893037571829775, -2.0451962095868046], [9.754323272179056, 1.993332156994271, -2.023574798618433], [9.670087469757132, 1.9972522247581288, -2.0014888381814053], [9.58998747400869, 2.001050354903036, -1.9789454305499865], [9.51412774429916, 2.0047126509601862, -1.9559538331583715], [9.442610477106006, 2.0082250257914955, -1.9325255683148295], [9.375535046821113, 2.0115733146538632, -1.9086745150351758], [9.312997428878607, 2.014743400251433, -1.8844169790115957], [9.25508961116735, 2.017721348468558, -1.8597717367874638], [9.201899000504504, 2.0204935529988264, -1.8347600504206019], [9.153507831675434, 2.02304688661032, -1.8094056493030983], [9.109992587149065, 2.0253688563381074, -1.7837346763742945], [9.071423436020835, 2.0274477594981377, -1.7577755967138085], [9.037863700984591, 2.029272837099096, -1.7315590674207322], [9.00936936216245, 2.0308344210161993, -1.705117768747866], [8.985988606407073, 2.0321240712058453, -1.6784861976277181], [8.967761430222914, 2.0331346992992207, -1.651700425950128], [8.954719303731382, 2.033860675125894, -1.6247978271708656], [8.946884902140793, 2.034297913085344, -1.5978167759821622], [8.94427190999916, 2.0344439357957027, -1.5707963267948974], [8.946884902140793, 2.034297913085344, -1.5437758776076327], [8.95471930373138, 2.0338606751258945, -1.5167948264189293], [8.967761430222913, 2.0331346992992207, -1.4898922276396669], [8.985988606407071, 2.0321240712058457, -1.4631064559620768], [9.009369362162449, 2.0308344210161993, -1.436474884841929], [9.03786370098459, 2.029272837099096, -1.410033586169063], [9.071423436020831, 2.027447759498138, -1.3838170568759864], [9.109992587149062, 2.0253688563381074, -1.3578579772155004], [9.15350783167543, 2.02304688661032, -1.3321870042866966], [9.2018990005045, 2.0204935529988264, -1.3068326031691928], [9.255089611167346, 2.017721348468558, -1.2818209168023311], [9.312997428878601, 2.0147434002514335, -1.2571756745781992], [9.375535046821108, 2.0115733146538637, -1.232918138554619], [9.442610477106001, 2.0082250257914955, -1.2090670852749652], [9.514127744299154, 2.0047126509601867, -1.1856388204314232], [9.589987474008685, 2.001050354903036, -1.1626472230398082], [9.670087469757126, 1.997252224758129, -1.1401038154083893], [9.754323272179048, 1.9933321569942712, -1.1180178549713613], [9.842588695455252, 1.989303757182978, -1.09639644400299], [9.934776336784989, 1.9851802530304827, -1.0752446533090687], [10.030778055579344, 1.9809744207155242, -1.0545656561831496], [10.130485419907131, 1.9766985242546369, -1.034360869190166], [10.233790118520096, 1.9723642673502995, -1.0146300966744444], [10.34058433751197, 1.9679827569687842, -0.9953716762596124], [10.4507611013163, 1.9635644777415224, -0.9765826229944635], [10.56421457831502, 1.9591192761817753, -0.958258770184594], [10.680840351811792, 1.9546563536516115, -0.9403949053213901], [10.800535657522186, 1.950184266996114, -0.922984899867799], [10.923199589050594, 1.9457109357755598, -0.9060218319775518], [11.048733273066722, 1.941243655065418, -0.8894981015070484], [11.177040016069459, 1.936789112852137, -0.87340553692519], [11.308025424740341, 1.9323534111242455, -0.8577354939360441], [11.441597501950492, 1.9279420898383737, -0.8424789458037137], [11.577666720501812, 1.9235601530243174, -0.8276265655104511], [11.716146076662765, 1.9192120963788255, -0.8131687999908702], [11.856951125508411, 1.9149019357817998, -0.799095936770315], [11.999999999999991, 1.9106332362490188, -0.7853981633974492]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[11.313708498984761, 1.5707963267948966, -2.356194490192345], [11.161867674932157, 1.5707963267948966, -2.342496716819479], [11.01217866226754, 1.5707963267948966, -2.328423853598924], [10.864730401211775, 1.5707963267948966, -2.3139660880793427], [10.719615356748577, 1.5707963267948966, -2.2991137077860806], [10.576929564224875, 1.5707963267948966, -2.28385715965375], [10.436772658289446, 1.5707963267948966, -2.2681871166646044], [10.299247882217994, 1.5707963267948966, -2.252094552082746], [10.164462074415706, 1.5707963267948966, -2.2355708216122423], [10.032525628644482, 1.5707963267948966, -2.2186077537219955], [9.903552424301656, 1.5707963267948966, -2.201197748268404], [9.777659722892986, 1.5707963267948966, -2.1833338834052003], [9.65496802670967, 1.5707963267948966, -2.165010030595331], [9.535600895654033, 1.5707963267948966, -2.1462209773301817], [9.419684718180312, 1.5707963267948966, -2.12696255691535], [9.30734843244579, 1.5707963267948966, -2.1072317843996284], [9.198723194024932, 1.5707963267948966, -2.087026997406645], [9.093941986946204, 1.5707963267948966, -2.0663480002807257], [8.993139175388293, 1.5707963267948966, -2.0451962095868046], [8.896449994136646, 1.5707963267948966, -2.023574798618433], [8.804009976865876, 1.5707963267948966, -2.0014888381814053], [8.715954322484922, 1.5707963267948966, -1.9789454305499865], [8.632417201157681, 1.5707963267948966, -1.9559538331583715], [8.553531003179454, 1.5707963267948966, -1.9325255683148295], [8.479425535622738, 1.5707963267948966, -1.9086745150351758], [8.410227173525072, 1.5707963267948966, -1.8844169790115957], [8.346057974321637, 1.5707963267948966, -1.8597717367874638], [8.287034766156456, 1.5707963267948966, -1.8347600504206019], [8.233268222555578, 1.5707963267948966, -1.8094056493030983], [8.184861937620628, 1.5707963267948966, -1.7837346763742945], [8.141911517302804, 1.5707963267948966, -1.7577755967138085], [8.104503703347596, 1.5707963267948966, -1.7315590674207322], [8.07271554706788, 1.5707963267948966, -1.705117768747866], [8.0466136501312, 1.5707963267948966, -1.6784861976277181], [8.026253488981876, 1.5707963267948966, -1.651700425950128], [8.011678838334662, 1.5707963267948966, -1.6247978271708656], [8.002921307382378, 1.5707963267948966, -1.5978167759821622], [8.0, 1.5707963267948966, -1.5707963267948974], [8.002921307382378, 1.5707963267948966, -1.5437758776076327], [8.01167883833466, 1.5707963267948966, -1.5167948264189293], [8.026253488981874, 1.5707963267948966, -1.4898922276396669], [8.046613650131198, 1.5707963267948966, -1.4631064559620768], [8.072715547067878, 1.5707963267948966, -1.436474884841929], [8.104503703347593, 1.5707963267948966, -1.410033586169063], [8.1419115173028, 1.5707963267948966, -1.3838170568759864], [8.184861937620626, 1.5707963267948966, -1.3578579772155004], [8.233268222555575, 1.5707963267948966, -1.3321870042866966], [8.287034766156452, 1.5707963267948966, -1.3068326031691928], [8.346057974321633, 1.5707963267948966, -1.2818209168023311], [8.410227173525067, 1.5707963267948966, -1.2571756745781992], [8.479425535622733, 1.5707963267948966, -1.232918138554619], [8.55353100317945, 1.5707963267948966, -1.2090670852749652], [8.632417201157676, 1.5707963267948966, -1.1856388204314232], [8.715954322484915, 1.5707963267948966, -1.1626472230398082], [8.80400997686587, 1.5707963267948966, -1.1401038154083893], [8.896449994136638, 1.5707963267948966, -1.1180178549713613], [8.993139175388286, 1.5707963267948966, -1.09639644400299], [9.093941986946199, 1.5707963267948966, -1.0752446533090687], [9.198723194024925, 1.5707963267948966, -1.0545656561831496], [9.307348432445783, 1.5707963267948966, -1.034360869190166], [9.419684718180305, 1.5707963267948966, -1.0146300966744444], [9.535600895654026, 1.5707963267948966, -0.9953716762596124], [9.654968026709662, 1.5707963267948966, -0.9765826229944635], [9.77765972289298, 1.5707963267948966, -0.958258770184594], [9.903552424301648, 1.5707963267948966, -0.9403949053213901], [10.032525628644475, 1.5707963267948966, -0.922984899867799], [10.164462074415699, 1.5707963267948966, -0.9060218319775518], [10.299247882217985, 1.5707963267948966, -0.8894981015070484], [10.436772658289437, 1.5707963267948966, -0.87340553692519], [10.576929564224864, 1.5707963267948966, -0.8577354939360441], [10.719615356748568, 1.5707963267948966, -0.8424789458037137], [10.864730401211764, 1.5707963267948966, -0.8276265655104511], [11.012178662267532, 1.5707963267948966, -0.8131687999908702], [11.161867674932148, 1.5707963267948966, -0.799095936770315], [11.31370849898475, 1.5707963267948966, -0.7853981633974492]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 1.2309594173407747, -2.356194490192345], [11.85695112550842, 1.2266907178079935, -2.342496716819479], [11.716146076662774, 1.2223805572109678, -2.328423853598924], [11.577666720501819, 1.2180325005654762, -2.3139660880793427], [11.441597501950499, 1.2136505637514197, -2.2991137077860806], [11.30802542474035, 1.2092392424655478, -2.28385715965375], [11.177040016069467, 1.2048035407376563, -2.2681871166646044], [11.048733273066729, 1.2003489985243756, -2.252094552082746], [10.923199589050602, 1.1958817178142336, -2.2355708216122423], [10.800535657522193, 1.1914083865936793, -2.2186077537219955], [10.6808403518118, 1.1869362999381818, -2.201197748268404], [10.564214578315028, 1.1824733774080183, -2.1833338834052003], [10.450761101316306, 1.178028175848271, -2.165010030595331], [10.340584337511977, 1.1736098966210093, -2.1462209773301817], [10.233790118520103, 1.169228386239494, -2.12696255691535], [10.130485419907139, 1.1648941293351565, -2.1072317843996284], [10.03077805557935, 1.1606182328742691, -2.087026997406645], [9.934776336784996, 1.1564124005593106, -2.0663480002807257], [9.842588695455259, 1.1522888964068156, -2.0451962095868046], [9.754323272179056, 1.148260496595522, -2.023574798618433], [9.670087469757132, 1.1443404288316643, -2.0014888381814053], [9.58998747400869, 1.1405422986867573, -1.9789454305499865], [9.51412774429916, 1.1368800026296069, -1.9559538331583715], [9.442610477106006, 1.1333676277982976, -1.9325255683148295], [9.375535046821113, 1.1300193389359297, -1.9086745150351758], [9.312997428878607, 1.1268492533383598, -1.8844169790115957], [9.25508961116735, 1.1238713051212352, -1.8597717367874638], [9.201899000504504, 1.1210991005909667, -1.8347600504206019], [9.153507831675434, 1.118545766979473, -1.8094056493030983], [9.109992587149065, 1.116223797251686, -1.7837346763742945], [9.071423436020835, 1.1141448940916552, -1.7577755967138085], [9.037863700984591, 1.112319816490697, -1.7315590674207322], [9.00936936216245, 1.110758232573594, -1.705117768747866], [8.985988606407073, 1.1094685823839476, -1.6784861976277181], [8.967761430222914, 1.1084579542905721, -1.651700425950128], [8.954719303731382, 1.107731978463899, -1.6247978271708656], [8.946884902140793, 1.107294740504449, -1.5978167759821622], [8.94427190999916, 1.1071487177940904, -1.5707963267948974], [8.946884902140793, 1.107294740504449, -1.5437758776076327], [8.95471930373138, 1.1077319784638988, -1.5167948264189293], [8.967761430222913, 1.1084579542905721, -1.4898922276396669], [8.985988606407071, 1.1094685823839474, -1.4631064559620768], [9.009369362162449, 1.110758232573594, -1.436474884841929], [9.03786370098459, 1.112319816490697, -1.410033586169063], [9.071423436020831, 1.114144894091655, -1.3838170568759864], [9.109992587149062, 1.116223797251686, -1.3578579772155004], [9.15350783167543, 1.118545766979473, -1.3321870042866966], [9.2018990005045, 1.1210991005909665, -1.3068326031691928], [9.255089611167346, 1.1238713051212352, -1.2818209168023311], [9.312997428878601, 1.1268492533383596, -1.2571756745781992], [9.375535046821108, 1.1300193389359294, -1.232918138554619], [9.442610477106001, 1.1333676277982974, -1.2090670852749652], [9.514127744299154, 1.1368800026296066, -1.1856388204314232], [9.589987474008685, 1.1405422986867568, -1.1626472230398082], [9.670087469757126, 1.144340428831664, -1.1401038154083893], [9.754323272179048, 1.1482604965955219, -1.1180178549713613], [9.842588695455252, 1.1522888964068152, -1.09639644400299], [9.934776336784989, 1.1564124005593104, -1.0752446533090687], [10.030778055579344, 1.160618232874269, -1.0545656561831496], [10.130485419907131, 1.1648941293351562, -1.034360869190166], [10.233790118520096, 1.1692283862394937, -1.0146300966744444], [10.34058433751197, 1.173609896621009, -0.9953716762596124], [10.4507611013163, 1.1780281758482707, -0.9765826229944635], [10.56421457831502, 1.1824733774080178, -0.958258770184594], [10.680840351811792, 1.1869362999381816, -0.9403949053213901], [10.800535657522186, 1.191408386593679, -0.922984899867799], [10.923199589050594, 1.1958817178142334, -0.9060218319775518], [11.048733273066722, 1.2003489985243752, -0.8894981015070484], [11.177040016069459, 1.204803540737656, -0.87340553692519], [11.308025424740341, 1.2092392424655476, -0.8577354939360441], [11.441597501950492, 1.2136505637514194, -0.8424789458037137], [11.577666720501812, 1.2180325005654757, -0.8276265655104511], [11.716146076662765, 1.2223805572109676, -0.8131687999908702], [11.856951125508411, 1.2266907178079933, -0.799095936770315], [11.999999999999991, 1.2309594173407743, -0.7853981633974492]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[13.856406460551018, 0.9553166181245093, -2.356194490192345], [13.73270876384901, 0.9489328858561968, -2.342496716819479], [13.611321717221312, 0.9425263040987975, -2.328423853598924], [13.492307685900709, 0.9361031832578894, -2.3139660880793427], [13.375730013597012, 0.9296703589387264, -2.2991137077860806], [13.261652951520567, 0.9232352105815887, -2.28385715965375], [13.150141577976191, 0.9168056781152983, -2.2681871166646044], [13.041261708108301, 0.9103902761378814, -2.252094552082746], [12.93507979342359, 0.9039981050871001, -2.2355708216122423], [12.831662810774306, 0.8976388588196584, -2.2186077537219955], [12.731078140553974, 0.89132282797809, -2.201197748268404], [12.633393433938632, 0.8850608984908213, -2.1833338834052003], [12.538676469100956, 0.8788645445261081, -2.165010030595331], [12.44699499643179, 0.8727458152072396, -2.1462209773301817], [12.358416572923884, 0.8667173143976231, -2.12696255691535], [12.273008386005085, 0.8607921728833262, -2.1072317843996284], [12.190837067252284, 0.8549840123206593, -2.087026997406645], [12.111968496571608, 0.8493069003806802, -2.0663480002807257], [12.036467597592893, 0.8437752966140669, -2.0451962095868046], [11.964398125195178, 0.838403988681128, -2.023574798618433], [11.89582244625204, 0.8332080187445413, -2.0014888381814053], [11.830801314857906, 0.8282026000073794, -1.9789454305499865], [11.769393643465367, 0.8234030235953935, -1.9559538331583715], [11.711656271525055, 0.8188245562280021, -1.9325255683148295], [11.657643733369577, 0.8144823293925971, -1.9086745150351758], [11.60740802721691, 0.8103912210252098, -1.8844169790115957], [11.560998387282035, 0.8065657309985513, -1.8597717367874638], [11.518461061074339, 0.8030198520151841, -1.8347600504206019], [11.479839094017978, 0.7997669377863915, -1.8094056493030983], [11.445172123559825, 0.7968195706321652, -1.7837346763742945], [11.414496184921525, 0.794189430849832, -1.7577755967138085], [11.387843530606437, 0.791887170353636, -1.7315590674207322], [11.36524246568772, 0.7899222931716845, -1.705117768747866], [11.346717200780045, 0.7883030453889712, -1.6784861976277181], [11.332287724435597, 0.7870363170380207, -1.651700425950128], [11.32196969650685, 0.7861275582586285, -1.6247978271708656], [11.315774363787698, 0.7855807117768233, -1.5978167759821622], [11.313708498984761, 0.7853981633974483, -1.5707963267948974], [11.315774363787698, 0.7855807117768233, -1.5437758776076327], [11.32196969650685, 0.7861275582586283, -1.5167948264189293], [11.332287724435597, 0.7870363170380206, -1.4898922276396669], [11.346717200780043, 0.7883030453889711, -1.4631064559620768], [11.365242465687716, 0.7899222931716844, -1.436474884841929], [11.387843530606437, 0.7918871703536358, -1.410033586169063], [11.414496184921523, 0.7941894308498317, -1.3838170568759864], [11.445172123559823, 0.7968195706321651, -1.3578579772155004], [11.479839094017974, 0.7997669377863913, -1.3321870042866966], [11.518461061074335, 0.8030198520151839, -1.3068326031691928], [11.560998387282032, 0.8065657309985511, -1.2818209168023311], [11.607408027216906, 0.8103912210252094, -1.2571756745781992], [11.657643733369573, 0.8144823293925968, -1.232918138554619], [11.711656271525051, 0.8188245562280018, -1.2090670852749652], [11.769393643465364, 0.8234030235953932, -1.1856388204314232], [11.830801314857903, 0.828202600007379, -1.1626472230398082], [11.895822446252035, 0.8332080187445411, -1.1401038154083893], [11.964398125195173, 0.8384039886811275, -1.1180178549713613], [12.036467597592889, 0.8437752966140666, -1.09639644400299], [12.111968496571603, 0.84930690038068, -1.0752446533090687], [12.190837067252277, 0.854984012320659, -1.0545656561831496], [12.273008386005078, 0.8607921728833259, -1.034360869190166], [12.358416572923877, 0.8667173143976228, -1.0146300966744444], [12.446994996431783, 0.8727458152072393, -0.9953716762596124], [12.53867646910095, 0.8788645445261077, -0.9765826229944635], [12.633393433938627, 0.8850608984908209, -0.958258770184594], [12.731078140553967, 0.8913228279780896, -0.9403949053213901], [12.831662810774299, 0.8976388588196581, -0.922984899867799], [12.935079793423583, 0.9039981050870998, -0.9060218319775518], [13.041261708108294, 0.9103902761378809, -0.8894981015070484], [13.150141577976184, 0.916805678115298, -0.87340553692519], [13.26165295152056, 0.9232352105815882, -0.8577354939360441], [13.375730013597003, 0.929670358938726, -0.8424789458037137], [13.492307685900702, 0.936103183257889, -0.8276265655104511], [13.611321717221305, 0.942526304098797, -0.8131687999908702], [13.732708763849002, 0.9489328858561965, -0.799095936770315], [13.85640646055101, 0.9553166181245089, -0.7853981633974492]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 2.3005239830218627, -2.677945044588987], [11.85695112550842, 2.311367649387404, -2.666895770509618], [11.716146076662774, 2.3224097415080576, -2.655350020502288], [11.577666720501819, 2.333647831656342, -2.6432768593794873], [11.441597501950499, 2.345078495503078, -2.630643077093183], [11.30802542474035, 2.356697186557081, -2.61741302480688], [11.177040016069467, 2.3684980987442117, -2.6035484457641687], [11.048733273066729, 2.380474016485831, -2.5890083032990794], [10.923199589050602, 2.392616151726233, -2.5737486093263535], [10.800535657522193, 2.4049139674960944, -2.5577222579276784], [10.6808403518118, 2.4173549877991647, -2.5408788702787994], [10.564214578315028, 2.4299245938911134, -2.523164659217274], [10.450761101316306, 2.44260580740614, -2.50452232431411], [10.340584337511977, 2.455379061308026, -2.4848909914703596], [10.233790118520103, 2.468221960333487, -2.4642062148923918], [10.130485419907139, 2.481109033500005, -2.4424000638681242], [10.03077805557935, 2.4940114824175597, -2.419401322089806], [9.934776336784996, 2.506896930629561, -2.395135833289385], [9.842588695455259, 2.5197291810707, -2.3695270334864915], [9.754323272179056, 2.532467991022245, -2.34249671681948], [9.670087469757132, 2.54506887670685, -2.313966088079344], [9.58998747400869, 2.557482962900187, -2.283857159653751], [9.51412774429916, 2.5696568965909625, -2.2520945520827467], [9.442610477106006, 2.581532847643577, -2.2186077537219964], [9.375535046821113, 2.5930486233173893, -2.183333883405201], [9.312997428878607, 2.604137926890742, -2.1462209773301826], [9.25508961116735, 2.614730792808288, -2.1072317843996293], [9.201899000504504, 2.6247542307425547, -2.0663480002807266], [9.153507831675434, 2.6341331075381826, -2.023574798618434], [9.109992587149065, 2.642791287893938, -1.9789454305499874], [9.071423436020835, 2.650653040686936, -1.9325255683148304], [9.037863700984591, 2.657644697445861, -1.8844169790115965], [9.00936936216245, 2.6636965230522156, -1.8347600504206028], [8.985988606407073, 2.6687447282137327, -1.7837346763742954], [8.967761430222914, 2.672733522311426, -1.731559067420733], [8.954719303731382, 2.6756170791668894, -1.678486197627719], [8.946884902140793, 2.6773612731828846, -1.6247978271708667], [8.94427190999916, 2.677945044588987, -1.5707963267948983], [8.946884902140793, 2.6773612731828846, -1.5167948264189302], [8.95471930373138, 2.6756170791668894, -1.463106455962078], [8.967761430222913, 2.672733522311426, -1.4100335861690638], [8.985988606407071, 2.668744728213733, -1.3578579772155013], [9.009369362162449, 2.663696523052216, -1.3068326031691937], [9.03786370098459, 2.6576446974458614, -1.2571756745782001], [9.071423436020831, 2.6506530406869366, -1.209067085274966], [9.109992587149062, 2.6427912878939384, -1.1626472230398088], [9.15350783167543, 2.634133107538183, -1.1180178549713622], [9.2018990005045, 2.624754230742555, -1.0752446533090696], [9.255089611167346, 2.614730792808289, -1.0343608691901667], [9.312997428878601, 2.6041379268907425, -0.995371676259613], [9.37553504682111, 2.59304862331739, -0.9582587701845945], [9.442610477106003, 2.5815328476435777, -0.9229848998677994], [9.514127744299154, 2.5696568965909634, -0.8894981015070488], [9.589987474008685, 2.557482962900188, -0.8577354939360443], [9.670087469757126, 2.545068876706851, -0.8276265655104512], [9.754323272179048, 2.532467991022246, -0.799095936770315], [9.842588695455252, 2.519729181070701, -0.7720656201033035], [9.934776336784989, 2.506896930629562, -0.7464568203004098], [10.030778055579344, 2.4940114824175605, -0.7221913314999889], [10.130485419907131, 2.481109033500006, -0.6991925897216703], [10.233790118520096, 2.468221960333488, -0.6773864386974028], [10.34058433751197, 2.455379061308027, -0.6567016621194349], [10.4507611013163, 2.442605807406141, -0.6370703292756844], [10.56421457831502, 2.429924593891114, -0.6184279943725202], [10.680840351811792, 2.4173549877991656, -0.6007137833109946], [10.800535657522186, 2.4049139674960953, -0.5838703956621157], [10.923199589050594, 2.392616151726234, -0.5678440442634407], [11.048733273066722, 2.3804740164858313, -0.5525843502907147], [11.177040016069459, 2.368498098744212, -0.5380442078256256], [11.308025424740341, 2.356697186557082, -0.524179628782914], [11.441597501950492, 2.3450784955030786, -0.5109495764966111], [11.577666720501812, 2.333647831656343, -0.4983157942103066], [11.716146076662765, 2.322409741508058, -0.48624263308750565], [11.856951125508411, 2.3113676493874045, -0.47469688308017566], [11.999999999999991, 2.3005239830218636, -0.4636476090008068]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.797958971132712, 1.9913306620788616, -2.677945044588987], [9.62222895137584, 1.999513151627556, -2.666895770509618], [9.448178601704168, 2.0079494459600964, -2.655350020502288], [9.27590247312979, 2.0166462643747267, -2.6432768593794873], [9.10550127102511, 2.02560992679211, -2.630643077093183], [8.9370822423526, 2.034846214234029, -2.61741302480688], [8.770759574906734, 2.0443602039149313, -2.6035484457641687], [8.606654805403307, 2.054156075367265, -2.5890083032990794], [8.444897232189108, 2.0642368837414393, -2.5737486093263535], [8.285624327074476, 2.0746042962027884, -2.5577222579276784], [8.128982139289716, 2.085258287233307, -2.5408788702787994], [7.975125682814269, 2.0961967886917066, -2.523164659217274], [7.824219296312318, 2.107415290765906, -2.50452232431411], [7.67643696262778, 2.1189063905629357, -2.4848909914703596], [7.5319625722596175, 2.130659286141932, -2.4642062148923918], [7.390990112491771, 2.1426592154519764, -2.4424000638681242], [7.253723760958384, 2.1548868420590597, -2.419401322089806], [7.120377859491945, 2.167317592927689, -2.395135833289385], [6.99117674128638, 2.1799209580652317, -2.3695270334864915], [6.866354381924509, 2.1926597677335957, -2.34249671681948], [6.746153842950358, 2.2054894703319032, -2.313966088079344], [6.630826475760287, 2.218357443008204, -2.283857159653751], [6.520630854054154, 2.231202377451911, -2.2520945520827467], [6.415831405387157, 2.2439537947701345, -2.2186077537219964], [6.316696716969319, 2.2565317550989716, -2.183333883405201], [6.223497498215897, 2.268846838382553, -2.1462209773301826], [6.136504193002544, 2.280800480706467, -2.1072317843996293], [6.055984248285806, 2.2922857532091125, -2.0663480002807266], [5.982199062597591, 2.303188664908665, -2.023574798618434], [5.915400657428955, 2.3133900535824137, -1.9789454305499874], [5.855828135762527, 2.322768097361791, -1.9325255683148304], [5.8037040136084554, 2.3312014325645833, -1.8844169790115965], [5.75923053053717, 2.338572801574609, -1.8347600504206028], [5.722586061779913, 2.344773082957628, -1.7837346763742954], [5.6939217653032195, 2.349705483236157, -1.731559067420733], [5.6733586003900225, 2.353289608200822, -1.678486197627719], [5.660984848253425, 2.355465095331165, -1.6247978271708667], [5.656854249492381, 2.356194490192345, -1.5707963267948983], [5.660984848253425, 2.355465095331165, -1.5167948264189302], [5.673358600390022, 2.3532896082008223, -1.463106455962078], [5.693921765303217, 2.3497054832361575, -1.4100335861690638], [5.722586061779911, 2.3447730829576283, -1.3578579772155013], [5.759230530537168, 2.3385728015746094, -1.3068326031691937], [5.803704013608452, 2.331201432564584, -1.2571756745782001], [5.855828135762524, 2.3227680973617915, -1.209067085274966], [5.91540065742895, 2.313390053582414, -1.1626472230398088], [5.982199062597585, 2.3031886649086655, -1.1180178549713622], [6.0559842482857995, 2.2922857532091134, -1.0752446533090696], [6.136504193002538, 2.2808004807064677, -1.0343608691901667], [6.223497498215891, 2.268846838382554, -0.995371676259613], [6.316696716969312, 2.2565317550989725, -0.9582587701845945], [6.415831405387149, 2.2439537947701353, -0.9229848998677994], [6.520630854054146, 2.231202377451912, -0.8894981015070488], [6.630826475760279, 2.218357443008205, -0.8577354939360443], [6.746153842950351, 2.205489470331904, -0.8276265655104512], [6.8663543819245, 2.1926597677335966, -0.799095936770315], [6.99117674128637, 2.1799209580652326, -0.7720656201033035], [7.120377859491937, 2.1673175929276898, -0.7464568203004098], [7.253723760958375, 2.1548868420590606, -0.7221913314999889], [7.390990112491761, 2.1426592154519772, -0.6991925897216703], [7.531962572259608, 2.130659286141933, -0.6773864386974028], [7.67643696262777, 2.1189063905629366, -0.6567016621194349], [7.824219296312309, 2.1074152907659065, -0.6370703292756844], [7.97512568281426, 2.096196788691707, -0.6184279943725202], [8.128982139289706, 2.0852582872333074, -0.6007137833109946], [8.285624327074466, 2.074604296202789, -0.5838703956621157], [8.444897232189097, 2.06423688374144, -0.5678440442634407], [8.606654805403297, 2.0541560753672656, -0.5525843502907147], [8.770759574906723, 2.044360203914932, -0.5380442078256256], [8.93708224235259, 2.0348462142340296, -0.524179628782914], [9.1055012710251, 2.02560992679211, -0.5109495764966111], [9.27590247312978, 2.016646264374727, -0.4983157942103066], [9.448178601704157, 2.0079494459600973, -0.48624263308750565], [9.62222895137583, 1.9995131516275566, -0.47469688308017566], [9.7979589711327, 1.9913306620788622, -0.4636476090008068]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[8.94427190999916, 1.5707963267948966, -2.677945044588987], [8.751416456362673, 1.5707963267948966, -2.666895770509618], [8.559677499164353, 1.5707963267948966, -2.655350020502288], [8.36913177641596, 1.5707963267948966, -2.6432768593794873], [8.179862675903546, 1.5707963267948966, -2.630643077093183], [7.9919608987140425, 1.5707963267948966, -2.61741302480688], [7.805525191863655, 1.5707963267948966, -2.6035484457641687], [7.620663156141455, 1.5707963267948966, -2.5890083032990794], [7.437492135272161, 1.5707963267948966, -2.5737486093263535], [7.256140192237769, 1.5707963267948966, -2.5577222579276784], [7.0767471779689295, 1.5707963267948966, -2.5408788702787994], [6.899465896479507, 1.5707963267948966, -2.523164659217274], [6.7244633686849715, 1.5707963267948966, -2.50452232431411], [6.551922194379143, 1.5707963267948966, -2.4848909914703596], [6.382042007846683, 1.5707963267948966, -2.4642062148923918], [6.21504101699668, 1.5707963267948966, -2.4424000638681242], [6.051157608283909, 1.5707963267948966, -2.419401322089806], [5.890651989546071, 1.5707963267948966, -2.395135833289385], [5.733807829697787, 1.5707963267948966, -2.3695270334864915], [5.580933837466084, 1.5707963267948966, -2.34249671681948], [5.432365200605892, 1.5707963267948966, -2.313966088079344], [5.288464782112441, 1.5707963267948966, -2.283857159653751], [5.1496239411090015, 1.5707963267948966, -2.2520945520827467], [5.0162628143222445, 1.5707963267948966, -2.2186077537219964], [4.888829861446497, 1.5707963267948966, -2.183333883405201], [4.767800447827019, 1.5707963267948966, -2.1462209773301826], [4.653674216222898, 1.5707963267948966, -2.1072317843996293], [4.546970993473105, 1.5707963267948966, -2.0663480002807266], [4.4482249970683245, 1.5707963267948966, -2.023574798618434], [4.357977161242462, 1.5707963267948966, -1.9789454305499874], [4.276765501589729, 1.5707963267948966, -1.9325255683148304], [4.205113586762537, 1.5707963267948966, -1.8844169790115965], [4.143517383078229, 1.5707963267948966, -1.8347600504206028], [4.092430968810315, 1.5707963267948966, -1.7837346763742954], [4.052251851673798, 1.5707963267948966, -1.731559067420733], [4.0233068250656, 1.5707963267948966, -1.678486197627719], [4.005839419167331, 1.5707963267948966, -1.6247978271708667], [4.0, 1.5707963267948966, -1.5707963267948983], [4.00583941916733, 1.5707963267948966, -1.5167948264189302], [4.023306825065598, 1.5707963267948966, -1.463106455962078], [4.0522518516737955, 1.5707963267948966, -1.4100335861690638], [4.092430968810312, 1.5707963267948966, -1.3578579772155013], [4.143517383078225, 1.5707963267948966, -1.3068326031691937], [4.205113586762533, 1.5707963267948966, -1.2571756745782001], [4.276765501589724, 1.5707963267948966, -1.209067085274966], [4.357977161242457, 1.5707963267948966, -1.1626472230398088], [4.448224997068317, 1.5707963267948966, -1.1180178549713622], [4.5469709934730975, 1.5707963267948966, -1.0752446533090696], [4.65367421622289, 1.5707963267948966, -1.0343608691901667], [4.767800447827011, 1.5707963267948966, -0.995371676259613], [4.888829861446488, 1.5707963267948966, -0.9582587701845945], [5.016262814322236, 1.5707963267948966, -0.9229848998677994], [5.149623941108992, 1.5707963267948966, -0.8894981015070488], [5.288464782112431, 1.5707963267948966, -0.8577354939360443], [5.432365200605882, 1.5707963267948966, -0.8276265655104512], [5.580933837466073, 1.5707963267948966, -0.799095936770315], [5.733807829697776, 1.5707963267948966, -0.7720656201033035], [5.890651989546061, 1.5707963267948966, -0.7464568203004098], [6.0511576082839, 1.5707963267948966, -0.7221913314999889], [6.215041016996668, 1.5707963267948966, -0.6991925897216703], [6.382042007846671, 1.5707963267948966, -0.6773864386974028], [6.551922194379133, 1.5707963267948966, -0.6567016621194349], [6.72446336868496, 1.5707963267948966, -0.6370703292756844], [6.899465896479495, 1.5707963267948966, -0.6184279943725202], [7.076747177968918, 1.5707963267948966, -0.6007137833109946], [7.2561401922377575, 1.5707963267948966, -0.5838703956621157], [7.437492135272149, 1.5707963267948966, -0.5678440442634407], [7.620663156141443, 1.5707963267948966, -0.5525843502907147], [7.805525191863643, 1.5707963267948966, -0.5380442078256256], [7.99196089871403, 1.5707963267948966, -0.524179628782914], [8.179862675903534, 1.5707963267948966, -0.5109495764966111], [8.369131776415948, 1.5707963267948966, -0.4983157942103066], [8.559677499164343, 1.5707963267948966, -0.48624263308750565], [8.75141645636266, 1.5707963267948966, -0.47469688308017566], [8.944271909999147, 1.5707963267948966, -0.4636476090008068]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.797958971132712, 1.1502619915109316, -2.677945044588987], [9.62222895137584, 1.1420795019622372, -2.666895770509618], [9.448178601704168, 1.1336432076296965, -2.655350020502288], [9.27590247312979, 1.1249463892150664, -2.6432768593794873], [9.10550127102511, 1.1159827267976834, -2.630643077093183], [8.9370822423526, 1.106746439355764, -2.61741302480688], [8.770759574906734, 1.097232449674862, -2.6035484457641687], [8.606654805403307, 1.0874365782225281, -2.5890083032990794], [8.444897232189108, 1.0773557698483538, -2.5737486093263535], [8.285624327074476, 1.066988357387005, -2.5577222579276784], [8.128982139289716, 1.0563343663564864, -2.5408788702787994], [7.975125682814269, 1.0453958648980868, -2.523164659217274], [7.824219296312318, 1.0341773628238873, -2.50452232431411], [7.67643696262778, 1.0226862630268576, -2.4848909914703596], [7.5319625722596175, 1.010933367447861, -2.4642062148923918], [7.390990112491771, 0.9989334381378165, -2.4424000638681242], [7.253723760958384, 0.9867058115307333, -2.419401322089806], [7.120377859491945, 0.974275060662104, -2.395135833289385], [6.99117674128638, 0.9616716955245617, -2.3695270334864915], [6.866354381924509, 0.9489328858561973, -2.34249671681948], [6.746153842950358, 0.9361031832578899, -2.313966088079344], [6.630826475760287, 0.923235210581589, -2.283857159653751], [6.520630854054154, 0.9103902761378818, -2.2520945520827467], [6.415831405387157, 0.8976388588196588, -2.2186077537219964], [6.316696716969319, 0.8850608984908216, -2.183333883405201], [6.223497498215897, 0.8727458152072399, -2.1462209773301826], [6.136504193002544, 0.8607921728833265, -2.1072317843996293], [6.055984248285806, 0.8493069003806806, -2.0663480002807266], [5.982199062597591, 0.8384039886811282, -2.023574798618434], [5.915400657428955, 0.8282026000073796, -1.9789454305499874], [5.855828135762527, 0.8188245562280022, -1.9325255683148304], [5.8037040136084554, 0.8103912210252099, -1.8844169790115965], [5.75923053053717, 0.8030198520151842, -1.8347600504206028], [5.722586061779913, 0.7968195706321654, -1.7837346763742954], [5.6939217653032195, 0.791887170353636, -1.731559067420733], [5.6733586003900225, 0.7883030453889712, -1.678486197627719], [5.660984848253425, 0.7861275582586285, -1.6247978271708667], [5.656854249492381, 0.7853981633974483, -1.5707963267948983], [5.660984848253425, 0.7861275582586283, -1.5167948264189302], [5.673358600390022, 0.788303045388971, -1.463106455962078], [5.693921765303217, 0.7918871703536356, -1.4100335861690638], [5.722586061779911, 0.796819570632165, -1.3578579772155013], [5.759230530537168, 0.8030198520151838, -1.3068326031691937], [5.803704013608452, 0.8103912210252093, -1.2571756745782001], [5.855828135762524, 0.8188245562280017, -1.209067085274966], [5.91540065742895, 0.8282026000073789, -1.1626472230398088], [5.982199062597585, 0.8384039886811274, -1.1180178549713622], [6.0559842482857995, 0.8493069003806798, -1.0752446533090696], [6.136504193002538, 0.8607921728833257, -1.0343608691901667], [6.223497498215891, 0.872745815207239, -0.995371676259613], [6.316696716969312, 0.8850608984908207, -0.9582587701845945], [6.415831405387149, 0.8976388588196579, -0.9229848998677994], [6.520630854054146, 0.9103902761378809, -0.8894981015070488], [6.630826475760279, 0.9232352105815881, -0.8577354939360443], [6.746153842950351, 0.936103183257889, -0.8276265655104512], [6.8663543819245, 0.9489328858561964, -0.799095936770315], [6.99117674128637, 0.9616716955245608, -0.7720656201033035], [7.120377859491937, 0.9742750606621032, -0.7464568203004098], [7.253723760958375, 0.9867058115307326, -0.7221913314999889], [7.390990112491761, 0.9989334381378158, -0.6991925897216703], [7.531962572259608, 1.0109333674478602, -0.6773864386974028], [7.67643696262777, 1.0226862630268567, -0.6567016621194349], [7.824219296312309, 1.0341773628238866, -0.6370703292756844], [7.97512568281426, 1.0453958648980861, -0.6184279943725202], [8.128982139289706, 1.0563343663564857, -0.6007137833109946], [8.285624327074466, 1.0669883573870043, -0.5838703956621157], [8.444897232189097, 1.0773557698483531, -0.5678440442634407], [8.606654805403297, 1.0874365782225275, -0.5525843502907147], [8.770759574906723, 1.0972324496748613, -0.5380442078256256], [8.93708224235259, 1.1067464393557633, -0.524179628782914], [9.1055012710251, 1.115982726797683, -0.5109495764966111], [9.27590247312978, 1.124946389215066, -0.4983157942103066], [9.448178601704157, 1.133643207629696, -0.48624263308750565], [9.62222895137583, 1.1420795019622365, -0.47469688308017566], [9.7979589711327, 1.150261991510931, -0.4636476090008068]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 0.8410686705679303, -2.677945044588987], [11.85695112550842, 0.8302250042023892, -2.666895770509618], [11.716146076662774, 0.8191829120817355, -2.655350020502288], [11.577666720501819, 0.807944821933451, -2.6432768593794873], [11.441597501950499, 0.796514158086715, -2.630643077093183], [11.30802542474035, 0.7848954670327121, -2.61741302480688], [11.177040016069467, 0.7730945548455816, -2.6035484457641687], [11.048733273066729, 0.7611186371039624, -2.5890083032990794], [10.923199589050602, 0.7489765018635599, -2.5737486093263535], [10.800535657522193, 0.7366786860936986, -2.5577222579276784], [10.6808403518118, 0.7242376657906282, -2.5408788702787994], [10.564214578315028, 0.7116680596986799, -2.523164659217274], [10.450761101316306, 0.6989868461836529, -2.50452232431411], [10.340584337511977, 0.686213592281767, -2.4848909914703596], [10.233790118520103, 0.673370693256306, -2.4642062148923918], [10.130485419907139, 0.660483620089788, -2.4424000638681242], [10.03077805557935, 0.6475811711722332, -2.419401322089806], [9.934776336784996, 0.6346957229602319, -2.395135833289385], [9.842588695455259, 0.6218634725190931, -2.3695270334864915], [9.754323272179056, 0.609124662567548, -2.34249671681948], [9.670087469757132, 0.5965237768829432, -2.313966088079344], [9.58998747400869, 0.5841096906896063, -2.283857159653751], [9.51412774429916, 0.5719357569988306, -2.2520945520827467], [9.442610477106006, 0.5600598059462162, -2.2186077537219964], [9.375535046821113, 0.548544030272404, -2.183333883405201], [9.312997428878607, 0.5374547266990511, -2.1462209773301826], [9.25508961116735, 0.526861860781505, -2.1072317843996293], [9.201899000504504, 0.5168384228472385, -2.0663480002807266], [9.153507831675434, 0.5074595460516106, -2.023574798618434], [9.109992587149065, 0.49880136569585537, -1.9789454305499874], [9.071423436020835, 0.4909396129028569, -1.9325255683148304], [9.037863700984591, 0.4839479561439322, -1.8844169790115965], [9.00936936216245, 0.4778961305375776, -1.8347600504206028], [8.985988606407073, 0.4728479253760603, -1.7837346763742954], [8.967761430222914, 0.46885913127836704, -1.731559067420733], [8.954719303731382, 0.4659755744229038, -1.678486197627719], [8.946884902140793, 0.46423138040690864, -1.6247978271708667], [8.94427190999916, 0.4636476090008061, -1.5707963267948983], [8.946884902140793, 0.46423138040690853, -1.5167948264189302], [8.95471930373138, 0.46597557442290366, -1.463106455962078], [8.967761430222913, 0.4688591312783668, -1.4100335861690638], [8.985988606407071, 0.4728479253760601, -1.3578579772155013], [9.009369362162449, 0.47789613053757724, -1.3068326031691937], [9.03786370098459, 0.48394795614393177, -1.2571756745782001], [9.071423436020831, 0.4909396129028564, -1.209067085274966], [9.109992587149062, 0.49880136569585487, -1.1626472230398088], [9.15350783167543, 0.5074595460516099, -1.1180178549713622], [9.2018990005045, 0.5168384228472378, -1.0752446533090696], [9.255089611167346, 0.5268618607815042, -1.0343608691901667], [9.312997428878601, 0.5374547266990504, -0.995371676259613], [9.37553504682111, 0.5485440302724032, -0.9582587701845945], [9.442610477106003, 0.5600598059462154, -0.9229848998677994], [9.514127744299154, 0.5719357569988297, -0.8894981015070488], [9.589987474008685, 0.5841096906896054, -0.8577354939360443], [9.670087469757126, 0.5965237768829423, -0.8276265655104512], [9.754323272179048, 0.6091246625675472, -0.799095936770315], [9.842588695455252, 0.6218634725190922, -0.7720656201033035], [9.934776336784989, 0.6346957229602311, -0.7464568203004098], [10.030778055579344, 0.6475811711722325, -0.7221913314999889], [10.130485419907131, 0.6604836200897871, -0.6991925897216703], [10.233790118520096, 0.6733706932563052, -0.6773864386974028], [10.34058433751197, 0.6862135922817663, -0.6567016621194349], [10.4507611013163, 0.698986846183652, -0.6370703292756844], [10.56421457831502, 0.7116680596986791, -0.6184279943725202], [10.680840351811792, 0.7242376657906274, -0.6007137833109946], [10.800535657522186, 0.7366786860936978, -0.5838703956621157], [10.923199589050594, 0.748976501863559, -0.5678440442634407], [11.048733273066722, 0.7611186371039617, -0.5525843502907147], [11.177040016069459, 0.7730945548455809, -0.5380442078256256], [11.308025424740341, 0.7848954670327113, -0.524179628782914], [11.441597501950492, 0.7965141580867143, -0.5109495764966111], [11.577666720501812, 0.8079448219334502, -0.4983157942103066], [11.716146076662765, 0.8191829120817349, -0.48624263308750565], [11.856951125508411, 0.8302250042023885, -0.47469688308017566], [11.999999999999991, 0.8410686705679296, -0.4636476090008068]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[11.313708498984761, 2.356194490192345, 3.141592653589793], [11.161867674932157, 2.3698922635652107, 3.141592653589793], [11.01217866226754, 2.3839651267857658, 3.141592653589793], [10.864730401211775, 2.3984228923053466, 3.141592653589793], [10.719615356748577, 2.413275272598609, 3.141592653589793], [10.576929564224875, 2.4285318207309396, 3.141592653589793], [10.436772658289446, 2.4442018637200853, 3.141592653589793], [10.299247882217994, 2.460294428301944, 3.141592653589793], [10.164462074415706, 2.4768181587724474, 3.141592653589793], [10.032525628644482, 2.493781226662694, 3.141592653589793], [9.903552424301656, 2.5111912321162855, 3.141592653589793], [9.777659722892986, 2.5290550969794894, 3.141592653589793], [9.65496802670967, 2.547378949789359, 3.141592653589793], [9.535600895654033, 2.566168003054508, 3.141592653589793], [9.419684718180312, 2.5854264234693396, 3.141592653589793], [9.30734843244579, 2.6051571959850612, 3.141592653589793], [9.198723194024932, 2.6253619829780446, 3.141592653589793], [9.093941986946204, 2.646040980103964, 3.141592653589793], [8.993139175388293, 2.667192770797885, 3.141592653589793], [8.896449994136646, 2.6888141817662565, 3.141592653589793], [8.804009976865876, 2.7109001422032843, 3.141592653589793], [8.715954322484922, 2.733443549834703, 3.141592653589793], [8.632417201157681, 2.756435147226318, 3.141592653589793], [8.553531003179454, 2.77986341206986, 3.141592653589793], [8.479425535622738, 2.803714465349514, 3.141592653589793], [8.410227173525072, 2.827972001373094, 3.141592653589793], [8.346057974321637, 2.852617243597226, 3.141592653589793], [8.287034766156456, 2.8776289299640876, 3.141592653589793], [8.233268222555578, 2.9029833310815913, 3.141592653589793], [8.184861937620628, 2.928654304010395, 3.141592653589793], [8.141911517302804, 2.954613383670881, 3.141592653589793], [8.104503703347596, 2.9808299129639573, 3.141592653589793], [8.07271554706788, 3.007271211636824, 3.141592653589793], [8.0466136501312, 3.0339027827569716, 3.141592653589793], [8.026253488981876, 3.0606885544345617, 3.141592653589793], [8.011678838334662, 3.087591153213824, 3.141592653589793], [8.002921307382378, 3.1145722044025272, 3.141592653589793], [8.0, 3.1415926535897922, 3.141592653589793]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[8.94427190999916, 2.0344439357957027, 3.141592653589793], [8.751416456362673, 2.0454932098750715, 3.141592653589793], [8.559677499164353, 2.0570389598824015, 3.141592653589793], [8.36913177641596, 2.0691121210052024, 3.141592653589793], [8.179862675903546, 2.0817459032915067, 3.141592653589793], [7.9919608987140425, 2.0949759555778096, 3.141592653589793], [7.805525191863655, 2.108840534620521, 3.141592653589793], [7.620663156141455, 2.1233806770856103, 3.141592653589793], [7.437492135272161, 2.138640371058336, 3.141592653589793], [7.256140192237769, 2.1546667224570113, 3.141592653589793], [7.0767471779689295, 2.17151011010589, 3.141592653589793], [6.899465896479507, 2.1892243211674156, 3.141592653589793], [6.7244633686849715, 2.2078666560705797, 3.141592653589793], [6.551922194379143, 2.22749798891433, 3.141592653589793], [6.382042007846683, 2.248182765492298, 3.141592653589793], [6.21504101699668, 2.2699889165165654, 3.141592653589793], [6.051157608283909, 2.2929876582948836, 3.141592653589793], [5.890651989546071, 2.317253147095305, 3.141592653589793], [5.733807829697787, 2.342861946898198, 3.141592653589793], [5.580933837466084, 2.3698922635652098, 3.141592653589793], [5.432365200605892, 2.3984228923053457, 3.141592653589793], [5.288464782112441, 2.4285318207309388, 3.141592653589793], [5.1496239411090015, 2.460294428301943, 3.141592653589793], [5.0162628143222445, 2.4937812266626933, 3.141592653589793], [4.888829861446497, 2.5290550969794885, 3.141592653589793], [4.767800447827019, 2.566168003054507, 3.141592653589793], [4.653674216222898, 2.6051571959850603, 3.141592653589793], [4.546970993473105, 2.646040980103963, 3.141592653589793], [4.4482249970683245, 2.6888141817662556, 3.141592653589793], [4.357977161242462, 2.733443549834702, 3.141592653589793], [4.276765501589729, 2.7798634120698593, 3.141592653589793], [4.205113586762537, 2.827972001373093, 3.141592653589793], [4.143517383078229, 2.8776289299640867, 3.141592653589793], [4.092430968810315, 2.928654304010394, 3.141592653589793], [4.052251851673798, 2.9808299129639564, 3.141592653589793], [4.0233068250656, 3.0339027827569707, 3.141592653589793], [4.005839419167331, 3.087591153213823, 3.141592653589793], [4.0, 3.1415926535897913, 3.141592653589793]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[8.0, 1.5707963267948966, 3.141592653589793], [7.783783783783784, 1.5707963267948966, 3.141592653589793], [7.567567567567568, 1.5707963267948966, 3.141592653589793], [7.351351351351353, 1.5707963267948966, 3.141592653589793], [7.135135135135137, 1.5707963267948966, 3.141592653589793], [6.918918918918921, 1.5707963267948966, 3.141592653589793], [6.702702702702705, 1.5707963267948966, 3.141592653589793], [6.4864864864864895, 1.5707963267948966, 3.141592653589793], [6.270270270270274, 1.5707963267948966, 3.141592653589793], [6.054054054054058, 1.5707963267948966, 3.141592653589793], [5.837837837837842, 1.5707963267948966, 3.141592653589793], [5.621621621621626, 1.5707963267948966, 3.141592653589793], [5.405405405405411, 1.5707963267948966, 3.141592653589793], [5.189189189189195, 1.5707963267948966, 3.141592653589793], [4.972972972972979, 1.5707963267948966, 3.141592653589793], [4.756756756756763, 1.5707963267948966, 3.141592653589793], [4.5405405405405475, 1.5707963267948966, 3.141592653589793], [4.324324324324332, 1.5707963267948966, 3.141592653589793], [4.108108108108116, 1.5707963267948966, 3.141592653589793], [3.8918918918918997, 1.5707963267948966, 3.141592653589793], [3.6756756756756834, 1.5707963267948966, 3.141592653589793], [3.459459459459467, 1.5707963267948966, 3.141592653589793], [3.243243243243251, 1.5707963267948966, 3.141592653589793], [3.0270270270270347, 1.5707963267948966, 3.141592653589793], [2.8108108108108185, 1.5707963267948966, 3.141592653589793], [2.5945945945946023, 1.5707963267948966, 3.141592653589793], [2.378378378378386, 1.5707963267948966, 3.141592653589793], [2.16216216216217, 1.5707963267948966, 3.141592653589793], [1.9459459459459536, 1.5707963267948966, 3.141592653589793], [1.7297297297297374, 1.5707963267948966, 3.141592653589793], [1.5135135135135211, 1.5707963267948966, 3.141592653589793], [1.297297297297305, 1.5707963267948966, 3.141592653589793], [1.0810810810810887, 1.5707963267948966, 3.141592653589793], [0.8648648648648725, 1.5707963267948966, 3.141592653589793], [0.6486486486486562, 1.5707963267948966, 3.141592653589793], [0.43243243243244, 1.5707963267948966, 3.141592653589793], [0.21621621621622378, 1.5707963267948966, 3.141592653589793], [7.549516567451064e-15, 1.5707963267948966, 3.141592653589793]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[8.94427190999916, 1.1071487177940904, 3.141592653589793], [8.751416456362673, 1.0960994437147218, 3.141592653589793], [8.559677499164353, 1.0845536937073916, 3.141592653589793], [8.36913177641596, 1.0724805325845908, 3.141592653589793], [8.179862675903546, 1.0598467502982865, 3.141592653589793], [7.9919608987140425, 1.0466166980119835, 3.141592653589793], [7.805525191863655, 1.032752118969272, 3.141592653589793], [7.620663156141455, 1.0182119765041828, 3.141592653589793], [7.437492135272161, 1.002952282531457, 3.141592653589793], [7.256140192237769, 0.9869259311327819, 3.141592653589793], [7.0767471779689295, 0.9700825434839032, 3.141592653589793], [6.899465896479507, 0.9523683324223776, 3.141592653589793], [6.7244633686849715, 0.9337259975192135, 3.141592653589793], [6.551922194379143, 0.914094664675463, 3.141592653589793], [6.382042007846683, 0.8934098880974952, 3.141592653589793], [6.21504101699668, 0.8716037370732278, 3.141592653589793], [6.051157608283909, 0.8486049952949093, 3.141592653589793], [5.890651989546071, 0.8243395064944884, 3.141592653589793], [5.733807829697787, 0.798730706691595, 3.141592653589793], [5.580933837466084, 0.7717003900245836, 3.141592653589793], [5.432365200605892, 0.7431697612844474, 3.141592653589793], [5.288464782112441, 0.7130608328588545, 3.141592653589793], [5.1496239411090015, 0.6812982252878501, 3.141592653589793], [5.0162628143222445, 0.6478114269270997, 3.141592653589793], [4.888829861446497, 0.6125375566103046, 3.141592653589793], [4.767800447827019, 0.5754246505352862, 3.141592653589793], [4.653674216222898, 0.5364354576047327, 3.141592653589793], [4.546970993473105, 0.49555167348583, 3.141592653589793], [4.4482249970683245, 0.4527784718235375, 3.141592653589793], [4.357977161242462, 0.4081491037550909, 3.141592653589793], [4.276765501589729, 0.3617292415199339, 3.141592653589793], [4.205113586762537, 0.3136206522167, 3.141592653589793], [4.143517383078229, 0.26396372362570636, 3.141592653589793], [4.092430968810315, 0.21293834957939897, 3.141592653589793], [4.052251851673798, 0.16076274062583656, 3.141592653589793], [4.0233068250656, 0.10768987083282255, 3.141592653589793], [4.005839419167331, 0.05400150037597017, 3.141592653589793], [4.0, 1.887379141862766e-15, 3.141592653589793]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[11.313708498984761, 0.7853981633974483, 3.141592653589793], [11.161867674932157, 0.7717003900245826, 3.141592653589793], [11.01217866226754, 0.7576275268040273, 3.141592653589793], [10.864730401211775, 0.7431697612844465, 3.141592653589793], [10.719615356748577, 0.7283173809911838, 3.141592653589793], [10.576929564224875, 0.7130608328588535, 3.141592653589793], [10.436772658289446, 0.6973907898697077, 3.141592653589793], [10.299247882217994, 0.6812982252878492, 3.141592653589793], [10.164462074415706, 0.6647744948173459, 3.141592653589793], [10.032525628644482, 0.6478114269270987, 3.141592653589793], [9.903552424301656, 0.6304014214735076, 3.141592653589793], [9.777659722892986, 0.6125375566103037, 3.141592653589793], [9.65496802670967, 0.5942137038004344, 3.141592653589793], [9.535600895654033, 0.5754246505352854, 3.141592653589793], [9.419684718180312, 0.5561662301204535, 3.141592653589793], [9.30734843244579, 0.5364354576047319, 3.141592653589793], [9.198723194024932, 0.5162306706117485, 3.141592653589793], [9.093941986946204, 0.49555167348582924, 3.141592653589793], [8.993139175388293, 0.47439988279190815, 3.141592653589793], [8.896449994136646, 0.4527784718235367, 3.141592653589793], [8.804009976865876, 0.43069251138650877, 3.141592653589793], [8.715954322484922, 0.4081491037550901, 3.141592653589793], [8.632417201157681, 0.385157506363475, 3.141592653589793], [8.553531003179454, 0.3617292415199331, 3.141592653589793], [8.479425535622738, 0.33787818824027926, 3.141592653589793], [8.410227173525072, 0.31362065221669916, 3.141592653589793], [8.346057974321637, 0.2889754099925673, 3.141592653589793], [8.287034766156456, 0.26396372362570547, 3.141592653589793], [8.233268222555578, 0.23860932250820185, 3.141592653589793], [8.184861937620628, 0.21293834957939806, 3.141592653589793], [8.141911517302804, 0.186979269918912, 3.141592653589793], [8.104503703347596, 0.16076274062583565, 3.141592653589793], [8.07271554706788, 0.13432144195296944, 3.141592653589793], [8.0466136501312, 0.10768987083282162, 3.141592653589793], [8.026253488981876, 0.08090409915523153, 3.141592653589793], [8.011678838334662, 0.054001500375969236, 3.141592653589793], [8.002921307382378, 0.027020449187265733, 3.141592653589793], [8.0, 9.43689570931383e-16, 3.141592653589793]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 2.3005239830218627, 2.677945044588987], [11.85695112550842, 2.311367649387404, 2.666895770509618], [11.716146076662774, 2.3224097415080576, 2.655350020502288], [11.577666720501819, 2.333647831656342, 2.6432768593794873], [11.441597501950499, 2.345078495503078, 2.630643077093183], [11.30802542474035, 2.356697186557081, 2.61741302480688], [11.177040016069467, 2.3684980987442117, 2.6035484457641687], [11.048733273066729, 2.380474016485831, 2.5890083032990794], [10.923199589050602, 2.392616151726233, 2.5737486093263535], [10.800535657522193, 2.4049139674960944, 2.5577222579276784], [10.6808403518118, 2.4173549877991647, 2.5408788702787994], [10.564214578315028, 2.4299245938911134, 2.523164659217274], [10.450761101316306, 2.44260580740614, 2.50452232431411], [10.340584337511977, 2.455379061308026, 2.4848909914703596], [10.233790118520103, 2.468221960333487, 2.4642062148923918], [10.130485419907139, 2.481109033500005, 2.4424000638681242], [10.03077805557935, 2.4940114824175597, 2.419401322089806], [9.934776336784996, 2.506896930629561, 2.395135833289385], [9.842588695455259, 2.5197291810707, 2.3695270334864915], [9.754323272179056, 2.532467991022245, 2.34249671681948], [9.670087469757132, 2.54506887670685, 2.313966088079344], [9.58998747400869, 2.557482962900187, 2.283857159653751], [9.51412774429916, 2.5696568965909625, 2.2520945520827467], [9.442610477106006, 2.581532847643577, 2.2186077537219964], [9.375535046821113, 2.5930486233173893, 2.183333883405201], [9.312997428878607, 2.604137926890742, 2.1462209773301826], [9.25508961116735, 2.614730792808288, 2.1072317843996293], [9.201899000504504, 2.6247542307425547, 2.0663480002807266], [9.153507831675434, 2.6341331075381826, 2.023574798618434], [9.109992587149065, 2.642791287893938, 1.9789454305499874], [9.071423436020835, 2.650653040686936, 1.9325255683148304], [9.037863700984591, 2.657644697445861, 1.8844169790115965], [9.00936936216245, 2.6636965230522156, 1.8347600504206028], [8.985988606407073, 2.6687447282137327, 1.7837346763742954], [8.967761430222914, 2.672733522311426, 1.731559067420733], [8.954719303731382, 2.6756170791668894, 1.678486197627719], [8.946884902140793, 2.6773612731828846, 1.6247978271708667], [8.94427190999916, 2.677945044588987, 1.5707963267948983], [8.946884902140793, 2.6773612731828846, 1.5167948264189302], [8.95471930373138, 2.6756170791668894, 1.463106455962078], [8.967761430222913, 2.672733522311426, 1.4100335861690638], [8.985988606407071, 2.668744728213733, 1.3578579772155013], [9.009369362162449, 2.663696523052216, 1.3068326031691937], [9.03786370098459, 2.6576446974458614, 1.2571756745782001], [9.071423436020831, 2.6506530406869366, 1.209067085274966], [9.109992587149062, 2.6427912878939384, 1.1626472230398088], [9.15350783167543, 2.634133107538183, 1.1180178549713622], [9.2018990005045, 2.624754230742555, 1.0752446533090696], [9.255089611167346, 2.614730792808289, 1.0343608691901667], [9.312997428878601, 2.6041379268907425, 0.995371676259613], [9.37553504682111, 2.59304862331739, 0.9582587701845945], [9.442610477106003, 2.5815328476435777, 0.9229848998677994], [9.514127744299154, 2.5696568965909634, 0.8894981015070488], [9.589987474008685, 2.557482962900188, 0.8577354939360443], [9.670087469757126, 2.545068876706851, 0.8276265655104512], [9.754323272179048, 2.532467991022246, 0.799095936770315], [9.842588695455252, 2.519729181070701, 0.7720656201033035], [9.934776336784989, 2.506896930629562, 0.7464568203004098], [10.030778055579344, 2.4940114824175605, 0.7221913314999889], [10.130485419907131, 2.481109033500006, 0.6991925897216703], [10.233790118520096, 2.468221960333488, 0.6773864386974028], [10.34058433751197, 2.455379061308027, 0.6567016621194349], [10.4507611013163, 2.442605807406141, 0.6370703292756844], [10.56421457831502, 2.429924593891114, 0.6184279943725202], [10.680840351811792, 2.4173549877991656, 0.6007137833109946], [10.800535657522186, 2.4049139674960953, 0.5838703956621157], [10.923199589050594, 2.392616151726234, 0.5678440442634407], [11.048733273066722, 2.3804740164858313, 0.5525843502907147], [11.177040016069459, 2.368498098744212, 0.5380442078256256], [11.308025424740341, 2.356697186557082, 0.524179628782914], [11.441597501950492, 2.3450784955030786, 0.5109495764966111], [11.577666720501812, 2.333647831656343, 0.4983157942103066], [11.716146076662765, 2.322409741508058, 0.48624263308750565], [11.856951125508411, 2.3113676493874045, 0.47469688308017566], [11.999999999999991, 2.3005239830218636, 0.4636476090008068]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.797958971132712, 1.9913306620788616, 2.677945044588987], [9.62222895137584, 1.999513151627556, 2.666895770509618], [9.448178601704168, 2.0079494459600964, 2.655350020502288], [9.27590247312979, 2.0166462643747267, 2.6432768593794873], [9.10550127102511, 2.02560992679211, 2.630643077093183], [8.9370822423526, 2.034846214234029, 2.61741302480688], [8.770759574906734, 2.0443602039149313, 2.6035484457641687], [8.606654805403307, 2.054156075367265, 2.5890083032990794], [8.444897232189108, 2.0642368837414393, 2.5737486093263535], [8.285624327074476, 2.0746042962027884, 2.5577222579276784], [8.128982139289716, 2.085258287233307, 2.5408788702787994], [7.975125682814269, 2.0961967886917066, 2.523164659217274], [7.824219296312318, 2.107415290765906, 2.50452232431411], [7.67643696262778, 2.1189063905629357, 2.4848909914703596], [7.5319625722596175, 2.130659286141932, 2.4642062148923918], [7.390990112491771, 2.1426592154519764, 2.4424000638681242], [7.253723760958384, 2.1548868420590597, 2.419401322089806], [7.120377859491945, 2.167317592927689, 2.395135833289385], [6.99117674128638, 2.1799209580652317, 2.3695270334864915], [6.866354381924509, 2.1926597677335957, 2.34249671681948], [6.746153842950358, 2.2054894703319032, 2.313966088079344], [6.630826475760287, 2.218357443008204, 2.283857159653751], [6.520630854054154, 2.231202377451911, 2.2520945520827467], [6.415831405387157, 2.2439537947701345, 2.2186077537219964], [6.316696716969319, 2.2565317550989716, 2.183333883405201], [6.223497498215897, 2.268846838382553, 2.1462209773301826], [6.136504193002544, 2.280800480706467, 2.1072317843996293], [6.055984248285806, 2.2922857532091125, 2.0663480002807266], [5.982199062597591, 2.303188664908665, 2.023574798618434], [5.915400657428955, 2.3133900535824137, 1.9789454305499874], [5.855828135762527, 2.322768097361791, 1.9325255683148304], [5.8037040136084554, 2.3312014325645833, 1.8844169790115965], [5.75923053053717, 2.338572801574609, 1.8347600504206028], [5.722586061779913, 2.344773082957628, 1.7837346763742954], [5.6939217653032195, 2.349705483236157, 1.731559067420733], [5.6733586003900225, 2.353289608200822, 1.678486197627719], [5.660984848253425, 2.355465095331165, 1.6247978271708667], [5.656854249492381, 2.356194490192345, 1.5707963267948983], [5.660984848253425, 2.355465095331165, 1.5167948264189302], [5.673358600390022, 2.3532896082008223, 1.463106455962078], [5.693921765303217, 2.3497054832361575, 1.4100335861690638], [5.722586061779911, 2.3447730829576283, 1.3578579772155013], [5.759230530537168, 2.3385728015746094, 1.3068326031691937], [5.803704013608452, 2.331201432564584, 1.2571756745782001], [5.855828135762524, 2.3227680973617915, 1.209067085274966], [5.91540065742895, 2.313390053582414, 1.1626472230398088], [5.982199062597585, 2.3031886649086655, 1.1180178549713622], [6.0559842482857995, 2.2922857532091134, 1.0752446533090696], [6.136504193002538, 2.2808004807064677, 1.0343608691901667], [6.223497498215891, 2.268846838382554, 0.995371676259613], [6.316696716969312, 2.2565317550989725, 0.9582587701845945], [6.415831405387149, 2.2439537947701353, 0.9229848998677994], [6.520630854054146, 2.231202377451912, 0.8894981015070488], [6.630826475760279, 2.218357443008205, 0.8577354939360443], [6.746153842950351, 2.205489470331904, 0.8276265655104512], [6.8663543819245, 2.1926597677335966, 0.799095936770315], [6.99117674128637, 2.1799209580652326, 0.7720656201033035], [7.120377859491937, 2.1673175929276898, 0.7464568203004098], [7.253723760958375, 2.1548868420590606, 0.7221913314999889], [7.390990112491761, 2.1426592154519772, 0.6991925897216703], [7.531962572259608, 2.130659286141933, 0.6773864386974028], [7.67643696262777, 2.1189063905629366, 0.6567016621194349], [7.824219296312309, 2.1074152907659065, 0.6370703292756844], [7.97512568281426, 2.096196788691707, 0.6184279943725202], [8.128982139289706, 2.0852582872333074, 0.6007137833109946], [8.285624327074466, 2.074604296202789, 0.5838703956621157], [8.444897232189097, 2.06423688374144, 0.5678440442634407], [8.606654805403297, 2.0541560753672656, 0.5525843502907147], [8.770759574906723, 2.044360203914932, 0.5380442078256256], [8.93708224235259, 2.0348462142340296, 0.524179628782914], [9.1055012710251, 2.02560992679211, 0.5109495764966111], [9.27590247312978, 2.016646264374727, 0.4983157942103066], [9.448178601704157, 2.0079494459600973, 0.48624263308750565], [9.62222895137583, 1.9995131516275566, 0.47469688308017566], [9.7979589711327, 1.9913306620788622, 0.4636476090008068]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[8.94427190999916, 1.5707963267948966, 2.677945044588987], [8.751416456362673, 1.5707963267948966, 2.666895770509618], [8.559677499164353, 1.5707963267948966, 2.655350020502288], [8.36913177641596, 1.5707963267948966, 2.6432768593794873], [8.179862675903546, 1.5707963267948966, 2.630643077093183], [7.9919608987140425, 1.5707963267948966, 2.61741302480688], [7.805525191863655, 1.5707963267948966, 2.6035484457641687], [7.620663156141455, 1.5707963267948966, 2.5890083032990794], [7.437492135272161, 1.5707963267948966, 2.5737486093263535], [7.256140192237769, 1.5707963267948966, 2.5577222579276784], [7.0767471779689295, 1.5707963267948966, 2.5408788702787994], [6.899465896479507, 1.5707963267948966, 2.523164659217274], [6.7244633686849715, 1.5707963267948966, 2.50452232431411], [6.551922194379143, 1.5707963267948966, 2.4848909914703596], [6.382042007846683, 1.5707963267948966, 2.4642062148923918], [6.21504101699668, 1.5707963267948966, 2.4424000638681242], [6.051157608283909, 1.5707963267948966, 2.419401322089806], [5.890651989546071, 1.5707963267948966, 2.395135833289385], [5.733807829697787, 1.5707963267948966, 2.3695270334864915], [5.580933837466084, 1.5707963267948966, 2.34249671681948], [5.432365200605892, 1.5707963267948966, 2.313966088079344], [5.288464782112441, 1.5707963267948966, 2.283857159653751], [5.1496239411090015, 1.5707963267948966, 2.2520945520827467], [5.0162628143222445, 1.5707963267948966, 2.2186077537219964], [4.888829861446497, 1.5707963267948966, 2.183333883405201], [4.767800447827019, 1.5707963267948966, 2.1462209773301826], [4.653674216222898, 1.5707963267948966, 2.1072317843996293], [4.546970993473105, 1.5707963267948966, 2.0663480002807266], [4.4482249970683245, 1.5707963267948966, 2.023574798618434], [4.357977161242462, 1.5707963267948966, 1.9789454305499874], [4.276765501589729, 1.5707963267948966, 1.9325255683148304], [4.205113586762537, 1.5707963267948966, 1.8844169790115965], [4.143517383078229, 1.5707963267948966, 1.8347600504206028], [4.092430968810315, 1.5707963267948966, 1.7837346763742954], [4.052251851673798, 1.5707963267948966, 1.731559067420733], [4.0233068250656, 1.5707963267948966, 1.678486197627719], [4.005839419167331, 1.5707963267948966, 1.6247978271708667], [4.0, 1.5707963267948966, 1.5707963267948983], [4.00583941916733, 1.5707963267948966, 1.5167948264189302], [4.023306825065598, 1.5707963267948966, 1.463106455962078], [4.0522518516737955, 1.5707963267948966, 1.4100335861690638], [4.092430968810312, 1.5707963267948966, 1.3578579772155013], [4.143517383078225, 1.5707963267948966, 1.3068326031691937], [4.205113586762533, 1.5707963267948966, 1.2571756745782001], [4.276765501589724, 1.5707963267948966, 1.209067085274966], [4.357977161242457, 1.5707963267948966, 1.1626472230398088], [4.448224997068317, 1.5707963267948966, 1.1180178549713622], [4.5469709934730975, 1.5707963267948966, 1.0752446533090696], [4.65367421622289, 1.5707963267948966, 1.0343608691901667], [4.767800447827011, 1.5707963267948966, 0.995371676259613], [4.888829861446488, 1.5707963267948966, 0.9582587701845945], [5.016262814322236, 1.5707963267948966, 0.9229848998677994], [5.149623941108992, 1.5707963267948966, 0.8894981015070488], [5.288464782112431, 1.5707963267948966, 0.8577354939360443], [5.432365200605882, 1.5707963267948966, 0.8276265655104512], [5.580933837466073, 1.5707963267948966, 0.799095936770315], [5.733807829697776, 1.5707963267948966, 0.7720656201033035], [5.890651989546061, 1.5707963267948966, 0.7464568203004098], [6.0511576082839, 1.5707963267948966, 0.7221913314999889], [6.215041016996668, 1.5707963267948966, 0.6991925897216703], [6.382042007846671, 1.5707963267948966, 0.6773864386974028], [6.551922194379133, 1.5707963267948966, 0.6567016621194349], [6.72446336868496, 1.5707963267948966, 0.6370703292756844], [6.899465896479495, 1.5707963267948966, 0.6184279943725202], [7.076747177968918, 1.5707963267948966, 0.6007137833109946], [7.2561401922377575, 1.5707963267948966, 0.5838703956621157], [7.437492135272149, 1.5707963267948966, 0.5678440442634407], [7.620663156141443, 1.5707963267948966, 0.5525843502907147], [7.805525191863643, 1.5707963267948966, 0.5380442078256256], [7.99196089871403, 1.5707963267948966, 0.524179628782914], [8.179862675903534, 1.5707963267948966, 0.5109495764966111], [8.369131776415948, 1.5707963267948966, 0.4983157942103066], [8.559677499164343, 1.5707963267948966, 0.48624263308750565], [8.75141645636266, 1.5707963267948966, 0.47469688308017566], [8.944271909999147, 1.5707963267948966, 0.4636476090008068]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.797958971132712, 1.1502619915109316, 2.677945044588987], [9.62222895137584, 1.1420795019622372, 2.666895770509618], [9.448178601704168, 1.1336432076296965, 2.655350020502288], [9.27590247312979, 1.1249463892150664, 2.6432768593794873], [9.10550127102511, 1.1159827267976834, 2.630643077093183], [8.9370822423526, 1.106746439355764, 2.61741302480688], [8.770759574906734, 1.097232449674862, 2.6035484457641687], [8.606654805403307, 1.0874365782225281, 2.5890083032990794], [8.444897232189108, 1.0773557698483538, 2.5737486093263535], [8.285624327074476, 1.066988357387005, 2.5577222579276784], [8.128982139289716, 1.0563343663564864, 2.5408788702787994], [7.975125682814269, 1.0453958648980868, 2.523164659217274], [7.824219296312318, 1.0341773628238873, 2.50452232431411], [7.67643696262778, 1.0226862630268576, 2.4848909914703596], [7.5319625722596175, 1.010933367447861, 2.4642062148923918], [7.390990112491771, 0.9989334381378165, 2.4424000638681242], [7.253723760958384, 0.9867058115307333, 2.419401322089806], [7.120377859491945, 0.974275060662104, 2.395135833289385], [6.99117674128638, 0.9616716955245617, 2.3695270334864915], [6.866354381924509, 0.9489328858561973, 2.34249671681948], [6.746153842950358, 0.9361031832578899, 2.313966088079344], [6.630826475760287, 0.923235210581589, 2.283857159653751], [6.520630854054154, 0.9103902761378818, 2.2520945520827467], [6.415831405387157, 0.8976388588196588, 2.2186077537219964], [6.316696716969319, 0.8850608984908216, 2.183333883405201], [6.223497498215897, 0.8727458152072399, 2.1462209773301826], [6.136504193002544, 0.8607921728833265, 2.1072317843996293], [6.055984248285806, 0.8493069003806806, 2.0663480002807266], [5.982199062597591, 0.8384039886811282, 2.023574798618434], [5.915400657428955, 0.8282026000073796, 1.9789454305499874], [5.855828135762527, 0.8188245562280022, 1.9325255683148304], [5.8037040136084554, 0.8103912210252099, 1.8844169790115965], [5.75923053053717, 0.8030198520151842, 1.8347600504206028], [5.722586061779913, 0.7968195706321654, 1.7837346763742954], [5.6939217653032195, 0.791887170353636, 1.731559067420733], [5.6733586003900225, 0.7883030453889712, 1.678486197627719], [5.660984848253425, 0.7861275582586285, 1.6247978271708667], [5.656854249492381, 0.7853981633974483, 1.5707963267948983], [5.660984848253425, 0.7861275582586283, 1.5167948264189302], [5.673358600390022, 0.788303045388971, 1.463106455962078], [5.693921765303217, 0.7918871703536356, 1.4100335861690638], [5.722586061779911, 0.796819570632165, 1.3578579772155013], [5.759230530537168, 0.8030198520151838, 1.3068326031691937], [5.803704013608452, 0.8103912210252093, 1.2571756745782001], [5.855828135762524, 0.8188245562280017, 1.209067085274966], [5.91540065742895, 0.8282026000073789, 1.1626472230398088], [5.982199062597585, 0.8384039886811274, 1.1180178549713622], [6.0559842482857995, 0.8493069003806798, 1.0752446533090696], [6.136504193002538, 0.8607921728833257, 1.0343608691901667], [6.223497498215891, 0.872745815207239, 0.995371676259613], [6.316696716969312, 0.8850608984908207, 0.9582587701845945], [6.415831405387149, 0.8976388588196579, 0.9229848998677994], [6.520630854054146, 0.9103902761378809, 0.8894981015070488], [6.630826475760279, 0.9232352105815881, 0.8577354939360443], [6.746153842950351, 0.936103183257889, 0.8276265655104512], [6.8663543819245, 0.9489328858561964, 0.799095936770315], [6.99117674128637, 0.9616716955245608, 0.7720656201033035], [7.120377859491937, 0.9742750606621032, 0.7464568203004098], [7.253723760958375, 0.9867058115307326, 0.7221913314999889], [7.390990112491761, 0.9989334381378158, 0.6991925897216703], [7.531962572259608, 1.0109333674478602, 0.6773864386974028], [7.67643696262777, 1.0226862630268567, 0.6567016621194349], [7.824219296312309, 1.0341773628238866, 0.6370703292756844], [7.97512568281426, 1.0453958648980861, 0.6184279943725202], [8.128982139289706, 1.0563343663564857, 0.6007137833109946], [8.285624327074466, 1.0669883573870043, 0.5838703956621157], [8.444897232189097, 1.0773557698483531, 0.5678440442634407], [8.606654805403297, 1.0874365782225275, 0.5525843502907147], [8.770759574906723, 1.0972324496748613, 0.5380442078256256], [8.93708224235259, 1.1067464393557633, 0.524179628782914], [9.1055012710251, 1.115982726797683, 0.5109495764966111], [9.27590247312978, 1.124946389215066, 0.4983157942103066], [9.448178601704157, 1.133643207629696, 0.48624263308750565], [9.62222895137583, 1.1420795019622365, 0.47469688308017566], [9.7979589711327, 1.150261991510931, 0.4636476090008068]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 0.8410686705679303, 2.677945044588987], [11.85695112550842, 0.8302250042023892, 2.666895770509618], [11.716146076662774, 0.8191829120817355, 2.655350020502288], [11.577666720501819, 0.807944821933451, 2.6432768593794873], [11.441597501950499, 0.796514158086715, 2.630643077093183], [11.30802542474035, 0.7848954670327121, 2.61741302480688], [11.177040016069467, 0.7730945548455816, 2.6035484457641687], [11.048733273066729, 0.7611186371039624, 2.5890083032990794], [10.923199589050602, 0.7489765018635599, 2.5737486093263535], [10.800535657522193, 0.7366786860936986, 2.5577222579276784], [10.6808403518118, 0.7242376657906282, 2.5408788702787994], [10.564214578315028, 0.7116680596986799, 2.523164659217274], [10.450761101316306, 0.6989868461836529, 2.50452232431411], [10.340584337511977, 0.686213592281767, 2.4848909914703596], [10.233790118520103, 0.673370693256306, 2.4642062148923918], [10.130485419907139, 0.660483620089788, 2.4424000638681242], [10.03077805557935, 0.6475811711722332, 2.419401322089806], [9.934776336784996, 0.6346957229602319, 2.395135833289385], [9.842588695455259, 0.6218634725190931, 2.3695270334864915], [9.754323272179056, 0.609124662567548, 2.34249671681948], [9.670087469757132, 0.5965237768829432, 2.313966088079344], [9.58998747400869, 0.5841096906896063, 2.283857159653751], [9.51412774429916, 0.5719357569988306, 2.2520945520827467], [9.442610477106006, 0.5600598059462162, 2.2186077537219964], [9.375535046821113, 0.548544030272404, 2.183333883405201], [9.312997428878607, 0.5374547266990511, 2.1462209773301826], [9.25508961116735, 0.526861860781505, 2.1072317843996293], [9.201899000504504, 0.5168384228472385, 2.0663480002807266], [9.153507831675434, 0.5074595460516106, 2.023574798618434], [9.109992587149065, 0.49880136569585537, 1.9789454305499874], [9.071423436020835, 0.4909396129028569, 1.9325255683148304], [9.037863700984591, 0.4839479561439322, 1.8844169790115965], [9.00936936216245, 0.4778961305375776, 1.8347600504206028], [8.985988606407073, 0.4728479253760603, 1.7837346763742954], [8.967761430222914, 0.46885913127836704, 1.731559067420733], [8.954719303731382, 0.4659755744229038, 1.678486197627719], [8.946884902140793, 0.46423138040690864, 1.6247978271708667], [8.94427190999916, 0.4636476090008061, 1.5707963267948983], [8.946884902140793, 0.46423138040690853, 1.5167948264189302], [8.95471930373138, 0.46597557442290366, 1.463106455962078], [8.967761430222913, 0.4688591312783668, 1.4100335861690638], [8.985988606407071, 0.4728479253760601, 1.3578579772155013], [9.009369362162449, 0.47789613053757724, 1.3068326031691937], [9.03786370098459, 0.48394795614393177, 1.2571756745782001], [9.071423436020831, 0.4909396129028564, 1.209067085274966], [9.109992587149062, 0.49880136569585487, 1.1626472230398088], [9.15350783167543, 0.5074595460516099, 1.1180178549713622], [9.2018990005045, 0.5168384228472378, 1.0752446533090696], [9.255089611167346, 0.5268618607815042, 1.0343608691901667], [9.312997428878601, 0.5374547266990504, 0.995371676259613], [9.37553504682111, 0.5485440302724032, 0.9582587701845945], [9.442610477106003, 0.5600598059462154, 0.9229848998677994], [9.514127744299154, 0.5719357569988297, 0.8894981015070488], [9.589987474008685, 0.5841096906896054, 0.8577354939360443], [9.670087469757126, 0.5965237768829423, 0.8276265655104512], [9.754323272179048, 0.6091246625675472, 0.799095936770315], [9.842588695455252, 0.6218634725190922, 0.7720656201033035], [9.934776336784989, 0.6346957229602311, 0.7464568203004098], [10.030778055579344, 0.6475811711722325, 0.7221913314999889], [10.130485419907131, 0.6604836200897871, 0.6991925897216703], [10.233790118520096, 0.6733706932563052, 0.6773864386974028], [10.34058433751197, 0.6862135922817663, 0.6567016621194349], [10.4507611013163, 0.698986846183652, 0.6370703292756844], [10.56421457831502, 0.7116680596986791, 0.6184279943725202], [10.680840351811792, 0.7242376657906274, 0.6007137833109946], [10.800535657522186, 0.7366786860936978, 0.5838703956621157], [10.923199589050594, 0.748976501863559, 0.5678440442634407], [11.048733273066722, 0.7611186371039617, 0.5525843502907147], [11.177040016069459, 0.7730945548455809, 0.5380442078256256], [11.308025424740341, 0.7848954670327113, 0.524179628782914], [11.441597501950492, 0.7965141580867143, 0.5109495764966111], [11.577666720501812, 0.8079448219334502, 0.4983157942103066], [11.716146076662765, 0.8191829120817349, 0.48624263308750565], [11.856951125508411, 0.8302250042023885, 0.47469688308017566], [11.999999999999991, 0.8410686705679296, 0.4636476090008068]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[13.856406460551018, 2.186276035465284, 2.356194490192345], [13.73270876384901, 2.192659767733596, 2.342496716819479], [13.611321717221312, 2.1990663494909954, 2.328423853598924], [13.492307685900709, 2.2054894703319037, 2.3139660880793427], [13.375730013597012, 2.2119222946510666, 2.2991137077860806], [13.261652951520567, 2.2183574430082045, 2.28385715965375], [13.150141577976191, 2.224786975474495, 2.2681871166646044], [13.041261708108301, 2.2312023774519116, 2.252094552082746], [12.93507979342359, 2.237594548502693, 2.2355708216122423], [12.831662810774306, 2.2439537947701345, 2.2186077537219955], [12.731078140553974, 2.250269825611703, 2.201197748268404], [12.633393433938632, 2.2565317550989716, 2.1833338834052003], [12.538676469100956, 2.2627281090636853, 2.165010030595331], [12.44699499643179, 2.2688468383825535, 2.1462209773301817], [12.358416572923884, 2.27487533919217, 2.12696255691535], [12.273008386005085, 2.280800480706467, 2.1072317843996284], [12.190837067252284, 2.286608641269134, 2.087026997406645], [12.111968496571608, 2.292285753209113, 2.0663480002807257], [12.036467597592893, 2.297817356975726, 2.0451962095868046], [11.964398125195178, 2.303188664908665, 2.023574798618433], [11.89582244625204, 2.3083846348452517, 2.0014888381814053], [11.830801314857906, 2.3133900535824137, 1.9789454305499865], [11.769393643465367, 2.3181896299943996, 1.9559538331583715], [11.711656271525055, 2.322768097361791, 1.9325255683148295], [11.657643733369577, 2.327110324197196, 1.9086745150351758], [11.60740802721691, 2.3312014325645833, 1.8844169790115957], [11.560998387282035, 2.3350269225912417, 1.8597717367874638], [11.518461061074339, 2.338572801574609, 1.8347600504206019], [11.479839094017978, 2.3418257158034015, 1.8094056493030983], [11.445172123559825, 2.344773082957628, 1.7837346763742945], [11.414496184921525, 2.347403222739961, 1.7577755967138085], [11.387843530606437, 2.349705483236157, 1.7315590674207322], [11.36524246568772, 2.3516703604181086, 1.705117768747866], [11.346717200780045, 2.353289608200822, 1.6784861976277181], [11.332287724435597, 2.3545563365517723, 1.651700425950128], [11.32196969650685, 2.355465095331165, 1.6247978271708656], [11.315774363787698, 2.35601194181297, 1.5978167759821622], [11.313708498984761, 2.356194490192345, 1.5707963267948974], [11.315774363787698, 2.35601194181297, 1.5437758776076327], [11.32196969650685, 2.355465095331165, 1.5167948264189293], [11.332287724435597, 2.3545563365517728, 1.4898922276396669], [11.346717200780043, 2.353289608200822, 1.4631064559620768], [11.365242465687716, 2.3516703604181086, 1.436474884841929], [11.387843530606437, 2.3497054832361575, 1.410033586169063], [11.414496184921523, 2.3474032227399615, 1.3838170568759864], [11.445172123559823, 2.344773082957628, 1.3578579772155004], [11.479839094017974, 2.341825715803402, 1.3321870042866966], [11.518461061074335, 2.3385728015746094, 1.3068326031691928], [11.560998387282032, 2.335026922591242, 1.2818209168023311], [11.607408027216906, 2.331201432564584, 1.2571756745781992], [11.657643733369573, 2.3271103241971964, 1.232918138554619], [11.711656271525051, 2.3227680973617915, 1.2090670852749652], [11.769393643465364, 2.3181896299944, 1.1856388204314232], [11.830801314857903, 2.313390053582414, 1.1626472230398082], [11.895822446252035, 2.308384634845252, 1.1401038154083893], [11.964398125195173, 2.3031886649086655, 1.1180178549713613], [12.036467597592889, 2.2978173569757265, 1.09639644400299], [12.111968496571603, 2.292285753209113, 1.0752446533090687], [12.190837067252277, 2.286608641269134, 1.0545656561831496], [12.273008386005078, 2.2808004807064672, 1.034360869190166], [12.358416572923877, 2.27487533919217, 1.0146300966744444], [12.446994996431783, 2.268846838382554, 0.9953716762596124], [12.53867646910095, 2.2627281090636853, 0.9765826229944635], [12.633393433938627, 2.256531755098972, 0.958258770184594], [12.731078140553967, 2.2502698256117037, 0.9403949053213901], [12.831662810774299, 2.243953794770135, 0.922984899867799], [12.935079793423583, 2.2375945485026936, 0.9060218319775518], [13.041261708108294, 2.231202377451912, 0.8894981015070484], [13.150141577976184, 2.224786975474495, 0.87340553692519], [13.26165295152056, 2.218357443008205, 0.8577354939360441], [13.375730013597003, 2.211922294651067, 0.8424789458037137], [13.492307685900702, 2.205489470331904, 0.8276265655104511], [13.611321717221305, 2.1990663494909963, 0.8131687999908702], [13.732708763849002, 2.1926597677335966, 0.799095936770315], [13.85640646055101, 2.1862760354652844, 0.7853981633974492]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 1.9106332362490184, 2.356194490192345], [11.85695112550842, 1.9149019357817996, 2.342496716819479], [11.716146076662774, 1.9192120963788253, 2.328423853598924], [11.577666720501819, 1.923560153024317, 2.3139660880793427], [11.441597501950499, 1.9279420898383735, 2.2991137077860806], [11.30802542474035, 1.9323534111242453, 2.28385715965375], [11.177040016069467, 1.9367891128521368, 2.2681871166646044], [11.048733273066729, 1.9412436550654175, 2.252094552082746], [10.923199589050602, 1.9457109357755595, 2.2355708216122423], [10.800535657522193, 1.9501842669961138, 2.2186077537219955], [10.6808403518118, 1.9546563536516113, 2.201197748268404], [10.564214578315028, 1.9591192761817748, 2.1833338834052003], [10.450761101316306, 1.9635644777415222, 2.165010030595331], [10.340584337511977, 1.9679827569687838, 2.1462209773301817], [10.233790118520103, 1.972364267350299, 2.12696255691535], [10.130485419907139, 1.9766985242546367, 2.1072317843996284], [10.03077805557935, 1.980974420715524, 2.087026997406645], [9.934776336784996, 1.9851802530304825, 2.0663480002807257], [9.842588695455259, 1.9893037571829775, 2.0451962095868046], [9.754323272179056, 1.993332156994271, 2.023574798618433], [9.670087469757132, 1.9972522247581288, 2.0014888381814053], [9.58998747400869, 2.001050354903036, 1.9789454305499865], [9.51412774429916, 2.0047126509601862, 1.9559538331583715], [9.442610477106006, 2.0082250257914955, 1.9325255683148295], [9.375535046821113, 2.0115733146538632, 1.9086745150351758], [9.312997428878607, 2.014743400251433, 1.8844169790115957], [9.25508961116735, 2.017721348468558, 1.8597717367874638], [9.201899000504504, 2.0204935529988264, 1.8347600504206019], [9.153507831675434, 2.02304688661032, 1.8094056493030983], [9.109992587149065, 2.0253688563381074, 1.7837346763742945], [9.071423436020835, 2.0274477594981377, 1.7577755967138085], [9.037863700984591, 2.029272837099096, 1.7315590674207322], [9.00936936216245, 2.0308344210161993, 1.705117768747866], [8.985988606407073, 2.0321240712058453, 1.6784861976277181], [8.967761430222914, 2.0331346992992207, 1.651700425950128], [8.954719303731382, 2.033860675125894, 1.6247978271708656], [8.946884902140793, 2.034297913085344, 1.5978167759821622], [8.94427190999916, 2.0344439357957027, 1.5707963267948974], [8.946884902140793, 2.034297913085344, 1.5437758776076327], [8.95471930373138, 2.0338606751258945, 1.5167948264189293], [8.967761430222913, 2.0331346992992207, 1.4898922276396669], [8.985988606407071, 2.0321240712058457, 1.4631064559620768], [9.009369362162449, 2.0308344210161993, 1.436474884841929], [9.03786370098459, 2.029272837099096, 1.410033586169063], [9.071423436020831, 2.027447759498138, 1.3838170568759864], [9.109992587149062, 2.0253688563381074, 1.3578579772155004], [9.15350783167543, 2.02304688661032, 1.3321870042866966], [9.2018990005045, 2.0204935529988264, 1.3068326031691928], [9.255089611167346, 2.017721348468558, 1.2818209168023311], [9.312997428878601, 2.0147434002514335, 1.2571756745781992], [9.375535046821108, 2.0115733146538637, 1.232918138554619], [9.442610477106001, 2.0082250257914955, 1.2090670852749652], [9.514127744299154, 2.0047126509601867, 1.1856388204314232], [9.589987474008685, 2.001050354903036, 1.1626472230398082], [9.670087469757126, 1.997252224758129, 1.1401038154083893], [9.754323272179048, 1.9933321569942712, 1.1180178549713613], [9.842588695455252, 1.989303757182978, 1.09639644400299], [9.934776336784989, 1.9851802530304827, 1.0752446533090687], [10.030778055579344, 1.9809744207155242, 1.0545656561831496], [10.130485419907131, 1.9766985242546369, 1.034360869190166], [10.233790118520096, 1.9723642673502995, 1.0146300966744444], [10.34058433751197, 1.9679827569687842, 0.9953716762596124], [10.4507611013163, 1.9635644777415224, 0.9765826229944635], [10.56421457831502, 1.9591192761817753, 0.958258770184594], [10.680840351811792, 1.9546563536516115, 0.9403949053213901], [10.800535657522186, 1.950184266996114, 0.922984899867799], [10.923199589050594, 1.9457109357755598, 0.9060218319775518], [11.048733273066722, 1.941243655065418, 0.8894981015070484], [11.177040016069459, 1.936789112852137, 0.87340553692519], [11.308025424740341, 1.9323534111242455, 0.8577354939360441], [11.441597501950492, 1.9279420898383737, 0.8424789458037137], [11.577666720501812, 1.9235601530243174, 0.8276265655104511], [11.716146076662765, 1.9192120963788255, 0.8131687999908702], [11.856951125508411, 1.9149019357817998, 0.799095936770315], [11.999999999999991, 1.9106332362490188, 0.7853981633974492]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[11.313708498984761, 1.5707963267948966, 2.356194490192345], [11.161867674932157, 1.5707963267948966, 2.342496716819479], [11.01217866226754, 1.5707963267948966, 2.328423853598924], [10.864730401211775, 1.5707963267948966, 2.3139660880793427], [10.719615356748577, 1.5707963267948966, 2.2991137077860806], [10.576929564224875, 1.5707963267948966, 2.28385715965375], [10.436772658289446, 1.5707963267948966, 2.2681871166646044], [10.299247882217994, 1.5707963267948966, 2.252094552082746], [10.164462074415706, 1.5707963267948966, 2.2355708216122423], [10.032525628644482, 1.5707963267948966, 2.2186077537219955], [9.903552424301656, 1.5707963267948966, 2.201197748268404], [9.777659722892986, 1.5707963267948966, 2.1833338834052003], [9.65496802670967, 1.5707963267948966, 2.165010030595331], [9.535600895654033, 1.5707963267948966, 2.1462209773301817], [9.419684718180312, 1.5707963267948966, 2.12696255691535], [9.30734843244579, 1.5707963267948966, 2.1072317843996284], [9.198723194024932, 1.5707963267948966, 2.087026997406645], [9.093941986946204, 1.5707963267948966, 2.0663480002807257], [8.993139175388293, 1.5707963267948966, 2.0451962095868046], [8.896449994136646, 1.5707963267948966, 2.023574798618433], [8.804009976865876, 1.5707963267948966, 2.0014888381814053], [8.715954322484922, 1.5707963267948966, 1.9789454305499865], [8.632417201157681, 1.5707963267948966, 1.9559538331583715], [8.553531003179454, 1.5707963267948966, 1.9325255683148295], [8.479425535622738, 1.5707963267948966, 1.9086745150351758], [8.410227173525072, 1.5707963267948966, 1.8844169790115957], [8.346057974321637, 1.5707963267948966, 1.8597717367874638], [8.287034766156456, 1.5707963267948966, 1.8347600504206019], [8.233268222555578, 1.5707963267948966, 1.8094056493030983], [8.184861937620628, 1.5707963267948966, 1.7837346763742945], [8.141911517302804, 1.5707963267948966, 1.7577755967138085], [8.104503703347596, 1.5707963267948966, 1.7315590674207322], [8.07271554706788, 1.5707963267948966, 1.705117768747866], [8.0466136501312, 1.5707963267948966, 1.6784861976277181], [8.026253488981876, 1.5707963267948966, 1.651700425950128], [8.011678838334662, 1.5707963267948966, 1.6247978271708656], [8.002921307382378, 1.5707963267948966, 1.5978167759821622], [8.0, 1.5707963267948966, 1.5707963267948974], [8.002921307382378, 1.5707963267948966, 1.5437758776076327], [8.01167883833466, 1.5707963267948966, 1.5167948264189293], [8.026253488981874, 1.5707963267948966, 1.4898922276396669], [8.046613650131198, 1.5707963267948966, 1.4631064559620768], [8.072715547067878, 1.5707963267948966, 1.436474884841929], [8.104503703347593, 1.5707963267948966, 1.410033586169063], [8.1419115173028, 1.5707963267948966, 1.3838170568759864], [8.184861937620626, 1.5707963267948966, 1.3578579772155004], [8.233268222555575, 1.5707963267948966, 1.3321870042866966], [8.287034766156452, 1.5707963267948966, 1.3068326031691928], [8.346057974321633, 1.5707963267948966, 1.2818209168023311], [8.410227173525067, 1.5707963267948966, 1.2571756745781992], [8.479425535622733, 1.5707963267948966, 1.232918138554619], [8.55353100317945, 1.5707963267948966, 1.2090670852749652], [8.632417201157676, 1.5707963267948966, 1.1856388204314232], [8.715954322484915, 1.5707963267948966, 1.1626472230398082], [8.80400997686587, 1.5707963267948966, 1.1401038154083893], [8.896449994136638, 1.5707963267948966, 1.1180178549713613], [8.993139175388286, 1.5707963267948966, 1.09639644400299], [9.093941986946199, 1.5707963267948966, 1.0752446533090687], [9.198723194024925, 1.5707963267948966, 1.0545656561831496], [9.307348432445783, 1.5707963267948966, 1.034360869190166], [9.419684718180305, 1.5707963267948966, 1.0146300966744444], [9.535600895654026, 1.5707963267948966, 0.9953716762596124], [9.654968026709662, 1.5707963267948966, 0.9765826229944635], [9.77765972289298, 1.5707963267948966, 0.958258770184594], [9.903552424301648, 1.5707963267948966, 0.9403949053213901], [10.032525628644475, 1.5707963267948966, 0.922984899867799], [10.164462074415699, 1.5707963267948966, 0.9060218319775518], [10.299247882217985, 1.5707963267948966, 0.8894981015070484], [10.436772658289437, 1.5707963267948966, 0.87340553692519], [10.576929564224864, 1.5707963267948966, 0.8577354939360441], [10.719615356748568, 1.5707963267948966, 0.8424789458037137], [10.864730401211764, 1.5707963267948966, 0.8276265655104511], [11.012178662267532, 1.5707963267948966, 0.8131687999908702], [11.161867674932148, 1.5707963267948966, 0.799095936770315], [11.31370849898475, 1.5707963267948966, 0.7853981633974492]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 1.2309594173407747, 2.356194490192345], [11.85695112550842, 1.2266907178079935, 2.342496716819479], [11.716146076662774, 1.2223805572109678, 2.328423853598924], [11.577666720501819, 1.2180325005654762, 2.3139660880793427], [11.441597501950499, 1.2136505637514197, 2.2991137077860806], [11.30802542474035, 1.2092392424655478, 2.28385715965375], [11.177040016069467, 1.2048035407376563, 2.2681871166646044], [11.048733273066729, 1.2003489985243756, 2.252094552082746], [10.923199589050602, 1.1958817178142336, 2.2355708216122423], [10.800535657522193, 1.1914083865936793, 2.2186077537219955], [10.6808403518118, 1.1869362999381818, 2.201197748268404], [10.564214578315028, 1.1824733774080183, 2.1833338834052003], [10.450761101316306, 1.178028175848271, 2.165010030595331], [10.340584337511977, 1.1736098966210093, 2.1462209773301817], [10.233790118520103, 1.169228386239494, 2.12696255691535], [10.130485419907139, 1.1648941293351565, 2.1072317843996284], [10.03077805557935, 1.1606182328742691, 2.087026997406645], [9.934776336784996, 1.1564124005593106, 2.0663480002807257], [9.842588695455259, 1.1522888964068156, 2.0451962095868046], [9.754323272179056, 1.148260496595522, 2.023574798618433], [9.670087469757132, 1.1443404288316643, 2.0014888381814053], [9.58998747400869, 1.1405422986867573, 1.9789454305499865], [9.51412774429916, 1.1368800026296069, 1.9559538331583715], [9.442610477106006, 1.1333676277982976, 1.9325255683148295], [9.375535046821113, 1.1300193389359297, 1.9086745150351758], [9.312997428878607, 1.1268492533383598, 1.8844169790115957], [9.25508961116735, 1.1238713051212352, 1.8597717367874638], [9.201899000504504, 1.1210991005909667, 1.8347600504206019], [9.153507831675434, 1.118545766979473, 1.8094056493030983], [9.109992587149065, 1.116223797251686, 1.7837346763742945], [9.071423436020835, 1.1141448940916552, 1.7577755967138085], [9.037863700984591, 1.112319816490697, 1.7315590674207322], [9.00936936216245, 1.110758232573594, 1.705117768747866], [8.985988606407073, 1.1094685823839476, 1.6784861976277181], [8.967761430222914, 1.1084579542905721, 1.651700425950128], [8.954719303731382, 1.107731978463899, 1.6247978271708656], [8.946884902140793, 1.107294740504449, 1.5978167759821622], [8.94427190999916, 1.1071487177940904, 1.5707963267948974], [8.946884902140793, 1.107294740504449, 1.5437758776076327], [8.95471930373138, 1.1077319784638988, 1.5167948264189293], [8.967761430222913, 1.1084579542905721, 1.4898922276396669], [8.985988606407071, 1.1094685823839474, 1.4631064559620768], [9.009369362162449, 1.110758232573594, 1.436474884841929], [9.03786370098459, 1.112319816490697, 1.410033586169063], [9.071423436020831, 1.114144894091655, 1.3838170568759864], [9.109992587149062, 1.116223797251686, 1.3578579772155004], [9.15350783167543, 1.118545766979473, 1.3321870042866966], [9.2018990005045, 1.1210991005909665, 1.3068326031691928], [9.255089611167346, 1.1238713051212352, 1.2818209168023311], [9.312997428878601, 1.1268492533383596, 1.2571756745781992], [9.375535046821108, 1.1300193389359294, 1.232918138554619], [9.442610477106001, 1.1333676277982974, 1.2090670852749652], [9.514127744299154, 1.1368800026296066, 1.1856388204314232], [9.589987474008685, 1.1405422986867568, 1.1626472230398082], [9.670087469757126, 1.144340428831664, 1.1401038154083893], [9.754323272179048, 1.1482604965955219, 1.1180178549713613], [9.842588695455252, 1.1522888964068152, 1.09639644400299], [9.934776336784989, 1.1564124005593104, 1.0752446533090687], [10.030778055579344, 1.160618232874269, 1.0545656561831496], [10.130485419907131, 1.1648941293351562, 1.034360869190166], [10.233790118520096, 1.1692283862394937, 1.0146300966744444], [10.34058433751197, 1.173609896621009, 0.9953716762596124], [10.4507611013163, 1.1780281758482707, 0.9765826229944635], [10.56421457831502, 1.1824733774080178, 0.958258770184594], [10.680840351811792, 1.1869362999381816, 0.9403949053213901], [10.800535657522186, 1.191408386593679, 0.922984899867799], [10.923199589050594, 1.1958817178142334, 0.9060218319775518], [11.048733273066722, 1.2003489985243752, 0.8894981015070484], [11.177040016069459, 1.204803540737656, 0.87340553692519], [11.308025424740341, 1.2092392424655476, 0.8577354939360441], [11.441597501950492, 1.2136505637514194, 0.8424789458037137], [11.577666720501812, 1.2180325005654757, 0.8276265655104511], [11.716146076662765, 1.2223805572109676, 0.8131687999908702], [11.856951125508411, 1.2266907178079933, 0.799095936770315], [11.999999999999991, 1.2309594173407743, 0.7853981633974492]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[13.856406460551018, 0.9553166181245093, 2.356194490192345], [13.73270876384901, 0.9489328858561968, 2.342496716819479], [13.611321717221312, 0.9425263040987975, 2.328423853598924], [13.492307685900709, 0.9361031832578894, 2.3139660880793427], [13.375730013597012, 0.9296703589387264, 2.2991137077860806], [13.261652951520567, 0.9232352105815887, 2.28385715965375], [13.150141577976191, 0.9168056781152983, 2.2681871166646044], [13.041261708108301, 0.9103902761378814, 2.252094552082746], [12.93507979342359, 0.9039981050871001, 2.2355708216122423], [12.831662810774306, 0.8976388588196584, 2.2186077537219955], [12.731078140553974, 0.89132282797809, 2.201197748268404], [12.633393433938632, 0.8850608984908213, 2.1833338834052003], [12.538676469100956, 0.8788645445261081, 2.165010030595331], [12.44699499643179, 0.8727458152072396, 2.1462209773301817], [12.358416572923884, 0.8667173143976231, 2.12696255691535], [12.273008386005085, 0.8607921728833262, 2.1072317843996284], [12.190837067252284, 0.8549840123206593, 2.087026997406645], [12.111968496571608, 0.8493069003806802, 2.0663480002807257], [12.036467597592893, 0.8437752966140669, 2.0451962095868046], [11.964398125195178, 0.838403988681128, 2.023574798618433], [11.89582244625204, 0.8332080187445413, 2.0014888381814053], [11.830801314857906, 0.8282026000073794, 1.9789454305499865], [11.769393643465367, 0.8234030235953935, 1.9559538331583715], [11.711656271525055, 0.8188245562280021, 1.9325255683148295], [11.657643733369577, 0.8144823293925971, 1.9086745150351758], [11.60740802721691, 0.8103912210252098, 1.8844169790115957], [11.560998387282035, 0.8065657309985513, 1.8597717367874638], [11.518461061074339, 0.8030198520151841, 1.8347600504206019], [11.479839094017978, 0.7997669377863915, 1.8094056493030983], [11.445172123559825, 0.7968195706321652, 1.7837346763742945], [11.414496184921525, 0.794189430849832, 1.7577755967138085], [11.387843530606437, 0.791887170353636, 1.7315590674207322], [11.36524246568772, 0.7899222931716845, 1.705117768747866], [11.346717200780045, 0.7883030453889712, 1.6784861976277181], [11.332287724435597, 0.7870363170380207, 1.651700425950128], [11.32196969650685, 0.7861275582586285, 1.6247978271708656], [11.315774363787698, 0.7855807117768233, 1.5978167759821622], [11.313708498984761, 0.7853981633974483, 1.5707963267948974], [11.315774363787698, 0.7855807117768233, 1.5437758776076327], [11.32196969650685, 0.7861275582586283, 1.5167948264189293], [11.332287724435597, 0.7870363170380206, 1.4898922276396669], [11.346717200780043, 0.7883030453889711, 1.4631064559620768], [11.365242465687716, 0.7899222931716844, 1.436474884841929], [11.387843530606437, 0.7918871703536358, 1.410033586169063], [11.414496184921523, 0.7941894308498317, 1.3838170568759864], [11.445172123559823, 0.7968195706321651, 1.3578579772155004], [11.479839094017974, 0.7997669377863913, 1.3321870042866966], [11.518461061074335, 0.8030198520151839, 1.3068326031691928], [11.560998387282032, 0.8065657309985511, 1.2818209168023311], [11.607408027216906, 0.8103912210252094, 1.2571756745781992], [11.657643733369573, 0.8144823293925968, 1.232918138554619], [11.711656271525051, 0.8188245562280018, 1.2090670852749652], [11.769393643465364, 0.8234030235953932, 1.1856388204314232], [11.830801314857903, 0.828202600007379, 1.1626472230398082], [11.895822446252035, 0.8332080187445411, 1.1401038154083893], [11.964398125195173, 0.8384039886811275, 1.1180178549713613], [12.036467597592889, 0.8437752966140666, 1.09639644400299], [12.111968496571603, 0.84930690038068, 1.0752446533090687], [12.190837067252277, 0.854984012320659, 1.0545656561831496], [12.273008386005078, 0.8607921728833259, 1.034360869190166], [12.358416572923877, 0.8667173143976228, 1.0146300966744444], [12.446994996431783, 0.8727458152072393, 0.9953716762596124], [12.53867646910095, 0.8788645445261077, 0.9765826229944635], [12.633393433938627, 0.8850608984908209, 0.958258770184594], [12.731078140553967, 0.8913228279780896, 0.9403949053213901], [12.831662810774299, 0.8976388588196581, 0.922984899867799], [12.935079793423583, 0.9039981050870998, 0.9060218319775518], [13.041261708108294, 0.9103902761378809, 0.8894981015070484], [13.150141577976184, 0.916805678115298, 0.87340553692519], [13.26165295152056, 0.9232352105815882, 0.8577354939360441], [13.375730013597003, 0.929670358938726, 0.8424789458037137], [13.492307685900702, 0.936103183257889, 0.8276265655104511], [13.611321717221305, 0.942526304098797, 0.8131687999908702], [13.732708763849002, 0.9489328858561965, 0.799095936770315], [13.85640646055101, 0.9553166181245089, 0.7853981633974492]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[13.856406460551018, 2.186276035465284, -2.356194490192345], [13.73270876384901, 2.192659767733596, -2.3698922635652107], [13.611321717221312, 2.1990663494909954, -2.3839651267857658], [13.492307685900709, 2.2054894703319037, -2.3984228923053466], [13.375730013597012, 2.2119222946510666, -2.413275272598609], [13.261652951520567, 2.2183574430082045, -2.4285318207309396], [13.150141577976191, 2.224786975474495, -2.4442018637200853], [13.041261708108301, 2.2312023774519116, -2.460294428301944], [12.93507979342359, 2.237594548502693, -2.4768181587724474], [12.831662810774306, 2.2439537947701345, -2.493781226662694], [12.731078140553974, 2.250269825611703, -2.5111912321162855], [12.633393433938632, 2.2565317550989716, -2.5290550969794894], [12.538676469100956, 2.2627281090636853, -2.547378949789359], [12.44699499643179, 2.2688468383825535, -2.566168003054508], [12.358416572923884, 2.27487533919217, -2.5854264234693396], [12.273008386005085, 2.280800480706467, -2.6051571959850612], [12.190837067252284, 2.286608641269134, -2.6253619829780446], [12.111968496571608, 2.292285753209113, -2.646040980103964], [12.036467597592893, 2.297817356975726, -2.667192770797885], [11.964398125195178, 2.303188664908665, -2.6888141817662565], [11.89582244625204, 2.3083846348452517, -2.7109001422032843], [11.830801314857906, 2.3133900535824137, -2.733443549834703], [11.769393643465367, 2.3181896299943996, -2.756435147226318], [11.711656271525055, 2.322768097361791, -2.77986341206986], [11.657643733369577, 2.327110324197196, -2.803714465349514], [11.60740802721691, 2.3312014325645833, -2.827972001373094], [11.560998387282035, 2.3350269225912417, -2.852617243597226], [11.518461061074339, 2.338572801574609, -2.8776289299640876], [11.479839094017978, 2.3418257158034015, -2.9029833310815913], [11.445172123559825, 2.344773082957628, -2.928654304010395], [11.414496184921525, 2.347403222739961, -2.954613383670881], [11.387843530606437, 2.349705483236157, -2.9808299129639573], [11.36524246568772, 2.3516703604181086, -3.007271211636824], [11.346717200780045, 2.353289608200822, -3.0339027827569716], [11.332287724435597, 2.3545563365517723, -3.0606885544345617], [11.32196969650685, 2.355465095331165, -3.087591153213824], [11.315774363787698, 2.35601194181297, -3.1145722044025272], [11.313708498984761, 2.356194490192345, -3.1415926535897922], [11.315774363787698, 2.35601194181297, 3.1145722044025295], [11.32196969650685, 2.355465095331165, 3.087591153213826], [11.332287724435597, 2.3545563365517728, 3.0606885544345634], [11.346717200780043, 2.353289608200822, 3.0339027827569733], [11.365242465687716, 2.3516703604181086, 3.0072712116368256], [11.387843530606437, 2.3497054832361575, 2.9808299129639595], [11.414496184921523, 2.3474032227399615, 2.9546133836708828], [11.445172123559823, 2.344773082957628, 2.9286543040103967], [11.479839094017974, 2.341825715803402, 2.902983331081593], [11.518461061074335, 2.3385728015746094, 2.8776289299640894], [11.560998387282032, 2.335026922591242, 2.8526172435972277], [11.607408027216906, 2.331201432564584, 2.827972001373096], [11.657643733369573, 2.3271103241971964, 2.8037144653495156], [11.711656271525051, 2.3227680973617915, 2.7798634120698615], [11.769393643465364, 2.3181896299944, 2.7564351472263198], [11.830801314857903, 2.313390053582414, 2.7334435498347047], [11.895822446252035, 2.308384634845252, 2.710900142203286], [11.964398125195173, 2.3031886649086655, 2.688814181766258], [12.036467597592889, 2.2978173569757265, 2.6671927707978864], [12.111968496571603, 2.292285753209113, 2.6460409801039653], [12.190837067252277, 2.286608641269134, 2.625361982978046], [12.273008386005078, 2.2808004807064672, 2.6051571959850626], [12.358416572923877, 2.27487533919217, 2.585426423469341], [12.446994996431783, 2.268846838382554, 2.566168003054509], [12.53867646910095, 2.2627281090636853, 2.54737894978936], [12.633393433938627, 2.256531755098972, 2.5290550969794907], [12.731078140553967, 2.2502698256117037, 2.5111912321162864], [12.831662810774299, 2.243953794770135, 2.4937812266626955], [12.935079793423583, 2.2375945485026936, 2.4768181587724483], [13.041261708108294, 2.231202377451912, 2.4602944283019452], [13.150141577976184, 2.224786975474495, 2.444201863720086], [13.26165295152056, 2.218357443008205, 2.4285318207309405], [13.375730013597003, 2.211922294651067, 2.4132752725986104], [13.492307685900702, 2.205489470331904, 2.3984228923053474], [13.611321717221305, 2.1990663494909963, 2.3839651267857667], [13.732708763849002, 2.1926597677335966, 2.3698922635652115], [13.85640646055101, 2.1862760354652844, 2.3561944901923457]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 1.9106332362490184, -2.356194490192345], [11.85695112550842, 1.9149019357817996, -2.3698922635652107], [11.716146076662774, 1.9192120963788253, -2.3839651267857658], [11.577666720501819, 1.923560153024317, -2.3984228923053466], [11.441597501950499, 1.9279420898383735, -2.413275272598609], [11.30802542474035, 1.9323534111242453, -2.4285318207309396], [11.177040016069467, 1.9367891128521368, -2.4442018637200853], [11.048733273066729, 1.9412436550654175, -2.460294428301944], [10.923199589050602, 1.9457109357755595, -2.4768181587724474], [10.800535657522193, 1.9501842669961138, -2.493781226662694], [10.6808403518118, 1.9546563536516113, -2.5111912321162855], [10.564214578315028, 1.9591192761817748, -2.5290550969794894], [10.450761101316306, 1.9635644777415222, -2.547378949789359], [10.340584337511977, 1.9679827569687838, -2.566168003054508], [10.233790118520103, 1.972364267350299, -2.5854264234693396], [10.130485419907139, 1.9766985242546367, -2.6051571959850612], [10.03077805557935, 1.980974420715524, -2.6253619829780446], [9.934776336784996, 1.9851802530304825, -2.646040980103964], [9.842588695455259, 1.9893037571829775, -2.667192770797885], [9.754323272179056, 1.993332156994271, -2.6888141817662565], [9.670087469757132, 1.9972522247581288, -2.7109001422032843], [9.58998747400869, 2.001050354903036, -2.733443549834703], [9.51412774429916, 2.0047126509601862, -2.756435147226318], [9.442610477106006, 2.0082250257914955, -2.77986341206986], [9.375535046821113, 2.0115733146538632, -2.803714465349514], [9.312997428878607, 2.014743400251433, -2.827972001373094], [9.25508961116735, 2.017721348468558, -2.852617243597226], [9.201899000504504, 2.0204935529988264, -2.8776289299640876], [9.153507831675434, 2.02304688661032, -2.9029833310815913], [9.109992587149065, 2.0253688563381074, -2.928654304010395], [9.071423436020835, 2.0274477594981377, -2.954613383670881], [9.037863700984591, 2.029272837099096, -2.9808299129639573], [9.00936936216245, 2.0308344210161993, -3.007271211636824], [8.985988606407073, 2.0321240712058453, -3.0339027827569716], [8.967761430222914, 2.0331346992992207, -3.0606885544345617], [8.954719303731382, 2.033860675125894, -3.087591153213824], [8.946884902140793, 2.034297913085344, -3.1145722044025272], [8.94427190999916, 2.0344439357957027, -3.1415926535897922], [8.946884902140793, 2.034297913085344, 3.1145722044025295], [8.95471930373138, 2.0338606751258945, 3.087591153213826], [8.967761430222913, 2.0331346992992207, 3.0606885544345634], [8.985988606407071, 2.0321240712058457, 3.0339027827569733], [9.009369362162449, 2.0308344210161993, 3.0072712116368256], [9.03786370098459, 2.029272837099096, 2.9808299129639595], [9.071423436020831, 2.027447759498138, 2.9546133836708828], [9.109992587149062, 2.0253688563381074, 2.9286543040103967], [9.15350783167543, 2.02304688661032, 2.902983331081593], [9.2018990005045, 2.0204935529988264, 2.8776289299640894], [9.255089611167346, 2.017721348468558, 2.8526172435972277], [9.312997428878601, 2.0147434002514335, 2.827972001373096], [9.375535046821108, 2.0115733146538637, 2.8037144653495156], [9.442610477106001, 2.0082250257914955, 2.7798634120698615], [9.514127744299154, 2.0047126509601867, 2.7564351472263198], [9.589987474008685, 2.001050354903036, 2.7334435498347047], [9.670087469757126, 1.997252224758129, 2.710900142203286], [9.754323272179048, 1.9933321569942712, 2.688814181766258], [9.842588695455252, 1.989303757182978, 2.6671927707978864], [9.934776336784989, 1.9851802530304827, 2.6460409801039653], [10.030778055579344, 1.9809744207155242, 2.625361982978046], [10.130485419907131, 1.9766985242546369, 2.6051571959850626], [10.233790118520096, 1.9723642673502995, 2.585426423469341], [10.34058433751197, 1.9679827569687842, 2.566168003054509], [10.4507611013163, 1.9635644777415224, 2.54737894978936], [10.56421457831502, 1.9591192761817753, 2.5290550969794907], [10.680840351811792, 1.9546563536516115, 2.5111912321162864], [10.800535657522186, 1.950184266996114, 2.4937812266626955], [10.923199589050594, 1.9457109357755598, 2.4768181587724483], [11.048733273066722, 1.941243655065418, 2.4602944283019452], [11.177040016069459, 1.936789112852137, 2.444201863720086], [11.308025424740341, 1.9323534111242455, 2.4285318207309405], [11.441597501950492, 1.9279420898383737, 2.4132752725986104], [11.577666720501812, 1.9235601530243174, 2.3984228923053474], [11.716146076662765, 1.9192120963788255, 2.3839651267857667], [11.856951125508411, 1.9149019357817998, 2.3698922635652115], [11.999999999999991, 1.9106332362490188, 2.3561944901923457]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[11.313708498984761, 1.5707963267948966, -2.356194490192345], [11.161867674932157, 1.5707963267948966, -2.3698922635652107], [11.01217866226754, 1.5707963267948966, -2.3839651267857658], [10.864730401211775, 1.5707963267948966, -2.3984228923053466], [10.719615356748577, 1.5707963267948966, -2.413275272598609], [10.576929564224875, 1.5707963267948966, -2.4285318207309396], [10.436772658289446, 1.5707963267948966, -2.4442018637200853], [10.299247882217994, 1.5707963267948966, -2.460294428301944], [10.164462074415706, 1.5707963267948966, -2.4768181587724474], [10.032525628644482, 1.5707963267948966, -2.493781226662694], [9.903552424301656, 1.5707963267948966, -2.5111912321162855], [9.777659722892986, 1.5707963267948966, -2.5290550969794894], [9.65496802670967, 1.5707963267948966, -2.547378949789359], [9.535600895654033, 1.5707963267948966, -2.566168003054508], [9.419684718180312, 1.5707963267948966, -2.5854264234693396], [9.30734843244579, 1.5707963267948966, -2.6051571959850612], [9.198723194024932, 1.5707963267948966, -2.6253619829780446], [9.093941986946204, 1.5707963267948966, -2.646040980103964], [8.993139175388293, 1.5707963267948966, -2.667192770797885], [8.896449994136646, 1.5707963267948966, -2.6888141817662565], [8.804009976865876, 1.5707963267948966, -2.7109001422032843], [8.715954322484922, 1.5707963267948966, -2.733443549834703], [8.632417201157681, 1.5707963267948966, -2.756435147226318], [8.553531003179454, 1.5707963267948966, -2.77986341206986], [8.479425535622738, 1.5707963267948966, -2.803714465349514], [8.410227173525072, 1.5707963267948966, -2.827972001373094], [8.346057974321637, 1.5707963267948966, -2.852617243597226], [8.287034766156456, 1.5707963267948966, -2.8776289299640876], [8.233268222555578, 1.5707963267948966, -2.9029833310815913], [8.184861937620628, 1.5707963267948966, -2.928654304010395], [8.141911517302804, 1.5707963267948966, -2.954613383670881], [8.104503703347596, 1.5707963267948966, -2.9808299129639573], [8.07271554706788, 1.5707963267948966, -3.007271211636824], [8.0466136501312, 1.5707963267948966, -3.0339027827569716], [8.026253488981876, 1.5707963267948966, -3.0606885544345617], [8.011678838334662, 1.5707963267948966, -3.087591153213824], [8.002921307382378, 1.5707963267948966, -3.1145722044025272], [8.0, 1.5707963267948966, -3.1415926535897922], [8.002921307382378, 1.5707963267948966, 3.1145722044025295], [8.01167883833466, 1.5707963267948966, 3.087591153213826], [8.026253488981874, 1.5707963267948966, 3.0606885544345634], [8.046613650131198, 1.5707963267948966, 3.0339027827569733], [8.072715547067878, 1.5707963267948966, 3.0072712116368256], [8.104503703347593, 1.5707963267948966, 2.9808299129639595], [8.1419115173028, 1.5707963267948966, 2.9546133836708828], [8.184861937620626, 1.5707963267948966, 2.9286543040103967], [8.233268222555575, 1.5707963267948966, 2.902983331081593], [8.287034766156452, 1.5707963267948966, 2.8776289299640894], [8.346057974321633, 1.5707963267948966, 2.8526172435972277], [8.410227173525067, 1.5707963267948966, 2.827972001373096], [8.479425535622733, 1.5707963267948966, 2.8037144653495156], [8.55353100317945, 1.5707963267948966, 2.7798634120698615], [8.632417201157676, 1.5707963267948966, 2.7564351472263198], [8.715954322484915, 1.5707963267948966, 2.7334435498347047], [8.80400997686587, 1.5707963267948966, 2.710900142203286], [8.896449994136638, 1.5707963267948966, 2.688814181766258], [8.993139175388286, 1.5707963267948966, 2.6671927707978864], [9.093941986946199, 1.5707963267948966, 2.6460409801039653], [9.198723194024925, 1.5707963267948966, 2.625361982978046], [9.307348432445783, 1.5707963267948966, 2.6051571959850626], [9.419684718180305, 1.5707963267948966, 2.585426423469341], [9.535600895654026, 1.5707963267948966, 2.566168003054509], [9.654968026709662, 1.5707963267948966, 2.54737894978936], [9.77765972289298, 1.5707963267948966, 2.5290550969794907], [9.903552424301648, 1.5707963267948966, 2.5111912321162864], [10.032525628644475, 1.5707963267948966, 2.4937812266626955], [10.164462074415699, 1.5707963267948966, 2.4768181587724483], [10.299247882217985, 1.5707963267948966, 2.4602944283019452], [10.436772658289437, 1.5707963267948966, 2.444201863720086], [10.576929564224864, 1.5707963267948966, 2.4285318207309405], [10.719615356748568, 1.5707963267948966, 2.4132752725986104], [10.864730401211764, 1.5707963267948966, 2.3984228923053474], [11.012178662267532, 1.5707963267948966, 2.3839651267857667], [11.161867674932148, 1.5707963267948966, 2.3698922635652115], [11.31370849898475, 1.5707963267948966, 2.3561944901923457]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 1.2309594173407747, -2.356194490192345], [11.85695112550842, 1.2266907178079935, -2.3698922635652107], [11.716146076662774, 1.2223805572109678, -2.3839651267857658], [11.577666720501819, 1.2180325005654762, -2.3984228923053466], [11.441597501950499, 1.2136505637514197, -2.413275272598609], [11.30802542474035, 1.2092392424655478, -2.4285318207309396], [11.177040016069467, 1.2048035407376563, -2.4442018637200853], [11.048733273066729, 1.2003489985243756, -2.460294428301944], [10.923199589050602, 1.1958817178142336, -2.4768181587724474], [10.800535657522193, 1.1914083865936793, -2.493781226662694], [10.6808403518118, 1.1869362999381818, -2.5111912321162855], [10.564214578315028, 1.1824733774080183, -2.5290550969794894], [10.450761101316306, 1.178028175848271, -2.547378949789359], [10.340584337511977, 1.1736098966210093, -2.566168003054508], [10.233790118520103, 1.169228386239494, -2.5854264234693396], [10.130485419907139, 1.1648941293351565, -2.6051571959850612], [10.03077805557935, 1.1606182328742691, -2.6253619829780446], [9.934776336784996, 1.1564124005593106, -2.646040980103964], [9.842588695455259, 1.1522888964068156, -2.667192770797885], [9.754323272179056, 1.148260496595522, -2.6888141817662565], [9.670087469757132, 1.1443404288316643, -2.7109001422032843], [9.58998747400869, 1.1405422986867573, -2.733443549834703], [9.51412774429916, 1.1368800026296069, -2.756435147226318], [9.442610477106006, 1.1333676277982976, -2.77986341206986], [9.375535046821113, 1.1300193389359297, -2.803714465349514], [9.312997428878607, 1.1268492533383598, -2.827972001373094], [9.25508961116735, 1.1238713051212352, -2.852617243597226], [9.201899000504504, 1.1210991005909667, -2.8776289299640876], [9.153507831675434, 1.118545766979473, -2.9029833310815913], [9.109992587149065, 1.116223797251686, -2.928654304010395], [9.071423436020835, 1.1141448940916552, -2.954613383670881], [9.037863700984591, 1.112319816490697, -2.9808299129639573], [9.00936936216245, 1.110758232573594, -3.007271211636824], [8.985988606407073, 1.1094685823839476, -3.0339027827569716], [8.967761430222914, 1.1084579542905721, -3.0606885544345617], [8.954719303731382, 1.107731978463899, -3.087591153213824], [8.946884902140793, 1.107294740504449, -3.1145722044025272], [8.94427190999916, 1.1071487177940904, -3.1415926535897922], [8.946884902140793, 1.107294740504449, 3.1145722044025295], [8.95471930373138, 1.1077319784638988, 3.087591153213826], [8.967761430222913, 1.1084579542905721, 3.0606885544345634], [8.985988606407071, 1.1094685823839474, 3.0339027827569733], [9.009369362162449, 1.110758232573594, 3.0072712116368256], [9.03786370098459, 1.112319816490697, 2.9808299129639595], [9.071423436020831, 1.114144894091655, 2.9546133836708828], [9.109992587149062, 1.116223797251686, 2.9286543040103967], [9.15350783167543, 1.118545766979473, 2.902983331081593], [9.2018990005045, 1.1210991005909665, 2.8776289299640894], [9.255089611167346, 1.1238713051212352, 2.8526172435972277], [9.312997428878601, 1.1268492533383596, 2.827972001373096], [9.375535046821108, 1.1300193389359294, 2.8037144653495156], [9.442610477106001, 1.1333676277982974, 2.7798634120698615], [9.514127744299154, 1.1368800026296066, 2.7564351472263198], [9.589987474008685, 1.1405422986867568, 2.7334435498347047], [9.670087469757126, 1.144340428831664, 2.710900142203286], [9.754323272179048, 1.1482604965955219, 2.688814181766258], [9.842588695455252, 1.1522888964068152, 2.6671927707978864], [9.934776336784989, 1.1564124005593104, 2.6460409801039653], [10.030778055579344, 1.160618232874269, 2.625361982978046], [10.130485419907131, 1.1648941293351562, 2.6051571959850626], [10.233790118520096, 1.1692283862394937, 2.585426423469341], [10.34058433751197, 1.173609896621009, 2.566168003054509], [10.4507611013163, 1.1780281758482707, 2.54737894978936], [10.56421457831502, 1.1824733774080178, 2.5290550969794907], [10.680840351811792, 1.1869362999381816, 2.5111912321162864], [10.800535657522186, 1.191408386593679, 2.4937812266626955], [10.923199589050594, 1.1958817178142334, 2.4768181587724483], [11.048733273066722, 1.2003489985243752, 2.4602944283019452], [11.177040016069459, 1.204803540737656, 2.444201863720086], [11.308025424740341, 1.2092392424655476, 2.4285318207309405], [11.441597501950492, 1.2136505637514194, 2.4132752725986104], [11.577666720501812, 1.2180325005654757, 2.3984228923053474], [11.716146076662765, 1.2223805572109676, 2.3839651267857667], [11.856951125508411, 1.2266907178079933, 2.3698922635652115], [11.999999999999991, 1.2309594173407743, 2.3561944901923457]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[13.856406460551018, 0.9553166181245093, -2.356194490192345], [13.73270876384901, 0.9489328858561968, -2.3698922635652107], [13.611321717221312, 0.9425263040987975, -2.3839651267857658], [13.492307685900709, 0.9361031832578894, -2.3984228923053466], [13.375730013597012, 0.9296703589387264, -2.413275272598609], [13.261652951520567, 0.9232352105815887, -2.4285318207309396], [13.150141577976191, 0.9168056781152983, -2.4442018637200853], [13.041261708108301, 0.9103902761378814, -2.460294428301944], [12.93507979342359, 0.9039981050871001, -2.4768181587724474], [12.831662810774306, 0.8976388588196584, -2.493781226662694], [12.731078140553974, 0.89132282797809, -2.5111912321162855], [12.633393433938632, 0.8850608984908213, -2.5290550969794894], [12.538676469100956, 0.8788645445261081, -2.547378949789359], [12.44699499643179, 0.8727458152072396, -2.566168003054508], [12.358416572923884, 0.8667173143976231, -2.5854264234693396], [12.273008386005085, 0.8607921728833262, -2.6051571959850612], [12.190837067252284, 0.8549840123206593, -2.6253619829780446], [12.111968496571608, 0.8493069003806802, -2.646040980103964], [12.036467597592893, 0.8437752966140669, -2.667192770797885], [11.964398125195178, 0.838403988681128, -2.6888141817662565], [11.89582244625204, 0.8332080187445413, -2.7109001422032843], [11.830801314857906, 0.8282026000073794, -2.733443549834703], [11.769393643465367, 0.8234030235953935, -2.756435147226318], [11.711656271525055, 0.8188245562280021, -2.77986341206986], [11.657643733369577, 0.8144823293925971, -2.803714465349514], [11.60740802721691, 0.8103912210252098, -2.827972001373094], [11.560998387282035, 0.8065657309985513, -2.852617243597226], [11.518461061074339, 0.8030198520151841, -2.8776289299640876], [11.479839094017978, 0.7997669377863915, -2.9029833310815913], [11.445172123559825, 0.7968195706321652, -2.928654304010395], [11.414496184921525, 0.794189430849832, -2.954613383670881], [11.387843530606437, 0.791887170353636, -2.9808299129639573], [11.36524246568772, 0.7899222931716845, -3.007271211636824], [11.346717200780045, 0.7883030453889712, -3.0339027827569716], [11.332287724435597, 0.7870363170380207, -3.0606885544345617], [11.32196969650685, 0.7861275582586285, -3.087591153213824], [11.315774363787698, 0.7855807117768233, -3.1145722044025272], [11.313708498984761, 0.7853981633974483, -3.1415926535897922], [11.315774363787698, 0.7855807117768233, 3.1145722044025295], [11.32196969650685, 0.7861275582586283, 3.087591153213826], [11.332287724435597, 0.7870363170380206, 3.0606885544345634], [11.346717200780043, 0.7883030453889711, 3.0339027827569733], [11.365242465687716, 0.7899222931716844, 3.0072712116368256], [11.387843530606437, 0.7918871703536358, 2.9808299129639595], [11.414496184921523, 0.7941894308498317, 2.9546133836708828], [11.445172123559823, 0.7968195706321651, 2.9286543040103967], [11.479839094017974, 0.7997669377863913, 2.902983331081593], [11.518461061074335, 0.8030198520151839, 2.8776289299640894], [11.560998387282032, 0.8065657309985511, 2.8526172435972277], [11.607408027216906, 0.8103912210252094, 2.827972001373096], [11.657643733369573, 0.8144823293925968, 2.8037144653495156], [11.711656271525051, 0.8188245562280018, 2.7798634120698615], [11.769393643465364, 0.8234030235953932, 2.7564351472263198], [11.830801314857903, 0.828202600007379, 2.7334435498347047], [11.895822446252035, 0.8332080187445411, 2.710900142203286], [11.964398125195173, 0.8384039886811275, 2.688814181766258], [12.036467597592889, 0.8437752966140666, 2.6671927707978864], [12.111968496571603, 0.84930690038068, 2.6460409801039653], [12.190837067252277, 0.854984012320659, 2.625361982978046], [12.273008386005078, 0.8607921728833259, 2.6051571959850626], [12.358416572923877, 0.8667173143976228, 2.585426423469341], [12.446994996431783, 0.8727458152072393, 2.566168003054509], [12.53867646910095, 0.8788645445261077, 2.54737894978936], [12.633393433938627, 0.8850608984908209, 2.5290550969794907], [12.731078140553967, 0.8913228279780896, 2.5111912321162864], [12.831662810774299, 0.8976388588196581, 2.4937812266626955], [12.935079793423583, 0.9039981050870998, 2.4768181587724483], [13.041261708108294, 0.9103902761378809, 2.4602944283019452], [13.150141577976184, 0.916805678115298, 2.444201863720086], [13.26165295152056, 0.9232352105815882, 2.4285318207309405], [13.375730013597003, 0.929670358938726, 2.4132752725986104], [13.492307685900702, 0.936103183257889, 2.3984228923053474], [13.611321717221305, 0.942526304098797, 2.3839651267857667], [13.732708763849002, 0.9489328858561965, 2.3698922635652115], [13.85640646055101, 0.9553166181245089, 2.3561944901923457]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 2.3005239830218627, -2.0344439357957027], [11.85695112550842, 2.311367649387404, -2.0454932098750715], [11.716146076662774, 2.3224097415080576, -2.0570389598824015], [11.577666720501819, 2.333647831656342, -2.0691121210052024], [11.441597501950499, 2.345078495503078, -2.0817459032915067], [11.30802542474035, 2.356697186557081, -2.0949759555778096], [11.177040016069467, 2.3684980987442117, -2.108840534620521], [11.048733273066729, 2.380474016485831, -2.1233806770856103], [10.923199589050602, 2.392616151726233, -2.138640371058336], [10.800535657522193, 2.4049139674960944, -2.1546667224570113], [10.6808403518118, 2.4173549877991647, -2.17151011010589], [10.564214578315028, 2.4299245938911134, -2.1892243211674156], [10.450761101316306, 2.44260580740614, -2.2078666560705797], [10.340584337511977, 2.455379061308026, -2.22749798891433], [10.233790118520103, 2.468221960333487, -2.248182765492298], [10.130485419907139, 2.481109033500005, -2.2699889165165654], [10.03077805557935, 2.4940114824175597, -2.2929876582948836], [9.934776336784996, 2.506896930629561, -2.317253147095305], [9.842588695455259, 2.5197291810707, -2.342861946898198], [9.754323272179056, 2.532467991022245, -2.3698922635652098], [9.670087469757132, 2.54506887670685, -2.3984228923053457], [9.58998747400869, 2.557482962900187, -2.4285318207309388], [9.51412774429916, 2.5696568965909625, -2.460294428301943], [9.442610477106006, 2.581532847643577, -2.4937812266626933], [9.375535046821113, 2.5930486233173893, -2.5290550969794885], [9.312997428878607, 2.604137926890742, -2.566168003054507], [9.25508961116735, 2.614730792808288, -2.6051571959850603], [9.201899000504504, 2.6247542307425547, -2.646040980103963], [9.153507831675434, 2.6341331075381826, -2.6888141817662556], [9.109992587149065, 2.642791287893938, -2.733443549834702], [9.071423436020835, 2.650653040686936, -2.7798634120698593], [9.037863700984591, 2.657644697445861, -2.827972001373093], [9.00936936216245, 2.6636965230522156, -2.8776289299640867], [8.985988606407073, 2.6687447282137327, -2.928654304010394], [8.967761430222914, 2.672733522311426, -2.9808299129639564], [8.954719303731382, 2.6756170791668894, -3.0339027827569707], [8.946884902140793, 2.6773612731828846, -3.087591153213823], [8.94427190999916, 2.677945044588987, -3.1415926535897913], [8.946884902140793, 2.6773612731828846, 3.0875911532138267], [8.95471930373138, 2.6756170791668894, 3.0339027827569742], [8.967761430222913, 2.672733522311426, 2.9808299129639604], [8.985988606407071, 2.668744728213733, 2.9286543040103976], [9.009369362162449, 2.663696523052216, 2.8776289299640903], [9.03786370098459, 2.6576446974458614, 2.8279720013730967], [9.071423436020831, 2.6506530406869366, 2.7798634120698624], [9.109992587149062, 2.6427912878939384, 2.733443549834705], [9.15350783167543, 2.634133107538183, 2.6888141817662587], [9.2018990005045, 2.624754230742555, 2.646040980103966], [9.255089611167346, 2.614730792808289, 2.605157195985063], [9.312997428878601, 2.6041379268907425, 2.5661680030545098], [9.37553504682111, 2.59304862331739, 2.5290550969794907], [9.442610477106003, 2.5815328476435777, 2.493781226662696], [9.514127744299154, 2.5696568965909634, 2.4602944283019452], [9.589987474008685, 2.557482962900188, 2.428531820730941], [9.670087469757126, 2.545068876706851, 2.398422892305348], [9.754323272179048, 2.532467991022246, 2.3698922635652115], [9.842588695455252, 2.519729181070701, 2.3428619468982], [9.934776336784989, 2.506896930629562, 2.3172531470953066], [10.030778055579344, 2.4940114824175605, 2.2929876582948854], [10.130485419907131, 2.481109033500006, 2.2699889165165668], [10.233790118520096, 2.468221960333488, 2.2481827654922992], [10.34058433751197, 2.455379061308027, 2.2274979889143314], [10.4507611013163, 2.442605807406141, 2.207866656070581], [10.56421457831502, 2.429924593891114, 2.1892243211674165], [10.680840351811792, 2.4173549877991656, 2.171510110105891], [10.800535657522186, 2.4049139674960953, 2.154666722457012], [10.923199589050594, 2.392616151726234, 2.1386403710583375], [11.048733273066722, 2.3804740164858313, 2.123380677085611], [11.177040016069459, 2.368498098744212, 2.108840534620522], [11.308025424740341, 2.356697186557082, 2.0949759555778105], [11.441597501950492, 2.3450784955030786, 2.0817459032915075], [11.577666720501812, 2.333647831656343, 2.069112121005203], [11.716146076662765, 2.322409741508058, 2.0570389598824024], [11.856951125508411, 2.3113676493874045, 2.0454932098750724], [11.999999999999991, 2.3005239830218636, 2.0344439357957036]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.797958971132712, 1.9913306620788616, -2.0344439357957027], [9.62222895137584, 1.999513151627556, -2.0454932098750715], [9.448178601704168, 2.0079494459600964, -2.0570389598824015], [9.27590247312979, 2.0166462643747267, -2.0691121210052024], [9.10550127102511, 2.02560992679211, -2.0817459032915067], [8.9370822423526, 2.034846214234029, -2.0949759555778096], [8.770759574906734, 2.0443602039149313, -2.108840534620521], [8.606654805403307, 2.054156075367265, -2.1233806770856103], [8.444897232189108, 2.0642368837414393, -2.138640371058336], [8.285624327074476, 2.0746042962027884, -2.1546667224570113], [8.128982139289716, 2.085258287233307, -2.17151011010589], [7.975125682814269, 2.0961967886917066, -2.1892243211674156], [7.824219296312318, 2.107415290765906, -2.2078666560705797], [7.67643696262778, 2.1189063905629357, -2.22749798891433], [7.5319625722596175, 2.130659286141932, -2.248182765492298], [7.390990112491771, 2.1426592154519764, -2.2699889165165654], [7.253723760958384, 2.1548868420590597, -2.2929876582948836], [7.120377859491945, 2.167317592927689, -2.317253147095305], [6.99117674128638, 2.1799209580652317, -2.342861946898198], [6.866354381924509, 2.1926597677335957, -2.3698922635652098], [6.746153842950358, 2.2054894703319032, -2.3984228923053457], [6.630826475760287, 2.218357443008204, -2.4285318207309388], [6.520630854054154, 2.231202377451911, -2.460294428301943], [6.415831405387157, 2.2439537947701345, -2.4937812266626933], [6.316696716969319, 2.2565317550989716, -2.5290550969794885], [6.223497498215897, 2.268846838382553, -2.566168003054507], [6.136504193002544, 2.280800480706467, -2.6051571959850603], [6.055984248285806, 2.2922857532091125, -2.646040980103963], [5.982199062597591, 2.303188664908665, -2.6888141817662556], [5.915400657428955, 2.3133900535824137, -2.733443549834702], [5.855828135762527, 2.322768097361791, -2.7798634120698593], [5.8037040136084554, 2.3312014325645833, -2.827972001373093], [5.75923053053717, 2.338572801574609, -2.8776289299640867], [5.722586061779913, 2.344773082957628, -2.928654304010394], [5.6939217653032195, 2.349705483236157, -2.9808299129639564], [5.6733586003900225, 2.353289608200822, -3.0339027827569707], [5.660984848253425, 2.355465095331165, -3.087591153213823], [5.656854249492381, 2.356194490192345, -3.1415926535897913], [5.660984848253425, 2.355465095331165, 3.0875911532138267], [5.673358600390022, 2.3532896082008223, 3.0339027827569742], [5.693921765303217, 2.3497054832361575, 2.9808299129639604], [5.722586061779911, 2.3447730829576283, 2.9286543040103976], [5.759230530537168, 2.3385728015746094, 2.8776289299640903], [5.803704013608452, 2.331201432564584, 2.8279720013730967], [5.855828135762524, 2.3227680973617915, 2.7798634120698624], [5.91540065742895, 2.313390053582414, 2.733443549834705], [5.982199062597585, 2.3031886649086655, 2.6888141817662587], [6.0559842482857995, 2.2922857532091134, 2.646040980103966], [6.136504193002538, 2.2808004807064677, 2.605157195985063], [6.223497498215891, 2.268846838382554, 2.5661680030545098], [6.316696716969312, 2.2565317550989725, 2.5290550969794907], [6.415831405387149, 2.2439537947701353, 2.493781226662696], [6.520630854054146, 2.231202377451912, 2.4602944283019452], [6.630826475760279, 2.218357443008205, 2.428531820730941], [6.746153842950351, 2.205489470331904, 2.398422892305348], [6.8663543819245, 2.1926597677335966, 2.3698922635652115], [6.99117674128637, 2.1799209580652326, 2.3428619468982], [7.120377859491937, 2.1673175929276898, 2.3172531470953066], [7.253723760958375, 2.1548868420590606, 2.2929876582948854], [7.390990112491761, 2.1426592154519772, 2.2699889165165668], [7.531962572259608, 2.130659286141933, 2.2481827654922992], [7.67643696262777, 2.1189063905629366, 2.2274979889143314], [7.824219296312309, 2.1074152907659065, 2.207866656070581], [7.97512568281426, 2.096196788691707, 2.1892243211674165], [8.128982139289706, 2.0852582872333074, 2.171510110105891], [8.285624327074466, 2.074604296202789, 2.154666722457012], [8.444897232189097, 2.06423688374144, 2.1386403710583375], [8.606654805403297, 2.0541560753672656, 2.123380677085611], [8.770759574906723, 2.044360203914932, 2.108840534620522], [8.93708224235259, 2.0348462142340296, 2.0949759555778105], [9.1055012710251, 2.02560992679211, 2.0817459032915075], [9.27590247312978, 2.016646264374727, 2.069112121005203], [9.448178601704157, 2.0079494459600973, 2.0570389598824024], [9.62222895137583, 1.9995131516275566, 2.0454932098750724], [9.7979589711327, 1.9913306620788622, 2.0344439357957036]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[8.94427190999916, 1.5707963267948966, -2.0344439357957027], [8.751416456362673, 1.5707963267948966, -2.0454932098750715], [8.559677499164353, 1.5707963267948966, -2.0570389598824015], [8.36913177641596, 1.5707963267948966, -2.0691121210052024], [8.179862675903546, 1.5707963267948966, -2.0817459032915067], [7.9919608987140425, 1.5707963267948966, -2.0949759555778096], [7.805525191863655, 1.5707963267948966, -2.108840534620521], [7.620663156141455, 1.5707963267948966, -2.1233806770856103], [7.437492135272161, 1.5707963267948966, -2.138640371058336], [7.256140192237769, 1.5707963267948966, -2.1546667224570113], [7.0767471779689295, 1.5707963267948966, -2.17151011010589], [6.899465896479507, 1.5707963267948966, -2.1892243211674156], [6.7244633686849715, 1.5707963267948966, -2.2078666560705797], [6.551922194379143, 1.5707963267948966, -2.22749798891433], [6.382042007846683, 1.5707963267948966, -2.248182765492298], [6.21504101699668, 1.5707963267948966, -2.2699889165165654], [6.051157608283909, 1.5707963267948966, -2.2929876582948836], [5.890651989546071, 1.5707963267948966, -2.317253147095305], [5.733807829697787, 1.5707963267948966, -2.342861946898198], [5.580933837466084, 1.5707963267948966, -2.3698922635652098], [5.432365200605892, 1.5707963267948966, -2.3984228923053457], [5.288464782112441, 1.5707963267948966, -2.4285318207309388], [5.1496239411090015, 1.5707963267948966, -2.460294428301943], [5.0162628143222445, 1.5707963267948966, -2.4937812266626933], [4.888829861446497, 1.5707963267948966, -2.5290550969794885], [4.767800447827019, 1.5707963267948966, -2.566168003054507], [4.653674216222898, 1.5707963267948966, -2.6051571959850603], [4.546970993473105, 1.5707963267948966, -2.646040980103963], [4.4482249970683245, 1.5707963267948966, -2.6888141817662556], [4.357977161242462, 1.5707963267948966, -2.733443549834702], [4.276765501589729, 1.5707963267948966, -2.7798634120698593], [4.205113586762537, 1.5707963267948966, -2.827972001373093], [4.143517383078229, 1.5707963267948966, -2.8776289299640867], [4.092430968810315, 1.5707963267948966, -2.928654304010394], [4.052251851673798, 1.5707963267948966, -2.9808299129639564], [4.0233068250656, 1.5707963267948966, -3.0339027827569707], [4.005839419167331, 1.5707963267948966, -3.087591153213823], [4.0, 1.5707963267948966, -3.1415926535897913], [4.00583941916733, 1.5707963267948966, 3.0875911532138267], [4.023306825065598, 1.5707963267948966, 3.0339027827569742], [4.0522518516737955, 1.5707963267948966, 2.9808299129639604], [4.092430968810312, 1.5707963267948966, 2.9286543040103976], [4.143517383078225, 1.5707963267948966, 2.8776289299640903], [4.205113586762533, 1.5707963267948966, 2.8279720013730967], [4.276765501589724, 1.5707963267948966, 2.7798634120698624], [4.357977161242457, 1.5707963267948966, 2.733443549834705], [4.448224997068317, 1.5707963267948966, 2.6888141817662587], [4.5469709934730975, 1.5707963267948966, 2.646040980103966], [4.65367421622289, 1.5707963267948966, 2.605157195985063], [4.767800447827011, 1.5707963267948966, 2.5661680030545098], [4.888829861446488, 1.5707963267948966, 2.5290550969794907], [5.016262814322236, 1.5707963267948966, 2.493781226662696], [5.149623941108992, 1.5707963267948966, 2.4602944283019452], [5.288464782112431, 1.5707963267948966, 2.428531820730941], [5.432365200605882, 1.5707963267948966, 2.398422892305348], [5.580933837466073, 1.5707963267948966, 2.3698922635652115], [5.733807829697776, 1.5707963267948966, 2.3428619468982], [5.890651989546061, 1.5707963267948966, 2.3172531470953066], [6.0511576082839, 1.5707963267948966, 2.2929876582948854], [6.215041016996668, 1.5707963267948966, 2.2699889165165668], [6.382042007846671, 1.5707963267948966, 2.2481827654922992], [6.551922194379133, 1.5707963267948966, 2.2274979889143314], [6.72446336868496, 1.5707963267948966, 2.207866656070581], [6.899465896479495, 1.5707963267948966, 2.1892243211674165], [7.076747177968918, 1.5707963267948966, 2.171510110105891], [7.2561401922377575, 1.5707963267948966, 2.154666722457012], [7.437492135272149, 1.5707963267948966, 2.1386403710583375], [7.620663156141443, 1.5707963267948966, 2.123380677085611], [7.805525191863643, 1.5707963267948966, 2.108840534620522], [7.99196089871403, 1.5707963267948966, 2.0949759555778105], [8.179862675903534, 1.5707963267948966, 2.0817459032915075], [8.369131776415948, 1.5707963267948966, 2.069112121005203], [8.559677499164343, 1.5707963267948966, 2.0570389598824024], [8.75141645636266, 1.5707963267948966, 2.0454932098750724], [8.944271909999147, 1.5707963267948966, 2.0344439357957036]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.797958971132712, 1.1502619915109316, -2.0344439357957027], [9.62222895137584, 1.1420795019622372, -2.0454932098750715], [9.448178601704168, 1.1336432076296965, -2.0570389598824015], [9.27590247312979, 1.1249463892150664, -2.0691121210052024], [9.10550127102511, 1.1159827267976834, -2.0817459032915067], [8.9370822423526, 1.106746439355764, -2.0949759555778096], [8.770759574906734, 1.097232449674862, -2.108840534620521], [8.606654805403307, 1.0874365782225281, -2.1233806770856103], [8.444897232189108, 1.0773557698483538, -2.138640371058336], [8.285624327074476, 1.066988357387005, -2.1546667224570113], [8.128982139289716, 1.0563343663564864, -2.17151011010589], [7.975125682814269, 1.0453958648980868, -2.1892243211674156], [7.824219296312318, 1.0341773628238873, -2.2078666560705797], [7.67643696262778, 1.0226862630268576, -2.22749798891433], [7.5319625722596175, 1.010933367447861, -2.248182765492298], [7.390990112491771, 0.9989334381378165, -2.2699889165165654], [7.253723760958384, 0.9867058115307333, -2.2929876582948836], [7.120377859491945, 0.974275060662104, -2.317253147095305], [6.99117674128638, 0.9616716955245617, -2.342861946898198], [6.866354381924509, 0.9489328858561973, -2.3698922635652098], [6.746153842950358, 0.9361031832578899, -2.3984228923053457], [6.630826475760287, 0.923235210581589, -2.4285318207309388], [6.520630854054154, 0.9103902761378818, -2.460294428301943], [6.415831405387157, 0.8976388588196588, -2.4937812266626933], [6.316696716969319, 0.8850608984908216, -2.5290550969794885], [6.223497498215897, 0.8727458152072399, -2.566168003054507], [6.136504193002544, 0.8607921728833265, -2.6051571959850603], [6.055984248285806, 0.8493069003806806, -2.646040980103963], [5.982199062597591, 0.8384039886811282, -2.6888141817662556], [5.915400657428955, 0.8282026000073796, -2.733443549834702], [5.855828135762527, 0.8188245562280022, -2.7798634120698593], [5.8037040136084554, 0.8103912210252099, -2.827972001373093], [5.75923053053717, 0.8030198520151842, -2.8776289299640867], [5.722586061779913, 0.7968195706321654, -2.928654304010394], [5.6939217653032195, 0.791887170353636, -2.9808299129639564], [5.6733586003900225, 0.7883030453889712, -3.0339027827569707], [5.660984848253425, 0.7861275582586285, -3.087591153213823], [5.656854249492381, 0.7853981633974483, -3.1415926535897913], [5.660984848253425, 0.7861275582586283, 3.0875911532138267], [5.673358600390022, 0.788303045388971, 3.0339027827569742], [5.693921765303217, 0.7918871703536356, 2.9808299129639604], [5.722586061779911, 0.796819570632165, 2.9286543040103976], [5.759230530537168, 0.8030198520151838, 2.8776289299640903], [5.803704013608452, 0.8103912210252093, 2.8279720013730967], [5.855828135762524, 0.8188245562280017, 2.7798634120698624], [5.91540065742895, 0.8282026000073789, 2.733443549834705], [5.982199062597585, 0.8384039886811274, 2.6888141817662587], [6.0559842482857995, 0.8493069003806798, 2.646040980103966], [6.136504193002538, 0.8607921728833257, 2.605157195985063], [6.223497498215891, 0.872745815207239, 2.5661680030545098], [6.316696716969312, 0.8850608984908207, 2.5290550969794907], [6.415831405387149, 0.8976388588196579, 2.493781226662696], [6.520630854054146, 0.9103902761378809, 2.4602944283019452], [6.630826475760279, 0.9232352105815881, 2.428531820730941], [6.746153842950351, 0.936103183257889, 2.398422892305348], [6.8663543819245, 0.9489328858561964, 2.3698922635652115], [6.99117674128637, 0.9616716955245608, 2.3428619468982], [7.120377859491937, 0.9742750606621032, 2.3172531470953066], [7.253723760958375, 0.9867058115307326, 2.2929876582948854], [7.390990112491761, 0.9989334381378158, 2.2699889165165668], [7.531962572259608, 1.0109333674478602, 2.2481827654922992], [7.67643696262777, 1.0226862630268567, 2.2274979889143314], [7.824219296312309, 1.0341773628238866, 2.207866656070581], [7.97512568281426, 1.0453958648980861, 2.1892243211674165], [8.128982139289706, 1.0563343663564857, 2.171510110105891], [8.285624327074466, 1.0669883573870043, 2.154666722457012], [8.444897232189097, 1.0773557698483531, 2.1386403710583375], [8.606654805403297, 1.0874365782225275, 2.123380677085611], [8.770759574906723, 1.0972324496748613, 2.108840534620522], [8.93708224235259, 1.1067464393557633, 2.0949759555778105], [9.1055012710251, 1.115982726797683, 2.0817459032915075], [9.27590247312978, 1.124946389215066, 2.069112121005203], [9.448178601704157, 1.133643207629696, 2.0570389598824024], [9.62222895137583, 1.1420795019622365, 2.0454932098750724], [9.7979589711327, 1.150261991510931, 2.0344439357957036]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 0.8410686705679303, -2.0344439357957027], [11.85695112550842, 0.8302250042023892, -2.0454932098750715], [11.716146076662774, 0.8191829120817355, -2.0570389598824015], [11.577666720501819, 0.807944821933451, -2.0691121210052024], [11.441597501950499, 0.796514158086715, -2.0817459032915067], [11.30802542474035, 0.7848954670327121, -2.0949759555778096], [11.177040016069467, 0.7730945548455816, -2.108840534620521], [11.048733273066729, 0.7611186371039624, -2.1233806770856103], [10.923199589050602, 0.7489765018635599, -2.138640371058336], [10.800535657522193, 0.7366786860936986, -2.1546667224570113], [10.6808403518118, 0.7242376657906282, -2.17151011010589], [10.564214578315028, 0.7116680596986799, -2.1892243211674156], [10.450761101316306, 0.6989868461836529, -2.2078666560705797], [10.340584337511977, 0.686213592281767, -2.22749798891433], [10.233790118520103, 0.673370693256306, -2.248182765492298], [10.130485419907139, 0.660483620089788, -2.2699889165165654], [10.03077805557935, 0.6475811711722332, -2.2929876582948836], [9.934776336784996, 0.6346957229602319, -2.317253147095305], [9.842588695455259, 0.6218634725190931, -2.342861946898198], [9.754323272179056, 0.609124662567548, -2.3698922635652098], [9.670087469757132, 0.5965237768829432, -2.3984228923053457], [9.58998747400869, 0.5841096906896063, -2.4285318207309388], [9.51412774429916, 0.5719357569988306, -2.460294428301943], [9.442610477106006, 0.5600598059462162, -2.4937812266626933], [9.375535046821113, 0.548544030272404, -2.5290550969794885], [9.312997428878607, 0.5374547266990511, -2.566168003054507], [9.25508961116735, 0.526861860781505, -2.6051571959850603], [9.201899000504504, 0.5168384228472385, -2.646040980103963], [9.153507831675434, 0.5074595460516106, -2.6888141817662556], [9.109992587149065, 0.49880136569585537, -2.733443549834702], [9.071423436020835, 0.4909396129028569, -2.7798634120698593], [9.037863700984591, 0.4839479561439322, -2.827972001373093], [9.00936936216245, 0.4778961305375776, -2.8776289299640867], [8.985988606407073, 0.4728479253760603, -2.928654304010394], [8.967761430222914, 0.46885913127836704, -2.9808299129639564], [8.954719303731382, 0.4659755744229038, -3.0339027827569707], [8.946884902140793, 0.46423138040690864, -3.087591153213823], [8.94427190999916, 0.4636476090008061, -3.1415926535897913], [8.946884902140793, 0.46423138040690853, 3.0875911532138267], [8.95471930373138, 0.46597557442290366, 3.0339027827569742], [8.967761430222913, 0.4688591312783668, 2.9808299129639604], [8.985988606407071, 0.4728479253760601, 2.9286543040103976], [9.009369362162449, 0.47789613053757724, 2.8776289299640903], [9.03786370098459, 0.48394795614393177, 2.8279720013730967], [9.071423436020831, 0.4909396129028564, 2.7798634120698624], [9.109992587149062, 0.49880136569585487, 2.733443549834705], [9.15350783167543, 0.5074595460516099, 2.6888141817662587], [9.2018990005045, 0.5168384228472378, 2.646040980103966], [9.255089611167346, 0.5268618607815042, 2.605157195985063], [9.312997428878601, 0.5374547266990504, 2.5661680030545098], [9.37553504682111, 0.5485440302724032, 2.5290550969794907], [9.442610477106003, 0.5600598059462154, 2.493781226662696], [9.514127744299154, 0.5719357569988297, 2.4602944283019452], [9.589987474008685, 0.5841096906896054, 2.428531820730941], [9.670087469757126, 0.5965237768829423, 2.398422892305348], [9.754323272179048, 0.6091246625675472, 2.3698922635652115], [9.842588695455252, 0.6218634725190922, 2.3428619468982], [9.934776336784989, 0.6346957229602311, 2.3172531470953066], [10.030778055579344, 0.6475811711722325, 2.2929876582948854], [10.130485419907131, 0.6604836200897871, 2.2699889165165668], [10.233790118520096, 0.6733706932563052, 2.2481827654922992], [10.34058433751197, 0.6862135922817663, 2.2274979889143314], [10.4507611013163, 0.698986846183652, 2.207866656070581], [10.56421457831502, 0.7116680596986791, 2.1892243211674165], [10.680840351811792, 0.7242376657906274, 2.171510110105891], [10.800535657522186, 0.7366786860936978, 2.154666722457012], [10.923199589050594, 0.748976501863559, 2.1386403710583375], [11.048733273066722, 0.7611186371039617, 2.123380677085611], [11.177040016069459, 0.7730945548455809, 2.108840534620522], [11.308025424740341, 0.7848954670327113, 2.0949759555778105], [11.441597501950492, 0.7965141580867143, 2.0817459032915075], [11.577666720501812, 0.8079448219334502, 2.069112121005203], [11.716146076662765, 0.8191829120817349, 2.0570389598824024], [11.856951125508411, 0.8302250042023885, 2.0454932098750724], [11.999999999999991, 0.8410686705679296, 2.0344439357957036]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[11.313708498984761, 2.356194490192345, -1.5707963267948966], [11.161867674932157, 2.3698922635652107, -1.5707963267948966], [11.01217866226754, 2.3839651267857658, -1.5707963267948966], [10.864730401211775, 2.3984228923053466, -1.5707963267948966], [10.719615356748577, 2.413275272598609, -1.5707963267948966], [10.576929564224875, 2.4285318207309396, -1.5707963267948966], [10.436772658289446, 2.4442018637200853, -1.5707963267948966], [10.299247882217994, 2.460294428301944, -1.5707963267948966], [10.164462074415706, 2.4768181587724474, -1.5707963267948966], [10.032525628644482, 2.493781226662694, -1.5707963267948966], [9.903552424301656, 2.5111912321162855, -1.5707963267948966], [9.777659722892986, 2.5290550969794894, -1.5707963267948966], [9.65496802670967, 2.547378949789359, -1.5707963267948966], [9.535600895654033, 2.566168003054508, -1.5707963267948966], [9.419684718180312, 2.5854264234693396, -1.5707963267948966], [9.30734843244579, 2.6051571959850612, -1.5707963267948966], [9.198723194024932, 2.6253619829780446, -1.5707963267948966], [9.093941986946204, 2.646040980103964, -1.5707963267948966], [8.993139175388293, 2.667192770797885, -1.5707963267948966], [8.896449994136646, 2.6888141817662565, -1.5707963267948966], [8.804009976865876, 2.7109001422032843, -1.5707963267948966], [8.715954322484922, 2.733443549834703, -1.5707963267948966], [8.632417201157681, 2.756435147226318, -1.5707963267948966], [8.553531003179454, 2.77986341206986, -1.5707963267948966], [8.479425535622738, 2.803714465349514, -1.5707963267948966], [8.410227173525072, 2.827972001373094, -1.5707963267948966], [8.346057974321637, 2.852617243597226, -1.5707963267948966], [8.287034766156456, 2.8776289299640876, -1.5707963267948966], [8.233268222555578, 2.9029833310815913, -1.5707963267948966], [8.184861937620628, 2.928654304010395, -1.5707963267948966], [8.141911517302804, 2.954613383670881, -1.5707963267948966], [8.104503703347596, 2.9808299129639573, -1.5707963267948966], [8.07271554706788, 3.007271211636824, -1.5707963267948966], [8.0466136501312, 3.0339027827569716, -1.5707963267948966], [8.026253488981876, 3.0606885544345617, -1.5707963267948966], [8.011678838334662, 3.087591153213824, -1.5707963267948966], [8.002921307382378, 3.1145722044025272, -1.5707963267948966], [8.0, 3.1415926535897922, -1.5707963267948966], [8.002921307382378, 3.1145722044025295, 1.5707963267948966], [8.01167883833466, 3.087591153213826, 1.5707963267948966], [8.026253488981874, 3.0606885544345634, 1.5707963267948966], [8.046613650131198, 3.0339027827569733, 1.5707963267948966], [8.072715547067878, 3.0072712116368256, 1.5707963267948966], [8.104503703347593, 2.9808299129639595, 1.5707963267948966], [8.1419115173028, 2.9546133836708828, 1.5707963267948966], [8.184861937620626, 2.9286543040103967, 1.5707963267948966], [8.233268222555575, 2.902983331081593, 1.5707963267948966], [8.287034766156452, 2.8776289299640894, 1.5707963267948966], [8.346057974321633, 2.8526172435972277, 1.5707963267948966], [8.410227173525067, 2.827972001373096, 1.5707963267948966], [8.479425535622733, 2.8037144653495156, 1.5707963267948966], [8.55353100317945, 2.7798634120698615, 1.5707963267948966], [8.632417201157676, 2.7564351472263198, 1.5707963267948966], [8.715954322484915, 2.7334435498347047, 1.5707963267948966], [8.80400997686587, 2.710900142203286, 1.5707963267948966], [8.896449994136638, 2.688814181766258, 1.5707963267948966], [8.993139175388286, 2.6671927707978864, 1.5707963267948966], [9.093941986946199, 2.6460409801039653, 1.5707963267948966], [9.198723194024925, 2.625361982978046, 1.5707963267948966], [9.307348432445783, 2.6051571959850626, 1.5707963267948966], [9.419684718180305, 2.585426423469341, 1.5707963267948966], [9.535600895654026, 2.566168003054509, 1.5707963267948966], [9.654968026709662, 2.54737894978936, 1.5707963267948966], [9.77765972289298, 2.5290550969794907, 1.5707963267948966], [9.903552424301648, 2.5111912321162864, 1.5707963267948966], [10.032525628644475, 2.4937812266626955, 1.5707963267948966], [10.164462074415699, 2.4768181587724483, 1.5707963267948966], [10.299247882217985, 2.4602944283019452, 1.5707963267948966], [10.436772658289437, 2.444201863720086, 1.5707963267948966], [10.576929564224864, 2.4285318207309405, 1.5707963267948966], [10.719615356748568, 2.4132752725986104, 1.5707963267948966], [10.864730401211764, 2.3984228923053474, 1.5707963267948966], [11.012178662267532, 2.3839651267857667, 1.5707963267948966], [11.161867674932148, 2.3698922635652115, 1.5707963267948966], [11.31370849898475, 2.3561944901923457, 1.5707963267948966]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[8.94427190999916, 2.0344439357957027, -1.5707963267948966], [8.751416456362673, 2.0454932098750715, -1.5707963267948966], [8.559677499164353, 2.0570389598824015, -1.5707963267948966], [8.36913177641596, 2.0691121210052024, -1.5707963267948966], [8.179862675903546, 2.0817459032915067, -1.5707963267948966], [7.9919608987140425, 2.0949759555778096, -1.5707963267948966], [7.805525191863655, 2.108840534620521, -1.5707963267948966], [7.620663156141455, 2.1233806770856103, -1.5707963267948966], [7.437492135272161, 2.138640371058336, -1.5707963267948966], [7.256140192237769, 2.1546667224570113, -1.5707963267948966], [7.0767471779689295, 2.17151011010589, -1.5707963267948966], [6.899465896479507, 2.1892243211674156, -1.5707963267948966], [6.7244633686849715, 2.2078666560705797, -1.5707963267948966], [6.551922194379143, 2.22749798891433, -1.5707963267948966], [6.382042007846683, 2.248182765492298, -1.5707963267948966], [6.21504101699668, 2.2699889165165654, -1.5707963267948966], [6.051157608283909, 2.2929876582948836, -1.5707963267948966], [5.890651989546071, 2.317253147095305, -1.5707963267948966], [5.733807829697787, 2.342861946898198, -1.5707963267948966], [5.580933837466084, 2.3698922635652098, -1.5707963267948966], [5.432365200605892, 2.3984228923053457, -1.5707963267948966], [5.288464782112441, 2.4285318207309388, -1.5707963267948966], [5.1496239411090015, 2.460294428301943, -1.5707963267948966], [5.0162628143222445, 2.4937812266626933, -1.5707963267948966], [4.888829861446497, 2.5290550969794885, -1.5707963267948966], [4.767800447827019, 2.566168003054507, -1.5707963267948966], [4.653674216222898, 2.6051571959850603, -1.5707963267948966], [4.546970993473105, 2.646040980103963, -1.5707963267948966], [4.4482249970683245, 2.6888141817662556, -1.5707963267948966], [4.357977161242462, 2.733443549834702, -1.5707963267948966], [4.276765501589729, 2.7798634120698593, -1.5707963267948966], [4.205113586762537, 2.827972001373093, -1.5707963267948966], [4.143517383078229, 2.8776289299640867, -1.5707963267948966], [4.092430968810315, 2.928654304010394, -1.5707963267948966], [4.052251851673798, 2.9808299129639564, -1.5707963267948966], [4.0233068250656, 3.0339027827569707, -1.5707963267948966], [4.005839419167331, 3.087591153213823, -1.5707963267948966], [4.0, 3.1415926535897913, -1.5707963267948966], [4.00583941916733, 3.0875911532138267, 1.5707963267948966], [4.023306825065598, 3.0339027827569742, 1.5707963267948966], [4.0522518516737955, 2.9808299129639604, 1.5707963267948966], [4.092430968810312, 2.9286543040103976, 1.5707963267948966], [4.143517383078225, 2.8776289299640903, 1.5707963267948966], [4.205113586762533, 2.8279720013730967, 1.5707963267948966], [4.276765501589724, 2.7798634120698624, 1.5707963267948966], [4.357977161242457, 2.733443549834705, 1.5707963267948966], [4.448224997068317, 2.6888141817662587, 1.5707963267948966], [4.5469709934730975, 2.646040980103966, 1.5707963267948966], [4.65367421622289, 2.605157195985063, 1.5707963267948966], [4.767800447827011, 2.5661680030545098, 1.5707963267948966], [4.888829861446488, 2.5290550969794907, 1.5707963267948966], [5.016262814322236, 2.493781226662696, 1.5707963267948966], [5.149623941108992, 2.4602944283019452, 1.5707963267948966], [5.288464782112431, 2.428531820730941, 1.5707963267948966], [5.432365200605882, 2.398422892305348, 1.5707963267948966], [5.580933837466073, 2.3698922635652115, 1.5707963267948966], [5.733807829697776, 2.3428619468982, 1.5707963267948966], [5.890651989546061, 2.3172531470953066, 1.5707963267948966], [6.0511576082839, 2.2929876582948854, 1.5707963267948966], [6.215041016996668, 2.2699889165165668, 1.5707963267948966], [6.382042007846671, 2.2481827654922992, 1.5707963267948966], [6.551922194379133, 2.2274979889143314, 1.5707963267948966], [6.72446336868496, 2.207866656070581, 1.5707963267948966], [6.899465896479495, 2.1892243211674165, 1.5707963267948966], [7.076747177968918, 2.171510110105891, 1.5707963267948966], [7.2561401922377575, 2.154666722457012, 1.5707963267948966], [7.437492135272149, 2.1386403710583375, 1.5707963267948966], [7.620663156141443, 2.123380677085611, 1.5707963267948966], [7.805525191863643, 2.108840534620522, 1.5707963267948966], [7.99196089871403, 2.0949759555778105, 1.5707963267948966], [8.179862675903534, 2.0817459032915075, 1.5707963267948966], [8.369131776415948, 2.069112121005203, 1.5707963267948966], [8.559677499164343, 2.0570389598824024, 1.5707963267948966], [8.75141645636266, 2.0454932098750724, 1.5707963267948966], [8.944271909999147, 2.0344439357957036, 1.5707963267948966]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[8.0, 1.5707963267948966, -1.5707963267948966], [7.783783783783784, 1.5707963267948966, -1.5707963267948966], [7.567567567567568, 1.5707963267948966, -1.5707963267948966], [7.351351351351353, 1.5707963267948966, -1.5707963267948966], [7.135135135135137, 1.5707963267948966, -1.5707963267948966], [6.918918918918921, 1.5707963267948966, -1.5707963267948966], [6.702702702702705, 1.5707963267948966, -1.5707963267948966], [6.4864864864864895, 1.5707963267948966, -1.5707963267948966], [6.270270270270274, 1.5707963267948966, -1.5707963267948966], [6.054054054054058, 1.5707963267948966, -1.5707963267948966], [5.837837837837842, 1.5707963267948966, -1.5707963267948966], [5.621621621621626, 1.5707963267948966, -1.5707963267948966], [5.405405405405411, 1.5707963267948966, -1.5707963267948966], [5.189189189189195, 1.5707963267948966, -1.5707963267948966], [4.972972972972979, 1.5707963267948966, -1.5707963267948966], [4.756756756756763, 1.5707963267948966, -1.5707963267948966], [4.5405405405405475, 1.5707963267948966, -1.5707963267948966], [4.324324324324332, 1.5707963267948966, -1.5707963267948966], [4.108108108108116, 1.5707963267948966, -1.5707963267948966], [3.8918918918918997, 1.5707963267948966, -1.5707963267948966], [3.6756756756756834, 1.5707963267948966, -1.5707963267948966], [3.459459459459467, 1.5707963267948966, -1.5707963267948966], [3.243243243243251, 1.5707963267948966, -1.5707963267948966], [3.0270270270270347, 1.5707963267948966, -1.5707963267948966], [2.8108108108108185, 1.5707963267948966, -1.5707963267948966], [2.5945945945946023, 1.5707963267948966, -1.5707963267948966], [2.378378378378386, 1.5707963267948966, -1.5707963267948966], [2.16216216216217, 1.5707963267948966, -1.5707963267948966], [1.9459459459459536, 1.5707963267948966, -1.5707963267948966], [1.7297297297297374, 1.5707963267948966, -1.5707963267948966], [1.5135135135135211, 1.5707963267948966, -1.5707963267948966], [1.297297297297305, 1.5707963267948966, -1.5707963267948966], [1.0810810810810887, 1.5707963267948966, -1.5707963267948966], [0.8648648648648725, 1.5707963267948966, -1.5707963267948966], [0.6486486486486562, 1.5707963267948966, -1.5707963267948966], [0.43243243243244, 1.5707963267948966, -1.5707963267948966], [0.21621621621622378, 1.5707963267948966, -1.5707963267948966], [7.549516567451064e-15, 1.5707963267948966, -1.5707963267948966], [0.21621621621620868, 1.5707963267948966, 1.5707963267948966], [0.4324324324324249, 1.5707963267948966, 1.5707963267948966], [0.6486486486486411, 1.5707963267948966, 1.5707963267948966], [0.8648648648648574, 1.5707963267948966, 1.5707963267948966], [1.0810810810810736, 1.5707963267948966, 1.5707963267948966], [1.2972972972972898, 1.5707963267948966, 1.5707963267948966], [1.513513513513506, 1.5707963267948966, 1.5707963267948966], [1.7297297297297223, 1.5707963267948966, 1.5707963267948966], [1.9459459459459385, 1.5707963267948966, 1.5707963267948966], [2.1621621621621547, 1.5707963267948966, 1.5707963267948966], [2.378378378378371, 1.5707963267948966, 1.5707963267948966], [2.594594594594587, 1.5707963267948966, 1.5707963267948966], [2.8108108108108034, 1.5707963267948966, 1.5707963267948966], [3.0270270270270196, 1.5707963267948966, 1.5707963267948966], [3.243243243243236, 1.5707963267948966, 1.5707963267948966], [3.459459459459452, 1.5707963267948966, 1.5707963267948966], [3.6756756756756683, 1.5707963267948966, 1.5707963267948966], [3.8918918918918846, 1.5707963267948966, 1.5707963267948966], [4.108108108108101, 1.5707963267948966, 1.5707963267948966], [4.3243243243243175, 1.5707963267948966, 1.5707963267948966], [4.540540540540533, 1.5707963267948966, 1.5707963267948966], [4.756756756756749, 1.5707963267948966, 1.5707963267948966], [4.972972972972965, 1.5707963267948966, 1.5707963267948966], [5.189189189189181, 1.5707963267948966, 1.5707963267948966], [5.405405405405396, 1.5707963267948966, 1.5707963267948966], [5.621621621621612, 1.5707963267948966, 1.5707963267948966], [5.837837837837828, 1.5707963267948966, 1.5707963267948966], [6.054054054054044, 1.5707963267948966, 1.5707963267948966], [6.2702702702702595, 1.5707963267948966, 1.5707963267948966], [6.486486486486475, 1.5707963267948966, 1.5707963267948966], [6.702702702702691, 1.5707963267948966, 1.5707963267948966], [6.918918918918907, 1.5707963267948966, 1.5707963267948966], [7.135135135135123, 1.5707963267948966, 1.5707963267948966], [7.351351351351338, 1.5707963267948966, 1.5707963267948966], [7.567567567567554, 1.5707963267948966, 1.5707963267948966], [7.78378378378377, 1.5707963267948966, 1.5707963267948966], [7.999999999999986, 1.5707963267948966, 1.5707963267948966]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[8.94427190999916, 1.1071487177940904, -1.5707963267948966], [8.751416456362673, 1.0960994437147218, -1.5707963267948966], [8.559677499164353, 1.0845536937073916, -1.5707963267948966], [8.36913177641596, 1.0724805325845908, -1.5707963267948966], [8.179862675903546, 1.0598467502982865, -1.5707963267948966], [7.9919608987140425, 1.0466166980119835, -1.5707963267948966], [7.805525191863655, 1.032752118969272, -1.5707963267948966], [7.620663156141455, 1.0182119765041828, -1.5707963267948966], [7.437492135272161, 1.002952282531457, -1.5707963267948966], [7.256140192237769, 0.9869259311327819, -1.5707963267948966], [7.0767471779689295, 0.9700825434839032, -1.5707963267948966], [6.899465896479507, 0.9523683324223776, -1.5707963267948966], [6.7244633686849715, 0.9337259975192135, -1.5707963267948966], [6.551922194379143, 0.914094664675463, -1.5707963267948966], [6.382042007846683, 0.8934098880974952, -1.5707963267948966], [6.21504101699668, 0.8716037370732278, -1.5707963267948966], [6.051157608283909, 0.8486049952949093, -1.5707963267948966], [5.890651989546071, 0.8243395064944884, -1.5707963267948966], [5.733807829697787, 0.798730706691595, -1.5707963267948966], [5.580933837466084, 0.7717003900245836, -1.5707963267948966], [5.432365200605892, 0.7431697612844474, -1.5707963267948966], [5.288464782112441, 0.7130608328588545, -1.5707963267948966], [5.1496239411090015, 0.6812982252878501, -1.5707963267948966], [5.0162628143222445, 0.6478114269270997, -1.5707963267948966], [4.888829861446497, 0.6125375566103046, -1.5707963267948966], [4.767800447827019, 0.5754246505352862, -1.5707963267948966], [4.653674216222898, 0.5364354576047327, -1.5707963267948966], [4.546970993473105, 0.49555167348583, -1.5707963267948966], [4.4482249970683245, 0.4527784718235375, -1.5707963267948966], [4.357977161242462, 0.4081491037550909, -1.5707963267948966], [4.276765501589729, 0.3617292415199339, -1.5707963267948966], [4.205113586762537, 0.3136206522167, -1.5707963267948966], [4.143517383078229, 0.26396372362570636, -1.5707963267948966], [4.092430968810315, 0.21293834957939897, -1.5707963267948966], [4.052251851673798, 0.16076274062583656, -1.5707963267948966], [4.0233068250656, 0.10768987083282255, -1.5707963267948966], [4.005839419167331, 0.05400150037597017, -1.5707963267948966], [4.0, 1.887379141862766e-15, -1.5707963267948966], [4.00583941916733, 0.05400150037596641, 1.5707963267948966], [4.023306825065598, 0.10768987083281882, 1.5707963267948966], [4.0522518516737955, 0.16076274062583287, 1.5707963267948966], [4.092430968810312, 0.21293834957939536, 1.5707963267948966], [4.143517383078225, 0.2639637236257028, 1.5707963267948966], [4.205113586762533, 0.3136206522166966, 1.5707963267948966], [4.276765501589724, 0.3617292415199306, 1.5707963267948966], [4.357977161242457, 0.4081491037550877, 1.5707963267948966], [4.448224997068317, 0.4527784718235344, 1.5707963267948966], [4.5469709934730975, 0.4955516734858271, 1.5707963267948966], [4.65367421622289, 0.5364354576047299, 1.5707963267948966], [4.767800447827011, 0.5754246505352836, 1.5707963267948966], [4.888829861446488, 0.6125375566103022, 1.5707963267948966], [5.016262814322236, 0.6478114269270973, 1.5707963267948966], [5.149623941108992, 0.6812982252878479, 1.5707963267948966], [5.288464782112431, 0.7130608328588522, 1.5707963267948966], [5.432365200605882, 0.7431697612844455, 1.5707963267948966], [5.580933837466073, 0.7717003900245816, 1.5707963267948966], [5.733807829697776, 0.7987307066915931, 1.5707963267948966], [5.890651989546061, 0.8243395064944867, 1.5707963267948966], [6.0511576082839, 0.8486049952949077, 1.5707963267948966], [6.215041016996668, 0.8716037370732264, 1.5707963267948966], [6.382042007846671, 0.8934098880974938, 1.5707963267948966], [6.551922194379133, 0.9140946646754616, 1.5707963267948966], [6.72446336868496, 0.9337259975192123, 1.5707963267948966], [6.899465896479495, 0.9523683324223765, 1.5707963267948966], [7.076747177968918, 0.9700825434839021, 1.5707963267948966], [7.2561401922377575, 0.9869259311327808, 1.5707963267948966], [7.437492135272149, 1.0029522825314559, 1.5707963267948966], [7.620663156141443, 1.018211976504182, 1.5707963267948966], [7.805525191863643, 1.032752118969271, 1.5707963267948966], [7.99196089871403, 1.0466166980119826, 1.5707963267948966], [8.179862675903534, 1.0598467502982856, 1.5707963267948966], [8.369131776415948, 1.07248053258459, 1.5707963267948966], [8.559677499164343, 1.084553693707391, 1.5707963267948966], [8.75141645636266, 1.096099443714721, 1.5707963267948966], [8.944271909999147, 1.1071487177940897, 1.5707963267948966]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[11.313708498984761, 0.7853981633974483, -1.5707963267948966], [11.161867674932157, 0.7717003900245826, -1.5707963267948966], [11.01217866226754, 0.7576275268040273, -1.5707963267948966], [10.864730401211775, 0.7431697612844465, -1.5707963267948966], [10.719615356748577, 0.7283173809911838, -1.5707963267948966], [10.576929564224875, 0.7130608328588535, -1.5707963267948966], [10.436772658289446, 0.6973907898697077, -1.5707963267948966], [10.299247882217994, 0.6812982252878492, -1.5707963267948966], [10.164462074415706, 0.6647744948173459, -1.5707963267948966], [10.032525628644482, 0.6478114269270987, -1.5707963267948966], [9.903552424301656, 0.6304014214735076, -1.5707963267948966], [9.777659722892986, 0.6125375566103037, -1.5707963267948966], [9.65496802670967, 0.5942137038004344, -1.5707963267948966], [9.535600895654033, 0.5754246505352854, -1.5707963267948966], [9.419684718180312, 0.5561662301204535, -1.5707963267948966], [9.30734843244579, 0.5364354576047319, -1.5707963267948966], [9.198723194024932, 0.5162306706117485, -1.5707963267948966], [9.093941986946204, 0.49555167348582924, -1.5707963267948966], [8.993139175388293, 0.47439988279190815, -1.5707963267948966], [8.896449994136646, 0.4527784718235367, -1.5707963267948966], [8.804009976865876, 0.43069251138650877, -1.5707963267948966], [8.715954322484922, 0.4081491037550901, -1.5707963267948966], [8.632417201157681, 0.385157506363475, -1.5707963267948966], [8.553531003179454, 0.3617292415199331, -1.5707963267948966], [8.479425535622738, 0.33787818824027926, -1.5707963267948966], [8.410227173525072, 0.31362065221669916, -1.5707963267948966], [8.346057974321637, 0.2889754099925673, -1.5707963267948966], [8.287034766156456, 0.26396372362570547, -1.5707963267948966], [8.233268222555578, 0.23860932250820185, -1.5707963267948966], [8.184861937620628, 0.21293834957939806, -1.5707963267948966], [8.141911517302804, 0.186979269918912, -1.5707963267948966], [8.104503703347596, 0.16076274062583565, -1.5707963267948966], [8.07271554706788, 0.13432144195296944, -1.5707963267948966], [8.0466136501312, 0.10768987083282162, -1.5707963267948966], [8.026253488981876, 0.08090409915523153, -1.5707963267948966], [8.011678838334662, 0.054001500375969236, -1.5707963267948966], [8.002921307382378, 0.027020449187265733, -1.5707963267948966], [8.0, 9.43689570931383e-16, -1.5707963267948966], [8.002921307382378, 0.02702044918726385, 1.5707963267948966], [8.01167883833466, 0.054001500375967355, 1.5707963267948966], [8.026253488981874, 0.08090409915522966, 1.5707963267948966], [8.046613650131198, 0.10768987083281976, 1.5707963267948966], [8.072715547067878, 0.13432144195296758, 1.5707963267948966], [8.104503703347593, 0.1607627406258338, 1.5707963267948966], [8.1419115173028, 0.1869792699189102, 1.5707963267948966], [8.184861937620626, 0.21293834957939625, 1.5707963267948966], [8.233268222555575, 0.23860932250820008, 1.5707963267948966], [8.287034766156452, 0.2639637236257037, 1.5707963267948966], [8.346057974321633, 0.28897540999256555, 1.5707963267948966], [8.410227173525067, 0.31362065221669744, 1.5707963267948966], [8.479425535622733, 0.3378781882402776, 1.5707963267948966], [8.55353100317945, 0.3617292415199314, 1.5707963267948966], [8.632417201157676, 0.3851575063634734, 1.5707963267948966], [8.715954322484915, 0.4081491037550885, 1.5707963267948966], [8.80400997686587, 0.4306925113865072, 1.5707963267948966], [8.896449994136638, 0.4527784718235352, 1.5707963267948966], [8.993139175388286, 0.47439988279190665, 1.5707963267948966], [9.093941986946199, 0.49555167348582785, 1.5707963267948966], [9.198723194024925, 0.5162306706117471, 1.5707963267948966], [9.307348432445783, 0.5364354576047305, 1.5707963267948966], [9.419684718180305, 0.5561662301204522, 1.5707963267948966], [9.535600895654026, 0.5754246505352841, 1.5707963267948966], [9.654968026709662, 0.5942137038004331, 1.5707963267948966], [9.77765972289298, 0.6125375566103026, 1.5707963267948966], [9.903552424301648, 0.6304014214735065, 1.5707963267948966], [10.032525628644475, 0.6478114269270976, 1.5707963267948966], [10.164462074415699, 0.6647744948173447, 1.5707963267948966], [10.299247882217985, 0.6812982252878481, 1.5707963267948966], [10.436772658289437, 0.6973907898697067, 1.5707963267948966], [10.576929564224864, 0.7130608328588525, 1.5707963267948966], [10.719615356748568, 0.7283173809911828, 1.5707963267948966], [10.864730401211764, 0.7431697612844456, 1.5707963267948966], [11.012178662267532, 0.7576275268040263, 1.5707963267948966], [11.161867674932148, 0.7717003900245817, 1.5707963267948966], [11.31370849898475, 0.7853981633974474, 1.5707963267948966]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 2.3005239830218627, -1.1071487177940904], [11.85695112550842, 2.311367649387404, -1.0960994437147218], [11.716146076662774, 2.3224097415080576, -1.0845536937073916], [11.577666720501819, 2.333647831656342, -1.0724805325845908], [11.441597501950499, 2.345078495503078, -1.0598467502982865], [11.30802542474035, 2.356697186557081, -1.0466166980119835], [11.177040016069467, 2.3684980987442117, -1.032752118969272], [11.048733273066729, 2.380474016485831, -1.0182119765041828], [10.923199589050602, 2.392616151726233, -1.002952282531457], [10.800535657522193, 2.4049139674960944, -0.9869259311327819], [10.6808403518118, 2.4173549877991647, -0.9700825434839032], [10.564214578315028, 2.4299245938911134, -0.9523683324223776], [10.450761101316306, 2.44260580740614, -0.9337259975192135], [10.340584337511977, 2.455379061308026, -0.914094664675463], [10.233790118520103, 2.468221960333487, -0.8934098880974952], [10.130485419907139, 2.481109033500005, -0.8716037370732278], [10.03077805557935, 2.4940114824175597, -0.8486049952949093], [9.934776336784996, 2.506896930629561, -0.8243395064944884], [9.842588695455259, 2.5197291810707, -0.798730706691595], [9.754323272179056, 2.532467991022245, -0.7717003900245836], [9.670087469757132, 2.54506887670685, -0.7431697612844474], [9.58998747400869, 2.557482962900187, -0.7130608328588545], [9.51412774429916, 2.5696568965909625, -0.6812982252878501], [9.442610477106006, 2.581532847643577, -0.6478114269270997], [9.375535046821113, 2.5930486233173893, -0.6125375566103046], [9.312997428878607, 2.604137926890742, -0.5754246505352862], [9.25508961116735, 2.614730792808288, -0.5364354576047327], [9.201899000504504, 2.6247542307425547, -0.49555167348583], [9.153507831675434, 2.6341331075381826, -0.4527784718235375], [9.109992587149065, 2.642791287893938, -0.4081491037550909], [9.071423436020835, 2.650653040686936, -0.3617292415199339], [9.037863700984591, 2.657644697445861, -0.3136206522167], [9.00936936216245, 2.6636965230522156, -0.26396372362570636], [8.985988606407073, 2.6687447282137327, -0.21293834957939897], [8.967761430222914, 2.672733522311426, -0.16076274062583656], [8.954719303731382, 2.6756170791668894, -0.10768987083282255], [8.946884902140793, 2.6773612731828846, -0.05400150037597017], [8.94427190999916, 2.677945044588987, -1.887379141862766e-15], [8.946884902140793, 2.6773612731828846, 0.05400150037596641], [8.95471930373138, 2.6756170791668894, 0.10768987083281882], [8.967761430222913, 2.672733522311426, 0.16076274062583287], [8.985988606407071, 2.668744728213733, 0.21293834957939536], [9.009369362162449, 2.663696523052216, 0.2639637236257028], [9.03786370098459, 2.6576446974458614, 0.3136206522166966], [9.071423436020831, 2.6506530406869366, 0.3617292415199306], [9.109992587149062, 2.6427912878939384, 0.4081491037550877], [9.15350783167543, 2.634133107538183, 0.4527784718235344], [9.2018990005045, 2.624754230742555, 0.4955516734858271], [9.255089611167346, 2.614730792808289, 0.5364354576047299], [9.312997428878601, 2.6041379268907425, 0.5754246505352836], [9.37553504682111, 2.59304862331739, 0.6125375566103022], [9.442610477106003, 2.5815328476435777, 0.6478114269270973], [9.514127744299154, 2.5696568965909634, 0.6812982252878479], [9.589987474008685, 2.557482962900188, 0.7130608328588522], [9.670087469757126, 2.545068876706851, 0.7431697612844455], [9.754323272179048, 2.532467991022246, 0.7717003900245816], [9.842588695455252, 2.519729181070701, 0.7987307066915931], [9.934776336784989, 2.506896930629562, 0.8243395064944867], [10.030778055579344, 2.4940114824175605, 0.8486049952949077], [10.130485419907131, 2.481109033500006, 0.8716037370732264], [10.233790118520096, 2.468221960333488, 0.8934098880974938], [10.34058433751197, 2.455379061308027, 0.9140946646754616], [10.4507611013163, 2.442605807406141, 0.9337259975192123], [10.56421457831502, 2.429924593891114, 0.9523683324223765], [10.680840351811792, 2.4173549877991656, 0.9700825434839021], [10.800535657522186, 2.4049139674960953, 0.9869259311327808], [10.923199589050594, 2.392616151726234, 1.0029522825314559], [11.048733273066722, 2.3804740164858313, 1.018211976504182], [11.177040016069459, 2.368498098744212, 1.032752118969271], [11.308025424740341, 2.356697186557082, 1.0466166980119826], [11.441597501950492, 2.3450784955030786, 1.0598467502982856], [11.577666720501812, 2.333647831656343, 1.07248053258459], [11.716146076662765, 2.322409741508058, 1.084553693707391], [11.856951125508411, 2.3113676493874045, 1.096099443714721], [11.999999999999991, 2.3005239830218636, 1.1071487177940897]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.797958971132712, 1.9913306620788616, -1.1071487177940904], [9.62222895137584, 1.999513151627556, -1.0960994437147218], [9.448178601704168, 2.0079494459600964, -1.0845536937073916], [9.27590247312979, 2.0166462643747267, -1.0724805325845908], [9.10550127102511, 2.02560992679211, -1.0598467502982865], [8.9370822423526, 2.034846214234029, -1.0466166980119835], [8.770759574906734, 2.0443602039149313, -1.032752118969272], [8.606654805403307, 2.054156075367265, -1.0182119765041828], [8.444897232189108, 2.0642368837414393, -1.002952282531457], [8.285624327074476, 2.0746042962027884, -0.9869259311327819], [8.128982139289716, 2.085258287233307, -0.9700825434839032], [7.975125682814269, 2.0961967886917066, -0.9523683324223776], [7.824219296312318, 2.107415290765906, -0.9337259975192135], [7.67643696262778, 2.1189063905629357, -0.914094664675463], [7.5319625722596175, 2.130659286141932, -0.8934098880974952], [7.390990112491771, 2.1426592154519764, -0.8716037370732278], [7.253723760958384, 2.1548868420590597, -0.8486049952949093], [7.120377859491945, 2.167317592927689, -0.8243395064944884], [6.99117674128638, 2.1799209580652317, -0.798730706691595], [6.866354381924509, 2.1926597677335957, -0.7717003900245836], [6.746153842950358, 2.2054894703319032, -0.7431697612844474], [6.630826475760287, 2.218357443008204, -0.7130608328588545], [6.520630854054154, 2.231202377451911, -0.6812982252878501], [6.415831405387157, 2.2439537947701345, -0.6478114269270997], [6.316696716969319, 2.2565317550989716, -0.6125375566103046], [6.223497498215897, 2.268846838382553, -0.5754246505352862], [6.136504193002544, 2.280800480706467, -0.5364354576047327], [6.055984248285806, 2.2922857532091125, -0.49555167348583], [5.982199062597591, 2.303188664908665, -0.4527784718235375], [5.915400657428955, 2.3133900535824137, -0.4081491037550909], [5.855828135762527, 2.322768097361791, -0.3617292415199339], [5.8037040136084554, 2.3312014325645833, -0.3136206522167], [5.75923053053717, 2.338572801574609, -0.26396372362570636], [5.722586061779913, 2.344773082957628, -0.21293834957939897], [5.6939217653032195, 2.349705483236157, -0.16076274062583656], [5.6733586003900225, 2.353289608200822, -0.10768987083282255], [5.660984848253425, 2.355465095331165, -0.05400150037597017], [5.656854249492381, 2.356194490192345, -1.887379141862766e-15], [5.660984848253425, 2.355465095331165, 0.05400150037596641], [5.673358600390022, 2.3532896082008223, 0.10768987083281882], [5.693921765303217, 2.3497054832361575, 0.16076274062583287], [5.722586061779911, 2.3447730829576283, 0.21293834957939536], [5.759230530537168, 2.3385728015746094, 0.2639637236257028], [5.803704013608452, 2.331201432564584, 0.3136206522166966], [5.855828135762524, 2.3227680973617915, 0.3617292415199306], [5.91540065742895, 2.313390053582414, 0.4081491037550877], [5.982199062597585, 2.3031886649086655, 0.4527784718235344], [6.0559842482857995, 2.2922857532091134, 0.4955516734858271], [6.136504193002538, 2.2808004807064677, 0.5364354576047299], [6.223497498215891, 2.268846838382554, 0.5754246505352836], [6.316696716969312, 2.2565317550989725, 0.6125375566103022], [6.415831405387149, 2.2439537947701353, 0.6478114269270973], [6.520630854054146, 2.231202377451912, 0.6812982252878479], [6.630826475760279, 2.218357443008205, 0.7130608328588522], [6.746153842950351, 2.205489470331904, 0.7431697612844455], [6.8663543819245, 2.1926597677335966, 0.7717003900245816], [6.99117674128637, 2.1799209580652326, 0.7987307066915931], [7.120377859491937, 2.1673175929276898, 0.8243395064944867], [7.253723760958375, 2.1548868420590606, 0.8486049952949077], [7.390990112491761, 2.1426592154519772, 0.8716037370732264], [7.531962572259608, 2.130659286141933, 0.8934098880974938], [7.67643696262777, 2.1189063905629366, 0.9140946646754616], [7.824219296312309, 2.1074152907659065, 0.9337259975192123], [7.97512568281426, 2.096196788691707, 0.9523683324223765], [8.128982139289706, 2.0852582872333074, 0.9700825434839021], [8.285624327074466, 2.074604296202789, 0.9869259311327808], [8.444897232189097, 2.06423688374144, 1.0029522825314559], [8.606654805403297, 2.0541560753672656, 1.018211976504182], [8.770759574906723, 2.044360203914932, 1.032752118969271], [8.93708224235259, 2.0348462142340296, 1.0466166980119826], [9.1055012710251, 2.02560992679211, 1.0598467502982856], [9.27590247312978, 2.016646264374727, 1.07248053258459], [9.448178601704157, 2.0079494459600973, 1.084553693707391], [9.62222895137583, 1.9995131516275566, 1.096099443714721], [9.7979589711327, 1.9913306620788622, 1.1071487177940897]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[8.94427190999916, 1.5707963267948966, -1.1071487177940904], [8.751416456362673, 1.5707963267948966, -1.0960994437147218], [8.559677499164353, 1.5707963267948966, -1.0845536937073916], [8.36913177641596, 1.5707963267948966, -1.0724805325845908], [8.179862675903546, 1.5707963267948966, -1.0598467502982865], [7.9919608987140425, 1.5707963267948966, -1.0466166980119835], [7.805525191863655, 1.5707963267948966, -1.032752118969272], [7.620663156141455, 1.5707963267948966, -1.0182119765041828], [7.437492135272161, 1.5707963267948966, -1.002952282531457], [7.256140192237769, 1.5707963267948966, -0.9869259311327819], [7.0767471779689295, 1.5707963267948966, -0.9700825434839032], [6.899465896479507, 1.5707963267948966, -0.9523683324223776], [6.7244633686849715, 1.5707963267948966, -0.9337259975192135], [6.551922194379143, 1.5707963267948966, -0.914094664675463], [6.382042007846683, 1.5707963267948966, -0.8934098880974952], [6.21504101699668, 1.5707963267948966, -0.8716037370732278], [6.051157608283909, 1.5707963267948966, -0.8486049952949093], [5.890651989546071, 1.5707963267948966, -0.8243395064944884], [5.733807829697787, 1.5707963267948966, -0.798730706691595], [5.580933837466084, 1.5707963267948966, -0.7717003900245836], [5.432365200605892, 1.5707963267948966, -0.7431697612844474], [5.288464782112441, 1.5707963267948966, -0.7130608328588545], [5.1496239411090015, 1.5707963267948966, -0.6812982252878501], [5.0162628143222445, 1.5707963267948966, -0.6478114269270997], [4.888829861446497, 1.5707963267948966, -0.6125375566103046], [4.767800447827019, 1.5707963267948966, -0.5754246505352862], [4.653674216222898, 1.5707963267948966, -0.5364354576047327], [4.546970993473105, 1.5707963267948966, -0.49555167348583], [4.4482249970683245, 1.5707963267948966, -0.4527784718235375], [4.357977161242462, 1.5707963267948966, -0.4081491037550909], [4.276765501589729, 1.5707963267948966, -0.3617292415199339], [4.205113586762537, 1.5707963267948966, -0.3136206522167], [4.143517383078229, 1.5707963267948966, -0.26396372362570636], [4.092430968810315, 1.5707963267948966, -0.21293834957939897], [4.052251851673798, 1.5707963267948966, -0.16076274062583656], [4.0233068250656, 1.5707963267948966, -0.10768987083282255], [4.005839419167331, 1.5707963267948966, -0.05400150037597017], [4.0, 1.5707963267948966, -1.887379141862766e-15], [4.00583941916733, 1.5707963267948966, 0.05400150037596641], [4.023306825065598, 1.5707963267948966, 0.10768987083281882], [4.0522518516737955, 1.5707963267948966, 0.16076274062583287], [4.092430968810312, 1.5707963267948966, 0.21293834957939536], [4.143517383078225, 1.5707963267948966, 0.2639637236257028], [4.205113586762533, 1.5707963267948966, 0.3136206522166966], [4.276765501589724, 1.5707963267948966, 0.3617292415199306], [4.357977161242457, 1.5707963267948966, 0.4081491037550877], [4.448224997068317, 1.5707963267948966, 0.4527784718235344], [4.5469709934730975, 1.5707963267948966, 0.4955516734858271], [4.65367421622289, 1.5707963267948966, 0.5364354576047299], [4.767800447827011, 1.5707963267948966, 0.5754246505352836], [4.888829861446488, 1.5707963267948966, 0.6125375566103022], [5.016262814322236, 1.5707963267948966, 0.6478114269270973], [5.149623941108992, 1.5707963267948966, 0.6812982252878479], [5.288464782112431, 1.5707963267948966, 0.7130608328588522], [5.432365200605882, 1.5707963267948966, 0.7431697612844455], [5.580933837466073, 1.5707963267948966, 0.7717003900245816], [5.733807829697776, 1.5707963267948966, 0.7987307066915931], [5.890651989546061, 1.5707963267948966, 0.8243395064944867], [6.0511576082839, 1.5707963267948966, 0.8486049952949077], [6.215041016996668, 1.5707963267948966, 0.8716037370732264], [6.382042007846671, 1.5707963267948966, 0.8934098880974938], [6.551922194379133, 1.5707963267948966, 0.9140946646754616], [6.72446336868496, 1.5707963267948966, 0.9337259975192123], [6.899465896479495, 1.5707963267948966, 0.9523683324223765], [7.076747177968918, 1.5707963267948966, 0.9700825434839021], [7.2561401922377575, 1.5707963267948966, 0.9869259311327808], [7.437492135272149, 1.5707963267948966, 1.0029522825314559], [7.620663156141443, 1.5707963267948966, 1.018211976504182], [7.805525191863643, 1.5707963267948966, 1.032752118969271], [7.99196089871403, 1.5707963267948966, 1.0466166980119826], [8.179862675903534, 1.5707963267948966, 1.0598467502982856], [8.369131776415948, 1.5707963267948966, 1.07248053258459], [8.559677499164343, 1.5707963267948966, 1.084553693707391], [8.75141645636266, 1.5707963267948966, 1.096099443714721], [8.944271909999147, 1.5707963267948966, 1.1071487177940897]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.797958971132712, 1.1502619915109316, -1.1071487177940904], [9.62222895137584, 1.1420795019622372, -1.0960994437147218], [9.448178601704168, 1.1336432076296965, -1.0845536937073916], [9.27590247312979, 1.1249463892150664, -1.0724805325845908], [9.10550127102511, 1.1159827267976834, -1.0598467502982865], [8.9370822423526, 1.106746439355764, -1.0466166980119835], [8.770759574906734, 1.097232449674862, -1.032752118969272], [8.606654805403307, 1.0874365782225281, -1.0182119765041828], [8.444897232189108, 1.0773557698483538, -1.002952282531457], [8.285624327074476, 1.066988357387005, -0.9869259311327819], [8.128982139289716, 1.0563343663564864, -0.9700825434839032], [7.975125682814269, 1.0453958648980868, -0.9523683324223776], [7.824219296312318, 1.0341773628238873, -0.9337259975192135], [7.67643696262778, 1.0226862630268576, -0.914094664675463], [7.5319625722596175, 1.010933367447861, -0.8934098880974952], [7.390990112491771, 0.9989334381378165, -0.8716037370732278], [7.253723760958384, 0.9867058115307333, -0.8486049952949093], [7.120377859491945, 0.974275060662104, -0.8243395064944884], [6.99117674128638, 0.9616716955245617, -0.798730706691595], [6.866354381924509, 0.9489328858561973, -0.7717003900245836], [6.746153842950358, 0.9361031832578899, -0.7431697612844474], [6.630826475760287, 0.923235210581589, -0.7130608328588545], [6.520630854054154, 0.9103902761378818, -0.6812982252878501], [6.415831405387157, 0.8976388588196588, -0.6478114269270997], [6.316696716969319, 0.8850608984908216, -0.6125375566103046], [6.223497498215897, 0.8727458152072399, -0.5754246505352862], [6.136504193002544, 0.8607921728833265, -0.5364354576047327], [6.055984248285806, 0.8493069003806806, -0.49555167348583], [5.982199062597591, 0.8384039886811282, -0.4527784718235375], [5.915400657428955, 0.8282026000073796, -0.4081491037550909], [5.855828135762527, 0.8188245562280022, -0.3617292415199339], [5.8037040136084554, 0.8103912210252099, -0.3136206522167], [5.75923053053717, 0.8030198520151842, -0.26396372362570636], [5.722586061779913, 0.7968195706321654, -0.21293834957939897], [5.6939217653032195, 0.791887170353636, -0.16076274062583656], [5.6733586003900225, 0.7883030453889712, -0.10768987083282255], [5.660984848253425, 0.7861275582586285, -0.05400150037597017], [5.656854249492381, 0.7853981633974483, -1.887379141862766e-15], [5.660984848253425, 0.7861275582586283, 0.05400150037596641], [5.673358600390022, 0.788303045388971, 0.10768987083281882], [5.693921765303217, 0.7918871703536356, 0.16076274062583287], [5.722586061779911, 0.796819570632165, 0.21293834957939536], [5.759230530537168, 0.8030198520151838, 0.2639637236257028], [5.803704013608452, 0.8103912210252093, 0.3136206522166966], [5.855828135762524, 0.8188245562280017, 0.3617292415199306], [5.91540065742895, 0.8282026000073789, 0.4081491037550877], [5.982199062597585, 0.8384039886811274, 0.4527784718235344], [6.0559842482857995, 0.8493069003806798, 0.4955516734858271], [6.136504193002538, 0.8607921728833257, 0.5364354576047299], [6.223497498215891, 0.872745815207239, 0.5754246505352836], [6.316696716969312, 0.8850608984908207, 0.6125375566103022], [6.415831405387149, 0.8976388588196579, 0.6478114269270973], [6.520630854054146, 0.9103902761378809, 0.6812982252878479], [6.630826475760279, 0.9232352105815881, 0.7130608328588522], [6.746153842950351, 0.936103183257889, 0.7431697612844455], [6.8663543819245, 0.9489328858561964, 0.7717003900245816], [6.99117674128637, 0.9616716955245608, 0.7987307066915931], [7.120377859491937, 0.9742750606621032, 0.8243395064944867], [7.253723760958375, 0.9867058115307326, 0.8486049952949077], [7.390990112491761, 0.9989334381378158, 0.8716037370732264], [7.531962572259608, 1.0109333674478602, 0.8934098880974938], [7.67643696262777, 1.0226862630268567, 0.9140946646754616], [7.824219296312309, 1.0341773628238866, 0.9337259975192123], [7.97512568281426, 1.0453958648980861, 0.9523683324223765], [8.128982139289706, 1.0563343663564857, 0.9700825434839021], [8.285624327074466, 1.0669883573870043, 0.9869259311327808], [8.444897232189097, 1.0773557698483531, 1.0029522825314559], [8.606654805403297, 1.0874365782225275, 1.018211976504182], [8.770759574906723, 1.0972324496748613, 1.032752118969271], [8.93708224235259, 1.1067464393557633, 1.0466166980119826], [9.1055012710251, 1.115982726797683, 1.0598467502982856], [9.27590247312978, 1.124946389215066, 1.07248053258459], [9.448178601704157, 1.133643207629696, 1.084553693707391], [9.62222895137583, 1.1420795019622365, 1.096099443714721], [9.7979589711327, 1.150261991510931, 1.1071487177940897]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 0.8410686705679303, -1.1071487177940904], [11.85695112550842, 0.8302250042023892, -1.0960994437147218], [11.716146076662774, 0.8191829120817355, -1.0845536937073916], [11.577666720501819, 0.807944821933451, -1.0724805325845908], [11.441597501950499, 0.796514158086715, -1.0598467502982865], [11.30802542474035, 0.7848954670327121, -1.0466166980119835], [11.177040016069467, 0.7730945548455816, -1.032752118969272], [11.048733273066729, 0.7611186371039624, -1.0182119765041828], [10.923199589050602, 0.7489765018635599, -1.002952282531457], [10.800535657522193, 0.7366786860936986, -0.9869259311327819], [10.6808403518118, 0.7242376657906282, -0.9700825434839032], [10.564214578315028, 0.7116680596986799, -0.9523683324223776], [10.450761101316306, 0.6989868461836529, -0.9337259975192135], [10.340584337511977, 0.686213592281767, -0.914094664675463], [10.233790118520103, 0.673370693256306, -0.8934098880974952], [10.130485419907139, 0.660483620089788, -0.8716037370732278], [10.03077805557935, 0.6475811711722332, -0.8486049952949093], [9.934776336784996, 0.6346957229602319, -0.8243395064944884], [9.842588695455259, 0.6218634725190931, -0.798730706691595], [9.754323272179056, 0.609124662567548, -0.7717003900245836], [9.670087469757132, 0.5965237768829432, -0.7431697612844474], [9.58998747400869, 0.5841096906896063, -0.7130608328588545], [9.51412774429916, 0.5719357569988306, -0.6812982252878501], [9.442610477106006, 0.5600598059462162, -0.6478114269270997], [9.375535046821113, 0.548544030272404, -0.6125375566103046], [9.312997428878607, 0.5374547266990511, -0.5754246505352862], [9.25508961116735, 0.526861860781505, -0.5364354576047327], [9.201899000504504, 0.5168384228472385, -0.49555167348583], [9.153507831675434, 0.5074595460516106, -0.4527784718235375], [9.109992587149065, 0.49880136569585537, -0.4081491037550909], [9.071423436020835, 0.4909396129028569, -0.3617292415199339], [9.037863700984591, 0.4839479561439322, -0.3136206522167], [9.00936936216245, 0.4778961305375776, -0.26396372362570636], [8.985988606407073, 0.4728479253760603, -0.21293834957939897], [8.967761430222914, 0.46885913127836704, -0.16076274062583656], [8.954719303731382, 0.4659755744229038, -0.10768987083282255], [8.946884902140793, 0.46423138040690864, -0.05400150037597017], [8.94427190999916, 0.4636476090008061, -1.887379141862766e-15], [8.946884902140793, 0.46423138040690853, 0.05400150037596641], [8.95471930373138, 0.46597557442290366, 0.10768987083281882], [8.967761430222913, 0.4688591312783668, 0.16076274062583287], [8.985988606407071, 0.4728479253760601, 0.21293834957939536], [9.009369362162449, 0.47789613053757724, 0.2639637236257028], [9.03786370098459, 0.48394795614393177, 0.3136206522166966], [9.071423436020831, 0.4909396129028564, 0.3617292415199306], [9.109992587149062, 0.49880136569585487, 0.4081491037550877], [9.15350783167543, 0.5074595460516099, 0.4527784718235344], [9.2018990005045, 0.5168384228472378, 0.4955516734858271], [9.255089611167346, 0.5268618607815042, 0.5364354576047299], [9.312997428878601, 0.5374547266990504, 0.5754246505352836], [9.37553504682111, 0.5485440302724032, 0.6125375566103022], [9.442610477106003, 0.5600598059462154, 0.6478114269270973], [9.514127744299154, 0.5719357569988297, 0.6812982252878479], [9.589987474008685, 0.5841096906896054, 0.7130608328588522], [9.670087469757126, 0.5965237768829423, 0.7431697612844455], [9.754323272179048, 0.6091246625675472, 0.7717003900245816], [9.842588695455252, 0.6218634725190922, 0.7987307066915931], [9.934776336784989, 0.6346957229602311, 0.8243395064944867], [10.030778055579344, 0.6475811711722325, 0.8486049952949077], [10.130485419907131, 0.6604836200897871, 0.8716037370732264], [10.233790118520096, 0.6733706932563052, 0.8934098880974938], [10.34058433751197, 0.6862135922817663, 0.9140946646754616], [10.4507611013163, 0.698986846183652, 0.9337259975192123], [10.56421457831502, 0.7116680596986791, 0.9523683324223765], [10.680840351811792, 0.7242376657906274, 0.9700825434839021], [10.800535657522186, 0.7366786860936978, 0.9869259311327808], [10.923199589050594, 0.748976501863559, 1.0029522825314559], [11.048733273066722, 0.7611186371039617, 1.018211976504182], [11.177040016069459, 0.7730945548455809, 1.032752118969271], [11.308025424740341, 0.7848954670327113, 1.0466166980119826], [11.441597501950492, 0.7965141580867143, 1.0598467502982856], [11.577666720501812, 0.8079448219334502, 1.07248053258459], [11.716146076662765, 0.8191829120817349, 1.084553693707391], [11.856951125508411, 0.8302250042023885, 1.096099443714721], [11.999999999999991, 0.8410686705679296, 1.1071487177940897]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[13.856406460551018, 2.186276035465284, -0.7853981633974483], [13.73270876384901, 2.192659767733596, -0.7717003900245826], [13.611321717221312, 2.1990663494909954, -0.7576275268040273], [13.492307685900709, 2.2054894703319037, -0.7431697612844465], [13.375730013597012, 2.2119222946510666, -0.7283173809911838], [13.261652951520567, 2.2183574430082045, -0.7130608328588535], [13.150141577976191, 2.224786975474495, -0.6973907898697077], [13.041261708108301, 2.2312023774519116, -0.6812982252878492], [12.93507979342359, 2.237594548502693, -0.6647744948173459], [12.831662810774306, 2.2439537947701345, -0.6478114269270987], [12.731078140553974, 2.250269825611703, -0.6304014214735076], [12.633393433938632, 2.2565317550989716, -0.6125375566103037], [12.538676469100956, 2.2627281090636853, -0.5942137038004344], [12.44699499643179, 2.2688468383825535, -0.5754246505352854], [12.358416572923884, 2.27487533919217, -0.5561662301204535], [12.273008386005085, 2.280800480706467, -0.5364354576047319], [12.190837067252284, 2.286608641269134, -0.5162306706117485], [12.111968496571608, 2.292285753209113, -0.49555167348582924], [12.036467597592893, 2.297817356975726, -0.47439988279190815], [11.964398125195178, 2.303188664908665, -0.4527784718235367], [11.89582244625204, 2.3083846348452517, -0.43069251138650877], [11.830801314857906, 2.3133900535824137, -0.4081491037550901], [11.769393643465367, 2.3181896299943996, -0.385157506363475], [11.711656271525055, 2.322768097361791, -0.3617292415199331], [11.657643733369577, 2.327110324197196, -0.33787818824027926], [11.60740802721691, 2.3312014325645833, -0.31362065221669916], [11.560998387282035, 2.3350269225912417, -0.2889754099925673], [11.518461061074339, 2.338572801574609, -0.26396372362570547], [11.479839094017978, 2.3418257158034015, -0.23860932250820185], [11.445172123559825, 2.344773082957628, -0.21293834957939806], [11.414496184921525, 2.347403222739961, -0.186979269918912], [11.387843530606437, 2.349705483236157, -0.16076274062583565], [11.36524246568772, 2.3516703604181086, -0.13432144195296944], [11.346717200780045, 2.353289608200822, -0.10768987083282162], [11.332287724435597, 2.3545563365517723, -0.08090409915523153], [11.32196969650685, 2.355465095331165, -0.054001500375969236], [11.315774363787698, 2.35601194181297, -0.027020449187265733], [11.313708498984761, 2.356194490192345, -9.43689570931383e-16], [11.315774363787698, 2.35601194181297, 0.02702044918726385], [11.32196969650685, 2.355465095331165, 0.054001500375967355], [11.332287724435597, 2.3545563365517728, 0.08090409915522966], [11.346717200780043, 2.353289608200822, 0.10768987083281976], [11.365242465687716, 2.3516703604181086, 0.13432144195296758], [11.387843530606437, 2.3497054832361575, 0.1607627406258338], [11.414496184921523, 2.3474032227399615, 0.1869792699189102], [11.445172123559823, 2.344773082957628, 0.21293834957939625], [11.479839094017974, 2.341825715803402, 0.23860932250820008], [11.518461061074335, 2.3385728015746094, 0.2639637236257037], [11.560998387282032, 2.335026922591242, 0.28897540999256555], [11.607408027216906, 2.331201432564584, 0.31362065221669744], [11.657643733369573, 2.3271103241971964, 0.3378781882402776], [11.711656271525051, 2.3227680973617915, 0.3617292415199314], [11.769393643465364, 2.3181896299944, 0.3851575063634734], [11.830801314857903, 2.313390053582414, 0.4081491037550885], [11.895822446252035, 2.308384634845252, 0.4306925113865072], [11.964398125195173, 2.3031886649086655, 0.4527784718235352], [12.036467597592889, 2.2978173569757265, 0.47439988279190665], [12.111968496571603, 2.292285753209113, 0.49555167348582785], [12.190837067252277, 2.286608641269134, 0.5162306706117471], [12.273008386005078, 2.2808004807064672, 0.5364354576047305], [12.358416572923877, 2.27487533919217, 0.5561662301204522], [12.446994996431783, 2.268846838382554, 0.5754246505352841], [12.53867646910095, 2.2627281090636853, 0.5942137038004331], [12.633393433938627, 2.256531755098972, 0.6125375566103026], [12.731078140553967, 2.2502698256117037, 0.6304014214735065], [12.831662810774299, 2.243953794770135, 0.6478114269270976], [12.935079793423583, 2.2375945485026936, 0.6647744948173447], [13.041261708108294, 2.231202377451912, 0.6812982252878481], [13.150141577976184, 2.224786975474495, 0.6973907898697067], [13.26165295152056, 2.218357443008205, 0.7130608328588525], [13.375730013597003, 2.211922294651067, 0.7283173809911828], [13.492307685900702, 2.205489470331904, 0.7431697612844456], [13.611321717221305, 2.1990663494909963, 0.7576275268040263], [13.732708763849002, 2.1926597677335966, 0.7717003900245817], [13.85640646055101, 2.1862760354652844, 0.7853981633974474]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 1.9106332362490184, -0.7853981633974483], [11.85695112550842, 1.9149019357817996, -0.7717003900245826], [11.716146076662774, 1.9192120963788253, -0.7576275268040273], [11.577666720501819, 1.923560153024317, -0.7431697612844465], [11.441597501950499, 1.9279420898383735, -0.7283173809911838], [11.30802542474035, 1.9323534111242453, -0.7130608328588535], [11.177040016069467, 1.9367891128521368, -0.6973907898697077], [11.048733273066729, 1.9412436550654175, -0.6812982252878492], [10.923199589050602, 1.9457109357755595, -0.6647744948173459], [10.800535657522193, 1.9501842669961138, -0.6478114269270987], [10.6808403518118, 1.9546563536516113, -0.6304014214735076], [10.564214578315028, 1.9591192761817748, -0.6125375566103037], [10.450761101316306, 1.9635644777415222, -0.5942137038004344], [10.340584337511977, 1.9679827569687838, -0.5754246505352854], [10.233790118520103, 1.972364267350299, -0.5561662301204535], [10.130485419907139, 1.9766985242546367, -0.5364354576047319], [10.03077805557935, 1.980974420715524, -0.5162306706117485], [9.934776336784996, 1.9851802530304825, -0.49555167348582924], [9.842588695455259, 1.9893037571829775, -0.47439988279190815], [9.754323272179056, 1.993332156994271, -0.4527784718235367], [9.670087469757132, 1.9972522247581288, -0.43069251138650877], [9.58998747400869, 2.001050354903036, -0.4081491037550901], [9.51412774429916, 2.0047126509601862, -0.385157506363475], [9.442610477106006, 2.0082250257914955, -0.3617292415199331], [9.375535046821113, 2.0115733146538632, -0.33787818824027926], [9.312997428878607, 2.014743400251433, -0.31362065221669916], [9.25508961116735, 2.017721348468558, -0.2889754099925673], [9.201899000504504, 2.0204935529988264, -0.26396372362570547], [9.153507831675434, 2.02304688661032, -0.23860932250820185], [9.109992587149065, 2.0253688563381074, -0.21293834957939806], [9.071423436020835, 2.0274477594981377, -0.186979269918912], [9.037863700984591, 2.029272837099096, -0.16076274062583565], [9.00936936216245, 2.0308344210161993, -0.13432144195296944], [8.985988606407073, 2.0321240712058453, -0.10768987083282162], [8.967761430222914, 2.0331346992992207, -0.08090409915523153], [8.954719303731382, 2.033860675125894, -0.054001500375969236], [8.946884902140793, 2.034297913085344, -0.027020449187265733], [8.94427190999916, 2.0344439357957027, -9.43689570931383e-16], [8.946884902140793, 2.034297913085344, 0.02702044918726385], [8.95471930373138, 2.0338606751258945, 0.054001500375967355], [8.967761430222913, 2.0331346992992207, 0.08090409915522966], [8.985988606407071, 2.0321240712058457, 0.10768987083281976], [9.009369362162449, 2.0308344210161993, 0.13432144195296758], [9.03786370098459, 2.029272837099096, 0.1607627406258338], [9.071423436020831, 2.027447759498138, 0.1869792699189102], [9.109992587149062, 2.0253688563381074, 0.21293834957939625], [9.15350783167543, 2.02304688661032, 0.23860932250820008], [9.2018990005045, 2.0204935529988264, 0.2639637236257037], [9.255089611167346, 2.017721348468558, 0.28897540999256555], [9.312997428878601, 2.0147434002514335, 0.31362065221669744], [9.375535046821108, 2.0115733146538637, 0.3378781882402776], [9.442610477106001, 2.0082250257914955, 0.3617292415199314], [9.514127744299154, 2.0047126509601867, 0.3851575063634734], [9.589987474008685, 2.001050354903036, 0.4081491037550885], [9.670087469757126, 1.997252224758129, 0.4306925113865072], [9.754323272179048, 1.9933321569942712, 0.4527784718235352], [9.842588695455252, 1.989303757182978, 0.47439988279190665], [9.934776336784989, 1.9851802530304827, 0.49555167348582785], [10.030778055579344, 1.9809744207155242, 0.5162306706117471], [10.130485419907131, 1.9766985242546369, 0.5364354576047305], [10.233790118520096, 1.9723642673502995, 0.5561662301204522], [10.34058433751197, 1.9679827569687842, 0.5754246505352841], [10.4507611013163, 1.9635644777415224, 0.5942137038004331], [10.56421457831502, 1.9591192761817753, 0.6125375566103026], [10.680840351811792, 1.9546563536516115, 0.6304014214735065], [10.800535657522186, 1.950184266996114, 0.6478114269270976], [10.923199589050594, 1.9457109357755598, 0.6647744948173447], [11.048733273066722, 1.941243655065418, 0.6812982252878481], [11.177040016069459, 1.936789112852137, 0.6973907898697067], [11.308025424740341, 1.9323534111242455, 0.7130608328588525], [11.441597501950492, 1.9279420898383737, 0.7283173809911828], [11.577666720501812, 1.9235601530243174, 0.7431697612844456], [11.716146076662765, 1.9192120963788255, 0.7576275268040263], [11.856951125508411, 1.9149019357817998, 0.7717003900245817], [11.999999999999991, 1.9106332362490188, 0.7853981633974474]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[11.313708498984761, 1.5707963267948966, -0.7853981633974483], [11.161867674932157, 1.5707963267948966, -0.7717003900245826], [11.01217866226754, 1.5707963267948966, -0.7576275268040273], [10.864730401211775, 1.5707963267948966, -0.7431697612844465], [10.719615356748577, 1.5707963267948966, -0.7283173809911838], [10.576929564224875, 1.5707963267948966, -0.7130608328588535], [10.436772658289446, 1.5707963267948966, -0.6973907898697077], [10.299247882217994, 1.5707963267948966, -0.6812982252878492], [10.164462074415706, 1.5707963267948966, -0.6647744948173459], [10.032525628644482, 1.5707963267948966, -0.6478114269270987], [9.903552424301656, 1.5707963267948966, -0.6304014214735076], [9.777659722892986, 1.5707963267948966, -0.6125375566103037], [9.65496802670967, 1.5707963267948966, -0.5942137038004344], [9.535600895654033, 1.5707963267948966, -0.5754246505352854], [9.419684718180312, 1.5707963267948966, -0.5561662301204535], [9.30734843244579, 1.5707963267948966, -0.5364354576047319], [9.198723194024932, 1.5707963267948966, -0.5162306706117485], [9.093941986946204, 1.5707963267948966, -0.49555167348582924], [8.993139175388293, 1.5707963267948966, -0.47439988279190815], [8.896449994136646, 1.5707963267948966, -0.4527784718235367], [8.804009976865876, 1.5707963267948966, -0.43069251138650877], [8.715954322484922, 1.5707963267948966, -0.4081491037550901], [8.632417201157681, 1.5707963267948966, -0.385157506363475], [8.553531003179454, 1.5707963267948966, -0.3617292415199331], [8.479425535622738, 1.5707963267948966, -0.33787818824027926], [8.410227173525072, 1.5707963267948966, -0.31362065221669916], [8.346057974321637, 1.5707963267948966, -0.2889754099925673], [8.287034766156456, 1.5707963267948966, -0.26396372362570547], [8.233268222555578, 1.5707963267948966, -0.23860932250820185], [8.184861937620628, 1.5707963267948966, -0.21293834957939806], [8.141911517302804, 1.5707963267948966, -0.186979269918912], [8.104503703347596, 1.5707963267948966, -0.16076274062583565], [8.07271554706788, 1.5707963267948966, -0.13432144195296944], [8.0466136501312, 1.5707963267948966, -0.10768987083282162], [8.026253488981876, 1.5707963267948966, -0.08090409915523153], [8.011678838334662, 1.5707963267948966, -0.054001500375969236], [8.002921307382378, 1.5707963267948966, -0.027020449187265733], [8.0, 1.5707963267948966, -9.43689570931383e-16], [8.002921307382378, 1.5707963267948966, 0.02702044918726385], [8.01167883833466, 1.5707963267948966, 0.054001500375967355], [8.026253488981874, 1.5707963267948966, 0.08090409915522966], [8.046613650131198, 1.5707963267948966, 0.10768987083281976], [8.072715547067878, 1.5707963267948966, 0.13432144195296758], [8.104503703347593, 1.5707963267948966, 0.1607627406258338], [8.1419115173028, 1.5707963267948966, 0.1869792699189102], [8.184861937620626, 1.5707963267948966, 0.21293834957939625], [8.233268222555575, 1.5707963267948966, 0.23860932250820008], [8.287034766156452, 1.5707963267948966, 0.2639637236257037], [8.346057974321633, 1.5707963267948966, 0.28897540999256555], [8.410227173525067, 1.5707963267948966, 0.31362065221669744], [8.479425535622733, 1.5707963267948966, 0.3378781882402776], [8.55353100317945, 1.5707963267948966, 0.3617292415199314], [8.632417201157676, 1.5707963267948966, 0.3851575063634734], [8.715954322484915, 1.5707963267948966, 0.4081491037550885], [8.80400997686587, 1.5707963267948966, 0.4306925113865072], [8.896449994136638, 1.5707963267948966, 0.4527784718235352], [8.993139175388286, 1.5707963267948966, 0.47439988279190665], [9.093941986946199, 1.5707963267948966, 0.49555167348582785], [9.198723194024925, 1.5707963267948966, 0.5162306706117471], [9.307348432445783, 1.5707963267948966, 0.5364354576047305], [9.419684718180305, 1.5707963267948966, 0.5561662301204522], [9.535600895654026, 1.5707963267948966, 0.5754246505352841], [9.654968026709662, 1.5707963267948966, 0.5942137038004331], [9.77765972289298, 1.5707963267948966, 0.6125375566103026], [9.903552424301648, 1.5707963267948966, 0.6304014214735065], [10.032525628644475, 1.5707963267948966, 0.6478114269270976], [10.164462074415699, 1.5707963267948966, 0.6647744948173447], [10.299247882217985, 1.5707963267948966, 0.6812982252878481], [10.436772658289437, 1.5707963267948966, 0.6973907898697067], [10.576929564224864, 1.5707963267948966, 0.7130608328588525], [10.719615356748568, 1.5707963267948966, 0.7283173809911828], [10.864730401211764, 1.5707963267948966, 0.7431697612844456], [11.012178662267532, 1.5707963267948966, 0.7576275268040263], [11.161867674932148, 1.5707963267948966, 0.7717003900245817], [11.31370849898475, 1.5707963267948966, 0.7853981633974474]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 1.2309594173407747, -0.7853981633974483], [11.85695112550842, 1.2266907178079935, -0.7717003900245826], [11.716146076662774, 1.2223805572109678, -0.7576275268040273], [11.577666720501819, 1.2180325005654762, -0.7431697612844465], [11.441597501950499, 1.2136505637514197, -0.7283173809911838], [11.30802542474035, 1.2092392424655478, -0.7130608328588535], [11.177040016069467, 1.2048035407376563, -0.6973907898697077], [11.048733273066729, 1.2003489985243756, -0.6812982252878492], [10.923199589050602, 1.1958817178142336, -0.6647744948173459], [10.800535657522193, 1.1914083865936793, -0.6478114269270987], [10.6808403518118, 1.1869362999381818, -0.6304014214735076], [10.564214578315028, 1.1824733774080183, -0.6125375566103037], [10.450761101316306, 1.178028175848271, -0.5942137038004344], [10.340584337511977, 1.1736098966210093, -0.5754246505352854], [10.233790118520103, 1.169228386239494, -0.5561662301204535], [10.130485419907139, 1.1648941293351565, -0.5364354576047319], [10.03077805557935, 1.1606182328742691, -0.5162306706117485], [9.934776336784996, 1.1564124005593106, -0.49555167348582924], [9.842588695455259, 1.1522888964068156, -0.47439988279190815], [9.754323272179056, 1.148260496595522, -0.4527784718235367], [9.670087469757132, 1.1443404288316643, -0.43069251138650877], [9.58998747400869, 1.1405422986867573, -0.4081491037550901], [9.51412774429916, 1.1368800026296069, -0.385157506363475], [9.442610477106006, 1.1333676277982976, -0.3617292415199331], [9.375535046821113, 1.1300193389359297, -0.33787818824027926], [9.312997428878607, 1.1268492533383598, -0.31362065221669916], [9.25508961116735, 1.1238713051212352, -0.2889754099925673], [9.201899000504504, 1.1210991005909667, -0.26396372362570547], [9.153507831675434, 1.118545766979473, -0.23860932250820185], [9.109992587149065, 1.116223797251686, -0.21293834957939806], [9.071423436020835, 1.1141448940916552, -0.186979269918912], [9.037863700984591, 1.112319816490697, -0.16076274062583565], [9.00936936216245, 1.110758232573594, -0.13432144195296944], [8.985988606407073, 1.1094685823839476, -0.10768987083282162], [8.967761430222914, 1.1084579542905721, -0.08090409915523153], [8.954719303731382, 1.107731978463899, -0.054001500375969236], [8.946884902140793, 1.107294740504449, -0.027020449187265733], [8.94427190999916, 1.1071487177940904, -9.43689570931383e-16], [8.946884902140793, 1.107294740504449, 0.02702044918726385], [8.95471930373138, 1.1077319784638988, 0.054001500375967355], [8.967761430222913, 1.1084579542905721, 0.08090409915522966], [8.985988606407071, 1.1094685823839474, 0.10768987083281976], [9.009369362162449, 1.110758232573594, 0.13432144195296758], [9.03786370098459, 1.112319816490697, 0.1607627406258338], [9.071423436020831, 1.114144894091655, 0.1869792699189102], [9.109992587149062, 1.116223797251686, 0.21293834957939625], [9.15350783167543, 1.118545766979473, 0.23860932250820008], [9.2018990005045, 1.1210991005909665, 0.2639637236257037], [9.255089611167346, 1.1238713051212352, 0.28897540999256555], [9.312997428878601, 1.1268492533383596, 0.31362065221669744], [9.375535046821108, 1.1300193389359294, 0.3378781882402776], [9.442610477106001, 1.1333676277982974, 0.3617292415199314], [9.514127744299154, 1.1368800026296066, 0.3851575063634734], [9.589987474008685, 1.1405422986867568, 0.4081491037550885], [9.670087469757126, 1.144340428831664, 0.4306925113865072], [9.754323272179048, 1.1482604965955219, 0.4527784718235352], [9.842588695455252, 1.1522888964068152, 0.47439988279190665], [9.934776336784989, 1.1564124005593104, 0.49555167348582785], [10.030778055579344, 1.160618232874269, 0.5162306706117471], [10.130485419907131, 1.1648941293351562, 0.5364354576047305], [10.233790118520096, 1.1692283862394937, 0.5561662301204522], [10.34058433751197, 1.173609896621009, 0.5754246505352841], [10.4507611013163, 1.1780281758482707, 0.5942137038004331], [10.56421457831502, 1.1824733774080178, 0.6125375566103026], [10.680840351811792, 1.1869362999381816, 0.6304014214735065], [10.800535657522186, 1.191408386593679, 0.6478114269270976], [10.923199589050594, 1.1958817178142334, 0.6647744948173447], [11.048733273066722, 1.2003489985243752, 0.6812982252878481], [11.177040016069459, 1.204803540737656, 0.6973907898697067], [11.308025424740341, 1.2092392424655476, 0.7130608328588525], [11.441597501950492, 1.2136505637514194, 0.7283173809911828], [11.577666720501812, 1.2180325005654757, 0.7431697612844456], [11.716146076662765, 1.2223805572109676, 0.7576275268040263], [11.856951125508411, 1.2266907178079933, 0.7717003900245817], [11.999999999999991, 1.2309594173407743, 0.7853981633974474]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[13.856406460551018, 0.9553166181245093, -0.7853981633974483], [13.73270876384901, 0.9489328858561968, -0.7717003900245826], [13.611321717221312, 0.9425263040987975, -0.7576275268040273], [13.492307685900709, 0.9361031832578894, -0.7431697612844465], [13.375730013597012, 0.9296703589387264, -0.7283173809911838], [13.261652951520567, 0.9232352105815887, -0.7130608328588535], [13.150141577976191, 0.9168056781152983, -0.6973907898697077], [13.041261708108301, 0.9103902761378814, -0.6812982252878492], [12.93507979342359, 0.9039981050871001, -0.6647744948173459], [12.831662810774306, 0.8976388588196584, -0.6478114269270987], [12.731078140553974, 0.89132282797809, -0.6304014214735076], [12.633393433938632, 0.8850608984908213, -0.6125375566103037], [12.538676469100956, 0.8788645445261081, -0.5942137038004344], [12.44699499643179, 0.8727458152072396, -0.5754246505352854], [12.358416572923884, 0.8667173143976231, -0.5561662301204535], [12.273008386005085, 0.8607921728833262, -0.5364354576047319], [12.190837067252284, 0.8549840123206593, -0.5162306706117485], [12.111968496571608, 0.8493069003806802, -0.49555167348582924], [12.036467597592893, 0.8437752966140669, -0.47439988279190815], [11.964398125195178, 0.838403988681128, -0.4527784718235367], [11.89582244625204, 0.8332080187445413, -0.43069251138650877], [11.830801314857906, 0.8282026000073794, -0.4081491037550901], [11.769393643465367, 0.8234030235953935, -0.385157506363475], [11.711656271525055, 0.8188245562280021, -0.3617292415199331], [11.657643733369577, 0.8144823293925971, -0.33787818824027926], [11.60740802721691, 0.8103912210252098, -0.31362065221669916], [11.560998387282035, 0.8065657309985513, -0.2889754099925673], [11.518461061074339, 0.8030198520151841, -0.26396372362570547], [11.479839094017978, 0.7997669377863915, -0.23860932250820185], [11.445172123559825, 0.7968195706321652, -0.21293834957939806], [11.414496184921525, 0.794189430849832, -0.186979269918912], [11.387843530606437, 0.791887170353636, -0.16076274062583565], [11.36524246568772, 0.7899222931716845, -0.13432144195296944], [11.346717200780045, 0.7883030453889712, -0.10768987083282162], [11.332287724435597, 0.7870363170380207, -0.08090409915523153], [11.32196969650685, 0.7861275582586285, -0.054001500375969236], [11.315774363787698, 0.7855807117768233, -0.027020449187265733], [11.313708498984761, 0.7853981633974483, -9.43689570931383e-16], [11.315774363787698, 0.7855807117768233, 0.02702044918726385], [11.32196969650685, 0.7861275582586283, 0.054001500375967355], [11.332287724435597, 0.7870363170380206, 0.08090409915522966], [11.346717200780043, 0.7883030453889711, 0.10768987083281976], [11.365242465687716, 0.7899222931716844, 0.13432144195296758], [11.387843530606437, 0.7918871703536358, 0.1607627406258338], [11.414496184921523, 0.7941894308498317, 0.1869792699189102], [11.445172123559823, 0.7968195706321651, 0.21293834957939625], [11.479839094017974, 0.7997669377863913, 0.23860932250820008], [11.518461061074335, 0.8030198520151839, 0.2639637236257037], [11.560998387282032, 0.8065657309985511, 0.28897540999256555], [11.607408027216906, 0.8103912210252094, 0.31362065221669744], [11.657643733369573, 0.8144823293925968, 0.3378781882402776], [11.711656271525051, 0.8188245562280018, 0.3617292415199314], [11.769393643465364, 0.8234030235953932, 0.3851575063634734], [11.830801314857903, 0.828202600007379, 0.4081491037550885], [11.895822446252035, 0.8332080187445411, 0.4306925113865072], [11.964398125195173, 0.8384039886811275, 0.4527784718235352], [12.036467597592889, 0.8437752966140666, 0.47439988279190665], [12.111968496571603, 0.84930690038068, 0.49555167348582785], [12.190837067252277, 0.854984012320659, 0.5162306706117471], [12.273008386005078, 0.8607921728833259, 0.5364354576047305], [12.358416572923877, 0.8667173143976228, 0.5561662301204522], [12.446994996431783, 0.8727458152072393, 0.5754246505352841], [12.53867646910095, 0.8788645445261077, 0.5942137038004331], [12.633393433938627, 0.8850608984908209, 0.6125375566103026], [12.731078140553967, 0.8913228279780896, 0.6304014214735065], [12.831662810774299, 0.8976388588196581, 0.6478114269270976], [12.935079793423583, 0.9039981050870998, 0.6647744948173447], [13.041261708108294, 0.9103902761378809, 0.6812982252878481], [13.150141577976184, 0.916805678115298, 0.6973907898697067], [13.26165295152056, 0.9232352105815882, 0.7130608328588525], [13.375730013597003, 0.929670358938726, 0.7283173809911828], [13.492307685900702, 0.936103183257889, 0.7431697612844456], [13.611321717221305, 0.942526304098797, 0.7576275268040263], [13.732708763849002, 0.9489328858561965, 0.7717003900245817], [13.85640646055101, 0.9553166181245089, 0.7853981633974474]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[13.856406460551018, 2.186276035465284, -2.356194490192345], [13.73270876384901, 2.1734202568107657, -2.356194490192345], [13.611321717221312, 2.160332984581853, -2.356194490192345], [13.492307685900709, 2.1470125143789462, -2.356194490192345], [13.375730013597012, 2.1334574115376768, -2.356194490192345], [13.261652951520567, 2.119666535283539, -2.356194490192345], [13.150141577976191, 2.10563906351209, -2.356194490192345], [13.041261708108301, 2.091374518060616, -2.356194490192345], [12.93507979342359, 2.0768727903142796, -2.356194490192345], [12.831662810774306, 2.0621341669659996, -2.356194490192345], [12.731078140553974, 2.0471593557250514, -2.356194490192345], [12.633393433938634, 2.0319495107449344, -2.356194490192345], [12.538676469100956, 2.0165062575171016, -2.356194490192345], [12.44699499643179, 2.0008317169540817, -2.356194490192345], [12.358416572923884, 1.9849285283641311, -2.356194490192345], [12.273008386005085, 1.9687998710005112, -2.356194490192345], [12.190837067252284, 1.9524494838525142, -2.356194490192345], [12.111968496571608, 1.9358816833333674, -2.356194490192345], [12.036467597592893, 1.9191013785128537, -2.356194490192345], [11.96439812519518, 1.9021140835407626, -2.356194490192345], [11.89582244625204, 1.8849259269118748, -2.356194490192345], [11.830801314857908, 1.8675436572347601, -2.356194490192345], [11.769393643465367, 1.8499746451858146, -2.356194490192345], [11.711656271525055, 1.8322268813570664, -2.356194490192345], [11.657643733369577, 1.8143089697415857, -2.356194490192345], [11.60740802721691, 1.7962301166437895, -2.356194490192345], [11.560998387282035, 1.7780001148533116, -2.356194490192345], [11.518461061074339, 1.7596293229798217, -2.356194490192345], [11.479839094017978, 1.7411286399114165, -2.356194490192345], [11.445172123559825, 1.7225094744298168, -2.356194490192345], [11.414496184921525, 1.7037837100902067, -2.356194490192345], [11.387843530606437, 1.6849636655504823, -2.356194490192345], [11.36524246568772, 1.6660620506120922, -2.356194490192345], [11.346717200780045, 1.647091918310561, -2.356194490192345], [11.332287724435597, 1.628066613466131, -2.356194490192345], [11.32196969650685, 1.6089997181716595, -2.356194490192345], [11.315774363787698, 1.5899049947540134, -2.356194490192345], [11.313708498984761, 1.5707963267948972, -2.356194490192345], [11.315774363787696, 1.551687658835781, -2.356194490192345], [11.32196969650685, 1.532592935418135, -2.356194490192345], [11.332287724435597, 1.5135260401236634, -2.356194490192345], [11.346717200780043, 1.4945007352792334, -2.356194490192345], [11.365242465687716, 1.4755306029777022, -2.356194490192345], [11.387843530606435, 1.4566289880393122, -2.356194490192345], [11.414496184921523, 1.4378089434995878, -2.356194490192345], [11.445172123559823, 1.4190831791599776, -2.356194490192345], [11.479839094017974, 1.400464013678378, -2.356194490192345], [11.518461061074337, 1.3819633306099728, -2.356194490192345], [11.560998387282032, 1.363592538736483, -2.356194490192345], [11.607408027216906, 1.3453625369460047, -2.356194490192345], [11.657643733369573, 1.3272836838482087, -2.356194490192345], [11.711656271525051, 1.3093657722327279, -2.356194490192345], [11.769393643465364, 1.29161800840398, -2.356194490192345], [11.830801314857903, 1.2740489963550343, -2.356194490192345], [11.895822446252035, 1.2566667266779197, -2.356194490192345], [11.964398125195174, 1.2394785700490316, -2.356194490192345], [12.036467597592889, 1.2224912750769406, -2.356194490192345], [12.111968496571603, 1.2057109702564268, -2.356194490192345], [12.190837067252277, 1.1891431697372798, -2.356194490192345], [12.273008386005078, 1.1727927825892828, -2.356194490192345], [12.358416572923877, 1.1566641252256629, -2.356194490192345], [12.446994996431783, 1.1407609366357125, -2.356194490192345], [12.53867646910095, 1.1250863960726925, -2.356194490192345], [12.633393433938627, 1.1096431428448599, -2.356194490192345], [12.731078140553967, 1.0944332978647429, -2.356194490192345], [12.831662810774299, 1.0794584866237942, -2.356194490192345], [12.935079793423583, 1.0647198632755148, -2.356194490192345], [13.041261708108294, 1.050218135529178, -2.356194490192345], [13.150141577976184, 1.0359535900777044, -2.356194490192345], [13.26165295152056, 1.0219261183062553, -2.356194490192345], [13.375730013597003, 1.0081352420521172, -2.356194490192345], [13.492307685900702, 0.9945801392108478, -2.356194490192345], [13.611321717221305, 0.9812596690079414, -2.356194490192345], [13.732708763849002, 0.9681723967790282, -2.356194490192345], [13.85640646055101, 0.9553166181245101, -2.356194490192345]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 2.3005239830218627, -2.677945044588987], [11.85695112550842, 2.286931701737962, -2.677945044588987], [11.716146076662774, 2.2730100912812796, -2.677945044588987], [11.577666720501819, 2.2587526317148106, -2.677945044588987], [11.441597501950499, 2.2441530311072935, -2.677945044588987], [11.30802542474035, 2.229205275549252, -2.677945044588987], [11.177040016069467, 2.2139036834011327, -2.677945044588987], [11.048733273066729, 2.198242963801352, -2.677945044588987], [10.923199589050602, 2.1822182793977754, -2.677945044588987], [10.800535657522193, 2.1658253131893535, -2.677945044588987], [10.6808403518118, 2.149060339274807, -2.677945044588987], [10.564214578315028, 2.1319202972019227, -2.677945044588987], [10.450761101316306, 2.1144028694943424, -2.677945044588987], [10.340584337511977, 2.0965065618032828, -2.677945044588987], [10.233790118520103, 2.078230784990687, -2.677945044588987], [10.130485419907139, 2.059575938299985, -2.677945044588987], [10.03077805557935, 2.0405434926137787, -2.677945044588987], [9.934776336784996, 2.0211360726384564, -2.677945044588987], [9.842588695455259, 2.001357536698758, -2.677945044588987], [9.754323272179056, 1.9812130526768141, -2.677945044588987], [9.670087469757132, 1.9607091684969695, -2.677945044588987], [9.58998747400869, 1.939853875447661, -2.677945044588987], [9.51412774429916, 1.918656662552957, -2.677945044588987], [9.442610477106006, 1.897128560167694, -2.677945044588987], [9.375535046821113, 1.8752821709797194, -2.677945044588987], [9.312997428878607, 1.8531316866681318, -2.677945044588987], [9.25508961116735, 1.8306928885937204, -2.677945044588987], [9.201899000504504, 1.8079831310912229, -2.677945044588987], [9.153507831675434, 1.7850213061940345, -2.677945044588987], [9.109992587149065, 1.7618277889489395, -2.677945044588987], [9.071423436020835, 1.738424362866051, -2.677945044588987], [9.037863700984591, 1.714834125488371, -2.677945044588987], [9.00936936216245, 1.6910813745433908, -2.677945044588987], [8.985988606407073, 1.667191475639725, -2.677945044588987], [8.967761430222914, 1.6431907129758951, -2.677945044588987], [8.954719303731382, 1.6191061250151766, -2.677945044588987], [8.946884902140793, 1.5949653275284048, -2.677945044588987], [8.94427190999916, 1.5707963267948974, -2.677945044588987], [8.946884902140793, 1.5466273260613899, -2.677945044588987], [8.95471930373138, 1.5224865285746183, -2.677945044588987], [8.967761430222913, 1.4984019406138998, -2.677945044588987], [8.985988606407071, 1.4744011779500696, -2.677945044588987], [9.009369362162449, 1.450511279046404, -2.677945044588987], [9.03786370098459, 1.4267585281014237, -2.677945044588987], [9.071423436020831, 1.403168290723744, -2.677945044588987], [9.109992587149062, 1.3797648646408553, -2.677945044588987], [9.15350783167543, 1.3565713473957601, -2.677945044588987], [9.2018990005045, 1.333609522498572, -2.677945044588987], [9.255089611167346, 1.3108997649960743, -2.677945044588987], [9.312997428878601, 1.288460966921663, -2.677945044588987], [9.375535046821108, 1.2663104826100753, -2.677945044588987], [9.442610477106001, 1.2444640934221005, -2.677945044588987], [9.514127744299154, 1.2229359910368374, -2.677945044588987], [9.589987474008685, 1.2017387781421336, -2.677945044588987], [9.670087469757126, 1.1808834850928251, -2.677945044588987], [9.754323272179048, 1.1603796009129803, -2.677945044588987], [9.842588695455252, 1.1402351168910363, -2.677945044588987], [9.934776336784989, 1.1204565809513383, -2.677945044588987], [10.030778055579344, 1.1010491609760154, -2.677945044588987], [10.130485419907131, 1.0820167152898092, -2.677945044588987], [10.233790118520096, 1.063361868599107, -2.677945044588987], [10.34058433751197, 1.045086091786512, -2.677945044588987], [10.4507611013163, 1.0271897840954516, -2.677945044588987], [10.56421457831502, 1.0096723563878716, -2.677945044588987], [10.680840351811792, 0.9925323143149873, -2.677945044588987], [10.800535657522186, 0.9757673404004409, -2.677945044588987], [10.923199589050594, 0.959374374192019, -2.677945044588987], [11.048733273066722, 0.9433496897884421, -2.677945044588987], [11.177040016069459, 0.9276889701886616, -2.677945044588987], [11.308025424740341, 0.9123873780405417, -2.677945044588987], [11.441597501950492, 0.8974396224825008, -2.677945044588987], [11.577666720501812, 0.8828400218749836, -2.677945044588987], [11.716146076662765, 0.8685825623085146, -2.677945044588987], [11.856951125508411, 0.8546609518518322, -2.677945044588987], [11.999999999999991, 0.8410686705679312, -2.677945044588987]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[11.313708498984761, 2.356194490192345, 3.141592653589793], [11.161867674932157, 2.342496716819479, 3.141592653589793], [11.01217866226754, 2.328423853598924, 3.141592653589793], [10.864730401211775, 2.3139660880793427, 3.141592653589793], [10.719615356748577, 2.2991137077860806, 3.141592653589793], [10.576929564224875, 2.28385715965375, 3.141592653589793], [10.436772658289446, 2.2681871166646044, 3.141592653589793], [10.299247882217994, 2.252094552082746, 3.141592653589793], [10.164462074415706, 2.2355708216122423, 3.141592653589793], [10.032525628644482, 2.2186077537219955, 3.141592653589793], [9.903552424301656, 2.201197748268404, 3.141592653589793], [9.777659722892986, 2.1833338834052003, 3.141592653589793], [9.65496802670967, 2.165010030595331, 3.141592653589793], [9.535600895654033, 2.1462209773301817, 3.141592653589793], [9.419684718180312, 2.12696255691535, 3.141592653589793], [9.30734843244579, 2.1072317843996284, 3.141592653589793], [9.198723194024932, 2.087026997406645, 3.141592653589793], [9.093941986946204, 2.0663480002807257, 3.141592653589793], [8.993139175388293, 2.0451962095868046, 3.141592653589793], [8.896449994136646, 2.023574798618433, 3.141592653589793], [8.804009976865876, 2.0014888381814053, 3.141592653589793], [8.715954322484922, 1.9789454305499865, 3.141592653589793], [8.632417201157681, 1.9559538331583715, 3.141592653589793], [8.553531003179454, 1.9325255683148295, 3.141592653589793], [8.479425535622738, 1.9086745150351758, 3.141592653589793], [8.410227173525072, 1.8844169790115957, 3.141592653589793], [8.346057974321637, 1.8597717367874638, 3.141592653589793], [8.287034766156456, 1.8347600504206019, 3.141592653589793], [8.233268222555578, 1.8094056493030983, 3.141592653589793], [8.184861937620628, 1.7837346763742945, 3.141592653589793], [8.141911517302804, 1.7577755967138085, 3.141592653589793], [8.104503703347596, 1.7315590674207322, 3.141592653589793], [8.07271554706788, 1.705117768747866, 3.141592653589793], [8.0466136501312, 1.6784861976277181, 3.141592653589793], [8.026253488981876, 1.651700425950128, 3.141592653589793], [8.011678838334662, 1.6247978271708656, 3.141592653589793], [8.002921307382378, 1.5978167759821622, 3.141592653589793], [8.0, 1.5707963267948974, 3.141592653589793], [8.002921307382378, 1.5437758776076327, 3.141592653589793], [8.01167883833466, 1.5167948264189293, 3.141592653589793], [8.026253488981874, 1.4898922276396669, 3.141592653589793], [8.046613650131198, 1.4631064559620768, 3.141592653589793], [8.072715547067878, 1.436474884841929, 3.141592653589793], [8.104503703347593, 1.410033586169063, 3.141592653589793], [8.1419115173028, 1.3838170568759864, 3.141592653589793], [8.184861937620626, 1.3578579772155004, 3.141592653589793], [8.233268222555575, 1.3321870042866966, 3.141592653589793], [8.287034766156452, 1.3068326031691928, 3.141592653589793], [8.346057974321633, 1.2818209168023311, 3.141592653589793], [8.410227173525067, 1.2571756745781992, 3.141592653589793], [8.479425535622733, 1.232918138554619, 3.141592653589793], [8.55353100317945, 1.2090670852749652, 3.141592653589793], [8.632417201157676, 1.1856388204314232, 3.141592653589793], [8.715954322484915, 1.1626472230398082, 3.141592653589793], [8.80400997686587, 1.1401038154083893, 3.141592653589793], [8.896449994136638, 1.1180178549713613, 3.141592653589793], [8.993139175388286, 1.09639644400299, 3.141592653589793], [9.093941986946199, 1.0752446533090687, 3.141592653589793], [9.198723194024925, 1.0545656561831496, 3.141592653589793], [9.307348432445783, 1.034360869190166, 3.141592653589793], [9.419684718180305, 1.0146300966744444, 3.141592653589793], [9.535600895654026, 0.9953716762596124, 3.141592653589793], [9.654968026709662, 0.9765826229944635, 3.141592653589793], [9.77765972289298, 0.958258770184594, 3.141592653589793], [9.903552424301648, 0.9403949053213901, 3.141592653589793], [10.032525628644475, 0.922984899867799, 3.141592653589793], [10.164462074415699, 0.9060218319775518, 3.141592653589793], [10.299247882217985, 0.8894981015070484, 3.141592653589793], [10.436772658289437, 0.87340553692519, 3.141592653589793], [10.576929564224864, 0.8577354939360441, 3.141592653589793], [10.719615356748568, 0.8424789458037137, 3.141592653589793], [10.864730401211764, 0.8276265655104511, 3.141592653589793], [11.012178662267532, 0.8131687999908702, 3.141592653589793], [11.161867674932148, 0.799095936770315, 3.141592653589793], [11.31370849898475, 0.7853981633974492, 3.141592653589793]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 2.3005239830218627, 2.677945044588987], [11.85695112550842, 2.286931701737962, 2.677945044588987], [11.716146076662774, 2.2730100912812796, 2.677945044588987], [11.577666720501819, 2.2587526317148106, 2.677945044588987], [11.441597501950499, 2.2441530311072935, 2.677945044588987], [11.30802542474035, 2.229205275549252, 2.677945044588987], [11.177040016069467, 2.2139036834011327, 2.677945044588987], [11.048733273066729, 2.198242963801352, 2.677945044588987], [10.923199589050602, 2.1822182793977754, 2.677945044588987], [10.800535657522193, 2.1658253131893535, 2.677945044588987], [10.6808403518118, 2.149060339274807, 2.677945044588987], [10.564214578315028, 2.1319202972019227, 2.677945044588987], [10.450761101316306, 2.1144028694943424, 2.677945044588987], [10.340584337511977, 2.0965065618032828, 2.677945044588987], [10.233790118520103, 2.078230784990687, 2.677945044588987], [10.130485419907139, 2.059575938299985, 2.677945044588987], [10.03077805557935, 2.0405434926137787, 2.677945044588987], [9.934776336784996, 2.0211360726384564, 2.677945044588987], [9.842588695455259, 2.001357536698758, 2.677945044588987], [9.754323272179056, 1.9812130526768141, 2.677945044588987], [9.670087469757132, 1.9607091684969695, 2.677945044588987], [9.58998747400869, 1.939853875447661, 2.677945044588987], [9.51412774429916, 1.918656662552957, 2.677945044588987], [9.442610477106006, 1.897128560167694, 2.677945044588987], [9.375535046821113, 1.8752821709797194, 2.677945044588987], [9.312997428878607, 1.8531316866681318, 2.677945044588987], [9.25508961116735, 1.8306928885937204, 2.677945044588987], [9.201899000504504, 1.8079831310912229, 2.677945044588987], [9.153507831675434, 1.7850213061940345, 2.677945044588987], [9.109992587149065, 1.7618277889489395, 2.677945044588987], [9.071423436020835, 1.738424362866051, 2.677945044588987], [9.037863700984591, 1.714834125488371, 2.677945044588987], [9.00936936216245, 1.6910813745433908, 2.677945044588987], [8.985988606407073, 1.667191475639725, 2.677945044588987], [8.967761430222914, 1.6431907129758951, 2.677945044588987], [8.954719303731382, 1.6191061250151766, 2.677945044588987], [8.946884902140793, 1.5949653275284048, 2.677945044588987], [8.94427190999916, 1.5707963267948974, 2.677945044588987], [8.946884902140793, 1.5466273260613899, 2.677945044588987], [8.95471930373138, 1.5224865285746183, 2.677945044588987], [8.967761430222913, 1.4984019406138998, 2.677945044588987], [8.985988606407071, 1.4744011779500696, 2.677945044588987], [9.009369362162449, 1.450511279046404, 2.677945044588987], [9.03786370098459, 1.4267585281014237, 2.677945044588987], [9.071423436020831, 1.403168290723744, 2.677945044588987], [9.109992587149062, 1.3797648646408553, 2.677945044588987], [9.15350783167543, 1.3565713473957601, 2.677945044588987], [9.2018990005045, 1.333609522498572, 2.677945044588987], [9.255089611167346, 1.3108997649960743, 2.677945044588987], [9.312997428878601, 1.288460966921663, 2.677945044588987], [9.375535046821108, 1.2663104826100753, 2.677945044588987], [9.442610477106001, 1.2444640934221005, 2.677945044588987], [9.514127744299154, 1.2229359910368374, 2.677945044588987], [9.589987474008685, 1.2017387781421336, 2.677945044588987], [9.670087469757126, 1.1808834850928251, 2.677945044588987], [9.754323272179048, 1.1603796009129803, 2.677945044588987], [9.842588695455252, 1.1402351168910363, 2.677945044588987], [9.934776336784989, 1.1204565809513383, 2.677945044588987], [10.030778055579344, 1.1010491609760154, 2.677945044588987], [10.130485419907131, 1.0820167152898092, 2.677945044588987], [10.233790118520096, 1.063361868599107, 2.677945044588987], [10.34058433751197, 1.045086091786512, 2.677945044588987], [10.4507611013163, 1.0271897840954516, 2.677945044588987], [10.56421457831502, 1.0096723563878716, 2.677945044588987], [10.680840351811792, 0.9925323143149873, 2.677945044588987], [10.800535657522186, 0.9757673404004409, 2.677945044588987], [10.923199589050594, 0.959374374192019, 2.677945044588987], [11.048733273066722, 0.9433496897884421, 2.677945044588987], [11.177040016069459, 0.9276889701886616, 2.677945044588987], [11.308025424740341, 0.9123873780405417, 2.677945044588987], [11.441597501950492, 0.8974396224825008, 2.677945044588987], [11.577666720501812, 0.8828400218749836, 2.677945044588987], [11.716146076662765, 0.8685825623085146, 2.677945044588987], [11.856951125508411, 0.8546609518518322, 2.677945044588987], [11.999999999999991, 0.8410686705679312, 2.677945044588987]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[13.856406460551018, 2.186276035465284, 2.356194490192345], [13.73270876384901, 2.1734202568107657, 2.356194490192345], [13.611321717221312, 2.160332984581853, 2.356194490192345], [13.492307685900709, 2.1470125143789462, 2.356194490192345], [13.375730013597012, 2.1334574115376768, 2.356194490192345], [13.261652951520567, 2.119666535283539, 2.356194490192345], [13.150141577976191, 2.10563906351209, 2.356194490192345], [13.041261708108301, 2.091374518060616, 2.356194490192345], [12.93507979342359, 2.0768727903142796, 2.356194490192345], [12.831662810774306, 2.0621341669659996, 2.356194490192345], [12.731078140553974, 2.0471593557250514, 2.356194490192345], [12.633393433938634, 2.0319495107449344, 2.356194490192345], [12.538676469100956, 2.0165062575171016, 2.356194490192345], [12.44699499643179, 2.0008317169540817, 2.356194490192345], [12.358416572923884, 1.9849285283641311, 2.356194490192345], [12.273008386005085, 1.9687998710005112, 2.356194490192345], [12.190837067252284, 1.9524494838525142, 2.356194490192345], [12.111968496571608, 1.9358816833333674, 2.356194490192345], [12.036467597592893, 1.9191013785128537, 2.356194490192345], [11.96439812519518, 1.9021140835407626, 2.356194490192345], [11.89582244625204, 1.8849259269118748, 2.356194490192345], [11.830801314857908, 1.8675436572347601, 2.356194490192345], [11.769393643465367, 1.8499746451858146, 2.356194490192345], [11.711656271525055, 1.8322268813570664, 2.356194490192345], [11.657643733369577, 1.8143089697415857, 2.356194490192345], [11.60740802721691, 1.7962301166437895, 2.356194490192345], [11.560998387282035, 1.7780001148533116, 2.356194490192345], [11.518461061074339, 1.7596293229798217, 2.356194490192345], [11.479839094017978, 1.7411286399114165, 2.356194490192345], [11.445172123559825, 1.7225094744298168, 2.356194490192345], [11.414496184921525, 1.7037837100902067, 2.356194490192345], [11.387843530606437, 1.6849636655504823, 2.356194490192345], [11.36524246568772, 1.6660620506120922, 2.356194490192345], [11.346717200780045, 1.647091918310561, 2.356194490192345], [11.332287724435597, 1.628066613466131, 2.356194490192345], [11.32196969650685, 1.6089997181716595, 2.356194490192345], [11.315774363787698, 1.5899049947540134, 2.356194490192345], [11.313708498984761, 1.5707963267948972, 2.356194490192345], [11.315774363787696, 1.551687658835781, 2.356194490192345], [11.32196969650685, 1.532592935418135, 2.356194490192345], [11.332287724435597, 1.5135260401236634, 2.356194490192345], [11.346717200780043, 1.4945007352792334, 2.356194490192345], [11.365242465687716, 1.4755306029777022, 2.356194490192345], [11.387843530606435, 1.4566289880393122, 2.356194490192345], [11.414496184921523, 1.4378089434995878, 2.356194490192345], [11.445172123559823, 1.4190831791599776, 2.356194490192345], [11.479839094017974, 1.400464013678378, 2.356194490192345], [11.518461061074337, 1.3819633306099728, 2.356194490192345], [11.560998387282032, 1.363592538736483, 2.356194490192345], [11.607408027216906, 1.3453625369460047, 2.356194490192345], [11.657643733369573, 1.3272836838482087, 2.356194490192345], [11.711656271525051, 1.3093657722327279, 2.356194490192345], [11.769393643465364, 1.29161800840398, 2.356194490192345], [11.830801314857903, 1.2740489963550343, 2.356194490192345], [11.895822446252035, 1.2566667266779197, 2.356194490192345], [11.964398125195174, 1.2394785700490316, 2.356194490192345], [12.036467597592889, 1.2224912750769406, 2.356194490192345], [12.111968496571603, 1.2057109702564268, 2.356194490192345], [12.190837067252277, 1.1891431697372798, 2.356194490192345], [12.273008386005078, 1.1727927825892828, 2.356194490192345], [12.358416572923877, 1.1566641252256629, 2.356194490192345], [12.446994996431783, 1.1407609366357125, 2.356194490192345], [12.53867646910095, 1.1250863960726925, 2.356194490192345], [12.633393433938627, 1.1096431428448599, 2.356194490192345], [12.731078140553967, 1.0944332978647429, 2.356194490192345], [12.831662810774299, 1.0794584866237942, 2.356194490192345], [12.935079793423583, 1.0647198632755148, 2.356194490192345], [13.041261708108294, 1.050218135529178, 2.356194490192345], [13.150141577976184, 1.0359535900777044, 2.356194490192345], [13.26165295152056, 1.0219261183062553, 2.356194490192345], [13.375730013597003, 1.0081352420521172, 2.356194490192345], [13.492307685900702, 0.9945801392108478, 2.356194490192345], [13.611321717221305, 0.9812596690079414, 2.356194490192345], [13.732708763849002, 0.9681723967790282, 2.356194490192345], [13.85640646055101, 0.9553166181245101, 2.356194490192345]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 2.3005239830218627, -2.0344439357957027], [11.85695112550842, 2.286931701737962, -2.0344439357957027], [11.716146076662774, 2.2730100912812796, -2.0344439357957027], [11.577666720501819, 2.2587526317148106, -2.0344439357957027], [11.441597501950499, 2.2441530311072935, -2.0344439357957027], [11.30802542474035, 2.229205275549252, -2.0344439357957027], [11.177040016069467, 2.2139036834011327, -2.0344439357957027], [11.048733273066729, 2.198242963801352, -2.0344439357957027], [10.923199589050602, 2.1822182793977754, -2.0344439357957027], [10.800535657522193, 2.1658253131893535, -2.0344439357957027], [10.6808403518118, 2.149060339274807, -2.0344439357957027], [10.564214578315028, 2.1319202972019227, -2.0344439357957027], [10.450761101316306, 2.1144028694943424, -2.0344439357957027], [10.340584337511977, 2.0965065618032828, -2.0344439357957027], [10.233790118520103, 2.078230784990687, -2.0344439357957027], [10.130485419907139, 2.059575938299985, -2.0344439357957027], [10.03077805557935, 2.0405434926137787, -2.0344439357957027], [9.934776336784996, 2.0211360726384564, -2.0344439357957027], [9.842588695455259, 2.001357536698758, -2.0344439357957027], [9.754323272179056, 1.9812130526768141, -2.0344439357957027], [9.670087469757132, 1.9607091684969695, -2.0344439357957027], [9.58998747400869, 1.939853875447661, -2.0344439357957027], [9.51412774429916, 1.918656662552957, -2.0344439357957027], [9.442610477106006, 1.897128560167694, -2.0344439357957027], [9.375535046821113, 1.8752821709797194, -2.0344439357957027], [9.312997428878607, 1.8531316866681318, -2.0344439357957027], [9.25508961116735, 1.8306928885937204, -2.0344439357957027], [9.201899000504504, 1.8079831310912229, -2.0344439357957027], [9.153507831675434, 1.7850213061940345, -2.0344439357957027], [9.109992587149065, 1.7618277889489395, -2.0344439357957027], [9.071423436020835, 1.738424362866051, -2.0344439357957027], [9.037863700984591, 1.714834125488371, -2.0344439357957027], [9.00936936216245, 1.6910813745433908, -2.0344439357957027], [8.985988606407073, 1.667191475639725, -2.0344439357957027], [8.967761430222914, 1.6431907129758951, -2.0344439357957027], [8.954719303731382, 1.6191061250151766, -2.0344439357957027], [8.946884902140793, 1.5949653275284048, -2.0344439357957027], [8.94427190999916, 1.5707963267948974, -2.0344439357957027], [8.946884902140793, 1.5466273260613899, -2.0344439357957027], [8.95471930373138, 1.5224865285746183, -2.0344439357957027], [8.967761430222913, 1.4984019406138998, -2.0344439357957027], [8.985988606407071, 1.4744011779500696, -2.0344439357957027], [9.009369362162449, 1.450511279046404, -2.0344439357957027], [9.03786370098459, 1.4267585281014237, -2.0344439357957027], [9.071423436020831, 1.403168290723744, -2.0344439357957027], [9.109992587149062, 1.3797648646408553, -2.0344439357957027], [9.15350783167543, 1.3565713473957601, -2.0344439357957027], [9.2018990005045, 1.333609522498572, -2.0344439357957027], [9.255089611167346, 1.3108997649960743, -2.0344439357957027], [9.312997428878601, 1.288460966921663, -2.0344439357957027], [9.375535046821108, 1.2663104826100753, -2.0344439357957027], [9.442610477106001, 1.2444640934221005, -2.0344439357957027], [9.514127744299154, 1.2229359910368374, -2.0344439357957027], [9.589987474008685, 1.2017387781421336, -2.0344439357957027], [9.670087469757126, 1.1808834850928251, -2.0344439357957027], [9.754323272179048, 1.1603796009129803, -2.0344439357957027], [9.842588695455252, 1.1402351168910363, -2.0344439357957027], [9.934776336784989, 1.1204565809513383, -2.0344439357957027], [10.030778055579344, 1.1010491609760154, -2.0344439357957027], [10.130485419907131, 1.0820167152898092, -2.0344439357957027], [10.233790118520096, 1.063361868599107, -2.0344439357957027], [10.34058433751197, 1.045086091786512, -2.0344439357957027], [10.4507611013163, 1.0271897840954516, -2.0344439357957027], [10.56421457831502, 1.0096723563878716, -2.0344439357957027], [10.680840351811792, 0.9925323143149873, -2.0344439357957027], [10.800535657522186, 0.9757673404004409, -2.0344439357957027], [10.923199589050594, 0.959374374192019, -2.0344439357957027], [11.048733273066722, 0.9433496897884421, -2.0344439357957027], [11.177040016069459, 0.9276889701886616, -2.0344439357957027], [11.308025424740341, 0.9123873780405417, -2.0344439357957027], [11.441597501950492, 0.8974396224825008, -2.0344439357957027], [11.577666720501812, 0.8828400218749836, -2.0344439357957027], [11.716146076662765, 0.8685825623085146, -2.0344439357957027], [11.856951125508411, 0.8546609518518322, -2.0344439357957027], [11.999999999999991, 0.8410686705679312, -2.0344439357957027]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.797958971132712, 2.5261129449194057, -2.356194490192345], [9.62222895137584, 2.5131392365154035, -2.356194490192345], [9.448178601704168, 2.499685200881445, -2.356194490192345], [9.27590247312979, 2.485728811336716, -2.356194490192345], [9.10550127102511, 2.47124714960049, -2.356194490192345], [8.9370822423526, 2.4562164224499328, -2.356194490192345], [8.770759574906734, 2.440611992193308, -2.356194490192345], [8.606654805403307, 2.4244084238312826, -2.356194490192345], [8.444897232189108, 2.4075795521815815, -2.356194490192345], [8.285624327074476, 2.3900985726620885, -2.356194490192345], [8.128982139289716, 2.3719381598505067, -2.356194490192345], [7.975125682814269, 2.3530706183441845, -2.356194490192345], [7.824219296312318, 2.3334680708027733, -2.356194490192345], [7.67643696262778, 2.3131026883299337, -2.356194490192345], [7.5319625722596175, 2.2919469684877085, -2.356194490192345], [7.390990112491771, 2.2699740661744787, -2.356194490192345], [7.253723760958384, 2.2471581822570403, -2.356194490192345], [7.120377859491945, 2.2234750141383546, -2.356194490192345], [6.99117674128638, 2.198902271263524, -2.356194490192345], [6.866354381924509, 2.1734202568107666, -2.356194490192345], [6.746153842950358, 2.147012514378947, -2.356194490192345], [6.630826475760287, 2.1196665352835398, -2.356194490192345], [6.520630854054154, 2.0913745180606167, -2.356194490192345], [6.415831405387157, 2.0621341669660005, -2.356194490192345], [6.316696716969319, 2.031949510744935, -2.356194490192345], [6.223497498215897, 2.000831716954082, -2.356194490192345], [6.136504193002544, 1.9687998710005121, -2.356194490192345], [6.055984248285806, 1.935881683333368, -2.356194490192345], [5.982199062597591, 1.9021140835407633, -2.356194490192345], [5.915400657428955, 1.8675436572347608, -2.356194490192345], [5.855828135762527, 1.832226881357067, -2.356194490192345], [5.8037040136084554, 1.7962301166437902, -2.356194490192345], [5.75923053053717, 1.7596293229798223, -2.356194490192345], [5.722586061779913, 1.7225094744298175, -2.356194490192345], [5.693921765303219, 1.684963665550483, -2.356194490192345], [5.6733586003900225, 1.6470919183105617, -2.356194490192345], [5.660984848253426, 1.6089997181716602, -2.356194490192345], [5.656854249492381, 1.570796326794898, -2.356194490192345], [5.660984848253425, 1.5325929354181356, -2.356194490192345], [5.673358600390022, 1.494500735279234, -2.356194490192345], [5.693921765303218, 1.4566289880393126, -2.356194490192345], [5.722586061779911, 1.419083179159978, -2.356194490192345], [5.759230530537167, 1.3819633306099735, -2.356194490192345], [5.803704013608452, 1.3453625369460054, -2.356194490192345], [5.855828135762524, 1.3093657722327285, -2.356194490192345], [5.91540065742895, 1.2740489963550348, -2.356194490192345], [5.982199062597585, 1.2394785700490323, -2.356194490192345], [6.0559842482857995, 1.2057109702564273, -2.356194490192345], [6.136504193002538, 1.1727927825892834, -2.356194490192345], [6.223497498215891, 1.140760936635713, -2.356194490192345], [6.316696716969312, 1.1096431428448603, -2.356194490192345], [6.415831405387149, 1.0794584866237946, -2.356194490192345], [6.520630854054146, 1.0502181355291782, -2.356194490192345], [6.630826475760279, 1.0219261183062556, -2.356194490192345], [6.746153842950351, 0.9945801392108478, -2.356194490192345], [6.8663543819245, 0.9681723967790282, -2.356194490192345], [6.99117674128637, 0.942690382326271, -2.356194490192345], [7.120377859491937, 0.9181176394514401, -2.356194490192345], [7.253723760958375, 0.8944344713327546, -2.356194490192345], [7.390990112491761, 0.8716185874153158, -2.356194490192345], [7.531962572259608, 0.8496456851020862, -2.356194490192345], [7.67643696262777, 0.8284899652598607, -2.356194490192345], [7.824219296312309, 0.8081245827870214, -2.356194490192345], [7.97512568281426, 0.7885220352456098, -2.356194490192345], [8.128982139289706, 0.7696544937392877, -2.356194490192345], [8.285624327074466, 0.7514940809277056, -2.356194490192345], [8.444897232189097, 0.7340131014082131, -2.356194490192345], [8.606654805403297, 0.7171842297585117, -2.356194490192345], [8.770759574906723, 0.7009806613964862, -2.356194490192345], [8.93708224235259, 0.6853762311398612, -2.356194490192345], [9.1055012710251, 0.6703455039893037, -2.356194490192345], [9.27590247312978, 0.6558638422530779, -2.356194490192345], [9.448178601704157, 0.6419074527083485, -2.356194490192345], [9.62222895137583, 0.6284534170743906, -2.356194490192345], [9.7979589711327, 0.6154797086703881, -2.356194490192345]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[8.94427190999916, 2.677945044588987, 3.141592653589793], [8.751416456362673, 2.666895770509618, 3.141592653589793], [8.559677499164353, 2.655350020502288, 3.141592653589793], [8.36913177641596, 2.6432768593794873, 3.141592653589793], [8.179862675903546, 2.630643077093183, 3.141592653589793], [7.9919608987140425, 2.61741302480688, 3.141592653589793], [7.805525191863655, 2.6035484457641687, 3.141592653589793], [7.620663156141455, 2.5890083032990794, 3.141592653589793], [7.437492135272161, 2.5737486093263535, 3.141592653589793], [7.256140192237769, 2.5577222579276784, 3.141592653589793], [7.0767471779689295, 2.5408788702787994, 3.141592653589793], [6.899465896479507, 2.523164659217274, 3.141592653589793], [6.7244633686849715, 2.50452232431411, 3.141592653589793], [6.551922194379143, 2.4848909914703596, 3.141592653589793], [6.382042007846683, 2.4642062148923918, 3.141592653589793], [6.21504101699668, 2.4424000638681242, 3.141592653589793], [6.051157608283909, 2.419401322089806, 3.141592653589793], [5.890651989546071, 2.395135833289385, 3.141592653589793], [5.733807829697787, 2.3695270334864915, 3.141592653589793], [5.580933837466084, 2.34249671681948, 3.141592653589793], [5.432365200605892, 2.313966088079344, 3.141592653589793], [5.288464782112441, 2.283857159653751, 3.141592653589793], [5.1496239411090015, 2.2520945520827467, 3.141592653589793], [5.0162628143222445, 2.2186077537219964, 3.141592653589793], [4.888829861446497, 2.183333883405201, 3.141592653589793], [4.767800447827019, 2.1462209773301826, 3.141592653589793], [4.653674216222898, 2.1072317843996293, 3.141592653589793], [4.546970993473105, 2.0663480002807266, 3.141592653589793], [4.4482249970683245, 2.023574798618434, 3.141592653589793], [4.357977161242462, 1.9789454305499874, 3.141592653589793], [4.276765501589729, 1.9325255683148304, 3.141592653589793], [4.205113586762537, 1.8844169790115965, 3.141592653589793], [4.143517383078229, 1.8347600504206028, 3.141592653589793], [4.092430968810315, 1.7837346763742954, 3.141592653589793], [4.052251851673798, 1.731559067420733, 3.141592653589793], [4.0233068250656, 1.678486197627719, 3.141592653589793], [4.005839419167331, 1.6247978271708667, 3.141592653589793], [4.0, 1.5707963267948983, 3.141592653589793], [4.00583941916733, 1.5167948264189302, 3.141592653589793], [4.023306825065598, 1.463106455962078, 3.141592653589793], [4.0522518516737955, 1.4100335861690638, 3.141592653589793], [4.092430968810312, 1.3578579772155013, 3.141592653589793], [4.143517383078225, 1.3068326031691937, 3.141592653589793], [4.205113586762533, 1.2571756745782001, 3.141592653589793], [4.276765501589724, 1.209067085274966, 3.141592653589793], [4.357977161242457, 1.1626472230398088, 3.141592653589793], [4.448224997068317, 1.1180178549713622, 3.141592653589793], [4.5469709934730975, 1.0752446533090696, 3.141592653589793], [4.65367421622289, 1.0343608691901667, 3.141592653589793], [4.767800447827011, 0.995371676259613, 3.141592653589793], [4.888829861446488, 0.9582587701845945, 3.141592653589793], [5.016262814322236, 0.9229848998677994, 3.141592653589793], [5.149623941108992, 0.8894981015070488, 3.141592653589793], [5.288464782112431, 0.8577354939360443, 3.141592653589793], [5.432365200605882, 0.8276265655104512, 3.141592653589793], [5.580933837466073, 0.799095936770315, 3.141592653589793], [5.733807829697776, 0.7720656201033035, 3.141592653589793], [5.890651989546061, 0.7464568203004098, 3.141592653589793], [6.0511576082839, 0.7221913314999889, 3.141592653589793], [6.215041016996668, 0.6991925897216703, 3.141592653589793], [6.382042007846671, 0.6773864386974028, 3.141592653589793], [6.551922194379133, 0.6567016621194349, 3.141592653589793], [6.72446336868496, 0.6370703292756844, 3.141592653589793], [6.899465896479495, 0.6184279943725202, 3.141592653589793], [7.076747177968918, 0.6007137833109946, 3.141592653589793], [7.2561401922377575, 0.5838703956621157, 3.141592653589793], [7.437492135272149, 0.5678440442634407, 3.141592653589793], [7.620663156141443, 0.5525843502907147, 3.141592653589793], [7.805525191863643, 0.5380442078256256, 3.141592653589793], [7.99196089871403, 0.524179628782914, 3.141592653589793], [8.179862675903534, 0.5109495764966111, 3.141592653589793], [8.369131776415948, 0.4983157942103066, 3.141592653589793], [8.559677499164343, 0.48624263308750565, 3.141592653589793], [8.75141645636266, 0.47469688308017566, 3.141592653589793], [8.944271909999147, 0.4636476090008068, 3.141592653589793]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.797958971132712, 2.5261129449194057, 2.356194490192345], [9.62222895137584, 2.5131392365154035, 2.356194490192345], [9.448178601704168, 2.499685200881445, 2.356194490192345], [9.27590247312979, 2.485728811336716, 2.356194490192345], [9.10550127102511, 2.47124714960049, 2.356194490192345], [8.9370822423526, 2.4562164224499328, 2.356194490192345], [8.770759574906734, 2.440611992193308, 2.356194490192345], [8.606654805403307, 2.4244084238312826, 2.356194490192345], [8.444897232189108, 2.4075795521815815, 2.356194490192345], [8.285624327074476, 2.3900985726620885, 2.356194490192345], [8.128982139289716, 2.3719381598505067, 2.356194490192345], [7.975125682814269, 2.3530706183441845, 2.356194490192345], [7.824219296312318, 2.3334680708027733, 2.356194490192345], [7.67643696262778, 2.3131026883299337, 2.356194490192345], [7.5319625722596175, 2.2919469684877085, 2.356194490192345], [7.390990112491771, 2.2699740661744787, 2.356194490192345], [7.253723760958384, 2.2471581822570403, 2.356194490192345], [7.120377859491945, 2.2234750141383546, 2.356194490192345], [6.99117674128638, 2.198902271263524, 2.356194490192345], [6.866354381924509, 2.1734202568107666, 2.356194490192345], [6.746153842950358, 2.147012514378947, 2.356194490192345], [6.630826475760287, 2.1196665352835398, 2.356194490192345], [6.520630854054154, 2.0913745180606167, 2.356194490192345], [6.415831405387157, 2.0621341669660005, 2.356194490192345], [6.316696716969319, 2.031949510744935, 2.356194490192345], [6.223497498215897, 2.000831716954082, 2.356194490192345], [6.136504193002544, 1.9687998710005121, 2.356194490192345], [6.055984248285806, 1.935881683333368, 2.356194490192345], [5.982199062597591, 1.9021140835407633, 2.356194490192345], [5.915400657428955, 1.8675436572347608, 2.356194490192345], [5.855828135762527, 1.832226881357067, 2.356194490192345], [5.8037040136084554, 1.7962301166437902, 2.356194490192345], [5.75923053053717, 1.7596293229798223, 2.356194490192345], [5.722586061779913, 1.7225094744298175, 2.356194490192345], [5.693921765303219, 1.684963665550483, 2.356194490192345], [5.6733586003900225, 1.6470919183105617, 2.356194490192345], [5.660984848253426, 1.6089997181716602, 2.356194490192345], [5.656854249492381, 1.570796326794898, 2.356194490192345], [5.660984848253425, 1.5325929354181356, 2.356194490192345], [5.673358600390022, 1.494500735279234, 2.356194490192345], [5.693921765303218, 1.4566289880393126, 2.356194490192345], [5.722586061779911, 1.419083179159978, 2.356194490192345], [5.759230530537167, 1.3819633306099735, 2.356194490192345], [5.803704013608452, 1.3453625369460054, 2.356194490192345], [5.855828135762524, 1.3093657722327285, 2.356194490192345], [5.91540065742895, 1.2740489963550348, 2.356194490192345], [5.982199062597585, 1.2394785700490323, 2.356194490192345], [6.0559842482857995, 1.2057109702564273, 2.356194490192345], [6.136504193002538, 1.1727927825892834, 2.356194490192345], [6.223497498215891, 1.140760936635713, 2.356194490192345], [6.316696716969312, 1.1096431428448603, 2.356194490192345], [6.415831405387149, 1.0794584866237946, 2.356194490192345], [6.520630854054146, 1.0502181355291782, 2.356194490192345], [6.630826475760279, 1.0219261183062556, 2.356194490192345], [6.746153842950351, 0.9945801392108478, 2.356194490192345], [6.8663543819245, 0.9681723967790282, 2.356194490192345], [6.99117674128637, 0.942690382326271, 2.356194490192345], [7.120377859491937, 0.9181176394514401, 2.356194490192345], [7.253723760958375, 0.8944344713327546, 2.356194490192345], [7.390990112491761, 0.8716185874153158, 2.356194490192345], [7.531962572259608, 0.8496456851020862, 2.356194490192345], [7.67643696262777, 0.8284899652598607, 2.356194490192345], [7.824219296312309, 0.8081245827870214, 2.356194490192345], [7.97512568281426, 0.7885220352456098, 2.356194490192345], [8.128982139289706, 0.7696544937392877, 2.356194490192345], [8.285624327074466, 0.7514940809277056, 2.356194490192345], [8.444897232189097, 0.7340131014082131, 2.356194490192345], [8.606654805403297, 0.7171842297585117, 2.356194490192345], [8.770759574906723, 0.7009806613964862, 2.356194490192345], [8.93708224235259, 0.6853762311398612, 2.356194490192345], [9.1055012710251, 0.6703455039893037, 2.356194490192345], [9.27590247312978, 0.6558638422530779, 2.356194490192345], [9.448178601704157, 0.6419074527083485, 2.356194490192345], [9.62222895137583, 0.6284534170743906, 2.356194490192345], [9.7979589711327, 0.6154797086703881, 2.356194490192345]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 2.3005239830218627, 2.0344439357957027], [11.85695112550842, 2.286931701737962, 2.0344439357957027], [11.716146076662774, 2.2730100912812796, 2.0344439357957027], [11.577666720501819, 2.2587526317148106, 2.0344439357957027], [11.441597501950499, 2.2441530311072935, 2.0344439357957027], [11.30802542474035, 2.229205275549252, 2.0344439357957027], [11.177040016069467, 2.2139036834011327, 2.0344439357957027], [11.048733273066729, 2.198242963801352, 2.0344439357957027], [10.923199589050602, 2.1822182793977754, 2.0344439357957027], [10.800535657522193, 2.1658253131893535, 2.0344439357957027], [10.6808403518118, 2.149060339274807, 2.0344439357957027], [10.564214578315028, 2.1319202972019227, 2.0344439357957027], [10.450761101316306, 2.1144028694943424, 2.0344439357957027], [10.340584337511977, 2.0965065618032828, 2.0344439357957027], [10.233790118520103, 2.078230784990687, 2.0344439357957027], [10.130485419907139, 2.059575938299985, 2.0344439357957027], [10.03077805557935, 2.0405434926137787, 2.0344439357957027], [9.934776336784996, 2.0211360726384564, 2.0344439357957027], [9.842588695455259, 2.001357536698758, 2.0344439357957027], [9.754323272179056, 1.9812130526768141, 2.0344439357957027], [9.670087469757132, 1.9607091684969695, 2.0344439357957027], [9.58998747400869, 1.939853875447661, 2.0344439357957027], [9.51412774429916, 1.918656662552957, 2.0344439357957027], [9.442610477106006, 1.897128560167694, 2.0344439357957027], [9.375535046821113, 1.8752821709797194, 2.0344439357957027], [9.312997428878607, 1.8531316866681318, 2.0344439357957027], [9.25508961116735, 1.8306928885937204, 2.0344439357957027], [9.201899000504504, 1.8079831310912229, 2.0344439357957027], [9.153507831675434, 1.7850213061940345, 2.0344439357957027], [9.109992587149065, 1.7618277889489395, 2.0344439357957027], [9.071423436020835, 1.738424362866051, 2.0344439357957027], [9.037863700984591, 1.714834125488371, 2.0344439357957027], [9.00936936216245, 1.6910813745433908, 2.0344439357957027], [8.985988606407073, 1.667191475639725, 2.0344439357957027], [8.967761430222914, 1.6431907129758951, 2.0344439357957027], [8.954719303731382, 1.6191061250151766, 2.0344439357957027], [8.946884902140793, 1.5949653275284048, 2.0344439357957027], [8.94427190999916, 1.5707963267948974, 2.0344439357957027], [8.946884902140793, 1.5466273260613899, 2.0344439357957027], [8.95471930373138, 1.5224865285746183, 2.0344439357957027], [8.967761430222913, 1.4984019406138998, 2.0344439357957027], [8.985988606407071, 1.4744011779500696, 2.0344439357957027], [9.009369362162449, 1.450511279046404, 2.0344439357957027], [9.03786370098459, 1.4267585281014237, 2.0344439357957027], [9.071423436020831, 1.403168290723744, 2.0344439357957027], [9.109992587149062, 1.3797648646408553, 2.0344439357957027], [9.15350783167543, 1.3565713473957601, 2.0344439357957027], [9.2018990005045, 1.333609522498572, 2.0344439357957027], [9.255089611167346, 1.3108997649960743, 2.0344439357957027], [9.312997428878601, 1.288460966921663, 2.0344439357957027], [9.375535046821108, 1.2663104826100753, 2.0344439357957027], [9.442610477106001, 1.2444640934221005, 2.0344439357957027], [9.514127744299154, 1.2229359910368374, 2.0344439357957027], [9.589987474008685, 1.2017387781421336, 2.0344439357957027], [9.670087469757126, 1.1808834850928251, 2.0344439357957027], [9.754323272179048, 1.1603796009129803, 2.0344439357957027], [9.842588695455252, 1.1402351168910363, 2.0344439357957027], [9.934776336784989, 1.1204565809513383, 2.0344439357957027], [10.030778055579344, 1.1010491609760154, 2.0344439357957027], [10.130485419907131, 1.0820167152898092, 2.0344439357957027], [10.233790118520096, 1.063361868599107, 2.0344439357957027], [10.34058433751197, 1.045086091786512, 2.0344439357957027], [10.4507611013163, 1.0271897840954516, 2.0344439357957027], [10.56421457831502, 1.0096723563878716, 2.0344439357957027], [10.680840351811792, 0.9925323143149873, 2.0344439357957027], [10.800535657522186, 0.9757673404004409, 2.0344439357957027], [10.923199589050594, 0.959374374192019, 2.0344439357957027], [11.048733273066722, 0.9433496897884421, 2.0344439357957027], [11.177040016069459, 0.9276889701886616, 2.0344439357957027], [11.308025424740341, 0.9123873780405417, 2.0344439357957027], [11.441597501950492, 0.8974396224825008, 2.0344439357957027], [11.577666720501812, 0.8828400218749836, 2.0344439357957027], [11.716146076662765, 0.8685825623085146, 2.0344439357957027], [11.856951125508411, 0.8546609518518322, 2.0344439357957027], [11.999999999999991, 0.8410686705679312, 2.0344439357957027]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[11.313708498984761, 2.356194490192345, -1.5707963267948966], [11.161867674932157, 2.342496716819479, -1.5707963267948966], [11.01217866226754, 2.328423853598924, -1.5707963267948966], [10.864730401211775, 2.3139660880793427, -1.5707963267948966], [10.719615356748577, 2.2991137077860806, -1.5707963267948966], [10.576929564224875, 2.28385715965375, -1.5707963267948966], [10.436772658289446, 2.2681871166646044, -1.5707963267948966], [10.299247882217994, 2.252094552082746, -1.5707963267948966], [10.164462074415706, 2.2355708216122423, -1.5707963267948966], [10.032525628644482, 2.2186077537219955, -1.5707963267948966], [9.903552424301656, 2.201197748268404, -1.5707963267948966], [9.777659722892986, 2.1833338834052003, -1.5707963267948966], [9.65496802670967, 2.165010030595331, -1.5707963267948966], [9.535600895654033, 2.1462209773301817, -1.5707963267948966], [9.419684718180312, 2.12696255691535, -1.5707963267948966], [9.30734843244579, 2.1072317843996284, -1.5707963267948966], [9.198723194024932, 2.087026997406645, -1.5707963267948966], [9.093941986946204, 2.0663480002807257, -1.5707963267948966], [8.993139175388293, 2.0451962095868046, -1.5707963267948966], [8.896449994136646, 2.023574798618433, -1.5707963267948966], [8.804009976865876, 2.0014888381814053, -1.5707963267948966], [8.715954322484922, 1.9789454305499865, -1.5707963267948966], [8.632417201157681, 1.9559538331583715, -1.5707963267948966], [8.553531003179454, 1.9325255683148295, -1.5707963267948966], [8.479425535622738, 1.9086745150351758, -1.5707963267948966], [8.410227173525072, 1.8844169790115957, -1.5707963267948966], [8.346057974321637, 1.8597717367874638, -1.5707963267948966], [8.287034766156456, 1.8347600504206019, -1.5707963267948966], [8.233268222555578, 1.8094056493030983, -1.5707963267948966], [8.184861937620628, 1.7837346763742945, -1.5707963267948966], [8.141911517302804, 1.7577755967138085, -1.5707963267948966], [8.104503703347596, 1.7315590674207322, -1.5707963267948966], [8.07271554706788, 1.705117768747866, -1.5707963267948966], [8.0466136501312, 1.6784861976277181, -1.5707963267948966], [8.026253488981876, 1.651700425950128, -1.5707963267948966], [8.011678838334662, 1.6247978271708656, -1.5707963267948966], [8.002921307382378, 1.5978167759821622, -1.5707963267948966], [8.0, 1.5707963267948974, -1.5707963267948966], [8.002921307382378, 1.5437758776076327, -1.5707963267948966], [8.01167883833466, 1.5167948264189293, -1.5707963267948966], [8.026253488981874, 1.4898922276396669, -1.5707963267948966], [8.046613650131198, 1.4631064559620768, -1.5707963267948966], [8.072715547067878, 1.436474884841929, -1.5707963267948966], [8.104503703347593, 1.410033586169063, -1.5707963267948966], [8.1419115173028, 1.3838170568759864, -1.5707963267948966], [8.184861937620626, 1.3578579772155004, -1.5707963267948966], [8.233268222555575, 1.3321870042866966, -1.5707963267948966], [8.287034766156452, 1.3068326031691928, -1.5707963267948966], [8.346057974321633, 1.2818209168023311, -1.5707963267948966], [8.410227173525067, 1.2571756745781992, -1.5707963267948966], [8.479425535622733, 1.232918138554619, -1.5707963267948966], [8.55353100317945, 1.2090670852749652, -1.5707963267948966], [8.632417201157676, 1.1856388204314232, -1.5707963267948966], [8.715954322484915, 1.1626472230398082, -1.5707963267948966], [8.80400997686587, 1.1401038154083893, -1.5707963267948966], [8.896449994136638, 1.1180178549713613, -1.5707963267948966], [8.993139175388286, 1.09639644400299, -1.5707963267948966], [9.093941986946199, 1.0752446533090687, -1.5707963267948966], [9.198723194024925, 1.0545656561831496, -1.5707963267948966], [9.307348432445783, 1.034360869190166, -1.5707963267948966], [9.419684718180305, 1.0146300966744444, -1.5707963267948966], [9.535600895654026, 0.9953716762596124, -1.5707963267948966], [9.654968026709662, 0.9765826229944635, -1.5707963267948966], [9.77765972289298, 0.958258770184594, -1.5707963267948966], [9.903552424301648, 0.9403949053213901, -1.5707963267948966], [10.032525628644475, 0.922984899867799, -1.5707963267948966], [10.164462074415699, 0.9060218319775518, -1.5707963267948966], [10.299247882217985, 0.8894981015070484, -1.5707963267948966], [10.436772658289437, 0.87340553692519, -1.5707963267948966], [10.576929564224864, 0.8577354939360441, -1.5707963267948966], [10.719615356748568, 0.8424789458037137, -1.5707963267948966], [10.864730401211764, 0.8276265655104511, -1.5707963267948966], [11.012178662267532, 0.8131687999908702, -1.5707963267948966], [11.161867674932148, 0.799095936770315, -1.5707963267948966], [11.31370849898475, 0.7853981633974492, -1.5707963267948966]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[8.94427190999916, 2.677945044588987, -1.5707963267948966], [8.751416456362673, 2.666895770509618, -1.5707963267948966], [8.559677499164353, 2.655350020502288, -1.5707963267948966], [8.36913177641596, 2.6432768593794873, -1.5707963267948966], [8.179862675903546, 2.630643077093183, -1.5707963267948966], [7.9919608987140425, 2.61741302480688, -1.5707963267948966], [7.805525191863655, 2.6035484457641687, -1.5707963267948966], [7.620663156141455, 2.5890083032990794, -1.5707963267948966], [7.437492135272161, 2.5737486093263535, -1.5707963267948966], [7.256140192237769, 2.5577222579276784, -1.5707963267948966], [7.0767471779689295, 2.5408788702787994, -1.5707963267948966], [6.899465896479507, 2.523164659217274, -1.5707963267948966], [6.7244633686849715, 2.50452232431411, -1.5707963267948966], [6.551922194379143, 2.4848909914703596, -1.5707963267948966], [6.382042007846683, 2.4642062148923918, -1.5707963267948966], [6.21504101699668, 2.4424000638681242, -1.5707963267948966], [6.051157608283909, 2.419401322089806, -1.5707963267948966], [5.890651989546071, 2.395135833289385, -1.5707963267948966], [5.733807829697787, 2.3695270334864915, -1.5707963267948966], [5.580933837466084, 2.34249671681948, -1.5707963267948966], [5.432365200605892, 2.313966088079344, -1.5707963267948966], [5.288464782112441, 2.283857159653751, -1.5707963267948966], [5.1496239411090015, 2.2520945520827467, -1.5707963267948966], [5.0162628143222445, 2.2186077537219964, -1.5707963267948966], [4.888829861446497, 2.183333883405201, -1.5707963267948966], [4.767800447827019, 2.1462209773301826, -1.5707963267948966], [4.653674216222898, 2.1072317843996293, -1.5707963267948966], [4.546970993473105, 2.0663480002807266, -1.5707963267948966], [4.4482249970683245, 2.023574798618434, -1.5707963267948966], [4.357977161242462, 1.9789454305499874, -1.5707963267948966], [4.276765501589729, 1.9325255683148304, -1.5707963267948966], [4.205113586762537, 1.8844169790115965, -1.5707963267948966], [4.143517383078229, 1.8347600504206028, -1.5707963267948966], [4.092430968810315, 1.7837346763742954, -1.5707963267948966], [4.052251851673798, 1.731559067420733, -1.5707963267948966], [4.0233068250656, 1.678486197627719, -1.5707963267948966], [4.005839419167331, 1.6247978271708667, -1.5707963267948966], [4.0, 1.5707963267948983, -1.5707963267948966], [4.00583941916733, 1.5167948264189302, -1.5707963267948966], [4.023306825065598, 1.463106455962078, -1.5707963267948966], [4.0522518516737955, 1.4100335861690638, -1.5707963267948966], [4.092430968810312, 1.3578579772155013, -1.5707963267948966], [4.143517383078225, 1.3068326031691937, -1.5707963267948966], [4.205113586762533, 1.2571756745782001, -1.5707963267948966], [4.276765501589724, 1.209067085274966, -1.5707963267948966], [4.357977161242457, 1.1626472230398088, -1.5707963267948966], [4.448224997068317, 1.1180178549713622, -1.5707963267948966], [4.5469709934730975, 1.0752446533090696, -1.5707963267948966], [4.65367421622289, 1.0343608691901667, -1.5707963267948966], [4.767800447827011, 0.995371676259613, -1.5707963267948966], [4.888829861446488, 0.9582587701845945, -1.5707963267948966], [5.016262814322236, 0.9229848998677994, -1.5707963267948966], [5.149623941108992, 0.8894981015070488, -1.5707963267948966], [5.288464782112431, 0.8577354939360443, -1.5707963267948966], [5.432365200605882, 0.8276265655104512, -1.5707963267948966], [5.580933837466073, 0.799095936770315, -1.5707963267948966], [5.733807829697776, 0.7720656201033035, -1.5707963267948966], [5.890651989546061, 0.7464568203004098, -1.5707963267948966], [6.0511576082839, 0.7221913314999889, -1.5707963267948966], [6.215041016996668, 0.6991925897216703, -1.5707963267948966], [6.382042007846671, 0.6773864386974028, -1.5707963267948966], [6.551922194379133, 0.6567016621194349, -1.5707963267948966], [6.72446336868496, 0.6370703292756844, -1.5707963267948966], [6.899465896479495, 0.6184279943725202, -1.5707963267948966], [7.076747177968918, 0.6007137833109946, -1.5707963267948966], [7.2561401922377575, 0.5838703956621157, -1.5707963267948966], [7.437492135272149, 0.5678440442634407, -1.5707963267948966], [7.620663156141443, 0.5525843502907147, -1.5707963267948966], [7.805525191863643, 0.5380442078256256, -1.5707963267948966], [7.99196089871403, 0.524179628782914, -1.5707963267948966], [8.179862675903534, 0.5109495764966111, -1.5707963267948966], [8.369131776415948, 0.4983157942103066, -1.5707963267948966], [8.559677499164343, 0.48624263308750565, -1.5707963267948966], [8.75141645636266, 0.47469688308017566, -1.5707963267948966], [8.944271909999147, 0.4636476090008068, -1.5707963267948966]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[8.94427190999916, 2.677945044588987, 1.5707963267948966], [8.751416456362673, 2.666895770509618, 1.5707963267948966], [8.559677499164353, 2.655350020502288, 1.5707963267948966], [8.36913177641596, 2.6432768593794873, 1.5707963267948966], [8.179862675903546, 2.630643077093183, 1.5707963267948966], [7.9919608987140425, 2.61741302480688, 1.5707963267948966], [7.805525191863655, 2.6035484457641687, 1.5707963267948966], [7.620663156141455, 2.5890083032990794, 1.5707963267948966], [7.437492135272161, 2.5737486093263535, 1.5707963267948966], [7.256140192237769, 2.5577222579276784, 1.5707963267948966], [7.0767471779689295, 2.5408788702787994, 1.5707963267948966], [6.899465896479507, 2.523164659217274, 1.5707963267948966], [6.7244633686849715, 2.50452232431411, 1.5707963267948966], [6.551922194379143, 2.4848909914703596, 1.5707963267948966], [6.382042007846683, 2.4642062148923918, 1.5707963267948966], [6.21504101699668, 2.4424000638681242, 1.5707963267948966], [6.051157608283909, 2.419401322089806, 1.5707963267948966], [5.890651989546071, 2.395135833289385, 1.5707963267948966], [5.733807829697787, 2.3695270334864915, 1.5707963267948966], [5.580933837466084, 2.34249671681948, 1.5707963267948966], [5.432365200605892, 2.313966088079344, 1.5707963267948966], [5.288464782112441, 2.283857159653751, 1.5707963267948966], [5.1496239411090015, 2.2520945520827467, 1.5707963267948966], [5.0162628143222445, 2.2186077537219964, 1.5707963267948966], [4.888829861446497, 2.183333883405201, 1.5707963267948966], [4.767800447827019, 2.1462209773301826, 1.5707963267948966], [4.653674216222898, 2.1072317843996293, 1.5707963267948966], [4.546970993473105, 2.0663480002807266, 1.5707963267948966], [4.4482249970683245, 2.023574798618434, 1.5707963267948966], [4.357977161242462, 1.9789454305499874, 1.5707963267948966], [4.276765501589729, 1.9325255683148304, 1.5707963267948966], [4.205113586762537, 1.8844169790115965, 1.5707963267948966], [4.143517383078229, 1.8347600504206028, 1.5707963267948966], [4.092430968810315, 1.7837346763742954, 1.5707963267948966], [4.052251851673798, 1.731559067420733, 1.5707963267948966], [4.0233068250656, 1.678486197627719, 1.5707963267948966], [4.005839419167331, 1.6247978271708667, 1.5707963267948966], [4.0, 1.5707963267948983, 1.5707963267948966], [4.00583941916733, 1.5167948264189302, 1.5707963267948966], [4.023306825065598, 1.463106455962078, 1.5707963267948966], [4.0522518516737955, 1.4100335861690638, 1.5707963267948966], [4.092430968810312, 1.3578579772155013, 1.5707963267948966], [4.143517383078225, 1.3068326031691937, 1.5707963267948966], [4.205113586762533, 1.2571756745782001, 1.5707963267948966], [4.276765501589724, 1.209067085274966, 1.5707963267948966], [4.357977161242457, 1.1626472230398088, 1.5707963267948966], [4.448224997068317, 1.1180178549713622, 1.5707963267948966], [4.5469709934730975, 1.0752446533090696, 1.5707963267948966], [4.65367421622289, 1.0343608691901667, 1.5707963267948966], [4.767800447827011, 0.995371676259613, 1.5707963267948966], [4.888829861446488, 0.9582587701845945, 1.5707963267948966], [5.016262814322236, 0.9229848998677994, 1.5707963267948966], [5.149623941108992, 0.8894981015070488, 1.5707963267948966], [5.288464782112431, 0.8577354939360443, 1.5707963267948966], [5.432365200605882, 0.8276265655104512, 1.5707963267948966], [5.580933837466073, 0.799095936770315, 1.5707963267948966], [5.733807829697776, 0.7720656201033035, 1.5707963267948966], [5.890651989546061, 0.7464568203004098, 1.5707963267948966], [6.0511576082839, 0.7221913314999889, 1.5707963267948966], [6.215041016996668, 0.6991925897216703, 1.5707963267948966], [6.382042007846671, 0.6773864386974028, 1.5707963267948966], [6.551922194379133, 0.6567016621194349, 1.5707963267948966], [6.72446336868496, 0.6370703292756844, 1.5707963267948966], [6.899465896479495, 0.6184279943725202, 1.5707963267948966], [7.076747177968918, 0.6007137833109946, 1.5707963267948966], [7.2561401922377575, 0.5838703956621157, 1.5707963267948966], [7.437492135272149, 0.5678440442634407, 1.5707963267948966], [7.620663156141443, 0.5525843502907147, 1.5707963267948966], [7.805525191863643, 0.5380442078256256, 1.5707963267948966], [7.99196089871403, 0.524179628782914, 1.5707963267948966], [8.179862675903534, 0.5109495764966111, 1.5707963267948966], [8.369131776415948, 0.4983157942103066, 1.5707963267948966], [8.559677499164343, 0.48624263308750565, 1.5707963267948966], [8.75141645636266, 0.47469688308017566, 1.5707963267948966], [8.944271909999147, 0.4636476090008068, 1.5707963267948966]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[11.313708498984761, 2.356194490192345, 1.5707963267948966], [11.161867674932157, 2.342496716819479, 1.5707963267948966], [11.01217866226754, 2.328423853598924, 1.5707963267948966], [10.864730401211775, 2.3139660880793427, 1.5707963267948966], [10.719615356748577, 2.2991137077860806, 1.5707963267948966], [10.576929564224875, 2.28385715965375, 1.5707963267948966], [10.436772658289446, 2.2681871166646044, 1.5707963267948966], [10.299247882217994, 2.252094552082746, 1.5707963267948966], [10.164462074415706, 2.2355708216122423, 1.5707963267948966], [10.032525628644482, 2.2186077537219955, 1.5707963267948966], [9.903552424301656, 2.201197748268404, 1.5707963267948966], [9.777659722892986, 2.1833338834052003, 1.5707963267948966], [9.65496802670967, 2.165010030595331, 1.5707963267948966], [9.535600895654033, 2.1462209773301817, 1.5707963267948966], [9.419684718180312, 2.12696255691535, 1.5707963267948966], [9.30734843244579, 2.1072317843996284, 1.5707963267948966], [9.198723194024932, 2.087026997406645, 1.5707963267948966], [9.093941986946204, 2.0663480002807257, 1.5707963267948966], [8.993139175388293, 2.0451962095868046, 1.5707963267948966], [8.896449994136646, 2.023574798618433, 1.5707963267948966], [8.804009976865876, 2.0014888381814053, 1.5707963267948966], [8.715954322484922, 1.9789454305499865, 1.5707963267948966], [8.632417201157681, 1.9559538331583715, 1.5707963267948966], [8.553531003179454, 1.9325255683148295, 1.5707963267948966], [8.479425535622738, 1.9086745150351758, 1.5707963267948966], [8.410227173525072, 1.8844169790115957, 1.5707963267948966], [8.346057974321637, 1.8597717367874638, 1.5707963267948966], [8.287034766156456, 1.8347600504206019, 1.5707963267948966], [8.233268222555578, 1.8094056493030983, 1.5707963267948966], [8.184861937620628, 1.7837346763742945, 1.5707963267948966], [8.141911517302804, 1.7577755967138085, 1.5707963267948966], [8.104503703347596, 1.7315590674207322, 1.5707963267948966], [8.07271554706788, 1.705117768747866, 1.5707963267948966], [8.0466136501312, 1.6784861976277181, 1.5707963267948966], [8.026253488981876, 1.651700425950128, 1.5707963267948966], [8.011678838334662, 1.6247978271708656, 1.5707963267948966], [8.002921307382378, 1.5978167759821622, 1.5707963267948966], [8.0, 1.5707963267948974, 1.5707963267948966], [8.002921307382378, 1.5437758776076327, 1.5707963267948966], [8.01167883833466, 1.5167948264189293, 1.5707963267948966], [8.026253488981874, 1.4898922276396669, 1.5707963267948966], [8.046613650131198, 1.4631064559620768, 1.5707963267948966], [8.072715547067878, 1.436474884841929, 1.5707963267948966], [8.104503703347593, 1.410033586169063, 1.5707963267948966], [8.1419115173028, 1.3838170568759864, 1.5707963267948966], [8.184861937620626, 1.3578579772155004, 1.5707963267948966], [8.233268222555575, 1.3321870042866966, 1.5707963267948966], [8.287034766156452, 1.3068326031691928, 1.5707963267948966], [8.346057974321633, 1.2818209168023311, 1.5707963267948966], [8.410227173525067, 1.2571756745781992, 1.5707963267948966], [8.479425535622733, 1.232918138554619, 1.5707963267948966], [8.55353100317945, 1.2090670852749652, 1.5707963267948966], [8.632417201157676, 1.1856388204314232, 1.5707963267948966], [8.715954322484915, 1.1626472230398082, 1.5707963267948966], [8.80400997686587, 1.1401038154083893, 1.5707963267948966], [8.896449994136638, 1.1180178549713613, 1.5707963267948966], [8.993139175388286, 1.09639644400299, 1.5707963267948966], [9.093941986946199, 1.0752446533090687, 1.5707963267948966], [9.198723194024925, 1.0545656561831496, 1.5707963267948966], [9.307348432445783, 1.034360869190166, 1.5707963267948966], [9.419684718180305, 1.0146300966744444, 1.5707963267948966], [9.535600895654026, 0.9953716762596124, 1.5707963267948966], [9.654968026709662, 0.9765826229944635, 1.5707963267948966], [9.77765972289298, 0.958258770184594, 1.5707963267948966], [9.903552424301648, 0.9403949053213901, 1.5707963267948966], [10.032525628644475, 0.922984899867799, 1.5707963267948966], [10.164462074415699, 0.9060218319775518, 1.5707963267948966], [10.299247882217985, 0.8894981015070484, 1.5707963267948966], [10.436772658289437, 0.87340553692519, 1.5707963267948966], [10.576929564224864, 0.8577354939360441, 1.5707963267948966], [10.719615356748568, 0.8424789458037137, 1.5707963267948966], [10.864730401211764, 0.8276265655104511, 1.5707963267948966], [11.012178662267532, 0.8131687999908702, 1.5707963267948966], [11.161867674932148, 0.799095936770315, 1.5707963267948966], [11.31370849898475, 0.7853981633974492, 1.5707963267948966]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 2.3005239830218627, -1.1071487177940904], [11.85695112550842, 2.286931701737962, -1.1071487177940904], [11.716146076662774, 2.2730100912812796, -1.1071487177940904], [11.577666720501819, 2.2587526317148106, -1.1071487177940904], [11.441597501950499, 2.2441530311072935, -1.1071487177940904], [11.30802542474035, 2.229205275549252, -1.1071487177940904], [11.177040016069467, 2.2139036834011327, -1.1071487177940904], [11.048733273066729, 2.198242963801352, -1.1071487177940904], [10.923199589050602, 2.1822182793977754, -1.1071487177940904], [10.800535657522193, 2.1658253131893535, -1.1071487177940904], [10.6808403518118, 2.149060339274807, -1.1071487177940904], [10.564214578315028, 2.1319202972019227, -1.1071487177940904], [10.450761101316306, 2.1144028694943424, -1.1071487177940904], [10.340584337511977, 2.0965065618032828, -1.1071487177940904], [10.233790118520103, 2.078230784990687, -1.1071487177940904], [10.130485419907139, 2.059575938299985, -1.1071487177940904], [10.03077805557935, 2.0405434926137787, -1.1071487177940904], [9.934776336784996, 2.0211360726384564, -1.1071487177940904], [9.842588695455259, 2.001357536698758, -1.1071487177940904], [9.754323272179056, 1.9812130526768141, -1.1071487177940904], [9.670087469757132, 1.9607091684969695, -1.1071487177940904], [9.58998747400869, 1.939853875447661, -1.1071487177940904], [9.51412774429916, 1.918656662552957, -1.1071487177940904], [9.442610477106006, 1.897128560167694, -1.1071487177940904], [9.375535046821113, 1.8752821709797194, -1.1071487177940904], [9.312997428878607, 1.8531316866681318, -1.1071487177940904], [9.25508961116735, 1.8306928885937204, -1.1071487177940904], [9.201899000504504, 1.8079831310912229, -1.1071487177940904], [9.153507831675434, 1.7850213061940345, -1.1071487177940904], [9.109992587149065, 1.7618277889489395, -1.1071487177940904], [9.071423436020835, 1.738424362866051, -1.1071487177940904], [9.037863700984591, 1.714834125488371, -1.1071487177940904], [9.00936936216245, 1.6910813745433908, -1.1071487177940904], [8.985988606407073, 1.667191475639725, -1.1071487177940904], [8.967761430222914, 1.6431907129758951, -1.1071487177940904], [8.954719303731382, 1.6191061250151766, -1.1071487177940904], [8.946884902140793, 1.5949653275284048, -1.1071487177940904], [8.94427190999916, 1.5707963267948974, -1.1071487177940904], [8.946884902140793, 1.5466273260613899, -1.1071487177940904], [8.95471930373138, 1.5224865285746183, -1.1071487177940904], [8.967761430222913, 1.4984019406138998, -1.1071487177940904], [8.985988606407071, 1.4744011779500696, -1.1071487177940904], [9.009369362162449, 1.450511279046404, -1.1071487177940904], [9.03786370098459, 1.4267585281014237, -1.1071487177940904], [9.071423436020831, 1.403168290723744, -1.1071487177940904], [9.109992587149062, 1.3797648646408553, -1.1071487177940904], [9.15350783167543, 1.3565713473957601, -1.1071487177940904], [9.2018990005045, 1.333609522498572, -1.1071487177940904], [9.255089611167346, 1.3108997649960743, -1.1071487177940904], [9.312997428878601, 1.288460966921663, -1.1071487177940904], [9.375535046821108, 1.2663104826100753, -1.1071487177940904], [9.442610477106001, 1.2444640934221005, -1.1071487177940904], [9.514127744299154, 1.2229359910368374, -1.1071487177940904], [9.589987474008685, 1.2017387781421336, -1.1071487177940904], [9.670087469757126, 1.1808834850928251, -1.1071487177940904], [9.754323272179048, 1.1603796009129803, -1.1071487177940904], [9.842588695455252, 1.1402351168910363, -1.1071487177940904], [9.934776336784989, 1.1204565809513383, -1.1071487177940904], [10.030778055579344, 1.1010491609760154, -1.1071487177940904], [10.130485419907131, 1.0820167152898092, -1.1071487177940904], [10.233790118520096, 1.063361868599107, -1.1071487177940904], [10.34058433751197, 1.045086091786512, -1.1071487177940904], [10.4507611013163, 1.0271897840954516, -1.1071487177940904], [10.56421457831502, 1.0096723563878716, -1.1071487177940904], [10.680840351811792, 0.9925323143149873, -1.1071487177940904], [10.800535657522186, 0.9757673404004409, -1.1071487177940904], [10.923199589050594, 0.959374374192019, -1.1071487177940904], [11.048733273066722, 0.9433496897884421, -1.1071487177940904], [11.177040016069459, 0.9276889701886616, -1.1071487177940904], [11.308025424740341, 0.9123873780405417, -1.1071487177940904], [11.441597501950492, 0.8974396224825008, -1.1071487177940904], [11.577666720501812, 0.8828400218749836, -1.1071487177940904], [11.716146076662765, 0.8685825623085146, -1.1071487177940904], [11.856951125508411, 0.8546609518518322, -1.1071487177940904], [11.999999999999991, 0.8410686705679312, -1.1071487177940904]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.797958971132712, 2.5261129449194057, -0.7853981633974483], [9.62222895137584, 2.5131392365154035, -0.7853981633974483], [9.448178601704168, 2.499685200881445, -0.7853981633974483], [9.27590247312979, 2.485728811336716, -0.7853981633974483], [9.10550127102511, 2.47124714960049, -0.7853981633974483], [8.9370822423526, 2.4562164224499328, -0.7853981633974483], [8.770759574906734, 2.440611992193308, -0.7853981633974483], [8.606654805403307, 2.4244084238312826, -0.7853981633974483], [8.444897232189108, 2.4075795521815815, -0.7853981633974483], [8.285624327074476, 2.3900985726620885, -0.7853981633974483], [8.128982139289716, 2.3719381598505067, -0.7853981633974483], [7.975125682814269, 2.3530706183441845, -0.7853981633974483], [7.824219296312318, 2.3334680708027733, -0.7853981633974483], [7.67643696262778, 2.3131026883299337, -0.7853981633974483], [7.5319625722596175, 2.2919469684877085, -0.7853981633974483], [7.390990112491771, 2.2699740661744787, -0.7853981633974483], [7.253723760958384, 2.2471581822570403, -0.7853981633974483], [7.120377859491945, 2.2234750141383546, -0.7853981633974483], [6.99117674128638, 2.198902271263524, -0.7853981633974483], [6.866354381924509, 2.1734202568107666, -0.7853981633974483], [6.746153842950358, 2.147012514378947, -0.7853981633974483], [6.630826475760287, 2.1196665352835398, -0.7853981633974483], [6.520630854054154, 2.0913745180606167, -0.7853981633974483], [6.415831405387157, 2.0621341669660005, -0.7853981633974483], [6.316696716969319, 2.031949510744935, -0.7853981633974483], [6.223497498215897, 2.000831716954082, -0.7853981633974483], [6.136504193002544, 1.9687998710005121, -0.7853981633974483], [6.055984248285806, 1.935881683333368, -0.7853981633974483], [5.982199062597591, 1.9021140835407633, -0.7853981633974483], [5.915400657428955, 1.8675436572347608, -0.7853981633974483], [5.855828135762527, 1.832226881357067, -0.7853981633974483], [5.8037040136084554, 1.7962301166437902, -0.7853981633974483], [5.75923053053717, 1.7596293229798223, -0.7853981633974483], [5.722586061779913, 1.7225094744298175, -0.7853981633974483], [5.693921765303219, 1.684963665550483, -0.7853981633974483], [5.6733586003900225, 1.6470919183105617, -0.7853981633974483], [5.660984848253426, 1.6089997181716602, -0.7853981633974483], [5.656854249492381, 1.570796326794898, -0.7853981633974483], [5.660984848253425, 1.5325929354181356, -0.7853981633974483], [5.673358600390022, 1.494500735279234, -0.7853981633974483], [5.693921765303218, 1.4566289880393126, -0.7853981633974483], [5.722586061779911, 1.419083179159978, -0.7853981633974483], [5.759230530537167, 1.3819633306099735, -0.7853981633974483], [5.803704013608452, 1.3453625369460054, -0.7853981633974483], [5.855828135762524, 1.3093657722327285, -0.7853981633974483], [5.91540065742895, 1.2740489963550348, -0.7853981633974483], [5.982199062597585, 1.2394785700490323, -0.7853981633974483], [6.0559842482857995, 1.2057109702564273, -0.7853981633974483], [6.136504193002538, 1.1727927825892834, -0.7853981633974483], [6.223497498215891, 1.140760936635713, -0.7853981633974483], [6.316696716969312, 1.1096431428448603, -0.7853981633974483], [6.415831405387149, 1.0794584866237946, -0.7853981633974483], [6.520630854054146, 1.0502181355291782, -0.7853981633974483], [6.630826475760279, 1.0219261183062556, -0.7853981633974483], [6.746153842950351, 0.9945801392108478, -0.7853981633974483], [6.8663543819245, 0.9681723967790282, -0.7853981633974483], [6.99117674128637, 0.942690382326271, -0.7853981633974483], [7.120377859491937, 0.9181176394514401, -0.7853981633974483], [7.253723760958375, 0.8944344713327546, -0.7853981633974483], [7.390990112491761, 0.8716185874153158, -0.7853981633974483], [7.531962572259608, 0.8496456851020862, -0.7853981633974483], [7.67643696262777, 0.8284899652598607, -0.7853981633974483], [7.824219296312309, 0.8081245827870214, -0.7853981633974483], [7.97512568281426, 0.7885220352456098, -0.7853981633974483], [8.128982139289706, 0.7696544937392877, -0.7853981633974483], [8.285624327074466, 0.7514940809277056, -0.7853981633974483], [8.444897232189097, 0.7340131014082131, -0.7853981633974483], [8.606654805403297, 0.7171842297585117, -0.7853981633974483], [8.770759574906723, 0.7009806613964862, -0.7853981633974483], [8.93708224235259, 0.6853762311398612, -0.7853981633974483], [9.1055012710251, 0.6703455039893037, -0.7853981633974483], [9.27590247312978, 0.6558638422530779, -0.7853981633974483], [9.448178601704157, 0.6419074527083485, -0.7853981633974483], [9.62222895137583, 0.6284534170743906, -0.7853981633974483], [9.7979589711327, 0.6154797086703881, -0.7853981633974483]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[9.797958971132712, 2.5261129449194057, 0.7853981633974483], [9.62222895137584, 2.5131392365154035, 0.7853981633974483], [9.448178601704168, 2.499685200881445, 0.7853981633974483], [9.27590247312979, 2.485728811336716, 0.7853981633974483], [9.10550127102511, 2.47124714960049, 0.7853981633974483], [8.9370822423526, 2.4562164224499328, 0.7853981633974483], [8.770759574906734, 2.440611992193308, 0.7853981633974483], [8.606654805403307, 2.4244084238312826, 0.7853981633974483], [8.444897232189108, 2.4075795521815815, 0.7853981633974483], [8.285624327074476, 2.3900985726620885, 0.7853981633974483], [8.128982139289716, 2.3719381598505067, 0.7853981633974483], [7.975125682814269, 2.3530706183441845, 0.7853981633974483], [7.824219296312318, 2.3334680708027733, 0.7853981633974483], [7.67643696262778, 2.3131026883299337, 0.7853981633974483], [7.5319625722596175, 2.2919469684877085, 0.7853981633974483], [7.390990112491771, 2.2699740661744787, 0.7853981633974483], [7.253723760958384, 2.2471581822570403, 0.7853981633974483], [7.120377859491945, 2.2234750141383546, 0.7853981633974483], [6.99117674128638, 2.198902271263524, 0.7853981633974483], [6.866354381924509, 2.1734202568107666, 0.7853981633974483], [6.746153842950358, 2.147012514378947, 0.7853981633974483], [6.630826475760287, 2.1196665352835398, 0.7853981633974483], [6.520630854054154, 2.0913745180606167, 0.7853981633974483], [6.415831405387157, 2.0621341669660005, 0.7853981633974483], [6.316696716969319, 2.031949510744935, 0.7853981633974483], [6.223497498215897, 2.000831716954082, 0.7853981633974483], [6.136504193002544, 1.9687998710005121, 0.7853981633974483], [6.055984248285806, 1.935881683333368, 0.7853981633974483], [5.982199062597591, 1.9021140835407633, 0.7853981633974483], [5.915400657428955, 1.8675436572347608, 0.7853981633974483], [5.855828135762527, 1.832226881357067, 0.7853981633974483], [5.8037040136084554, 1.7962301166437902, 0.7853981633974483], [5.75923053053717, 1.7596293229798223, 0.7853981633974483], [5.722586061779913, 1.7225094744298175, 0.7853981633974483], [5.693921765303219, 1.684963665550483, 0.7853981633974483], [5.6733586003900225, 1.6470919183105617, 0.7853981633974483], [5.660984848253426, 1.6089997181716602, 0.7853981633974483], [5.656854249492381, 1.570796326794898, 0.7853981633974483], [5.660984848253425, 1.5325929354181356, 0.7853981633974483], [5.673358600390022, 1.494500735279234, 0.7853981633974483], [5.693921765303218, 1.4566289880393126, 0.7853981633974483], [5.722586061779911, 1.419083179159978, 0.7853981633974483], [5.759230530537167, 1.3819633306099735, 0.7853981633974483], [5.803704013608452, 1.3453625369460054, 0.7853981633974483], [5.855828135762524, 1.3093657722327285, 0.7853981633974483], [5.91540065742895, 1.2740489963550348, 0.7853981633974483], [5.982199062597585, 1.2394785700490323, 0.7853981633974483], [6.0559842482857995, 1.2057109702564273, 0.7853981633974483], [6.136504193002538, 1.1727927825892834, 0.7853981633974483], [6.223497498215891, 1.140760936635713, 0.7853981633974483], [6.316696716969312, 1.1096431428448603, 0.7853981633974483], [6.415831405387149, 1.0794584866237946, 0.7853981633974483], [6.520630854054146, 1.0502181355291782, 0.7853981633974483], [6.630826475760279, 1.0219261183062556, 0.7853981633974483], [6.746153842950351, 0.9945801392108478, 0.7853981633974483], [6.8663543819245, 0.9681723967790282, 0.7853981633974483], [6.99117674128637, 0.942690382326271, 0.7853981633974483], [7.120377859491937, 0.9181176394514401, 0.7853981633974483], [7.253723760958375, 0.8944344713327546, 0.7853981633974483], [7.390990112491761, 0.8716185874153158, 0.7853981633974483], [7.531962572259608, 0.8496456851020862, 0.7853981633974483], [7.67643696262777, 0.8284899652598607, 0.7853981633974483], [7.824219296312309, 0.8081245827870214, 0.7853981633974483], [7.97512568281426, 0.7885220352456098, 0.7853981633974483], [8.128982139289706, 0.7696544937392877, 0.7853981633974483], [8.285624327074466, 0.7514940809277056, 0.7853981633974483], [8.444897232189097, 0.7340131014082131, 0.7853981633974483], [8.606654805403297, 0.7171842297585117, 0.7853981633974483], [8.770759574906723, 0.7009806613964862, 0.7853981633974483], [8.93708224235259, 0.6853762311398612, 0.7853981633974483], [9.1055012710251, 0.6703455039893037, 0.7853981633974483], [9.27590247312978, 0.6558638422530779, 0.7853981633974483], [9.448178601704157, 0.6419074527083485, 0.7853981633974483], [9.62222895137583, 0.6284534170743906, 0.7853981633974483], [9.7979589711327, 0.6154797086703881, 0.7853981633974483]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 2.3005239830218627, 1.1071487177940904], [11.85695112550842, 2.286931701737962, 1.1071487177940904], [11.716146076662774, 2.2730100912812796, 1.1071487177940904], [11.577666720501819, 2.2587526317148106, 1.1071487177940904], [11.441597501950499, 2.2441530311072935, 1.1071487177940904], [11.30802542474035, 2.229205275549252, 1.1071487177940904], [11.177040016069467, 2.2139036834011327, 1.1071487177940904], [11.048733273066729, 2.198242963801352, 1.1071487177940904], [10.923199589050602, 2.1822182793977754, 1.1071487177940904], [10.800535657522193, 2.1658253131893535, 1.1071487177940904], [10.6808403518118, 2.149060339274807, 1.1071487177940904], [10.564214578315028, 2.1319202972019227, 1.1071487177940904], [10.450761101316306, 2.1144028694943424, 1.1071487177940904], [10.340584337511977, 2.0965065618032828, 1.1071487177940904], [10.233790118520103, 2.078230784990687, 1.1071487177940904], [10.130485419907139, 2.059575938299985, 1.1071487177940904], [10.03077805557935, 2.0405434926137787, 1.1071487177940904], [9.934776336784996, 2.0211360726384564, 1.1071487177940904], [9.842588695455259, 2.001357536698758, 1.1071487177940904], [9.754323272179056, 1.9812130526768141, 1.1071487177940904], [9.670087469757132, 1.9607091684969695, 1.1071487177940904], [9.58998747400869, 1.939853875447661, 1.1071487177940904], [9.51412774429916, 1.918656662552957, 1.1071487177940904], [9.442610477106006, 1.897128560167694, 1.1071487177940904], [9.375535046821113, 1.8752821709797194, 1.1071487177940904], [9.312997428878607, 1.8531316866681318, 1.1071487177940904], [9.25508961116735, 1.8306928885937204, 1.1071487177940904], [9.201899000504504, 1.8079831310912229, 1.1071487177940904], [9.153507831675434, 1.7850213061940345, 1.1071487177940904], [9.109992587149065, 1.7618277889489395, 1.1071487177940904], [9.071423436020835, 1.738424362866051, 1.1071487177940904], [9.037863700984591, 1.714834125488371, 1.1071487177940904], [9.00936936216245, 1.6910813745433908, 1.1071487177940904], [8.985988606407073, 1.667191475639725, 1.1071487177940904], [8.967761430222914, 1.6431907129758951, 1.1071487177940904], [8.954719303731382, 1.6191061250151766, 1.1071487177940904], [8.946884902140793, 1.5949653275284048, 1.1071487177940904], [8.94427190999916, 1.5707963267948974, 1.1071487177940904], [8.946884902140793, 1.5466273260613899, 1.1071487177940904], [8.95471930373138, 1.5224865285746183, 1.1071487177940904], [8.967761430222913, 1.4984019406138998, 1.1071487177940904], [8.985988606407071, 1.4744011779500696, 1.1071487177940904], [9.009369362162449, 1.450511279046404, 1.1071487177940904], [9.03786370098459, 1.4267585281014237, 1.1071487177940904], [9.071423436020831, 1.403168290723744, 1.1071487177940904], [9.109992587149062, 1.3797648646408553, 1.1071487177940904], [9.15350783167543, 1.3565713473957601, 1.1071487177940904], [9.2018990005045, 1.333609522498572, 1.1071487177940904], [9.255089611167346, 1.3108997649960743, 1.1071487177940904], [9.312997428878601, 1.288460966921663, 1.1071487177940904], [9.375535046821108, 1.2663104826100753, 1.1071487177940904], [9.442610477106001, 1.2444640934221005, 1.1071487177940904], [9.514127744299154, 1.2229359910368374, 1.1071487177940904], [9.589987474008685, 1.2017387781421336, 1.1071487177940904], [9.670087469757126, 1.1808834850928251, 1.1071487177940904], [9.754323272179048, 1.1603796009129803, 1.1071487177940904], [9.842588695455252, 1.1402351168910363, 1.1071487177940904], [9.934776336784989, 1.1204565809513383, 1.1071487177940904], [10.030778055579344, 1.1010491609760154, 1.1071487177940904], [10.130485419907131, 1.0820167152898092, 1.1071487177940904], [10.233790118520096, 1.063361868599107, 1.1071487177940904], [10.34058433751197, 1.045086091786512, 1.1071487177940904], [10.4507611013163, 1.0271897840954516, 1.1071487177940904], [10.56421457831502, 1.0096723563878716, 1.1071487177940904], [10.680840351811792, 0.9925323143149873, 1.1071487177940904], [10.800535657522186, 0.9757673404004409, 1.1071487177940904], [10.923199589050594, 0.959374374192019, 1.1071487177940904], [11.048733273066722, 0.9433496897884421, 1.1071487177940904], [11.177040016069459, 0.9276889701886616, 1.1071487177940904], [11.308025424740341, 0.9123873780405417, 1.1071487177940904], [11.441597501950492, 0.8974396224825008, 1.1071487177940904], [11.577666720501812, 0.8828400218749836, 1.1071487177940904], [11.716146076662765, 0.8685825623085146, 1.1071487177940904], [11.856951125508411, 0.8546609518518322, 1.1071487177940904], [11.999999999999991, 0.8410686705679312, 1.1071487177940904]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[13.856406460551018, 2.186276035465284, -0.7853981633974483], [13.73270876384901, 2.1734202568107657, -0.7853981633974483], [13.611321717221312, 2.160332984581853, -0.7853981633974483], [13.492307685900709, 2.1470125143789462, -0.7853981633974483], [13.375730013597012, 2.1334574115376768, -0.7853981633974483], [13.261652951520567, 2.119666535283539, -0.7853981633974483], [13.150141577976191, 2.10563906351209, -0.7853981633974483], [13.041261708108301, 2.091374518060616, -0.7853981633974483], [12.93507979342359, 2.0768727903142796, -0.7853981633974483], [12.831662810774306, 2.0621341669659996, -0.7853981633974483], [12.731078140553974, 2.0471593557250514, -0.7853981633974483], [12.633393433938634, 2.0319495107449344, -0.7853981633974483], [12.538676469100956, 2.0165062575171016, -0.7853981633974483], [12.44699499643179, 2.0008317169540817, -0.7853981633974483], [12.358416572923884, 1.9849285283641311, -0.7853981633974483], [12.273008386005085, 1.9687998710005112, -0.7853981633974483], [12.190837067252284, 1.9524494838525142, -0.7853981633974483], [12.111968496571608, 1.9358816833333674, -0.7853981633974483], [12.036467597592893, 1.9191013785128537, -0.7853981633974483], [11.96439812519518, 1.9021140835407626, -0.7853981633974483], [11.89582244625204, 1.8849259269118748, -0.7853981633974483], [11.830801314857908, 1.8675436572347601, -0.7853981633974483], [11.769393643465367, 1.8499746451858146, -0.7853981633974483], [11.711656271525055, 1.8322268813570664, -0.7853981633974483], [11.657643733369577, 1.8143089697415857, -0.7853981633974483], [11.60740802721691, 1.7962301166437895, -0.7853981633974483], [11.560998387282035, 1.7780001148533116, -0.7853981633974483], [11.518461061074339, 1.7596293229798217, -0.7853981633974483], [11.479839094017978, 1.7411286399114165, -0.7853981633974483], [11.445172123559825, 1.7225094744298168, -0.7853981633974483], [11.414496184921525, 1.7037837100902067, -0.7853981633974483], [11.387843530606437, 1.6849636655504823, -0.7853981633974483], [11.36524246568772, 1.6660620506120922, -0.7853981633974483], [11.346717200780045, 1.647091918310561, -0.7853981633974483], [11.332287724435597, 1.628066613466131, -0.7853981633974483], [11.32196969650685, 1.6089997181716595, -0.7853981633974483], [11.315774363787698, 1.5899049947540134, -0.7853981633974483], [11.313708498984761, 1.5707963267948972, -0.7853981633974483], [11.315774363787696, 1.551687658835781, -0.7853981633974483], [11.32196969650685, 1.532592935418135, -0.7853981633974483], [11.332287724435597, 1.5135260401236634, -0.7853981633974483], [11.346717200780043, 1.4945007352792334, -0.7853981633974483], [11.365242465687716, 1.4755306029777022, -0.7853981633974483], [11.387843530606435, 1.4566289880393122, -0.7853981633974483], [11.414496184921523, 1.4378089434995878, -0.7853981633974483], [11.445172123559823, 1.4190831791599776, -0.7853981633974483], [11.479839094017974, 1.400464013678378, -0.7853981633974483], [11.518461061074337, 1.3819633306099728, -0.7853981633974483], [11.560998387282032, 1.363592538736483, -0.7853981633974483], [11.607408027216906, 1.3453625369460047, -0.7853981633974483], [11.657643733369573, 1.3272836838482087, -0.7853981633974483], [11.711656271525051, 1.3093657722327279, -0.7853981633974483], [11.769393643465364, 1.29161800840398, -0.7853981633974483], [11.830801314857903, 1.2740489963550343, -0.7853981633974483], [11.895822446252035, 1.2566667266779197, -0.7853981633974483], [11.964398125195174, 1.2394785700490316, -0.7853981633974483], [12.036467597592889, 1.2224912750769406, -0.7853981633974483], [12.111968496571603, 1.2057109702564268, -0.7853981633974483], [12.190837067252277, 1.1891431697372798, -0.7853981633974483], [12.273008386005078, 1.1727927825892828, -0.7853981633974483], [12.358416572923877, 1.1566641252256629, -0.7853981633974483], [12.446994996431783, 1.1407609366357125, -0.7853981633974483], [12.53867646910095, 1.1250863960726925, -0.7853981633974483], [12.633393433938627, 1.1096431428448599, -0.7853981633974483], [12.731078140553967, 1.0944332978647429, -0.7853981633974483], [12.831662810774299, 1.0794584866237942, -0.7853981633974483], [12.935079793423583, 1.0647198632755148, -0.7853981633974483], [13.041261708108294, 1.050218135529178, -0.7853981633974483], [13.150141577976184, 1.0359535900777044, -0.7853981633974483], [13.26165295152056, 1.0219261183062553, -0.7853981633974483], [13.375730013597003, 1.0081352420521172, -0.7853981633974483], [13.492307685900702, 0.9945801392108478, -0.7853981633974483], [13.611321717221305, 0.9812596690079414, -0.7853981633974483], [13.732708763849002, 0.9681723967790282, -0.7853981633974483], [13.85640646055101, 0.9553166181245101, -0.7853981633974483]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 2.3005239830218627, -0.4636476090008061], [11.85695112550842, 2.286931701737962, -0.4636476090008061], [11.716146076662774, 2.2730100912812796, -0.4636476090008061], [11.577666720501819, 2.2587526317148106, -0.4636476090008061], [11.441597501950499, 2.2441530311072935, -0.4636476090008061], [11.30802542474035, 2.229205275549252, -0.4636476090008061], [11.177040016069467, 2.2139036834011327, -0.4636476090008061], [11.048733273066729, 2.198242963801352, -0.4636476090008061], [10.923199589050602, 2.1822182793977754, -0.4636476090008061], [10.800535657522193, 2.1658253131893535, -0.4636476090008061], [10.6808403518118, 2.149060339274807, -0.4636476090008061], [10.564214578315028, 2.1319202972019227, -0.4636476090008061], [10.450761101316306, 2.1144028694943424, -0.4636476090008061], [10.340584337511977, 2.0965065618032828, -0.4636476090008061], [10.233790118520103, 2.078230784990687, -0.4636476090008061], [10.130485419907139, 2.059575938299985, -0.4636476090008061], [10.03077805557935, 2.0405434926137787, -0.4636476090008061], [9.934776336784996, 2.0211360726384564, -0.4636476090008061], [9.842588695455259, 2.001357536698758, -0.4636476090008061], [9.754323272179056, 1.9812130526768141, -0.4636476090008061], [9.670087469757132, 1.9607091684969695, -0.4636476090008061], [9.58998747400869, 1.939853875447661, -0.4636476090008061], [9.51412774429916, 1.918656662552957, -0.4636476090008061], [9.442610477106006, 1.897128560167694, -0.4636476090008061], [9.375535046821113, 1.8752821709797194, -0.4636476090008061], [9.312997428878607, 1.8531316866681318, -0.4636476090008061], [9.25508961116735, 1.8306928885937204, -0.4636476090008061], [9.201899000504504, 1.8079831310912229, -0.4636476090008061], [9.153507831675434, 1.7850213061940345, -0.4636476090008061], [9.109992587149065, 1.7618277889489395, -0.4636476090008061], [9.071423436020835, 1.738424362866051, -0.4636476090008061], [9.037863700984591, 1.714834125488371, -0.4636476090008061], [9.00936936216245, 1.6910813745433908, -0.4636476090008061], [8.985988606407073, 1.667191475639725, -0.4636476090008061], [8.967761430222914, 1.6431907129758951, -0.4636476090008061], [8.954719303731382, 1.6191061250151766, -0.4636476090008061], [8.946884902140793, 1.5949653275284048, -0.4636476090008061], [8.94427190999916, 1.5707963267948974, -0.4636476090008061], [8.946884902140793, 1.5466273260613899, -0.4636476090008061], [8.95471930373138, 1.5224865285746183, -0.4636476090008061], [8.967761430222913, 1.4984019406138998, -0.4636476090008061], [8.985988606407071, 1.4744011779500696, -0.4636476090008061], [9.009369362162449, 1.450511279046404, -0.4636476090008061], [9.03786370098459, 1.4267585281014237, -0.4636476090008061], [9.071423436020831, 1.403168290723744, -0.4636476090008061], [9.109992587149062, 1.3797648646408553, -0.4636476090008061], [9.15350783167543, 1.3565713473957601, -0.4636476090008061], [9.2018990005045, 1.333609522498572, -0.4636476090008061], [9.255089611167346, 1.3108997649960743, -0.4636476090008061], [9.312997428878601, 1.288460966921663, -0.4636476090008061], [9.375535046821108, 1.2663104826100753, -0.4636476090008061], [9.442610477106001, 1.2444640934221005, -0.4636476090008061], [9.514127744299154, 1.2229359910368374, -0.4636476090008061], [9.589987474008685, 1.2017387781421336, -0.4636476090008061], [9.670087469757126, 1.1808834850928251, -0.4636476090008061], [9.754323272179048, 1.1603796009129803, -0.4636476090008061], [9.842588695455252, 1.1402351168910363, -0.4636476090008061], [9.934776336784989, 1.1204565809513383, -0.4636476090008061], [10.030778055579344, 1.1010491609760154, -0.4636476090008061], [10.130485419907131, 1.0820167152898092, -0.4636476090008061], [10.233790118520096, 1.063361868599107, -0.4636476090008061], [10.34058433751197, 1.045086091786512, -0.4636476090008061], [10.4507611013163, 1.0271897840954516, -0.4636476090008061], [10.56421457831502, 1.0096723563878716, -0.4636476090008061], [10.680840351811792, 0.9925323143149873, -0.4636476090008061], [10.800535657522186, 0.9757673404004409, -0.4636476090008061], [10.923199589050594, 0.959374374192019, -0.4636476090008061], [11.048733273066722, 0.9433496897884421, -0.4636476090008061], [11.177040016069459, 0.9276889701886616, -0.4636476090008061], [11.308025424740341, 0.9123873780405417, -0.4636476090008061], [11.441597501950492, 0.8974396224825008, -0.4636476090008061], [11.577666720501812, 0.8828400218749836, -0.4636476090008061], [11.716146076662765, 0.8685825623085146, -0.4636476090008061], [11.856951125508411, 0.8546609518518322, -0.4636476090008061], [11.999999999999991, 0.8410686705679312, -0.4636476090008061]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[12.0, 2.3005239830218627, 0.4636476090008061], [11.85695112550842, 2.286931701737962, 0.4636476090008061], [11.716146076662774, 2.2730100912812796, 0.4636476090008061], [11.577666720501819, 2.2587526317148106, 0.4636476090008061], [11.441597501950499, 2.2441530311072935, 0.4636476090008061], [11.30802542474035, 2.229205275549252, 0.4636476090008061], [11.177040016069467, 2.2139036834011327, 0.4636476090008061], [11.048733273066729, 2.198242963801352, 0.4636476090008061], [10.923199589050602, 2.1822182793977754, 0.4636476090008061], [10.800535657522193, 2.1658253131893535, 0.4636476090008061], [10.6808403518118, 2.149060339274807, 0.4636476090008061], [10.564214578315028, 2.1319202972019227, 0.4636476090008061], [10.450761101316306, 2.1144028694943424, 0.4636476090008061], [10.340584337511977, 2.0965065618032828, 0.4636476090008061], [10.233790118520103, 2.078230784990687, 0.4636476090008061], [10.130485419907139, 2.059575938299985, 0.4636476090008061], [10.03077805557935, 2.0405434926137787, 0.4636476090008061], [9.934776336784996, 2.0211360726384564, 0.4636476090008061], [9.842588695455259, 2.001357536698758, 0.4636476090008061], [9.754323272179056, 1.9812130526768141, 0.4636476090008061], [9.670087469757132, 1.9607091684969695, 0.4636476090008061], [9.58998747400869, 1.939853875447661, 0.4636476090008061], [9.51412774429916, 1.918656662552957, 0.4636476090008061], [9.442610477106006, 1.897128560167694, 0.4636476090008061], [9.375535046821113, 1.8752821709797194, 0.4636476090008061], [9.312997428878607, 1.8531316866681318, 0.4636476090008061], [9.25508961116735, 1.8306928885937204, 0.4636476090008061], [9.201899000504504, 1.8079831310912229, 0.4636476090008061], [9.153507831675434, 1.7850213061940345, 0.4636476090008061], [9.109992587149065, 1.7618277889489395, 0.4636476090008061], [9.071423436020835, 1.738424362866051, 0.4636476090008061], [9.037863700984591, 1.714834125488371, 0.4636476090008061], [9.00936936216245, 1.6910813745433908, 0.4636476090008061], [8.985988606407073, 1.667191475639725, 0.4636476090008061], [8.967761430222914, 1.6431907129758951, 0.4636476090008061], [8.954719303731382, 1.6191061250151766, 0.4636476090008061], [8.946884902140793, 1.5949653275284048, 0.4636476090008061], [8.94427190999916, 1.5707963267948974, 0.4636476090008061], [8.946884902140793, 1.5466273260613899, 0.4636476090008061], [8.95471930373138, 1.5224865285746183, 0.4636476090008061], [8.967761430222913, 1.4984019406138998, 0.4636476090008061], [8.985988606407071, 1.4744011779500696, 0.4636476090008061], [9.009369362162449, 1.450511279046404, 0.4636476090008061], [9.03786370098459, 1.4267585281014237, 0.4636476090008061], [9.071423436020831, 1.403168290723744, 0.4636476090008061], [9.109992587149062, 1.3797648646408553, 0.4636476090008061], [9.15350783167543, 1.3565713473957601, 0.4636476090008061], [9.2018990005045, 1.333609522498572, 0.4636476090008061], [9.255089611167346, 1.3108997649960743, 0.4636476090008061], [9.312997428878601, 1.288460966921663, 0.4636476090008061], [9.375535046821108, 1.2663104826100753, 0.4636476090008061], [9.442610477106001, 1.2444640934221005, 0.4636476090008061], [9.514127744299154, 1.2229359910368374, 0.4636476090008061], [9.589987474008685, 1.2017387781421336, 0.4636476090008061], [9.670087469757126, 1.1808834850928251, 0.4636476090008061], [9.754323272179048, 1.1603796009129803, 0.4636476090008061], [9.842588695455252, 1.1402351168910363, 0.4636476090008061], [9.934776336784989, 1.1204565809513383, 0.4636476090008061], [10.030778055579344, 1.1010491609760154, 0.4636476090008061], [10.130485419907131, 1.0820167152898092, 0.4636476090008061], [10.233790118520096, 1.063361868599107, 0.4636476090008061], [10.34058433751197, 1.045086091786512, 0.4636476090008061], [10.4507611013163, 1.0271897840954516, 0.4636476090008061], [10.56421457831502, 1.0096723563878716, 0.4636476090008061], [10.680840351811792, 0.9925323143149873, 0.4636476090008061], [10.800535657522186, 0.9757673404004409, 0.4636476090008061], [10.923199589050594, 0.959374374192019, 0.4636476090008061], [11.048733273066722, 0.9433496897884421, 0.4636476090008061], [11.177040016069459, 0.9276889701886616, 0.4636476090008061], [11.308025424740341, 0.9123873780405417, 0.4636476090008061], [11.441597501950492, 0.8974396224825008, 0.4636476090008061], [11.577666720501812, 0.8828400218749836, 0.4636476090008061], [11.716146076662765, 0.8685825623085146, 0.4636476090008061], [11.856951125508411, 0.8546609518518322, 0.4636476090008061], [11.999999999999991, 0.8410686705679312, 0.4636476090008061]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[13.856406460551018, 2.186276035465284, 0.7853981633974483], [13.73270876384901, 2.1734202568107657, 0.7853981633974483], [13.611321717221312, 2.160332984581853, 0.7853981633974483], [13.492307685900709, 2.1470125143789462, 0.7853981633974483], [13.375730013597012, 2.1334574115376768, 0.7853981633974483], [13.261652951520567, 2.119666535283539, 0.7853981633974483], [13.150141577976191, 2.10563906351209, 0.7853981633974483], [13.041261708108301, 2.091374518060616, 0.7853981633974483], [12.93507979342359, 2.0768727903142796, 0.7853981633974483], [12.831662810774306, 2.0621341669659996, 0.7853981633974483], [12.731078140553974, 2.0471593557250514, 0.7853981633974483], [12.633393433938634, 2.0319495107449344, 0.7853981633974483], [12.538676469100956, 2.0165062575171016, 0.7853981633974483], [12.44699499643179, 2.0008317169540817, 0.7853981633974483], [12.358416572923884, 1.9849285283641311, 0.7853981633974483], [12.273008386005085, 1.9687998710005112, 0.7853981633974483], [12.190837067252284, 1.9524494838525142, 0.7853981633974483], [12.111968496571608, 1.9358816833333674, 0.7853981633974483], [12.036467597592893, 1.9191013785128537, 0.7853981633974483], [11.96439812519518, 1.9021140835407626, 0.7853981633974483], [11.89582244625204, 1.8849259269118748, 0.7853981633974483], [11.830801314857908, 1.8675436572347601, 0.7853981633974483], [11.769393643465367, 1.8499746451858146, 0.7853981633974483], [11.711656271525055, 1.8322268813570664, 0.7853981633974483], [11.657643733369577, 1.8143089697415857, 0.7853981633974483], [11.60740802721691, 1.7962301166437895, 0.7853981633974483], [11.560998387282035, 1.7780001148533116, 0.7853981633974483], [11.518461061074339, 1.7596293229798217, 0.7853981633974483], [11.479839094017978, 1.7411286399114165, 0.7853981633974483], [11.445172123559825, 1.7225094744298168, 0.7853981633974483], [11.414496184921525, 1.7037837100902067, 0.7853981633974483], [11.387843530606437, 1.6849636655504823, 0.7853981633974483], [11.36524246568772, 1.6660620506120922, 0.7853981633974483], [11.346717200780045, 1.647091918310561, 0.7853981633974483], [11.332287724435597, 1.628066613466131, 0.7853981633974483], [11.32196969650685, 1.6089997181716595, 0.7853981633974483], [11.315774363787698, 1.5899049947540134, 0.7853981633974483], [11.313708498984761, 1.5707963267948972, 0.7853981633974483], [11.315774363787696, 1.551687658835781, 0.7853981633974483], [11.32196969650685, 1.532592935418135, 0.7853981633974483], [11.332287724435597, 1.5135260401236634, 0.7853981633974483], [11.346717200780043, 1.4945007352792334, 0.7853981633974483], [11.365242465687716, 1.4755306029777022, 0.7853981633974483], [11.387843530606435, 1.4566289880393122, 0.7853981633974483], [11.414496184921523, 1.4378089434995878, 0.7853981633974483], [11.445172123559823, 1.4190831791599776, 0.7853981633974483], [11.479839094017974, 1.400464013678378, 0.7853981633974483], [11.518461061074337, 1.3819633306099728, 0.7853981633974483], [11.560998387282032, 1.363592538736483, 0.7853981633974483], [11.607408027216906, 1.3453625369460047, 0.7853981633974483], [11.657643733369573, 1.3272836838482087, 0.7853981633974483], [11.711656271525051, 1.3093657722327279, 0.7853981633974483], [11.769393643465364, 1.29161800840398, 0.7853981633974483], [11.830801314857903, 1.2740489963550343, 0.7853981633974483], [11.895822446252035, 1.2566667266779197, 0.7853981633974483], [11.964398125195174, 1.2394785700490316, 0.7853981633974483], [12.036467597592889, 1.2224912750769406, 0.7853981633974483], [12.111968496571603, 1.2057109702564268, 0.7853981633974483], [12.190837067252277, 1.1891431697372798, 0.7853981633974483], [12.273008386005078, 1.1727927825892828, 0.7853981633974483], [12.358416572923877, 1.1566641252256629, 0.7853981633974483], [12.446994996431783, 1.1407609366357125, 0.7853981633974483], [12.53867646910095, 1.1250863960726925, 0.7853981633974483], [12.633393433938627, 1.1096431428448599, 0.7853981633974483], [12.731078140553967, 1.0944332978647429, 0.7853981633974483], [12.831662810774299, 1.0794584866237942, 0.7853981633974483], [12.935079793423583, 1.0647198632755148, 0.7853981633974483], [13.041261708108294, 1.050218135529178, 0.7853981633974483], [13.150141577976184, 1.0359535900777044, 0.7853981633974483], [13.26165295152056, 1.0219261183062553, 0.7853981633974483], [13.375730013597003, 1.0081352420521172, 0.7853981633974483], [13.492307685900702, 0.9945801392108478, 0.7853981633974483], [13.611321717221305, 0.9812596690079414, 0.7853981633974483], [13.732708763849002, 0.9681723967790282, 0.7853981633974483], [13.85640646055101, 0.9553166181245101, 0.7853981633974483]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}];\n",
       "    for ( var i=0 ; i < lines.length ; i++ ) addLine( lines[i] );\n",
       "\n",
       "    function addLine( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        for ( var i=0 ; i < json.points.length ; i++ ) {\n",
       "            var v = json.points[i];\n",
       "            geometry.vertices.push( new THREE.Vector3( a[0]*v[0], a[1]*v[1], a[2]*v[2] ) );\n",
       "        }\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var materialOptions = { color: json.color, linewidth: json.linewidth,\n",
       "                                transparent: transparent, opacity: json.opacity };\n",
       "\n",
       "        var mesh;\n",
       "        if ( json.linewidth > 1 && window.createFatLineStrip ) {\n",
       "            mesh = createFatLineStrip( geometry, materialOptions );\n",
       "        } else {\n",
       "            var material = new THREE.LineBasicMaterial( materialOptions );\n",
       "            mesh = new THREE.Line( geometry, material );\n",
       "        }\n",
       "\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    var surfaces = [];\n",
       "    for ( var i=0 ; i < surfaces.length ; i++ ) addSurface( surfaces[i] );\n",
       "\n",
       "    function addSurface( json ) {\n",
       "\n",
       "        var useFaceColors = 'faceColors' in json ? true : false;\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        for ( var i=0 ; i < json.vertices.length ; i++ ) {\n",
       "            var v = json.vertices[i];\n",
       "            geometry.vertices.push( new THREE.Vector3( a[0]*v.x, a[1]*v.y, a[2]*v.z ) );\n",
       "        }\n",
       "        for ( var i=0 ; i < json.faces.length ; i++ ) {\n",
       "            var f = json.faces[i];\n",
       "            for ( var j=0 ; j < f.length - 2 ; j++ ) {\n",
       "                var face = new THREE.Face3( f[0], f[j+1], f[j+2] );\n",
       "                if ( useFaceColors ) face.color.set( json.faceColors[i] );\n",
       "                geometry.faces.push( face );\n",
       "            }\n",
       "        }\n",
       "        geometry.computeVertexNormals();\n",
       "\n",
       "        var side = json.singleSide ? THREE.FrontSide : THREE.DoubleSide;\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var depthWrite = 'depthWrite' in json ? json.depthWrite : !transparent;\n",
       "        var flatShading = json.useFlatShading ? json.useFlatShading : false;\n",
       "\n",
       "        var material = new THREE.MeshPhongMaterial( { side: side,\n",
       "                                     color: useFaceColors ? 'white' : json.color,\n",
       "                                     vertexColors: useFaceColors ? THREE.FaceColors : THREE.NoColors,\n",
       "                                     transparent: transparent, opacity: json.opacity,\n",
       "                                     shininess: 20, flatShading: flatShading,\n",
       "                                     depthWrite: depthWrite } );\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var mesh = new THREE.Mesh( geometry, material );\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        if ( transparent && json.renderOrder ) mesh.renderOrder = json.renderOrder;\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "        if ( json.showMeshGrid ) addSurfaceMeshGrid( json );\n",
       "\n",
       "    }\n",
       "\n",
       "    function addSurfaceMeshGrid( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "\n",
       "        for ( var i=0 ; i < json.faces.length ; i++ ) {\n",
       "            var f = json.faces[i];\n",
       "            for ( var j=0 ; j < f.length ; j++ ) {\n",
       "                var k = j === f.length-1 ? 0 : j+1;\n",
       "                var v1 = json.vertices[f[j]];\n",
       "                var v2 = json.vertices[f[k]];\n",
       "                // vertices in opposite directions on neighboring faces\n",
       "                var nudge = f[j] < f[k] ? .0005*zRange : -.0005*zRange;\n",
       "                geometry.vertices.push( new THREE.Vector3( a[0]*v1.x, a[1]*v1.y, a[2]*(v1.z+nudge) ) );\n",
       "                geometry.vertices.push( new THREE.Vector3( a[0]*v2.x, a[1]*v2.y, a[2]*(v2.z+nudge) ) );\n",
       "            }\n",
       "        }\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var gridColor = options.theme === 'dark' ? 'white' : 'black';\n",
       "        var linewidth = json.linewidth || 1;\n",
       "        var materialOptions = { color: gridColor, linewidth: linewidth };\n",
       "\n",
       "        var mesh;\n",
       "        if ( linewidth > 1 && window.createFatLineSegments ) {\n",
       "            mesh = createFatLineSegments( geometry, materialOptions );\n",
       "        } else {\n",
       "            var material = new THREE.LineBasicMaterial( materialOptions );\n",
       "            mesh = new THREE.LineSegments( geometry, material );\n",
       "        }\n",
       "\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    function render() {\n",
       "\n",
       "        if ( window.updateAnimation ) animate = updateAnimation();\n",
       "        if ( animate ) requestAnimationFrame( render );\n",
       "\n",
       "        renderer.render( scene, camera );\n",
       "\n",
       "    }\n",
       "\n",
       "    render();\n",
       "    controls.update();\n",
       "    if ( !animate ) render();\n",
       "\n",
       "\n",
       "    // menu functions\n",
       "\n",
       "    function toggleMenu() {\n",
       "\n",
       "        var m = document.getElementById( 'menu-content' );\n",
       "        if ( m.style.display === 'block' ) m.style.display = 'none'\n",
       "        else m.style.display = 'block';\n",
       "\n",
       "    }\n",
       "\n",
       "\n",
       "    function saveAsPNG() {\n",
       "\n",
       "        var a = document.body.appendChild( document.createElement( 'a' ) );\n",
       "        a.href = renderer.domElement.toDataURL( 'image/png' );\n",
       "        a.download = 'screenshot';\n",
       "        a.click();\n",
       "\n",
       "    }\n",
       "\n",
       "    function saveAsHTML() {\n",
       "\n",
       "        toggleMenu(); // otherwise visible in output\n",
       "        event.stopPropagation();\n",
       "\n",
       "        var blob = new Blob( [ '<!DOCTYPE html>\\n' + document.documentElement.outerHTML ] );\n",
       "        var a = document.body.appendChild( document.createElement( 'a' ) );\n",
       "        a.href = window.URL.createObjectURL( blob );\n",
       "        a.download = suggestFilename();\n",
       "        a.click();\n",
       "\n",
       "        function suggestFilename() {\n",
       "            if ( !document.title ) {\n",
       "                return 'graphic.html';\n",
       "            } else if ( /\\.html?$/i.test( document.title ) ) {\n",
       "                return document.title; // already ends in .htm or .html\n",
       "            } else {\n",
       "                return document.title + '.html';\n",
       "            }\n",
       "        }\n",
       "\n",
       "    }\n",
       "\n",
       "    function getViewpoint() {\n",
       "\n",
       "        function roundTo( x, n ) { return +x.toFixed(n); }\n",
       "\n",
       "        var v = camera.quaternion.inverse();\n",
       "        var r = Math.sqrt( v.x*v.x + v.y*v.y + v.z*v.z );\n",
       "        var axis = [ roundTo( v.x / r, 4 ), roundTo( v.y / r, 4 ), roundTo( v.z / r, 4 ) ];\n",
       "        var angle = roundTo( 2 * Math.atan2( r, v.w ) * 180 / Math.PI, 2 );\n",
       "\n",
       "        var textArea = document.createElement( 'textarea' );\n",
       "        textArea.textContent = JSON.stringify( axis ) + ',' + angle;\n",
       "        textArea.style.csstext = 'position: absolute; top: -100%';\n",
       "        document.body.append( textArea );\n",
       "        textArea.select();\n",
       "        document.execCommand( 'copy' );\n",
       "\n",
       "        var m = document.getElementById( 'menu-message' );\n",
       "        m.innerHTML = 'Viewpoint copied to clipboard';\n",
       "        m.style.display = 'block';\n",
       "        setTimeout( function() { m.style.display = 'none'; }, 2000 );\n",
       "\n",
       "    }\n",
       "\n",
       "    function getCamera() {\n",
       "\n",
       "        function roundTo( x, n ) { return +x.toFixed(n); }\n",
       "\n",
       "        var pos = camera.position;\n",
       "        var pos_r = [ roundTo( pos.x, 4 ), roundTo( pos.y, 4 ), roundTo( pos.z, 4 ) ];\n",
       "   //     var up = camera.up; // up is always (0,0,1)\n",
       "        var textArea = document.createElement('textarea');\n",
       "        var cam_position = JSON.stringify(pos_r);\n",
       "        textArea.textContent = ',camera_position=' + cam_position;\n",
       "        textArea.style.csstext = 'position: absolute; top: -100%';\n",
       "        document.body.append( textArea );\n",
       "        textArea.select();\n",
       "        document.execCommand( 'copy' );\n",
       "\n",
       "        var m = document.getElementById( 'menu-message' );\n",
       "        m.innerHTML = 'Camera position '+ cam_position+' copied to clipboard';\n",
       "        m.style.display = 'block';\n",
       "        setTimeout( function() { m.style.display = 'none'; }, 2000 );\n",
       "\n",
       "    }\n",
       "\n",
       "</script>\n",
       "\n",
       "<div id=&quot;menu-container&quot; onclick=&quot;toggleMenu()&quot;>&#x24d8;\n",
       "<div id=&quot;menu-message&quot;></div>\n",
       "<div id=&quot;menu-content&quot;>\n",
       "<div onclick=&quot;saveAsPNG()&quot;>Save as PNG</div>\n",
       "<div onclick=&quot;saveAsHTML()&quot;>Save as HTML</div>\n",
       "<div onclick=&quot;getCamera()&quot;>Get camera</div>\n",
       "<div onclick=&quot;getViewpoint()&quot;>Get viewpoint</div>\n",
       "<div>Close Menu</div>\n",
       "</div></div>\n",
       "\n",
       "\n",
       "</body>\n",
       "</html>\n",
       "\"\n",
       "        width=\"100%\"\n",
       "        height=\"400\"\n",
       "        style=\"border: 0;\">\n",
       "</iframe>\n"
      ],
      "text/plain": [
       "Graphics3d Object"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "graph = X_U.plot(Y,color={x:'blue',y:'green', z:'red'})\n",
    "show(graph, axes_labels=['r','theta','phi'])"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "オプションを追加してすることで、グラフを見やすくできます。"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 52,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "<iframe srcdoc=\"<!DOCTYPE html>\n",
       "<html>\n",
       "<head>\n",
       "<title></title>\n",
       "<meta charset=&quot;utf-8&quot;>\n",
       "<meta name=viewport content=&quot;width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0&quot;>\n",
       "<style>\n",
       "\n",
       "    body { margin: 0px; overflow: hidden; }\n",
       "\n",
       "    #menu-container { position: absolute; bottom: 30px; right: 40px; cursor: default; }\n",
       "\n",
       "    #menu-message { position: absolute; bottom: 0px; right: 0px; white-space: nowrap;\n",
       "                    display: none; background-color: #F5F5F5; padding: 10px; }\n",
       "\n",
       "    #menu-content { position: absolute; bottom: 0px; right: 0px;\n",
       "                    display: none; background-color: #F5F5F5; border-bottom: 1px solid black;\n",
       "                    border-right: 1px solid black; border-left: 1px solid black; }\n",
       "\n",
       "    #menu-content div { border-top: 1px solid black; padding: 10px; white-space: nowrap; }\n",
       "\n",
       "    #menu-content div:hover { background-color: #FEFEFE; }\n",
       "\n",
       "    .dark-theme #menu-container { color: white; }\n",
       "\n",
       "    .dark-theme #menu-message { background-color: #181818; }\n",
       "\n",
       "    .dark-theme #menu-content { background-color: #181818; border-color: white; }\n",
       "\n",
       "    .dark-theme #menu-content div { border-color: white; }\n",
       "\n",
       "    .dark-theme #menu-content div:hover { background-color: #303030; }\n",
       "\n",
       "</style>\n",
       "\n",
       "</head>\n",
       "\n",
       "<body>\n",
       "\n",
       "<script src=&quot;/nbextensions/threejs-sage/r122/three.min.js&quot;></script>\n",
       "<script>\n",
       "  if ( !window.THREE ) document.write(' \\\n",
       "<script src=&quot;https://cdn.jsdelivr.net/gh/sagemath/threejs-sage@r122/build/three.min.js&quot;><\\/script> \\\n",
       "            ');\n",
       "</script>\n",
       "        \n",
       "<script>\n",
       "\n",
       "    var options = {&quot;animate&quot;: false, &quot;animationControls&quot;: true, &quot;aspectRatio&quot;: [1.0, 1.0, 1.0], &quot;autoScaling&quot;: [false, false, false], &quot;autoPlay&quot;: true, &quot;axes&quot;: false, &quot;axesLabels&quot;: [&quot;r&quot;, &quot;theta&quot;, &quot;phi&quot;], &quot;axesLabelsStyle&quot;: null, &quot;decimals&quot;: 2, &quot;delay&quot;: 20, &quot;frame&quot;: true, &quot;loop&quot;: true, &quot;projection&quot;: &quot;perspective&quot;, &quot;theme&quot;: &quot;light&quot;, &quot;viewpoint&quot;: false};\n",
       "    var animate = options.animate;\n",
       "\n",
       "    if ( options.theme === 'dark' )\n",
       "        document.body.className = 'dark-theme';\n",
       "\n",
       "    var scene = new THREE.Scene();\n",
       "\n",
       "    var renderer = new THREE.WebGLRenderer( { antialias: true, preserveDrawingBuffer: true } );\n",
       "    renderer.setPixelRatio( window.devicePixelRatio );\n",
       "    renderer.setSize( window.innerWidth, window.innerHeight );\n",
       "    renderer.setClearColor( options.theme === 'dark' ? 0 : 0xffffff, 1 );\n",
       "    document.body.appendChild( renderer.domElement );\n",
       "\n",
       "    var b = [{&quot;x&quot;:-0.14482670237850925, &quot;y&quot;:-0.0643514907757502, &quot;z&quot;:-0.0643514907757502}, {&quot;x&quot;:3.464101615137753, &quot;y&quot;:1.5707963267948966, &quot;z&quot;:1.5707963267948966}]; // bounds\n",
       "\n",
       "    if ( b[0].x === b[1].x ) {\n",
       "        b[0].x -= 1;\n",
       "        b[1].x += 1;\n",
       "    }\n",
       "    if ( b[0].y === b[1].y ) {\n",
       "        b[0].y -= 1;\n",
       "        b[1].y += 1;\n",
       "    }\n",
       "    if ( b[0].z === b[1].z ) {\n",
       "        b[0].z -= 1;\n",
       "        b[1].z += 1;\n",
       "    }\n",
       "\n",
       "    var rxRange = Math.sqrt( Math.pow( b[1].z - b[0].z, 2 )\n",
       "                            + Math.pow( b[1].y - b[0].y, 2 ) );\n",
       "    var ryRange = Math.sqrt( Math.pow( b[1].x - b[0].x, 2 )\n",
       "                            + Math.pow( b[1].z - b[0].z, 2 ) );\n",
       "    var rzRange = Math.sqrt( Math.pow( b[1].x - b[0].x, 2 )\n",
       "                            + Math.pow( b[1].y - b[0].y, 2 ) );\n",
       "    var xRange = b[1].x - b[0].x;\n",
       "    var yRange = b[1].y - b[0].y;\n",
       "    var zRange = b[1].z - b[0].z;\n",
       "\n",
       "    var ar = options.aspectRatio;\n",
       "    var a = [ ar[0], ar[1], ar[2] ]; // aspect multipliers\n",
       "\n",
       "    var autoScaling = options.autoScaling;\n",
       "    var autoAspect = 2.5;\n",
       "    if ( xRange > autoAspect * rxRange && autoScaling[0] ) a[0] = autoAspect * rxRange / xRange;\n",
       "    if ( yRange > autoAspect * ryRange && autoScaling[1] ) a[1] = autoAspect * ryRange / yRange;\n",
       "    if ( zRange > autoAspect * rzRange && autoScaling[2] ) a[2] = autoAspect * rzRange / zRange;\n",
       "\n",
       "    // Distance from (xMid,yMid,zMid) to any corner of the bounding box, after applying aspectRatio\n",
       "    var midToCorner = Math.sqrt( a[0]*a[0]*xRange*xRange + a[1]*a[1]*yRange*yRange + a[2]*a[2]*zRange*zRange ) / 2;\n",
       "\n",
       "    var xMid = ( b[0].x + b[1].x ) / 2;\n",
       "    var yMid = ( b[0].y + b[1].y ) / 2;\n",
       "    var zMid = ( b[0].z + b[1].z ) / 2;\n",
       "\n",
       "    var box = new THREE.Geometry();\n",
       "    box.vertices.push( new THREE.Vector3( a[0]*b[0].x, a[1]*b[0].y, a[2]*b[0].z ) );\n",
       "    box.vertices.push( new THREE.Vector3( a[0]*b[1].x, a[1]*b[1].y, a[2]*b[1].z ) );\n",
       "    var boxMesh = new THREE.Line( box );\n",
       "    var boxColor = options.theme === 'dark' ? 'white' : 'black';\n",
       "    if ( options.frame ) scene.add( new THREE.BoxHelper( boxMesh, boxColor ) );\n",
       "\n",
       "    if ( options.axesLabels ) {\n",
       "\n",
       "        var d = options.decimals; // decimals\n",
       "        var offsetRatio = 0.1;\n",
       "        var al = options.axesLabels;\n",
       "        var als = options.axesLabelsStyle || [{}, {}, {}];\n",
       "\n",
       "        var offset = offsetRatio * a[1]*( b[1].y - b[0].y );\n",
       "        var xm = xMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(xm) ) xm = xm.substr(1);\n",
       "        addLabel( al[0] + '=' + xm, a[0]*xMid, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "        addLabel( ( b[0].x ).toFixed(d), a[0]*b[0].x, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "        addLabel( ( b[1].x ).toFixed(d), a[0]*b[1].x, a[1]*b[1].y+offset, a[2]*b[0].z, als[0] );\n",
       "\n",
       "        var offset = offsetRatio * a[0]*( b[1].x - b[0].x );\n",
       "        var ym = yMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(ym) ) ym = ym.substr(1);\n",
       "        addLabel( al[1] + '=' + ym, a[0]*b[1].x+offset, a[1]*yMid, a[2]*b[0].z, als[1] );\n",
       "        addLabel( ( b[0].y ).toFixed(d), a[0]*b[1].x+offset, a[1]*b[0].y, a[2]*b[0].z, als[1] );\n",
       "        addLabel( ( b[1].y ).toFixed(d), a[0]*b[1].x+offset, a[1]*b[1].y, a[2]*b[0].z, als[1] );\n",
       "\n",
       "        var offset = offsetRatio * a[1]*( b[1].y - b[0].y );\n",
       "        var zm = zMid.toFixed(d);\n",
       "        if ( /^-0.?0*$/.test(zm) ) zm = zm.substr(1);\n",
       "        addLabel( al[2] + '=' + zm, a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*zMid, als[2] );\n",
       "        addLabel( ( b[0].z ).toFixed(d), a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*b[0].z, als[2] );\n",
       "        addLabel( ( b[1].z ).toFixed(d), a[0]*b[1].x, a[1]*b[0].y-offset, a[2]*b[1].z, als[2] );\n",
       "\n",
       "    }\n",
       "\n",
       "    function addLabel( text, x, y, z, style ) {\n",
       "\n",
       "        var color = style.color || 'black';\n",
       "        var fontSize = style.fontSize || 14;\n",
       "        var fontFamily = style.fontFamily || 'monospace';\n",
       "        var fontStyle = style.fontStyle || 'normal';\n",
       "        var fontWeight = style.fontWeight || 'normal';\n",
       "        var opacity = style.opacity || 1;\n",
       "\n",
       "        if ( options.theme === 'dark' )\n",
       "            if ( color === 'black' || color === '#000000' )\n",
       "                color = 'white';\n",
       "\n",
       "        if ( Array.isArray( fontStyle ) ) {\n",
       "            fontFamily = fontFamily.map( function( f ) {\n",
       "                // Need to put quotes around fonts that have whitespace in their names.\n",
       "                return /\\s/.test( f ) ? '&quot;' + f + '&quot;' : f;\n",
       "            }).join(', ');\n",
       "        }\n",
       "\n",
       "        var canvas = document.createElement( 'canvas' );\n",
       "        var context = canvas.getContext( '2d' );\n",
       "        var pixelRatio = Math.round( window.devicePixelRatio );\n",
       "\n",
       "        // For example: italic bold 20px &quot;Times New Roman&quot;, Georgia, serif\n",
       "        var font = [fontStyle, fontWeight, fontSize + 'px', fontFamily].join(' ');\n",
       "\n",
       "        context.font = font;\n",
       "        var width = context.measureText( text ).width;\n",
       "        var height = fontSize;\n",
       "\n",
       "        // The dimensions of the canvas's underlying image data need to be powers\n",
       "        // of two in order for the resulting texture to support mipmapping.\n",
       "        canvas.width = THREE.MathUtils.ceilPowerOfTwo( width * pixelRatio );\n",
       "        canvas.height = THREE.MathUtils.ceilPowerOfTwo( height * pixelRatio );\n",
       "\n",
       "        // Re-compute the unscaled dimensions after the power of two conversion.\n",
       "        width = canvas.width / pixelRatio;\n",
       "        height = canvas.height / pixelRatio;\n",
       "\n",
       "        canvas.style.width = width + 'px';\n",
       "        canvas.style.height = height + 'px';\n",
       "\n",
       "        context.scale( pixelRatio, pixelRatio );\n",
       "        context.fillStyle = color;\n",
       "        context.font = font; // Must be set again after measureText.\n",
       "        context.textAlign = 'center';\n",
       "        context.textBaseline = 'middle';\n",
       "        context.fillText( text, width/2, height/2 );\n",
       "\n",
       "        var texture = new THREE.Texture( canvas );\n",
       "        texture.needsUpdate = true;\n",
       "\n",
       "        var materialOptions = { map: texture, sizeAttenuation: false, depthWrite: false };\n",
       "        if ( opacity < 1 ) {\n",
       "            // Setting opacity=1 would cause the texture's alpha component to be\n",
       "            // discarded, giving the text a black background instead of the\n",
       "            // background being transparent.\n",
       "            materialOptions.opacity = opacity;\n",
       "        }\n",
       "        var sprite = new THREE.Sprite( new THREE.SpriteMaterial( materialOptions ) );\n",
       "        sprite.position.set( x, y, z );\n",
       "\n",
       "        // Scaling factor, chosen somewhat arbitrarily so that the size of the text\n",
       "        // is consistent with previously generated plots.\n",
       "        var scale = 1/625;\n",
       "        if ( options.projection === 'orthographic' ) {\n",
       "            scale = midToCorner/256; // Needs to scale along with the plot itself.\n",
       "        }\n",
       "        sprite.scale.set( scale * width, scale * height, 1 );\n",
       "\n",
       "        scene.add( sprite );\n",
       "\n",
       "        return sprite;\n",
       "\n",
       "    }\n",
       "\n",
       "    if ( options.axes ) scene.add( new THREE.AxesHelper( Math.min( a[0]*b[1].x, a[1]*b[1].y, a[2]*b[1].z ) ) );\n",
       "\n",
       "    var camera = createCamera();\n",
       "    camera.up.set( 0, 0, 1 );\n",
       "    camera.position.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "\n",
       "    // camera is positioned so that the line from the camera to the center\n",
       "    // of the bounding sphere of the objects makes an angle of 60 degrees with x-axis\n",
       "    // and an angle of 30 degrees with z-axis and the field of view of the camera looking\n",
       "    // at the center has an angle of 45 degrees.\n",
       "    const sin8 = Math.sin(Math.PI / 8);\n",
       "    const sin5 = Math.sin(Math.PI / 5);\n",
       "    const cos5 = Math.cos(Math.PI / 5);\n",
       "    const sin3 = Math.sin(Math.PI / 3);\n",
       "    const cos3 = Math.cos(Math.PI / 3);\n",
       "    var r = midToCorner / sin8;\n",
       "    var offset = new THREE.Vector3( r * sin3 * cos5, r * sin3 * sin5, r * cos3 );\n",
       "\n",
       "    if ( options.viewpoint ) {\n",
       "\n",
       "        var aa = options.viewpoint;\n",
       "        var axis = new THREE.Vector3( aa[0][0], aa[0][1], aa[0][2] ).normalize();\n",
       "        var angle = aa[1] * Math.PI / 180;\n",
       "        var q = new THREE.Quaternion().setFromAxisAngle( axis, angle ).inverse();\n",
       "\n",
       "        offset.set( 0, 0, offset.length() );\n",
       "        offset.applyQuaternion( q );\n",
       "\n",
       "    }\n",
       "\n",
       "    camera.position.add( offset );\n",
       "\n",
       "    function createCamera() {\n",
       "\n",
       "        var aspect = window.innerWidth / window.innerHeight;\n",
       "\n",
       "        // Scale the near and far clipping planes along with the overall plot size.\n",
       "        var nearClip = 0.01 * midToCorner;\n",
       "        var farClip = 100 * midToCorner;\n",
       "\n",
       "        if ( options.projection === 'orthographic' ) {\n",
       "            var camera = new THREE.OrthographicCamera( -1, 1, 1, -1, -farClip, farClip );\n",
       "            updateCameraAspect( camera, aspect );\n",
       "            return camera;\n",
       "        }\n",
       "\n",
       "        return new THREE.PerspectiveCamera( 45, aspect, nearClip, farClip );\n",
       "\n",
       "    }\n",
       "\n",
       "    function updateCameraAspect( camera, aspect ) {\n",
       "\n",
       "        if ( camera.isPerspectiveCamera ) {\n",
       "            camera.aspect = aspect;\n",
       "        } else if ( camera.isOrthographicCamera ) {\n",
       "            // Fit the camera frustum to the bounding box's diagonal so that the entire plot fits\n",
       "            // within at the default zoom level and camera position.\n",
       "            if ( aspect > 1 ) { // Wide window\n",
       "                camera.top = midToCorner;\n",
       "                camera.right = midToCorner * aspect;\n",
       "            } else { // Tall or square window\n",
       "                camera.top = midToCorner / aspect;\n",
       "                camera.right = midToCorner;\n",
       "            }\n",
       "            camera.bottom = -camera.top;\n",
       "            camera.left = -camera.right;\n",
       "        }\n",
       "\n",
       "        camera.updateProjectionMatrix();\n",
       "\n",
       "    }\n",
       "\n",
       "    var lights = [{&quot;x&quot;:-5, &quot;y&quot;:3, &quot;z&quot;:0, &quot;color&quot;:&quot;#7f7f7f&quot;, &quot;parent&quot;:&quot;camera&quot;}];\n",
       "    for ( var i=0 ; i < lights.length ; i++ ) {\n",
       "        var light = new THREE.DirectionalLight( lights[i].color, 1 );\n",
       "        light.position.set( a[0]*lights[i].x, a[1]*lights[i].y, a[2]*lights[i].z );\n",
       "        if ( lights[i].parent === 'camera' ) {\n",
       "            light.target.position.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "            scene.add( light.target );\n",
       "            camera.add( light );\n",
       "        } else scene.add( light );\n",
       "    }\n",
       "    scene.add( camera );\n",
       "\n",
       "    var ambient = {&quot;color&quot;:&quot;#7f7f7f&quot;};\n",
       "    scene.add( new THREE.AmbientLight( ambient.color, 1 ) );\n",
       "\n",
       "    var controls = new THREE.OrbitControls( camera, renderer.domElement );\n",
       "    controls.target.set( a[0]*xMid, a[1]*yMid, a[2]*zMid );\n",
       "    controls.addEventListener( 'change', function() { if ( !animate ) render(); } );\n",
       "\n",
       "    window.addEventListener( 'resize', function() {\n",
       "\n",
       "        renderer.setSize( window.innerWidth, window.innerHeight );\n",
       "        updateCameraAspect( camera, window.innerWidth / window.innerHeight );\n",
       "        if ( window.rescaleFatLines ) rescaleFatLines();\n",
       "        if ( !animate ) render();\n",
       "\n",
       "    } );\n",
       "\n",
       "    var texts = [{&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  r&quot;, &quot;x&quot;: 1.74556432108239, &quot;y&quot;: -0.0643514907757502, &quot;z&quot;: -0.0643514907757502}, {&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  th&quot;, &quot;x&quot;: -0.14482670237850925, &quot;y&quot;: 0.7921545089041123, &quot;z&quot;: -0.0643514907757502}, {&quot;color&quot;: &quot;#000000&quot;, &quot;fontSize&quot;: 14.0, &quot;fontFamily&quot;: [&quot;monospace&quot;], &quot;fontStyle&quot;: &quot;normal&quot;, &quot;fontWeight&quot;: &quot;normal&quot;, &quot;opacity&quot;: 1.0, &quot;text&quot;: &quot;  ph&quot;, &quot;x&quot;: -0.14482670237850925, &quot;y&quot;: -0.0643514907757502, &quot;z&quot;: 0.7921545089041123}];\n",
       "    for ( var i=0 ; i < texts.length ; i++ ) addText( texts[i] );\n",
       "\n",
       "    function addText( json ) {\n",
       "        var sprite = addLabel( json.text, a[0]*json.x, a[1]*json.y, a[2]*json.z, json );\n",
       "        sprite.userData = json;\n",
       "    }\n",
       "\n",
       "    var points = [];\n",
       "    for ( var i=0 ; i < points.length ; i++ ) addPoint( points[i] );\n",
       "\n",
       "    function addPoint( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        var v = json.point;\n",
       "        geometry.vertices.push( new THREE.Vector3( a[0]*v[0], a[1]*v[1], a[2]*v[2] ) );\n",
       "\n",
       "        var canvas = document.createElement( 'canvas' );\n",
       "        canvas.width = 128;\n",
       "        canvas.height = 128;\n",
       "\n",
       "        var context = canvas.getContext( '2d' );\n",
       "        context.arc( 64, 64, 64, 0, 2 * Math.PI );\n",
       "        context.fillStyle = json.color;\n",
       "        context.fill();\n",
       "\n",
       "        var texture = new THREE.Texture( canvas );\n",
       "        texture.needsUpdate = true;\n",
       "\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var size = camera.isOrthographicCamera ? json.size : json.size/100;\n",
       "        var material = new THREE.PointsMaterial( { size: size, map: texture,\n",
       "                                                   transparent: transparent, opacity: json.opacity,\n",
       "                                                   alphaTest: .1 } );\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var mesh = new THREE.Points( geometry, material );\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    var lines = [{&quot;points&quot;: [[0.6666666666666666, 1.5707963267948966, 1.5707963267948966], [0.667214286893172, 1.5707963267948966, 1.5302779743165498], [0.6688544574151563, 1.5707963267948966, 1.489892227639666], [0.6715791734067706, 1.5707963267948966, 1.4497691069856915], [0.6753753086122996, 1.5707963267948966, 1.4100335861690618], [0.6802249254418979, 1.5707963267948966, 1.3708033701887155], [0.6861056852129647, 1.5707963267948966, 1.3321870042866957], [0.6929913374281869, 1.5707963267948966, 1.2942823801774226], [0.7008522644604225, 1.5707963267948966, 1.2571756745781983], [0.7096560574165037, 1.5707963267948966, 1.2209407249377986], [0.7193681000964731, 1.5707963267948966, 1.1856388204314223], [0.7299521405028703, 1.5707963267948966, 1.1513188650395356], [0.7413708328447202, 1.5707963267948966, 1.1180178549713606], [0.7535862369635377, 1.5707963267948966, 1.0857616049423608], [0.7665602661687441, 1.5707963267948966, 1.0545656561831487], [0.780255078276563, 1.5707963267948966, 1.0244363023459173], [0.7946334079711692, 1.5707963267948966, 0.9953716762596116], [0.8096588413222097, 1.5707963267948966, 0.9673628493566342], [0.8252960353584711, 1.5707963267948966, 0.9403949053213893], [0.8415108870391624, 1.5707963267948966, 0.9144479591317048], [0.8582706568514994, 1.5707963267948966, 0.8894981015070476], [0.8755440526889608, 1.5707963267948966, 0.8655182564412627], [0.8933012797290478, 1.5707963267948966, 0.842478945803713], [0.9115140618289653, 1.5707963267948966, 0.8203489599281011], [0.9301556395776797, 1.5707963267948966, 0.7990959367703143], [0.9492007496542683, 1.5707963267948966, 0.7786868547661259], [0.968625589601125, 1.5707963267948966, 0.7590884461445263], [0.9884077715679235, 1.5707963267948966, 0.7402675383426994], [1.008526268047317, 1.5707963267948966, 0.7221913314999884], [1.0289613521249807, 1.5707963267948966, 0.7048276199336501], [1.0496945343156399, 1.5707963267948966, 0.6881449651458829], [1.0707084976580818, 1.5707963267948966, 0.6721128273807941], [1.0919870323965228, 1.5707963267948966, 0.6567016621194345], [1.1135149712810068, 1.5707963267948966, 0.6418829872281918], [1.1352781262719536, 1.5707963267948966, 0.6276294258014947], [1.1572632272287984, 1.5707963267948966, 0.6139147290913484], [1.1794578629948202, 1.5707963267948966, 0.6007137833109941], [1.2018504251546624, 1.5707963267948966, 0.588002603547568], [1.2244300546329367, 1.5707963267948966, 0.5757583175232361], [1.2471865912173001, 1.5707963267948966, 0.563959141506263], [1.2701105260235745, 1.5707963267948966, 0.5525843502907144], [1.2931929568704637, 1.5707963267948966, 0.5416142428323488], [1.316425546494257, 1.5707963267948966, 0.5310301048441828], [1.3398004835071053, 1.5707963267948966, 0.5208141694133799], [1.3633104459839227, 1.5707963267948966, 0.5109495764966109], [1.3869485675509858, 1.5707963267948966, 0.5014203319791726], [1.4107084058424049, 1.5707963267948966, 0.49221126683956656], [1.4345839131877043, 1.5707963267948966, 0.483307996841934], [1.4585694093937775, 1.5707963267948966, 0.4746968830801753], [1.482659556486761, 1.5707963267948966, 0.466364993616583], [1.506849335283247, 1.5707963267948966, 0.4583000663916559], [1.5311340236652857, 1.5707963267948966, 0.4504904735280508], [1.5555091764393971, 1.5707963267948966, 0.4429251871083227], [1.5799706066660653, 1.5707963267948966, 0.4355937464714623], [1.6045143683526604, 1.5707963267948966, 0.42848622704577827], [1.6291367404092814, 1.5707963267948966, 0.4215932107141328], [1.6538342117734954, 1.5707963267948966, 0.41490575769087495], [1.678603467616274, 1.5707963267948966, 0.40841537987714155], [1.7034413765475285, 1.5707963267948966, 0.4021140156517632], [1.7283449787454868, 1.5707963267948966, 0.395994006048224], [1.7533114749396854, 1.5707963267948966, 0.39004807226345006], [1.7783382161825834, 1.5707963267948966, 0.3842692944412331], [1.8034226943497105, 1.5707963267948966, 0.3786510916714778], [1.8285625333128548, 1.5707963267948966, 0.37318720314590936], [1.8537554807350727, 1.5707963267948966, 0.3678716704111539], [1.8789994004402861, 1.5707963267948966, 0.36269882066101977], [1.904292265313922, 1.5707963267948966, 0.35766325101120666], [1.9296321506944636, 1.5707963267948966, 0.35275981370141435], [1.9550172282189469, 1.5707963267948966, 0.34798360217183416], [1.9804457600883407, 1.5707963267948966, 0.34332993796317274], [2.005916093721449, 1.5707963267948966, 0.33879435839164], [2.0314266567684363, 1.5707963267948966, 0.33437260495266347], [2.056975952457368, 1.5707963267948966, 0.3300606124094346], [2.08256255524924, 1.5707963267948966, 0.3258544985247188], [2.108185106778917, 1.5707963267948966, 0.32175055439664263]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.9428090415820634, 0.7853981633974483, 1.5707963267948966], [0.9431963470448814, 0.7858087099265647, 1.5302779743165498], [0.944357310369633, 0.7870363170380207, 1.489892227639666], [0.9462890840531585, 0.7890690021383917, 1.4497691069856915], [0.9489869608838697, 0.7918871703536359, 1.4100335861690618], [0.95244443073435, 0.7954641560318695, 1.3708033701887155], [0.9566532578348312, 0.7997669377863914, 1.3321870042866957], [0.9616035764258324, 0.8047569889888748, 1.2942823801774226], [0.9672840022680755, 0.8103912210252097, 1.2571756745781983], [0.973681757183722, 0.8166229754977141, 1.2209407249377986], [0.9807828036221138, 0.8234030235953933, 1.1856388204314223], [0.9885719861847019, 0.8306805354513499, 1.1513188650395356], [0.997033177099598, 0.8384039886811278, 1.1180178549713606], [1.0061494227923153, 0.8465219926227087, 1.0857616049423608], [1.0159030889376899, 0.8549840123206591, 1.0545656561831487], [1.026276001678306, 0.8637409833984216, 1.0244363023459173], [1.0372495830359822, 0.8727458152072395, 0.9953716762596116], [1.0488049789048808, 0.8819537847720654, 0.9673628493566342], [1.0609231783794975, 0.8913228279780898, 0.9403949053213893], [1.073585123522994, 0.9008137371852952, 0.9144479591317048], [1.086771809009025, 0.9103902761378814, 0.8894981015070476], [1.100464371364859, 0.9200192238154967, 0.8655182564412627], [1.1146441677997507, 0.9296703589387263, 0.842478945803713], [1.1292928448176687, 0.9393163963747468, 0.8203489599281011], [1.1443923969874175, 0.9489328858561968, 0.7990959367703143], [1.1599252163776204, 0.9584980823682857, 0.7786868547661259], [1.1758741332619624, 0.9679927963895686, 0.7590884461445263], [1.1922224487654611, 0.9774002309772627, 0.7402675383426994], [1.2089539601597297, 0.9867058115307328, 0.7221913314999884], [1.226052979528745, 0.9958970129884085, 0.7048276199336501], [1.2435043465209812, 1.0049631882388748, 0.6881449651458829], [1.2612934358830505, 1.0138954006683354, 0.6721128273807941], [1.2794061604379623, 1.0226862630268572, 0.6567016621194345], [1.2978289701310362, 1.0313297841710505, 0.6418829872281918], [1.3165488477211935, 1.0398212247231957, 0.6276294258014947], [1.3355533016470955, 1.0481569622659772, 0.6139147290913484], [1.3548303565482849, 1.056334366356486, 0.6007137833109941], [1.3743685418725529, 1.064351683381396, 0.588002603547568], [1.3941568789533194, 1.0722079310760297, 0.5757583175232361], [1.4141848668956523, 1.07990280238306, 0.563959141506263], [1.4344424675672167, 1.0874365782225277, 0.5525843502907144], [1.454920089951272, 1.094810048675502, 0.5416142428323488], [1.4756085740829603, 1.1020244420419807, 0.5310301048441828], [1.4964991747576468, 1.109081361213534, 0.5208141694133799], [1.5175835451708506, 1.115982726797683, 0.5109495764966109], [1.5388537206233008, 1.122730726439947, 0.5014203319791726], [1.5603021024016033, 1.1293277698074702, 0.49221126683956656], [1.5819214419247851, 1.135776448722472, 0.483307996841934], [1.6037048252293054, 1.1420795019622367, 0.4746968830801753], [1.6256456578498166, 1.148239784273324, 0.466364993616583], [1.6477376501397325, 1.154260239179798, 0.4583000663916559], [1.6699748030643733, 1.1601438751975812, 0.4504904735280508], [1.6923513944898134, 1.1658937450987858, 0.4429251871083227], [1.7148619659824458, 1.171512927900556, 0.4355937464714623], [1.737501310127443, 1.1770045132821951, 0.42848622704577827], [1.7602644583686347, 1.1823715881619323, 0.4215932107141328], [1.7831466693676388, 1.1876172251904602, 0.41490575769087495], [1.8061434178762836, 1.1927444729422905, 0.40841537987714155], [1.8292503841132801, 1.19775634760804, 0.4021140156517632], [1.852463443633688, 1.202655826010993, 0.395994006048224], [1.8757786576778241, 1.2074458397897672, 0.39004807226345006], [1.8991922639848493, 1.2121292706057303, 0.3842692944412331], [1.9227006680552265, 1.2167089462490557, 0.3786510916714778], [1.9463004348455482, 1.2211876375310908, 0.37318720314590936], [1.9699882808787885, 1.2255680558631377, 0.3678716704111539], [1.993761066752834, 1.2298528514329266, 0.36269882066101977], [2.017615790030122, 1.2340446119001, 0.35766325101120666], [2.0415495784913444, 1.2381458615410157, 0.35275981370141435], [2.0655596837364296, 1.242159060781227, 0.34798360217183416], [2.0896434751163486, 1.2460866060611853, 0.34332993796317274], [2.1137984339797304, 1.24993082998712, 0.33879435839164], [2.1380221482187296, 1.253694001724766, 0.33437260495266347], [2.162312307099125, 1.257378327598693, 0.3300606124094346], [2.1866666963601675, 1.2609859518645088, 0.3258544985247188], [2.211083193570264, 1.264518957625227, 0.32175055439664263]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.4907119849998598, 0.4636476090008061, 1.5707963267948966], [1.490956968665475, 0.4639761271539334, 1.5302779743165498], [1.4916916782572398, 0.4649594217054171, 1.489892227639666], [1.4929153907477473, 0.4665907670491359, 1.4497691069856915], [1.4946269050371521, 0.468859131278367, 1.4100335861690618], [1.496824547824565, 0.4717494322885845, 1.3708033701887155], [1.4995061817342834, 0.47524287721756386, 1.3321870042866957], [1.5026692156054455, 0.4793173683011342, 1.2942823801774226], [1.506310616830765, 0.48394795614393205, 1.2571756745781983], [1.5104269256093503, 0.48910732084145725, 1.2209407249377986], [1.5150142709605698, 0.49476626220707515, 1.1856388204314223], [1.5200683883307684, 0.5008941822875628, 1.1513188650395356], [1.525584638612572, 0.5074595460516103, 1.1180178549713606], [1.5315580283876427, 0.5144303092499168, 1.0857616049423608], [1.5379832311980757, 0.5217743056479294, 1.0545656561831487], [1.5448546096491227, 0.5294595888615341, 1.0244363023459173], [1.5521662381464338, 0.5374547266990508, 0.9953716762596116], [1.5599119260743541, 0.5457290481247112, 0.9673628493566342], [1.5680852412277173, 0.5542528446720709, 0.9403949053213893], [1.5766795333177936, 0.5629975293650494, 0.9144479591317048], [1.5856879573831926, 0.5719357569988301, 0.8894981015070476], [1.5951034969483289, 0.5810415100612932, 0.8655182564412627], [1.6049189867851064, 0.5902901547133679, 0.842478945803713], [1.6151271351474832, 0.5996584711669611, 0.8203489599281011], [1.6257205453631753, 0.6091246625675476, 0.7990959367703143], [1.6366917366816522, 0.6186683461602183, 0.7786868547661259], [1.6480331642924861, 0.6282705301368549, 0.7590884461445263], [1.6597372384427742, 0.6379135791612601, 0.7402675383426994], [1.6717963425965576, 0.6475811711722327, 0.7221913314999884], [1.684202850592721, 0.6572582476876125, 0.7048276199336501], [1.6969491427706092, 0.6669309594849487, 0.6881449651458829], [1.7100276210444685, 0.6765866092217271, 0.6721128273807941], [1.723430722918662, 0.6862135922817666, 0.6567016621194345], [1.7371509344454554, 0.6958013368939043, 0.6418829872281918], [1.7511808021359003, 0.7053402443624334, 0.6276294258014947], [1.7655129438420414, 0.714821630073107, 0.6139147290913484], [1.7801400586352991, 0.7242376657906276, 0.6007137833109941], [1.7950549357115009, 0.7335813236400829, 0.588002603547568], [1.8102504623576798, 0.7428463220625371, 0.5757583175232361], [1.8257196310195076, 0.7520270739509436, 0.563959141506263], [1.8414555455111206, 0.7611186371039619, 0.5525843502907144], [1.85745142641124, 0.7701166670797587, 0.5416142428323488], [1.8737006156909062, 0.7790173724873086, 0.5310301048441828], [1.8901965806189711, 0.7878174727172776, 0.5208141694133799], [1.9069329169917488, 0.7965141580867146, 0.5109495764966109], [1.9239033517330097, 0.8051050523501783, 0.5014203319791726], [1.9411017449098842, 0.8135881775134737, 0.49221126683956656], [1.958522091209268, 0.8219619208739335, 0.483307996841934], [1.976158520918069, 0.8302250042023888, 0.4746968830801753], [1.9940053004491478, 0.8383764549759724, 0.466364993616583], [2.0120568324531343, 0.8464155795671576, 0.4583000663916559], [2.0303076555545037, 0.8543419382925127, 0.4504904735280508], [2.0487524437483775, 0.8621553222241742, 0.4429251871083227], [2.067386005492567, 0.869855731667713, 0.4355937464714623], [2.0862032825273555, 0.8774433562116393, 0.42848622704577827], [2.105199348453527, 0.8849185562560451, 0.4215932107141328], [2.1243694070971357, 0.8922818459306735, 0.41490575769087495], [2.1437087906875685, 0.8995338773158666, 0.40841537987714155], [2.163212957873523, 0.906675425883286, 0.4021140156517632], [2.182877491599681, 0.9137073770769234, 0.395994006048224], [2.202698096865059, 0.9206307139586397, 0.39004807226345006], [2.2226705983823223, 0.9274465058462488, 0.3842692944412331], [2.242790938155705, 0.9341558978759252, 0.3786510916714778], [2.2630551729936466, 0.9407601014244503, 0.37318720314590936], [2.2834594719707852, 0.9472603853304578, 0.3678716704111539], [2.3040001138525867, 0.9536580678574124, 0.36269882066101977], [2.3246734844945873, 0.9599545093444971, 0.35766325101120666], [2.345476074227047, 0.9661511054949098, 0.35275981370141435], [2.3664044752346696, 0.9722492812542641, 0.34798360217183416], [2.387455378940026, 0.9782504852348327, 0.34332993796317274], [2.4086255733983424, 0.9841561846442808, 0.33879435839164], [2.4299119407104373, 0.9899678606802966, 0.33437260495266347], [2.4513114544597703, 0.9956870043551419, 0.3300606124094346], [2.4728211771788153, 1.0013151127166162, 0.3258544985247188], [2.494438257849292, 1.0068536854342673, 0.32175055439664263]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.1081851067789197, 0.3217505543966422, 1.5707963267948966], [2.1083583435067115, 0.321996963252811, 1.5302779743165498], [2.10887796830545, 0.3227347369377746, 1.489892227639666], [2.109743725231508, 0.32395955107731633, 1.4497691069856915], [2.110955188411909, 0.3256643107375825, 1.4100335861690618], [2.1125117630897194, 0.3278393125048534, 1.3708033701887155], [2.1144126870792164, 0.33047245913749734, 1.3321870042866957], [2.1166570326225522, 0.33354951594719695, 1.2942823801774226], [2.119243708637424, 0.337054396756164, 1.2571756745781983], [2.1221714633431334, 0.34096946694743846, 1.2209407249377986], [2.125438887250445, 0.3452758516861369, 1.1856388204314223], [2.1290444164988016, 0.34995373866451907, 1.1513188650395356], [2.132986336522781, 0.35498266648922744, 1.1180178549713606], [2.1372627860281628, 0.36034179185189624, 1.0857616049423608], [2.1418717612566573, 0.3660101306932522, 1.0545656561831487], [2.146811120517212, 0.37196677051699467, 1.0244363023459173], [2.1520785889608853, 0.3781910527159012, 0.9953716762596116], [2.15767176357555, 0.3846627251727191, 0.9673628493566342], [2.163588118376141, 0.39136206647061345, 0.9403949053213893], [2.1698250097658653, 0.3982699838040513, 0.9144479591317048], [2.1763796820436236, 0.40536808715519435, 0.8894981015070476], [2.183249273032974, 0.4126387425394974, 0.8655182564412627], [2.190430819808184, 0.42006510717759077, 0.842478945803713], [2.1979212644933255, 0.4276311493672008, 0.8203489599281011], [2.2057174601109186, 0.43532165565197967, 0.7990959367703143], [2.2138161764573465, 0.4431222276496784, 0.7786868547661259], [2.2222141059830682, 0.4510192706385147, 0.7590884461445263], [2.230907869656627, 0.4589999757290958, 0.7402675383426994], [2.2398940227924733, 0.4670522971848198, 0.7221913314999884], [2.2491690608237676, 0.475164926206087, 0.7048276199336501], [2.258729425002501, 0.48332726226864736, 0.6881449651458829], [2.2685715080105426, 0.49152938290672166, 0.6721128273807941], [2.278691659466494, 0.49976201265771686, 0.6567016621194345], [2.2890861913145475, 0.5080164917365451, 0.6418829872281918], [2.2997513830828664, 0.5162847448819798, 0.6276294258014947], [2.310683487000332, 0.5245592507128781, 0.6139147290913484], [2.321878732961803, 0.5328330118460044, 0.6007137833109941], [2.333333333333333, 0.5410995259571455, 0.588002603547568], [2.345043487590031, 0.5493527579108508, 0.5757583175232361], [2.3570053867804863, 0.5575871130393275, 0.563959141506263], [2.369215217812827, 0.5657974116158236, 0.5525843502907144], [2.3816691675586203, 0.5739788645405652, 0.5416142428323488], [2.394363426771864, 0.5821270502365273, 0.5310301048441828], [2.4072941938213273, 0.5902378927367604, 0.5208141694133799], [2.420457678235437, 0.5983076409336457, 0.5109495764966109], [2.4338501040597653, 0.6063328489524367, 0.5014203319791726], [2.4474677130279816, 0.6143103576060525, 0.49221126683956656], [2.4613067675478706, 0.6222372768847498, 0.483307996841934], [2.475363553504679, 0.630110969432517, 0.4746968830801753], [2.489634382884667, 0.6379290349614612, 0.466364993616583], [2.5041155962222597, 0.6456892955557603, 0.4583000663916559], [2.5188035648746903, 0.653389781817711, 0.4504904735280508], [2.5336946931284303, 0.6610287198098138, 0.4429251871083227], [2.5487854201420594, 0.668604518748564, 0.4355937464714623], [2.56407222173053, 0.676115759407539, 0.42848622704577827], [2.5795516119960418, 0.6835611831894048, 0.4215932107141328], [2.595220144810929, 0.6909396818285427, 0.41490575769087495], [2.6110744151581318, 0.6982502876880723, 0.40841537987714155], [2.6271110603349337, 0.7054921646170851, 0.4021140156517632], [2.6433267610257225, 0.7126645993358748, 0.395994006048224], [2.659718242249576, 0.7197669933188481, 0.39004807226345006], [2.676282274188478, 0.7267988551466047, 0.3842692944412331], [2.693015672901955, 0.7337597933003875, 0.3786510916714778], [2.7099153009338734, 0.7406495093737158, 0.37318720314590936], [2.72697806781707, 0.7474677916775355, 0.3678716704111539], [2.7442009304813952, 0.7542145092166409, 0.36269882066101977], [2.7615808935706427, 0.7608896060164533, 0.35766325101120666], [2.7791150096737165, 0.7674930957804917, 0.35275981370141435], [2.7968003794752483, 0.7740250568600314, 0.34798360217183416], [2.8146341518307287, 0.7804856275185292, 0.34332993796317274], [2.832613523771063, 0.7868750014744167, 0.33879435839164], [2.850735740441296, 0.7931934237068018, 0.33437260495266347], [2.8689980949780876, 0.7994411865095106, 0.3300606124094346], [2.8873979283303237, 0.8056186257797223, 0.3258544985247188], [2.9059326290271135, 0.8117261175282326, 0.32175055439664263]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.3333333333333333, 1.5707963267948966, 1.5707963267948966], [1.3336072277727418, 1.5707963267948966, 1.5505288320826751], [1.334428573786344, 1.5707963267948966, 1.5302779743165498], [1.3357963615338435, 1.5707963267948966, 1.5100603086476063], [1.3377089148303125, 1.5707963267948966, 1.489892227639666], [1.3401639013664592, 1.5707963267948966, 1.469789882459671], [1.3431583468135413, 1.5707963267948966, 1.4497691069856915], [1.3466886526156818, 1.5707963267948966, 1.4298453457022258], [1.350750617224599, 1.5707963267948966, 1.4100335861690618], [1.3553394604899798, 1.5707963267948966, 1.3903482967514207], [1.3604498508837959, 1.5707963267948966, 1.3708033701887155], [1.3660759352093335, 1.5707963267948966, 1.3514120734606936], [1.3722113704259293, 1.5707963267948966, 1.3321870042866957], [1.3788493572084655, 1.5707963267948966, 1.3131400544699219], [1.3859826748563737, 1.5707963267948966, 1.2942823801774226], [1.3936037171698772, 1.5707963267948966, 1.2756243791311173], [1.401704528920845, 1.5707963267948966, 1.2571756745781983], [1.4102768425612597, 1.5707963267948966, 1.2389451058129324], [1.4193121148330075, 1.5707963267948966, 1.2209407249377986], [1.42880156296764, 1.5707963267948966, 1.2031697994811186], [1.4387362001929462, 1.5707963267948966, 1.1856388204314223], [1.4491068702936796, 1.5707963267948966, 1.1683535152057483], [1.4599042810057405, 1.5707963267948966, 1.1513188650395358], [1.471119036055639, 1.5707963267948966, 1.134539126268953], [1.48274166568944, 1.5707963267948966, 1.1180178549713609], [1.4947626555669493, 1.5707963267948966, 1.101757934434884], [1.5071724739270753, 1.5707963267948966, 1.085761604942361], [1.5199615969586868, 1.5707963267948966, 1.070030495376769], [1.533120532337488, 1.5707963267948966, 1.054565656183149], [1.5466398409132625, 1.5707963267948966, 1.0393675932546163], [1.5605101565531259, 1.5707963267948966, 1.0244363023459178], [1.5747222041650901, 1.5707963267948966, 1.009771303655952], [1.589266815942338, 1.5707963267948966, 0.995371676259612], [1.6041349458821332, 1.5707963267948966, 0.9812360921082925], [1.6193176826444189, 1.5707963267948966, 0.9673628493566346], [1.6348062608239995, 1.5707963267948966, 0.9537499048099124], [1.6505920707169417, 1.5707963267948966, 0.9403949053213897], [1.666666666666666, 1.5707963267948966, 0.9272952180016126], [1.683021774078324, 1.5707963267948966, 0.9144479591317054], [1.6996492951916764, 1.5707963267948966, 0.9018500217001351], [1.716541313702998, 1.5707963267948966, 0.8894981015070481], [1.7336900983257375, 1.5707963267948966, 0.8773887218021478], [1.7510881053779208, 1.5707963267948966, 0.8655182564412631], [1.7687279804817944, 1.5707963267948966, 0.8538829515633382], [1.786602559458095, 1.5707963267948966, 0.8424789458037134], [1.8047048684937557, 1.5707963267948966, 0.831302289071436], [1.82302812365793, 1.5707963267948966, 0.8203489599281016], [1.8415657298370536, 1.5707963267948966, 0.8096148816136028], [1.8603112791553584, 1.5707963267948966, 0.7990959367703145], [1.8792585489428675, 1.5707963267948966, 0.7887879809218876], [1.8984014993085359, 1.5707963267948966, 0.7786868547661263], [1.9177342703718836, 1.5707963267948966, 0.7687883953435678], [1.937251179202249, 1.5707963267948966, 0.7590884461445266], [1.9569467165107146, 1.5707963267948966, 0.7495828662176601], [1.976815543135846, 1.5707963267948966, 0.7402675383426999], [1.9968524863606505, 1.5707963267948966, 0.7311383763289893], [2.017052536094633, 1.5707963267948966, 0.7221913314999887], [2.0374108409515035, 1.5707963267948966, 0.713422398422055], [2.057922704249961, 1.5707963267948966, 0.7048276199336505], [2.0785835799621024, 1.5707963267948966, 0.6964030915287734], [2.099389068631279, 1.5707963267948966, 0.6881449651458832], [2.1203349132787457, 1.5707963267948966, 0.6800494524109749], [2.141416995316163, 1.5707963267948966, 0.6721128273807945], [2.162631330478882, 1.5707963267948966, 0.664331428829502], [2.183974064793045, 1.5707963267948966, 0.6567016621194348], [2.205441470587757, 1.5707963267948966, 0.6492200006940009], [2.227029942562013, 1.5707963267948966, 0.6418829872281921], [2.248735993914598, 1.5707963267948966, 0.6346872344697305], [2.2705562525439063, 1.5707963267948966, 0.627629425801495], [2.2924874573234244, 1.5707963267948966, 0.6207063155536012], [2.314526454457596, 1.5707963267948966, 0.6139147290913487], [2.336670193921838, 1.5707963267948966, 0.6072515627031958], [2.35891572598964, 1.5707963267948966, 0.6007137833109943], [2.381260197848941, 1.5707963267948966, 0.594298428022887], [2.4037008503093236, 1.5707963267948966, 0.5880026035475682]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.4907119849998598, 1.1071487177940904, 1.5707963267948966], [1.490956968665475, 1.1072308726246773, 1.5505288320826751], [1.4916916782572398, 1.1074770741406927, 1.5302779743165498], [1.4929153907477473, 1.1078865357602878, 1.5100603086476063], [1.4946269050371521, 1.1084579542905721, 1.489892227639666], [1.496824547824565, 1.1091895214502487, 1.469789882459671], [1.4995061817342834, 1.1100789397202397, 1.4497691069856915], [1.5026692156054455, 1.1111234422509506, 1.4298453457022258], [1.506310616830765, 1.112319816490697, 1.4100335861690618], [1.5104269256093503, 1.1136644311449533, 1.3903482967514207], [1.51501427096057, 1.1151532660317254, 1.3708033701887155], [1.5200683883307684, 1.1167819443653204, 1.3514120734606936], [1.525584638612572, 1.118545766979473, 1.3321870042866957], [1.5315580283876424, 1.1204397479911805, 1.3131400544699219], [1.5379832311980755, 1.12245865140826, 1.2942823801774226], [1.5448546096491227, 1.1245970281958084, 1.2756243791311173], [1.5521662381464338, 1.1268492533383596, 1.2571756745781983], [1.5599119260743541, 1.129209562464307, 1.2389451058129324], [1.5680852412277173, 1.1316720876356483, 1.2209407249377986], [1.5766795333177936, 1.1342308919478028, 1.2031697994811186], [1.5856879573831926, 1.1368800026296069, 1.1856388204314223], [1.5951034969483289, 1.1396134423811035, 1.1683535152057483], [1.6049189867851064, 1.142425258735042, 1.1513188650395358], [1.6151271351474834, 1.1453095512757847, 1.134539126268953], [1.6257205453631753, 1.148260496595522, 1.1180178549713609], [1.6366917366816522, 1.15127237091137, 1.101757934434884], [1.6480331642924861, 1.154339570307357, 1.085761604942361], [1.6597372384427742, 1.1574566286019514, 1.070030495376769], [1.6717963425965576, 1.1606182328742691, 1.054565656183149], [1.684202850592721, 1.163819236710239, 1.0393675932546163], [1.6969491427706094, 1.1670546712537457, 1.0244363023459178], [1.7100276210444685, 1.1703197541671706, 1.009771303655952], [1.723430722918662, 1.1736098966210091, 0.995371676259612], [1.7371509344454554, 1.1769207084436042, 0.9812360921082925], [1.7511808021359003, 1.1802480015698094, 0.9673628493566346], [1.7655129438420414, 1.1835877919319522, 0.9537499048099124], [1.7801400586352991, 1.1869362999381818, 0.9403949053213897], [1.7950549357115009, 1.1902899496825317, 0.9272952180016126], [1.8102504623576798, 1.1936453670282068, 0.9144479591317054], [1.8257196310195076, 1.1969993767010665, 0.9018500217001351], [1.8414555455111206, 1.2003489985243754, 0.8894981015070481], [1.85745142641124, 1.2036914429189387, 0.8773887218021478], [1.8737006156909062, 1.2070241057850346, 0.8655182564412631], [1.8901965806189711, 1.210344562874324, 0.8538829515633382], [1.9069329169917488, 1.2136505637514194, 0.8424789458037134], [1.9239033517330097, 1.2169400254361813, 0.831302289071436], [1.9411017449098842, 1.2202110258092558, 0.8203489599281016], [1.958522091209268, 1.2234617968550174, 0.8096148816136028], [1.9761585209180692, 1.2266907178079935, 0.7990959367703145], [1.9940053004491478, 1.2298963082611496, 0.7887879809218876], [2.0120568324531347, 1.233077221287136, 0.7786868547661263], [2.0303076555545037, 1.236232236616779, 0.7687883953435678], [2.0487524437483775, 1.2393602539127806, 0.7590884461445266], [2.067386005492567, 1.242460286170765, 0.7495828662176601], [2.0862032825273555, 1.2455314532744948, 0.7402675383426999], [2.105199348453527, 1.2485729757272446, 0.7311383763289893], [2.1243694070971357, 1.2515841685769773, 0.7221913314999887], [2.1437087906875685, 1.2545644355490735, 0.713422398422055], [2.1632129578735233, 1.2575132633969, 0.7048276199336505], [2.182877491599681, 1.2604302164774674, 0.6964030915287734], [2.202698096865059, 1.2633149315567385, 0.6881449651458832], [2.2226705983823223, 1.2661671128468324, 0.6800494524109749], [2.242790938155705, 1.2689865272753766, 0.6721128273807945], [2.2630551729936466, 1.2717729999855334, 0.664331428829502], [2.2834594719707857, 1.2745264100638, 0.6567016621194348], [2.3040001138525867, 1.277246686491464, 0.6492200006940009], [2.3246734844945873, 1.2799338043146076, 0.6418829872281921], [2.345476074227047, 1.2825877810267565, 0.6346872344697305], [2.3664044752346696, 1.285208673157622, 0.627629425801495], [2.387455378940026, 1.28779657306091, 0.6207063155536012], [2.4086255733983424, 1.2903516058938045, 0.6139147290913487], [2.4299119407104373, 1.2928739267804905, 0.6072515627031958], [2.4513114544597703, 1.2953637181519266, 0.6007137833109943], [2.4728211771788153, 1.2978211872540157, 0.594298428022887], [2.494438257849292, 1.3002465638163234, 0.5880026035475682]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.8856180831641267, 0.7853981633974483, 1.5707963267948966], [1.8858117657246376, 0.7855008632635195, 1.5505288320826751], [1.8863926940897628, 0.7858087099265647, 1.5302779743165498], [1.8873605106774995, 0.7863209463952674, 1.5100603086476063], [1.888714620739266, 0.7870363170380207, 1.489892227639666], [1.8904541941828548, 0.7879530765210163, 1.469789882459671], [1.892578168106317, 0.7890690021383917, 1.4497691069856915], [1.8950852500248156, 0.7903814093567949, 1.4298453457022258], [1.8979739217677394, 0.7918871703536359, 1.4100335861690618], [1.9012424440189228, 0.79358273529054, 1.3903482967514207], [1.9048888614687, 0.7954641560318695, 1.3708033701887155], [1.908911008542785, 0.7975271119931757, 1.3514120734606936], [1.9133065156696625, 0.7997669377863914, 1.3321870042866957], [1.9180728160453075, 0.8021786523175679, 1.3131400544699219], [1.9232071528516648, 0.8047569889888748, 1.2942823801774226], [1.9287065868834161, 0.807496426659067, 1.2756243791311173], [1.934568004536151, 0.8103912210252097, 1.2571756745781983], [1.940788126108137, 0.8134354361024934, 1.2389451058129324], [1.947363514367444, 0.8166229754977141, 1.2209407249377986], [1.954290583336201, 0.8199476131946626, 1.2031697994811186], [1.9615656072442276, 0.8234030235953933, 1.1856388204314223], [1.9691847296051532, 0.8269828105893064, 1.1683535152057483], [1.9771439723694038, 0.8306805354513499, 1.1513188650395358], [1.985439245110021, 0.8344897434006829, 1.134539126268953], [1.9940663541991959, 0.8384039886811278, 1.1180178549713609], [2.003021011935555, 0.84241685805408, 1.101757934434884], [2.0122988455846307, 0.8465219926227087, 1.085761604942361], [2.0218954062975114, 0.8507131079328544, 1.070030495376769], [2.0318061778753798, 0.8549840123206591, 1.054565656183149], [2.0420265853504405, 0.8593286234994374, 1.0393675932546163], [2.0525520033566114, 0.8637409833984215, 1.0244363023459178], [2.0633777642662374, 0.868215271283735, 1.009771303655952], [2.074499166071964, 0.8727458152072394, 0.995371676259612], [2.085911479995748, 0.8773271018417934, 0.9812360921082925], [2.097609957809761, 0.8819537847720653, 0.9673628493566346], [2.1095898388566257, 0.8866206913184568, 0.9537499048099124], [2.121846356758995, 0.8913228279780897, 0.9403949053213897], [2.134374745810949, 0.8960553845713438, 0.9272952180016126], [2.1471702470459877, 0.900813737185295, 0.9144479591317054], [2.1602281139785537, 0.905593450006779, 0.9018500217001351], [2.173543618018049, 0.9103902761378811, 0.8894981015070481], [2.1871120535561235, 0.915200157485605, 0.8773887218021478], [2.200928742729717, 0.9200192238154965, 0.8655182564412631], [2.214989039863851, 0.924843791056223, 0.8538829515633382], [2.229288335599501, 0.9296703589387262, 0.8424789458037134], [2.2438220607131134, 0.9344956080496802, 0.831302289071436], [2.258585689635337, 0.9393163963747466, 0.8203489599281016], [2.2735747436774663, 0.9441297554026185, 0.8096148816136028], [2.288784793974834, 0.9489328858561966, 0.7990959367703145], [2.304211464157018, 0.953723153112512, 0.7887879809218876], [2.3198504327552403, 0.9584980823682856, 0.7786868547661263], [2.3356974353577047, 0.9632553536033458, 0.7687883953435678], [2.351748266523924, 0.9679927963895684, 0.7590884461445266], [2.3679987814692485, 0.9727083845885829, 0.7495828662176601], [2.3844448975309214, 0.9774002309772625, 0.7402675383426999], [2.4010825954270065, 0.9820665818359718, 0.7311383763289893], [2.4179079203194584, 0.9867058115307326, 0.7221913314999887], [2.434916982692529, 0.991316417116878, 0.713422398422055], [2.4521059590574894, 0.9958970129884084, 0.7048276199336505], [2.4694710924944734, 1.0004463255941425, 0.6964030915287734], [2.4870086930419615, 1.0049631882388745, 0.6881449651458832], [2.5047151379441464, 1.009446535985086, 0.6800494524109749], [2.5225868717661, 1.0138954006683352, 0.6721128273807945], [2.540620406386329, 1.0183089060372277, 0.664331428829502], [2.5588123208759237, 1.022686263026857, 0.6567016621194348], [2.577159261273169, 1.0270267651727916, 0.6492200006940009], [2.5956579402620714, 1.0313297841710503, 0.6418829872281921], [2.6143051367628938, 1.0355947655880484, 0.6346872344697305], [2.633097695442386, 1.0398212247231957, 0.627629425801495], [2.652032526151027, 1.0440087426256832, 0.6207063155536012], [2.67110660329419, 1.048156962265977, 0.6139147290913487], [2.690316965143791, 1.0522655848616598, 0.6072515627031958], [2.7096607130965693, 1.056334366356486, 0.6007137833109943], [2.7291350108848325, 1.0603631140508623, 0.594298428022887], [2.748737083745105, 1.0643516833813957, 0.5880026035475682]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.4037008503093262, 0.5880026035475675, 1.5707963267948966], [2.403852790411197, 0.5880974071687284, 1.5505288320826751], [2.404308553105748, 0.5883816294267296, 1.5302779743165498], [2.405067965668965, 0.5888547056987126, 1.5100603086476063], [2.406130740590896, 0.5895156989086173, 1.489892227639666], [2.407496476119076, 0.5903633054126225, 1.469789882459671], [2.409164657015972, 0.5913958631250001, 1.4497691069856915], [2.411134655527111, 0.5926113617739981, 1.4298453457022258], [2.4134057325556837, 0.5940074551505041, 1.4100335861690618], [2.4159770390385065, 0.5955814751886354, 1.3903482967514207], [2.418847617517429, 0.5973304476975135, 1.3708033701887155], [2.4220164038994563, 0.5992511095476543, 1.3514120734606936], [2.4254822293981473, 0.6013399271038049, 1.3321870042866957], [2.42924382264815, 0.6035931156887756, 1.3131400544699219], [2.4332998119841354, 0.6060066598597291, 1.2942823801774226], [2.437648727874814, 0.6085763342793366, 1.2756243791311173], [2.442289005502258, 0.6112977249688702, 1.2571756745781983], [2.447218987476306, 0.6141662507383052, 1.2389451058129324], [2.4524369266734967, 0.6171771845993814, 1.2209407249377986], [2.457940989189686, 0.6203256749808804, 1.2031697994811186], [2.4637292573953085, 0.6236067665805599, 1.1856388204314223], [2.469799733082086, 0.6270154207047776, 1.1683535152057483], [2.4761503406899363, 0.6305465349643382, 1.1513188650395358], [2.482778930602818, 0.6341949622130418, 1.134539126268953], [2.489683282502314, 0.6379555286334032, 1.1180178549713609], [2.4968611087678783, 0.6418230508916688, 1.101757934434884], [2.5043100579128494, 0.64579235230128, 1.085761604942361], [2.5120277180455637, 0.6498582779500588, 1.070030495376769], [2.5200116203451883, 0.6540157087614342, 1.054565656183149], [2.5282592425422283, 0.6582595744738204, 1.0393675932546163], [2.536768012394011, 0.6625848655347377, 1.0244363023459178], [2.5455353111458816, 0.6669866439173452, 1.009771303655952], [2.5545584769692584, 0.6714600528767493, 0.995371676259612], [2.5638348083681746, 0.6760003256717655, 0.9812360921082925], [2.573361567546405, 0.6806027932847991, 0.9673628493566346], [2.5831359837277916, 0.6852628911782362, 0.9537499048099124], [2.5931552564228855, 0.6899761651302887, 0.9403949053213897], [2.6034165586355513, 0.694738276196703, 0.9272952180016126], [2.6139170400037086, 0.6995450048472347, 0.9144479591317054], [2.624653829868915, 0.7043922543273978, 0.9018500217001351], [2.6356240402700104, 0.7092760532968394, 0.8894981015070481], [2.6468247688565834, 0.7141925577958561, 0.8773887218021478], [2.6582531017185023, 0.7191380525911595, 0.8655182564412631], [2.6699061161282818, 0.724108951951107, 0.8538829515633382], [2.68178088319352, 0.7291017998993224, 0.8424789458037134], [2.69387447041711, 0.7341132699940152, 0.831302289071436], [2.7061839441633957, 0.7391401646784402, 0.8203489599281016], [2.7187063720288513, 0.7441794142458821, 0.8096148816136028], [2.7314388251162875, 0.7492280754603473, 0.7990959367703145], [2.7443783802119657, 0.7542833298718661, 0.7887879809218876], [2.757522121865371, 0.7593424818629675, 0.7786868547661263], [2.7708671443717363, 0.7644029564605408, 0.7687883953435678], [2.7844105536577226, 0.7694622969449617, 0.7590884461445266], [2.798149469070955, 0.7745181622860624, 0.7495828662176601], [2.812081025074397, 0.7795683244332823, 0.7402675383426999], [2.82620237284677, 0.7846106654851677, 0.7311383763289893], [2.8405106817904757, 0.7896431747613021, 0.7221913314999887], [2.85500314094866, 0.7946639457977578, 0.713422398422055], [2.8696769603332486, 0.7996711732852568, 0.7048276199336505], [2.8845293721659466, 0.8046631499674474, 0.6964030915287734], [2.899557632034326, 0.8096382635150006, 0.6881449651458832], [2.91475901996525, 0.8145949933896545, 0.6800494524109749], [2.930130841417991, 0.8195319077108485, 0.6721128273807945], [2.9456704281994717, 0.8244476601362082, 0.664331428829502], [2.9613751393041468, 0.8293409867658628, 0.6567016621194348], [2.977242361681072, 0.8342107030793857, 0.6492200006940009], [2.9932695109307748, 0.839055700913058, 0.6418829872281921], [3.0094540319345424, 0.8438749454841437, 0.6346872344697305], [3.025793399418775, 0.8486674724679399, 0.627629425801495], [3.0422851184570487, 0.8534323851325238, 0.6207063155536012], [3.0589267249125225, 0.8581688515353376, 0.6139147290913487], [3.075715785823313, 0.8628761017850576, 0.6072515627031958], [3.0926498997334355, 0.8675534253715496, 0.6007137833109943], [3.10972669697187, 0.8722001685661388, 0.594298428022887], [3.1269438398822844, 0.8768157318939022, 0.5880026035475682]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.0, 1.5707963267948966, 1.5707963267948966], [2.0001826067111774, 1.5707963267948966, 1.5572836357815685], [2.0007303268455945, 1.5707963267948966, 1.5437758776076318], [2.001642860679516, 1.5707963267948966, 1.5302779743165498], [2.002919709583665, 1.5707963267948966, 1.5167948264189284], [2.0045601773825577, 1.5707963267948966, 1.503331302272992], [2.0065633722454685, 1.5707963267948966, 1.489892227639666], [2.0089282090970952, 1.5707963267948966, 1.476482375467716], [2.0116534125327994, 1.5707963267948966, 1.463106455962076], [2.014737520220312, 1.5707963267948966, 1.4497691069856915], [2.01817888676697, 1.5707963267948966, 1.4364748848419282], [2.0219756880289825, 1.5707963267948966, 1.423228255480902], [2.0261259258368987, 1.5707963267948966, 1.4100335861690618], [2.030627433109388, 1.5707963267948966, 1.39689513765701], [2.0354778793257005, 1.5707963267948966, 1.3838170568759856], [2.040674776325694, 1.5707963267948966, 1.3708033701887155], [2.0462154844051565, 1.5707963267948966, 1.3578579772154995], [2.0520972186733206, 1.5707963267948966, 1.3449846452515413], [2.058317055638894, 1.5707963267948966, 1.3321870042866957], [2.064871939990709, 1.5707963267948966, 1.3194685426340562], [2.0717586915391135, 1.5707963267948966, 1.3068326031691921], [2.0789740122845606, 1.5707963267948966, 1.2942823801774226], [2.0865144935804087, 1.5707963267948966, 1.2818209168023302], [2.09437662335777, 1.5707963267948966, 1.2694511030847926], [2.102556793381267, 1.5707963267948966, 1.2571756745781983], [2.1110513065057845, 1.5707963267948966, 1.2449972115222263], [2.119856383905684, 1.5707963267948966, 1.2329181385546184], [2.128968172249511, 1.5707963267948966, 1.2209407249377988], [2.1383827507948627, 1.5707963267948966, 1.2090670852749645], [2.14809613837985, 1.5707963267948966, 1.1972991806884192], [2.1581043002894194, 1.5707963267948966, 1.1856388204314225], [2.168403154976671, 1.5707963267948966, 1.174087663903683], [2.1789885806212292, 1.5707963267948966, 1.1626472230398077], [2.1898564215086105, 1.5707963267948966, 1.1513188650395358], [2.201002494216468, 1.5707963267948966, 1.140103815408389], [2.212422593595439, 1.5707963267948966, 1.1290031612774534], [2.22411249853416, 1.5707963267948966, 1.118017854971361], [2.2360679774997894, 1.5707963267948966, 1.1071487177940909], [2.248284793847072, 1.5707963267948966, 1.0963964440029896], [2.2607587108906126, 1.5707963267948966, 1.0857616049423613], [2.2734854967365496, 1.5707963267948966, 1.0752446533090685], [2.2864609288712825, 1.5707963267948966, 1.064845927523821], [2.2996807985062313, 1.5707963267948966, 1.0545656561831491], [2.3131409146788764, 1.5707963267948966, 1.044403962568477], [2.3268371081114463, 1.5707963267948966, 1.0343608691901658], [2.3407652348296883, 1.5707963267948966, 1.024436302345918], [2.3549211795450766, 1.5707963267948966, 1.0146300966744441], [2.3693008588046607, 1.5707963267948966, 1.0049419996868374], [2.383900223913507, 1.5707963267948966, 0.9953716762596122], [2.398715263635322, 1.5707963267948966, 0.9859187130748631], [2.413742006677416, 1.5707963267948966, 0.9765826229944633], [2.428976523966628, 1.5707963267948966, 0.9673628493566349], [2.4444149307232452, 1.5707963267948966, 0.9582587701845938], [2.460053388340239, 1.5707963267948966, 0.9492697022982753], [2.4758881060754123, 1.5707963267948966, 0.9403949053213899], [2.491915342564216, 1.5707963267948966, 0.9316335855772356], [2.508131407161119, 1.5707963267948966, 0.9229848998677989], [2.524532661117486, 1.5707963267948966, 0.9144479591317055], [2.5411155186039247, 1.5707963267948966, 0.9060218319775517], [2.5578764475850457, 1.5707963267948966, 0.8977055480900243], [2.5748119705544967, 1.5707963267948966, 0.8894981015070483], [2.5919186651380497, 1.5707963267948966, 0.8813984537669342], [2.6091931645723596, 1.5707963267948966, 0.8734055369251897], [2.626632158066881, 1.5707963267948966, 0.8655182564412633], [2.6442323910562164, 1.5707963267948966, 0.857735493936044], [2.661990665349995, 1.5707963267948966, 0.8500561098214302], [2.6799038391871424, 1.5707963267948966, 0.8424789458037135], [2.6979688272011773, 1.5707963267948966, 0.8350028272629039], [2.7161826003029415, 1.5707963267948966, 0.8276265655104509], [2.7345421854868945, 1.5707963267948966, 0.8203489599281018], [2.753044665566883, 1.5707963267948966, 0.8131687999908701], [2.771687178847018, 1.5707963267948966, 0.8060848671772932], [2.790466918733037, 1.5707963267948966, 0.7990959367703148], [2.8093811332892873, 1.5707963267948966, 0.7922007795522578], [2.828427124746188, 1.5707963267948966, 0.7853981633974491]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.1081851067789197, 1.2490457723982544, 1.5707963267948966], [2.1083583435067115, 1.2490731611543073, 1.5572836357815685], [2.10887796830545, 1.2491552854335164, 1.5437758776076318], [2.109743725231508, 1.249292019447883, 1.5302779743165498], [2.110955188411909, 1.2494831541454212, 1.5167948264189284], [2.1125117630897194, 1.2497283980969687, 1.503331302272992], [2.1144126870792164, 1.2500273787273861, 1.489892227639666], [2.1166570326225522, 1.2503796438809813, 1.476482375467716], [2.119243708637424, 1.2507846637083242, 1.463106455962076], [2.1221714633431334, 1.2512418328591306, 1.4497691069856915], [2.125438887250445, 1.2517504729636084, 1.4364748848419282], [2.1290444164988016, 1.2523098353825939, 1.423228255480902], [2.132986336522781, 1.252919104205013, 1.4100335861690618], [2.137262786028163, 1.2535773994696637, 1.39689513765701], [2.1418717612566573, 1.2542837805870775, 1.3838170568759856], [2.146811120517212, 1.255037249936255, 1.3708033701887155], [2.1520785889608853, 1.2558367566104187, 1.3578579772154995], [2.15767176357555, 1.2566812002855585, 1.3449846452515413], [2.163588118376141, 1.25756943518546, 1.3321870042866957], [2.1698250097658653, 1.2585002741171065, 1.3194685426340562], [2.1763796820436236, 1.2594724925507936, 1.3068326031691921], [2.183249273032974, 1.2604848327199916, 1.2942823801774226], [2.1904308198081845, 1.2615360077169047, 1.2818209168023302], [2.1979212644933255, 1.262624705560786, 1.2694511030847926], [2.2057174601109186, 1.2637495932173484, 1.2571756745781983], [2.2138161764573465, 1.264909320549039, 1.2449972115222263], [2.2222141059830682, 1.2661025241774877, 1.2329181385546184], [2.230907869656627, 1.2673278312410805, 1.2209407249377988], [2.2398940227924733, 1.2685838630323065, 1.2090670852749645], [2.2491690608237676, 1.2698692385012755, 1.1972991806884192], [2.258729425002501, 1.271182577613559, 1.1856388204314225], [2.2685715080105426, 1.2725225045522641, 1.174087663903683], [2.278691659466494, 1.2738876507559802, 1.1626472230398077], [2.2890861913145475, 1.2752766577859178, 1.1513188650395358], [2.299751383082867, 1.2766881800171936, 1.140103815408389], [2.310683487000332, 1.2781208871507552, 1.1290031612774534], [2.321878732961803, 1.2795734665439187, 1.118017854971361], [2.333333333333333, 1.2810446253588492, 1.1071487177940909], [2.345043487590031, 1.2825330925296001, 1.0963964440029896], [2.3570053867804863, 1.2840376205494766, 1.0857616049423613], [2.369215217812827, 1.2855569870815515, 1.0752446533090685], [2.3816691675586203, 1.2870899963961009, 1.064845927523821], [2.394363426771864, 1.288635480639558, 1.0545656561831491], [2.4072941938213273, 1.2901923009403098, 1.044403962568477], [2.420457678235437, 1.2917593483572742, 1.0343608691901658], [2.4338501040597653, 1.2933355446777077, 1.024436302345918], [2.4474677130279816, 1.2949198430711173, 1.0146300966744441], [2.4613067675478706, 1.2965112286064675, 1.0049419996868374], [2.475363553504679, 1.2981087186401146, 0.9953716762596122], [2.489634382884667, 1.2997113630820603, 0.9859187130748631], [2.5041155962222597, 1.3013182445481992, 0.9765826229944633], [2.5188035648746903, 1.3029284784062607, 0.9673628493566349], [2.5336946931284303, 1.3045412127230958, 0.9582587701845938], [2.5487854201420594, 1.3061556281208786, 0.9492697022982753], [2.56407222173053, 1.307770937549644, 0.9403949053213899], [2.579551611996042, 1.3093863859834078, 0.9316335855772356], [2.595220144810929, 1.3110012500469008, 0.9229848998677989], [2.6110744151581318, 1.3126148375797106, 0.9144479591317055], [2.6271110603349337, 1.314226487144352, 0.9060218319775517], [2.6433267610257225, 1.315835567484513, 0.8977055480900243], [2.659718242249576, 1.3174414769394145, 0.8894981015070483], [2.676282274188478, 1.3190436428199288, 0.8813984537669342], [2.693015672901955, 1.3206415207517743, 0.8734055369251897], [2.7099153009338734, 1.3222345939907962, 0.8655182564412633], [2.72697806781707, 1.323822372715025, 0.857735493936044], [2.7442009304813952, 1.3254043932978874, 0.8500561098214302], [2.7615808935706427, 1.326980217566642, 0.8424789458037135], [2.7791150096737165, 1.328549432049799, 0.8350028272629039], [2.7968003794752483, 1.3301116472170023, 0.8276265655104509], [2.8146341518307287, 1.3316664967145553, 0.8203489599281018], [2.832613523771063, 1.3332136365995058, 0.8131687999908701], [2.8507357404412965, 1.3347527445749383, 0.8060848671772932], [2.8689980949780876, 1.3362835192288733, 0.7990959367703148], [2.8873979283303237, 1.3378056792789348, 0.7922007795522578], [2.9059326290271135, 1.3393189628247182, 0.7853981633974491]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.4037008503093262, 0.982793723247329, 1.5707963267948966], [2.403852790411197, 0.9828358605940736, 1.5572836357815685], [2.404308553105748, 0.9829622176138085, 1.5437758776076318], [2.405067965668965, 0.9831726294471174, 1.5302779743165498], [2.4061307405908954, 0.9834668220004233, 1.5167948264189284], [2.407496476119076, 0.9838444129490297, 1.503331302272992], [2.409164657015972, 0.9843049131311621, 1.489892227639666], [2.411134655527111, 0.9848477283229534, 1.476482375467716], [2.4134057325556837, 0.9854721613816418, 1.463106455962076], [2.4159770390385065, 0.9861774147417391, 1.4497691069856915], [2.418847617517429, 0.9869625932465994, 1.4364748848419282], [2.4220164038994563, 0.9878267072956807, 1.423228255480902], [2.4254822293981473, 0.9887686762858995, 1.4100335861690618], [2.4292438226481505, 0.9897873323238142, 1.39689513765701], [2.4332998119841354, 0.9908814241839752, 1.3838170568759856], [2.437648727874814, 0.9920496214876449, 1.3708033701887155], [2.442289005502258, 0.9932905190752266, 1.3578579772154995], [2.447218987476306, 0.9946026415451518, 1.3449846452515413], [2.452436926673496, 0.9959844479316514, 1.3321870042866957], [2.457940989189686, 0.9974343364937781, 1.3194685426340562], [2.4637292573953085, 0.9989506495882386, 1.3068326031691921], [2.469799733082086, 1.0005316785990253, 1.2942823801774226], [2.4761503406899363, 1.0021756688974872, 1.2818209168023302], [2.482778930602818, 1.003880824807343, 1.2694511030847926], [2.489683282502314, 1.0056453145501716, 1.2571756745781983], [2.4968611087678783, 1.0074672751481275, 1.2449972115222263], [2.5043100579128494, 1.009344817261965, 1.2329181385546184], [2.5120277180455637, 1.0112760299439216, 1.2209407249377988], [2.5200116203451883, 1.0132589852865606, 1.2090670852749645], [2.5282592425422283, 1.0152917429503034, 1.1972991806884192], [2.536768012394011, 1.0173723545540594, 1.1856388204314225], [2.5455353111458816, 1.0194988679150585, 1.174087663903683], [2.5545584769692584, 1.0216693311257183, 1.1626472230398077], [2.5638348083681746, 1.0238817964570661, 1.1513188650395358], [2.573361567546405, 1.0261343240799277, 1.140103815408389], [2.5831359837277916, 1.0284249855967238, 1.1290031612774534], [2.5931552564228855, 1.0307518673782943, 1.118017854971361], [2.6034165586355513, 1.0331130737016905, 1.1071487177940909], [2.6139170400037086, 1.0355067296863116, 1.0963964440029896], [2.624653829868915, 1.0379309840271134, 1.0857616049423613], [2.6356240402700104, 1.0403840115248837, 1.0752446533090685], [2.6468247688565834, 1.042864015414748, 1.064845927523821], [2.658253101718502, 1.0453692294951358, 1.0545656561831491], [2.6699061161282818, 1.0478979200604173, 1.044403962568477], [2.68178088319352, 1.0504483876412778, 1.0343608691901658], [2.69387447041711, 1.0530189685576856, 1.024436302345918], [2.7061839441633957, 1.0556080362899731, 1.0146300966744441], [2.7187063720288513, 1.058214002674131, 1.0049419996868374], [2.7314388251162875, 1.0608353189279152, 0.9953716762596122], [2.7443783802119657, 1.0634704765147596, 0.9859187130748631], [2.757522121865371, 1.0661180078528107, 0.9765826229944633], [2.7708671443717363, 1.0687764868766492, 0.9673628493566349], [2.7844105536577226, 1.071444529459432, 0.9582587701845938], [2.798149469070955, 1.074120793703292, 0.9492697022982753], [2.812081025074397, 1.0768039801058888, 0.9403949053213899], [2.82620237284677, 1.0794928316109824, 0.9316335855772356], [2.8405106817904757, 1.0821861335508491, 0.9229848998677989], [2.85500314094866, 1.0848827134882604, 0.9144479591317055], [2.8696769603332486, 1.0875814409655964, 0.9060218319775517], [2.8845293721659466, 1.0902812271684936, 0.8977055480900243], [2.8995576320343264, 1.092981024511225, 0.8894981015070483], [2.9147590199652504, 1.0956798261507794, 0.8813984537669342], [2.930130841417991, 1.0983766654363585, 0.8734055369251897], [2.9456704281994717, 1.1010706153007457, 0.8655182564412633], [2.9613751393041468, 1.1037607875997244, 0.857735493936044], [2.9772423616810717, 1.1064463324054332, 0.8500561098214302], [2.9932695109307748, 1.109126437259257, 0.8424789458037135], [3.0094540319345424, 1.1118003263895524, 0.8350028272629039], [3.025793399418775, 1.1144672598992098, 0.8276265655104509], [3.0422851184570483, 1.11712653292776, 0.8203489599281018], [3.0589267249125225, 1.1197774747924336, 0.8131687999908701], [3.0757157858233133, 1.1224194481122998, 0.8060848671772932], [3.0926498997334355, 1.125051847919323, 0.7990959367703148], [3.10972669697187, 1.1276741007599038, 0.7922007795522578], [3.1269438398822844, 1.130285663790198, 0.7853981633974491]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.8284271247461903, 0.7853981633974483, 1.5707963267948966], [2.8285562501371473, 0.7854438129912305, 1.5572836357815685], [2.8289435909469245, 0.7855807117768233, 1.5437758776076318], [2.8295890411346445, 0.7858087099265647, 1.5302779743165498], [2.8304924241267124, 0.7861275582586283, 1.5167948264189284], [2.8316534930580737, 0.7865369090297875, 1.503331302272992], [2.833071931108899, 0.7870363170380206, 1.489892227639666], [2.834747351935629, 0.7876252410277979, 1.476482375467716], [2.8366793001950112, 0.7883030453889711, 1.463106455962076], [2.8388672521594756, 0.7890690021383917, 1.4497691069856915], [2.8413106164219295, 0.7899222931716845, 1.4364748848419282], [2.8440087346877605, 0.7908620127710589, 1.423228255480902], [2.8469608826516093, 0.7918871703536359, 1.4100335861690618], [2.850166270956209, 0.7929966934435253, 1.39689513765701], [2.853624046230381, 0.7941894308498318, 1.3838170568759856], [2.85733329220305, 0.7954641560318695, 1.3708033701887155], [2.8612930308899562, 0.7968195706321651, 1.3578579772154995], [2.865502223849561, 0.7982543081573119, 1.3449846452515413], [2.869959773504494, 0.7997669377863914, 1.3321870042866957], [2.8746645245247304, 0.8013559682865321, 1.3194685426340562], [2.8796152652685847, 0.803019852015184, 1.3068326031691921], [2.884810729277497, 0.8047569889888748, 1.2942823801774226], [2.890249596820508, 0.8065657309985512, 1.2818209168023302], [2.8959304964842465, 0.8084443857520929, 1.2694511030847926], [2.901852006804227, 0.8103912210252096, 1.2571756745781983], [2.9080126579332113, 0.8124044688026621, 1.2449972115222263], [2.9144109333423938, 0.814482329392597, 1.2329181385546184], [2.9210452715511654, 0.816622975497714, 1.2209407249377988], [2.9279140678812627, 0.8188245562280019, 1.2090670852749645], [2.935015676231121, 0.8210852010408402, 1.1972991806884192], [2.9423484108663414, 0.8234030235953933, 1.1856388204314225], [2.9499105482222308, 0.8257761255093679, 1.174087663903683], [2.957700328714476, 0.8282026000073791, 1.1626472230398077], [2.9657159585541053, 0.8306805354513498, 1.1513188650395358], [2.9739556115630097, 0.8332080187445412, 1.140103815408389], [2.9824174309864087, 0.8357831386019732, 1.1290031612774534], [2.991099531298794, 0.8384039886811276, 1.118017854971361], [2.9999999999999996, 0.8410686705679302, 1.1071487177940909], [3.0091168993982222, 0.8437752966140667, 1.0963964440029896], [3.0184482683769462, 0.8465219926227086, 1.0857616049423613], [3.027992124142901, 0.84930690038068, 1.0752446533090685], [3.0377464639523373, 0.85212818003601, 1.064845927523821], [3.0477092668130696, 0.854984012320659, 1.0545656561831491], [3.0578784951599087, 0.8578726006189963, 1.044403962568477], [3.06825209650127, 0.860792172883326, 1.0343608691901658], [3.078828005034917, 0.8637409833984214, 1.024436302345918], [3.0896041432309698, 0.8667173143976229, 1.0146300966744441], [3.1005784233804667, 0.8697194775335854, 1.0049419996868374], [3.1117487491079463, 0.8727458152072394, 0.9953716762596122], [3.1231130168466645, 0.8757947017589364, 0.9859187130748631], [3.134669117275238, 0.8788645445261078, 0.9765826229944633], [3.146414936714642, 0.8819537847720652, 0.9673628493566349], [3.158348358484657, 0.8850608984908209, 0.9582587701845938], [3.170467264218997, 0.8881843970930021, 0.9492697022982753], [3.1827695351384917, 0.8913228279780897, 0.9403949053213899], [3.195253053281842, 0.8944747749983196, 0.9316335855772356], [3.207915702693575, 0.8976388588196582, 0.9229848998677989], [3.220755370568981, 0.9008137371852949, 0.9144479591317055], [3.233769948355896, 0.9039981050870998, 0.9060218319775517], [3.2469573328133357, 0.9071906948504632, 0.8977055480900243], [3.260315427027074, 0.910390276137881, 0.8894981015070483], [3.2738421413823557, 0.9135956558765701, 0.8813984537669342], [3.2875353944940464, 0.916805678115298, 0.8734055369251897], [3.3013931140945756, 0.9200192238154965, 0.8655182564412633], [3.3154132378801404, 0.9232352105815883, 0.857735493936044], [3.3295937143156835, 0.9264525923353201, 0.8500561098214302], [3.3439325033992513, 0.9296703589387261, 0.8424789458037135], [3.3584275773863723, 0.9328875357701892, 0.8350028272629039], [3.373076921475176, 0.9361031832578891, 0.8276265655104509], [3.387878534453005, 0.9393163963747465, 0.8203489599281018], [3.402830429305326, 0.942526304098797, 0.8131687999908701], [3.417930633787781, 0.9457320688427362, 0.8060848671772932], [3.4331771909622506, 0.9489328858561965, 0.7990959367703148], [3.4485681596978477, 0.9521279826041334, 0.7922007795522578], [3.464101615137753, 0.955316618124509, 0.7853981633974491]], &quot;color&quot;: &quot;#0000ff&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.02702702702702703, 1.5707963267948966, 1.5707963267948966], [0.05405405405405406, 1.5707963267948966, 1.5707963267948966], [0.08108108108108109, 1.5707963267948966, 1.5707963267948966], [0.10810810810810811, 1.5707963267948966, 1.5707963267948966], [0.13513513513513514, 1.5707963267948966, 1.5707963267948966], [0.16216216216216217, 1.5707963267948966, 1.5707963267948966], [0.1891891891891892, 1.5707963267948966, 1.5707963267948966], [0.21621621621621623, 1.5707963267948966, 1.5707963267948966], [0.24324324324324326, 1.5707963267948966, 1.5707963267948966], [0.2702702702702703, 1.5707963267948966, 1.5707963267948966], [0.2972972972972973, 1.5707963267948966, 1.5707963267948966], [0.32432432432432434, 1.5707963267948966, 1.5707963267948966], [0.35135135135135137, 1.5707963267948966, 1.5707963267948966], [0.3783783783783784, 1.5707963267948966, 1.5707963267948966], [0.40540540540540543, 1.5707963267948966, 1.5707963267948966], [0.43243243243243246, 1.5707963267948966, 1.5707963267948966], [0.4594594594594595, 1.5707963267948966, 1.5707963267948966], [0.4864864864864865, 1.5707963267948966, 1.5707963267948966], [0.5135135135135136, 1.5707963267948966, 1.5707963267948966], [0.5405405405405406, 1.5707963267948966, 1.5707963267948966], [0.5675675675675675, 1.5707963267948966, 1.5707963267948966], [0.5945945945945945, 1.5707963267948966, 1.5707963267948966], [0.6216216216216215, 1.5707963267948966, 1.5707963267948966], [0.6486486486486485, 1.5707963267948966, 1.5707963267948966], [0.6756756756756754, 1.5707963267948966, 1.5707963267948966], [0.7027027027027024, 1.5707963267948966, 1.5707963267948966], [0.7297297297297294, 1.5707963267948966, 1.5707963267948966], [0.7567567567567564, 1.5707963267948966, 1.5707963267948966], [0.7837837837837833, 1.5707963267948966, 1.5707963267948966], [0.8108108108108103, 1.5707963267948966, 1.5707963267948966], [0.8378378378378373, 1.5707963267948966, 1.5707963267948966], [0.8648648648648642, 1.5707963267948966, 1.5707963267948966], [0.8918918918918912, 1.5707963267948966, 1.5707963267948966], [0.9189189189189182, 1.5707963267948966, 1.5707963267948966], [0.9459459459459452, 1.5707963267948966, 1.5707963267948966], [0.9729729729729721, 1.5707963267948966, 1.5707963267948966], [0.9999999999999991, 1.5707963267948966, 1.5707963267948966], [1.027027027027026, 1.5707963267948966, 1.5707963267948966], [1.054054054054053, 1.5707963267948966, 1.5707963267948966], [1.08108108108108, 1.5707963267948966, 1.5707963267948966], [1.108108108108107, 1.5707963267948966, 1.5707963267948966], [1.135135135135134, 1.5707963267948966, 1.5707963267948966], [1.162162162162161, 1.5707963267948966, 1.5707963267948966], [1.189189189189188, 1.5707963267948966, 1.5707963267948966], [1.216216216216215, 1.5707963267948966, 1.5707963267948966], [1.2432432432432419, 1.5707963267948966, 1.5707963267948966], [1.2702702702702688, 1.5707963267948966, 1.5707963267948966], [1.2972972972972958, 1.5707963267948966, 1.5707963267948966], [1.3243243243243228, 1.5707963267948966, 1.5707963267948966], [1.3513513513513498, 1.5707963267948966, 1.5707963267948966], [1.3783783783783767, 1.5707963267948966, 1.5707963267948966], [1.4054054054054037, 1.5707963267948966, 1.5707963267948966], [1.4324324324324307, 1.5707963267948966, 1.5707963267948966], [1.4594594594594577, 1.5707963267948966, 1.5707963267948966], [1.4864864864864846, 1.5707963267948966, 1.5707963267948966], [1.5135135135135116, 1.5707963267948966, 1.5707963267948966], [1.5405405405405386, 1.5707963267948966, 1.5707963267948966], [1.5675675675675655, 1.5707963267948966, 1.5707963267948966], [1.5945945945945925, 1.5707963267948966, 1.5707963267948966], [1.6216216216216195, 1.5707963267948966, 1.5707963267948966], [1.6486486486486465, 1.5707963267948966, 1.5707963267948966], [1.6756756756756734, 1.5707963267948966, 1.5707963267948966], [1.7027027027027004, 1.5707963267948966, 1.5707963267948966], [1.7297297297297274, 1.5707963267948966, 1.5707963267948966], [1.7567567567567544, 1.5707963267948966, 1.5707963267948966], [1.7837837837837813, 1.5707963267948966, 1.5707963267948966], [1.8108108108108083, 1.5707963267948966, 1.5707963267948966], [1.8378378378378353, 1.5707963267948966, 1.5707963267948966], [1.8648648648648622, 1.5707963267948966, 1.5707963267948966], [1.8918918918918892, 1.5707963267948966, 1.5707963267948966], [1.9189189189189162, 1.5707963267948966, 1.5707963267948966], [1.9459459459459432, 1.5707963267948966, 1.5707963267948966], [1.9729729729729701, 1.5707963267948966, 1.5707963267948966], [1.9999999999999971, 1.5707963267948966, 1.5707963267948966]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.667214286893172, 0.04051835247834694, 1.5707963267948966], [0.6688544574151563, 0.0809040991552306, 1.5707963267948966], [0.6715791734067706, 0.12102721980920501, 1.5707963267948966], [0.6753753086122996, 0.16076274062583473, 1.5707963267948966], [0.6802249254418979, 0.19999295660618124, 1.5707963267948966], [0.6861056852129647, 0.23860932250820097, 1.5707963267948966], [0.6929913374281869, 0.27651394661747414, 1.5707963267948966], [0.7008522644604225, 0.3136206522166983, 1.5707963267948966], [0.7096560574165037, 0.3498556018570981, 1.5707963267948966], [0.7193681000964731, 0.3851575063634742, 1.5707963267948966], [0.7299521405028703, 0.419477461755361, 1.5707963267948966], [0.7413708328447202, 0.452778471823536, 1.5707963267948966], [0.7535862369635377, 0.4850347218525358, 1.5707963267948966], [0.7665602661687441, 0.5162306706117479, 1.5707963267948966], [0.780255078276563, 0.5463600244489792, 1.5707963267948966], [0.7946334079711692, 0.5754246505352849, 1.5707963267948966], [0.8096588413222097, 0.6034334774382624, 1.5707963267948966], [0.8252960353584711, 0.6304014214735074, 1.5707963267948966], [0.8415108870391624, 0.6563483676631918, 1.5707963267948966], [0.8582706568514994, 0.681298225287849, 1.5707963267948966], [0.8755440526889608, 0.705278070353634, 1.5707963267948966], [0.8933012797290478, 0.7283173809911836, 1.5707963267948966], [0.9115140618289653, 0.7504473668667955, 1.5707963267948966], [0.9301556395776797, 0.7717003900245824, 1.5707963267948966], [0.9492007496542683, 0.7921094720287707, 1.5707963267948966], [0.968625589601125, 0.8117078806503704, 1.5707963267948966], [0.9884077715679235, 0.8305287884521971, 1.5707963267948966], [1.008526268047317, 0.8486049952949083, 1.5707963267948966], [1.0289613521249807, 0.8659687068612465, 1.5707963267948966], [1.0496945343156399, 0.8826513616490138, 1.5707963267948966], [1.0707084976580818, 0.8986834994141024, 1.5707963267948966], [1.0919870323965228, 0.9140946646754622, 1.5707963267948966], [1.1135149712810068, 0.9289133395667047, 1.5707963267948966], [1.1352781262719536, 0.943166900993402, 1.5707963267948966], [1.1572632272287984, 0.9568815977035482, 1.5707963267948966], [1.1794578629948202, 0.9700825434839025, 1.5707963267948966], [1.2018504251546624, 0.9827937232473286, 1.5707963267948966], [1.2244300546329367, 0.9950380092716604, 1.5707963267948966], [1.2471865912173001, 1.0068371852886335, 1.5707963267948966], [1.2701105260235745, 1.0182119765041822, 1.5707963267948966], [1.2931929568704637, 1.0291820839625478, 1.5707963267948966], [1.316425546494257, 1.0397662219507138, 1.5707963267948966], [1.3398004835071053, 1.0499821573815167, 1.5707963267948966], [1.3633104459839227, 1.0598467502982858, 1.5707963267948966], [1.3869485675509858, 1.069375994815724, 1.5707963267948966], [1.4107084058424049, 1.0785850599553302, 1.5707963267948966], [1.4345839131877043, 1.0874883299529625, 1.5707963267948966], [1.4585694093937775, 1.0960994437147213, 1.5707963267948966], [1.482659556486761, 1.1044313331783135, 1.5707963267948966], [1.506849335283247, 1.1124962604032407, 1.5707963267948966], [1.5311340236652857, 1.1203058532668457, 1.5707963267948966], [1.5555091764393971, 1.127871139686574, 1.5707963267948966], [1.5799706066660653, 1.1352025803234342, 1.5707963267948966], [1.6045143683526604, 1.1423100997491185, 1.5707963267948966], [1.6291367404092814, 1.1492031160807639, 1.5707963267948966], [1.6538342117734954, 1.1558905691040215, 1.5707963267948966], [1.678603467616274, 1.162380946917755, 1.5707963267948966], [1.7034413765475285, 1.1686823111431335, 1.5707963267948966], [1.7283449787454868, 1.1748023207466727, 1.5707963267948966], [1.7533114749396854, 1.1807482545314465, 1.5707963267948966], [1.7783382161825834, 1.1865270323536636, 1.5707963267948966], [1.8034226943497105, 1.1921452351234187, 1.5707963267948966], [1.8285625333128548, 1.1976091236489872, 1.5707963267948966], [1.8537554807350727, 1.2029246563837428, 1.5707963267948966], [1.8789994004402861, 1.2080975061338768, 1.5707963267948966], [1.904292265313922, 1.21313307578369, 1.5707963267948966], [1.9296321506944636, 1.2180365130934823, 1.5707963267948966], [1.9550172282189469, 1.2228127246230625, 1.5707963267948966], [1.9804457600883407, 1.2274663888317239, 1.5707963267948966], [2.005916093721449, 1.2320019684032566, 1.5707963267948966], [2.0314266567684363, 1.2364237218422331, 1.5707963267948966], [2.056975952457368, 1.240735714385462, 1.5707963267948966], [2.08256255524924, 1.2449418282701779, 1.5707963267948966], [2.108185106778917, 1.249045772398254, 1.5707963267948966]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.3336072277727418, 0.020267494712221466, 1.5707963267948966], [1.334428573786344, 0.04051835247834694, 1.5707963267948966], [1.3357963615338435, 0.06073601814729037, 1.5707963267948966], [1.3377089148303125, 0.0809040991552306, 1.5707963267948966], [1.3401639013664592, 0.1010064443352257, 1.5707963267948966], [1.3431583468135413, 0.12102721980920501, 1.5707963267948966], [1.3466886526156818, 0.14095098109267076, 1.5707963267948966], [1.350750617224599, 0.16076274062583473, 1.5707963267948966], [1.3553394604899798, 0.18044803004347587, 1.5707963267948966], [1.3604498508837959, 0.19999295660618124, 1.5707963267948966], [1.3660759352093335, 0.21938425333420314, 1.5707963267948966], [1.3722113704259293, 0.23860932250820097, 1.5707963267948966], [1.3788493572084655, 0.2576562723249747, 1.5707963267948966], [1.3859826748563737, 0.27651394661747414, 1.5707963267948966], [1.3936037171698772, 0.29517194766377935, 1.5707963267948966], [1.401704528920845, 0.3136206522166983, 1.5707963267948966], [1.4102768425612597, 0.3318512209819641, 1.5707963267948966], [1.4193121148330075, 0.3498556018570981, 1.5707963267948966], [1.42880156296764, 0.36762652731377815, 1.5707963267948966], [1.4387362001929462, 0.3851575063634742, 1.5707963267948966], [1.4491068702936796, 0.4024428115891483, 1.5707963267948966], [1.4599042810057405, 0.4194774617553609, 1.5707963267948966], [1.471119036055639, 0.4362572005259435, 1.5707963267948966], [1.48274166568944, 0.4527784718235358, 1.5707963267948966], [1.4947626555669493, 0.46903839236001255, 1.5707963267948966], [1.5071724739270753, 0.48503472185253566, 1.5707963267948966], [1.5199615969586868, 0.5007658314181277, 1.5707963267948966], [1.533120532337488, 0.5162306706117477, 1.5707963267948966], [1.5466398409132625, 0.5314287335402802, 1.5707963267948966], [1.5605101565531259, 0.5463600244489789, 1.5707963267948966], [1.5747222041650901, 0.5610250231389446, 1.5707963267948966], [1.589266815942338, 0.5754246505352846, 1.5707963267948966], [1.6041349458821332, 0.589560234686604, 1.5707963267948966], [1.6193176826444189, 0.603433477438262, 1.5707963267948966], [1.6348062608239995, 0.6170464219849842, 1.5707963267948966], [1.6505920707169417, 0.630401421473507, 1.5707963267948966], [1.666666666666666, 0.6435011087932839, 1.5707963267948966], [1.683021774078324, 0.6563483676631913, 1.5707963267948966], [1.6996492951916764, 0.6689463050947615, 1.5707963267948966], [1.716541313702998, 0.6812982252878486, 1.5707963267948966], [1.7336900983257375, 0.6934076049927489, 1.5707963267948966], [1.7510881053779208, 0.7052780703536335, 1.5707963267948966], [1.7687279804817944, 0.7169133752315585, 1.5707963267948966], [1.786602559458095, 0.7283173809911833, 1.5707963267948966], [1.8047048684937557, 0.7394940377234606, 1.5707963267948966], [1.82302812365793, 0.750447366866795, 1.5707963267948966], [1.8415657298370536, 0.7611814451812937, 1.5707963267948966], [1.8603112791553584, 0.771700390024582, 1.5707963267948966], [1.8792585489428675, 0.7820083458730089, 1.5707963267948966], [1.8984014993085359, 0.7921094720287704, 1.5707963267948966], [1.9177342703718836, 0.8020079314513288, 1.5707963267948966], [1.937251179202249, 0.8117078806503699, 1.5707963267948966], [1.9569467165107146, 0.8212134605772364, 1.5707963267948966], [1.976815543135846, 0.8305287884521968, 1.5707963267948966], [1.9968524863606505, 0.8396579504659074, 1.5707963267948966], [2.017052536094633, 0.848604995294908, 1.5707963267948966], [2.0374108409515035, 0.8573739283728415, 1.5707963267948966], [2.057922704249961, 0.8659687068612462, 1.5707963267948966], [2.0785835799621024, 0.8743932352661232, 1.5707963267948966], [2.099389068631279, 0.8826513616490135, 1.5707963267948966], [2.1203349132787457, 0.8907468743839216, 1.5707963267948966], [2.141416995316163, 0.8986834994141022, 1.5707963267948966], [2.162631330478882, 0.9064648979653945, 1.5707963267948966], [2.183974064793045, 0.9140946646754619, 1.5707963267948966], [2.205441470587757, 0.9215763261008957, 1.5707963267948966], [2.227029942562013, 0.9289133395667045, 1.5707963267948966], [2.248735993914598, 0.936109092325166, 1.5707963267948966], [2.2705562525439063, 0.9431669009934016, 1.5707963267948966], [2.2924874573234244, 0.9500900112412953, 1.5707963267948966], [2.314526454457596, 0.956881597703548, 1.5707963267948966], [2.336670193921838, 0.9635447640917008, 1.5707963267948966], [2.35891572598964, 0.9700825434839022, 1.5707963267948966], [2.381260197848941, 0.9764978987720095, 1.5707963267948966], [2.4037008503093236, 0.9827937232473285, 1.5707963267948966]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.0001826067111774, 0.013512691013328216, 1.5707963267948966], [2.0007303268455945, 0.02702044918726479, 1.5707963267948966], [2.001642860679516, 0.04051835247834694, 1.5707963267948966], [2.002919709583665, 0.05400150037596829, 1.5707963267948966], [2.0045601773825577, 0.06746502452190475, 1.5707963267948966], [2.0065633722454685, 0.0809040991552306, 1.5707963267948966], [2.0089282090970952, 0.09431395132718053, 1.5707963267948966], [2.0116534125327994, 0.1076898708328207, 1.5707963267948966], [2.014737520220312, 0.12102721980920501, 1.5707963267948966], [2.01817888676697, 0.13432144195296852, 1.5707963267948966], [2.0219756880289825, 0.1475680713139948, 1.5707963267948966], [2.0261259258368987, 0.16076274062583473, 1.5707963267948966], [2.030627433109388, 0.17390118913788663, 1.5707963267948966], [2.0354778793257005, 0.18697926991891112, 1.5707963267948966], [2.040674776325694, 0.19999295660618124, 1.5707963267948966], [2.0462154844051565, 0.21293834957939717, 1.5707963267948966], [2.0520972186733206, 0.22581168154335537, 1.5707963267948966], [2.058317055638894, 0.23860932250820097, 1.5707963267948966], [2.064871939990709, 0.2513277841608404, 1.5707963267948966], [2.0717586915391135, 0.2639637236257046, 1.5707963267948966], [2.0789740122845606, 0.2765139466174741, 1.5707963267948966], [2.0865144935804087, 0.2889754099925664, 1.5707963267948966], [2.09437662335777, 0.301345223710104, 1.5707963267948966], [2.102556793381267, 0.3136206522166982, 1.5707963267948966], [2.1110513065057845, 0.3257991152726703, 1.5707963267948966], [2.119856383905684, 0.3378781882402783, 1.5707963267948966], [2.128968172249511, 0.3498556018570979, 1.5707963267948966], [2.1383827507948627, 0.3617292415199321, 1.5707963267948966], [2.14809613837985, 0.37349714610647733, 1.5707963267948966], [2.1581043002894194, 0.38515750636347396, 1.5707963267948966], [2.168403154976671, 0.39670866289121365, 1.5707963267948966], [2.1789885806212292, 0.408149103755089, 1.5707963267948966], [2.1898564215086105, 0.41947746175536066, 1.5707963267948966], [2.201002494216468, 0.4306925113865077, 1.5707963267948966], [2.212422593595439, 0.44179316551744335, 1.5707963267948966], [2.22411249853416, 0.4527784718235356, 1.5707963267948966], [2.2360679774997894, 0.46364760900080576, 1.5707963267948966], [2.248284793847072, 0.474399882791907, 1.5707963267948966], [2.2607587108906126, 0.4850347218525354, 1.5707963267948966], [2.2734854967365496, 0.4955516734858281, 1.5707963267948966], [2.2864609288712825, 0.5059503992710758, 1.5707963267948966], [2.2996807985062313, 0.5162306706117474, 1.5707963267948966], [2.3131409146788764, 0.5263923642264197, 1.5707963267948966], [2.3268371081114463, 0.5364354576047308, 1.5707963267948966], [2.3407652348296883, 0.5463600244489787, 1.5707963267948966], [2.3549211795450766, 0.5561662301204525, 1.5707963267948966], [2.3693008588046607, 0.5658543271080592, 1.5707963267948966], [2.383900223913507, 0.5754246505352844, 1.5707963267948966], [2.398715263635322, 0.5848776137200334, 1.5707963267948966], [2.413742006677416, 0.5942137038004334, 1.5707963267948966], [2.428976523966628, 0.6034334774382618, 1.5707963267948966], [2.4444149307232452, 0.6125375566103028, 1.5707963267948966], [2.460053388340239, 0.6215266244966212, 1.5707963267948966], [2.4758881060754123, 0.6304014214735068, 1.5707963267948966], [2.491915342564216, 0.639162741217661, 1.5707963267948966], [2.508131407161119, 0.6478114269270978, 1.5707963267948966], [2.524532661117486, 0.656348367663191, 1.5707963267948966], [2.5411155186039247, 0.664774494817345, 1.5707963267948966], [2.5578764475850457, 0.6730907787048722, 1.5707963267948966], [2.5748119705544967, 0.6812982252878483, 1.5707963267948966], [2.5919186651380497, 0.6893978730279624, 1.5707963267948966], [2.6091931645723596, 0.6973907898697069, 1.5707963267948966], [2.626632158066881, 0.7052780703536333, 1.5707963267948966], [2.6442323910562164, 0.7130608328588527, 1.5707963267948966], [2.661990665349995, 0.7207402169734665, 1.5707963267948966], [2.6799038391871424, 0.728317380991183, 1.5707963267948966], [2.6979688272011773, 0.7357934995319928, 1.5707963267948966], [2.7161826003029415, 0.7431697612844457, 1.5707963267948966], [2.7345421854868945, 0.7504473668667948, 1.5707963267948966], [2.753044665566883, 0.7576275268040266, 1.5707963267948966], [2.771687178847018, 0.7647114596176035, 1.5707963267948966], [2.790466918733037, 0.7717003900245818, 1.5707963267948966], [2.8093811332892873, 0.7785955472426388, 1.5707963267948966], [2.828427124746188, 0.7853981633974476, 1.5707963267948966]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.667214286893172, 1.5707963267948966, 0.04051835247834694], [0.6688544574151563, 1.5707963267948966, 0.0809040991552306], [0.6715791734067706, 1.5707963267948966, 0.12102721980920501], [0.6753753086122996, 1.5707963267948966, 0.16076274062583473], [0.6802249254418979, 1.5707963267948966, 0.19999295660618124], [0.6861056852129647, 1.5707963267948966, 0.23860932250820097], [0.6929913374281869, 1.5707963267948966, 0.27651394661747414], [0.7008522644604225, 1.5707963267948966, 0.3136206522166983], [0.7096560574165037, 1.5707963267948966, 0.3498556018570981], [0.7193681000964731, 1.5707963267948966, 0.3851575063634742], [0.7299521405028703, 1.5707963267948966, 0.419477461755361], [0.7413708328447202, 1.5707963267948966, 0.452778471823536], [0.7535862369635377, 1.5707963267948966, 0.4850347218525358], [0.7665602661687441, 1.5707963267948966, 0.5162306706117479], [0.780255078276563, 1.5707963267948966, 0.5463600244489792], [0.7946334079711692, 1.5707963267948966, 0.5754246505352849], [0.8096588413222097, 1.5707963267948966, 0.6034334774382624], [0.8252960353584711, 1.5707963267948966, 0.6304014214735074], [0.8415108870391624, 1.5707963267948966, 0.6563483676631918], [0.8582706568514994, 1.5707963267948966, 0.681298225287849], [0.8755440526889608, 1.5707963267948966, 0.705278070353634], [0.8933012797290478, 1.5707963267948966, 0.7283173809911836], [0.9115140618289653, 1.5707963267948966, 0.7504473668667955], [0.9301556395776797, 1.5707963267948966, 0.7717003900245824], [0.9492007496542683, 1.5707963267948966, 0.7921094720287707], [0.968625589601125, 1.5707963267948966, 0.8117078806503704], [0.9884077715679235, 1.5707963267948966, 0.8305287884521971], [1.008526268047317, 1.5707963267948966, 0.8486049952949083], [1.0289613521249807, 1.5707963267948966, 0.8659687068612465], [1.0496945343156399, 1.5707963267948966, 0.8826513616490138], [1.0707084976580818, 1.5707963267948966, 0.8986834994141024], [1.0919870323965228, 1.5707963267948966, 0.9140946646754622], [1.1135149712810068, 1.5707963267948966, 0.9289133395667047], [1.1352781262719536, 1.5707963267948966, 0.943166900993402], [1.1572632272287984, 1.5707963267948966, 0.9568815977035482], [1.1794578629948202, 1.5707963267948966, 0.9700825434839025], [1.2018504251546624, 1.5707963267948966, 0.9827937232473286], [1.2244300546329367, 1.5707963267948966, 0.9950380092716604], [1.2471865912173001, 1.5707963267948966, 1.0068371852886335], [1.2701105260235745, 1.5707963267948966, 1.0182119765041822], [1.2931929568704637, 1.5707963267948966, 1.0291820839625478], [1.316425546494257, 1.5707963267948966, 1.0397662219507138], [1.3398004835071053, 1.5707963267948966, 1.0499821573815167], [1.3633104459839227, 1.5707963267948966, 1.0598467502982858], [1.3869485675509858, 1.5707963267948966, 1.069375994815724], [1.4107084058424049, 1.5707963267948966, 1.0785850599553302], [1.4345839131877043, 1.5707963267948966, 1.0874883299529625], [1.4585694093937775, 1.5707963267948966, 1.0960994437147213], [1.482659556486761, 1.5707963267948966, 1.1044313331783135], [1.506849335283247, 1.5707963267948966, 1.1124962604032407], [1.5311340236652857, 1.5707963267948966, 1.1203058532668457], [1.5555091764393971, 1.5707963267948966, 1.127871139686574], [1.5799706066660653, 1.5707963267948966, 1.1352025803234342], [1.6045143683526604, 1.5707963267948966, 1.1423100997491185], [1.6291367404092814, 1.5707963267948966, 1.1492031160807639], [1.6538342117734954, 1.5707963267948966, 1.1558905691040215], [1.678603467616274, 1.5707963267948966, 1.162380946917755], [1.7034413765475285, 1.5707963267948966, 1.1686823111431335], [1.7283449787454868, 1.5707963267948966, 1.1748023207466727], [1.7533114749396854, 1.5707963267948966, 1.1807482545314465], [1.7783382161825834, 1.5707963267948966, 1.1865270323536636], [1.8034226943497105, 1.5707963267948966, 1.1921452351234187], [1.8285625333128548, 1.5707963267948966, 1.1976091236489872], [1.8537554807350727, 1.5707963267948966, 1.2029246563837428], [1.8789994004402861, 1.5707963267948966, 1.2080975061338768], [1.904292265313922, 1.5707963267948966, 1.21313307578369], [1.9296321506944636, 1.5707963267948966, 1.2180365130934823], [1.9550172282189469, 1.5707963267948966, 1.2228127246230625], [1.9804457600883407, 1.5707963267948966, 1.2274663888317239], [2.005916093721449, 1.5707963267948966, 1.2320019684032566], [2.0314266567684363, 1.5707963267948966, 1.2364237218422331], [2.056975952457368, 1.5707963267948966, 1.240735714385462], [2.08256255524924, 1.5707963267948966, 1.2449418282701779], [2.108185106778917, 1.5707963267948966, 1.249045772398254]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.9431963470448814, 0.7858087099265647, 0.04051835247834694], [0.944357310369633, 0.7870363170380207, 0.0809040991552306], [0.9462890840531585, 0.7890690021383917, 0.12102721980920501], [0.9489869608838697, 0.7918871703536359, 0.16076274062583473], [0.95244443073435, 0.7954641560318695, 0.19999295660618124], [0.9566532578348312, 0.7997669377863914, 0.23860932250820097], [0.9616035764258324, 0.8047569889888748, 0.27651394661747414], [0.9672840022680755, 0.8103912210252097, 0.3136206522166983], [0.973681757183722, 0.8166229754977141, 0.3498556018570981], [0.9807828036221138, 0.8234030235953933, 0.3851575063634742], [0.9885719861847019, 0.8306805354513499, 0.419477461755361], [0.997033177099598, 0.8384039886811278, 0.452778471823536], [1.0061494227923153, 0.8465219926227087, 0.4850347218525358], [1.0159030889376899, 0.8549840123206591, 0.5162306706117479], [1.026276001678306, 0.8637409833984216, 0.5463600244489792], [1.0372495830359822, 0.8727458152072395, 0.5754246505352849], [1.0488049789048808, 0.8819537847720654, 0.6034334774382624], [1.0609231783794975, 0.8913228279780898, 0.6304014214735074], [1.073585123522994, 0.9008137371852952, 0.6563483676631918], [1.086771809009025, 0.9103902761378814, 0.681298225287849], [1.100464371364859, 0.9200192238154967, 0.705278070353634], [1.1146441677997507, 0.9296703589387263, 0.7283173809911836], [1.1292928448176687, 0.9393163963747468, 0.7504473668667955], [1.1443923969874175, 0.9489328858561968, 0.7717003900245824], [1.1599252163776204, 0.9584980823682857, 0.7921094720287707], [1.1758741332619624, 0.9679927963895686, 0.8117078806503704], [1.1922224487654611, 0.9774002309772627, 0.8305287884521971], [1.2089539601597297, 0.9867058115307328, 0.8486049952949083], [1.226052979528745, 0.9958970129884085, 0.8659687068612465], [1.2435043465209812, 1.0049631882388748, 0.8826513616490138], [1.2612934358830505, 1.0138954006683354, 0.8986834994141024], [1.2794061604379623, 1.0226862630268572, 0.9140946646754622], [1.2978289701310362, 1.0313297841710505, 0.9289133395667047], [1.3165488477211935, 1.0398212247231957, 0.943166900993402], [1.3355533016470955, 1.0481569622659772, 0.9568815977035482], [1.3548303565482849, 1.056334366356486, 0.9700825434839025], [1.3743685418725529, 1.064351683381396, 0.9827937232473286], [1.3941568789533194, 1.0722079310760297, 0.9950380092716604], [1.4141848668956523, 1.07990280238306, 1.0068371852886335], [1.4344424675672167, 1.0874365782225277, 1.0182119765041822], [1.454920089951272, 1.094810048675502, 1.0291820839625478], [1.4756085740829603, 1.1020244420419807, 1.0397662219507138], [1.4964991747576468, 1.109081361213534, 1.0499821573815167], [1.5175835451708506, 1.115982726797683, 1.0598467502982858], [1.5388537206233008, 1.122730726439947, 1.069375994815724], [1.5603021024016033, 1.1293277698074702, 1.0785850599553302], [1.5819214419247851, 1.135776448722472, 1.0874883299529625], [1.6037048252293054, 1.1420795019622367, 1.0960994437147213], [1.6256456578498166, 1.148239784273324, 1.1044313331783135], [1.6477376501397325, 1.154260239179798, 1.1124962604032407], [1.6699748030643733, 1.1601438751975812, 1.1203058532668457], [1.6923513944898134, 1.1658937450987858, 1.127871139686574], [1.7148619659824458, 1.171512927900556, 1.1352025803234342], [1.737501310127443, 1.1770045132821951, 1.1423100997491185], [1.7602644583686347, 1.1823715881619323, 1.1492031160807639], [1.7831466693676388, 1.1876172251904602, 1.1558905691040215], [1.8061434178762836, 1.1927444729422905, 1.162380946917755], [1.8292503841132801, 1.19775634760804, 1.1686823111431335], [1.852463443633688, 1.202655826010993, 1.1748023207466727], [1.8757786576778241, 1.2074458397897672, 1.1807482545314465], [1.8991922639848493, 1.2121292706057303, 1.1865270323536636], [1.9227006680552265, 1.2167089462490557, 1.1921452351234187], [1.9463004348455482, 1.2211876375310908, 1.1976091236489872], [1.9699882808787885, 1.2255680558631377, 1.2029246563837428], [1.993761066752834, 1.2298528514329266, 1.2080975061338768], [2.017615790030122, 1.2340446119001, 1.21313307578369], [2.0415495784913444, 1.2381458615410157, 1.2180365130934823], [2.0655596837364296, 1.242159060781227, 1.2228127246230625], [2.0896434751163486, 1.2460866060611853, 1.2274663888317239], [2.1137984339797304, 1.24993082998712, 1.2320019684032566], [2.1380221482187296, 1.253694001724766, 1.2364237218422331], [2.162312307099125, 1.257378327598693, 1.240735714385462], [2.1866666963601675, 1.2609859518645088, 1.2449418282701779], [2.211083193570264, 1.264518957625227, 1.249045772398254]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.490956968665475, 0.4639761271539334, 0.04051835247834694], [1.4916916782572398, 0.4649594217054171, 0.0809040991552306], [1.4929153907477473, 0.4665907670491359, 0.12102721980920501], [1.4946269050371521, 0.468859131278367, 0.16076274062583473], [1.496824547824565, 0.4717494322885845, 0.19999295660618124], [1.4995061817342834, 0.47524287721756386, 0.23860932250820097], [1.5026692156054455, 0.4793173683011342, 0.27651394661747414], [1.506310616830765, 0.48394795614393205, 0.3136206522166983], [1.5104269256093503, 0.48910732084145725, 0.3498556018570981], [1.5150142709605698, 0.49476626220707515, 0.3851575063634742], [1.5200683883307684, 0.5008941822875628, 0.419477461755361], [1.525584638612572, 0.5074595460516103, 0.452778471823536], [1.5315580283876427, 0.5144303092499168, 0.4850347218525358], [1.5379832311980757, 0.5217743056479294, 0.5162306706117479], [1.5448546096491227, 0.5294595888615341, 0.5463600244489792], [1.5521662381464338, 0.5374547266990508, 0.5754246505352849], [1.5599119260743541, 0.5457290481247112, 0.6034334774382624], [1.5680852412277173, 0.5542528446720709, 0.6304014214735074], [1.5766795333177936, 0.5629975293650494, 0.6563483676631918], [1.5856879573831926, 0.5719357569988301, 0.681298225287849], [1.5951034969483289, 0.5810415100612932, 0.705278070353634], [1.6049189867851064, 0.5902901547133679, 0.7283173809911836], [1.6151271351474832, 0.5996584711669611, 0.7504473668667955], [1.6257205453631753, 0.6091246625675476, 0.7717003900245824], [1.6366917366816522, 0.6186683461602183, 0.7921094720287707], [1.6480331642924861, 0.6282705301368549, 0.8117078806503704], [1.6597372384427742, 0.6379135791612601, 0.8305287884521971], [1.6717963425965576, 0.6475811711722327, 0.8486049952949083], [1.684202850592721, 0.6572582476876125, 0.8659687068612465], [1.6969491427706092, 0.6669309594849487, 0.8826513616490138], [1.7100276210444685, 0.6765866092217271, 0.8986834994141024], [1.723430722918662, 0.6862135922817666, 0.9140946646754622], [1.7371509344454554, 0.6958013368939043, 0.9289133395667047], [1.7511808021359003, 0.7053402443624334, 0.943166900993402], [1.7655129438420414, 0.714821630073107, 0.9568815977035482], [1.7801400586352991, 0.7242376657906276, 0.9700825434839025], [1.7950549357115009, 0.7335813236400829, 0.9827937232473286], [1.8102504623576798, 0.7428463220625371, 0.9950380092716604], [1.8257196310195076, 0.7520270739509436, 1.0068371852886335], [1.8414555455111206, 0.7611186371039619, 1.0182119765041822], [1.85745142641124, 0.7701166670797587, 1.0291820839625478], [1.8737006156909062, 0.7790173724873086, 1.0397662219507138], [1.8901965806189711, 0.7878174727172776, 1.0499821573815167], [1.9069329169917488, 0.7965141580867146, 1.0598467502982858], [1.9239033517330097, 0.8051050523501783, 1.069375994815724], [1.9411017449098842, 0.8135881775134737, 1.0785850599553302], [1.958522091209268, 0.8219619208739335, 1.0874883299529625], [1.976158520918069, 0.8302250042023888, 1.0960994437147213], [1.9940053004491478, 0.8383764549759724, 1.1044313331783135], [2.0120568324531343, 0.8464155795671576, 1.1124962604032407], [2.0303076555545037, 0.8543419382925127, 1.1203058532668457], [2.0487524437483775, 0.8621553222241742, 1.127871139686574], [2.067386005492567, 0.869855731667713, 1.1352025803234342], [2.0862032825273555, 0.8774433562116393, 1.1423100997491185], [2.105199348453527, 0.8849185562560451, 1.1492031160807639], [2.1243694070971357, 0.8922818459306735, 1.1558905691040215], [2.1437087906875685, 0.8995338773158666, 1.162380946917755], [2.163212957873523, 0.906675425883286, 1.1686823111431335], [2.182877491599681, 0.9137073770769234, 1.1748023207466727], [2.202698096865059, 0.9206307139586397, 1.1807482545314465], [2.2226705983823223, 0.9274465058462488, 1.1865270323536636], [2.242790938155705, 0.9341558978759252, 1.1921452351234187], [2.2630551729936466, 0.9407601014244503, 1.1976091236489872], [2.2834594719707852, 0.9472603853304578, 1.2029246563837428], [2.3040001138525867, 0.9536580678574124, 1.2080975061338768], [2.3246734844945873, 0.9599545093444971, 1.21313307578369], [2.345476074227047, 0.9661511054949098, 1.2180365130934823], [2.3664044752346696, 0.9722492812542641, 1.2228127246230625], [2.387455378940026, 0.9782504852348327, 1.2274663888317239], [2.4086255733983424, 0.9841561846442808, 1.2320019684032566], [2.4299119407104373, 0.9899678606802966, 1.2364237218422331], [2.4513114544597703, 0.9956870043551419, 1.240735714385462], [2.4728211771788153, 1.0013151127166162, 1.2449418282701779], [2.494438257849292, 1.0068536854342673, 1.249045772398254]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.1083583435067115, 0.321996963252811, 0.04051835247834694], [2.10887796830545, 0.3227347369377746, 0.0809040991552306], [2.109743725231508, 0.32395955107731633, 0.12102721980920501], [2.110955188411909, 0.3256643107375825, 0.16076274062583473], [2.1125117630897194, 0.3278393125048534, 0.19999295660618124], [2.1144126870792164, 0.33047245913749734, 0.23860932250820097], [2.1166570326225522, 0.33354951594719695, 0.27651394661747414], [2.119243708637424, 0.337054396756164, 0.3136206522166983], [2.1221714633431334, 0.34096946694743846, 0.3498556018570981], [2.125438887250445, 0.3452758516861369, 0.3851575063634742], [2.1290444164988016, 0.34995373866451907, 0.419477461755361], [2.132986336522781, 0.35498266648922744, 0.452778471823536], [2.1372627860281628, 0.36034179185189624, 0.4850347218525358], [2.1418717612566573, 0.3660101306932522, 0.5162306706117479], [2.146811120517212, 0.37196677051699467, 0.5463600244489792], [2.1520785889608853, 0.3781910527159012, 0.5754246505352849], [2.15767176357555, 0.3846627251727191, 0.6034334774382624], [2.163588118376141, 0.39136206647061345, 0.6304014214735074], [2.1698250097658653, 0.3982699838040513, 0.6563483676631918], [2.1763796820436236, 0.40536808715519435, 0.681298225287849], [2.183249273032974, 0.4126387425394974, 0.705278070353634], [2.190430819808184, 0.42006510717759077, 0.7283173809911836], [2.1979212644933255, 0.4276311493672008, 0.7504473668667955], [2.2057174601109186, 0.43532165565197967, 0.7717003900245824], [2.2138161764573465, 0.4431222276496784, 0.7921094720287707], [2.2222141059830682, 0.4510192706385147, 0.8117078806503704], [2.230907869656627, 0.4589999757290958, 0.8305287884521971], [2.2398940227924733, 0.4670522971848198, 0.8486049952949083], [2.2491690608237676, 0.475164926206087, 0.8659687068612465], [2.258729425002501, 0.48332726226864736, 0.8826513616490138], [2.2685715080105426, 0.49152938290672166, 0.8986834994141024], [2.278691659466494, 0.49976201265771686, 0.9140946646754622], [2.2890861913145475, 0.5080164917365451, 0.9289133395667047], [2.2997513830828664, 0.5162847448819798, 0.943166900993402], [2.310683487000332, 0.5245592507128781, 0.9568815977035482], [2.321878732961803, 0.5328330118460044, 0.9700825434839025], [2.333333333333333, 0.5410995259571455, 0.9827937232473286], [2.345043487590031, 0.5493527579108508, 0.9950380092716604], [2.3570053867804863, 0.5575871130393275, 1.0068371852886335], [2.369215217812827, 0.5657974116158236, 1.0182119765041822], [2.3816691675586203, 0.5739788645405652, 1.0291820839625478], [2.394363426771864, 0.5821270502365273, 1.0397662219507138], [2.4072941938213273, 0.5902378927367604, 1.0499821573815167], [2.420457678235437, 0.5983076409336457, 1.0598467502982858], [2.4338501040597653, 0.6063328489524367, 1.069375994815724], [2.4474677130279816, 0.6143103576060525, 1.0785850599553302], [2.4613067675478706, 0.6222372768847498, 1.0874883299529625], [2.475363553504679, 0.630110969432517, 1.0960994437147213], [2.489634382884667, 0.6379290349614612, 1.1044313331783135], [2.5041155962222597, 0.6456892955557603, 1.1124962604032407], [2.5188035648746903, 0.653389781817711, 1.1203058532668457], [2.5336946931284303, 0.6610287198098138, 1.127871139686574], [2.5487854201420594, 0.668604518748564, 1.1352025803234342], [2.56407222173053, 0.676115759407539, 1.1423100997491185], [2.5795516119960418, 0.6835611831894048, 1.1492031160807639], [2.595220144810929, 0.6909396818285427, 1.1558905691040215], [2.6110744151581318, 0.6982502876880723, 1.162380946917755], [2.6271110603349337, 0.7054921646170851, 1.1686823111431335], [2.6433267610257225, 0.7126645993358748, 1.1748023207466727], [2.659718242249576, 0.7197669933188481, 1.1807482545314465], [2.676282274188478, 0.7267988551466047, 1.1865270323536636], [2.693015672901955, 0.7337597933003875, 1.1921452351234187], [2.7099153009338734, 0.7406495093737158, 1.1976091236489872], [2.72697806781707, 0.7474677916775355, 1.2029246563837428], [2.7442009304813952, 0.7542145092166409, 1.2080975061338768], [2.7615808935706427, 0.7608896060164533, 1.21313307578369], [2.7791150096737165, 0.7674930957804917, 1.2180365130934823], [2.7968003794752483, 0.7740250568600314, 1.2228127246230625], [2.8146341518307287, 0.7804856275185292, 1.2274663888317239], [2.832613523771063, 0.7868750014744167, 1.2320019684032566], [2.850735740441296, 0.7931934237068018, 1.2364237218422331], [2.8689980949780876, 0.7994411865095106, 1.240735714385462], [2.8873979283303237, 0.8056186257797223, 1.2449418282701779], [2.9059326290271135, 0.8117261175282326, 1.249045772398254]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.3336072277727418, 1.5707963267948966, 0.020267494712221466], [1.334428573786344, 1.5707963267948966, 0.04051835247834694], [1.3357963615338435, 1.5707963267948966, 0.06073601814729037], [1.3377089148303125, 1.5707963267948966, 0.0809040991552306], [1.3401639013664592, 1.5707963267948966, 0.1010064443352257], [1.3431583468135413, 1.5707963267948966, 0.12102721980920501], [1.3466886526156818, 1.5707963267948966, 0.14095098109267076], [1.350750617224599, 1.5707963267948966, 0.16076274062583473], [1.3553394604899798, 1.5707963267948966, 0.18044803004347587], [1.3604498508837959, 1.5707963267948966, 0.19999295660618124], [1.3660759352093335, 1.5707963267948966, 0.21938425333420314], [1.3722113704259293, 1.5707963267948966, 0.23860932250820097], [1.3788493572084655, 1.5707963267948966, 0.2576562723249747], [1.3859826748563737, 1.5707963267948966, 0.27651394661747414], [1.3936037171698772, 1.5707963267948966, 0.29517194766377935], [1.401704528920845, 1.5707963267948966, 0.3136206522166983], [1.4102768425612597, 1.5707963267948966, 0.3318512209819641], [1.4193121148330075, 1.5707963267948966, 0.3498556018570981], [1.42880156296764, 1.5707963267948966, 0.36762652731377815], [1.4387362001929462, 1.5707963267948966, 0.3851575063634742], [1.4491068702936796, 1.5707963267948966, 0.4024428115891483], [1.4599042810057405, 1.5707963267948966, 0.4194774617553609], [1.471119036055639, 1.5707963267948966, 0.4362572005259435], [1.48274166568944, 1.5707963267948966, 0.4527784718235358], [1.4947626555669493, 1.5707963267948966, 0.46903839236001255], [1.5071724739270753, 1.5707963267948966, 0.48503472185253566], [1.5199615969586868, 1.5707963267948966, 0.5007658314181277], [1.533120532337488, 1.5707963267948966, 0.5162306706117477], [1.5466398409132625, 1.5707963267948966, 0.5314287335402802], [1.5605101565531259, 1.5707963267948966, 0.5463600244489789], [1.5747222041650901, 1.5707963267948966, 0.5610250231389446], [1.589266815942338, 1.5707963267948966, 0.5754246505352846], [1.6041349458821332, 1.5707963267948966, 0.589560234686604], [1.6193176826444189, 1.5707963267948966, 0.603433477438262], [1.6348062608239995, 1.5707963267948966, 0.6170464219849842], [1.6505920707169417, 1.5707963267948966, 0.630401421473507], [1.666666666666666, 1.5707963267948966, 0.6435011087932839], [1.683021774078324, 1.5707963267948966, 0.6563483676631913], [1.6996492951916764, 1.5707963267948966, 0.6689463050947615], [1.716541313702998, 1.5707963267948966, 0.6812982252878486], [1.7336900983257375, 1.5707963267948966, 0.6934076049927489], [1.7510881053779208, 1.5707963267948966, 0.7052780703536335], [1.7687279804817944, 1.5707963267948966, 0.7169133752315585], [1.786602559458095, 1.5707963267948966, 0.7283173809911833], [1.8047048684937557, 1.5707963267948966, 0.7394940377234606], [1.82302812365793, 1.5707963267948966, 0.750447366866795], [1.8415657298370536, 1.5707963267948966, 0.7611814451812937], [1.8603112791553584, 1.5707963267948966, 0.771700390024582], [1.8792585489428675, 1.5707963267948966, 0.7820083458730089], [1.8984014993085359, 1.5707963267948966, 0.7921094720287704], [1.9177342703718836, 1.5707963267948966, 0.8020079314513288], [1.937251179202249, 1.5707963267948966, 0.8117078806503699], [1.9569467165107146, 1.5707963267948966, 0.8212134605772364], [1.976815543135846, 1.5707963267948966, 0.8305287884521968], [1.9968524863606505, 1.5707963267948966, 0.8396579504659074], [2.017052536094633, 1.5707963267948966, 0.848604995294908], [2.0374108409515035, 1.5707963267948966, 0.8573739283728415], [2.057922704249961, 1.5707963267948966, 0.8659687068612462], [2.0785835799621024, 1.5707963267948966, 0.8743932352661232], [2.099389068631279, 1.5707963267948966, 0.8826513616490135], [2.1203349132787457, 1.5707963267948966, 0.8907468743839216], [2.141416995316163, 1.5707963267948966, 0.8986834994141022], [2.162631330478882, 1.5707963267948966, 0.9064648979653945], [2.183974064793045, 1.5707963267948966, 0.9140946646754619], [2.205441470587757, 1.5707963267948966, 0.9215763261008957], [2.227029942562013, 1.5707963267948966, 0.9289133395667045], [2.248735993914598, 1.5707963267948966, 0.936109092325166], [2.2705562525439063, 1.5707963267948966, 0.9431669009934016], [2.2924874573234244, 1.5707963267948966, 0.9500900112412953], [2.314526454457596, 1.5707963267948966, 0.956881597703548], [2.336670193921838, 1.5707963267948966, 0.9635447640917008], [2.35891572598964, 1.5707963267948966, 0.9700825434839022], [2.381260197848941, 1.5707963267948966, 0.9764978987720095], [2.4037008503093236, 1.5707963267948966, 0.9827937232473285]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.490956968665475, 1.1072308726246773, 0.020267494712221466], [1.4916916782572398, 1.1074770741406927, 0.04051835247834694], [1.4929153907477473, 1.1078865357602878, 0.06073601814729037], [1.4946269050371521, 1.1084579542905721, 0.0809040991552306], [1.496824547824565, 1.1091895214502487, 0.1010064443352257], [1.4995061817342834, 1.1100789397202397, 0.12102721980920501], [1.5026692156054455, 1.1111234422509506, 0.14095098109267076], [1.506310616830765, 1.112319816490697, 0.16076274062583473], [1.5104269256093503, 1.1136644311449533, 0.18044803004347587], [1.51501427096057, 1.1151532660317254, 0.19999295660618124], [1.5200683883307684, 1.1167819443653204, 0.21938425333420314], [1.525584638612572, 1.118545766979473, 0.23860932250820097], [1.5315580283876424, 1.1204397479911805, 0.2576562723249747], [1.5379832311980755, 1.12245865140826, 0.27651394661747414], [1.5448546096491227, 1.1245970281958084, 0.29517194766377935], [1.5521662381464338, 1.1268492533383596, 0.3136206522166983], [1.5599119260743541, 1.129209562464307, 0.3318512209819641], [1.5680852412277173, 1.1316720876356483, 0.3498556018570981], [1.5766795333177936, 1.1342308919478028, 0.36762652731377815], [1.5856879573831926, 1.1368800026296069, 0.3851575063634742], [1.5951034969483289, 1.1396134423811035, 0.4024428115891483], [1.6049189867851064, 1.142425258735042, 0.4194774617553609], [1.6151271351474834, 1.1453095512757847, 0.4362572005259435], [1.6257205453631753, 1.148260496595522, 0.4527784718235358], [1.6366917366816522, 1.15127237091137, 0.46903839236001255], [1.6480331642924861, 1.154339570307357, 0.48503472185253566], [1.6597372384427742, 1.1574566286019514, 0.5007658314181277], [1.6717963425965576, 1.1606182328742691, 0.5162306706117477], [1.684202850592721, 1.163819236710239, 0.5314287335402802], [1.6969491427706094, 1.1670546712537457, 0.5463600244489789], [1.7100276210444685, 1.1703197541671706, 0.5610250231389446], [1.723430722918662, 1.1736098966210091, 0.5754246505352846], [1.7371509344454554, 1.1769207084436042, 0.589560234686604], [1.7511808021359003, 1.1802480015698094, 0.603433477438262], [1.7655129438420414, 1.1835877919319522, 0.6170464219849842], [1.7801400586352991, 1.1869362999381818, 0.630401421473507], [1.7950549357115009, 1.1902899496825317, 0.6435011087932839], [1.8102504623576798, 1.1936453670282068, 0.6563483676631913], [1.8257196310195076, 1.1969993767010665, 0.6689463050947615], [1.8414555455111206, 1.2003489985243754, 0.6812982252878486], [1.85745142641124, 1.2036914429189387, 0.6934076049927489], [1.8737006156909062, 1.2070241057850346, 0.7052780703536335], [1.8901965806189711, 1.210344562874324, 0.7169133752315585], [1.9069329169917488, 1.2136505637514194, 0.7283173809911833], [1.9239033517330097, 1.2169400254361813, 0.7394940377234606], [1.9411017449098842, 1.2202110258092558, 0.750447366866795], [1.958522091209268, 1.2234617968550174, 0.7611814451812937], [1.9761585209180692, 1.2266907178079935, 0.771700390024582], [1.9940053004491478, 1.2298963082611496, 0.7820083458730089], [2.0120568324531347, 1.233077221287136, 0.7921094720287704], [2.0303076555545037, 1.236232236616779, 0.8020079314513288], [2.0487524437483775, 1.2393602539127806, 0.8117078806503699], [2.067386005492567, 1.242460286170765, 0.8212134605772364], [2.0862032825273555, 1.2455314532744948, 0.8305287884521968], [2.105199348453527, 1.2485729757272446, 0.8396579504659074], [2.1243694070971357, 1.2515841685769773, 0.848604995294908], [2.1437087906875685, 1.2545644355490735, 0.8573739283728415], [2.1632129578735233, 1.2575132633969, 0.8659687068612462], [2.182877491599681, 1.2604302164774674, 0.8743932352661232], [2.202698096865059, 1.2633149315567385, 0.8826513616490135], [2.2226705983823223, 1.2661671128468324, 0.8907468743839216], [2.242790938155705, 1.2689865272753766, 0.8986834994141022], [2.2630551729936466, 1.2717729999855334, 0.9064648979653945], [2.2834594719707857, 1.2745264100638, 0.9140946646754619], [2.3040001138525867, 1.277246686491464, 0.9215763261008957], [2.3246734844945873, 1.2799338043146076, 0.9289133395667045], [2.345476074227047, 1.2825877810267565, 0.936109092325166], [2.3664044752346696, 1.285208673157622, 0.9431669009934016], [2.387455378940026, 1.28779657306091, 0.9500900112412953], [2.4086255733983424, 1.2903516058938045, 0.956881597703548], [2.4299119407104373, 1.2928739267804905, 0.9635447640917008], [2.4513114544597703, 1.2953637181519266, 0.9700825434839022], [2.4728211771788153, 1.2978211872540157, 0.9764978987720095], [2.494438257849292, 1.3002465638163234, 0.9827937232473285]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.8858117657246376, 0.7855008632635195, 0.020267494712221466], [1.8863926940897628, 0.7858087099265647, 0.04051835247834694], [1.8873605106774995, 0.7863209463952674, 0.06073601814729037], [1.888714620739266, 0.7870363170380207, 0.0809040991552306], [1.8904541941828548, 0.7879530765210163, 0.1010064443352257], [1.892578168106317, 0.7890690021383917, 0.12102721980920501], [1.8950852500248156, 0.7903814093567949, 0.14095098109267076], [1.8979739217677394, 0.7918871703536359, 0.16076274062583473], [1.9012424440189228, 0.79358273529054, 0.18044803004347587], [1.9048888614687, 0.7954641560318695, 0.19999295660618124], [1.908911008542785, 0.7975271119931757, 0.21938425333420314], [1.9133065156696625, 0.7997669377863914, 0.23860932250820097], [1.9180728160453075, 0.8021786523175679, 0.2576562723249747], [1.9232071528516648, 0.8047569889888748, 0.27651394661747414], [1.9287065868834161, 0.807496426659067, 0.29517194766377935], [1.934568004536151, 0.8103912210252097, 0.3136206522166983], [1.940788126108137, 0.8134354361024934, 0.3318512209819641], [1.947363514367444, 0.8166229754977141, 0.3498556018570981], [1.954290583336201, 0.8199476131946626, 0.36762652731377815], [1.9615656072442276, 0.8234030235953933, 0.3851575063634742], [1.9691847296051532, 0.8269828105893064, 0.4024428115891483], [1.9771439723694038, 0.8306805354513499, 0.4194774617553609], [1.985439245110021, 0.8344897434006829, 0.4362572005259435], [1.9940663541991959, 0.8384039886811278, 0.4527784718235358], [2.003021011935555, 0.84241685805408, 0.46903839236001255], [2.0122988455846307, 0.8465219926227087, 0.48503472185253566], [2.0218954062975114, 0.8507131079328544, 0.5007658314181277], [2.0318061778753798, 0.8549840123206591, 0.5162306706117477], [2.0420265853504405, 0.8593286234994374, 0.5314287335402802], [2.0525520033566114, 0.8637409833984215, 0.5463600244489789], [2.0633777642662374, 0.868215271283735, 0.5610250231389446], [2.074499166071964, 0.8727458152072394, 0.5754246505352846], [2.085911479995748, 0.8773271018417934, 0.589560234686604], [2.097609957809761, 0.8819537847720653, 0.603433477438262], [2.1095898388566257, 0.8866206913184568, 0.6170464219849842], [2.121846356758995, 0.8913228279780897, 0.630401421473507], [2.134374745810949, 0.8960553845713438, 0.6435011087932839], [2.1471702470459877, 0.900813737185295, 0.6563483676631913], [2.1602281139785537, 0.905593450006779, 0.6689463050947615], [2.173543618018049, 0.9103902761378811, 0.6812982252878486], [2.1871120535561235, 0.915200157485605, 0.6934076049927489], [2.200928742729717, 0.9200192238154965, 0.7052780703536335], [2.214989039863851, 0.924843791056223, 0.7169133752315585], [2.229288335599501, 0.9296703589387262, 0.7283173809911833], [2.2438220607131134, 0.9344956080496802, 0.7394940377234606], [2.258585689635337, 0.9393163963747466, 0.750447366866795], [2.2735747436774663, 0.9441297554026185, 0.7611814451812937], [2.288784793974834, 0.9489328858561966, 0.771700390024582], [2.304211464157018, 0.953723153112512, 0.7820083458730089], [2.3198504327552403, 0.9584980823682856, 0.7921094720287704], [2.3356974353577047, 0.9632553536033458, 0.8020079314513288], [2.351748266523924, 0.9679927963895684, 0.8117078806503699], [2.3679987814692485, 0.9727083845885829, 0.8212134605772364], [2.3844448975309214, 0.9774002309772625, 0.8305287884521968], [2.4010825954270065, 0.9820665818359718, 0.8396579504659074], [2.4179079203194584, 0.9867058115307326, 0.848604995294908], [2.434916982692529, 0.991316417116878, 0.8573739283728415], [2.4521059590574894, 0.9958970129884084, 0.8659687068612462], [2.4694710924944734, 1.0004463255941425, 0.8743932352661232], [2.4870086930419615, 1.0049631882388745, 0.8826513616490135], [2.5047151379441464, 1.009446535985086, 0.8907468743839216], [2.5225868717661, 1.0138954006683352, 0.8986834994141022], [2.540620406386329, 1.0183089060372277, 0.9064648979653945], [2.5588123208759237, 1.022686263026857, 0.9140946646754619], [2.577159261273169, 1.0270267651727916, 0.9215763261008957], [2.5956579402620714, 1.0313297841710503, 0.9289133395667045], [2.6143051367628938, 1.0355947655880484, 0.936109092325166], [2.633097695442386, 1.0398212247231957, 0.9431669009934016], [2.652032526151027, 1.0440087426256832, 0.9500900112412953], [2.67110660329419, 1.048156962265977, 0.956881597703548], [2.690316965143791, 1.0522655848616598, 0.9635447640917008], [2.7096607130965693, 1.056334366356486, 0.9700825434839022], [2.7291350108848325, 1.0603631140508623, 0.9764978987720095], [2.748737083745105, 1.0643516833813957, 0.9827937232473285]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.403852790411197, 0.5880974071687284, 0.020267494712221466], [2.404308553105748, 0.5883816294267296, 0.04051835247834694], [2.405067965668965, 0.5888547056987126, 0.06073601814729037], [2.406130740590896, 0.5895156989086173, 0.0809040991552306], [2.407496476119076, 0.5903633054126225, 0.1010064443352257], [2.409164657015972, 0.5913958631250001, 0.12102721980920501], [2.411134655527111, 0.5926113617739981, 0.14095098109267076], [2.4134057325556837, 0.5940074551505041, 0.16076274062583473], [2.4159770390385065, 0.5955814751886354, 0.18044803004347587], [2.418847617517429, 0.5973304476975135, 0.19999295660618124], [2.4220164038994563, 0.5992511095476543, 0.21938425333420314], [2.4254822293981473, 0.6013399271038049, 0.23860932250820097], [2.42924382264815, 0.6035931156887756, 0.2576562723249747], [2.4332998119841354, 0.6060066598597291, 0.27651394661747414], [2.437648727874814, 0.6085763342793366, 0.29517194766377935], [2.442289005502258, 0.6112977249688702, 0.3136206522166983], [2.447218987476306, 0.6141662507383052, 0.3318512209819641], [2.4524369266734967, 0.6171771845993814, 0.3498556018570981], [2.457940989189686, 0.6203256749808804, 0.36762652731377815], [2.4637292573953085, 0.6236067665805599, 0.3851575063634742], [2.469799733082086, 0.6270154207047776, 0.4024428115891483], [2.4761503406899363, 0.6305465349643382, 0.4194774617553609], [2.482778930602818, 0.6341949622130418, 0.4362572005259435], [2.489683282502314, 0.6379555286334032, 0.4527784718235358], [2.4968611087678783, 0.6418230508916688, 0.46903839236001255], [2.5043100579128494, 0.64579235230128, 0.48503472185253566], [2.5120277180455637, 0.6498582779500588, 0.5007658314181277], [2.5200116203451883, 0.6540157087614342, 0.5162306706117477], [2.5282592425422283, 0.6582595744738204, 0.5314287335402802], [2.536768012394011, 0.6625848655347377, 0.5463600244489789], [2.5455353111458816, 0.6669866439173452, 0.5610250231389446], [2.5545584769692584, 0.6714600528767493, 0.5754246505352846], [2.5638348083681746, 0.6760003256717655, 0.589560234686604], [2.573361567546405, 0.6806027932847991, 0.603433477438262], [2.5831359837277916, 0.6852628911782362, 0.6170464219849842], [2.5931552564228855, 0.6899761651302887, 0.630401421473507], [2.6034165586355513, 0.694738276196703, 0.6435011087932839], [2.6139170400037086, 0.6995450048472347, 0.6563483676631913], [2.624653829868915, 0.7043922543273978, 0.6689463050947615], [2.6356240402700104, 0.7092760532968394, 0.6812982252878486], [2.6468247688565834, 0.7141925577958561, 0.6934076049927489], [2.6582531017185023, 0.7191380525911595, 0.7052780703536335], [2.6699061161282818, 0.724108951951107, 0.7169133752315585], [2.68178088319352, 0.7291017998993224, 0.7283173809911833], [2.69387447041711, 0.7341132699940152, 0.7394940377234606], [2.7061839441633957, 0.7391401646784402, 0.750447366866795], [2.7187063720288513, 0.7441794142458821, 0.7611814451812937], [2.7314388251162875, 0.7492280754603473, 0.771700390024582], [2.7443783802119657, 0.7542833298718661, 0.7820083458730089], [2.757522121865371, 0.7593424818629675, 0.7921094720287704], [2.7708671443717363, 0.7644029564605408, 0.8020079314513288], [2.7844105536577226, 0.7694622969449617, 0.8117078806503699], [2.798149469070955, 0.7745181622860624, 0.8212134605772364], [2.812081025074397, 0.7795683244332823, 0.8305287884521968], [2.82620237284677, 0.7846106654851677, 0.8396579504659074], [2.8405106817904757, 0.7896431747613021, 0.848604995294908], [2.85500314094866, 0.7946639457977578, 0.8573739283728415], [2.8696769603332486, 0.7996711732852568, 0.8659687068612462], [2.8845293721659466, 0.8046631499674474, 0.8743932352661232], [2.899557632034326, 0.8096382635150006, 0.8826513616490135], [2.91475901996525, 0.8145949933896545, 0.8907468743839216], [2.930130841417991, 0.8195319077108485, 0.8986834994141022], [2.9456704281994717, 0.8244476601362082, 0.9064648979653945], [2.9613751393041468, 0.8293409867658628, 0.9140946646754619], [2.977242361681072, 0.8342107030793857, 0.9215763261008957], [2.9932695109307748, 0.839055700913058, 0.9289133395667045], [3.0094540319345424, 0.8438749454841437, 0.936109092325166], [3.025793399418775, 0.8486674724679399, 0.9431669009934016], [3.0422851184570487, 0.8534323851325238, 0.9500900112412953], [3.0589267249125225, 0.8581688515353376, 0.956881597703548], [3.075715785823313, 0.8628761017850576, 0.9635447640917008], [3.0926498997334355, 0.8675534253715496, 0.9700825434839022], [3.10972669697187, 0.8722001685661388, 0.9764978987720095], [3.1269438398822844, 0.8768157318939022, 0.9827937232473285]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.0001826067111774, 1.5707963267948966, 0.013512691013328216], [2.0007303268455945, 1.5707963267948966, 0.02702044918726479], [2.001642860679516, 1.5707963267948966, 0.04051835247834694], [2.002919709583665, 1.5707963267948966, 0.05400150037596829], [2.0045601773825577, 1.5707963267948966, 0.06746502452190475], [2.0065633722454685, 1.5707963267948966, 0.0809040991552306], [2.0089282090970952, 1.5707963267948966, 0.09431395132718053], [2.0116534125327994, 1.5707963267948966, 0.1076898708328207], [2.014737520220312, 1.5707963267948966, 0.12102721980920501], [2.01817888676697, 1.5707963267948966, 0.13432144195296852], [2.0219756880289825, 1.5707963267948966, 0.1475680713139948], [2.0261259258368987, 1.5707963267948966, 0.16076274062583473], [2.030627433109388, 1.5707963267948966, 0.17390118913788663], [2.0354778793257005, 1.5707963267948966, 0.18697926991891112], [2.040674776325694, 1.5707963267948966, 0.19999295660618124], [2.0462154844051565, 1.5707963267948966, 0.21293834957939717], [2.0520972186733206, 1.5707963267948966, 0.22581168154335537], [2.058317055638894, 1.5707963267948966, 0.23860932250820097], [2.064871939990709, 1.5707963267948966, 0.2513277841608404], [2.0717586915391135, 1.5707963267948966, 0.2639637236257046], [2.0789740122845606, 1.5707963267948966, 0.2765139466174741], [2.0865144935804087, 1.5707963267948966, 0.2889754099925664], [2.09437662335777, 1.5707963267948966, 0.301345223710104], [2.102556793381267, 1.5707963267948966, 0.3136206522166982], [2.1110513065057845, 1.5707963267948966, 0.3257991152726703], [2.119856383905684, 1.5707963267948966, 0.3378781882402783], [2.128968172249511, 1.5707963267948966, 0.3498556018570979], [2.1383827507948627, 1.5707963267948966, 0.3617292415199321], [2.14809613837985, 1.5707963267948966, 0.37349714610647733], [2.1581043002894194, 1.5707963267948966, 0.38515750636347396], [2.168403154976671, 1.5707963267948966, 0.39670866289121365], [2.1789885806212292, 1.5707963267948966, 0.408149103755089], [2.1898564215086105, 1.5707963267948966, 0.41947746175536066], [2.201002494216468, 1.5707963267948966, 0.4306925113865077], [2.212422593595439, 1.5707963267948966, 0.44179316551744335], [2.22411249853416, 1.5707963267948966, 0.4527784718235356], [2.2360679774997894, 1.5707963267948966, 0.46364760900080576], [2.248284793847072, 1.5707963267948966, 0.474399882791907], [2.2607587108906126, 1.5707963267948966, 0.4850347218525354], [2.2734854967365496, 1.5707963267948966, 0.4955516734858281], [2.2864609288712825, 1.5707963267948966, 0.5059503992710758], [2.2996807985062313, 1.5707963267948966, 0.5162306706117474], [2.3131409146788764, 1.5707963267948966, 0.5263923642264197], [2.3268371081114463, 1.5707963267948966, 0.5364354576047308], [2.3407652348296883, 1.5707963267948966, 0.5463600244489787], [2.3549211795450766, 1.5707963267948966, 0.5561662301204525], [2.3693008588046607, 1.5707963267948966, 0.5658543271080592], [2.383900223913507, 1.5707963267948966, 0.5754246505352844], [2.398715263635322, 1.5707963267948966, 0.5848776137200334], [2.413742006677416, 1.5707963267948966, 0.5942137038004334], [2.428976523966628, 1.5707963267948966, 0.6034334774382618], [2.4444149307232452, 1.5707963267948966, 0.6125375566103028], [2.460053388340239, 1.5707963267948966, 0.6215266244966212], [2.4758881060754123, 1.5707963267948966, 0.6304014214735068], [2.491915342564216, 1.5707963267948966, 0.639162741217661], [2.508131407161119, 1.5707963267948966, 0.6478114269270978], [2.524532661117486, 1.5707963267948966, 0.656348367663191], [2.5411155186039247, 1.5707963267948966, 0.664774494817345], [2.5578764475850457, 1.5707963267948966, 0.6730907787048722], [2.5748119705544967, 1.5707963267948966, 0.6812982252878483], [2.5919186651380497, 1.5707963267948966, 0.6893978730279624], [2.6091931645723596, 1.5707963267948966, 0.6973907898697069], [2.626632158066881, 1.5707963267948966, 0.7052780703536333], [2.6442323910562164, 1.5707963267948966, 0.7130608328588527], [2.661990665349995, 1.5707963267948966, 0.7207402169734665], [2.6799038391871424, 1.5707963267948966, 0.728317380991183], [2.6979688272011773, 1.5707963267948966, 0.7357934995319928], [2.7161826003029415, 1.5707963267948966, 0.7431697612844457], [2.7345421854868945, 1.5707963267948966, 0.7504473668667948], [2.753044665566883, 1.5707963267948966, 0.7576275268040266], [2.771687178847018, 1.5707963267948966, 0.7647114596176035], [2.790466918733037, 1.5707963267948966, 0.7717003900245818], [2.8093811332892873, 1.5707963267948966, 0.7785955472426388], [2.828427124746188, 1.5707963267948966, 0.7853981633974476]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.1083583435067115, 1.2490731611543073, 0.013512691013328216], [2.10887796830545, 1.2491552854335164, 0.02702044918726479], [2.109743725231508, 1.249292019447883, 0.04051835247834694], [2.110955188411909, 1.2494831541454212, 0.05400150037596829], [2.1125117630897194, 1.2497283980969687, 0.06746502452190475], [2.1144126870792164, 1.2500273787273861, 0.0809040991552306], [2.1166570326225522, 1.2503796438809813, 0.09431395132718053], [2.119243708637424, 1.2507846637083242, 0.1076898708328207], [2.1221714633431334, 1.2512418328591306, 0.12102721980920501], [2.125438887250445, 1.2517504729636084, 0.13432144195296852], [2.1290444164988016, 1.2523098353825939, 0.1475680713139948], [2.132986336522781, 1.252919104205013, 0.16076274062583473], [2.137262786028163, 1.2535773994696637, 0.17390118913788663], [2.1418717612566573, 1.2542837805870775, 0.18697926991891112], [2.146811120517212, 1.255037249936255, 0.19999295660618124], [2.1520785889608853, 1.2558367566104187, 0.21293834957939717], [2.15767176357555, 1.2566812002855585, 0.22581168154335537], [2.163588118376141, 1.25756943518546, 0.23860932250820097], [2.1698250097658653, 1.2585002741171065, 0.2513277841608404], [2.1763796820436236, 1.2594724925507936, 0.2639637236257046], [2.183249273032974, 1.2604848327199916, 0.2765139466174741], [2.1904308198081845, 1.2615360077169047, 0.2889754099925664], [2.1979212644933255, 1.262624705560786, 0.301345223710104], [2.2057174601109186, 1.2637495932173484, 0.3136206522166982], [2.2138161764573465, 1.264909320549039, 0.3257991152726703], [2.2222141059830682, 1.2661025241774877, 0.3378781882402783], [2.230907869656627, 1.2673278312410805, 0.3498556018570979], [2.2398940227924733, 1.2685838630323065, 0.3617292415199321], [2.2491690608237676, 1.2698692385012755, 0.37349714610647733], [2.258729425002501, 1.271182577613559, 0.38515750636347396], [2.2685715080105426, 1.2725225045522641, 0.39670866289121365], [2.278691659466494, 1.2738876507559802, 0.408149103755089], [2.2890861913145475, 1.2752766577859178, 0.41947746175536066], [2.299751383082867, 1.2766881800171936, 0.4306925113865077], [2.310683487000332, 1.2781208871507552, 0.44179316551744335], [2.321878732961803, 1.2795734665439187, 0.4527784718235356], [2.333333333333333, 1.2810446253588492, 0.46364760900080576], [2.345043487590031, 1.2825330925296001, 0.474399882791907], [2.3570053867804863, 1.2840376205494766, 0.4850347218525354], [2.369215217812827, 1.2855569870815515, 0.4955516734858281], [2.3816691675586203, 1.2870899963961009, 0.5059503992710758], [2.394363426771864, 1.288635480639558, 0.5162306706117474], [2.4072941938213273, 1.2901923009403098, 0.5263923642264197], [2.420457678235437, 1.2917593483572742, 0.5364354576047308], [2.4338501040597653, 1.2933355446777077, 0.5463600244489787], [2.4474677130279816, 1.2949198430711173, 0.5561662301204525], [2.4613067675478706, 1.2965112286064675, 0.5658543271080592], [2.475363553504679, 1.2981087186401146, 0.5754246505352844], [2.489634382884667, 1.2997113630820603, 0.5848776137200334], [2.5041155962222597, 1.3013182445481992, 0.5942137038004334], [2.5188035648746903, 1.3029284784062607, 0.6034334774382618], [2.5336946931284303, 1.3045412127230958, 0.6125375566103028], [2.5487854201420594, 1.3061556281208786, 0.6215266244966212], [2.56407222173053, 1.307770937549644, 0.6304014214735068], [2.579551611996042, 1.3093863859834078, 0.639162741217661], [2.595220144810929, 1.3110012500469008, 0.6478114269270978], [2.6110744151581318, 1.3126148375797106, 0.656348367663191], [2.6271110603349337, 1.314226487144352, 0.664774494817345], [2.6433267610257225, 1.315835567484513, 0.6730907787048722], [2.659718242249576, 1.3174414769394145, 0.6812982252878483], [2.676282274188478, 1.3190436428199288, 0.6893978730279624], [2.693015672901955, 1.3206415207517743, 0.6973907898697069], [2.7099153009338734, 1.3222345939907962, 0.7052780703536333], [2.72697806781707, 1.323822372715025, 0.7130608328588527], [2.7442009304813952, 1.3254043932978874, 0.7207402169734665], [2.7615808935706427, 1.326980217566642, 0.728317380991183], [2.7791150096737165, 1.328549432049799, 0.7357934995319928], [2.7968003794752483, 1.3301116472170023, 0.7431697612844457], [2.8146341518307287, 1.3316664967145553, 0.7504473668667948], [2.832613523771063, 1.3332136365995058, 0.7576275268040266], [2.8507357404412965, 1.3347527445749383, 0.7647114596176035], [2.8689980949780876, 1.3362835192288733, 0.7717003900245818], [2.8873979283303237, 1.3378056792789348, 0.7785955472426388], [2.9059326290271135, 1.3393189628247182, 0.7853981633974476]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.403852790411197, 0.9828358605940736, 0.013512691013328216], [2.404308553105748, 0.9829622176138085, 0.02702044918726479], [2.405067965668965, 0.9831726294471174, 0.04051835247834694], [2.4061307405908954, 0.9834668220004233, 0.05400150037596829], [2.407496476119076, 0.9838444129490297, 0.06746502452190475], [2.409164657015972, 0.9843049131311621, 0.0809040991552306], [2.411134655527111, 0.9848477283229534, 0.09431395132718053], [2.4134057325556837, 0.9854721613816418, 0.1076898708328207], [2.4159770390385065, 0.9861774147417391, 0.12102721980920501], [2.418847617517429, 0.9869625932465994, 0.13432144195296852], [2.4220164038994563, 0.9878267072956807, 0.1475680713139948], [2.4254822293981473, 0.9887686762858995, 0.16076274062583473], [2.4292438226481505, 0.9897873323238142, 0.17390118913788663], [2.4332998119841354, 0.9908814241839752, 0.18697926991891112], [2.437648727874814, 0.9920496214876449, 0.19999295660618124], [2.442289005502258, 0.9932905190752266, 0.21293834957939717], [2.447218987476306, 0.9946026415451518, 0.22581168154335537], [2.452436926673496, 0.9959844479316514, 0.23860932250820097], [2.457940989189686, 0.9974343364937781, 0.2513277841608404], [2.4637292573953085, 0.9989506495882386, 0.2639637236257046], [2.469799733082086, 1.0005316785990253, 0.2765139466174741], [2.4761503406899363, 1.0021756688974872, 0.2889754099925664], [2.482778930602818, 1.003880824807343, 0.301345223710104], [2.489683282502314, 1.0056453145501716, 0.3136206522166982], [2.4968611087678783, 1.0074672751481275, 0.3257991152726703], [2.5043100579128494, 1.009344817261965, 0.3378781882402783], [2.5120277180455637, 1.0112760299439216, 0.3498556018570979], [2.5200116203451883, 1.0132589852865606, 0.3617292415199321], [2.5282592425422283, 1.0152917429503034, 0.37349714610647733], [2.536768012394011, 1.0173723545540594, 0.38515750636347396], [2.5455353111458816, 1.0194988679150585, 0.39670866289121365], [2.5545584769692584, 1.0216693311257183, 0.408149103755089], [2.5638348083681746, 1.0238817964570661, 0.41947746175536066], [2.573361567546405, 1.0261343240799277, 0.4306925113865077], [2.5831359837277916, 1.0284249855967238, 0.44179316551744335], [2.5931552564228855, 1.0307518673782943, 0.4527784718235356], [2.6034165586355513, 1.0331130737016905, 0.46364760900080576], [2.6139170400037086, 1.0355067296863116, 0.474399882791907], [2.624653829868915, 1.0379309840271134, 0.4850347218525354], [2.6356240402700104, 1.0403840115248837, 0.4955516734858281], [2.6468247688565834, 1.042864015414748, 0.5059503992710758], [2.658253101718502, 1.0453692294951358, 0.5162306706117474], [2.6699061161282818, 1.0478979200604173, 0.5263923642264197], [2.68178088319352, 1.0504483876412778, 0.5364354576047308], [2.69387447041711, 1.0530189685576856, 0.5463600244489787], [2.7061839441633957, 1.0556080362899731, 0.5561662301204525], [2.7187063720288513, 1.058214002674131, 0.5658543271080592], [2.7314388251162875, 1.0608353189279152, 0.5754246505352844], [2.7443783802119657, 1.0634704765147596, 0.5848776137200334], [2.757522121865371, 1.0661180078528107, 0.5942137038004334], [2.7708671443717363, 1.0687764868766492, 0.6034334774382618], [2.7844105536577226, 1.071444529459432, 0.6125375566103028], [2.798149469070955, 1.074120793703292, 0.6215266244966212], [2.812081025074397, 1.0768039801058888, 0.6304014214735068], [2.82620237284677, 1.0794928316109824, 0.639162741217661], [2.8405106817904757, 1.0821861335508491, 0.6478114269270978], [2.85500314094866, 1.0848827134882604, 0.656348367663191], [2.8696769603332486, 1.0875814409655964, 0.664774494817345], [2.8845293721659466, 1.0902812271684936, 0.6730907787048722], [2.8995576320343264, 1.092981024511225, 0.6812982252878483], [2.9147590199652504, 1.0956798261507794, 0.6893978730279624], [2.930130841417991, 1.0983766654363585, 0.6973907898697069], [2.9456704281994717, 1.1010706153007457, 0.7052780703536333], [2.9613751393041468, 1.1037607875997244, 0.7130608328588527], [2.9772423616810717, 1.1064463324054332, 0.7207402169734665], [2.9932695109307748, 1.109126437259257, 0.728317380991183], [3.0094540319345424, 1.1118003263895524, 0.7357934995319928], [3.025793399418775, 1.1144672598992098, 0.7431697612844457], [3.0422851184570483, 1.11712653292776, 0.7504473668667948], [3.0589267249125225, 1.1197774747924336, 0.7576275268040266], [3.0757157858233133, 1.1224194481122998, 0.7647114596176035], [3.0926498997334355, 1.125051847919323, 0.7717003900245818], [3.10972669697187, 1.1276741007599038, 0.7785955472426388], [3.1269438398822844, 1.130285663790198, 0.7853981633974476]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.8285562501371473, 0.7854438129912305, 0.013512691013328216], [2.8289435909469245, 0.7855807117768233, 0.02702044918726479], [2.8295890411346445, 0.7858087099265647, 0.04051835247834694], [2.8304924241267124, 0.7861275582586283, 0.05400150037596829], [2.8316534930580737, 0.7865369090297875, 0.06746502452190475], [2.833071931108899, 0.7870363170380206, 0.0809040991552306], [2.834747351935629, 0.7876252410277979, 0.09431395132718053], [2.8366793001950112, 0.7883030453889711, 0.1076898708328207], [2.8388672521594756, 0.7890690021383917, 0.12102721980920501], [2.8413106164219295, 0.7899222931716845, 0.13432144195296852], [2.8440087346877605, 0.7908620127710589, 0.1475680713139948], [2.8469608826516093, 0.7918871703536359, 0.16076274062583473], [2.850166270956209, 0.7929966934435253, 0.17390118913788663], [2.853624046230381, 0.7941894308498318, 0.18697926991891112], [2.85733329220305, 0.7954641560318695, 0.19999295660618124], [2.8612930308899562, 0.7968195706321651, 0.21293834957939717], [2.865502223849561, 0.7982543081573119, 0.22581168154335537], [2.869959773504494, 0.7997669377863914, 0.23860932250820097], [2.8746645245247304, 0.8013559682865321, 0.2513277841608404], [2.8796152652685847, 0.803019852015184, 0.2639637236257046], [2.884810729277497, 0.8047569889888748, 0.2765139466174741], [2.890249596820508, 0.8065657309985512, 0.2889754099925664], [2.8959304964842465, 0.8084443857520929, 0.301345223710104], [2.901852006804227, 0.8103912210252096, 0.3136206522166982], [2.9080126579332113, 0.8124044688026621, 0.3257991152726703], [2.9144109333423938, 0.814482329392597, 0.3378781882402783], [2.9210452715511654, 0.816622975497714, 0.3498556018570979], [2.9279140678812627, 0.8188245562280019, 0.3617292415199321], [2.935015676231121, 0.8210852010408402, 0.37349714610647733], [2.9423484108663414, 0.8234030235953933, 0.38515750636347396], [2.9499105482222308, 0.8257761255093679, 0.39670866289121365], [2.957700328714476, 0.8282026000073791, 0.408149103755089], [2.9657159585541053, 0.8306805354513498, 0.41947746175536066], [2.9739556115630097, 0.8332080187445412, 0.4306925113865077], [2.9824174309864087, 0.8357831386019732, 0.44179316551744335], [2.991099531298794, 0.8384039886811276, 0.4527784718235356], [2.9999999999999996, 0.8410686705679302, 0.46364760900080576], [3.0091168993982222, 0.8437752966140667, 0.474399882791907], [3.0184482683769462, 0.8465219926227086, 0.4850347218525354], [3.027992124142901, 0.84930690038068, 0.4955516734858281], [3.0377464639523373, 0.85212818003601, 0.5059503992710758], [3.0477092668130696, 0.854984012320659, 0.5162306706117474], [3.0578784951599087, 0.8578726006189963, 0.5263923642264197], [3.06825209650127, 0.860792172883326, 0.5364354576047308], [3.078828005034917, 0.8637409833984214, 0.5463600244489787], [3.0896041432309698, 0.8667173143976229, 0.5561662301204525], [3.1005784233804667, 0.8697194775335854, 0.5658543271080592], [3.1117487491079463, 0.8727458152072394, 0.5754246505352844], [3.1231130168466645, 0.8757947017589364, 0.5848776137200334], [3.134669117275238, 0.8788645445261078, 0.5942137038004334], [3.146414936714642, 0.8819537847720652, 0.6034334774382618], [3.158348358484657, 0.8850608984908209, 0.6125375566103028], [3.170467264218997, 0.8881843970930021, 0.6215266244966212], [3.1827695351384917, 0.8913228279780897, 0.6304014214735068], [3.195253053281842, 0.8944747749983196, 0.639162741217661], [3.207915702693575, 0.8976388588196582, 0.6478114269270978], [3.220755370568981, 0.9008137371852949, 0.656348367663191], [3.233769948355896, 0.9039981050870998, 0.664774494817345], [3.2469573328133357, 0.9071906948504632, 0.6730907787048722], [3.260315427027074, 0.910390276137881, 0.6812982252878483], [3.2738421413823557, 0.9135956558765701, 0.6893978730279624], [3.2875353944940464, 0.916805678115298, 0.6973907898697069], [3.3013931140945756, 0.9200192238154965, 0.7052780703536333], [3.3154132378801404, 0.9232352105815883, 0.7130608328588527], [3.3295937143156835, 0.9264525923353201, 0.7207402169734665], [3.3439325033992513, 0.9296703589387261, 0.728317380991183], [3.3584275773863723, 0.9328875357701892, 0.7357934995319928], [3.373076921475176, 0.9361031832578891, 0.7431697612844457], [3.387878534453005, 0.9393163963747465, 0.7504473668667948], [3.402830429305326, 0.942526304098797, 0.7576275268040266], [3.417930633787781, 0.9457320688427362, 0.7647114596176035], [3.4331771909622506, 0.9489328858561965, 0.7717003900245818], [3.4485681596978477, 0.9521279826041334, 0.7785955472426388], [3.464101615137753, 0.955316618124509, 0.7853981633974476]], &quot;color&quot;: &quot;#008000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.6666666666666666, 1.5707963267948966, 1.5707963267948966], [0.667214286893172, 1.5302779743165498, 1.5707963267948966], [0.6688544574151563, 1.489892227639666, 1.5707963267948966], [0.6715791734067706, 1.4497691069856915, 1.5707963267948966], [0.6753753086122996, 1.4100335861690618, 1.5707963267948966], [0.6802249254418979, 1.3708033701887155, 1.5707963267948966], [0.6861056852129647, 1.3321870042866957, 1.5707963267948966], [0.6929913374281869, 1.2942823801774226, 1.5707963267948966], [0.7008522644604225, 1.2571756745781983, 1.5707963267948966], [0.7096560574165037, 1.2209407249377986, 1.5707963267948966], [0.7193681000964731, 1.1856388204314223, 1.5707963267948966], [0.7299521405028703, 1.1513188650395356, 1.5707963267948966], [0.7413708328447202, 1.1180178549713606, 1.5707963267948966], [0.7535862369635377, 1.0857616049423608, 1.5707963267948966], [0.7665602661687441, 1.0545656561831487, 1.5707963267948966], [0.780255078276563, 1.0244363023459173, 1.5707963267948966], [0.7946334079711692, 0.9953716762596116, 1.5707963267948966], [0.8096588413222097, 0.9673628493566342, 1.5707963267948966], [0.8252960353584711, 0.9403949053213893, 1.5707963267948966], [0.8415108870391624, 0.9144479591317048, 1.5707963267948966], [0.8582706568514994, 0.8894981015070476, 1.5707963267948966], [0.8755440526889608, 0.8655182564412627, 1.5707963267948966], [0.8933012797290478, 0.842478945803713, 1.5707963267948966], [0.9115140618289653, 0.8203489599281011, 1.5707963267948966], [0.9301556395776797, 0.7990959367703143, 1.5707963267948966], [0.9492007496542683, 0.7786868547661259, 1.5707963267948966], [0.968625589601125, 0.7590884461445263, 1.5707963267948966], [0.9884077715679235, 0.7402675383426994, 1.5707963267948966], [1.008526268047317, 0.7221913314999884, 1.5707963267948966], [1.0289613521249807, 0.7048276199336501, 1.5707963267948966], [1.0496945343156399, 0.6881449651458829, 1.5707963267948966], [1.0707084976580818, 0.6721128273807941, 1.5707963267948966], [1.0919870323965228, 0.6567016621194345, 1.5707963267948966], [1.1135149712810068, 0.6418829872281918, 1.5707963267948966], [1.1352781262719536, 0.6276294258014947, 1.5707963267948966], [1.1572632272287984, 0.6139147290913484, 1.5707963267948966], [1.1794578629948202, 0.6007137833109941, 1.5707963267948966], [1.2018504251546624, 0.588002603547568, 1.5707963267948966], [1.2244300546329367, 0.5757583175232361, 1.5707963267948966], [1.2471865912173001, 0.563959141506263, 1.5707963267948966], [1.2701105260235745, 0.5525843502907144, 1.5707963267948966], [1.2931929568704637, 0.5416142428323488, 1.5707963267948966], [1.316425546494257, 0.5310301048441828, 1.5707963267948966], [1.3398004835071053, 0.5208141694133799, 1.5707963267948966], [1.3633104459839227, 0.5109495764966109, 1.5707963267948966], [1.3869485675509858, 0.5014203319791726, 1.5707963267948966], [1.4107084058424049, 0.49221126683956656, 1.5707963267948966], [1.4345839131877043, 0.483307996841934, 1.5707963267948966], [1.4585694093937775, 0.4746968830801753, 1.5707963267948966], [1.482659556486761, 0.466364993616583, 1.5707963267948966], [1.506849335283247, 0.4583000663916559, 1.5707963267948966], [1.5311340236652857, 0.4504904735280508, 1.5707963267948966], [1.5555091764393971, 0.4429251871083227, 1.5707963267948966], [1.5799706066660653, 0.4355937464714623, 1.5707963267948966], [1.6045143683526604, 0.42848622704577827, 1.5707963267948966], [1.6291367404092814, 0.4215932107141328, 1.5707963267948966], [1.6538342117734954, 0.41490575769087495, 1.5707963267948966], [1.678603467616274, 0.40841537987714155, 1.5707963267948966], [1.7034413765475285, 0.4021140156517632, 1.5707963267948966], [1.7283449787454868, 0.395994006048224, 1.5707963267948966], [1.7533114749396854, 0.39004807226345006, 1.5707963267948966], [1.7783382161825834, 0.3842692944412331, 1.5707963267948966], [1.8034226943497105, 0.3786510916714778, 1.5707963267948966], [1.8285625333128548, 0.37318720314590936, 1.5707963267948966], [1.8537554807350727, 0.3678716704111539, 1.5707963267948966], [1.8789994004402861, 0.36269882066101977, 1.5707963267948966], [1.904292265313922, 0.35766325101120666, 1.5707963267948966], [1.9296321506944636, 0.35275981370141435, 1.5707963267948966], [1.9550172282189469, 0.34798360217183416, 1.5707963267948966], [1.9804457600883407, 0.34332993796317274, 1.5707963267948966], [2.005916093721449, 0.33879435839164, 1.5707963267948966], [2.0314266567684363, 0.33437260495266347, 1.5707963267948966], [2.056975952457368, 0.3300606124094346, 1.5707963267948966], [2.08256255524924, 0.3258544985247188, 1.5707963267948966], [2.108185106778917, 0.32175055439664263, 1.5707963267948966]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.3333333333333333, 1.5707963267948966, 1.5707963267948966], [1.3336072277727418, 1.5505288320826751, 1.5707963267948966], [1.334428573786344, 1.5302779743165498, 1.5707963267948966], [1.3357963615338435, 1.5100603086476063, 1.5707963267948966], [1.3377089148303125, 1.489892227639666, 1.5707963267948966], [1.3401639013664592, 1.469789882459671, 1.5707963267948966], [1.3431583468135413, 1.4497691069856915, 1.5707963267948966], [1.3466886526156818, 1.4298453457022258, 1.5707963267948966], [1.350750617224599, 1.4100335861690618, 1.5707963267948966], [1.3553394604899798, 1.3903482967514207, 1.5707963267948966], [1.3604498508837959, 1.3708033701887155, 1.5707963267948966], [1.3660759352093335, 1.3514120734606936, 1.5707963267948966], [1.3722113704259293, 1.3321870042866957, 1.5707963267948966], [1.3788493572084655, 1.3131400544699219, 1.5707963267948966], [1.3859826748563737, 1.2942823801774226, 1.5707963267948966], [1.3936037171698772, 1.2756243791311173, 1.5707963267948966], [1.401704528920845, 1.2571756745781983, 1.5707963267948966], [1.4102768425612597, 1.2389451058129324, 1.5707963267948966], [1.4193121148330075, 1.2209407249377986, 1.5707963267948966], [1.42880156296764, 1.2031697994811186, 1.5707963267948966], [1.4387362001929462, 1.1856388204314223, 1.5707963267948966], [1.4491068702936796, 1.1683535152057483, 1.5707963267948966], [1.4599042810057405, 1.1513188650395358, 1.5707963267948966], [1.471119036055639, 1.134539126268953, 1.5707963267948966], [1.48274166568944, 1.1180178549713609, 1.5707963267948966], [1.4947626555669493, 1.101757934434884, 1.5707963267948966], [1.5071724739270753, 1.085761604942361, 1.5707963267948966], [1.5199615969586868, 1.070030495376769, 1.5707963267948966], [1.533120532337488, 1.054565656183149, 1.5707963267948966], [1.5466398409132625, 1.0393675932546163, 1.5707963267948966], [1.5605101565531259, 1.0244363023459178, 1.5707963267948966], [1.5747222041650901, 1.009771303655952, 1.5707963267948966], [1.589266815942338, 0.995371676259612, 1.5707963267948966], [1.6041349458821332, 0.9812360921082925, 1.5707963267948966], [1.6193176826444189, 0.9673628493566346, 1.5707963267948966], [1.6348062608239995, 0.9537499048099124, 1.5707963267948966], [1.6505920707169417, 0.9403949053213897, 1.5707963267948966], [1.666666666666666, 0.9272952180016126, 1.5707963267948966], [1.683021774078324, 0.9144479591317054, 1.5707963267948966], [1.6996492951916764, 0.9018500217001351, 1.5707963267948966], [1.716541313702998, 0.8894981015070481, 1.5707963267948966], [1.7336900983257375, 0.8773887218021478, 1.5707963267948966], [1.7510881053779208, 0.8655182564412631, 1.5707963267948966], [1.7687279804817944, 0.8538829515633382, 1.5707963267948966], [1.786602559458095, 0.8424789458037134, 1.5707963267948966], [1.8047048684937557, 0.831302289071436, 1.5707963267948966], [1.82302812365793, 0.8203489599281016, 1.5707963267948966], [1.8415657298370536, 0.8096148816136028, 1.5707963267948966], [1.8603112791553584, 0.7990959367703145, 1.5707963267948966], [1.8792585489428675, 0.7887879809218876, 1.5707963267948966], [1.8984014993085359, 0.7786868547661263, 1.5707963267948966], [1.9177342703718836, 0.7687883953435678, 1.5707963267948966], [1.937251179202249, 0.7590884461445266, 1.5707963267948966], [1.9569467165107146, 0.7495828662176601, 1.5707963267948966], [1.976815543135846, 0.7402675383426999, 1.5707963267948966], [1.9968524863606505, 0.7311383763289893, 1.5707963267948966], [2.017052536094633, 0.7221913314999887, 1.5707963267948966], [2.0374108409515035, 0.713422398422055, 1.5707963267948966], [2.057922704249961, 0.7048276199336505, 1.5707963267948966], [2.0785835799621024, 0.6964030915287734, 1.5707963267948966], [2.099389068631279, 0.6881449651458832, 1.5707963267948966], [2.1203349132787457, 0.6800494524109749, 1.5707963267948966], [2.141416995316163, 0.6721128273807945, 1.5707963267948966], [2.162631330478882, 0.664331428829502, 1.5707963267948966], [2.183974064793045, 0.6567016621194348, 1.5707963267948966], [2.205441470587757, 0.6492200006940009, 1.5707963267948966], [2.227029942562013, 0.6418829872281921, 1.5707963267948966], [2.248735993914598, 0.6346872344697305, 1.5707963267948966], [2.2705562525439063, 0.627629425801495, 1.5707963267948966], [2.2924874573234244, 0.6207063155536012, 1.5707963267948966], [2.314526454457596, 0.6139147290913487, 1.5707963267948966], [2.336670193921838, 0.6072515627031958, 1.5707963267948966], [2.35891572598964, 0.6007137833109943, 1.5707963267948966], [2.381260197848941, 0.594298428022887, 1.5707963267948966], [2.4037008503093236, 0.5880026035475682, 1.5707963267948966]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.0, 1.5707963267948966, 1.5707963267948966], [2.0001826067111774, 1.5572836357815685, 1.5707963267948966], [2.0007303268455945, 1.5437758776076318, 1.5707963267948966], [2.001642860679516, 1.5302779743165498, 1.5707963267948966], [2.002919709583665, 1.5167948264189284, 1.5707963267948966], [2.0045601773825577, 1.503331302272992, 1.5707963267948966], [2.0065633722454685, 1.489892227639666, 1.5707963267948966], [2.0089282090970952, 1.476482375467716, 1.5707963267948966], [2.0116534125327994, 1.463106455962076, 1.5707963267948966], [2.014737520220312, 1.4497691069856915, 1.5707963267948966], [2.01817888676697, 1.4364748848419282, 1.5707963267948966], [2.0219756880289825, 1.423228255480902, 1.5707963267948966], [2.0261259258368987, 1.4100335861690618, 1.5707963267948966], [2.030627433109388, 1.39689513765701, 1.5707963267948966], [2.0354778793257005, 1.3838170568759856, 1.5707963267948966], [2.040674776325694, 1.3708033701887155, 1.5707963267948966], [2.0462154844051565, 1.3578579772154995, 1.5707963267948966], [2.0520972186733206, 1.3449846452515413, 1.5707963267948966], [2.058317055638894, 1.3321870042866957, 1.5707963267948966], [2.064871939990709, 1.3194685426340562, 1.5707963267948966], [2.0717586915391135, 1.3068326031691921, 1.5707963267948966], [2.0789740122845606, 1.2942823801774226, 1.5707963267948966], [2.0865144935804087, 1.2818209168023302, 1.5707963267948966], [2.09437662335777, 1.2694511030847926, 1.5707963267948966], [2.102556793381267, 1.2571756745781983, 1.5707963267948966], [2.1110513065057845, 1.2449972115222263, 1.5707963267948966], [2.119856383905684, 1.2329181385546184, 1.5707963267948966], [2.128968172249511, 1.2209407249377988, 1.5707963267948966], [2.1383827507948627, 1.2090670852749645, 1.5707963267948966], [2.14809613837985, 1.1972991806884192, 1.5707963267948966], [2.1581043002894194, 1.1856388204314225, 1.5707963267948966], [2.168403154976671, 1.174087663903683, 1.5707963267948966], [2.1789885806212292, 1.1626472230398077, 1.5707963267948966], [2.1898564215086105, 1.1513188650395358, 1.5707963267948966], [2.201002494216468, 1.140103815408389, 1.5707963267948966], [2.212422593595439, 1.1290031612774534, 1.5707963267948966], [2.22411249853416, 1.118017854971361, 1.5707963267948966], [2.2360679774997894, 1.1071487177940909, 1.5707963267948966], [2.248284793847072, 1.0963964440029896, 1.5707963267948966], [2.2607587108906126, 1.0857616049423613, 1.5707963267948966], [2.2734854967365496, 1.0752446533090685, 1.5707963267948966], [2.2864609288712825, 1.064845927523821, 1.5707963267948966], [2.2996807985062313, 1.0545656561831491, 1.5707963267948966], [2.3131409146788764, 1.044403962568477, 1.5707963267948966], [2.3268371081114463, 1.0343608691901658, 1.5707963267948966], [2.3407652348296883, 1.024436302345918, 1.5707963267948966], [2.3549211795450766, 1.0146300966744441, 1.5707963267948966], [2.3693008588046607, 1.0049419996868374, 1.5707963267948966], [2.383900223913507, 0.9953716762596122, 1.5707963267948966], [2.398715263635322, 0.9859187130748631, 1.5707963267948966], [2.413742006677416, 0.9765826229944633, 1.5707963267948966], [2.428976523966628, 0.9673628493566349, 1.5707963267948966], [2.4444149307232452, 0.9582587701845938, 1.5707963267948966], [2.460053388340239, 0.9492697022982753, 1.5707963267948966], [2.4758881060754123, 0.9403949053213899, 1.5707963267948966], [2.491915342564216, 0.9316335855772356, 1.5707963267948966], [2.508131407161119, 0.9229848998677989, 1.5707963267948966], [2.524532661117486, 0.9144479591317055, 1.5707963267948966], [2.5411155186039247, 0.9060218319775517, 1.5707963267948966], [2.5578764475850457, 0.8977055480900243, 1.5707963267948966], [2.5748119705544967, 0.8894981015070483, 1.5707963267948966], [2.5919186651380497, 0.8813984537669342, 1.5707963267948966], [2.6091931645723596, 0.8734055369251897, 1.5707963267948966], [2.626632158066881, 0.8655182564412633, 1.5707963267948966], [2.6442323910562164, 0.857735493936044, 1.5707963267948966], [2.661990665349995, 0.8500561098214302, 1.5707963267948966], [2.6799038391871424, 0.8424789458037135, 1.5707963267948966], [2.6979688272011773, 0.8350028272629039, 1.5707963267948966], [2.7161826003029415, 0.8276265655104509, 1.5707963267948966], [2.7345421854868945, 0.8203489599281018, 1.5707963267948966], [2.753044665566883, 0.8131687999908701, 1.5707963267948966], [2.771687178847018, 0.8060848671772932, 1.5707963267948966], [2.790466918733037, 0.7990959367703148, 1.5707963267948966], [2.8093811332892873, 0.7922007795522578, 1.5707963267948966], [2.828427124746188, 0.7853981633974491, 1.5707963267948966]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[0.9428090415820634, 1.5707963267948966, 0.7853981633974483], [0.9431963470448814, 1.5421376841952326, 0.7853981633974483], [0.944357310369633, 1.5135260401236628, 0.7853981633974483], [0.9462890840531585, 1.485007932295745, 0.7853981633974483], [0.9489869608838697, 1.4566289880393113, 0.7853981633974483], [0.95244443073435, 1.428433496685882, 0.7853981633974483], [0.9566532578348312, 1.4004640136783773, 0.7853981633974483], [0.9616035764258324, 1.3727610047631866, 0.7853981633974483], [0.9672840022680755, 1.3453625369460043, 0.7853981633974483], [0.973681757183722, 1.3183040210064982, 0.7853981633974483], [0.9807828036221138, 1.2916180084039792, 0.7853981633974483], [0.9885719861847019, 1.2653340434775115, 0.7853981633974483], [0.997033177099598, 1.2394785700490312, 0.7853981633974483], [1.0061494227923153, 1.2140748899569744, 0.7853981633974483], [1.0159030889376899, 1.1891431697372794, 0.7853981633974483], [1.026276001678306, 1.164700490660377, 0.7853981633974483], [1.0372495830359822, 1.140760936635712, 0.7853981633974483], [1.0488049789048808, 1.1173357140980111, 0.7853981633974483], [1.0609231783794975, 1.094433297864742, 0.7853981633974483], [1.073585123522994, 1.0720595970637226, 0.7853981633974483], [1.086771809009025, 1.050218135529177, 0.7853981633974483], [1.100464371364859, 1.0289102415071572, 0.7853981633974483], [1.1146441677997507, 1.0081352420521164, 0.7853981633974483], [1.1292928448176687, 0.9878906580944913, 0.7853981633974483], [1.1443923969874175, 0.9681723967790274, 0.7853981633974483], [1.1599252163776204, 0.9489749382864273, 0.7853981633974483], [1.1758741332619624, 0.9302915149344848, 0.7853981633974483], [1.1922224487654611, 0.912114280893349, 0.7853981633974483], [1.2089539601597297, 0.8944344713327539, 0.7853981633974483], [1.226052979528745, 0.8772425502415614, 0.7853981633974483], [1.2435043465209812, 0.8605283465203164, 0.7853981633974483], [1.2612934358830505, 0.844281178247148, 0.7853981633974483], [1.279406160437962, 0.8284899652598603, 0.7853981633974483], [1.2978289701310362, 0.813143330387424, 0.7853981633974483], [1.3165488477211933, 0.7982296898080675, 0.7853981633974483], [1.3355533016470955, 0.7837373331148755, 0.7853981633974483], [1.3548303565482849, 0.7696544937392873, 0.7853981633974483], [1.3743685418725529, 0.7559694104239082, 0.7853981633974483], [1.3941568789533194, 0.7426703804539322, 0.7853981633974483], [1.4141848668956523, 0.7297458053559853, 0.7853981633974483], [1.4344424675672167, 0.7171842297585113, 0.7853981633974483], [1.454920089951272, 0.7049743740825374, 0.7853981633974483], [1.4756085740829603, 0.6931051616987807, 0.7853981633974483], [1.4964991747576468, 0.6815657411491027, 0.7853981633974483], [1.5175835451708506, 0.6703455039893034, 0.7853981633974483], [1.5388537206233008, 0.6594340987677841, 0.7853981633974483], [1.5603021024016033, 0.6488214416119628, 0.7853981633974483], [1.581921441924785, 0.6384977238524274, 0.7853981633974483], [1.6037048252293054, 0.6284534170743904, 0.7853981633974483], [1.6256456578498166, 0.6186792759475213, 0.7853981633974483], [1.6477376501397325, 0.6091663391490372, 0.7853981633974483], [1.6699748030643733, 0.5999059286611922, 0.7853981633974483], [1.6923513944898134, 0.5908896476931308, 0.7853981633974483], [1.7148619659824458, 0.5821093774484549, 0.7853981633974483], [1.737501310127443, 0.5735572729337602, 0.7853981633974483], [1.7602644583686347, 0.5652257579797207, 0.7853981633974483], [1.7831466693676388, 0.557107519624934, 0.7853981633974483], [1.8061434178762836, 0.5491955019935284, 0.7853981633974483], [1.8292503841132801, 0.5414828997803441, 0.7853981633974483], [1.852463443633688, 0.5339631514421581, 0.7853981633974483], [1.8757786576778241, 0.5266299321797949, 0.7853981633974483], [1.8991922639848493, 0.5194771467838795, 0.7853981633974483], [1.9227006680552263, 0.5124989224063222, 0.7853981633974483], [1.9463004348455482, 0.5056896013102188, 0.7853981633974483], [1.9699882808787885, 0.4990437336425915, 0.7853981633974483], [1.993761066752834, 0.49255607026716813, 0.7853981633974483], [2.017615790030122, 0.4862215556880656, 0.7853981633974483], [2.041549578491344, 0.48003532108974906, 0.7853981633974483], [2.0655596837364296, 0.47399267751384705, 0.7853981633974483], [2.0896434751163486, 0.4680891091892656, 0.7853981633974483], [2.1137984339797304, 0.46232026702846246, 0.7853981633974483], [2.1380221482187296, 0.4566819622996689, 0.7853981633974483], [2.162312307099125, 0.451170160482203, 0.7853981633974483], [2.1866666963601675, 0.4457809753097666, 0.7853981633974483], [2.2110831935702637, 0.44051066300469904, 0.7853981633974483]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.4907119849998598, 1.5707963267948966, 1.1071487177940904], [1.490956968665475, 1.5526680320218165, 1.1071487177940904], [1.4916916782572398, 1.5345516446102192, 1.1071487177940904], [1.4929153907477473, 1.516459025060989, 1.1071487177940904], [1.4946269050371523, 1.4984019406138989, 1.1071487177940904], [1.496824547824565, 1.4803920197588614, 1.1071487177940904], [1.4995061817342834, 1.462440708094047, 1.1071487177940904], [1.5026692156054455, 1.4445592259417228, 1.1071487177940904], [1.5063106168307652, 1.4267585281014228, 1.1071487177940904], [1.5104269256093503, 1.4090492660827278, 1.1071487177940904], [1.51501427096057, 1.3914417531175227, 1.1071487177940904], [1.5200683883307684, 1.3739459322052667, 1.1071487177940904], [1.525584638612572, 1.3565713473957592, 1.1071487177940904], [1.5315580283876427, 1.3393271184633377, 1.1071487177940904], [1.5379832311980757, 1.3222219190755997, 1.1071487177940904], [1.5448546096491227, 1.3052639585097612, 1.1071487177940904], [1.552166238146434, 1.288460966921662, 1.1071487177940904], [1.5599119260743541, 1.2718201841271535, 1.1071487177940904], [1.5680852412277175, 1.2553483518139157, 1.1071487177940904], [1.5766795333177936, 1.239051709064283, 1.1071487177940904], [1.5856879573831928, 1.2229359910368367, 1.1071487177940904], [1.595103496948329, 1.2070064306266917, 1.1071487177940904], [1.6049189867851064, 1.1912677629016484, 1.1071487177940904], [1.6151271351474834, 1.1757242320937344, 1.1071487177940904], [1.6257205453631753, 1.1603796009129799, 1.1071487177940904], [1.6366917366816522, 1.1452371619423023, 1.1071487177940904], [1.6480331642924861, 1.1302997508688268, 1.1071487177940904], [1.6597372384427742, 1.115569761307395, 1.1071487177940904], [1.6717963425965576, 1.101049160976015, 1.1071487177940904], [1.684202850592721, 1.0867395089900893, 1.1071487177940904], [1.6969491427706094, 1.0726419740519229, 1.1071487177940904], [1.7100276210444685, 1.0587573533238186, 1.1071487177940904], [1.723430722918662, 1.0450860917865115, 1.1071487177940904], [1.7371509344454554, 1.0316283018993488, 1.1071487177940904], [1.7511808021359003, 1.0183837833940963, 1.1071487177940904], [1.7655129438420414, 1.0053520430501524, 1.1071487177940904], [1.7801400586352991, 0.992532314314987, 1.1071487177940904], [1.7950549357115009, 0.9799235766494779, 1.1071487177940904], [1.8102504623576798, 0.9675245744932921, 1.1071487177940904], [1.8257196310195076, 0.9553338357603363, 1.1071487177940904], [1.8414555455111206, 0.9433496897884418, 1.1071487177940904], [1.85745142641124, 0.9315702846807277, 1.1071487177940904], [1.8737006156909062, 0.9199936039884339, 1.1071487177940904], [1.8901965806189713, 0.9086174826963745, 1.1071487177940904], [1.9069329169917488, 0.8974396224825003, 1.1071487177940904], [1.9239033517330097, 0.8864576062323921, 1.1071487177940904], [1.9411017449098842, 0.8756689117978297, 1.1071487177940904], [1.958522091209268, 0.8650709249959369, 1.1071487177940904], [1.9761585209180692, 0.8546609518518318, 1.1071487177940904], [1.9940053004491478, 0.8444362300932557, 1.1071487177940904], [2.0120568324531347, 0.8343939399103814, 1.1071487177940904], [2.0303076555545037, 0.8245312139979708, 1.1071487177940904], [2.0487524437483775, 0.8148451469003151, 1.1071487177940904], [2.067386005492567, 0.8053328036820212, 1.1071487177940904], [2.086203282527356, 0.7959912279497793, 1.1071487177940904], [2.105199348453527, 0.7868174492517847, 1.1071487177940904], [2.1243694070971357, 0.7778084898825908, 1.1071487177940904], [2.1437087906875685, 0.7689613711218714, 1.1071487177940904], [2.1632129578735233, 0.760273118935919, 1.1071487177940904], [2.182877491599681, 0.7517407691707698, 1.1071487177940904], [2.202698096865059, 0.7433613722656437, 1.1071487177940904], [2.2226705983823223, 0.7351319975149814, 1.1071487177940904], [2.242790938155705, 0.7270497369067734, 1.1071487177940904], [2.2630551729936466, 0.7191117085641443, 1.1071487177940904], [2.2834594719707857, 0.711315059816309, 1.1071487177940904], [2.3040001138525867, 0.7036569699240866, 1.1071487177940904], [2.3246734844945873, 0.6961346524841474, 1.1071487177940904], [2.345476074227047, 0.6887453575351307, 1.1071487177940904], [2.3664044752346696, 0.6814863733876781, 1.1071487177940904], [2.387455378940026, 0.6743550281993451, 1.1071487177940904], [2.4086255733983424, 0.6673486913142439, 1.1071487177940904], [2.4299119407104373, 0.6604647743861882, 1.1071487177940904], [2.4513114544597703, 0.653700732303029, 1.1071487177940904], [2.4728211771788153, 0.6470540639288199, 1.1071487177940904], [2.494438257849292, 0.6405223126794253, 1.1071487177940904]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.1081851067789197, 1.5707963267948966, 1.2490457723982544], [2.1083583435067115, 1.5579769844973095, 1.2490457723982544], [2.10887796830545, 1.545161854162455, 1.2490457723982544], [2.109743725231508, 1.5323551394555992, 1.2490457723982544], [2.110955188411909, 1.5195610274878968, 1.2490457723982544], [2.1125117630897194, 1.506783680641017, 1.2490457723982544], [2.1144126870792164, 1.494027228512744, 1.2490457723982544], [2.1166570326225522, 1.4812957600221515, 1.2490457723982544], [2.119243708637424, 1.4685933157115194, 1.2490457723982544], [2.1221714633431334, 1.4559238802803813, 1.2490457723982544], [2.125438887250445, 1.4432913753850407, 1.2490457723982544], [2.1290444164988016, 1.4306996527345668, 1.2490457723982544], [2.132986336522781, 1.4181524875117155, 1.2490457723982544], [2.137262786028163, 1.4056535721444652, 1.2490457723982544], [2.1418717612566573, 1.3932065104509288, 1.2490457723982544], [2.146811120517212, 1.3808148121773616, 1.2490457723982544], [2.1520785889608853, 1.3684818879458478, 1.2490457723982544], [2.15767176357555, 1.3562110446250653, 1.2490457723982544], [2.163588118376141, 1.3440054811343445, 1.2490457723982544], [2.1698250097658653, 1.3318682846880636, 1.2490457723982544], [2.1763796820436236, 1.3198024274843256, 1.2490457723982544], [2.183249273032974, 1.3078107638388448, 1.2490457723982544], [2.1904308198081845, 1.2958960277620823, 1.2490457723982544], [2.1979212644933255, 1.2840608309749244, 1.2490457723982544], [2.2057174601109186, 1.2723076613556175, 1.2490457723982544], [2.2138161764573465, 1.2606388818082932, 1.2490457723982544], [2.2222141059830682, 1.2490567295412194, 1.2490457723982544], [2.230907869656627, 1.2375633157409491, 1.2490457723982544], [2.2398940227924733, 1.2261606256267854, 1.2490457723982544], [2.2491690608237676, 1.2148505188684509, 1.2490457723982544], [2.258729425002501, 1.2036347303485606, 1.2490457723982544], [2.2685715080105426, 1.1925148712504188, 1.2490457723982544], [2.278691659466494, 1.1814924304508077, 1.2490457723982544], [2.2890861913145475, 1.1705687761968027, 1.2490457723982544], [2.299751383082867, 1.1597451580452118, 1.2490457723982544], [2.310683487000332, 1.1490227090429974, 1.2490457723982544], [2.321878732961803, 1.1384024481269839, 1.2490457723982544], [2.333333333333333, 1.127885282721258, 1.2490457723982544], [2.345043487590031, 1.117472011510941, 1.2490457723982544], [2.3570053867804863, 1.1071633273714032, 1.2490457723982544], [2.369215217812827, 1.0969598204325246, 1.2490457723982544], [2.3816691675586203, 1.0868619812582383, 1.2490457723982544], [2.394363426771864, 1.0768702041223137, 1.2490457723982544], [2.4072941938213273, 1.0669847903621485, 1.2490457723982544], [2.420457678235437, 1.0572059517932035, 1.2490457723982544], [2.4338501040597653, 1.0475338141676362, 1.2490457723982544], [2.4474677130279816, 1.0379684206616466, 1.2490457723982544], [2.4613067675478706, 1.0285097353770303, 1.2490457723982544], [2.475363553504679, 1.0191576468434391, 1.2490457723982544], [2.489634382884667, 1.0099119715088474, 1.2490457723982544], [2.5041155962222597, 1.0007724572067287, 1.2490457723982544], [2.5188035648746903, 0.9917387865894328, 1.2490457723982544], [2.5336946931284303, 0.9828105805182258, 1.2490457723982544], [2.5487854201420594, 0.9739874014014032, 1.2490457723982544], [2.56407222173053, 0.965268756472797, 1.2490457723982544], [2.579551611996042, 0.9566541010038856, 1.2490457723982544], [2.595220144810929, 0.9481428414435538, 1.2490457723982544], [2.6110744151581318, 0.9397343384803575, 1.2490457723982544], [2.6271110603349337, 0.9314279100229061, 1.2490457723982544], [2.6433267610257225, 0.9232228340946954, 1.2490457723982544], [2.659718242249576, 0.9151183516403903, 1.2490457723982544], [2.676282274188478, 0.9071136692411924, 1.2490457723982544], [2.693015672901955, 0.8992079617375003, 1.2490457723982544], [2.7099153009338734, 0.8914003747576148, 1.2490457723982544], [2.72697806781707, 0.8836900271517317, 1.2490457723982544], [2.7442009304813952, 0.8760760133309167, 1.2490457723982544], [2.7615808935706427, 0.8685574055111682, 1.2490457723982544], [2.7791150096737165, 0.8611332558630436, 1.2490457723982544], [2.7968003794752483, 0.8538025985676558, 1.2490457723982544], [2.8146341518307287, 0.8465644517801475, 1.2490457723982544], [2.832613523771063, 0.8394178195020087, 1.2490457723982544], [2.8507357404412965, 0.8323616933638359, 1.2490457723982544], [2.8689980949780876, 0.8253950543203312, 1.2490457723982544], [2.8873979283303237, 0.81851687425951, 1.2490457723982544], [2.9059326290271135, 0.811726117528234, 1.2490457723982544]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.4907119849998598, 1.5707963267948966, 0.4636476090008061], [1.490956968665475, 1.5526680320218165, 0.4636476090008061], [1.4916916782572398, 1.5345516446102192, 0.4636476090008061], [1.4929153907477473, 1.516459025060989, 0.4636476090008061], [1.4946269050371523, 1.4984019406138989, 0.4636476090008061], [1.496824547824565, 1.4803920197588614, 0.4636476090008061], [1.4995061817342834, 1.462440708094047, 0.4636476090008061], [1.5026692156054455, 1.4445592259417228, 0.4636476090008061], [1.5063106168307652, 1.4267585281014228, 0.4636476090008061], [1.5104269256093503, 1.4090492660827278, 0.4636476090008061], [1.51501427096057, 1.3914417531175227, 0.4636476090008061], [1.5200683883307684, 1.3739459322052667, 0.4636476090008061], [1.525584638612572, 1.3565713473957592, 0.4636476090008061], [1.5315580283876427, 1.3393271184633377, 0.4636476090008061], [1.5379832311980757, 1.3222219190755997, 0.4636476090008061], [1.5448546096491227, 1.3052639585097612, 0.4636476090008061], [1.552166238146434, 1.288460966921662, 0.4636476090008061], [1.5599119260743541, 1.2718201841271535, 0.4636476090008061], [1.5680852412277175, 1.2553483518139157, 0.4636476090008061], [1.5766795333177936, 1.239051709064283, 0.4636476090008061], [1.5856879573831928, 1.2229359910368367, 0.4636476090008061], [1.595103496948329, 1.2070064306266917, 0.4636476090008061], [1.6049189867851064, 1.1912677629016484, 0.4636476090008061], [1.6151271351474834, 1.1757242320937344, 0.4636476090008061], [1.6257205453631753, 1.1603796009129799, 0.4636476090008061], [1.6366917366816522, 1.1452371619423023, 0.4636476090008061], [1.6480331642924861, 1.1302997508688268, 0.4636476090008061], [1.6597372384427742, 1.115569761307395, 0.4636476090008061], [1.6717963425965576, 1.101049160976015, 0.4636476090008061], [1.684202850592721, 1.0867395089900893, 0.4636476090008061], [1.6969491427706094, 1.0726419740519229, 0.4636476090008061], [1.7100276210444685, 1.0587573533238186, 0.4636476090008061], [1.723430722918662, 1.0450860917865115, 0.4636476090008061], [1.7371509344454554, 1.0316283018993488, 0.4636476090008061], [1.7511808021359003, 1.0183837833940963, 0.4636476090008061], [1.7655129438420414, 1.0053520430501524, 0.4636476090008061], [1.7801400586352991, 0.992532314314987, 0.4636476090008061], [1.7950549357115009, 0.9799235766494779, 0.4636476090008061], [1.8102504623576798, 0.9675245744932921, 0.4636476090008061], [1.8257196310195076, 0.9553338357603363, 0.4636476090008061], [1.8414555455111206, 0.9433496897884418, 0.4636476090008061], [1.85745142641124, 0.9315702846807277, 0.4636476090008061], [1.8737006156909062, 0.9199936039884339, 0.4636476090008061], [1.8901965806189713, 0.9086174826963745, 0.4636476090008061], [1.9069329169917488, 0.8974396224825003, 0.4636476090008061], [1.9239033517330097, 0.8864576062323921, 0.4636476090008061], [1.9411017449098842, 0.8756689117978297, 0.4636476090008061], [1.958522091209268, 0.8650709249959369, 0.4636476090008061], [1.9761585209180692, 0.8546609518518318, 0.4636476090008061], [1.9940053004491478, 0.8444362300932557, 0.4636476090008061], [2.0120568324531347, 0.8343939399103814, 0.4636476090008061], [2.0303076555545037, 0.8245312139979708, 0.4636476090008061], [2.0487524437483775, 0.8148451469003151, 0.4636476090008061], [2.067386005492567, 0.8053328036820212, 0.4636476090008061], [2.086203282527356, 0.7959912279497793, 0.4636476090008061], [2.105199348453527, 0.7868174492517847, 0.4636476090008061], [2.1243694070971357, 0.7778084898825908, 0.4636476090008061], [2.1437087906875685, 0.7689613711218714, 0.4636476090008061], [2.1632129578735233, 0.760273118935919, 0.4636476090008061], [2.182877491599681, 0.7517407691707698, 0.4636476090008061], [2.202698096865059, 0.7433613722656437, 0.4636476090008061], [2.2226705983823223, 0.7351319975149814, 0.4636476090008061], [2.242790938155705, 0.7270497369067734, 0.4636476090008061], [2.2630551729936466, 0.7191117085641443, 0.4636476090008061], [2.2834594719707857, 0.711315059816309, 0.4636476090008061], [2.3040001138525867, 0.7036569699240866, 0.4636476090008061], [2.3246734844945873, 0.6961346524841474, 0.4636476090008061], [2.345476074227047, 0.6887453575351307, 0.4636476090008061], [2.3664044752346696, 0.6814863733876781, 0.4636476090008061], [2.387455378940026, 0.6743550281993451, 0.4636476090008061], [2.4086255733983424, 0.6673486913142439, 0.4636476090008061], [2.4299119407104373, 0.6604647743861882, 0.4636476090008061], [2.4513114544597703, 0.653700732303029, 0.4636476090008061], [2.4728211771788153, 0.6470540639288199, 0.4636476090008061], [2.494438257849292, 0.6405223126794253, 0.4636476090008061]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[1.8856180831641267, 1.5707963267948966, 0.7853981633974483], [1.8858117657246376, 1.556464062659201, 0.7853981633974483], [1.8863926940897628, 1.5421376841952326, 0.7853981633974483], [1.8873605106774995, 1.5278230625855886, 0.7853981633974483], [1.888714620739266, 1.5135260401236628, 0.7853981633974483], [1.8904541941828548, 1.4992524159906644, 0.7853981633974483], [1.892578168106317, 1.485007932295745, 0.7853981633974483], [1.8950852500248156, 1.4707982604622618, 0.7853981633974483], [1.8979739217677394, 1.4566289880393113, 0.7853981633974483], [1.9012424440189228, 1.4425056060129327, 0.7853981633974483], [1.9048888614687, 1.428433496685882, 0.7853981633974483], [1.908911008542785, 1.4144179221887376, 0.7853981633974483], [1.9133065156696625, 1.4004640136783773, 0.7853981633974483], [1.9180728160453075, 1.3865767612727244, 0.7853981633974483], [1.9232071528516648, 1.3727610047631866, 0.7853981633974483], [1.9287065868834161, 1.3590214251385087, 0.7853981633974483], [1.934568004536151, 1.3453625369460043, 0.7853981633974483], [1.940788126108137, 1.3317886815083484, 0.7853981633974483], [1.947363514367444, 1.3183040210064982, 0.7853981633974483], [1.954290583336201, 1.30491253343189, 0.7853981633974483], [1.9615656072442276, 1.2916180084039792, 0.7853981633974483], [1.9691847296051532, 1.2784240438424899, 0.7853981633974483], [1.9771439723694038, 1.2653340434775115, 0.7853981633974483], [1.985439245110021, 1.2523512151748684, 0.7853981633974483], [1.9940663541991959, 1.2394785700490312, 0.7853981633974483], [2.003021011935555, 1.2267189223312933, 0.7853981633974483], [2.0122988455846307, 1.2140748899569744, 0.7853981633974483], [2.0218954062975114, 1.2015488958320995, 0.7853981633974483], [2.0318061778753798, 1.1891431697372796, 0.7853981633974483], [2.0420265853504405, 1.1768597508244236, 0.7853981633974483], [2.0525520033566114, 1.1647004906603773, 0.7853981633974483], [2.0633777642662374, 1.152667056770622, 0.7853981633974483], [2.074499166071964, 1.1407609366357123, 0.7853981633974483], [2.0859114799957483, 1.1289834420931688, 0.7853981633974483], [2.0976099578097616, 1.1173357140980116, 0.7853981633974483], [2.1095898388566257, 1.105818727795984, 0.7853981633974483], [2.121846356758995, 1.0944332978647424, 0.7853981633974483], [2.134374745810949, 1.083180084079791, 0.7853981633974483], [2.1471702470459877, 1.0720595970637232, 0.7853981633974483], [2.1602281139785537, 1.061072204179317, 0.7853981633974483], [2.173543618018049, 1.0502181355291775, 0.7853981633974483], [2.1871120535561235, 1.039497490026908, 0.7853981633974483], [2.200928742729717, 1.0289102415071576, 0.7853981633974483], [2.214989039863851, 1.0184562448443206, 0.7853981633974483], [2.229288335599501, 1.0081352420521168, 0.7853981633974483], [2.2438220607131134, 0.9979468683387145, 0.7853981633974483], [2.258585689635337, 0.9878906580944917, 0.7853981633974483], [2.2735747436774663, 0.9779660507918785, 0.7853981633974483], [2.288784793974834, 0.9681723967790279, 0.7853981633974483], [2.304211464157018, 0.9585089629512716, 0.7853981633974483], [2.3198504327552403, 0.9489749382864278, 0.7853981633974483], [2.3356974353577047, 0.9395694392320355, 0.7853981633974483], [2.351748266523924, 0.9302915149344851, 0.7853981633974483], [2.3679987814692485, 0.9211401523017837, 0.7853981633974483], [2.3844448975309214, 0.9121142808933494, 0.7853981633974483], [2.4010825954270065, 0.9032127776317558, 0.7853981633974483], [2.417907920319459, 0.8944344713327542, 0.7853981633974483], [2.434916982692529, 0.8857781470511856, 0.7853981633974483], [2.4521059590574894, 0.8772425502415617, 0.7853981633974483], [2.4694710924944734, 0.8688263907331472, 0.7853981633974483], [2.487008693041962, 0.8605283465203167, 0.7853981633974483], [2.5047151379441464, 0.8523470673697977, 0.7853981633974483], [2.5225868717661, 0.8442811782471482, 0.7853981633974483], [2.540620406386329, 0.8363292825654637, 0.7853981633974483], [2.5588123208759237, 0.8284899652598606, 0.7853981633974483], [2.577159261273169, 0.820761795691765, 0.7853981633974483], [2.5956579402620714, 0.8131433303874244, 0.7853981633974483], [2.6143051367628938, 0.8056331156154022, 0.7853981633974483], [2.633097695442386, 0.7982296898080677, 0.7853981633974483], [2.6520325261510265, 0.7909315858323133, 0.7853981633974483], [2.67110660329419, 0.7837373331148758, 0.7853981633974483], [2.690316965143791, 0.7766454596277562, 0.7853981633974483], [2.709660713096569, 0.7696544937392875, 0.7853981633974483], [2.7291350108848325, 0.7627629659364359, 0.7853981633974483], [2.748737083745105, 0.7559694104239084, 0.7853981633974483]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.4037008503093262, 1.5707963267948966, 0.982793723247329], [2.403852790411197, 1.559552877703156, 0.982793723247329], [2.404308553105748, 1.548312270577464, 0.982793723247329], [2.405067965668965, 1.5370773430761067, 0.982793723247329], [2.4061307405908954, 1.5258509242581575, 0.982793723247329], [2.407496476119076, 1.5146358303245326, 0.982793723247329], [2.409164657015972, 1.5034348604075192, 0.982793723247329], [2.411134655527111, 1.4922507924244042, 0.982793723247329], [2.4134057325556837, 1.481086379010381, 0.982793723247329], [2.4159770390385065, 1.4699443435453636, 0.982793723247329], [2.418847617517429, 1.4588273762886885, 0.982793723247329], [2.4220164038994563, 1.447738130634953, 0.982793723247329], [2.4254822293981473, 1.4366792195034164, 0.982793723247329], [2.4292438226481505, 1.4256532118725074, 0.982793723247329], [2.4332998119841354, 1.4146626294700213, 0.982793723247329], [2.437648727874814, 1.4037099436285911, 0.982793723247329], [2.442289005502258, 1.3927975723149626, 0.982793723247329], [2.447218987476306, 1.381927877340526, 0.982793723247329], [2.452436926673496, 1.3711031617594482, 0.982793723247329], [2.457940989189686, 1.3603256674596378, 0.982793723247329], [2.4637292573953085, 1.3495975729506535, 0.982793723247329], [2.469799733082086, 1.3389209913515587, 0.982793723247329], [2.4761503406899363, 1.328297968580629, 0.982793723247329], [2.482778930602818, 1.317730481747757, 0.982793723247329], [2.489683282502314, 1.3072204377493568, 0.982793723247329], [2.4968611087678783, 1.2967696720645867, 0.982793723247329], [2.5043100579128494, 1.2863799477507591, 0.982793723247329], [2.5120277180455637, 1.2760529546349126, 0.982793723247329], [2.5200116203451883, 1.2657903086976954, 0.982793723247329], [2.5282592425422283, 1.2555935516449281, 0.982793723247329], [2.536768012394011, 1.2454641506615183, 0.982793723247329], [2.5455353111458816, 1.2354034983417523, 0.982793723247329], [2.5545584769692584, 1.225412912789425, 0.982793723247329], [2.5638348083681746, 1.2154936378807701, 0.982793723247329], [2.573361567546405, 1.2056468436827164, 0.982793723247329], [2.5831359837277916, 1.195873627018648, 0.982793723247329], [2.5931552564228855, 1.1861750121735386, 0.982793723247329], [2.6034165586355513, 1.1765519517301115, 0.982793723247329], [2.6139170400037086, 1.167005327527515, 0.982793723247329], [2.624653829868915, 1.1575359517338886, 0.982793723247329], [2.6356240402700104, 1.1481445680241602, 0.982793723247329], [2.6468247688565834, 1.1388318528544163, 0.982793723247329], [2.6582531017185023, 1.1295984168242423, 0.982793723247329], [2.6699061161282818, 1.1204448061185386, 0.982793723247329], [2.68178088319352, 1.1113715040204584, 0.982793723247329], [2.69387447041711, 1.1023789324872981, 0.982793723247329], [2.7061839441633957, 1.0934674537813862, 0.982793723247329], [2.7187063720288513, 1.084637372148263, 0.982793723247329], [2.7314388251162875, 1.075888935534718, 0.982793723247329], [2.7443783802119657, 1.0672223373395375, 0.982793723247329], [2.757522121865371, 1.058637718190136, 0.982793723247329], [2.7708671443717363, 1.0501351677385637, 0.982793723247329], [2.7844105536577226, 1.041714726470721, 0.982793723247329], [2.798149469070955, 1.0333763875229571, 0.982793723247329], [2.812081025074397, 1.025120098500579, 0.982793723247329], [2.82620237284677, 1.0169457632931465, 0.982793723247329], [2.8405106817904757, 1.0088532438817828, 0.982793723247329], [2.85500314094866, 1.0008423621340803, 0.982793723247329], [2.8696769603332486, 0.9929129015825238, 0.982793723247329], [2.8845293721659466, 0.9850646091826887, 0.982793723247329], [2.899557632034326, 0.97729719704781, 0.982793723247329], [2.91475901996525, 0.9696103441566304, 0.982793723247329], [2.930130841417991, 0.9620036980317499, 0.982793723247329], [2.9456704281994717, 0.9544768763860012, 0.982793723247329], [2.9613751393041468, 0.9470294687346538, 0.982793723247329], [2.977242361681072, 0.9396610379715341, 0.982793723247329], [2.9932695109307748, 0.9323711219074005, 0.982793723247329], [3.0094540319345424, 0.925159234769164, 0.982793723247329], [3.025793399418775, 0.9180248686587787, 0.982793723247329], [3.0422851184570487, 0.9109674949708441, 0.982793723247329], [3.0589267249125225, 0.9039865657681637, 0.982793723247329], [3.075715785823313, 0.897081515114707, 0.982793723247329], [3.0926498997334355, 0.8902517603655853, 0.982793723247329], [3.10972669697187, 0.8834967034138294, 0.982793723247329], [3.1269438398822844, 0.8768157318939034, 0.982793723247329]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.1081851067789197, 1.5707963267948966, 0.3217505543966422], [2.1083583435067115, 1.5579769844973095, 0.3217505543966422], [2.10887796830545, 1.545161854162455, 0.3217505543966422], [2.109743725231508, 1.5323551394555992, 0.3217505543966422], [2.110955188411909, 1.5195610274878968, 0.3217505543966422], [2.1125117630897194, 1.506783680641017, 0.3217505543966422], [2.1144126870792164, 1.494027228512744, 0.3217505543966422], [2.1166570326225522, 1.4812957600221515, 0.3217505543966422], [2.119243708637424, 1.4685933157115194, 0.3217505543966422], [2.1221714633431334, 1.4559238802803813, 0.3217505543966422], [2.125438887250445, 1.4432913753850407, 0.3217505543966422], [2.1290444164988016, 1.4306996527345668, 0.3217505543966422], [2.132986336522781, 1.4181524875117155, 0.3217505543966422], [2.137262786028163, 1.4056535721444652, 0.3217505543966422], [2.1418717612566573, 1.3932065104509288, 0.3217505543966422], [2.146811120517212, 1.3808148121773616, 0.3217505543966422], [2.1520785889608853, 1.3684818879458478, 0.3217505543966422], [2.15767176357555, 1.3562110446250653, 0.3217505543966422], [2.163588118376141, 1.3440054811343445, 0.3217505543966422], [2.1698250097658653, 1.3318682846880636, 0.3217505543966422], [2.1763796820436236, 1.3198024274843256, 0.3217505543966422], [2.183249273032974, 1.3078107638388448, 0.3217505543966422], [2.1904308198081845, 1.2958960277620823, 0.3217505543966422], [2.1979212644933255, 1.2840608309749244, 0.3217505543966422], [2.2057174601109186, 1.2723076613556175, 0.3217505543966422], [2.2138161764573465, 1.2606388818082932, 0.3217505543966422], [2.2222141059830682, 1.2490567295412194, 0.3217505543966422], [2.230907869656627, 1.2375633157409491, 0.3217505543966422], [2.2398940227924733, 1.2261606256267854, 0.3217505543966422], [2.2491690608237676, 1.2148505188684509, 0.3217505543966422], [2.258729425002501, 1.2036347303485606, 0.3217505543966422], [2.2685715080105426, 1.1925148712504188, 0.3217505543966422], [2.278691659466494, 1.1814924304508077, 0.3217505543966422], [2.2890861913145475, 1.1705687761968027, 0.3217505543966422], [2.299751383082867, 1.1597451580452118, 0.3217505543966422], [2.310683487000332, 1.1490227090429974, 0.3217505543966422], [2.321878732961803, 1.1384024481269839, 0.3217505543966422], [2.333333333333333, 1.127885282721258, 0.3217505543966422], [2.345043487590031, 1.117472011510941, 0.3217505543966422], [2.3570053867804863, 1.1071633273714032, 0.3217505543966422], [2.369215217812827, 1.0969598204325246, 0.3217505543966422], [2.3816691675586203, 1.0868619812582383, 0.3217505543966422], [2.394363426771864, 1.0768702041223137, 0.3217505543966422], [2.4072941938213273, 1.0669847903621485, 0.3217505543966422], [2.420457678235437, 1.0572059517932035, 0.3217505543966422], [2.4338501040597653, 1.0475338141676362, 0.3217505543966422], [2.4474677130279816, 1.0379684206616466, 0.3217505543966422], [2.4613067675478706, 1.0285097353770303, 0.3217505543966422], [2.475363553504679, 1.0191576468434391, 0.3217505543966422], [2.489634382884667, 1.0099119715088474, 0.3217505543966422], [2.5041155962222597, 1.0007724572067287, 0.3217505543966422], [2.5188035648746903, 0.9917387865894328, 0.3217505543966422], [2.5336946931284303, 0.9828105805182258, 0.3217505543966422], [2.5487854201420594, 0.9739874014014032, 0.3217505543966422], [2.56407222173053, 0.965268756472797, 0.3217505543966422], [2.579551611996042, 0.9566541010038856, 0.3217505543966422], [2.595220144810929, 0.9481428414435538, 0.3217505543966422], [2.6110744151581318, 0.9397343384803575, 0.3217505543966422], [2.6271110603349337, 0.9314279100229061, 0.3217505543966422], [2.6433267610257225, 0.9232228340946954, 0.3217505543966422], [2.659718242249576, 0.9151183516403903, 0.3217505543966422], [2.676282274188478, 0.9071136692411924, 0.3217505543966422], [2.693015672901955, 0.8992079617375003, 0.3217505543966422], [2.7099153009338734, 0.8914003747576148, 0.3217505543966422], [2.72697806781707, 0.8836900271517317, 0.3217505543966422], [2.7442009304813952, 0.8760760133309167, 0.3217505543966422], [2.7615808935706427, 0.8685574055111682, 0.3217505543966422], [2.7791150096737165, 0.8611332558630436, 0.3217505543966422], [2.7968003794752483, 0.8538025985676558, 0.3217505543966422], [2.8146341518307287, 0.8465644517801475, 0.3217505543966422], [2.832613523771063, 0.8394178195020087, 0.3217505543966422], [2.8507357404412965, 0.8323616933638359, 0.3217505543966422], [2.8689980949780876, 0.8253950543203312, 0.3217505543966422], [2.8873979283303237, 0.81851687425951, 0.3217505543966422], [2.9059326290271135, 0.811726117528234, 0.3217505543966422]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.4037008503093262, 1.5707963267948966, 0.5880026035475675], [2.403852790411197, 1.559552877703156, 0.5880026035475675], [2.404308553105748, 1.548312270577464, 0.5880026035475675], [2.405067965668965, 1.5370773430761067, 0.5880026035475675], [2.4061307405908954, 1.5258509242581575, 0.5880026035475675], [2.407496476119076, 1.5146358303245326, 0.5880026035475675], [2.409164657015972, 1.5034348604075192, 0.5880026035475675], [2.411134655527111, 1.4922507924244042, 0.5880026035475675], [2.4134057325556837, 1.481086379010381, 0.5880026035475675], [2.4159770390385065, 1.4699443435453636, 0.5880026035475675], [2.418847617517429, 1.4588273762886885, 0.5880026035475675], [2.4220164038994563, 1.447738130634953, 0.5880026035475675], [2.4254822293981473, 1.4366792195034164, 0.5880026035475675], [2.4292438226481505, 1.4256532118725074, 0.5880026035475675], [2.4332998119841354, 1.4146626294700213, 0.5880026035475675], [2.437648727874814, 1.4037099436285911, 0.5880026035475675], [2.442289005502258, 1.3927975723149626, 0.5880026035475675], [2.447218987476306, 1.381927877340526, 0.5880026035475675], [2.452436926673496, 1.3711031617594482, 0.5880026035475675], [2.457940989189686, 1.3603256674596378, 0.5880026035475675], [2.4637292573953085, 1.3495975729506535, 0.5880026035475675], [2.469799733082086, 1.3389209913515587, 0.5880026035475675], [2.4761503406899363, 1.328297968580629, 0.5880026035475675], [2.482778930602818, 1.317730481747757, 0.5880026035475675], [2.489683282502314, 1.3072204377493568, 0.5880026035475675], [2.4968611087678783, 1.2967696720645867, 0.5880026035475675], [2.5043100579128494, 1.2863799477507591, 0.5880026035475675], [2.5120277180455637, 1.2760529546349126, 0.5880026035475675], [2.5200116203451883, 1.2657903086976954, 0.5880026035475675], [2.5282592425422283, 1.2555935516449281, 0.5880026035475675], [2.536768012394011, 1.2454641506615183, 0.5880026035475675], [2.5455353111458816, 1.2354034983417523, 0.5880026035475675], [2.5545584769692584, 1.225412912789425, 0.5880026035475675], [2.5638348083681746, 1.2154936378807701, 0.5880026035475675], [2.573361567546405, 1.2056468436827164, 0.5880026035475675], [2.5831359837277916, 1.195873627018648, 0.5880026035475675], [2.5931552564228855, 1.1861750121735386, 0.5880026035475675], [2.6034165586355513, 1.1765519517301115, 0.5880026035475675], [2.6139170400037086, 1.167005327527515, 0.5880026035475675], [2.624653829868915, 1.1575359517338886, 0.5880026035475675], [2.6356240402700104, 1.1481445680241602, 0.5880026035475675], [2.6468247688565834, 1.1388318528544163, 0.5880026035475675], [2.6582531017185023, 1.1295984168242423, 0.5880026035475675], [2.6699061161282818, 1.1204448061185386, 0.5880026035475675], [2.68178088319352, 1.1113715040204584, 0.5880026035475675], [2.69387447041711, 1.1023789324872981, 0.5880026035475675], [2.7061839441633957, 1.0934674537813862, 0.5880026035475675], [2.7187063720288513, 1.084637372148263, 0.5880026035475675], [2.7314388251162875, 1.075888935534718, 0.5880026035475675], [2.7443783802119657, 1.0672223373395375, 0.5880026035475675], [2.757522121865371, 1.058637718190136, 0.5880026035475675], [2.7708671443717363, 1.0501351677385637, 0.5880026035475675], [2.7844105536577226, 1.041714726470721, 0.5880026035475675], [2.798149469070955, 1.0333763875229571, 0.5880026035475675], [2.812081025074397, 1.025120098500579, 0.5880026035475675], [2.82620237284677, 1.0169457632931465, 0.5880026035475675], [2.8405106817904757, 1.0088532438817828, 0.5880026035475675], [2.85500314094866, 1.0008423621340803, 0.5880026035475675], [2.8696769603332486, 0.9929129015825238, 0.5880026035475675], [2.8845293721659466, 0.9850646091826887, 0.5880026035475675], [2.899557632034326, 0.97729719704781, 0.5880026035475675], [2.91475901996525, 0.9696103441566304, 0.5880026035475675], [2.930130841417991, 0.9620036980317499, 0.5880026035475675], [2.9456704281994717, 0.9544768763860012, 0.5880026035475675], [2.9613751393041468, 0.9470294687346538, 0.5880026035475675], [2.977242361681072, 0.9396610379715341, 0.5880026035475675], [2.9932695109307748, 0.9323711219074005, 0.5880026035475675], [3.0094540319345424, 0.925159234769164, 0.5880026035475675], [3.025793399418775, 0.9180248686587787, 0.5880026035475675], [3.0422851184570487, 0.9109674949708441, 0.5880026035475675], [3.0589267249125225, 0.9039865657681637, 0.5880026035475675], [3.075715785823313, 0.897081515114707, 0.5880026035475675], [3.0926498997334355, 0.8902517603655853, 0.5880026035475675], [3.10972669697187, 0.8834967034138294, 0.5880026035475675], [3.1269438398822844, 0.8768157318939034, 0.5880026035475675]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}, {&quot;points&quot;: [[2.8284271247461903, 1.5707963267948966, 0.7853981633974483], [2.8285562501371473, 1.5612411205654944, 0.7853981633974483], [2.8289435909469245, 1.5516876588357804, 0.7853981633974483], [2.8295890411346445, 1.5421376841952326, 0.7853981633974483], [2.8304924241267124, 1.5325929354181342, 0.7853981633974483], [2.831653493058074, 1.5230551455690144, 0.7853981633974483], [2.833071931108899, 1.5135260401236628, 0.7853981633974483], [2.834747351935629, 1.5040073351107797, 0.7853981633974483], [2.8366793001950112, 1.4945007352792328, 0.7853981633974483], [2.8388672521594756, 1.485007932295745, 0.7853981633974483], [2.8413106164219295, 1.4755306029777016, 0.7853981633974483], [2.8440087346877605, 1.4660704075655797, 0.7853981633974483], [2.8469608826516093, 1.4566289880393113, 0.7853981633974483], [2.850166270956209, 1.4472079664826762, 0.7853981633974483], [2.853624046230381, 1.437808943499587, 0.7853981633974483], [2.8573332922030503, 1.428433496685882, 0.7853981633974483], [2.8612930308899562, 1.419083179159977, 0.7853981633974483], [2.865502223849561, 1.4097595181554532, 0.7853981633974483], [2.869959773504494, 1.4004640136783773, 0.7853981633974483], [2.8746645245247304, 1.3911981372318467, 0.7853981633974483], [2.8796152652685847, 1.3819633306099721, 0.7853981633974483], [2.8848107292774974, 1.3727610047631866, 0.7853981633974483], [2.890249596820508, 1.3635925387364822, 0.7853981633974483], [2.8959304964842465, 1.3544592786818637, 0.7853981633974483], [2.901852006804227, 1.3453625369460043, 0.7853981633974483], [2.9080126579332113, 1.3363035912337995, 0.7853981633974483], [2.9144109333423938, 1.327283683848208, 0.7853981633974483], [2.921045271551166, 1.3183040210064985, 0.7853981633974483], [2.9279140678812627, 1.3093657722327274, 0.7853981633974483], [2.935015676231121, 1.3004700698260232, 0.7853981633974483], [2.9423484108663414, 1.2916180084039794, 0.7853981633974483], [2.9499105482222308, 1.282810644520229, 0.7853981633974483], [2.957700328714476, 1.2740489963550339, 0.7853981633974483], [2.9657159585541053, 1.2653340434775118, 0.7853981633974483], [2.9739556115630092, 1.2566667266779192, 0.7853981633974483], [2.9824174309864087, 1.2480479478682238, 0.7853981633974483], [2.991099531298794, 1.2394785700490314, 0.7853981633974483], [2.9999999999999996, 1.230959417340775, 0.7853981633974483], [3.0091168993982222, 1.2224912750769403, 0.7853981633974483], [3.0184482683769462, 1.2140748899569747, 0.7853981633974483], [3.027992124142901, 1.2057109702564266, 0.7853981633974483], [3.0377464639523373, 1.1974001860917676, 0.7853981633974483], [3.0477092668130696, 1.1891431697372798, 0.7853981633974483], [3.0578784951599087, 1.180940515991326, 0.7853981633974483], [3.06825209650127, 1.1727927825892825, 0.7853981633974483], [3.078828005034917, 1.1647004906603775, 0.7853981633974483], [3.0896041432309698, 1.1566641252256629, 0.7853981633974483], [3.1005784233804667, 1.1486841357343462, 0.7853981633974483], [3.1117487491079463, 1.1407609366357125, 0.7853981633974483], [3.1231130168466645, 1.1328949079838821, 0.7853981633974483], [3.134669117275238, 1.1250863960726922, 0.7853981633974483], [3.146414936714642, 1.1173357140980116, 0.7853981633974483], [3.158348358484657, 1.1096431428448599, 0.7853981633974483], [3.170467264218997, 1.1020089313967503, 0.7853981633974483], [3.1827695351384917, 1.0944332978647426, 0.7853981633974483], [3.195253053281842, 1.0869164301337595, 0.7853981633974483], [3.207915702693575, 1.079458486623794, 0.7853981633974483], [3.220755370568981, 1.0720595970637232, 0.7853981633974483], [3.233769948355896, 1.0647198632755146, 0.7853981633974483], [3.2469573328133357, 1.057439359966713, 0.7853981633974483], [3.260315427027074, 1.0502181355291778, 0.7853981633974483], [3.2738421413823557, 1.0430562128421348, 0.7853981633974483], [3.2875353944940464, 1.0359535900777044, 0.7853981633974483], [3.3013931140945756, 1.0289102415071576, 0.7853981633974483], [3.3154132378801404, 1.0219261183062551, 0.7853981633974483], [3.3295937143156835, 1.0150011493581093, 0.7853981633974483], [3.3439325033992513, 1.008135242052117, 0.7853981633974483], [3.3584275773863723, 1.0013282830775947, 0.7853981633974483], [3.373076921475176, 0.9945801392108475, 0.7853981633974483], [3.387878534453005, 0.987890658094492, 0.7853981633974483], [3.402830429305326, 0.9812596690079411, 0.7853981633974483], [3.417930633787781, 0.9746869836280543, 0.7853981633974483], [3.4331771909622506, 0.968172396779028, 0.7853981633974483], [3.4485681596978477, 0.9617156871707009, 0.7853981633974483], [3.464101615137753, 0.95531661812451, 0.7853981633974483]], &quot;color&quot;: &quot;#ff0000&quot;, &quot;opacity&quot;: 1.0, &quot;linewidth&quot;: 1.0}];\n",
       "    for ( var i=0 ; i < lines.length ; i++ ) addLine( lines[i] );\n",
       "\n",
       "    function addLine( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        for ( var i=0 ; i < json.points.length ; i++ ) {\n",
       "            var v = json.points[i];\n",
       "            geometry.vertices.push( new THREE.Vector3( a[0]*v[0], a[1]*v[1], a[2]*v[2] ) );\n",
       "        }\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var materialOptions = { color: json.color, linewidth: json.linewidth,\n",
       "                                transparent: transparent, opacity: json.opacity };\n",
       "\n",
       "        var mesh;\n",
       "        if ( json.linewidth > 1 && window.createFatLineStrip ) {\n",
       "            mesh = createFatLineStrip( geometry, materialOptions );\n",
       "        } else {\n",
       "            var material = new THREE.LineBasicMaterial( materialOptions );\n",
       "            mesh = new THREE.Line( geometry, material );\n",
       "        }\n",
       "\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    var surfaces = [];\n",
       "    for ( var i=0 ; i < surfaces.length ; i++ ) addSurface( surfaces[i] );\n",
       "\n",
       "    function addSurface( json ) {\n",
       "\n",
       "        var useFaceColors = 'faceColors' in json ? true : false;\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "        for ( var i=0 ; i < json.vertices.length ; i++ ) {\n",
       "            var v = json.vertices[i];\n",
       "            geometry.vertices.push( new THREE.Vector3( a[0]*v.x, a[1]*v.y, a[2]*v.z ) );\n",
       "        }\n",
       "        for ( var i=0 ; i < json.faces.length ; i++ ) {\n",
       "            var f = json.faces[i];\n",
       "            for ( var j=0 ; j < f.length - 2 ; j++ ) {\n",
       "                var face = new THREE.Face3( f[0], f[j+1], f[j+2] );\n",
       "                if ( useFaceColors ) face.color.set( json.faceColors[i] );\n",
       "                geometry.faces.push( face );\n",
       "            }\n",
       "        }\n",
       "        geometry.computeVertexNormals();\n",
       "\n",
       "        var side = json.singleSide ? THREE.FrontSide : THREE.DoubleSide;\n",
       "        var transparent = json.opacity < 1 ? true : false;\n",
       "        var depthWrite = 'depthWrite' in json ? json.depthWrite : !transparent;\n",
       "        var flatShading = json.useFlatShading ? json.useFlatShading : false;\n",
       "\n",
       "        var material = new THREE.MeshPhongMaterial( { side: side,\n",
       "                                     color: useFaceColors ? 'white' : json.color,\n",
       "                                     vertexColors: useFaceColors ? THREE.FaceColors : THREE.NoColors,\n",
       "                                     transparent: transparent, opacity: json.opacity,\n",
       "                                     shininess: 20, flatShading: flatShading,\n",
       "                                     depthWrite: depthWrite } );\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var mesh = new THREE.Mesh( geometry, material );\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        if ( transparent && json.renderOrder ) mesh.renderOrder = json.renderOrder;\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "        if ( json.showMeshGrid ) addSurfaceMeshGrid( json );\n",
       "\n",
       "    }\n",
       "\n",
       "    function addSurfaceMeshGrid( json ) {\n",
       "\n",
       "        var geometry = new THREE.Geometry();\n",
       "\n",
       "        for ( var i=0 ; i < json.faces.length ; i++ ) {\n",
       "            var f = json.faces[i];\n",
       "            for ( var j=0 ; j < f.length ; j++ ) {\n",
       "                var k = j === f.length-1 ? 0 : j+1;\n",
       "                var v1 = json.vertices[f[j]];\n",
       "                var v2 = json.vertices[f[k]];\n",
       "                // vertices in opposite directions on neighboring faces\n",
       "                var nudge = f[j] < f[k] ? .0005*zRange : -.0005*zRange;\n",
       "                geometry.vertices.push( new THREE.Vector3( a[0]*v1.x, a[1]*v1.y, a[2]*(v1.z+nudge) ) );\n",
       "                geometry.vertices.push( new THREE.Vector3( a[0]*v2.x, a[1]*v2.y, a[2]*(v2.z+nudge) ) );\n",
       "            }\n",
       "        }\n",
       "\n",
       "        var c = new THREE.Vector3();\n",
       "        geometry.computeBoundingBox();\n",
       "        geometry.boundingBox.getCenter( c );\n",
       "        geometry.translate( -c.x, -c.y, -c.z );\n",
       "\n",
       "        var gridColor = options.theme === 'dark' ? 'white' : 'black';\n",
       "        var linewidth = json.linewidth || 1;\n",
       "        var materialOptions = { color: gridColor, linewidth: linewidth };\n",
       "\n",
       "        var mesh;\n",
       "        if ( linewidth > 1 && window.createFatLineSegments ) {\n",
       "            mesh = createFatLineSegments( geometry, materialOptions );\n",
       "        } else {\n",
       "            var material = new THREE.LineBasicMaterial( materialOptions );\n",
       "            mesh = new THREE.LineSegments( geometry, material );\n",
       "        }\n",
       "\n",
       "        mesh.position.set( c.x, c.y, c.z );\n",
       "        mesh.userData = json;\n",
       "        scene.add( mesh );\n",
       "\n",
       "    }\n",
       "\n",
       "    function render() {\n",
       "\n",
       "        if ( window.updateAnimation ) animate = updateAnimation();\n",
       "        if ( animate ) requestAnimationFrame( render );\n",
       "\n",
       "        renderer.render( scene, camera );\n",
       "\n",
       "    }\n",
       "\n",
       "    render();\n",
       "    controls.update();\n",
       "    if ( !animate ) render();\n",
       "\n",
       "\n",
       "    // menu functions\n",
       "\n",
       "    function toggleMenu() {\n",
       "\n",
       "        var m = document.getElementById( 'menu-content' );\n",
       "        if ( m.style.display === 'block' ) m.style.display = 'none'\n",
       "        else m.style.display = 'block';\n",
       "\n",
       "    }\n",
       "\n",
       "\n",
       "    function saveAsPNG() {\n",
       "\n",
       "        var a = document.body.appendChild( document.createElement( 'a' ) );\n",
       "        a.href = renderer.domElement.toDataURL( 'image/png' );\n",
       "        a.download = 'screenshot';\n",
       "        a.click();\n",
       "\n",
       "    }\n",
       "\n",
       "    function saveAsHTML() {\n",
       "\n",
       "        toggleMenu(); // otherwise visible in output\n",
       "        event.stopPropagation();\n",
       "\n",
       "        var blob = new Blob( [ '<!DOCTYPE html>\\n' + document.documentElement.outerHTML ] );\n",
       "        var a = document.body.appendChild( document.createElement( 'a' ) );\n",
       "        a.href = window.URL.createObjectURL( blob );\n",
       "        a.download = suggestFilename();\n",
       "        a.click();\n",
       "\n",
       "        function suggestFilename() {\n",
       "            if ( !document.title ) {\n",
       "                return 'graphic.html';\n",
       "            } else if ( /\\.html?$/i.test( document.title ) ) {\n",
       "                return document.title; // already ends in .htm or .html\n",
       "            } else {\n",
       "                return document.title + '.html';\n",
       "            }\n",
       "        }\n",
       "\n",
       "    }\n",
       "\n",
       "    function getViewpoint() {\n",
       "\n",
       "        function roundTo( x, n ) { return +x.toFixed(n); }\n",
       "\n",
       "        var v = camera.quaternion.inverse();\n",
       "        var r = Math.sqrt( v.x*v.x + v.y*v.y + v.z*v.z );\n",
       "        var axis = [ roundTo( v.x / r, 4 ), roundTo( v.y / r, 4 ), roundTo( v.z / r, 4 ) ];\n",
       "        var angle = roundTo( 2 * Math.atan2( r, v.w ) * 180 / Math.PI, 2 );\n",
       "\n",
       "        var textArea = document.createElement( 'textarea' );\n",
       "        textArea.textContent = JSON.stringify( axis ) + ',' + angle;\n",
       "        textArea.style.csstext = 'position: absolute; top: -100%';\n",
       "        document.body.append( textArea );\n",
       "        textArea.select();\n",
       "        document.execCommand( 'copy' );\n",
       "\n",
       "        var m = document.getElementById( 'menu-message' );\n",
       "        m.innerHTML = 'Viewpoint copied to clipboard';\n",
       "        m.style.display = 'block';\n",
       "        setTimeout( function() { m.style.display = 'none'; }, 2000 );\n",
       "\n",
       "    }\n",
       "\n",
       "    function getCamera() {\n",
       "\n",
       "        function roundTo( x, n ) { return +x.toFixed(n); }\n",
       "\n",
       "        var pos = camera.position;\n",
       "        var pos_r = [ roundTo( pos.x, 4 ), roundTo( pos.y, 4 ), roundTo( pos.z, 4 ) ];\n",
       "   //     var up = camera.up; // up is always (0,0,1)\n",
       "        var textArea = document.createElement('textarea');\n",
       "        var cam_position = JSON.stringify(pos_r);\n",
       "        textArea.textContent = ',camera_position=' + cam_position;\n",
       "        textArea.style.csstext = 'position: absolute; top: -100%';\n",
       "        document.body.append( textArea );\n",
       "        textArea.select();\n",
       "        document.execCommand( 'copy' );\n",
       "\n",
       "        var m = document.getElementById( 'menu-message' );\n",
       "        m.innerHTML = 'Camera position '+ cam_position+' copied to clipboard';\n",
       "        m.style.display = 'block';\n",
       "        setTimeout( function() { m.style.display = 'none'; }, 2000 );\n",
       "\n",
       "    }\n",
       "\n",
       "</script>\n",
       "\n",
       "<div id=&quot;menu-container&quot; onclick=&quot;toggleMenu()&quot;>&#x24d8;\n",
       "<div id=&quot;menu-message&quot;></div>\n",
       "<div id=&quot;menu-content&quot;>\n",
       "<div onclick=&quot;saveAsPNG()&quot;>Save as PNG</div>\n",
       "<div onclick=&quot;saveAsHTML()&quot;>Save as HTML</div>\n",
       "<div onclick=&quot;getCamera()&quot;>Get camera</div>\n",
       "<div onclick=&quot;getViewpoint()&quot;>Get viewpoint</div>\n",
       "<div>Close Menu</div>\n",
       "</div></div>\n",
       "\n",
       "\n",
       "</body>\n",
       "</html>\n",
       "\"\n",
       "        width=\"100%\"\n",
       "        height=\"400\"\n",
       "        style=\"border: 0;\">\n",
       "</iframe>\n"
      ],
      "text/plain": [
       "Graphics3d Object"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "graph = X_U.plot(Y, ranges={x:(0,2), y:(0,2),z:(0,2),\n",
    "                            r:(0,5), th:(0,pi/2), ph:(0, 2*pi) }, \n",
    "                    number_values=4, \n",
    "                    color={x:'blue',y:'green', z:'red'})\n",
    "show(graph, axes_labels=['r','theta','phi'])"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## 多様体上の点 :Points on the manifold\n",
    "\n",
    "多様体$\\mathcal{M}$上の点は、与えられた座標系での座標を使って定義されます。\n",
    "<div hidden>\n",
    "<p>A point on $\\mathcal{M}$ is defined by its coordinates in a given chart:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 53,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Point p on the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle p\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle p$"
      ],
      "text/plain": [
       "Point p on the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 53,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "p = M.point((1,2,-1), chart=X, name='p') ; print(p) ; p"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$X=(\\mathcal{M}, (x,y,z))$ は既定の座標系ですから、その名前を省略することが可能です。\n",
    "<div hidden>\n",
    "<p>Since $X=(\\mathcal{M}, (x,y,z))$ is the manifold's default chart, its name can be omitted:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 54,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Point p on the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle p\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle p$"
      ],
      "text/plain": [
       "Point p on the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 54,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "p = M.point((1,2,-1), name='p') ; print(p) ; p"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "もちろんpは多様体$\\mathcal{M}$中の点です。\n",
    "<div hidden>\n",
    "<p>Of course, $p$ belongs to $\\mathcal{M}$:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 55,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 55,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "p in M"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "この点は$U$の中の点でもあります。\n",
    "\n",
    "<div hidden> <p>It is also in $U$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 56,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 56,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "p in U"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "実際、点$p$の座標 $y$ は 0　ではありません ( $y\\not=0$ ):(Uは　$ y!=0 ||  x<0 $で定義された開領域)\n",
    "<div hidden>\n",
    "<p>Indeed the coordinates of $p$ have $y\\not=0$:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 57,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(1, 2, -1\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(1, 2, -1\\right)$"
      ],
      "text/plain": [
       "(1, 2, -1)"
      ]
     },
     "execution_count": 57,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "p.coord(X)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "ここで、$X$は$\\mathcal{M}$の既定座標系であることから　`coord()` にわたす引数では、省略可能であることに注意してください。\n",
    "<div hidden>\n",
    "<p>Note in passing that since $X$ is the default chart on $\\mathcal{M}$, its name can be omitted in the arguments of coord():</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 58,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(1, 2, -1\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(1, 2, -1\\right)$"
      ],
      "text/plain": [
       "(1, 2, -1)"
      ]
     },
     "execution_count": 58,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "p.coord()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$p$の座標値は、座標系を点$p$に作用させることによっても得ることができます(座標系の定義により！）：\n",
    "<div hidden>\n",
    "<p>The coordinates of $p$ can also be obtained by letting the chart acting of the point (from the very definition of a chart!):</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 59,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(1, 2, -1\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(1, 2, -1\\right)$"
      ],
      "text/plain": [
       "(1, 2, -1)"
      ]
     },
     "execution_count": 59,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "X(p)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "別の点 $q$ を $y = 0$ and $x \\geq 0$を満たす一つの点として定義します。\n",
    "<div hidden>\n",
    "<p>Let $q$ be a point with $y = 0$ and $x \\geq 0$:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 60,
   "metadata": {},
   "outputs": [],
   "source": [
    "q = M.point((1,0,2), name='q')"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$q$は$U$には属しません。\n",
    "<div hidden>\n",
    "<p>This time, the point does not belong to $U$:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 61,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{False}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{False}$"
      ],
      "text/plain": [
       "False"
      ]
     },
     "execution_count": 61,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "q in U"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "従って、点$q$の座標系$Y=(U, (r,\\theta,\\phi))$ での座標値を求めることはできません。\n",
    "<div hidden>\n",
    "<p>Accordingly, we cannot ask for the coordinates of $q$ in the chart $Y=(U, (r,\\theta,\\phi))$:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 62,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Error: the point does not belong to the domain of Chart (U, (r, th, ph))\n"
     ]
    }
   ],
   "source": [
    "try:\n",
    "    q.coord(Y)\n",
    "except ValueError as exc:\n",
    "    print(\"Error: \" + str(exc))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "しかし、点$p$については可能です。\n",
    "<div hidden>\n",
    "<p>but we can for point $p$:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 63,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(\\sqrt{3} \\sqrt{2}, \\pi - \\arctan\\left(\\sqrt{5}\\right), \\arctan\\left(2\\right)\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(\\sqrt{3} \\sqrt{2}, \\pi - \\arctan\\left(\\sqrt{5}\\right), \\arctan\\left(2\\right)\\right)$"
      ],
      "text/plain": [
       "(sqrt(3)*sqrt(2), pi - arctan(sqrt(5)), arctan(2))"
      ]
     },
     "execution_count": 63,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "p.coord(Y)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 64,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(\\sqrt{3} \\sqrt{2}, \\pi - \\arctan\\left(\\sqrt{5}\\right), \\arctan\\left(2\\right)\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(\\sqrt{3} \\sqrt{2}, \\pi - \\arctan\\left(\\sqrt{5}\\right), \\arctan\\left(2\\right)\\right)$"
      ],
      "text/plain": [
       "(sqrt(3)*sqrt(2), pi - arctan(sqrt(5)), arctan(2))"
      ]
     },
     "execution_count": 64,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Y(p)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "点は比較可能です。：\n",
    "<div hidden>\n",
    "<p>Points can be compared:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 65,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{False}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{False}$"
      ],
      "text/plain": [
       "False"
      ]
     },
     "execution_count": 65,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "q == p"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 66,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 66,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "p1 = U.point((sqrt(3)*sqrt(2), pi-atan(sqrt(5)), atan(2)), chart=Y)\n",
    "p1 == p"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "SageMathの用語では、点は　それが定義された多様体を **親(parents)** として持つ **要素(elements)** です。\n",
    "<div hidden>\n",
    "<p>In SageMath's terminology, points are <strong>elements</strong>, whose <strong>parents</strong> are the manifold on which they have been defined:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 67,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathcal{M}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathcal{M}$"
      ],
      "text/plain": [
       "3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 67,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "p.parent()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 68,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathcal{M}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathcal{M}$"
      ],
      "text/plain": [
       "3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 68,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "q.parent()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 69,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle U\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle U$"
      ],
      "text/plain": [
       "Open subset U of the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 69,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "p1.parent()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## スカラー場：Scalar fields\n",
    "***スカラー場*** は微分可能な写像 $U \\longrightarrow \\mathbb{R}$ のことです。ここで $U$ は多様体$\\mathcal{M}$の開部分集合です。\n",
    "スカラー場はその定義域を覆う座標系を使った式で定義されます。一般には、一つ以上の座標系が定義域全体を覆うためには必要となります。\n",
    "<div hidden>\n",
    "A **scalar field** is a differentiable map $U \\to \\mathbb{R}$, where $U$ is an open subset of $\\mathcal{M}$.\n",
    "\n",
    "A scalar field is defined by its expressions in terms of charts covering its domain (in general more than one chart is necessary to cover all the domain):\n",
    "  </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 70,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field f on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "f = U.scalar_field({X_U: x+y^2+z^3}, name='f') ; print(f)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "座標で書かれた表式は、座標系をキーとしたPythonの辞書型データ`{X_U: x+y^2+z^3}`として渡されます。\n",
    "この例では、辞書には一つの座標系しかありませんので、次のような表現も可能です。\n",
    "<div hidden>\n",
    "<p>The coordinate expressions of the scalar field are passed as a Python dictionary, with the charts as keys, hence the writing <span style=\"font-family: courier new,courier;\">{X_U: x+y^2+z^3}</span>.</p>\n",
    "<p>Since in the present case, there is only one chart in the dictionary, an alternative writing is</p>\n",
    "  </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 71,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field f on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "f = U.scalar_field({X_U:x+y^2+z^3}, name='f') \n",
    "print(f)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$X_U$ は定義域 ($U$) の既定の座標系ですので、上記の表現では省略可能です。\n",
    "<div hidden>\n",
    "  <p>Since X_U is the domain's default chart, it can be omitted in the above declaration:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 72,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field f on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "f = U.scalar_field(x+y^2+z^3, name='f') ; print(f)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "スカラー場は定義域となる多様体から実数体への写像ですから、それは点に対して働き、座標値に対して働くものではありません。\n",
    "<div hidden>\n",
    "As a mapping $U\\subset\\mathcal{M}\\longrightarrow\\mathbb{R}$, a scalar field acts on points, not on coordinates:\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 73,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle 4\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle 4$"
      ],
      "text/plain": [
       "4"
      ]
     },
     "execution_count": 73,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f(p)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "スカラー場の`display()`　メソッドは与えられた座標系でのスカラー場の表現を表示します。\n",
    "<div hidden>\n",
    "The method `display()` provides the expression of the scalar field in terms of a given chart:\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 74,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} f:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & z^{3} + y^{2} + x \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} f:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & z^{3} + y^{2} + x \\end{array}$"
      ],
      "text/plain": [
       "f: U → ℝ\n",
       "   (x, y, z) ↦ z^3 + y^2 + x"
      ]
     },
     "execution_count": 74,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f.display(X_U)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "引数なしで呼び出された場合、`display()`メソッドは　定義域 $U$ の上で定義された全ての座標系について、座標表現を表示します。\n",
    "（但し*副座標系*,即ち制限された副定義域のみで定義された座標系は除きます。）\n",
    "<div hidden>\n",
    "If no argument is provided, the method `display()` shows the coordinate expression of the scalar field in all the charts defined on the domain (except for *subcharts*, i.e. the restrictions of some chart to a subdomain):\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 75,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} f:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & z^{3} + y^{2} + x \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} f:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & z^{3} + y^{2} + x \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\end{array}$"
      ],
      "text/plain": [
       "f: U → ℝ\n",
       "   (x, y, z) ↦ z^3 + y^2 + x\n",
       "   (r, th, ph) ↦ r^3*cos(th)^3 + r^2*sin(ph)^2*sin(th)^2 + r*cos(ph)*sin(th)"
      ]
     },
     "execution_count": 75,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "スカラー場 $f$の　座標$(r,\\theta,\\phi)$ での表現はユーザによって与えられたものではなく、座標系の遷移写像で定義された座標変換のルールを使って自動的に導出されていることに注意してください。\n",
    "<div hidden>\n",
    "<p>Note that the expression of $f$ in terms of the coordinates $(r,\\theta,\\phi)$ has not been provided by the user but has been automatically computed by means of the change-of-coordinate formula declared above in the transition map. </p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 76,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} f:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} f:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\end{array}$"
      ],
      "text/plain": [
       "f: U → ℝ\n",
       "   (r, th, ph) ↦ r^3*cos(th)^3 + r^2*sin(ph)^2*sin(th)^2 + r*cos(ph)*sin(th)"
      ]
     },
     "execution_count": 76,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f.display(Y)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "各座標系で、スカラー場は座標の関数(`CoordFunctionSymb` のオブジェクト）として表現されます。このオブジェクトは`coord_function()`メソッドを通じてアクセス可能です。\n",
    "<div hidden><p>In each chart, the scalar field is represented by a function of the chart coordinates (an object of the type <span style=\"font-family: courier new,courier;\">CoordFunctionSymb</span> described above), which is accessible via the method <span style=\"font-family: courier new,courier;\">coord_function()</span>:</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 77,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle z^{3} + y^{2} + x\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle z^{3} + y^{2} + x$"
      ],
      "text/plain": [
       "z^3 + y^2 + x"
      ]
     },
     "execution_count": 77,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f.coord_function(X_U)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 78,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(x, y, z\\right) \\mapsto z^{3} + y^{2} + x\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(x, y, z\\right) \\mapsto z^{3} + y^{2} + x$"
      ],
      "text/plain": [
       "(x, y, z) ↦ z^3 + y^2 + x"
      ]
     },
     "execution_count": 78,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f.coord_function(X_U).display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 79,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)$"
      ],
      "text/plain": [
       "r^3*cos(th)^3 + r^2*sin(ph)^2*sin(th)^2 + r*cos(ph)*sin(th)"
      ]
     },
     "execution_count": 79,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f.coord_function(Y)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 80,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(r, {\\theta}, {\\phi}\\right) \\mapsto r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(r, {\\theta}, {\\phi}\\right) \\mapsto r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)$"
      ],
      "text/plain": [
       "(r, th, ph) ↦ r^3*cos(th)^3 + r^2*sin(ph)^2*sin(th)^2 + r*cos(ph)*sin(th)"
      ]
     },
     "execution_count": 80,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f.coord_function(Y).display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "\"生\"の記号的表現は、`expr()`メソッドの戻り値として返されます。\n",
    "<div hidden>\n",
    "  <p>The \"raw\" symbolic expression is returned by the method <span style=\"font-family: courier new,courier;\">expr()</span>:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 81,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle z^{3} + y^{2} + x\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle z^{3} + y^{2} + x$"
      ],
      "text/plain": [
       "z^3 + y^2 + x"
      ]
     },
     "execution_count": 81,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f.expr(X_U)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 82,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)$"
      ],
      "text/plain": [
       "r^3*cos(th)^3 + r^2*sin(ph)^2*sin(th)^2 + r*cos(ph)*sin(th)"
      ]
     },
     "execution_count": 82,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f.expr(Y)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 83,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 83,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f.expr(Y) is f.coord_function(Y).expr()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "スカラー場は具体的な式ではなく、座標値の関数を用いて定義することも可能です。\n",
    "<div hidden>\n",
    "  <p>A scalar field can also be defined by some unspecified function of the coordinates:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 84,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field h on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "h = U.scalar_field(function('H')(x, y, z), name='h') ; print(h)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 85,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} h:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & H\\left(x, y, z\\right) \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & H\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} h:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & H\\left(x, y, z\\right) \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & H\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}$"
      ],
      "text/plain": [
       "h: U → ℝ\n",
       "   (x, y, z) ↦ H(x, y, z)\n",
       "   (r, th, ph) ↦ H(r*cos(ph)*sin(th), r*sin(ph)*sin(th), r*cos(th))"
      ]
     },
     "execution_count": 85,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "h.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 86,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} h:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & H\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} h:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & H\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}$"
      ],
      "text/plain": [
       "h: U → ℝ\n",
       "   (r, th, ph) ↦ H(r*cos(ph)*sin(th), r*sin(ph)*sin(th), r*cos(th))"
      ]
     },
     "execution_count": 86,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "h.display(Y)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 87,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle H\\left(1, 2, -1\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle H\\left(1, 2, -1\\right)$"
      ],
      "text/plain": [
       "H(1, 2, -1)"
      ]
     },
     "execution_count": 87,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "h(p) # remember that p is the point of coordinates (1,2,-1) in the chart X_U"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$f$の親(parent)は　すべての　$U$　上の滑らかなスカラー場からなる集合　$C^\\infty(U)$　です。これは$\\mathbb{R}$上の 可換代数です。\n",
    "<div hidden>\n",
    "<p>The parent of $f$ is the set $C^\\infty(U)$ of all smooth scalar fields on $U$, which is a commutative algebra over $\\mathbb{R}$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 88,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle C^{\\infty}\\left(U\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle C^{\\infty}\\left(U\\right)$"
      ],
      "text/plain": [
       "Algebra of differentiable scalar fields on the Open subset U of the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 88,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "CU = f.parent() ; CU"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 89,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Algebra of differentiable scalar fields on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "print(CU)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 90,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathbf{JoinCategory}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathbf{JoinCategory}$"
      ],
      "text/plain": [
       "Join of Category of commutative algebras over Symbolic Ring and Category of homsets of topological spaces"
      ]
     },
     "execution_count": 90,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "CU.category()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "代数$CU$の基礎体となる環は実数体$\\mathbb{R}$です。それはSageMathではSymbolic Ring (SR)で表現されます。\n",
    "<div hidden>\n",
    "The base ring of the algebra is the field $\\mathbb{R}$, which is represented here by SageMath's Symbolic Ring (`SR`): </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 91,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\text{SR}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\text{SR}$"
      ],
      "text/plain": [
       "Symbolic Ring"
      ]
     },
     "execution_count": 91,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "CU.base_ring()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "スカラー場の演算は代数構造を通じて定義されます。\n",
    "<div hidden>\n",
    "<p>Arithmetic operations on scalar fields are defined <span id=\"cell_outer_92\"><span id=\"cell_outer_91\"><span id=\"cell_outer_92\">through the algebra structure:</span></span></span></p> \n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 92,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "s = f + 2*h ; print(s)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 93,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} & U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & z^{3} + y^{2} + x + 2 \\, H\\left(x, y, z\\right) \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) + 2 \\, H\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} & U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & z^{3} + y^{2} + x + 2 \\, H\\left(x, y, z\\right) \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) + 2 \\, H\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}$"
      ],
      "text/plain": [
       "U → ℝ\n",
       "(x, y, z) ↦ z^3 + y^2 + x + 2*H(x, y, z)\n",
       "(r, th, ph) ↦ r^3*cos(th)^3 + r^2*sin(ph)^2*sin(th)^2 + r*cos(ph)*sin(th) + 2*H(r*cos(ph)*sin(th), r*sin(ph)*sin(th), r*cos(th))"
      ]
     },
     "execution_count": 93,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "s.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## 接空間：Tangent spaces\n",
    "\n",
    "点 $p$での多様体の接ベクトル空間を次のようにして取り出します。\n",
    "<div hidden>\n",
    "<p>The tangent vector space to the manifold at point $p$ is obtained as follows:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 94,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle T_{p}\\,\\mathcal{M}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle T_{p}\\,\\mathcal{M}$"
      ],
      "text/plain": [
       "Tangent space at Point p on the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 94,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Tp = M.tangent_space(p) ; Tp"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 95,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tangent space at Point p on the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "print(Tp)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$T_p\\, \\mathcal{M}$は　$\\mathbb{R}$上の3次元のベクトル空間です。\n",
    "<div hidden>\n",
    "<p>$T_p\\, \\mathcal{M}$ is a 3-dimensional vector space over $\\mathbb{R}$ (represented here by SageMath's Symbolic Ring (SR)) :</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 96,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Category of finite dimensional vector spaces over Symbolic Ring\n"
     ]
    }
   ],
   "source": [
    "print(Tp.category())"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 97,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle 3\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle 3$"
      ],
      "text/plain": [
       "3"
      ]
     },
     "execution_count": 97,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Tp.dim()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$T_p\\, \\mathcal{M}$のベクトルの基底は点$p$の周りのベクトルフレームから誘導されます。\n",
    "<div hidden>\n",
    "<p>$T_p\\, \\mathcal{M}$ is automatically endowed with vector bases deduced from the vector frames defined around the point:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 98,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[\\left(\\frac{\\partial}{\\partial x },\\frac{\\partial}{\\partial y },\\frac{\\partial}{\\partial z }\\right), \\left(\\frac{\\partial}{\\partial r },\\frac{\\partial}{\\partial {\\theta} },\\frac{\\partial}{\\partial {\\phi} }\\right)\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[\\left(\\frac{\\partial}{\\partial x },\\frac{\\partial}{\\partial y },\\frac{\\partial}{\\partial z }\\right), \\left(\\frac{\\partial}{\\partial r },\\frac{\\partial}{\\partial {\\theta} },\\frac{\\partial}{\\partial {\\phi} }\\right)\\right]$"
      ],
      "text/plain": [
       "[Basis (∂/∂x,∂/∂y,∂/∂z) on the Tangent space at Point p on the 3-dimensional differentiable manifold M,\n",
       " Basis (∂/∂r,∂/∂th,∂/∂ph) on the Tangent space at Point p on the 3-dimensional differentiable manifold M]"
      ]
     },
     "execution_count": 98,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Tp.bases()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "対照的に、点 $q$ については、あらかじめ定義された基底は一つだけです。 $q$ はドメイン $U$ に含まれませんので、$(r,\\theta,\\phi)$ に関連づけれられていません。\n",
    "<div hidden>\n",
    "<p>For the tangent space at the point $q$, on the contrary, there is only one pre-defined basis, since $q$ is not in the domain $U$ of the frame associated with coordinates $(r,\\theta,\\phi)$:</p>\n",
    "   </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 99,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[\\left(\\frac{\\partial}{\\partial x },\\frac{\\partial}{\\partial y },\\frac{\\partial}{\\partial z }\\right)\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[\\left(\\frac{\\partial}{\\partial x },\\frac{\\partial}{\\partial y },\\frac{\\partial}{\\partial z }\\right)\\right]$"
      ],
      "text/plain": [
       "[Basis (∂/∂x,∂/∂y,∂/∂z) on the Tangent space at Point q on the 3-dimensional differentiable manifold M]"
      ]
     },
     "execution_count": 99,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Tq = M.tangent_space(q)\n",
    "Tq.bases()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "ランダムな要素：\n",
    "<div hidden>\n",
    "<p>A random element:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 100,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tangent vector at Point p on the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "v = Tp.an_element() ; print(v)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 101,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\frac{\\partial}{\\partial x } + 2 \\frac{\\partial}{\\partial y } + 3 \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\frac{\\partial}{\\partial x } + 2 \\frac{\\partial}{\\partial y } + 3 \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "∂/∂x + 2 ∂/∂y + 3 ∂/∂z"
      ]
     },
     "execution_count": 101,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 102,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tangent vector at Point q on the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "u = Tq.an_element() ; print(u)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 103,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\frac{\\partial}{\\partial x } + 2 \\frac{\\partial}{\\partial y } + 3 \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\frac{\\partial}{\\partial x } + 2 \\frac{\\partial}{\\partial y } + 3 \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "∂/∂x + 2 ∂/∂y + 3 ∂/∂z"
      ]
     },
     "execution_count": 103,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "u.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "上記の簡略化された表現(基底ベクトルに点$p$あるいは$q$の指定がない）から類推されるのとは異なり、$u$と$v$は異なるベクトルです。これらは異なったベクトル空間に属しています。:\n",
    "<div hidden>\n",
    "<p>Note that, despite what the above simplified writing may suggest (the mention of the point $p$ or $q$ is omitted in the basis vectors), $u$ and $v$ are different vectors, for they belong to different vector spaces:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 104,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle T_{p}\\,\\mathcal{M}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle T_{p}\\,\\mathcal{M}$"
      ],
      "text/plain": [
       "Tangent space at Point p on the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 104,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.parent()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 105,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle T_{q}\\,\\mathcal{M}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle T_{q}\\,\\mathcal{M}$"
      ],
      "text/plain": [
       "Tangent space at Point q on the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 105,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "u.parent()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "とくに $u$と$v$を足し合わせることはできません。\n",
    "<div hidden>\n",
    "  <p>In particular, it is not possible to add $u$ and $v$:</p>\n",
    "</div>\n",
    "<div hidden>\n",
    "  一般に二つの点のベクトルの差分として、共変微分の積分を考えても、それは積分の経路に依存することになるので、一意に定義することはできない。\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 106,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Error:  unsupported operand parent(s) for +: 'Tangent space at Point q on the 3-dimensional differentiable manifold M' and 'Tangent space at Point p on the 3-dimensional differentiable manifold M'\n"
     ]
    }
   ],
   "source": [
    "try:\n",
    "    s = u + v\n",
    "except TypeError as exc:\n",
    "    print(\"Error: \", str(exc))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## べクトル場：Vector Fields\n",
    "全ての座標系は座標系のドメインの上のベクトルフレームを持っています。これは、`coordinate basis`と呼ばれます、\n",
    "<div hidden>\n",
    "<p>Each chart defines a vector frame on the chart domain: the so-called <strong>coordinate basis</strong>:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 107,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(\\mathcal{M}, \\left(\\frac{\\partial}{\\partial x },\\frac{\\partial}{\\partial y },\\frac{\\partial}{\\partial z }\\right)\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(\\mathcal{M}, \\left(\\frac{\\partial}{\\partial x },\\frac{\\partial}{\\partial y },\\frac{\\partial}{\\partial z }\\right)\\right)$"
      ],
      "text/plain": [
       "Coordinate frame (M, (∂/∂x,∂/∂y,∂/∂z))"
      ]
     },
     "execution_count": 107,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "X.frame()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 108,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathcal{M}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathcal{M}$"
      ],
      "text/plain": [
       "3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 108,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "X.frame().domain()  # this frame is defined on the whole manifold　このフレームは多様体全体で定義されています。"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 109,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(U, \\left(\\frac{\\partial}{\\partial r },\\frac{\\partial}{\\partial {\\theta} },\\frac{\\partial}{\\partial {\\phi} }\\right)\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(U, \\left(\\frac{\\partial}{\\partial r },\\frac{\\partial}{\\partial {\\theta} },\\frac{\\partial}{\\partial {\\phi} }\\right)\\right)$"
      ],
      "text/plain": [
       "Coordinate frame (U, (∂/∂r,∂/∂th,∂/∂ph))"
      ]
     },
     "execution_count": 109,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Y.frame()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "座標系 $Y$ のフレームは、部分多様体 $U$ でのみ定義されています。\n",
    "<div hidden>  # this frame is defined only on  </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 110,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle U\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle U$"
      ],
      "text/plain": [
       "Open subset U of the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 110,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Y.frame().domain() # このフレームは部分多様体 $U$でのみ定義されています。"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "`frames()`メソッドによって、与えられた開空間で定義されたフレームのリストが入手可能です。\n",
    "<div hidden>\n",
    "<p>The list of frames defined on a given open subset is <span>returned by the method <span style=\"font-family: courier new,courier;\">frames()</span></span>:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 111,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[\\left(\\mathcal{M}, \\left(\\frac{\\partial}{\\partial x },\\frac{\\partial}{\\partial y },\\frac{\\partial}{\\partial z }\\right)\\right), \\left(U, \\left(\\frac{\\partial}{\\partial x },\\frac{\\partial}{\\partial y },\\frac{\\partial}{\\partial z }\\right)\\right), \\left(U, \\left(\\frac{\\partial}{\\partial r },\\frac{\\partial}{\\partial {\\theta} },\\frac{\\partial}{\\partial {\\phi} }\\right)\\right)\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[\\left(\\mathcal{M}, \\left(\\frac{\\partial}{\\partial x },\\frac{\\partial}{\\partial y },\\frac{\\partial}{\\partial z }\\right)\\right), \\left(U, \\left(\\frac{\\partial}{\\partial x },\\frac{\\partial}{\\partial y },\\frac{\\partial}{\\partial z }\\right)\\right), \\left(U, \\left(\\frac{\\partial}{\\partial r },\\frac{\\partial}{\\partial {\\theta} },\\frac{\\partial}{\\partial {\\phi} }\\right)\\right)\\right]$"
      ],
      "text/plain": [
       "[Coordinate frame (M, (∂/∂x,∂/∂y,∂/∂z)),\n",
       " Coordinate frame (U, (∂/∂x,∂/∂y,∂/∂z)),\n",
       " Coordinate frame (U, (∂/∂r,∂/∂th,∂/∂ph))]"
      ]
     },
     "execution_count": 111,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "M.frames()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 112,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[\\left(U, \\left(\\frac{\\partial}{\\partial x },\\frac{\\partial}{\\partial y },\\frac{\\partial}{\\partial z }\\right)\\right), \\left(U, \\left(\\frac{\\partial}{\\partial r },\\frac{\\partial}{\\partial {\\theta} },\\frac{\\partial}{\\partial {\\phi} }\\right)\\right)\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[\\left(U, \\left(\\frac{\\partial}{\\partial x },\\frac{\\partial}{\\partial y },\\frac{\\partial}{\\partial z }\\right)\\right), \\left(U, \\left(\\frac{\\partial}{\\partial r },\\frac{\\partial}{\\partial {\\theta} },\\frac{\\partial}{\\partial {\\phi} }\\right)\\right)\\right]$"
      ],
      "text/plain": [
       "[Coordinate frame (U, (∂/∂x,∂/∂y,∂/∂z)),\n",
       " Coordinate frame (U, (∂/∂r,∂/∂th,∂/∂ph))]"
      ]
     },
     "execution_count": 112,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "U.frames()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 113,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(\\mathcal{M}, \\left(\\frac{\\partial}{\\partial x },\\frac{\\partial}{\\partial y },\\frac{\\partial}{\\partial z }\\right)\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(\\mathcal{M}, \\left(\\frac{\\partial}{\\partial x },\\frac{\\partial}{\\partial y },\\frac{\\partial}{\\partial z }\\right)\\right)$"
      ],
      "text/plain": [
       "Coordinate frame (M, (∂/∂x,∂/∂y,∂/∂z))"
      ]
     },
     "execution_count": 113,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "M.default_frame()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "`set_default_frame()`メソッドで別途明示的に指定されない限り、基底の座標系に関連づけられるベクトルフレームが基底のフレームです。\n",
    "<div hidden>\n",
    "<p>Unless otherwise specified (via the command <span style=\"font-family: courier new,courier;\">set_default_frame()</span>), the default frame is that associated with the default chart:</p>\n",
    "   </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 114,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 114,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "M.default_frame() is M.default_chart().frame()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 115,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 115,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "U.default_frame() is U.default_chart().frame()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "フレームのそれぞれの要素は指標を使って指定できます。\n",
    "<div hidden>\n",
    "<p>Individual elements of a frame can be accessed by means of their indices:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 116,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\frac{\\partial}{\\partial y }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\frac{\\partial}{\\partial y }$"
      ],
      "text/plain": [
       "Vector field ∂/∂y on the Open subset U of the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 116,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "e = U.default_frame() ; e2 = e[2] ;e2"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 117,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Vector field ∂/∂y on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "print(e2)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "新しいベクトル場を次のようにして、定義できます。\n",
    "<div hidden>\n",
    "<p><span id=\"cell_outer_109\">We may define a new vector field as follows:</span></p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 118,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Vector field on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "v = e[2] + 2*x*e[3] ; print(v)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 119,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\frac{\\partial}{\\partial y } + 2 \\, x \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\frac{\\partial}{\\partial y } + 2 \\, x \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "∂/∂y + 2*x ∂/∂z"
      ]
     },
     "execution_count": 119,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "ベクトル場は与えられたベクトルフレームに関する要素を指定することで、定義できます。\n",
    "もしベクトルフレームが指定されていない場合には、既定のフレームがもちろん仮定されます。\n",
    "<div hidden>\n",
    "<p>A vector field can be defined by its components with respect to a given vector frame. When the latter is not specified, the open set's default frame is of course assumed:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 120,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle v = \\left( y + 1 \\right) \\frac{\\partial}{\\partial x } -x \\frac{\\partial}{\\partial y } + x y z \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle v = \\left( y + 1 \\right) \\frac{\\partial}{\\partial x } -x \\frac{\\partial}{\\partial y } + x y z \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "v = (y + 1) ∂/∂x - x ∂/∂y + x*y*z ∂/∂z"
      ]
     },
     "execution_count": 120,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v = U.vector_field(name='v') # vector field defined on the open set U\n",
    "v[1] = 1+y\n",
    "v[2] = -x\n",
    "v[3] = x*y*z\n",
    "v.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "SageMath 8.8 以降では、ベクトルフィールドの成分はそれを宣言する時に設定することができます。従って、上記は次の宣言と等価です。\n",
    "<div hidden>\n",
    "Since version 8.8 of SageMath, it is possible to initialize the components of the vector field while declaring it, so that the above is equivalent to\n",
    "   </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 121,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle v = \\left( y + 1 \\right) \\frac{\\partial}{\\partial x } -x \\frac{\\partial}{\\partial y } + x y z \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle v = \\left( y + 1 \\right) \\frac{\\partial}{\\partial x } -x \\frac{\\partial}{\\partial y } + x y z \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "v = (y + 1) ∂/∂x - x ∂/∂y + x*y*z ∂/∂z"
      ]
     },
     "execution_count": 121,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v = U.vector_field(1+y, -x, x*y*z, name='v')  # valid only in SageMath 8.8 and higher\n",
    "v.display() "
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$U$上のベクトル場はSageの **要素(element)** オブジェクトです。その　**親(parent)** は　$U$上で定義されたベクトル場の集合$\\mathfrak{X}(U)$ に設定されています。\n",
    "<div hidden>\n",
    "<p>Vector fields on $U$ are Sage <em>element</em> objects, whose <em>parent</em> is the set $\\mathfrak{X}(U)$ of vector fields defined on $U$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 122,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathfrak{X}\\left(U\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathfrak{X}\\left(U\\right)$"
      ],
      "text/plain": [
       "Free module X(U) of vector fields on the Open subset U of the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 122,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.parent()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "集合　$\\mathfrak{X}(U)$　は$U$で定義されたのスカラー場の可換代数$C^\\infty(U)$上のモジュールです。\n",
    "<div hidden>\n",
    "<p>The set $\\mathfrak{X}(U)$ is a module over the commutative algebra $C^\\infty(U)$ of scalar fields on $U$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 123,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Free module X(U) of vector fields on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "print(v.parent())"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 124,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Category of finite dimensional modules over Algebra of differentiable scalar fields on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "print(v.parent().category())"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 125,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle C^{\\infty}\\left(U\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle C^{\\infty}\\left(U\\right)$"
      ],
      "text/plain": [
       "Algebra of differentiable scalar fields on the Open subset U of the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 125,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.parent().base_ring()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "ベクトル場はスカラー場に作用します。\n",
    "<div hidden>\n",
    "<p>A vector field acts on scalar fields:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 126,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} f:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & z^{3} + y^{2} + x \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} f:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & z^{3} + y^{2} + x \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\end{array}$"
      ],
      "text/plain": [
       "f: U → ℝ\n",
       "   (x, y, z) ↦ z^3 + y^2 + x\n",
       "   (r, th, ph) ↦ r^3*cos(th)^3 + r^2*sin(ph)^2*sin(th)^2 + r*cos(ph)*sin(th)"
      ]
     },
     "execution_count": 126,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "f.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 127,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field v(f) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "s = v(f) ; print(s)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 128,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} v\\left(f\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & 3 \\, x y z^{3} - {\\left(2 \\, x - 1\\right)} y + 1 \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) + {\\left(3 \\, r^{5} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) - 2 \\, r^{2} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} + 1 \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} v\\left(f\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & 3 \\, x y z^{3} - {\\left(2 \\, x - 1\\right)} y + 1 \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) + {\\left(3 \\, r^{5} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) - 2 \\, r^{2} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} + 1 \\end{array}$"
      ],
      "text/plain": [
       "v(f): U → ℝ\n",
       "   (x, y, z) ↦ 3*x*y*z^3 - (2*x - 1)*y + 1\n",
       "   (r, th, ph) ↦ r*sin(ph)*sin(th) + (3*r^5*cos(ph)*cos(th)^3*sin(ph) - 2*r^2*cos(ph)*sin(ph))*sin(th)^2 + 1"
      ]
     },
     "execution_count": 128,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "s.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 129,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\frac{\\partial}{\\partial z } = \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\frac{\\partial}{\\partial z } = \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "∂/∂z = ∂/∂z"
      ]
     },
     "execution_count": 129,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "e[3].display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 130,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} \\frac{\\partial}{\\partial z }\\left(f\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & 3 \\, z^{2} \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & 3 \\, r^{2} \\cos\\left({\\theta}\\right)^{2} \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} \\frac{\\partial}{\\partial z }\\left(f\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & 3 \\, z^{2} \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & 3 \\, r^{2} \\cos\\left({\\theta}\\right)^{2} \\end{array}$"
      ],
      "text/plain": [
       "∂/∂z(f): U → ℝ\n",
       "   (x, y, z) ↦ 3*z^2\n",
       "   (r, th, ph) ↦ 3*r^2*cos(th)^2"
      ]
     },
     "execution_count": 130,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "e[3](f).display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "設定されていない要素は、0 と仮定されます。\n",
    "<div hidden>\n",
    "<p>Unset components are assumed to be zero:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 131,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle w = 3 \\frac{\\partial}{\\partial y }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle w = 3 \\frac{\\partial}{\\partial y }$"
      ],
      "text/plain": [
       "w = 3 ∂/∂y"
      ]
     },
     "execution_count": 131,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "w = U.vector_field(name='w')\n",
    "w[2] = 3\n",
    "w.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$U$上のベクトル場は座標系　$(r,\\theta,\\phi)$ に関係付けられているベクトルフレームで展開することができます。\n",
    "<div hidden>\n",
    "<p>A vector field on $U$ can be expanded in the vector frame associated with the chart $(r,\\theta,\\phi)$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 132,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle v = \\left( \\frac{x y z^{2} + x}{\\sqrt{x^{2} + y^{2} + z^{2}}} \\right) \\frac{\\partial}{\\partial r } + \\left( -\\frac{{\\left(x^{3} y + x y^{3} - x\\right)} \\sqrt{x^{2} + y^{2}} z}{x^{4} + 2 \\, x^{2} y^{2} + y^{4} + {\\left(x^{2} + y^{2}\\right)} z^{2}} \\right) \\frac{\\partial}{\\partial {\\theta} } + \\left( -\\frac{x^{2} + y^{2} + y}{x^{2} + y^{2}} \\right) \\frac{\\partial}{\\partial {\\phi} }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle v = \\left( \\frac{x y z^{2} + x}{\\sqrt{x^{2} + y^{2} + z^{2}}} \\right) \\frac{\\partial}{\\partial r } + \\left( -\\frac{{\\left(x^{3} y + x y^{3} - x\\right)} \\sqrt{x^{2} + y^{2}} z}{x^{4} + 2 \\, x^{2} y^{2} + y^{4} + {\\left(x^{2} + y^{2}\\right)} z^{2}} \\right) \\frac{\\partial}{\\partial {\\theta} } + \\left( -\\frac{x^{2} + y^{2} + y}{x^{2} + y^{2}} \\right) \\frac{\\partial}{\\partial {\\phi} }$"
      ],
      "text/plain": [
       "v = (x*y*z^2 + x)/sqrt(x^2 + y^2 + z^2) ∂/∂r - (x^3*y + x*y^3 - x)*sqrt(x^2 + y^2)*z/(x^4 + 2*x^2*y^2 + y^4 + (x^2 + y^2)*z^2) ∂/∂th - (x^2 + y^2 + y)/(x^2 + y^2) ∂/∂ph"
      ]
     },
     "execution_count": 132,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.display(Y.frame())"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "既定の設定では、要素は既定の座標 $(x,y,z)$ を用いて、表現されます。これらの要素を 別の座標　$(r,\\theta,\\phi)$　を用いて表現するには、\n",
    "`display()`メソッドの2番目の引数として、対応する座標系を指定することが必要です。\n",
    "<div hidden>\n",
    "<p>By default, the components are expressed in terms of the default coordinates $(x,y,z)$. To express them in terms of the coordinates $(r,\\theta,\\phi)$, one should add the corresponding chart as the second argument of the method <span style=\"font-family: courier new,courier;\">display()</span>:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 133,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle v = \\left( r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} + \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\right) \\frac{\\partial}{\\partial r } + \\left( -\\frac{r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3} - \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)}{r} \\right) \\frac{\\partial}{\\partial {\\theta} } + \\left( -\\frac{r \\sin\\left({\\theta}\\right) + \\sin\\left({\\phi}\\right)}{r \\sin\\left({\\theta}\\right)} \\right) \\frac{\\partial}{\\partial {\\phi} }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle v = \\left( r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} + \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\right) \\frac{\\partial}{\\partial r } + \\left( -\\frac{r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3} - \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)}{r} \\right) \\frac{\\partial}{\\partial {\\theta} } + \\left( -\\frac{r \\sin\\left({\\theta}\\right) + \\sin\\left({\\phi}\\right)}{r \\sin\\left({\\theta}\\right)} \\right) \\frac{\\partial}{\\partial {\\phi} }$"
      ],
      "text/plain": [
       "v = (r^3*cos(ph)*cos(th)^2*sin(ph)*sin(th)^2 + cos(ph)*sin(th)) ∂/∂r - (r^3*cos(ph)*cos(th)*sin(ph)*sin(th)^3 - cos(ph)*cos(th))/r ∂/∂th - (r*sin(th) + sin(ph))/(r*sin(th)) ∂/∂ph"
      ]
     },
     "execution_count": 133,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.display(Y.frame(), Y)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 134,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\frac{\\partial}{\\partial x } = \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\frac{\\partial}{\\partial r } + \\frac{\\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)}{r} \\frac{\\partial}{\\partial {\\theta} } -\\frac{\\sin\\left({\\phi}\\right)}{r \\sin\\left({\\theta}\\right)} \\frac{\\partial}{\\partial {\\phi} }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\frac{\\partial}{\\partial x } = \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\frac{\\partial}{\\partial r } + \\frac{\\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)}{r} \\frac{\\partial}{\\partial {\\theta} } -\\frac{\\sin\\left({\\phi}\\right)}{r \\sin\\left({\\theta}\\right)} \\frac{\\partial}{\\partial {\\phi} }$"
      ],
      "text/plain": [
       "∂/∂x = cos(ph)*sin(th) ∂/∂r + cos(ph)*cos(th)/r ∂/∂th - sin(ph)/(r*sin(th)) ∂/∂ph"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\frac{\\partial}{\\partial y } = \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\frac{\\partial}{\\partial r } + \\frac{\\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)}{r} \\frac{\\partial}{\\partial {\\theta} } + \\frac{\\cos\\left({\\phi}\\right)}{r \\sin\\left({\\theta}\\right)} \\frac{\\partial}{\\partial {\\phi} }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\frac{\\partial}{\\partial y } = \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\frac{\\partial}{\\partial r } + \\frac{\\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)}{r} \\frac{\\partial}{\\partial {\\theta} } + \\frac{\\cos\\left({\\phi}\\right)}{r \\sin\\left({\\theta}\\right)} \\frac{\\partial}{\\partial {\\phi} }$"
      ],
      "text/plain": [
       "∂/∂y = sin(ph)*sin(th) ∂/∂r + cos(th)*sin(ph)/r ∂/∂th + cos(ph)/(r*sin(th)) ∂/∂ph"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\frac{\\partial}{\\partial z } = \\cos\\left({\\theta}\\right) \\frac{\\partial}{\\partial r } -\\frac{\\sin\\left({\\theta}\\right)}{r} \\frac{\\partial}{\\partial {\\theta} }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\frac{\\partial}{\\partial z } = \\cos\\left({\\theta}\\right) \\frac{\\partial}{\\partial r } -\\frac{\\sin\\left({\\theta}\\right)}{r} \\frac{\\partial}{\\partial {\\theta} }$"
      ],
      "text/plain": [
       "∂/∂z = cos(th) ∂/∂r - sin(th)/r ∂/∂th"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "for i in M.irange(): \n",
    "    show(e[i].display(Y.frame(), Y))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "既定のフレームに関するテンソル場の要素は、コマンド `[:]` を使うことで、リストとして取り出せます。\n",
    "<div hidden>\n",
    "<p>The components of a tensor field w.r.t. the default frame can also be obtained as a list, via the command <span style=\"font-family: courier new,courier;\">[:]</span>:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 135,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[y + 1, -x, x y z\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[y + 1, -x, x y z\\right]$"
      ],
      "text/plain": [
       "[y + 1, -x, x*y*z]"
      ]
     },
     "execution_count": 135,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v[:]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "別の方法として、`display_comp()`メソッドを使うこともできます。\n",
    "<div hidden>\n",
    "<p>An alternative is to use the method <span style=\"font-family: courier new,courier;\">display_comp()</span>:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 136,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{lcl} v_{\\phantom{\\, x}}^{ \\, x } & = & y + 1 \\\\ v_{\\phantom{\\, y}}^{ \\, y } & = & -x \\\\ v_{\\phantom{\\, z}}^{ \\, z } & = & x y z \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{lcl} v_{\\phantom{\\, x}}^{ \\, x } & = & y + 1 \\\\ v_{\\phantom{\\, y}}^{ \\, y } & = & -x \\\\ v_{\\phantom{\\, z}}^{ \\, z } & = & x y z \\end{array}$"
      ],
      "text/plain": [
       "v^x = y + 1 \n",
       "v^y = -x \n",
       "v^z = x*y*z "
      ]
     },
     "execution_count": 136,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.display_comp()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "別のフレームについての要素を取り出すには、`comp()` メソッドを通じて要素を取り出すフレームを指定する必要があります。\n",
    "<div hidden>\n",
    "<p>To obtain the components w.r.t. to another frame, one may go through the method <span style=\"font-family: courier new,courier;\">comp()</span> and specify the frame:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 137,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[\\frac{x y z^{2} + x}{\\sqrt{x^{2} + y^{2} + z^{2}}}, -\\frac{{\\left(x^{3} y + x y^{3} - x\\right)} \\sqrt{x^{2} + y^{2}} z}{x^{4} + 2 \\, x^{2} y^{2} + y^{4} + {\\left(x^{2} + y^{2}\\right)} z^{2}}, -\\frac{x^{2} + y^{2} + y}{x^{2} + y^{2}}\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[\\frac{x y z^{2} + x}{\\sqrt{x^{2} + y^{2} + z^{2}}}, -\\frac{{\\left(x^{3} y + x y^{3} - x\\right)} \\sqrt{x^{2} + y^{2}} z}{x^{4} + 2 \\, x^{2} y^{2} + y^{4} + {\\left(x^{2} + y^{2}\\right)} z^{2}}, -\\frac{x^{2} + y^{2} + y}{x^{2} + y^{2}}\\right]$"
      ],
      "text/plain": [
       "[(x*y*z^2 + x)/sqrt(x^2 + y^2 + z^2),\n",
       " -(x^3*y + x*y^3 - x)*sqrt(x^2 + y^2)*z/(x^4 + 2*x^2*y^2 + y^4 + (x^2 + y^2)*z^2),\n",
       " -(x^2 + y^2 + y)/(x^2 + y^2)]"
      ]
     },
     "execution_count": 137,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.comp(Y.frame())[:]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "しかしながら、最初の引数にフレームを与える　短縮表現も用意されています。\n",
    "<div hidden>\n",
    "<p>However a shortcut is to provide the frame as the first argument of the square brackets:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 138,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[\\frac{x y z^{2} + x}{\\sqrt{x^{2} + y^{2} + z^{2}}}, -\\frac{{\\left(x^{3} y + x y^{3} - x\\right)} \\sqrt{x^{2} + y^{2}} z}{x^{4} + 2 \\, x^{2} y^{2} + y^{4} + {\\left(x^{2} + y^{2}\\right)} z^{2}}, -\\frac{x^{2} + y^{2} + y}{x^{2} + y^{2}}\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[\\frac{x y z^{2} + x}{\\sqrt{x^{2} + y^{2} + z^{2}}}, -\\frac{{\\left(x^{3} y + x y^{3} - x\\right)} \\sqrt{x^{2} + y^{2}} z}{x^{4} + 2 \\, x^{2} y^{2} + y^{4} + {\\left(x^{2} + y^{2}\\right)} z^{2}}, -\\frac{x^{2} + y^{2} + y}{x^{2} + y^{2}}\\right]$"
      ],
      "text/plain": [
       "[(x*y*z^2 + x)/sqrt(x^2 + y^2 + z^2),\n",
       " -(x^3*y + x*y^3 - x)*sqrt(x^2 + y^2)*z/(x^4 + 2*x^2*y^2 + y^4 + (x^2 + y^2)*z^2),\n",
       " -(x^2 + y^2 + y)/(x^2 + y^2)]"
      ]
     },
     "execution_count": 138,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v[Y.frame(), :]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 139,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{lcl} v_{\\phantom{\\, r}}^{ \\, r } & = & \\frac{x y z^{2} + x}{\\sqrt{x^{2} + y^{2} + z^{2}}} \\\\ v_{\\phantom{\\, {\\theta}}}^{ \\, {\\theta} } & = & -\\frac{{\\left(x^{3} y + x y^{3} - x\\right)} \\sqrt{x^{2} + y^{2}} z}{x^{4} + 2 \\, x^{2} y^{2} + y^{4} + {\\left(x^{2} + y^{2}\\right)} z^{2}} \\\\ v_{\\phantom{\\, {\\phi}}}^{ \\, {\\phi} } & = & -\\frac{x^{2} + y^{2} + y}{x^{2} + y^{2}} \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{lcl} v_{\\phantom{\\, r}}^{ \\, r } & = & \\frac{x y z^{2} + x}{\\sqrt{x^{2} + y^{2} + z^{2}}} \\\\ v_{\\phantom{\\, {\\theta}}}^{ \\, {\\theta} } & = & -\\frac{{\\left(x^{3} y + x y^{3} - x\\right)} \\sqrt{x^{2} + y^{2}} z}{x^{4} + 2 \\, x^{2} y^{2} + y^{4} + {\\left(x^{2} + y^{2}\\right)} z^{2}} \\\\ v_{\\phantom{\\, {\\phi}}}^{ \\, {\\phi} } & = & -\\frac{x^{2} + y^{2} + y}{x^{2} + y^{2}} \\end{array}$"
      ],
      "text/plain": [
       "v^r = (x*y*z^2 + x)/sqrt(x^2 + y^2 + z^2) \n",
       "v^th = -(x^3*y + x*y^3 - x)*sqrt(x^2 + y^2)*z/(x^4 + 2*x^2*y^2 + y^4 + (x^2 + y^2)*z^2) \n",
       "v^ph = -(x^2 + y^2 + y)/(x^2 + y^2) "
      ]
     },
     "execution_count": 139,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.display_comp(Y.frame())"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "要素は、既定の座標系の座標で表現されます。これらの別の座標系の座標、例えば$(r,\\theta,\\phi)$、で表現したい時には、\n",
    "`[]`の最後の引数として、座標系の名前を与えます。\n",
    "<div hidden>\n",
    "<p>Components are shown expressed in terms of the default's coordinates; to get them in terms of the coordinates $(r,\\theta,\\phi)$ instead, add the chart name as the last argument in the square brackets:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 140,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} + \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), -\\frac{r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3} - \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)}{r}, -\\frac{r \\sin\\left({\\theta}\\right) + \\sin\\left({\\phi}\\right)}{r \\sin\\left({\\theta}\\right)}\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} + \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), -\\frac{r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3} - \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)}{r}, -\\frac{r \\sin\\left({\\theta}\\right) + \\sin\\left({\\phi}\\right)}{r \\sin\\left({\\theta}\\right)}\\right]$"
      ],
      "text/plain": [
       "[r^3*cos(ph)*cos(th)^2*sin(ph)*sin(th)^2 + cos(ph)*sin(th),\n",
       " -(r^3*cos(ph)*cos(th)*sin(ph)*sin(th)^3 - cos(ph)*cos(th))/r,\n",
       " -(r*sin(th) + sin(ph))/(r*sin(th))]"
      ]
     },
     "execution_count": 140,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v[Y.frame(), :, Y]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "あるいは、`display_comp()` の引数に座標系の名前を与えます。\n",
    "<div hidden>\n",
    "<p>or specify the chart in <span style=\"font-family: courier new,courier;\">display_comp()</span>:<span style=\"font-family: courier new,courier;\"><br /></span></p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 141,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{lcl} v_{\\phantom{\\, r}}^{ \\, r } & = & r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} + \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\\\ v_{\\phantom{\\, {\\theta}}}^{ \\, {\\theta} } & = & -\\frac{r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3} - \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)}{r} \\\\ v_{\\phantom{\\, {\\phi}}}^{ \\, {\\phi} } & = & -\\frac{r \\sin\\left({\\theta}\\right) + \\sin\\left({\\phi}\\right)}{r \\sin\\left({\\theta}\\right)} \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{lcl} v_{\\phantom{\\, r}}^{ \\, r } & = & r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} + \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\\\ v_{\\phantom{\\, {\\theta}}}^{ \\, {\\theta} } & = & -\\frac{r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3} - \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)}{r} \\\\ v_{\\phantom{\\, {\\phi}}}^{ \\, {\\phi} } & = & -\\frac{r \\sin\\left({\\theta}\\right) + \\sin\\left({\\phi}\\right)}{r \\sin\\left({\\theta}\\right)} \\end{array}$"
      ],
      "text/plain": [
       "v^r = r^3*cos(ph)*cos(th)^2*sin(ph)*sin(th)^2 + cos(ph)*sin(th) \n",
       "v^th = -(r^3*cos(ph)*cos(th)*sin(ph)*sin(th)^3 - cos(ph)*cos(th))/r \n",
       "v^ph = -(r*sin(th) + sin(ph))/(r*sin(th)) "
      ]
     },
     "execution_count": 141,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.display_comp(Y.frame(), chart=Y)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 142,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{lcl} v_{\\phantom{\\, r}}^{ \\, r } & = & \\frac{x y z^{2} + x}{\\sqrt{x^{2} + y^{2} + z^{2}}} \\\\ v_{\\phantom{\\, {\\theta}}}^{ \\, {\\theta} } & = & -\\frac{{\\left(x^{3} y + x y^{3} - x\\right)} \\sqrt{x^{2} + y^{2}} z}{x^{4} + 2 \\, x^{2} y^{2} + y^{4} + {\\left(x^{2} + y^{2}\\right)} z^{2}} \\\\ v_{\\phantom{\\, {\\phi}}}^{ \\, {\\phi} } & = & -\\frac{x^{2} + y^{2} + y}{x^{2} + y^{2}} \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{lcl} v_{\\phantom{\\, r}}^{ \\, r } & = & \\frac{x y z^{2} + x}{\\sqrt{x^{2} + y^{2} + z^{2}}} \\\\ v_{\\phantom{\\, {\\theta}}}^{ \\, {\\theta} } & = & -\\frac{{\\left(x^{3} y + x y^{3} - x\\right)} \\sqrt{x^{2} + y^{2}} z}{x^{4} + 2 \\, x^{2} y^{2} + y^{4} + {\\left(x^{2} + y^{2}\\right)} z^{2}} \\\\ v_{\\phantom{\\, {\\phi}}}^{ \\, {\\phi} } & = & -\\frac{x^{2} + y^{2} + y}{x^{2} + y^{2}} \\end{array}$"
      ],
      "text/plain": [
       "v^r = (x*y*z^2 + x)/sqrt(x^2 + y^2 + z^2) \n",
       "v^th = -(x^3*y + x*y^3 - x)*sqrt(x^2 + y^2)*z/(x^4 + 2*x^2*y^2 + y^4 + (x^2 + y^2)*z^2) \n",
       "v^ph = -(x^2 + y^2 + y)/(x^2 + y^2) "
      ]
     },
     "execution_count": 142,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.display_comp(Y.frame(),chart=X_U)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "ベクトル場の成分を座標についての表現ではなく、スカラーフィールドとして取り出すために、二重の括弧 `[[]]` を使います。\n",
    "<div hidden>\n",
    "To get some vector component as a scalar field instead of a coordinate expression, use double square brackets: </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 143,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "print(v[[1]])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 144,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} & U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & y + 1 \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) + 1 \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} & U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & y + 1 \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) + 1 \\end{array}$"
      ],
      "text/plain": [
       "U → ℝ\n",
       "(x, y, z) ↦ y + 1\n",
       "(r, th, ph) ↦ r*sin(ph)*sin(th) + 1"
      ]
     },
     "execution_count": 144,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v[[1]].display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 145,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[y + 1, -x, x y z\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[y + 1, -x, x y z\\right]$"
      ],
      "text/plain": [
       "[y + 1, -x, x*y*z]"
      ]
     },
     "execution_count": 145,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "[v[[i]].expr(X_U) for i in range(1,4)]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "ベクトル場は関数オブジェクトを要素として定義することも可能です。\n",
    "<div hidden>\n",
    "<p>A vector field can be defined with components being unspecified functions of the coordinates:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 146,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle u = u_{x}\\left(x, y, z\\right) \\frac{\\partial}{\\partial x } + u_{y}\\left(x, y, z\\right) \\frac{\\partial}{\\partial y } + u_{z}\\left(x, y, z\\right) \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle u = u_{x}\\left(x, y, z\\right) \\frac{\\partial}{\\partial x } + u_{y}\\left(x, y, z\\right) \\frac{\\partial}{\\partial y } + u_{z}\\left(x, y, z\\right) \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "u = u_x(x, y, z) ∂/∂x + u_y(x, y, z) ∂/∂y + u_z(x, y, z) ∂/∂z"
      ]
     },
     "execution_count": 146,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "u = U.vector_field(name='u')\n",
    "u[:] = [function('u_x')(x,y,z), \n",
    "        function('u_y')(x,y,z), \n",
    "        function('u_z')(x,y,z)]\n",
    "u.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 147,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle s = \\left( y + u_{x}\\left(x, y, z\\right) + 1 \\right) \\frac{\\partial}{\\partial x } + \\left( -x + u_{y}\\left(x, y, z\\right) \\right) \\frac{\\partial}{\\partial y } + \\left( x y z + u_{z}\\left(x, y, z\\right) \\right) \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle s = \\left( y + u_{x}\\left(x, y, z\\right) + 1 \\right) \\frac{\\partial}{\\partial x } + \\left( -x + u_{y}\\left(x, y, z\\right) \\right) \\frac{\\partial}{\\partial y } + \\left( x y z + u_{z}\\left(x, y, z\\right) \\right) \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "s = (y + u_x(x, y, z) + 1) ∂/∂x + (-x + u_y(x, y, z)) ∂/∂y + (x*y*z + u_z(x, y, z)) ∂/∂z"
      ]
     },
     "execution_count": 147,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "s = v + u ; s.set_name('s') ; s.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### ある点でのベクトル場の値：Values of vector fields at a given point\n",
    "多様体中のある点でのベクトル場の値は`at()`メソッドを通じて入手します。\n",
    "<div hidden>\n",
    "<p>The value of a vector field at some point of the manifold is obtained via the method <span style=\"font-family: courier new,courier;\">at()</span>:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 148,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tangent vector v at Point p on the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "vp = v.at(p) ; print(vp)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 149,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle v = 3 \\frac{\\partial}{\\partial x } -\\frac{\\partial}{\\partial y } -2 \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle v = 3 \\frac{\\partial}{\\partial x } -\\frac{\\partial}{\\partial y } -2 \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "v = 3 ∂/∂x - ∂/∂y - 2 ∂/∂z"
      ]
     },
     "execution_count": 149,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "vp.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "座標系　$X_U$ = $(x,y,z)$ を使った、点$p$の座標と、ベクトル場$v$の要素は次のようになっていたことを思い出してください。\n",
    "<div hidden>\n",
    "<p>Indeed, recall that, w.r.t. chart X_U=$(x,y,z)$,  the coordinates of the point $p$ and the components of the vector field $v$ are</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 150,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(1, 2, -1\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(1, 2, -1\\right)$"
      ],
      "text/plain": [
       "(1, 2, -1)"
      ]
     },
     "execution_count": 150,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "p.coord(X_U)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 151,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle v = \\left( y + 1 \\right) \\frac{\\partial}{\\partial x } -x \\frac{\\partial}{\\partial y } + x y z \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle v = \\left( y + 1 \\right) \\frac{\\partial}{\\partial x } -x \\frac{\\partial}{\\partial y } + x y z \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "v = (y + 1) ∂/∂x - x ∂/∂y + x*y*z ∂/∂z"
      ]
     },
     "execution_count": 151,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.display(X_U.frame(), X_U)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "記述を簡単にするために、点$p$でのベクトル場の値とベクトル場は同じ記号($v$)を使って表示されています。`set_name()`メソッドを使うことで、\n",
    "表示に使われる記号を変更できます。\n",
    "<div hidden>\n",
    "<p>Note that to simplify the writing, the symbol used to denote the value of the vector field at point $p$ is the same as that of the vector field itself (namely $v$); this can be changed by the method <span style=\"font-family: courier new,courier;\">set_name()</span>:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 152,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle v|_p = 3 \\frac{\\partial}{\\partial x } -\\frac{\\partial}{\\partial y } -2 \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle v|_p = 3 \\frac{\\partial}{\\partial x } -\\frac{\\partial}{\\partial y } -2 \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "v = 3 ∂/∂x - ∂/∂y - 2 ∂/∂z"
      ]
     },
     "execution_count": 152,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "vp.set_name(latex_name='v|_p')\n",
    "vp.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "もちろん、$v|_p$　は$p$の接ベクトル空間に属しています。\n",
    "<div hidden>\n",
    "<p>Of course, $v|_p$ belongs to the tangent space at $p$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 153,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle T_{p}\\,\\mathcal{M}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle T_{p}\\,\\mathcal{M}$"
      ],
      "text/plain": [
       "Tangent space at Point p on the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 153,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "vp.parent()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 154,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 154,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "vp in M.tangent_space(p)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 155,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tangent vector u at Point p on the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "up = u.at(p) ; print(up)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 156,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle u = u_{x}\\left(1, 2, -1\\right) \\frac{\\partial}{\\partial x } + u_{y}\\left(1, 2, -1\\right) \\frac{\\partial}{\\partial y } + u_{z}\\left(1, 2, -1\\right) \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle u = u_{x}\\left(1, 2, -1\\right) \\frac{\\partial}{\\partial x } + u_{y}\\left(1, 2, -1\\right) \\frac{\\partial}{\\partial y } + u_{z}\\left(1, 2, -1\\right) \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "u = u_x(1, 2, -1) ∂/∂x + u_y(1, 2, -1) ∂/∂y + u_z(1, 2, -1) ∂/∂z"
      ]
     },
     "execution_count": 156,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "up.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## 1-形式: 1-forms\n",
    "$\\mathcal{M}$の1-形式とは、線形形式の場です。例えば、スカラー場の微分は1ー形式です。\n",
    "\n",
    "<div hidden>\n",
    "<p>A 1-form on $\\mathcal{M}$ is a field of linear forms. For instance, it can be the <strong>differential of a scalar field</strong>:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 157,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1-form df on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "df = f.differential() ; print(df)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 158,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{d}f = \\mathrm{d} x + 2 \\, y \\mathrm{d} y + 3 \\, z^{2} \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{d}f = \\mathrm{d} x + 2 \\, y \\mathrm{d} y + 3 \\, z^{2} \\mathrm{d} z$"
      ],
      "text/plain": [
       "df = dx + 2*y dy + 3*z^2 dz"
      ]
     },
     "execution_count": 158,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "df.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "上記の表現では、1-形式は座標系 $(x,y,z)$から導かれる基底$(\\mathrm{d}x, \\mathrm{d}y, \\mathrm{d}z)$で展開されています。\n",
    "この基底は`coframe()`メソッドで取り出すことが可能です。\n",
    "<div hidden>\n",
    "<p>In the above writing, the 1-form is expanded over the basis $(\\mathrm{d}x, \\mathrm{d}y, \\mathrm{d}z)$ associated with the chart $(x,y,z)$. This basis can be accessed via the method <span style=\"font-family: courier new,courier;\">coframe()</span>:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 159,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(\\mathcal{M}, \\left(\\mathrm{d} x,\\mathrm{d} y,\\mathrm{d} z\\right)\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(\\mathcal{M}, \\left(\\mathrm{d} x,\\mathrm{d} y,\\mathrm{d} z\\right)\\right)$"
      ],
      "text/plain": [
       "Coordinate coframe (M, (dx,dy,dz))"
      ]
     },
     "execution_count": 159,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "dX = X.coframe() ; dX"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "多様体 $M$の上に存在する全ての $coframe$ のリストは `coframes()` メソッドを使って取り出します。\n",
    "<div hidden>\n",
    "<p>The list of all coframes defined on a given manifold open subset is returned by the method <span style=\"font-family: courier new,courier;\">coframes()</span>:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 160,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[\\left(\\mathcal{M}, \\left(\\mathrm{d} x,\\mathrm{d} y,\\mathrm{d} z\\right)\\right), \\left(U, \\left(\\mathrm{d} x,\\mathrm{d} y,\\mathrm{d} z\\right)\\right), \\left(U, \\left(\\mathrm{d} r,\\mathrm{d} {\\theta},\\mathrm{d} {\\phi}\\right)\\right)\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[\\left(\\mathcal{M}, \\left(\\mathrm{d} x,\\mathrm{d} y,\\mathrm{d} z\\right)\\right), \\left(U, \\left(\\mathrm{d} x,\\mathrm{d} y,\\mathrm{d} z\\right)\\right), \\left(U, \\left(\\mathrm{d} r,\\mathrm{d} {\\theta},\\mathrm{d} {\\phi}\\right)\\right)\\right]$"
      ],
      "text/plain": [
       "[Coordinate coframe (M, (dx,dy,dz)),\n",
       " Coordinate coframe (U, (dx,dy,dz)),\n",
       " Coordinate coframe (U, (dr,dth,dph))]"
      ]
     },
     "execution_count": 160,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "M.coframes()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "ベクトル場として、多様体上の点 $p$ における微分形式の値は `at()` メソッドで取り出します。\n",
    "<div hidden>\n",
    "<p>As for a vector field, the value of the differential form at some point on the manifold is obtained by the method <span style=\"font-family: courier new,courier;\">at()</span>:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 161,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Linear form df on the Tangent space at Point p on the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "dfp = df.at(p) ; print(dfp)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 162,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{d}f = \\mathrm{d} x + 4 \\mathrm{d} y + 3 \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{d}f = \\mathrm{d} x + 4 \\mathrm{d} y + 3 \\mathrm{d} z$"
      ],
      "text/plain": [
       "df = dx + 4 dy + 3 dz"
      ]
     },
     "execution_count": 162,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "dfp.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "なお、$p$の座標は次のようなものでした。\n",
    "<div hidden>\n",
    "  <p>Recall that</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 163,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(1, 2, -1\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(1, 2, -1\\right)$"
      ],
      "text/plain": [
       "(1, 2, -1)"
      ]
     },
     "execution_count": 163,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "p.coord()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "線形形式　$\\mathrm{d}f|_p$ は$p$の接ベクトル空間の双対空間に所属しています。\n",
    "<div hidden>\n",
    "<p>The linear form $\\mathrm{d}f|_p$ belongs to the dual of the tangent vector space at $p$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 164,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle T_{p}\\,\\mathcal{M}^*\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle T_{p}\\,\\mathcal{M}^*$"
      ],
      "text/plain": [
       "Dual of the Tangent space at Point p on the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 164,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "dfp.parent()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 165,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 165,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "dfp.parent() is M.tangent_space(p).dual()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "その結果、線形形式を$p$の接ベクトルに作用させると、実数が結果として得られます。\n",
    "<div hidden>\n",
    "<p>As such, it is acting on vectors at $p$, yielding a real number:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 166,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tangent vector v at Point p on the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle v|_p = 3 \\frac{\\partial}{\\partial x } -\\frac{\\partial}{\\partial y } -2 \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle v|_p = 3 \\frac{\\partial}{\\partial x } -\\frac{\\partial}{\\partial y } -2 \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "v = 3 ∂/∂x - ∂/∂y - 2 ∂/∂z"
      ]
     },
     "execution_count": 166,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "print(vp) ; vp.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 167,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle -7\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle -7$"
      ],
      "text/plain": [
       "-7"
      ]
     },
     "execution_count": 167,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "dfp(vp)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 168,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tangent vector u at Point p on the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle u = u_{x}\\left(1, 2, -1\\right) \\frac{\\partial}{\\partial x } + u_{y}\\left(1, 2, -1\\right) \\frac{\\partial}{\\partial y } + u_{z}\\left(1, 2, -1\\right) \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle u = u_{x}\\left(1, 2, -1\\right) \\frac{\\partial}{\\partial x } + u_{y}\\left(1, 2, -1\\right) \\frac{\\partial}{\\partial y } + u_{z}\\left(1, 2, -1\\right) \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "u = u_x(1, 2, -1) ∂/∂x + u_y(1, 2, -1) ∂/∂y + u_z(1, 2, -1) ∂/∂z"
      ]
     },
     "execution_count": 168,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "print(up) ; up.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 169,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle u_{x}\\left(1, 2, -1\\right) + 4 \\, u_{y}\\left(1, 2, -1\\right) + 3 \\, u_{z}\\left(1, 2, -1\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle u_{x}\\left(1, 2, -1\\right) + 4 \\, u_{y}\\left(1, 2, -1\\right) + 3 \\, u_{z}\\left(1, 2, -1\\right)$"
      ],
      "text/plain": [
       "u_x(1, 2, -1) + 4*u_y(1, 2, -1) + 3*u_z(1, 2, -1)"
      ]
     },
     "execution_count": 169,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "dfp(up)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "一般的な関数で定義されるスカラー場 $h$ の 微分形式: \n",
    "\n",
    "<div hidden>\n",
    "  <p>The differential 1-form of the unspecified scalar field $h$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 170,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} h:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & H\\left(x, y, z\\right) \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & H\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} h:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & H\\left(x, y, z\\right) \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & H\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}$"
      ],
      "text/plain": [
       "h: U → ℝ\n",
       "   (x, y, z) ↦ H(x, y, z)\n",
       "   (r, th, ph) ↦ H(r*cos(ph)*sin(th), r*sin(ph)*sin(th), r*cos(th))"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{d}h = \\frac{\\partial\\,H}{\\partial x} \\mathrm{d} x + \\frac{\\partial\\,H}{\\partial y} \\mathrm{d} y + \\frac{\\partial\\,H}{\\partial z} \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{d}h = \\frac{\\partial\\,H}{\\partial x} \\mathrm{d} x + \\frac{\\partial\\,H}{\\partial y} \\mathrm{d} y + \\frac{\\partial\\,H}{\\partial z} \\mathrm{d} z$"
      ],
      "text/plain": [
       "dh = d(H)/dx dx + d(H)/dy dy + d(H)/dz dz"
      ]
     },
     "execution_count": 170,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "show(h.display())\n",
    "dh = h.differential() ; \n",
    "dh.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "1-形式を何もないところから、定義することもできます。\n",
    "\n",
    "具体的な定義がまだないので、`display()` することはできません。\n",
    "<div hidden>\n",
    "<p>A 1-form <span id=\"cell_outer_132\">can also be defined from scratch:</span></p></div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 171,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1-form omega on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\omega\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\omega$"
      ],
      "text/plain": [
       "1-form omega on the Open subset U of the 3-dimensional differentiable manifold M"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Value Error!  no basis could be found for computing the components in the Coordinate frame (U, (∂/∂x,∂/∂y,∂/∂z))\n"
     ]
    }
   ],
   "source": [
    "om = U.one_form(name='omega', latex_name=r'\\omega')\n",
    "print(om)\n",
    "show(om)\n",
    "\n",
    "try:\n",
    "  om.display()\n",
    "except ValueError as m:\n",
    "  print(\"Value Error! \",m)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "与えられたcoframeの要素を与えることで、この1-形式を確定できます。\n",
    "<div hidden>\n",
    "<p>It can be specified by providing its components in a given coframe:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 172,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\omega = \\left( x^{2} + y^{2} \\right) \\mathrm{d} x + z \\mathrm{d} y + \\left( x - z \\right) \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\omega = \\left( x^{2} + y^{2} \\right) \\mathrm{d} x + z \\mathrm{d} y + \\left( x - z \\right) \\mathrm{d} z$"
      ],
      "text/plain": [
       "omega = (x^2 + y^2) dx + z dy + (x - z) dz"
      ]
     },
     "execution_count": 172,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "om[:] = [x^2+y^2, z, x-z]    # components in the default coframe (dx,dy,dz)\n",
    "om.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "SageMath 8.8 以降では、1-形式の成分を宣言時に初期化することができます。上記の式は次の式と等価です。\n",
    "<div hidden>\n",
    "Since version 8.8 of SageMath, it is possible to initialize the components of the 1-form while declaring it, so that the above is equivalent to</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 173,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\omega = \\left( x^{2} + y^{2} \\right) \\mathrm{d} x + z \\mathrm{d} y + \\left( x - z \\right) \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\omega = \\left( x^{2} + y^{2} \\right) \\mathrm{d} x + z \\mathrm{d} y + \\left( x - z \\right) \\mathrm{d} z$"
      ],
      "text/plain": [
       "omega = (x^2 + y^2) dx + z dy + (x - z) dz"
      ]
     },
     "execution_count": 173,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "om = U.one_form(\n",
    "  x^2+y^2, z, x-z, # valid only in SageMath 8.8 and higher\n",
    "  name='omega',  \n",
    "  latex_name=r'\\omega'\n",
    ")\n",
    "om.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "もちろん、既定のフレームとは異なるフレームでの要素を指定することもできます。\n",
    "<div hidden>\n",
    "<p>Of course, one may set the components in a frame different from the default one:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 174,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\omega = r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\mathrm{d} r + r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\mathrm{d} {\\phi}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\omega = r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\mathrm{d} r + r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\mathrm{d} {\\phi}$"
      ],
      "text/plain": [
       "omega = r*cos(ph)*sin(th) dr + r*sin(ph)*sin(th) dph"
      ]
     },
     "execution_count": 174,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "om[Y.frame(), :, Y] = [r*sin(th)*cos(ph), 0, r*sin(th)*sin(ph)]\n",
    "om.display(Y.frame(), Y)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "この場合、coframe $(\\mathrm{d}x,\\mathrm{d}y,\\mathrm{d}z)$での要素は自動的に更新されます。\n",
    "<div hidden>\n",
    "<p>The components in the coframe $(\\mathrm{d}x,\\mathrm{d}y,\\mathrm{d}z)$ are updated automatically:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 175,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\omega = \\left( \\frac{x^{4} + x^{2} y^{2} - \\sqrt{x^{2} + y^{2} + z^{2}} y^{2}}{\\sqrt{x^{2} + y^{2} + z^{2}} {\\left(x^{2} + y^{2}\\right)}} \\right) \\mathrm{d} x + \\left( \\frac{x^{3} y + x y^{3} + \\sqrt{x^{2} + y^{2} + z^{2}} x y}{\\sqrt{x^{2} + y^{2} + z^{2}} {\\left(x^{2} + y^{2}\\right)}} \\right) \\mathrm{d} y + \\left( \\frac{x z}{\\sqrt{x^{2} + y^{2} + z^{2}}} \\right) \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\omega = \\left( \\frac{x^{4} + x^{2} y^{2} - \\sqrt{x^{2} + y^{2} + z^{2}} y^{2}}{\\sqrt{x^{2} + y^{2} + z^{2}} {\\left(x^{2} + y^{2}\\right)}} \\right) \\mathrm{d} x + \\left( \\frac{x^{3} y + x y^{3} + \\sqrt{x^{2} + y^{2} + z^{2}} x y}{\\sqrt{x^{2} + y^{2} + z^{2}} {\\left(x^{2} + y^{2}\\right)}} \\right) \\mathrm{d} y + \\left( \\frac{x z}{\\sqrt{x^{2} + y^{2} + z^{2}}} \\right) \\mathrm{d} z$"
      ],
      "text/plain": [
       "omega = (x^4 + x^2*y^2 - sqrt(x^2 + y^2 + z^2)*y^2)/(sqrt(x^2 + y^2 + z^2)*(x^2 + y^2)) dx + (x^3*y + x*y^3 + sqrt(x^2 + y^2 + z^2)*x*y)/(sqrt(x^2 + y^2 + z^2)*(x^2 + y^2)) dy + x*z/sqrt(x^2 + y^2 + z^2) dz"
      ]
     },
     "execution_count": 175,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "om.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "元の要素の値に戻してみます。\n",
    "<div hidden>\n",
    "<p>Let us revert to the values set previously:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 176,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\omega = \\left( x^{2} + y^{2} \\right) \\mathrm{d} x + z \\mathrm{d} y + \\left( x - z \\right) \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\omega = \\left( x^{2} + y^{2} \\right) \\mathrm{d} x + z \\mathrm{d} y + \\left( x - z \\right) \\mathrm{d} z$"
      ],
      "text/plain": [
       "omega = (x^2 + y^2) dx + z dy + (x - z) dz"
      ]
     },
     "execution_count": 176,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "om[:] = [x^2+y^2, z, x-z]\n",
    "om.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "今度は、coframe $(\\mathrm{d}r, \\mathrm{d}\\theta,\\mathrm{d}\\phi)$ についての要素は自動的に更新されています。\n",
    "<div hidden>\n",
    "<p>This time, the components in the coframe $(\\mathrm{d}r, \\mathrm{d}\\theta,\\mathrm{d}\\phi)$ are those that are updated:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 177,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\omega = \\left( r^{2} \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3} + r {\\left(\\cos\\left({\\phi}\\right) + \\sin\\left({\\phi}\\right)\\right)} \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) - r \\cos\\left({\\theta}\\right)^{2} \\right) \\mathrm{d} r + \\left( r^{2} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + r^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) + {\\left(r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) - r^{2} \\cos\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} \\right) \\mathrm{d} {\\theta} + \\left( -r^{3} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3} + r^{2} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) \\right) \\mathrm{d} {\\phi}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\omega = \\left( r^{2} \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3} + r {\\left(\\cos\\left({\\phi}\\right) + \\sin\\left({\\phi}\\right)\\right)} \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) - r \\cos\\left({\\theta}\\right)^{2} \\right) \\mathrm{d} r + \\left( r^{2} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + r^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) + {\\left(r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) - r^{2} \\cos\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} \\right) \\mathrm{d} {\\theta} + \\left( -r^{3} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3} + r^{2} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) \\right) \\mathrm{d} {\\phi}$"
      ],
      "text/plain": [
       "omega = (r^2*cos(ph)*sin(th)^3 + r*(cos(ph) + sin(ph))*cos(th)*sin(th) - r*cos(th)^2) dr + (r^2*cos(th)^2*sin(ph) + r^2*cos(th)*sin(th) + (r^3*cos(ph)*cos(th) - r^2*cos(ph))*sin(th)^2) dth + (-r^3*sin(ph)*sin(th)^3 + r^2*cos(ph)*cos(th)*sin(th)) dph"
      ]
     },
     "execution_count": 177,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "om.display(Y.frame(), Y)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "1-形式は、ベクトル場に作用して、スカラー場を与えます。\n",
    "<div hidden>\n",
    "<p>A 1-form acts on vector fields, resulting in a scalar field:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 178,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field omega(v) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} \\omega\\left(v\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & -x y z^{2} + x^{2} y + y^{3} + x^{2} + y^{2} + {\\left(x^{2} y - x\\right)} z \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & -r^{2} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) + {\\left(r^{4} \\cos\\left({\\phi}\\right)^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) + r^{3} \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{3} - {\\left(r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) - r^{2}\\right)} \\sin\\left({\\theta}\\right)^{2} \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} \\omega\\left(v\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & -x y z^{2} + x^{2} y + y^{3} + x^{2} + y^{2} + {\\left(x^{2} y - x\\right)} z \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & -r^{2} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) + {\\left(r^{4} \\cos\\left({\\phi}\\right)^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) + r^{3} \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{3} - {\\left(r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) - r^{2}\\right)} \\sin\\left({\\theta}\\right)^{2} \\end{array}$"
      ],
      "text/plain": [
       "omega(v): U → ℝ\n",
       "   (x, y, z) ↦ -x*y*z^2 + x^2*y + y^3 + x^2 + y^2 + (x^2*y - x)*z\n",
       "   (r, th, ph) ↦ -r^2*cos(ph)*cos(th)*sin(th) + (r^4*cos(ph)^2*cos(th)*sin(ph) + r^3*sin(ph))*sin(th)^3 - (r^4*cos(ph)*cos(th)^2*sin(ph) - r^2)*sin(th)^2"
      ]
     },
     "execution_count": 178,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "print(om(v)) ; om(v).display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 179,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field df(v) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} \\mathrm{d}f\\left(v\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & 3 \\, x y z^{3} - {\\left(2 \\, x - 1\\right)} y + 1 \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) + {\\left(3 \\, r^{5} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) - 2 \\, r^{2} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} + 1 \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} \\mathrm{d}f\\left(v\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & 3 \\, x y z^{3} - {\\left(2 \\, x - 1\\right)} y + 1 \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) + {\\left(3 \\, r^{5} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) - 2 \\, r^{2} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} + 1 \\end{array}$"
      ],
      "text/plain": [
       "df(v): U → ℝ\n",
       "   (x, y, z) ↦ 3*x*y*z^3 - (2*x - 1)*y + 1\n",
       "   (r, th, ph) ↦ r*sin(ph)*sin(th) + (3*r^5*cos(ph)*cos(th)^3*sin(ph) - 2*r^2*cos(ph)*sin(ph))*sin(th)^2 + 1"
      ]
     },
     "execution_count": 179,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "print(df(v)) ; df(v).display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 180,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} \\omega\\left(u\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & x^{2} u_{x}\\left(x, y, z\\right) + y^{2} u_{x}\\left(x, y, z\\right) + z {\\left(u_{y}\\left(x, y, z\\right) - u_{z}\\left(x, y, z\\right)\\right)} + x u_{z}\\left(x, y, z\\right) \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{2} \\sin\\left({\\theta}\\right)^{2} u_{x}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) + r \\cos\\left({\\theta}\\right) u_{y}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) + {\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) - r \\cos\\left({\\theta}\\right)\\right)} u_{z}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} \\omega\\left(u\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & x^{2} u_{x}\\left(x, y, z\\right) + y^{2} u_{x}\\left(x, y, z\\right) + z {\\left(u_{y}\\left(x, y, z\\right) - u_{z}\\left(x, y, z\\right)\\right)} + x u_{z}\\left(x, y, z\\right) \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{2} \\sin\\left({\\theta}\\right)^{2} u_{x}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) + r \\cos\\left({\\theta}\\right) u_{y}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) + {\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) - r \\cos\\left({\\theta}\\right)\\right)} u_{z}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}$"
      ],
      "text/plain": [
       "omega(u): U → ℝ\n",
       "   (x, y, z) ↦ x^2*u_x(x, y, z) + y^2*u_x(x, y, z) + z*(u_y(x, y, z) - u_z(x, y, z)) + x*u_z(x, y, z)\n",
       "   (r, th, ph) ↦ r^2*sin(th)^2*u_x(r*cos(ph)*sin(th), r*sin(ph)*sin(th), r*cos(th)) + r*cos(th)*u_y(r*cos(ph)*sin(th), r*sin(ph)*sin(th), r*cos(th)) + (r*cos(ph)*sin(th) - r*cos(th))*u_z(r*cos(ph)*sin(th), r*sin(ph)*sin(th), r*cos(th))"
      ]
     },
     "execution_count": 180,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "om(u).display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "スカラー場$f$から導かれた1ー形式については、次の恒等式が成立します。\n",
    "<div hidden>\n",
    "<p>In the case of a differential 1-form, the following identity holds:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 181,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 181,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "df(v) == v(f)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "1-形式は、*親*が $U$上で定義された全ての1ー形式からなる $C^\\infty(U)$ 級のモジュール $\\Omega^{1}(U)$　であるSageの *element* オブジェクトです。\n",
    "<div hidden>\n",
    "1-forms are Sage *element* objects, whose *parent* is the $C^\\infty(U)$-module $\\Omega^{1}(U)$ of all 1-forms defined on $U$: </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 182,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\Omega^{1}\\left(U\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\Omega^{1}\\left(U\\right)$"
      ],
      "text/plain": [
       "Free module Omega^1(U) of 1-forms on the Open subset U of the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 182,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "df.parent()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 183,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Free module Omega^1(U) of 1-forms on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "print(df.parent())"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 184,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Free module Omega^1(U) of 1-forms on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "print(om.parent())"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$\\Omega^{1}(U)$は自由モジュール $\\mathfrak{X}(U)$の双対です。\n",
    "<div hidden>\n",
    "$\\Omega^{1}(U)$ is actually the dual of the free module $\\mathfrak{X}(U)$: </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 185,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 185,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "df.parent() is v.parent().dual()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## 微分形式と外積, 外微分 :Differential forms and exterior calculus\n",
    "二つの1ー形式の **外積** は `wedge()` メソッドを使って求められます。その結果は 2-形式となります。\n",
    "<div hidden>\n",
    "<h2>Differential forms and exterior calculus</h2>\n",
    "<p>The <strong>exterior product</strong> of two 1-forms is taken via the method <span style=\"font-family: courier new,courier;\">wedge()</span> and results in a 2-form:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 186,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2-form omega∧df on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\omega\\wedge \\mathrm{d}f = \\left( 2 \\, x^{2} y + 2 \\, y^{3} - z \\right) \\mathrm{d} x\\wedge \\mathrm{d} y + \\left( 3 \\, {\\left(x^{2} + y^{2}\\right)} z^{2} - x + z \\right) \\mathrm{d} x\\wedge \\mathrm{d} z + \\left( 3 \\, z^{3} - 2 \\, x y + 2 \\, y z \\right) \\mathrm{d} y\\wedge \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\omega\\wedge \\mathrm{d}f = \\left( 2 \\, x^{2} y + 2 \\, y^{3} - z \\right) \\mathrm{d} x\\wedge \\mathrm{d} y + \\left( 3 \\, {\\left(x^{2} + y^{2}\\right)} z^{2} - x + z \\right) \\mathrm{d} x\\wedge \\mathrm{d} z + \\left( 3 \\, z^{3} - 2 \\, x y + 2 \\, y z \\right) \\mathrm{d} y\\wedge \\mathrm{d} z$"
      ],
      "text/plain": [
       "omega∧df = (2*x^2*y + 2*y^3 - z) dx∧dy + (3*(x^2 + y^2)*z^2 - x + z) dx∧dz + (3*z^3 - 2*x*y + 2*y*z) dy∧dz"
      ]
     },
     "execution_count": 186,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "a = om.wedge(df) ; print(a) ; a.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "行列形式での要素の表示：\n",
    "<div hidden>\n",
    "<p>A matrix view of the components:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 187,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(\\begin{array}{rrr}\n",
       "0 & 2 \\, x^{2} y + 2 \\, y^{3} - z & 3 \\, {\\left(x^{2} + y^{2}\\right)} z^{2} - x + z \\\\\n",
       "-2 \\, x^{2} y - 2 \\, y^{3} + z & 0 & 3 \\, z^{3} - 2 \\, x y + 2 \\, y z \\\\\n",
       "-3 \\, {\\left(x^{2} + y^{2}\\right)} z^{2} + x - z & -3 \\, z^{3} + 2 \\, x y - 2 \\, y z & 0\n",
       "\\end{array}\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(\\begin{array}{rrr}\n",
       "0 & 2 \\, x^{2} y + 2 \\, y^{3} - z & 3 \\, {\\left(x^{2} + y^{2}\\right)} z^{2} - x + z \\\\\n",
       "-2 \\, x^{2} y - 2 \\, y^{3} + z & 0 & 3 \\, z^{3} - 2 \\, x y + 2 \\, y z \\\\\n",
       "-3 \\, {\\left(x^{2} + y^{2}\\right)} z^{2} + x - z & -3 \\, z^{3} + 2 \\, x y - 2 \\, y z & 0\n",
       "\\end{array}\\right)$"
      ],
      "text/plain": [
       "[                         0        2*x^2*y + 2*y^3 - z  3*(x^2 + y^2)*z^2 - x + z]\n",
       "[      -2*x^2*y - 2*y^3 + z                          0      3*z^3 - 2*x*y + 2*y*z]\n",
       "[-3*(x^2 + y^2)*z^2 + x - z     -3*z^3 + 2*x*y - 2*y*z                          0]"
      ]
     },
     "execution_count": 187,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "a[:]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "歪対称性から導かれる余分な要素を省き、ゼロでない成分だけを表示します：\n",
    "<div hidden>\n",
    "  <p>Displaying only the non-vanishing components, skipping the redundant ones (i.e. those that can be deduced by antisymmetry):</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 188,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{lcl} \\omega\\wedge \\mathrm{d}f_{ \\, x \\, y }^{ \\phantom{\\, x}\\phantom{\\, y} } & = & 2 \\, x^{2} y + 2 \\, y^{3} - z \\\\ \\omega\\wedge \\mathrm{d}f_{ \\, x \\, z }^{ \\phantom{\\, x}\\phantom{\\, z} } & = & 3 \\, {\\left(x^{2} + y^{2}\\right)} z^{2} - x + z \\\\ \\omega\\wedge \\mathrm{d}f_{ \\, y \\, z }^{ \\phantom{\\, y}\\phantom{\\, z} } & = & 3 \\, z^{3} - 2 \\, x y + 2 \\, y z \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{lcl} \\omega\\wedge \\mathrm{d}f_{ \\, x \\, y }^{ \\phantom{\\, x}\\phantom{\\, y} } & = & 2 \\, x^{2} y + 2 \\, y^{3} - z \\\\ \\omega\\wedge \\mathrm{d}f_{ \\, x \\, z }^{ \\phantom{\\, x}\\phantom{\\, z} } & = & 3 \\, {\\left(x^{2} + y^{2}\\right)} z^{2} - x + z \\\\ \\omega\\wedge \\mathrm{d}f_{ \\, y \\, z }^{ \\phantom{\\, y}\\phantom{\\, z} } & = & 3 \\, z^{3} - 2 \\, x y + 2 \\, y z \\end{array}$"
      ],
      "text/plain": [
       "omega∧df_xy = 2*x^2*y + 2*y^3 - z \n",
       "omega∧df_xz = 3*(x^2 + y^2)*z^2 - x + z \n",
       "omega∧df_yz = 3*z^3 - 2*x*y + 2*y*z "
      ]
     },
     "execution_count": 188,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "a.display_comp(only_nonredundant=True)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "2-形式 $\\omega\\wedge\\mathrm{d}f$ を コフレーム $(\\mathrm{d}r,\\mathrm{d}\\theta,\\mathrm{d}\\phi)$ での成分に展開することもできます。\n",
    "<div hidden>\n",
    "<p>The 2-form $\\omega\\wedge\\mathrm{d}f$ can be expanded on the $(\\mathrm{d}r,\\mathrm{d}\\theta,\\mathrm{d}\\phi)$ coframe:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 189,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\omega\\wedge \\mathrm{d}f = \\left( 3 \\, r^{5} \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{4} - {\\left(3 \\, r^{5} \\cos\\left({\\phi}\\right) - 3 \\, r^{4} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) - 2 \\, r^{3} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)^{2}\\right)} \\sin\\left({\\theta}\\right)^{2} - {\\left(3 \\, r^{4} \\sin\\left({\\phi}\\right) + r^{2} \\cos\\left({\\phi}\\right)\\right)} \\cos\\left({\\theta}\\right) - {\\left(2 \\, r^{3} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)^{2} - r^{2} \\cos\\left({\\phi}\\right)^{2}\\right)} \\sin\\left({\\theta}\\right) \\right) \\mathrm{d} r\\wedge \\mathrm{d} {\\theta} + \\left( 2 \\, r^{4} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{5} + {\\left(3 \\, r^{5} \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) + 2 \\, r^{3} \\cos\\left({\\phi}\\right)^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{3} - {\\left(2 \\, r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + {\\left(\\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right) + 1\\right)} r^{2} \\cos\\left({\\theta}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} - {\\left(3 \\, r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{4} - r^{2} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right) \\right) \\mathrm{d} r\\wedge \\mathrm{d} {\\phi} + \\left( -r^{3} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\theta}\\right) - {\\left(3 \\, r^{6} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + 2 \\, r^{4} \\cos\\left({\\phi}\\right)^{2} \\sin\\left({\\phi}\\right) - 2 \\, r^{5} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{4} + {\\left(2 \\, r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) + r^{3} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{3} + {\\left(3 \\, r^{5} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{3} - r^{3} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} \\right) \\mathrm{d} {\\theta}\\wedge \\mathrm{d} {\\phi}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\omega\\wedge \\mathrm{d}f = \\left( 3 \\, r^{5} \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{4} - {\\left(3 \\, r^{5} \\cos\\left({\\phi}\\right) - 3 \\, r^{4} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) - 2 \\, r^{3} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)^{2}\\right)} \\sin\\left({\\theta}\\right)^{2} - {\\left(3 \\, r^{4} \\sin\\left({\\phi}\\right) + r^{2} \\cos\\left({\\phi}\\right)\\right)} \\cos\\left({\\theta}\\right) - {\\left(2 \\, r^{3} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)^{2} - r^{2} \\cos\\left({\\phi}\\right)^{2}\\right)} \\sin\\left({\\theta}\\right) \\right) \\mathrm{d} r\\wedge \\mathrm{d} {\\theta} + \\left( 2 \\, r^{4} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{5} + {\\left(3 \\, r^{5} \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) + 2 \\, r^{3} \\cos\\left({\\phi}\\right)^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{3} - {\\left(2 \\, r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + {\\left(\\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right) + 1\\right)} r^{2} \\cos\\left({\\theta}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} - {\\left(3 \\, r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{4} - r^{2} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right) \\right) \\mathrm{d} r\\wedge \\mathrm{d} {\\phi} + \\left( -r^{3} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\theta}\\right) - {\\left(3 \\, r^{6} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + 2 \\, r^{4} \\cos\\left({\\phi}\\right)^{2} \\sin\\left({\\phi}\\right) - 2 \\, r^{5} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{4} + {\\left(2 \\, r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) + r^{3} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{3} + {\\left(3 \\, r^{5} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{3} - r^{3} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} \\right) \\mathrm{d} {\\theta}\\wedge \\mathrm{d} {\\phi}$"
      ],
      "text/plain": [
       "omega∧df = (3*r^5*cos(ph)*sin(th)^4 - (3*r^5*cos(ph) - 3*r^4*cos(th)*sin(ph) - 2*r^3*cos(ph)*sin(ph)^2)*sin(th)^2 - (3*r^4*sin(ph) + r^2*cos(ph))*cos(th) - (2*r^3*cos(th)*sin(ph)^2 - r^2*cos(ph)^2)*sin(th)) dr∧dth + (2*r^4*sin(ph)*sin(th)^5 + (3*r^5*cos(th)^3*sin(ph) + 2*r^3*cos(ph)^2*cos(th)*sin(ph))*sin(th)^3 - (2*r^3*cos(ph)*cos(th)^2*sin(ph) + (cos(ph)*sin(ph) + 1)*r^2*cos(th))*sin(th)^2 - (3*r^4*cos(ph)*cos(th)^4 - r^2*cos(th)^2*sin(ph))*sin(th)) dr∧dph + (-r^3*cos(th)^2*sin(th) - (3*r^6*cos(th)^2*sin(ph) + 2*r^4*cos(ph)^2*sin(ph) - 2*r^5*cos(th)*sin(ph))*sin(th)^4 + (2*r^4*cos(ph)*cos(th)*sin(ph) + r^3*cos(ph)*sin(ph))*sin(th)^3 + (3*r^5*cos(ph)*cos(th)^3 - r^3*cos(th)*sin(ph))*sin(th)^2) dth∧dph"
      ]
     },
     "execution_count": 189,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "a.display(Y.frame(), Y)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$A:=\\omega\\wedge\\mathrm{d}f$　は2-形式として 二組のベクトルに作用させることができ、また歪対称です。\n",
    "<div hidden>\n",
    "<p>As a 2-form, $A:=\\omega\\wedge\\mathrm{d}f$ can be applied to a pair of vectors and is antisymmetric:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 190,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field A(u,v) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} A\\left(u,v\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & 3 \\, x y z^{4} u_{y}\\left(x, y, z\\right) - 2 \\, x^{2} y^{2} u_{y}\\left(x, y, z\\right) - 2 \\, y^{4} u_{y}\\left(x, y, z\\right) - 2 \\, {\\left(x u_{x}\\left(x, y, z\\right) + u_{y}\\left(x, y, z\\right)\\right)} y^{3} + 3 \\, {\\left(x^{3} y u_{x}\\left(x, y, z\\right) + x y^{3} u_{x}\\left(x, y, z\\right) + x u_{z}\\left(x, y, z\\right)\\right)} z^{3} - {\\left(3 \\, y^{3} u_{z}\\left(x, y, z\\right) - {\\left(2 \\, x u_{y}\\left(x, y, z\\right) - 3 \\, u_{z}\\left(x, y, z\\right)\\right)} y^{2} + 3 \\, x^{2} u_{z}\\left(x, y, z\\right) + {\\left(3 \\, x^{2} u_{z}\\left(x, y, z\\right) - x u_{x}\\left(x, y, z\\right)\\right)} y\\right)} z^{2} - {\\left(2 \\, x^{3} u_{x}\\left(x, y, z\\right) + 2 \\, x^{2} u_{y}\\left(x, y, z\\right) + {\\left(2 \\, x^{2} - x\\right)} u_{z}\\left(x, y, z\\right)\\right)} y - {\\left(2 \\, x^{2} y^{2} u_{y}\\left(x, y, z\\right) + {\\left(x^{2} u_{x}\\left(x, y, z\\right) - {\\left(2 \\, x - 1\\right)} u_{z}\\left(x, y, z\\right) - u_{y}\\left(x, y, z\\right)\\right)} y - x u_{x}\\left(x, y, z\\right) - u_{y}\\left(x, y, z\\right) + u_{z}\\left(x, y, z\\right)\\right)} z + x u_{z}\\left(x, y, z\\right) \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & {\\left(r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} + {\\left(\\sin\\left({\\phi}\\right)^{3} - \\sin\\left({\\phi}\\right)\\right)} r^{4} \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right)^{3} + r^{2} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) + {\\left(3 \\, r^{7} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) - 2 \\, r^{4} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{4}\\right)} u_{x}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) + {\\left(3 \\, r^{6} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{4} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} + r^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) + 2 \\, {\\left({\\left(\\sin\\left({\\phi}\\right)^{4} - \\sin\\left({\\phi}\\right)^{2}\\right)} r^{5} \\cos\\left({\\theta}\\right) - r^{4} \\sin\\left({\\phi}\\right)^{2}\\right)} \\sin\\left({\\theta}\\right)^{4} + 2 \\, {\\left(r^{5} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right)^{2} - r^{3} \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{3} + r \\cos\\left({\\theta}\\right)\\right)} u_{y}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) - {\\left({\\left(3 \\, r^{5} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) - 2 \\, {\\left(\\sin\\left({\\phi}\\right)^{3} - \\sin\\left({\\phi}\\right)\\right)} r^{3}\\right)} \\sin\\left({\\theta}\\right)^{3} + {\\left(3 \\, r^{4} \\cos\\left({\\theta}\\right)^{2} - 2 \\, r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) - r^{2} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\theta}\\right) - {\\left(3 \\, r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{3} - r^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) + r \\cos\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)\\right)} u_{z}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} A\\left(u,v\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & 3 \\, x y z^{4} u_{y}\\left(x, y, z\\right) - 2 \\, x^{2} y^{2} u_{y}\\left(x, y, z\\right) - 2 \\, y^{4} u_{y}\\left(x, y, z\\right) - 2 \\, {\\left(x u_{x}\\left(x, y, z\\right) + u_{y}\\left(x, y, z\\right)\\right)} y^{3} + 3 \\, {\\left(x^{3} y u_{x}\\left(x, y, z\\right) + x y^{3} u_{x}\\left(x, y, z\\right) + x u_{z}\\left(x, y, z\\right)\\right)} z^{3} - {\\left(3 \\, y^{3} u_{z}\\left(x, y, z\\right) - {\\left(2 \\, x u_{y}\\left(x, y, z\\right) - 3 \\, u_{z}\\left(x, y, z\\right)\\right)} y^{2} + 3 \\, x^{2} u_{z}\\left(x, y, z\\right) + {\\left(3 \\, x^{2} u_{z}\\left(x, y, z\\right) - x u_{x}\\left(x, y, z\\right)\\right)} y\\right)} z^{2} - {\\left(2 \\, x^{3} u_{x}\\left(x, y, z\\right) + 2 \\, x^{2} u_{y}\\left(x, y, z\\right) + {\\left(2 \\, x^{2} - x\\right)} u_{z}\\left(x, y, z\\right)\\right)} y - {\\left(2 \\, x^{2} y^{2} u_{y}\\left(x, y, z\\right) + {\\left(x^{2} u_{x}\\left(x, y, z\\right) - {\\left(2 \\, x - 1\\right)} u_{z}\\left(x, y, z\\right) - u_{y}\\left(x, y, z\\right)\\right)} y - x u_{x}\\left(x, y, z\\right) - u_{y}\\left(x, y, z\\right) + u_{z}\\left(x, y, z\\right)\\right)} z + x u_{z}\\left(x, y, z\\right) \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & {\\left(r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} + {\\left(\\sin\\left({\\phi}\\right)^{3} - \\sin\\left({\\phi}\\right)\\right)} r^{4} \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right)^{3} + r^{2} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) + {\\left(3 \\, r^{7} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) - 2 \\, r^{4} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{4}\\right)} u_{x}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) + {\\left(3 \\, r^{6} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{4} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} + r^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) + 2 \\, {\\left({\\left(\\sin\\left({\\phi}\\right)^{4} - \\sin\\left({\\phi}\\right)^{2}\\right)} r^{5} \\cos\\left({\\theta}\\right) - r^{4} \\sin\\left({\\phi}\\right)^{2}\\right)} \\sin\\left({\\theta}\\right)^{4} + 2 \\, {\\left(r^{5} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right)^{2} - r^{3} \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{3} + r \\cos\\left({\\theta}\\right)\\right)} u_{y}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) - {\\left({\\left(3 \\, r^{5} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) - 2 \\, {\\left(\\sin\\left({\\phi}\\right)^{3} - \\sin\\left({\\phi}\\right)\\right)} r^{3}\\right)} \\sin\\left({\\theta}\\right)^{3} + {\\left(3 \\, r^{4} \\cos\\left({\\theta}\\right)^{2} - 2 \\, r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) - r^{2} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\theta}\\right) - {\\left(3 \\, r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{3} - r^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) + r \\cos\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)\\right)} u_{z}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}$"
      ],
      "text/plain": [
       "A(u,v): U → ℝ\n",
       "   (x, y, z) ↦ 3*x*y*z^4*u_y(x, y, z) - 2*x^2*y^2*u_y(x, y, z) - 2*y^4*u_y(x, y, z) - 2*(x*u_x(x, y, z) + u_y(x, y, z))*y^3 + 3*(x^3*y*u_x(x, y, z) + x*y^3*u_x(x, y, z) + x*u_z(x, y, z))*z^3 - (3*y^3*u_z(x, y, z) - (2*x*u_y(x, y, z) - 3*u_z(x, y, z))*y^2 + 3*x^2*u_z(x, y, z) + (3*x^2*u_z(x, y, z) - x*u_x(x, y, z))*y)*z^2 - (2*x^3*u_x(x, y, z) + 2*x^2*u_y(x, y, z) + (2*x^2 - x)*u_z(x, y, z))*y - (2*x^2*y^2*u_y(x, y, z) + (x^2*u_x(x, y, z) - (2*x - 1)*u_z(x, y, z) - u_y(x, y, z))*y - x*u_x(x, y, z) - u_y(x, y, z) + u_z(x, y, z))*z + x*u_z(x, y, z)\n",
       "   (r, th, ph) ↦ (r^4*cos(ph)*cos(th)^2*sin(ph)*sin(th)^2 + (sin(ph)^3 - sin(ph))*r^4*cos(th)*sin(th)^3 + r^2*cos(ph)*cos(th)*sin(th) + (3*r^7*cos(ph)*cos(th)^3*sin(ph) - 2*r^4*cos(ph)*sin(ph))*sin(th)^4)*u_x(r*cos(ph)*sin(th), r*sin(ph)*sin(th), r*cos(th)) + (3*r^6*cos(ph)*cos(th)^4*sin(ph)*sin(th)^2 + r^2*cos(th)*sin(ph)*sin(th) + 2*((sin(ph)^4 - sin(ph)^2)*r^5*cos(th) - r^4*sin(ph)^2)*sin(th)^4 + 2*(r^5*cos(ph)*cos(th)^2*sin(ph)^2 - r^3*sin(ph))*sin(th)^3 + r*cos(th))*u_y(r*cos(ph)*sin(th), r*sin(ph)*sin(th), r*cos(th)) - ((3*r^5*cos(th)^2*sin(ph) - 2*(sin(ph)^3 - sin(ph))*r^3)*sin(th)^3 + (3*r^4*cos(th)^2 - 2*r^3*cos(ph)*cos(th)*sin(ph) - r^2*cos(ph)*sin(ph))*sin(th)^2 + r*cos(th) - (3*r^4*cos(ph)*cos(th)^3 - r^2*cos(th)*sin(ph) + r*cos(ph))*sin(th))*u_z(r*cos(ph)*sin(th), r*sin(ph)*sin(th), r*cos(th))"
      ]
     },
     "execution_count": 190,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "a.set_name('A')\n",
    "print(a(u,v)) ; a(u,v).display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 191,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 191,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "a(u,v) == - a(v,u)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 192,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "no symmetry; antisymmetry: (0, 1)\n"
     ]
    }
   ],
   "source": [
    "a.symmetries()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "ある微分形式の **外微分** は以下のように、`exterior_derivative()`メソッドを使って求めます。\n",
    "<div hidden>\n",
    "<p>The <strong>exterior derivative</strong>  of a differential form:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 193,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2-form domega on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{d}\\omega = -2 \\, y \\mathrm{d} x\\wedge \\mathrm{d} y +\\mathrm{d} x\\wedge \\mathrm{d} z -\\mathrm{d} y\\wedge \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{d}\\omega = -2 \\, y \\mathrm{d} x\\wedge \\mathrm{d} y +\\mathrm{d} x\\wedge \\mathrm{d} z -\\mathrm{d} y\\wedge \\mathrm{d} z$"
      ],
      "text/plain": [
       "domega = -2*y dx∧dy + dx∧dz - dy∧dz"
      ]
     },
     "execution_count": 193,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "dom = om.exterior_derivative() ; print(dom) ; dom.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "`exterior_derivative()`メソッドを作用させる代わりに、関数 `diff()` を使うこともできます(SageMath 9.2以降で利用可能）。\n",
    "<div hidden>\n",
    "Instead of invoking the method `exterior_derivative()`, one can use the function `diff()` (available in SageMath 9.2 or higher):</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 194,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{d}\\omega\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{d}\\omega$"
      ],
      "text/plain": [
       "2-form domega on the Open subset U of the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 194,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "dom = diff(om)\n",
    "dom"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 195,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "3-form dA on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{d}A = \\left( -6 \\, y z^{2} - 2 \\, y - 1 \\right) \\mathrm{d} x\\wedge \\mathrm{d} y\\wedge \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{d}A = \\left( -6 \\, y z^{2} - 2 \\, y - 1 \\right) \\mathrm{d} x\\wedge \\mathrm{d} y\\wedge \\mathrm{d} z$"
      ],
      "text/plain": [
       "dA = (-6*y*z^2 - 2*y - 1) dx∧dy∧dz"
      ]
     },
     "execution_count": 195,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "da = diff(a) ; print(da) ; da.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "**外微分** を続けて作用させると、結果は0になります。\n",
    "<div hidden>\n",
    "<p>The exterior derivative is nilpotent:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 196,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{d}\\mathrm{d}f = 0\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{d}\\mathrm{d}f = 0$"
      ],
      "text/plain": [
       "ddf = 0"
      ]
     },
     "execution_count": 196,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "ddf = diff(df) ; ddf.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 197,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{d}\\mathrm{d}\\omega = 0\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{d}\\mathrm{d}\\omega = 0$"
      ],
      "text/plain": [
       "ddomega = 0"
      ]
     },
     "execution_count": 197,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "ddom = diff(dom) ; ddom.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Lie 微分: Lie derivative\n",
    "テンソル場のあるベクトル場に関するLie微分は、`lie_derivative()` メソッドを用いて計算します。\n",
    "<div hidden>\n",
    "<p>The Lie derivative of any tensor field with respect to a vector field is computed by the method <span style=\"font-family: courier new,courier;\">lie_derivative()</span>, with the vector field as the argument:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 198,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1-form on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left( -y z^{2} + {\\left(x y - 1\\right)} z + 2 \\, x \\right) \\mathrm{d} x + \\left( -x z^{2} + x^{2} + y^{2} + {\\left(x^{2} + x y\\right)} z \\right) \\mathrm{d} y + \\left( -2 \\, x y z + {\\left(x^{2} + 1\\right)} y + 1 \\right) \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left( -y z^{2} + {\\left(x y - 1\\right)} z + 2 \\, x \\right) \\mathrm{d} x + \\left( -x z^{2} + x^{2} + y^{2} + {\\left(x^{2} + x y\\right)} z \\right) \\mathrm{d} y + \\left( -2 \\, x y z + {\\left(x^{2} + 1\\right)} y + 1 \\right) \\mathrm{d} z$"
      ],
      "text/plain": [
       "(-y*z^2 + (x*y - 1)*z + 2*x) dx + (-x*z^2 + x^2 + y^2 + (x^2 + x*y)*z) dy + (-2*x*y*z + (x^2 + 1)*y + 1) dz"
      ]
     },
     "execution_count": 198,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "lv_om = om.lie_derivative(v) ; print(lv_om) ; \n",
    "lv_om.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 199,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1-form on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left( u_{x}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial x ^ 2} + u_{y}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial x\\partial y} + u_{z}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial x\\partial z} + \\frac{\\partial\\,H}{\\partial x} \\frac{\\partial\\,u_{x}}{\\partial x} + \\frac{\\partial\\,H}{\\partial y} \\frac{\\partial\\,u_{y}}{\\partial x} + \\frac{\\partial\\,H}{\\partial z} \\frac{\\partial\\,u_{z}}{\\partial x} \\right) \\mathrm{d} x + \\left( u_{x}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial x\\partial y} + u_{y}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial y ^ 2} + u_{z}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial y\\partial z} + \\frac{\\partial\\,H}{\\partial x} \\frac{\\partial\\,u_{x}}{\\partial y} + \\frac{\\partial\\,H}{\\partial y} \\frac{\\partial\\,u_{y}}{\\partial y} + \\frac{\\partial\\,H}{\\partial z} \\frac{\\partial\\,u_{z}}{\\partial y} \\right) \\mathrm{d} y + \\left( u_{x}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial x\\partial z} + u_{y}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial y\\partial z} + u_{z}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial z ^ 2} + \\frac{\\partial\\,H}{\\partial x} \\frac{\\partial\\,u_{x}}{\\partial z} + \\frac{\\partial\\,H}{\\partial y} \\frac{\\partial\\,u_{y}}{\\partial z} + \\frac{\\partial\\,H}{\\partial z} \\frac{\\partial\\,u_{z}}{\\partial z} \\right) \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left( u_{x}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial x ^ 2} + u_{y}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial x\\partial y} + u_{z}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial x\\partial z} + \\frac{\\partial\\,H}{\\partial x} \\frac{\\partial\\,u_{x}}{\\partial x} + \\frac{\\partial\\,H}{\\partial y} \\frac{\\partial\\,u_{y}}{\\partial x} + \\frac{\\partial\\,H}{\\partial z} \\frac{\\partial\\,u_{z}}{\\partial x} \\right) \\mathrm{d} x + \\left( u_{x}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial x\\partial y} + u_{y}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial y ^ 2} + u_{z}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial y\\partial z} + \\frac{\\partial\\,H}{\\partial x} \\frac{\\partial\\,u_{x}}{\\partial y} + \\frac{\\partial\\,H}{\\partial y} \\frac{\\partial\\,u_{y}}{\\partial y} + \\frac{\\partial\\,H}{\\partial z} \\frac{\\partial\\,u_{z}}{\\partial y} \\right) \\mathrm{d} y + \\left( u_{x}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial x\\partial z} + u_{y}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial y\\partial z} + u_{z}\\left(x, y, z\\right) \\frac{\\partial^2\\,H}{\\partial z ^ 2} + \\frac{\\partial\\,H}{\\partial x} \\frac{\\partial\\,u_{x}}{\\partial z} + \\frac{\\partial\\,H}{\\partial y} \\frac{\\partial\\,u_{y}}{\\partial z} + \\frac{\\partial\\,H}{\\partial z} \\frac{\\partial\\,u_{z}}{\\partial z} \\right) \\mathrm{d} z$"
      ],
      "text/plain": [
       "(u_x(x, y, z)*d^2(H)/dx^2 + u_y(x, y, z)*d^2(H)/dxdy + u_z(x, y, z)*d^2(H)/dxdz + d(H)/dx*d(u_x)/dx + d(H)/dy*d(u_y)/dx + d(H)/dz*d(u_z)/dx) dx + (u_x(x, y, z)*d^2(H)/dxdy + u_y(x, y, z)*d^2(H)/dy^2 + u_z(x, y, z)*d^2(H)/dydz + d(H)/dx*d(u_x)/dy + d(H)/dy*d(u_y)/dy + d(H)/dz*d(u_z)/dy) dy + (u_x(x, y, z)*d^2(H)/dxdz + u_y(x, y, z)*d^2(H)/dydz + u_z(x, y, z)*d^2(H)/dz^2 + d(H)/dx*d(u_x)/dz + d(H)/dy*d(u_y)/dz + d(H)/dz*d(u_z)/dz) dz"
      ]
     },
     "execution_count": 199,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "lu_dh = dh.lie_derivative(u) ; print(lu_dh) ; \n",
    "lu_dh.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "*Cartanの恒等式*を確かめてみましょう\n",
    "\n",
    "1-形式$\\omega$についての*Cartanの恒等式*\n",
    "$$\\mathcal{L}_v \\omega = v\\cdot \\mathrm{d}\\omega + \\mathrm{d}\\langle \\omega, v\\rangle$$\n",
    "2-形式$\\omega$についての*Cartanの恒等式*\n",
    "$$\\mathcal{L}_v A = v\\cdot \\mathrm{d}A + \\mathrm{d}(v\\cdot A)$$\n",
    "<div hidden>\n",
    "<p>Let us check <strong>Cartan identity</strong> on the 1-form $\\omega$:</p>\n",
    "<p>$\\mathcal{L}_v \\omega = v\\cdot \\mathrm{d}\\omega + \\mathrm{d}\\langle \\omega, v\\rangle$</p>\n",
    "<p>and on the 2-form $A$:</p>\n",
    "<p>$\\mathcal{L}_v A = v\\cdot \\mathrm{d}A + \\mathrm{d}(v\\cdot A)$</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 200,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 200,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "om.lie_derivative(v) == v.contract(diff(om)) + diff(om(v))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 201,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 201,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "a.lie_derivative(v) == v.contract(diff(a)) + diff(v.contract(a))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "ベクトル場の別のベクトル場によるLie微分は、二つのベクトル場による **交換子積**(あるいは **交換子**) になります。\n",
    "<div hidden>\n",
    "<p>The Lie derivative of a vector field along another one is the <strong>commutator</strong> of the two vectors fields:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 202,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 202,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.lie_derivative(u)(f) == u(v(f)) - v(u(f))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## 任意の階数のテンソル場:Tensor fields of arbitrary rank\n",
    "これまでに、次のようなテンソル場をみてきました。\n",
    "\n",
    " - (0,0)形式のテンソル ：スカラー場,\n",
    " -  (1,0) 形式のテンソル :ベクトル場,\n",
    " -  (0,1)形式のテンソル ：1ー形式あるいは一階の微分形式,\n",
    " -  (0,2)形式で歪対称のテンソル ：2ー形式あるいは二階の微分形式.\n",
    "\n",
    "より一般に、$(p,q)$型のテンソル場をSageManifoldsに導入することができます。\n",
    "例えば、副多様体$U$上の(1,2)型のテンソル場を次のように宣言します。\n",
    "<div hidden>\n",
    "Up to now, we have encountered tensor fields\n",
    "\n",
    "- of type (0,0) (i.e. scalar fields),\n",
    "- of type (1,0) (i.e. vector fields),\n",
    "- of type (0,1) (i.e. 1-forms),\n",
    "- of type (0,2) and antisymmetric (i.e. 2-forms).\n",
    "\n",
    "More generally, tensor fields of any type $(p,q)$ can be introduced in SageMath. For instance a tensor field of type (1,2) on the open subset $U$ is declared as follows: </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 203,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tensor field T of type (1,2) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "t = U.tensor_field(1, 2, name='T') ; print(t)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "ベクトルや1-形式と同じように、テンソル場の既定のフレームに関する要素を `[]`演算子を使って設定できます。\n",
    "<div hidden>\n",
    "<p>As for vectors or 1-forms, the tensor's components with respect to the domain's default frame are set by means of square brackets:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 204,
   "metadata": {},
   "outputs": [],
   "source": [
    "t[1,2,1] = 1 + x^2\n",
    "t[3,2,1] = x*y*z"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "設定されていない要素は0です。\n",
    "<div hidden>\n",
    "<p>Unset components are zero:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 205,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle T = \\left( x^{2} + 1 \\right) \\frac{\\partial}{\\partial x }\\otimes \\mathrm{d} y\\otimes \\mathrm{d} x + x y z \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} y\\otimes \\mathrm{d} x\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle T = \\left( x^{2} + 1 \\right) \\frac{\\partial}{\\partial x }\\otimes \\mathrm{d} y\\otimes \\mathrm{d} x + x y z \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} y\\otimes \\mathrm{d} x$"
      ],
      "text/plain": [
       "T = (x^2 + 1) ∂/∂x⊗dy⊗dx + x*y*z ∂/∂z⊗dy⊗dx"
      ]
     },
     "execution_count": 205,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "t.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 206,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[\\left[\\left[0, 0, 0\\right], \\left[x^{2} + 1, 0, 0\\right], \\left[0, 0, 0\\right]\\right], \\left[\\left[0, 0, 0\\right], \\left[0, 0, 0\\right], \\left[0, 0, 0\\right]\\right], \\left[\\left[0, 0, 0\\right], \\left[x y z, 0, 0\\right], \\left[0, 0, 0\\right]\\right]\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[\\left[\\left[0, 0, 0\\right], \\left[x^{2} + 1, 0, 0\\right], \\left[0, 0, 0\\right]\\right], \\left[\\left[0, 0, 0\\right], \\left[0, 0, 0\\right], \\left[0, 0, 0\\right]\\right], \\left[\\left[0, 0, 0\\right], \\left[x y z, 0, 0\\right], \\left[0, 0, 0\\right]\\right]\\right]$"
      ],
      "text/plain": [
       "[[[0, 0, 0], [x^2 + 1, 0, 0], [0, 0, 0]],\n",
       " [[0, 0, 0], [0, 0, 0], [0, 0, 0]],\n",
       " [[0, 0, 0], [x*y*z, 0, 0], [0, 0, 0]]]"
      ]
     },
     "execution_count": 206,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "t[:]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "0 でない要素を表示します。\n",
    "<div hidden>\n",
    "<p>Display of the nonzero components:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 207,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{lcl} T_{ \\phantom{\\, x} \\, y \\, x }^{ \\, x \\phantom{\\, y} \\phantom{\\, x} } & = & x^{2} + 1 \\\\ T_{ \\phantom{\\, z} \\, y \\, x }^{ \\, z \\phantom{\\, y} \\phantom{\\, x} } & = & x y z \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{lcl} T_{ \\phantom{\\, x} \\, y \\, x }^{ \\, x \\phantom{\\, y} \\phantom{\\, x} } & = & x^{2} + 1 \\\\ T_{ \\phantom{\\, z} \\, y \\, x }^{ \\, z \\phantom{\\, y} \\phantom{\\, x} } & = & x y z \\end{array}$"
      ],
      "text/plain": [
       "T^x_yx = x^2 + 1 \n",
       "T^z_yx = x*y*z "
      ]
     },
     "execution_count": 207,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "t.display_comp()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "二重括弧`[[]]`演算子は既定のフレームに関する成分をスカラー場として返します。一方、一重の括弧`[]`演算子はこのスカラー場の既定の座標系についての表現を返します。\n",
    "<div hidden>\n",
    "<p>Double square brackets return the component (still w.r.t. the default frame) as a scalar field, while single square brackets return the expression of this scalar field in terms of the domain's default coordinates:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 208,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} & U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & x^{2} + 1 \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{2} \\cos\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + 1 \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} & U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & x^{2} + 1 \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{2} \\cos\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + 1 \\end{array}$"
      ],
      "text/plain": [
       "U → ℝ\n",
       "(x, y, z) ↦ x^2 + 1\n",
       "(r, th, ph) ↦ r^2*cos(ph)^2*sin(th)^2 + 1"
      ]
     },
     "execution_count": 208,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "print(t[[1,2,1]]) ; \n",
    "t[[1,2,1]].display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 209,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "x^2 + 1\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle x^{2} + 1\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle x^{2} + 1$"
      ],
      "text/plain": [
       "x^2 + 1"
      ]
     },
     "execution_count": 209,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "print(t[1,2,1])\n",
    "t[1,2,1]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "(1,2)型のテンソル場は　(1-形式、ベクトル場、ベクトル場）からなる3成分のタプルをスカラー場に写像します。\n",
    "<div hidden>\n",
    "<p>A tensor field of type (1,2) maps a 3-tuple (1-form, vector field, vector field) to a scalar field:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 210,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field T(omega,u,v) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} T\\left(\\omega,u,v\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & {\\left(x^{2} + 1\\right)} y^{3} u_{y}\\left(x, y, z\\right) + {\\left(x^{2} + 1\\right)} y^{2} u_{y}\\left(x, y, z\\right) - {\\left(x y^{2} u_{y}\\left(x, y, z\\right) + x y u_{y}\\left(x, y, z\\right)\\right)} z^{2} + {\\left(x^{4} + x^{2}\\right)} y u_{y}\\left(x, y, z\\right) + {\\left(x^{2} y^{2} u_{y}\\left(x, y, z\\right) + x^{2} y u_{y}\\left(x, y, z\\right)\\right)} z + {\\left(x^{4} + x^{2}\\right)} u_{y}\\left(x, y, z\\right) \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & {\\left(r^{5} \\cos\\left({\\phi}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{5} - {\\left({\\left(\\cos\\left({\\phi}\\right)^{4} - \\cos\\left({\\phi}\\right)^{2}\\right)} r^{5} \\cos\\left({\\theta}\\right) - r^{4} \\cos\\left({\\phi}\\right)^{2}\\right)} \\sin\\left({\\theta}\\right)^{4} + {\\left({\\left(\\cos\\left({\\phi}\\right)^{3} - \\cos\\left({\\phi}\\right)\\right)} r^{5} \\cos\\left({\\theta}\\right)^{2} + r^{4} \\cos\\left({\\phi}\\right)^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) + r^{3} \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{3} - {\\left(r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) - r^{2}\\right)} \\sin\\left({\\theta}\\right)^{2}\\right)} u_{y}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} T\\left(\\omega,u,v\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & {\\left(x^{2} + 1\\right)} y^{3} u_{y}\\left(x, y, z\\right) + {\\left(x^{2} + 1\\right)} y^{2} u_{y}\\left(x, y, z\\right) - {\\left(x y^{2} u_{y}\\left(x, y, z\\right) + x y u_{y}\\left(x, y, z\\right)\\right)} z^{2} + {\\left(x^{4} + x^{2}\\right)} y u_{y}\\left(x, y, z\\right) + {\\left(x^{2} y^{2} u_{y}\\left(x, y, z\\right) + x^{2} y u_{y}\\left(x, y, z\\right)\\right)} z + {\\left(x^{4} + x^{2}\\right)} u_{y}\\left(x, y, z\\right) \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & {\\left(r^{5} \\cos\\left({\\phi}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{5} - {\\left({\\left(\\cos\\left({\\phi}\\right)^{4} - \\cos\\left({\\phi}\\right)^{2}\\right)} r^{5} \\cos\\left({\\theta}\\right) - r^{4} \\cos\\left({\\phi}\\right)^{2}\\right)} \\sin\\left({\\theta}\\right)^{4} + {\\left({\\left(\\cos\\left({\\phi}\\right)^{3} - \\cos\\left({\\phi}\\right)\\right)} r^{5} \\cos\\left({\\theta}\\right)^{2} + r^{4} \\cos\\left({\\phi}\\right)^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) + r^{3} \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{3} - {\\left(r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) - r^{2}\\right)} \\sin\\left({\\theta}\\right)^{2}\\right)} u_{y}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}$"
      ],
      "text/plain": [
       "T(omega,u,v): U → ℝ\n",
       "   (x, y, z) ↦ (x^2 + 1)*y^3*u_y(x, y, z) + (x^2 + 1)*y^2*u_y(x, y, z) - (x*y^2*u_y(x, y, z) + x*y*u_y(x, y, z))*z^2 + (x^4 + x^2)*y*u_y(x, y, z) + (x^2*y^2*u_y(x, y, z) + x^2*y*u_y(x, y, z))*z + (x^4 + x^2)*u_y(x, y, z)\n",
       "   (r, th, ph) ↦ (r^5*cos(ph)^2*sin(ph)*sin(th)^5 - ((cos(ph)^4 - cos(ph)^2)*r^5*cos(th) - r^4*cos(ph)^2)*sin(th)^4 + ((cos(ph)^3 - cos(ph))*r^5*cos(th)^2 + r^4*cos(ph)^2*cos(th)*sin(ph) + r^3*sin(ph))*sin(th)^3 - (r^4*cos(ph)*cos(th)^2*sin(ph) - r^2)*sin(th)^2)*u_y(r*cos(ph)*sin(th), r*sin(ph)*sin(th), r*cos(th))"
      ]
     },
     "execution_count": 210,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "print(t(om, u, v))\n",
    "t(om, u, v).display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "ベクトル場や微分形式と同じように、多様体に定義されたどのフレームついてのテンソル場の成分も取り出せます。\n",
    "<div hidden>\n",
    "<p>As for vectors and differential forms, the tensor components can be taken in any frame defined on the manifold:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 211,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle r^{2} \\cos\\left({\\phi}\\right)^{4} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{5} + {\\left(\\cos\\left({\\phi}\\right)^{4} - \\cos\\left({\\phi}\\right)^{2}\\right)} r^{3} \\sin\\left({\\theta}\\right)^{6} - {\\left(\\cos\\left({\\phi}\\right)^{4} - \\cos\\left({\\phi}\\right)^{2}\\right)} r^{3} \\sin\\left({\\theta}\\right)^{4} + \\cos\\left({\\phi}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle r^{2} \\cos\\left({\\phi}\\right)^{4} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{5} + {\\left(\\cos\\left({\\phi}\\right)^{4} - \\cos\\left({\\phi}\\right)^{2}\\right)} r^{3} \\sin\\left({\\theta}\\right)^{6} - {\\left(\\cos\\left({\\phi}\\right)^{4} - \\cos\\left({\\phi}\\right)^{2}\\right)} r^{3} \\sin\\left({\\theta}\\right)^{4} + \\cos\\left({\\phi}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3}$"
      ],
      "text/plain": [
       "r^2*cos(ph)^4*sin(ph)*sin(th)^5 + (cos(ph)^4 - cos(ph)^2)*r^3*sin(th)^6 - (cos(ph)^4 - cos(ph)^2)*r^3*sin(th)^4 + cos(ph)^2*sin(ph)*sin(th)^3"
      ]
     },
     "execution_count": 211,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "t[Y.frame(), 1,1,1, Y]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## テンソル計算：Tensor calculus\n",
    "テンソル積$\\otimes$ は `*`で示されます。\n",
    "<div hidden>\n",
    "<p>The<strong> tensor product</strong> $\\otimes$ is denoted by `*`:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 212,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "(1, 0)\n",
      "(0, 2)\n"
     ]
    }
   ],
   "source": [
    "print(v.tensor_type())\n",
    "print(a.tensor_type())"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 213,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tensor field v⊗A of type (1,2) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle v\\otimes A\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle v\\otimes A$"
      ],
      "text/plain": [
       "Tensor field v⊗A of type (1,2) on the Open subset U of the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 213,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "b = v*a \n",
    "print(b)\n",
    "b"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "テンソル積は、（歪)対称性を保ちます。$A$は2-形式なので、二つの引数(位置0および1）について歪対称です。結果として$b$は最後の二つの引数(位置1および2）について歪対称となります。\n",
    "<div hidden>\n",
    "<p>The tensor product preserves the (anti)symmetries: since $A$ is a 2-form, it is antisymmetric with respect to its two arguments (positions 0 and 1); as a result, b is antisymmetric with respect to its last two arguments (positions 1 and 2):</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 214,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "no symmetry; antisymmetry: (0, 1)\n"
     ]
    }
   ],
   "source": [
    "a.symmetries()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 215,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "no symmetry; antisymmetry: (1, 2)\n"
     ]
    }
   ],
   "source": [
    "b.symmetries()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "標準的な **テンソル 計算** は実装済みです。\n",
    "<div hidden>\n",
    "<p>Standard<strong> tensor arithmetics</strong> is implemented:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 216,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tensor field of type (1,2) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "s = - t + 2*f* b\n",
    "print(s)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "**テンソルの縮約**は `trace()`メソッドおよび `contract()` メソッドで取り扱われます。例として、テンソル　$T$ の最初の二つの引数(位置 0 および　1) について縮約してみましょう。つまり、$c_i = T^k_{\\ \\, k i}$で与えられるテンソル $c$を構築してみましょう。\n",
    "<div hidden>\n",
    "**Tensor contractions** are dealt with by the methods`trace()` and `contract()`: for instance, let us contract the tensor $T$ w.r.t. its first two arguments (positions 0 and 1), i.e. let us form the tensor $c$ of components $c_i = T^k_{\\ \\, k i}$: </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 217,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1-form on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "c = t.trace(0,1)\n",
    "print(c)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "`trace(0,1)`と入力する代わりに、**指標表記** を使って縮約を指定できます。指標は文字列として`[]`演算子の中に記述されます。\n",
    "文字列中で、\"^\" は反変指標の前、\"_\" は共変指標の前、に置かれます。\n",
    "<div hidden>\n",
    "An alternative to the writing `trace(0,1)` is to use the **index notation** to denote the contraction: the indices are given in a string inside the `[]` operator, with `'^'` in front of the contravariant indices and `'_'` in front of the covariant ones: </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 218,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1-form on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 218,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "c1 = t['^k_ki']\n",
    "print(c1)\n",
    "c1 == c"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "縮約は繰り返された指標(ここでは $k$ です)について実行されます。それ以外の文字(ここでは $i$ )は任意です。\n",
    "<div hidden>\n",
    "The contraction is performed on the repeated index (here `k`); the letter denoting the remaining index (here `i`) is arbitrary: </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 219,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 219,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "t['^k_kj'] == c"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 220,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 220,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "t['^b_ba'] == c"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "縮約されない指標については \".\"（ドット）で置き換え可能です。\n",
    "<div hidden>\n",
    "<p>It can even be replaced by a dot:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 221,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 221,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "t['^k_k.'] == c"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "この文字列中ではLaTeX式の指定も可能です。\n",
    "<div hidden>\n",
    "<p>LaTeX notations are allowed:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 222,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 222,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "t['^{k}_{ki}'] == c"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "SageMath 9.2以降では、ギリシャ文字を使うことも可能です。\n",
    "<div hidden>\n",
    "as well as Greek letters (only for SageMath 9.2 or higher): </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 223,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 223,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "t['^μ_μα'] == c"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "テンソル場 $T$ とベクトル場 $v$ の縮約 $T^i_{\\ j k}  v^k$ は次のようにして、実行されます。ここで、2は$T$の最後の指標の場所、0は$v$の唯一の指標の場所です。\n",
    "<div hidden>\n",
    "<p>The contraction $T^i_{\\ j k} v^k$ of the tensor fields $T$ and $v$ is taken as follows (2 refers to the last index position of $T$ and 0 to the only index position of v):</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 224,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tensor field of type (1,1) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "tv = t.contract(2, v, 0)\n",
    "print(tv)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "2はTの最後の指標の場所、0は$v$の唯一の指標の場所ですので、上記の表記の簡略版は次のようになります。\n",
    "<div hidden>\n",
    "<p>Since 2 corresponds to the last index position of $T$ and 0 to the first index position of $v$, a shortcut for the above is</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 225,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tensor field of type (1,1) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "tv1 = t.contract(v)\n",
    "print(tv1)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 226,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 226,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "tv1 == tv"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "`contract()` メソッドに替わって、**指標表記** と　直積演算子 `*` を組み合わせることで、縮約を表現できます。\n",
    "<div hidden>\n",
    "<p>Instead of <span style=\"font-family: courier new,courier;\">contract()</span>, the <strong>index notation</strong>, combined with the <strong>*</strong> operator, can be used to denote the contraction:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 227,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 227,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "t['^i_jk']*v['^k'] == tv"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "繰り替えされない指標については、`.`で置き換えることができます。\n",
    "<div hidden>\n",
    "<p>The non-repeated indices can be replaced by dots:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 228,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 228,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "t['^._.k']*v['^k'] == tv"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## 計量構造: Metric structures\n",
    "多様体$\\mathcal{M}$の**Riemann 計量** はつぎのように宣言されます。\n",
    "<div hidden>\n",
    "<p>A <strong>Riemannian metric</strong> on the manifold $\\mathcal{M}$ is declared as follows:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 229,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Riemannian metric g on the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "g = M.riemannian_metric('g')\n",
    "print(g)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "計量 $g$ は対称な (0,2) 型のテンソル場です。\n",
    "<div hidden>\n",
    "<p>It is a symmetric tensor field of type (0,2):</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 230,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathcal{T}^{(0, 2)}\\left(\\mathcal{M}\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathcal{T}^{(0, 2)}\\left(\\mathcal{M}\\right)$"
      ],
      "text/plain": [
       "Free module T^(0,2)(M) of type-(0,2) tensors fields on the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 230,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g.parent()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 231,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Free module T^(0,2)(M) of type-(0,2) tensors fields on the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "print(g.parent())"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 232,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "symmetry: (0, 1); no antisymmetry\n"
     ]
    }
   ],
   "source": [
    "g.symmetries()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "計量は、あるベクトルフレームに関する要素で初期化されます。例えば、\n",
    "$\\mathcal{M}$の既定のフレームを使って、\n",
    "<div hidden>\n",
    "<p>The metric is initialized by its components with respect to some vector frame. For instance, using the default frame of $\\mathcal{M}$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 233,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle g = \\mathrm{d} x\\otimes \\mathrm{d} x+\\mathrm{d} y\\otimes \\mathrm{d} y+\\mathrm{d} z\\otimes \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle g = \\mathrm{d} x\\otimes \\mathrm{d} x+\\mathrm{d} y\\otimes \\mathrm{d} y+\\mathrm{d} z\\otimes \\mathrm{d} z$"
      ],
      "text/plain": [
       "g = dx⊗dx + dy⊗dy + dz⊗dz"
      ]
     },
     "execution_count": 233,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g[1,1], g[2,2], g[3,3] = 1, 1, 1\n",
    "g.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "別のベクトルフレームに関する成分を表示します。\n",
    "<div hidden>\n",
    "<p>The components w.r.t. another vector frame are obtained as for any tensor field:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 234,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle g = \\mathrm{d} r\\otimes \\mathrm{d} r + r^{2} \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta} + r^{2} \\sin\\left({\\theta}\\right)^{2} \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle g = \\mathrm{d} r\\otimes \\mathrm{d} r + r^{2} \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta} + r^{2} \\sin\\left({\\theta}\\right)^{2} \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}$"
      ],
      "text/plain": [
       "g = dr⊗dr + r^2 dth⊗dth + r^2*sin(th)^2 dph⊗dph"
      ]
     },
     "execution_count": 234,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g.display(Y.frame(), Y)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 235,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle u = u_{x}\\left(x, y, z\\right) \\frac{\\partial}{\\partial x } + u_{y}\\left(x, y, z\\right) \\frac{\\partial}{\\partial y } + u_{z}\\left(x, y, z\\right) \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle u = u_{x}\\left(x, y, z\\right) \\frac{\\partial}{\\partial x } + u_{y}\\left(x, y, z\\right) \\frac{\\partial}{\\partial y } + u_{z}\\left(x, y, z\\right) \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "u = u_x(x, y, z) ∂/∂x + u_y(x, y, z) ∂/∂y + u_z(x, y, z) ∂/∂z"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "show(u.display())"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "もちろん計量は二つのベクトルに作用します。\n",
    "<div hidden>\n",
    "<p>Of course, the metric acts on vector pairs:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 236,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle u = u_{x}\\left(x, y, z\\right) \\frac{\\partial}{\\partial x } + u_{y}\\left(x, y, z\\right) \\frac{\\partial}{\\partial y } + u_{z}\\left(x, y, z\\right) \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle u = u_{x}\\left(x, y, z\\right) \\frac{\\partial}{\\partial x } + u_{y}\\left(x, y, z\\right) \\frac{\\partial}{\\partial y } + u_{z}\\left(x, y, z\\right) \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "u = u_x(x, y, z) ∂/∂x + u_y(x, y, z) ∂/∂y + u_z(x, y, z) ∂/∂z"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle v = \\left( y + 1 \\right) \\frac{\\partial}{\\partial x } -x \\frac{\\partial}{\\partial y } + x y z \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle v = \\left( y + 1 \\right) \\frac{\\partial}{\\partial x } -x \\frac{\\partial}{\\partial y } + x y z \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "v = (y + 1) ∂/∂x - x ∂/∂y + x*y*z ∂/∂z"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field g(u,v) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} g\\left(u,v\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & x y z u_{z}\\left(x, y, z\\right) + y u_{x}\\left(x, y, z\\right) - x u_{y}\\left(x, y, z\\right) + u_{x}\\left(x, y, z\\right) \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} u_{z}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) - r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) u_{y}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) + {\\left(r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) + 1\\right)} u_{x}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} g\\left(u,v\\right):& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & x y z u_{z}\\left(x, y, z\\right) + y u_{x}\\left(x, y, z\\right) - x u_{y}\\left(x, y, z\\right) + u_{x}\\left(x, y, z\\right) \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} u_{z}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) - r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) u_{y}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) + {\\left(r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) + 1\\right)} u_{x}\\left(r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right), r \\cos\\left({\\theta}\\right)\\right) \\end{array}$"
      ],
      "text/plain": [
       "g(u,v): U → ℝ\n",
       "   (x, y, z) ↦ x*y*z*u_z(x, y, z) + y*u_x(x, y, z) - x*u_y(x, y, z) + u_x(x, y, z)\n",
       "   (r, th, ph) ↦ r^3*cos(ph)*cos(th)*sin(ph)*sin(th)^2*u_z(r*cos(ph)*sin(th), r*sin(ph)*sin(th), r*cos(th)) - r*cos(ph)*sin(th)*u_y(r*cos(ph)*sin(th), r*sin(ph)*sin(th), r*cos(th)) + (r*sin(ph)*sin(th) + 1)*u_x(r*cos(ph)*sin(th), r*sin(ph)*sin(th), r*cos(th))"
      ]
     },
     "execution_count": 236,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "show(u.display());show(v.display());\n",
    "print(g(u,v)) ; \n",
    "g(u,v).display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "計量 $g$ に付随する **Levi-Civita 接続**は、`.connection()` メソッドを使って求められます。：\n",
    "<div hidden>\n",
    "<p>The <strong>Levi-Civita connection</strong> associated to the metric $g$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 237,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Levi-Civita connection nabla_g associated with the Riemannian metric g on the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\nabla_{g}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\nabla_{g}$"
      ],
      "text/plain": [
       "Levi-Civita connection nabla_g associated with the Riemannian metric g on the 3-dimensional differentiable manifold M"
      ]
     },
     "execution_count": 237,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "nabla = g.connection() \n",
    "print(nabla)\n",
    "nabla"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "多様体の既定の座標をつかってChristoffel記号を書き出します。\n",
    "既定の座標系では、すべての成分が $0$ になっています。\n",
    "<div hidden>\n",
    "<p>The Christoffel symbols with respect to the manifold's default coordinates:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 238,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[\\left[\\left[0, 0, 0\\right], \\left[0, 0, 0\\right], \\left[0, 0, 0\\right]\\right], \\left[\\left[0, 0, 0\\right], \\left[0, 0, 0\\right], \\left[0, 0, 0\\right]\\right], \\left[\\left[0, 0, 0\\right], \\left[0, 0, 0\\right], \\left[0, 0, 0\\right]\\right]\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[\\left[\\left[0, 0, 0\\right], \\left[0, 0, 0\\right], \\left[0, 0, 0\\right]\\right], \\left[\\left[0, 0, 0\\right], \\left[0, 0, 0\\right], \\left[0, 0, 0\\right]\\right], \\left[\\left[0, 0, 0\\right], \\left[0, 0, 0\\right], \\left[0, 0, 0\\right]\\right]\\right]$"
      ],
      "text/plain": [
       "[[[0, 0, 0], [0, 0, 0], [0, 0, 0]],\n",
       " [[0, 0, 0], [0, 0, 0], [0, 0, 0]],\n",
       " [[0, 0, 0], [0, 0, 0], [0, 0, 0]]]"
      ]
     },
     "execution_count": 238,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "nabla.coef()[:]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "次に、球面座標$(r,\\theta,\\phi)$を使って、Christoffel記号を書き出します。\n",
    "空間の各店で、接ベクトルの向きが変わっていくことから、接続係数にも非零の成分が現れます。\n",
    "<div hidden>\n",
    "<p>The Christoffel symbols with respect to the coordinates $(r,\\theta,\\phi)$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 239,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left[\\left[\\left[0, 0, 0\\right], \\left[0, -r, 0\\right], \\left[0, 0, -r \\sin\\left({\\theta}\\right)^{2}\\right]\\right], \\left[\\left[0, \\frac{1}{r}, 0\\right], \\left[\\frac{1}{r}, 0, 0\\right], \\left[0, 0, -\\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right)\\right]\\right], \\left[\\left[0, 0, \\frac{1}{r}\\right], \\left[0, 0, \\frac{\\cos\\left({\\theta}\\right)}{\\sin\\left({\\theta}\\right)}\\right], \\left[\\frac{1}{r}, \\frac{\\cos\\left({\\theta}\\right)}{\\sin\\left({\\theta}\\right)}, 0\\right]\\right]\\right]\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left[\\left[\\left[0, 0, 0\\right], \\left[0, -r, 0\\right], \\left[0, 0, -r \\sin\\left({\\theta}\\right)^{2}\\right]\\right], \\left[\\left[0, \\frac{1}{r}, 0\\right], \\left[\\frac{1}{r}, 0, 0\\right], \\left[0, 0, -\\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right)\\right]\\right], \\left[\\left[0, 0, \\frac{1}{r}\\right], \\left[0, 0, \\frac{\\cos\\left({\\theta}\\right)}{\\sin\\left({\\theta}\\right)}\\right], \\left[\\frac{1}{r}, \\frac{\\cos\\left({\\theta}\\right)}{\\sin\\left({\\theta}\\right)}, 0\\right]\\right]\\right]$"
      ],
      "text/plain": [
       "[[[0, 0, 0], [0, -r, 0], [0, 0, -r*sin(th)^2]],\n",
       " [[0, 1/r, 0], [1/r, 0, 0], [0, 0, -cos(th)*sin(th)]],\n",
       " [[0, 0, 1/r], [0, 0, cos(th)/sin(th)], [1/r, cos(th)/sin(th), 0]]]"
      ]
     },
     "execution_count": 239,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "nabla.coef(Y.frame())[:, Y]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "`display()` を使って、見易く表示させて見ます。既定の設定では非零の接続係数のみが表示されます。\n",
    "<div hidden>\n",
    "A nice view is obtained via the method `display()` (by default, only the nonzero connection coefficients are shown): </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 240,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{lcl} \\Gamma_{ \\phantom{\\, r} \\, {\\theta} \\, {\\theta} }^{ \\, r \\phantom{\\, {\\theta}} \\phantom{\\, {\\theta}} } & = & -r \\\\ \\Gamma_{ \\phantom{\\, r} \\, {\\phi} \\, {\\phi} }^{ \\, r \\phantom{\\, {\\phi}} \\phantom{\\, {\\phi}} } & = & -r \\sin\\left({\\theta}\\right)^{2} \\\\ \\Gamma_{ \\phantom{\\, {\\theta}} \\, r \\, {\\theta} }^{ \\, {\\theta} \\phantom{\\, r} \\phantom{\\, {\\theta}} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\theta}} \\, {\\theta} \\, r }^{ \\, {\\theta} \\phantom{\\, {\\theta}} \\phantom{\\, r} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\theta}} \\, {\\phi} \\, {\\phi} }^{ \\, {\\theta} \\phantom{\\, {\\phi}} \\phantom{\\, {\\phi}} } & = & -\\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, r \\, {\\phi} }^{ \\, {\\phi} \\phantom{\\, r} \\phantom{\\, {\\phi}} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, {\\theta} \\, {\\phi} }^{ \\, {\\phi} \\phantom{\\, {\\theta}} \\phantom{\\, {\\phi}} } & = & \\frac{\\cos\\left({\\theta}\\right)}{\\sin\\left({\\theta}\\right)} \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, {\\phi} \\, r }^{ \\, {\\phi} \\phantom{\\, {\\phi}} \\phantom{\\, r} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, {\\phi} \\, {\\theta} }^{ \\, {\\phi} \\phantom{\\, {\\phi}} \\phantom{\\, {\\theta}} } & = & \\frac{\\cos\\left({\\theta}\\right)}{\\sin\\left({\\theta}\\right)} \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{lcl} \\Gamma_{ \\phantom{\\, r} \\, {\\theta} \\, {\\theta} }^{ \\, r \\phantom{\\, {\\theta}} \\phantom{\\, {\\theta}} } & = & -r \\\\ \\Gamma_{ \\phantom{\\, r} \\, {\\phi} \\, {\\phi} }^{ \\, r \\phantom{\\, {\\phi}} \\phantom{\\, {\\phi}} } & = & -r \\sin\\left({\\theta}\\right)^{2} \\\\ \\Gamma_{ \\phantom{\\, {\\theta}} \\, r \\, {\\theta} }^{ \\, {\\theta} \\phantom{\\, r} \\phantom{\\, {\\theta}} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\theta}} \\, {\\theta} \\, r }^{ \\, {\\theta} \\phantom{\\, {\\theta}} \\phantom{\\, r} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\theta}} \\, {\\phi} \\, {\\phi} }^{ \\, {\\theta} \\phantom{\\, {\\phi}} \\phantom{\\, {\\phi}} } & = & -\\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, r \\, {\\phi} }^{ \\, {\\phi} \\phantom{\\, r} \\phantom{\\, {\\phi}} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, {\\theta} \\, {\\phi} }^{ \\, {\\phi} \\phantom{\\, {\\theta}} \\phantom{\\, {\\phi}} } & = & \\frac{\\cos\\left({\\theta}\\right)}{\\sin\\left({\\theta}\\right)} \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, {\\phi} \\, r }^{ \\, {\\phi} \\phantom{\\, {\\phi}} \\phantom{\\, r} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, {\\phi} \\, {\\theta} }^{ \\, {\\phi} \\phantom{\\, {\\phi}} \\phantom{\\, {\\theta}} } & = & \\frac{\\cos\\left({\\theta}\\right)}{\\sin\\left({\\theta}\\right)} \\end{array}$"
      ],
      "text/plain": [
       "Gam^r_th,th = -r \n",
       "Gam^r_ph,ph = -r*sin(th)^2 \n",
       "Gam^th_r,th = 1/r \n",
       "Gam^th_th,r = 1/r \n",
       "Gam^th_ph,ph = -cos(th)*sin(th) \n",
       "Gam^ph_r,ph = 1/r \n",
       "Gam^ph_th,ph = cos(th)/sin(th) \n",
       "Gam^ph_ph,r = 1/r \n",
       "Gam^ph_ph,th = cos(th)/sin(th) "
      ]
     },
     "execution_count": 240,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "nabla.display(frame=Y.frame(), chart=Y)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "計量の`christoffel_symbols_display()`メソッドを使うこともできます。この関数は（既定の設定では）独立なChristoffel記号だけを表示します。\n",
    "<div hidden>\n",
    "One may also use the method `christoffel_symbols_display()` of the metric, which (by default) displays only the non-redundant Christoffel symbols: </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 241,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{lcl} \\Gamma_{ \\phantom{\\, r} \\, {\\theta} \\, {\\theta} }^{ \\, r \\phantom{\\, {\\theta}} \\phantom{\\, {\\theta}} } & = & -r \\\\ \\Gamma_{ \\phantom{\\, r} \\, {\\phi} \\, {\\phi} }^{ \\, r \\phantom{\\, {\\phi}} \\phantom{\\, {\\phi}} } & = & -r \\sin\\left({\\theta}\\right)^{2} \\\\ \\Gamma_{ \\phantom{\\, {\\theta}} \\, r \\, {\\theta} }^{ \\, {\\theta} \\phantom{\\, r} \\phantom{\\, {\\theta}} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\theta}} \\, {\\phi} \\, {\\phi} }^{ \\, {\\theta} \\phantom{\\, {\\phi}} \\phantom{\\, {\\phi}} } & = & -\\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, r \\, {\\phi} }^{ \\, {\\phi} \\phantom{\\, r} \\phantom{\\, {\\phi}} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, {\\theta} \\, {\\phi} }^{ \\, {\\phi} \\phantom{\\, {\\theta}} \\phantom{\\, {\\phi}} } & = & \\frac{\\cos\\left({\\theta}\\right)}{\\sin\\left({\\theta}\\right)} \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{lcl} \\Gamma_{ \\phantom{\\, r} \\, {\\theta} \\, {\\theta} }^{ \\, r \\phantom{\\, {\\theta}} \\phantom{\\, {\\theta}} } & = & -r \\\\ \\Gamma_{ \\phantom{\\, r} \\, {\\phi} \\, {\\phi} }^{ \\, r \\phantom{\\, {\\phi}} \\phantom{\\, {\\phi}} } & = & -r \\sin\\left({\\theta}\\right)^{2} \\\\ \\Gamma_{ \\phantom{\\, {\\theta}} \\, r \\, {\\theta} }^{ \\, {\\theta} \\phantom{\\, r} \\phantom{\\, {\\theta}} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\theta}} \\, {\\phi} \\, {\\phi} }^{ \\, {\\theta} \\phantom{\\, {\\phi}} \\phantom{\\, {\\phi}} } & = & -\\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, r \\, {\\phi} }^{ \\, {\\phi} \\phantom{\\, r} \\phantom{\\, {\\phi}} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, {\\theta} \\, {\\phi} }^{ \\, {\\phi} \\phantom{\\, {\\theta}} \\phantom{\\, {\\phi}} } & = & \\frac{\\cos\\left({\\theta}\\right)}{\\sin\\left({\\theta}\\right)} \\end{array}$"
      ],
      "text/plain": [
       "Gam^r_th,th = -r \n",
       "Gam^r_ph,ph = -r*sin(th)^2 \n",
       "Gam^th_r,th = 1/r \n",
       "Gam^th_ph,ph = -cos(th)*sin(th) \n",
       "Gam^ph_r,ph = 1/r \n",
       "Gam^ph_th,ph = cos(th)/sin(th) "
      ]
     },
     "execution_count": 241,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g.christoffel_symbols_display(Y)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### 接続の共変微分としての作用。\n",
    "<div hidden>\n",
    "<p>The connection acting as a covariant derivative:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 242,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tensor field nabla_g(v) of type (1,1) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\nabla_{g} v = \\frac{\\partial}{\\partial x }\\otimes \\mathrm{d} y-\\frac{\\partial}{\\partial y }\\otimes \\mathrm{d} x + y z \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} x + x z \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} y + x y \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\nabla_{g} v = \\frac{\\partial}{\\partial x }\\otimes \\mathrm{d} y-\\frac{\\partial}{\\partial y }\\otimes \\mathrm{d} x + y z \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} x + x z \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} y + x y \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} z$"
      ],
      "text/plain": [
       "nabla_g(v) = ∂/∂x⊗dy - ∂/∂y⊗dx + y*z ∂/∂z⊗dx + x*z ∂/∂z⊗dy + x*y ∂/∂z⊗dz"
      ]
     },
     "execution_count": 242,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "nab_v = nabla(v)\n",
    "print(nab_v) ; nab_v.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 243,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle v = \\left( r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} + \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\right) \\frac{\\partial}{\\partial r } + \\left( -\\frac{r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3} - \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)}{r} \\right) \\frac{\\partial}{\\partial {\\theta} } + \\left( -\\frac{r \\sin\\left({\\theta}\\right) + \\sin\\left({\\phi}\\right)}{r \\sin\\left({\\theta}\\right)} \\right) \\frac{\\partial}{\\partial {\\phi} }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle v = \\left( r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} + \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\right) \\frac{\\partial}{\\partial r } + \\left( -\\frac{r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3} - \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)}{r} \\right) \\frac{\\partial}{\\partial {\\theta} } + \\left( -\\frac{r \\sin\\left({\\theta}\\right) + \\sin\\left({\\phi}\\right)}{r \\sin\\left({\\theta}\\right)} \\right) \\frac{\\partial}{\\partial {\\phi} }$"
      ],
      "text/plain": [
       "v = (r^3*cos(ph)*cos(th)^2*sin(ph)*sin(th)^2 + cos(ph)*sin(th)) ∂/∂r - (r^3*cos(ph)*cos(th)*sin(ph)*sin(th)^3 - cos(ph)*cos(th))/r ∂/∂th - (r*sin(th) + sin(ph))/(r*sin(th)) ∂/∂ph"
      ]
     },
     "execution_count": 243,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.display(Y)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 244,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle v = \\left( y + 1 \\right) \\frac{\\partial}{\\partial x } -x \\frac{\\partial}{\\partial y } + x y z \\frac{\\partial}{\\partial z }\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle v = \\left( y + 1 \\right) \\frac{\\partial}{\\partial x } -x \\frac{\\partial}{\\partial y } + x y z \\frac{\\partial}{\\partial z }$"
      ],
      "text/plain": [
       "v = (y + 1) ∂/∂x - x ∂/∂y + x*y*z ∂/∂z"
      ]
     },
     "execution_count": 244,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "v.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 245,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\nabla_{g} v = 3 \\, r^{2} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} r + {\\left(3 \\, r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) - r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right) \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\theta} + {\\left({\\left(2 \\, \\cos\\left({\\phi}\\right)^{2} - 1\\right)} r^{3} \\cos\\left({\\theta}\\right)^{2} + r\\right)} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\phi} -3 \\, r \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3} \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} r + \\left( 3 \\, r^{2} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{4} \\sin\\left({\\phi}\\right) - 4 \\, r^{2} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + r^{2} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right) \\right) \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} {\\theta} + \\left( {\\left(2 \\, \\sin\\left({\\phi}\\right)^{2} - 1\\right)} r^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right)^{3} + \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) \\right) \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} {\\phi} -\\frac{1}{r} \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} r -\\frac{\\cos\\left({\\theta}\\right)}{\\sin\\left({\\theta}\\right)} \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} {\\theta}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\nabla_{g} v = 3 \\, r^{2} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} r + {\\left(3 \\, r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) - r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right) \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\theta} + {\\left({\\left(2 \\, \\cos\\left({\\phi}\\right)^{2} - 1\\right)} r^{3} \\cos\\left({\\theta}\\right)^{2} + r\\right)} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\phi} -3 \\, r \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{3} \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} r + \\left( 3 \\, r^{2} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{4} \\sin\\left({\\phi}\\right) - 4 \\, r^{2} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + r^{2} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right) \\right) \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} {\\theta} + \\left( {\\left(2 \\, \\sin\\left({\\phi}\\right)^{2} - 1\\right)} r^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right)^{3} + \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) \\right) \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} {\\phi} -\\frac{1}{r} \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} r -\\frac{\\cos\\left({\\theta}\\right)}{\\sin\\left({\\theta}\\right)} \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} {\\theta}$"
      ],
      "text/plain": [
       "nabla_g(v) = 3*r^2*cos(ph)*cos(th)^2*sin(ph)*sin(th)^2 ∂/∂r⊗dr + (3*r^3*cos(ph)*cos(th)^3*sin(ph) - r^3*cos(ph)*cos(th)*sin(ph))*sin(th) ∂/∂r⊗dth + ((2*cos(ph)^2 - 1)*r^3*cos(th)^2 + r)*sin(th)^2 ∂/∂r⊗dph - 3*r*cos(ph)*cos(th)*sin(ph)*sin(th)^3 ∂/∂th⊗dr + (3*r^2*cos(ph)*cos(th)^4*sin(ph) - 4*r^2*cos(ph)*cos(th)^2*sin(ph) + r^2*cos(ph)*sin(ph)) ∂/∂th⊗dth + ((2*sin(ph)^2 - 1)*r^2*cos(th)*sin(th)^3 + cos(th)*sin(th)) ∂/∂th⊗dph - 1/r ∂/∂ph⊗dr - cos(th)/sin(th) ∂/∂ph⊗dth"
      ]
     },
     "execution_count": 245,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "nab_v.display(Y)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 246,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\nabla_{g} v = \\frac{\\partial}{\\partial x }\\otimes \\mathrm{d} y-\\frac{\\partial}{\\partial y }\\otimes \\mathrm{d} x + y z \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} x + x z \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} y + x y \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\nabla_{g} v = \\frac{\\partial}{\\partial x }\\otimes \\mathrm{d} y-\\frac{\\partial}{\\partial y }\\otimes \\mathrm{d} x + y z \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} x + x z \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} y + x y \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} z$"
      ],
      "text/plain": [
       "nabla_g(v) = ∂/∂x⊗dy - ∂/∂y⊗dx + y*z ∂/∂z⊗dx + x*z ∂/∂z⊗dy + x*y ∂/∂z⊗dz"
      ]
     },
     "execution_count": 246,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "nab_v.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Levi-Civita　接続係数であることから、 $\\nabla_g$ には捩れ(torsion) はありません。\n",
    "<div hidden>\n",
    "<p>Being a Levi-Civita connection, $\\nabla_g$ is torsion.free:</p>\n",
    "Levi-Civita接続は定義から、対称な接続係数なので、捩れはない。\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 247,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tensor field of type (1,2) on the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle 0\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle 0$"
      ],
      "text/plain": [
       "0"
      ]
     },
     "execution_count": 247,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "print(nabla.torsion()) ; nabla.torsion().display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "この例ではさらに、多様体は平坦(フラット, 曲率が0）です。\n",
    "<div hidden>\n",
    "<p>In the present case, it is also flat:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 248,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tensor field Riem(g) of type (1,3) on the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{Riem}\\left(g\\right) = 0\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{Riem}\\left(g\\right) = 0$"
      ],
      "text/plain": [
       "Riem(g) = 0"
      ]
     },
     "execution_count": 248,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "print(nabla.riemann()) ; nabla.riemann().display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### 曲率のある空間\n",
    "$g_{rr}$ を $1/(1+r^2)$と変更することで、曲率のある空間を考えましょう。\n",
    "<div hidden>\n",
    "<p>Let us consider a non-flat metric, by changing $g_{rr}$ to $1/(1+r^2)$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 249,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle g = \\left( \\frac{1}{r^{2} + 1} \\right) \\mathrm{d} r\\otimes \\mathrm{d} r + r^{2} \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta} + r^{2} \\sin\\left({\\theta}\\right)^{2} \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle g = \\left( \\frac{1}{r^{2} + 1} \\right) \\mathrm{d} r\\otimes \\mathrm{d} r + r^{2} \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta} + r^{2} \\sin\\left({\\theta}\\right)^{2} \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}$"
      ],
      "text/plain": [
       "g = 1/(r^2 + 1) dr⊗dr + r^2 dth⊗dth + r^2*sin(th)^2 dph⊗dph"
      ]
     },
     "execution_count": 249,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g[Y.frame(), 1,1, Y] = 1/(1+r^2)\n",
    "g.display(Y.frame(), Y)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "簡単の為に、部分多様体$U$の既定の座標系をY=$(U,(r,\\theta,\\phi))$に変更します。\n",
    "<div hidden>\n",
    "<p>For convenience, we change the default chart on the domain $U$ to Y=$(U,(r,\\theta,\\phi))$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 250,
   "metadata": {},
   "outputs": [],
   "source": [
    "U.set_default_chart(Y)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "これによって、 $(r,\\theta,\\phi)$を使った座標表現を求める際に座標系 $Y$ を指定する必要がありません。\n",
    "<div hidden>\n",
    "<p>In this way, we do not have to specify Y when asking for coordinate expressions in terms of $(r,\\theta,\\phi)$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 251,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle g = \\left( \\frac{1}{r^{2} + 1} \\right) \\mathrm{d} r\\otimes \\mathrm{d} r + r^{2} \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta} + r^{2} \\sin\\left({\\theta}\\right)^{2} \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle g = \\left( \\frac{1}{r^{2} + 1} \\right) \\mathrm{d} r\\otimes \\mathrm{d} r + r^{2} \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta} + r^{2} \\sin\\left({\\theta}\\right)^{2} \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}$"
      ],
      "text/plain": [
       "g = 1/(r^2 + 1) dr⊗dr + r^2 dth⊗dth + r^2*sin(th)^2 dph⊗dph"
      ]
     },
     "execution_count": 251,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g.display(Y.frame())"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "この計量は双曲空間 $\\mathbb{H}^3$ の計量だと気がつきます。座標系 $(U,(x,y,z))$についての表現は、次のようになります。\n",
    "<div hidden>\n",
    "<p>We recognize the metric of the hyperbolic space $\\mathbb{H}^3$. Its expression in terms of the chart $(U,(x,y,z))$ is</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 252,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle g = \\left( \\frac{y^{2} + z^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} x\\otimes \\mathrm{d} x + \\left( -\\frac{x y}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} x\\otimes \\mathrm{d} y + \\left( -\\frac{x z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} x\\otimes \\mathrm{d} z + \\left( -\\frac{x y}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} y\\otimes \\mathrm{d} x + \\left( \\frac{x^{2} + z^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} y\\otimes \\mathrm{d} y + \\left( -\\frac{y z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} y\\otimes \\mathrm{d} z + \\left( -\\frac{x z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} z\\otimes \\mathrm{d} x + \\left( -\\frac{y z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} z\\otimes \\mathrm{d} y + \\left( \\frac{x^{2} + y^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} z\\otimes \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle g = \\left( \\frac{y^{2} + z^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} x\\otimes \\mathrm{d} x + \\left( -\\frac{x y}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} x\\otimes \\mathrm{d} y + \\left( -\\frac{x z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} x\\otimes \\mathrm{d} z + \\left( -\\frac{x y}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} y\\otimes \\mathrm{d} x + \\left( \\frac{x^{2} + z^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} y\\otimes \\mathrm{d} y + \\left( -\\frac{y z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} y\\otimes \\mathrm{d} z + \\left( -\\frac{x z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} z\\otimes \\mathrm{d} x + \\left( -\\frac{y z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} z\\otimes \\mathrm{d} y + \\left( \\frac{x^{2} + y^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} z\\otimes \\mathrm{d} z$"
      ],
      "text/plain": [
       "g = (y^2 + z^2 + 1)/(x^2 + y^2 + z^2 + 1) dx⊗dx - x*y/(x^2 + y^2 + z^2 + 1) dx⊗dy - x*z/(x^2 + y^2 + z^2 + 1) dx⊗dz - x*y/(x^2 + y^2 + z^2 + 1) dy⊗dx + (x^2 + z^2 + 1)/(x^2 + y^2 + z^2 + 1) dy⊗dy - y*z/(x^2 + y^2 + z^2 + 1) dy⊗dz - x*z/(x^2 + y^2 + z^2 + 1) dz⊗dx - y*z/(x^2 + y^2 + z^2 + 1) dz⊗dy + (x^2 + y^2 + 1)/(x^2 + y^2 + z^2 + 1) dz⊗dz"
      ]
     },
     "execution_count": 252,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g.display(X_U.frame(), X_U)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "要素の行列表示の方がより適切かもしれません。\n",
    "<div hidden>\n",
    "<p>A matrix view of the components may be more appropriate:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 253,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\left(\\begin{array}{rrr}\n",
       "\\frac{y^{2} + z^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} & -\\frac{x y}{x^{2} + y^{2} + z^{2} + 1} & -\\frac{x z}{x^{2} + y^{2} + z^{2} + 1} \\\\\n",
       "-\\frac{x y}{x^{2} + y^{2} + z^{2} + 1} & \\frac{x^{2} + z^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} & -\\frac{y z}{x^{2} + y^{2} + z^{2} + 1} \\\\\n",
       "-\\frac{x z}{x^{2} + y^{2} + z^{2} + 1} & -\\frac{y z}{x^{2} + y^{2} + z^{2} + 1} & \\frac{x^{2} + y^{2} + 1}{x^{2} + y^{2} + z^{2} + 1}\n",
       "\\end{array}\\right)\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\left(\\begin{array}{rrr}\n",
       "\\frac{y^{2} + z^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} & -\\frac{x y}{x^{2} + y^{2} + z^{2} + 1} & -\\frac{x z}{x^{2} + y^{2} + z^{2} + 1} \\\\\n",
       "-\\frac{x y}{x^{2} + y^{2} + z^{2} + 1} & \\frac{x^{2} + z^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} & -\\frac{y z}{x^{2} + y^{2} + z^{2} + 1} \\\\\n",
       "-\\frac{x z}{x^{2} + y^{2} + z^{2} + 1} & -\\frac{y z}{x^{2} + y^{2} + z^{2} + 1} & \\frac{x^{2} + y^{2} + 1}{x^{2} + y^{2} + z^{2} + 1}\n",
       "\\end{array}\\right)$"
      ],
      "text/plain": [
       "[(y^2 + z^2 + 1)/(x^2 + y^2 + z^2 + 1)            -x*y/(x^2 + y^2 + z^2 + 1)            -x*z/(x^2 + y^2 + z^2 + 1)]\n",
       "[           -x*y/(x^2 + y^2 + z^2 + 1) (x^2 + z^2 + 1)/(x^2 + y^2 + z^2 + 1)            -y*z/(x^2 + y^2 + z^2 + 1)]\n",
       "[           -x*z/(x^2 + y^2 + z^2 + 1)            -y*z/(x^2 + y^2 + z^2 + 1) (x^2 + y^2 + 1)/(x^2 + y^2 + z^2 + 1)]"
      ]
     },
     "execution_count": 253,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g[X_U.frame(), :, X_U]"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "もともとは　$U$でのみ定義されていたこれらの成分を、全体の多様体$\\mathcal{M}$までに拡張します。拡張は、座標系 X=$(\\mathcal{M},(x,y,z))$ に付随するフレームでの座標表現が同じであることを要求して実行されます。\n",
    "<div hidden>\n",
    "<p>We extend these components, a priori defined only on $U$, to the whole manifold $\\mathcal{M}$, by demanding the same coordinate expressions in the frame associated to the chart X=$(\\mathcal{M},(x,y,z))$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 254,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle g = \\left( \\frac{y^{2} + z^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} x\\otimes \\mathrm{d} x + \\left( -\\frac{x y}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} x\\otimes \\mathrm{d} y + \\left( -\\frac{x z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} x\\otimes \\mathrm{d} z + \\left( -\\frac{x y}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} y\\otimes \\mathrm{d} x + \\left( \\frac{x^{2} + z^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} y\\otimes \\mathrm{d} y + \\left( -\\frac{y z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} y\\otimes \\mathrm{d} z + \\left( -\\frac{x z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} z\\otimes \\mathrm{d} x + \\left( -\\frac{y z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} z\\otimes \\mathrm{d} y + \\left( \\frac{x^{2} + y^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} z\\otimes \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle g = \\left( \\frac{y^{2} + z^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} x\\otimes \\mathrm{d} x + \\left( -\\frac{x y}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} x\\otimes \\mathrm{d} y + \\left( -\\frac{x z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} x\\otimes \\mathrm{d} z + \\left( -\\frac{x y}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} y\\otimes \\mathrm{d} x + \\left( \\frac{x^{2} + z^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} y\\otimes \\mathrm{d} y + \\left( -\\frac{y z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} y\\otimes \\mathrm{d} z + \\left( -\\frac{x z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} z\\otimes \\mathrm{d} x + \\left( -\\frac{y z}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} z\\otimes \\mathrm{d} y + \\left( \\frac{x^{2} + y^{2} + 1}{x^{2} + y^{2} + z^{2} + 1} \\right) \\mathrm{d} z\\otimes \\mathrm{d} z$"
      ],
      "text/plain": [
       "g = (y^2 + z^2 + 1)/(x^2 + y^2 + z^2 + 1) dx⊗dx - x*y/(x^2 + y^2 + z^2 + 1) dx⊗dy - x*z/(x^2 + y^2 + z^2 + 1) dx⊗dz - x*y/(x^2 + y^2 + z^2 + 1) dy⊗dx + (x^2 + z^2 + 1)/(x^2 + y^2 + z^2 + 1) dy⊗dy - y*z/(x^2 + y^2 + z^2 + 1) dy⊗dz - x*z/(x^2 + y^2 + z^2 + 1) dz⊗dx - y*z/(x^2 + y^2 + z^2 + 1) dz⊗dy + (x^2 + y^2 + 1)/(x^2 + y^2 + z^2 + 1) dz⊗dz"
      ]
     },
     "execution_count": 254,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g.add_comp_by_continuation(X.frame(), U, X)\n",
    "g.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Levi-Civita接続は、計量 $g$の変更後、自動的に再計算されます。\n",
    "<div hidden>\n",
    "<p>The Levi-Civita connection is automatically recomputed, after the change in $g$:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 255,
   "metadata": {},
   "outputs": [],
   "source": [
    "nabla = g.connection()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "とくに、Christoffel 係数は、異なっています。\n",
    "<div hidden>\n",
    "  <p>In particular, the Christoffel symbols are different:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 256,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{lcl} \\Gamma_{ \\phantom{\\, x} \\, x \\, x }^{ \\, x \\phantom{\\, x} \\phantom{\\, x} } & = & -\\frac{x y^{2} + x z^{2} + x}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, x} \\, x \\, y }^{ \\, x \\phantom{\\, x} \\phantom{\\, y} } & = & \\frac{x^{2} y}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, x} \\, x \\, z }^{ \\, x \\phantom{\\, x} \\phantom{\\, z} } & = & \\frac{x^{2} z}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, x} \\, y \\, y }^{ \\, x \\phantom{\\, y} \\phantom{\\, y} } & = & -\\frac{x^{3} + x z^{2} + x}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, x} \\, y \\, z }^{ \\, x \\phantom{\\, y} \\phantom{\\, z} } & = & \\frac{x y z}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, x} \\, z \\, z }^{ \\, x \\phantom{\\, z} \\phantom{\\, z} } & = & -\\frac{x^{3} + x y^{2} + x}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, y} \\, x \\, x }^{ \\, y \\phantom{\\, x} \\phantom{\\, x} } & = & -\\frac{y^{3} + y z^{2} + y}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, y} \\, x \\, y }^{ \\, y \\phantom{\\, x} \\phantom{\\, y} } & = & \\frac{x y^{2}}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, y} \\, x \\, z }^{ \\, y \\phantom{\\, x} \\phantom{\\, z} } & = & \\frac{x y z}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, y} \\, y \\, y }^{ \\, y \\phantom{\\, y} \\phantom{\\, y} } & = & -\\frac{y z^{2} + {\\left(x^{2} + 1\\right)} y}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, y} \\, y \\, z }^{ \\, y \\phantom{\\, y} \\phantom{\\, z} } & = & \\frac{y^{2} z}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, y} \\, z \\, z }^{ \\, y \\phantom{\\, z} \\phantom{\\, z} } & = & -\\frac{y^{3} + {\\left(x^{2} + 1\\right)} y}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, z} \\, x \\, x }^{ \\, z \\phantom{\\, x} \\phantom{\\, x} } & = & -\\frac{z^{3} + {\\left(y^{2} + 1\\right)} z}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, z} \\, x \\, y }^{ \\, z \\phantom{\\, x} \\phantom{\\, y} } & = & \\frac{x y z}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, z} \\, x \\, z }^{ \\, z \\phantom{\\, x} \\phantom{\\, z} } & = & \\frac{x z^{2}}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, z} \\, y \\, y }^{ \\, z \\phantom{\\, y} \\phantom{\\, y} } & = & -\\frac{z^{3} + {\\left(x^{2} + 1\\right)} z}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, z} \\, y \\, z }^{ \\, z \\phantom{\\, y} \\phantom{\\, z} } & = & \\frac{y z^{2}}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, z} \\, z \\, z }^{ \\, z \\phantom{\\, z} \\phantom{\\, z} } & = & -\\frac{{\\left(x^{2} + y^{2} + 1\\right)} z}{x^{2} + y^{2} + z^{2} + 1} \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{lcl} \\Gamma_{ \\phantom{\\, x} \\, x \\, x }^{ \\, x \\phantom{\\, x} \\phantom{\\, x} } & = & -\\frac{x y^{2} + x z^{2} + x}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, x} \\, x \\, y }^{ \\, x \\phantom{\\, x} \\phantom{\\, y} } & = & \\frac{x^{2} y}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, x} \\, x \\, z }^{ \\, x \\phantom{\\, x} \\phantom{\\, z} } & = & \\frac{x^{2} z}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, x} \\, y \\, y }^{ \\, x \\phantom{\\, y} \\phantom{\\, y} } & = & -\\frac{x^{3} + x z^{2} + x}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, x} \\, y \\, z }^{ \\, x \\phantom{\\, y} \\phantom{\\, z} } & = & \\frac{x y z}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, x} \\, z \\, z }^{ \\, x \\phantom{\\, z} \\phantom{\\, z} } & = & -\\frac{x^{3} + x y^{2} + x}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, y} \\, x \\, x }^{ \\, y \\phantom{\\, x} \\phantom{\\, x} } & = & -\\frac{y^{3} + y z^{2} + y}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, y} \\, x \\, y }^{ \\, y \\phantom{\\, x} \\phantom{\\, y} } & = & \\frac{x y^{2}}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, y} \\, x \\, z }^{ \\, y \\phantom{\\, x} \\phantom{\\, z} } & = & \\frac{x y z}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, y} \\, y \\, y }^{ \\, y \\phantom{\\, y} \\phantom{\\, y} } & = & -\\frac{y z^{2} + {\\left(x^{2} + 1\\right)} y}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, y} \\, y \\, z }^{ \\, y \\phantom{\\, y} \\phantom{\\, z} } & = & \\frac{y^{2} z}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, y} \\, z \\, z }^{ \\, y \\phantom{\\, z} \\phantom{\\, z} } & = & -\\frac{y^{3} + {\\left(x^{2} + 1\\right)} y}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, z} \\, x \\, x }^{ \\, z \\phantom{\\, x} \\phantom{\\, x} } & = & -\\frac{z^{3} + {\\left(y^{2} + 1\\right)} z}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, z} \\, x \\, y }^{ \\, z \\phantom{\\, x} \\phantom{\\, y} } & = & \\frac{x y z}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, z} \\, x \\, z }^{ \\, z \\phantom{\\, x} \\phantom{\\, z} } & = & \\frac{x z^{2}}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, z} \\, y \\, y }^{ \\, z \\phantom{\\, y} \\phantom{\\, y} } & = & -\\frac{z^{3} + {\\left(x^{2} + 1\\right)} z}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, z} \\, y \\, z }^{ \\, z \\phantom{\\, y} \\phantom{\\, z} } & = & \\frac{y z^{2}}{x^{2} + y^{2} + z^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, z} \\, z \\, z }^{ \\, z \\phantom{\\, z} \\phantom{\\, z} } & = & -\\frac{{\\left(x^{2} + y^{2} + 1\\right)} z}{x^{2} + y^{2} + z^{2} + 1} \\end{array}$"
      ],
      "text/plain": [
       "Gam^x_xx = -(x*y^2 + x*z^2 + x)/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^x_xy = x^2*y/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^x_xz = x^2*z/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^x_yy = -(x^3 + x*z^2 + x)/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^x_yz = x*y*z/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^x_zz = -(x^3 + x*y^2 + x)/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^y_xx = -(y^3 + y*z^2 + y)/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^y_xy = x*y^2/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^y_xz = x*y*z/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^y_yy = -(y*z^2 + (x^2 + 1)*y)/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^y_yz = y^2*z/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^y_zz = -(y^3 + (x^2 + 1)*y)/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^z_xx = -(z^3 + (y^2 + 1)*z)/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^z_xy = x*y*z/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^z_xz = x*z^2/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^z_yy = -(z^3 + (x^2 + 1)*z)/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^z_yz = y*z^2/(x^2 + y^2 + z^2 + 1) \n",
       "Gam^z_zz = -(x^2 + y^2 + 1)*z/(x^2 + y^2 + z^2 + 1) "
      ]
     },
     "execution_count": 256,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "nabla.display(only_nonredundant=True)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 257,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{lcl} \\Gamma_{ \\phantom{\\, r} \\, r \\, r }^{ \\, r \\phantom{\\, r} \\phantom{\\, r} } & = & -\\frac{r}{r^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, r} \\, {\\theta} \\, {\\theta} }^{ \\, r \\phantom{\\, {\\theta}} \\phantom{\\, {\\theta}} } & = & -r^{3} - r \\\\ \\Gamma_{ \\phantom{\\, r} \\, {\\phi} \\, {\\phi} }^{ \\, r \\phantom{\\, {\\phi}} \\phantom{\\, {\\phi}} } & = & -{\\left(r^{3} + r\\right)} \\sin\\left({\\theta}\\right)^{2} \\\\ \\Gamma_{ \\phantom{\\, {\\theta}} \\, r \\, {\\theta} }^{ \\, {\\theta} \\phantom{\\, r} \\phantom{\\, {\\theta}} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\theta}} \\, {\\phi} \\, {\\phi} }^{ \\, {\\theta} \\phantom{\\, {\\phi}} \\phantom{\\, {\\phi}} } & = & -\\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, r \\, {\\phi} }^{ \\, {\\phi} \\phantom{\\, r} \\phantom{\\, {\\phi}} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, {\\theta} \\, {\\phi} }^{ \\, {\\phi} \\phantom{\\, {\\theta}} \\phantom{\\, {\\phi}} } & = & \\frac{\\cos\\left({\\theta}\\right)}{\\sin\\left({\\theta}\\right)} \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{lcl} \\Gamma_{ \\phantom{\\, r} \\, r \\, r }^{ \\, r \\phantom{\\, r} \\phantom{\\, r} } & = & -\\frac{r}{r^{2} + 1} \\\\ \\Gamma_{ \\phantom{\\, r} \\, {\\theta} \\, {\\theta} }^{ \\, r \\phantom{\\, {\\theta}} \\phantom{\\, {\\theta}} } & = & -r^{3} - r \\\\ \\Gamma_{ \\phantom{\\, r} \\, {\\phi} \\, {\\phi} }^{ \\, r \\phantom{\\, {\\phi}} \\phantom{\\, {\\phi}} } & = & -{\\left(r^{3} + r\\right)} \\sin\\left({\\theta}\\right)^{2} \\\\ \\Gamma_{ \\phantom{\\, {\\theta}} \\, r \\, {\\theta} }^{ \\, {\\theta} \\phantom{\\, r} \\phantom{\\, {\\theta}} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\theta}} \\, {\\phi} \\, {\\phi} }^{ \\, {\\theta} \\phantom{\\, {\\phi}} \\phantom{\\, {\\phi}} } & = & -\\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right) \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, r \\, {\\phi} }^{ \\, {\\phi} \\phantom{\\, r} \\phantom{\\, {\\phi}} } & = & \\frac{1}{r} \\\\ \\Gamma_{ \\phantom{\\, {\\phi}} \\, {\\theta} \\, {\\phi} }^{ \\, {\\phi} \\phantom{\\, {\\theta}} \\phantom{\\, {\\phi}} } & = & \\frac{\\cos\\left({\\theta}\\right)}{\\sin\\left({\\theta}\\right)} \\end{array}$"
      ],
      "text/plain": [
       "Gam^r_r,r = -r/(r^2 + 1) \n",
       "Gam^r_th,th = -r^3 - r \n",
       "Gam^r_ph,ph = -(r^3 + r)*sin(th)^2 \n",
       "Gam^th_r,th = 1/r \n",
       "Gam^th_ph,ph = -cos(th)*sin(th) \n",
       "Gam^ph_r,ph = 1/r \n",
       "Gam^ph_th,ph = cos(th)/sin(th) "
      ]
     },
     "execution_count": 257,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "nabla.display(frame=Y.frame(), chart=Y, only_nonredundant=True)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Rimannテンソルは、今や：\n",
    "<div hidden>\n",
    "  <p>The <strong>Riemann tensor</strong> is now</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 258,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tensor field Riem(g) of type (1,3) on the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{Riem}\\left(g\\right) = -r^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\theta} + r^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} r -r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\phi} + r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} r + \\left( \\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\theta} + \\left( -\\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} r -r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\phi} + r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\theta} + \\left( \\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\phi} + \\left( -\\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} r + r^{2} \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\phi} -r^{2} \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\theta}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{Riem}\\left(g\\right) = -r^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\theta} + r^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} r -r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\phi} + r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} r + \\left( \\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\theta} + \\left( -\\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} r -r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\phi} + r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\theta} + \\left( \\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\phi} + \\left( -\\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} r + r^{2} \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\phi} -r^{2} \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\theta}$"
      ],
      "text/plain": [
       "Riem(g) = -r^2 ∂/∂r⊗dth⊗dr⊗dth + r^2 ∂/∂r⊗dth⊗dth⊗dr - r^2*sin(th)^2 ∂/∂r⊗dph⊗dr⊗dph + r^2*sin(th)^2 ∂/∂r⊗dph⊗dph⊗dr + 1/(r^2 + 1) ∂/∂th⊗dr⊗dr⊗dth - 1/(r^2 + 1) ∂/∂th⊗dr⊗dth⊗dr - r^2*sin(th)^2 ∂/∂th⊗dph⊗dth⊗dph + r^2*sin(th)^2 ∂/∂th⊗dph⊗dph⊗dth + 1/(r^2 + 1) ∂/∂ph⊗dr⊗dr⊗dph - 1/(r^2 + 1) ∂/∂ph⊗dr⊗dph⊗dr + r^2 ∂/∂ph⊗dth⊗dth⊗dph - r^2 ∂/∂ph⊗dth⊗dph⊗dth"
      ]
     },
     "execution_count": 258,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Riem = nabla.riemann()\n",
    "print(Riem) ; Riem.display(Y.frame())"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "リーマンテンソルは接続などを明示的に求めることなく、計量$g$から直接算出することもできます。\n",
    "<div hidden>\n",
    "<p>Note that it can be accessed directely via the metric, without any explicit mention of the connection:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 259,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 259,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g.riemann() is nabla.riemann()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 260,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{Riem}\\left(g\\right) = -r^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\theta} + r^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} r -r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\phi} + r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} r + \\left( \\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\theta} + \\left( -\\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} r -r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\phi} + r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\theta} + \\left( \\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\phi} + \\left( -\\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} r + r^{2} \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\phi} -r^{2} \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\theta}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{Riem}\\left(g\\right) = -r^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\theta} + r^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} r -r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\phi} + r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial r }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} r + \\left( \\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\theta} + \\left( -\\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} r -r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\phi} + r^{2} \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial {\\theta} }\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\theta} + \\left( \\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\phi} + \\left( -\\frac{1}{r^{2} + 1} \\right) \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} r\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} r + r^{2} \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\phi} -r^{2} \\frac{\\partial}{\\partial {\\phi} }\\otimes \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\theta}$"
      ],
      "text/plain": [
       "Riem(g) = -r^2 ∂/∂r⊗dth⊗dr⊗dth + r^2 ∂/∂r⊗dth⊗dth⊗dr - r^2*sin(th)^2 ∂/∂r⊗dph⊗dr⊗dph + r^2*sin(th)^2 ∂/∂r⊗dph⊗dph⊗dr + 1/(r^2 + 1) ∂/∂th⊗dr⊗dr⊗dth - 1/(r^2 + 1) ∂/∂th⊗dr⊗dth⊗dr - r^2*sin(th)^2 ∂/∂th⊗dph⊗dth⊗dph + r^2*sin(th)^2 ∂/∂th⊗dph⊗dph⊗dth + 1/(r^2 + 1) ∂/∂ph⊗dr⊗dr⊗dph - 1/(r^2 + 1) ∂/∂ph⊗dr⊗dph⊗dr + r^2 ∂/∂ph⊗dth⊗dth⊗dph - r^2 ∂/∂ph⊗dth⊗dph⊗dth"
      ]
     },
     "execution_count": 260,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g.riemann().display(Y.frame())"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "**Ricci　テンソル** はこのようになります。\n",
    "<div hidden>\n",
    "<p>The <strong>Ricci tensor</strong> is</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 261,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Field of symmetric bilinear forms Ric(g) on the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{Ric}\\left(g\\right) = \\left( -\\frac{2}{r^{2} + 1} \\right) \\mathrm{d} r\\otimes \\mathrm{d} r -2 \\, r^{2} \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta} -2 \\, r^{2} \\sin\\left({\\theta}\\right)^{2} \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{Ric}\\left(g\\right) = \\left( -\\frac{2}{r^{2} + 1} \\right) \\mathrm{d} r\\otimes \\mathrm{d} r -2 \\, r^{2} \\mathrm{d} {\\theta}\\otimes \\mathrm{d} {\\theta} -2 \\, r^{2} \\sin\\left({\\theta}\\right)^{2} \\mathrm{d} {\\phi}\\otimes \\mathrm{d} {\\phi}$"
      ],
      "text/plain": [
       "Ric(g) = -2/(r^2 + 1) dr⊗dr - 2*r^2 dth⊗dth - 2*r^2*sin(th)^2 dph⊗dph"
      ]
     },
     "execution_count": 261,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "Ric = g.ricci()\n",
    "print(Ric)\n",
    "Ric.display(Y.frame())"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "**Weyl テンソル** は：\n",
    "<div hidden>\n",
    "  <p>The<strong> Weyl tensor</strong> is:</p>\n",
    "  <p> Weylテンソルについては Weinberg Page 145, 内山　page. 322, eq. (52.25) を参照</p>\n",
    "</div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 262,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tensor field C(g) of type (1,3) on the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{C}\\left(g\\right) = 0\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{C}\\left(g\\right) = 0$"
      ],
      "text/plain": [
       "C(g) = 0"
      ]
     },
     "execution_count": 262,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "C = g.weyl()\n",
    "print(C) ; C.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "と、多様体 $\\mathcal{M}$ の次元が 3 なので、**Weyl テンソル** は恒等的に0になります。\n",
    "\n",
    "最後に **Ricci スカラ(曲率）** を求めます。\n",
    "<div hidden>\n",
    "<p>The Weyl tensor vanishes identically because the dimension of $\\mathcal{M}$ is 3.</p>\n",
    "<p>Finally, the <strong>Ricci scalar</strong> is </p>  </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 263,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field r(g) on the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} \\mathrm{r}\\left(g\\right):& \\mathcal{M} & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & -6 \\\\ \\text{on}\\ U : & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & -6 \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} \\mathrm{r}\\left(g\\right):& \\mathcal{M} & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & -6 \\\\ \\text{on}\\ U : & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & -6 \\end{array}$"
      ],
      "text/plain": [
       "r(g): M → ℝ\n",
       "   (x, y, z) ↦ -6\n",
       "on U: (r, th, ph) ↦ -6"
      ]
     },
     "execution_count": 263,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "R = g.ricci_scalar()\n",
    "print(R) ; R.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "このようにこの空間　$\\mathbb{H}^3$ は負の定曲率をもった空間(双曲空間)であることが、改めて確認できます。\n",
    "<div hidden>\n",
    "  <p>We recover the fact that $\\mathbb{H}^3$ is a Riemannian manifold of constant negative curvature.</p>\n",
    "  </div>"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## 計量によって引き起こされるテンソル場の変形:Tensor transformations induced by a metric\n",
    "\n",
    "もっとも重要な軽量 $g$によって引き起こされるテンソル場の変形は、**musical isomorphism** あるいは **指標の引き上げ** および　**指標の引き下げ**と呼ばれるものです。\n",
    "<div hidden>\n",
    "<p>The most important tensor transformation induced by the metric $g$ is the so-called <strong>musical isomorphism</strong>, or <strong>index raising</strong> and<strong> index lowering</strong>:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 264,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tensor field T of type (1,2) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "print(t)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 265,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle T = \\left( r^{2} \\cos\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + 1 \\right) \\frac{\\partial}{\\partial x }\\otimes \\mathrm{d} y\\otimes \\mathrm{d} x + r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} y\\otimes \\mathrm{d} x\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle T = \\left( r^{2} \\cos\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + 1 \\right) \\frac{\\partial}{\\partial x }\\otimes \\mathrm{d} y\\otimes \\mathrm{d} x + r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{2} \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} y\\otimes \\mathrm{d} x$"
      ],
      "text/plain": [
       "T = (r^2*cos(ph)^2*sin(th)^2 + 1) ∂/∂x⊗dy⊗dx + r^3*cos(ph)*cos(th)*sin(ph)*sin(th)^2 ∂/∂z⊗dy⊗dx"
      ]
     },
     "execution_count": 265,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "t.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 266,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle T = \\left( x^{2} + 1 \\right) \\frac{\\partial}{\\partial x }\\otimes \\mathrm{d} y\\otimes \\mathrm{d} x + x y z \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} y\\otimes \\mathrm{d} x\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle T = \\left( x^{2} + 1 \\right) \\frac{\\partial}{\\partial x }\\otimes \\mathrm{d} y\\otimes \\mathrm{d} x + x y z \\frac{\\partial}{\\partial z }\\otimes \\mathrm{d} y\\otimes \\mathrm{d} x$"
      ],
      "text/plain": [
       "T = (x^2 + 1) ∂/∂x⊗dy⊗dx + x*y*z ∂/∂z⊗dy⊗dx"
      ]
     },
     "execution_count": 266,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "t.display(X_U.frame(), X_U)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "テンソル場 $T$の最後の指標(位置は2)を計量　$g$ について、引き上げます。\n",
    "<div hidden>\n",
    "Raising the last index (position 2) of $T$ with $g$: </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 267,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tensor field T of type (1,2) on the Open subset U of the 3-dimensional differentiable manifold M Tensor field of type (2,1) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "s = t.up(g, 2)\n",
    "print(t,s)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "\n",
    "上記の式で引き上げられた指標は反変な指数のうち最後のものになることに注意しましょう。つまり、メソッド`up`が返すテンソル $s$ は\n",
    "$$ s^{ab}_{\\ \\ \\ \\, c} = g^{bi} T^a_{\\ \\ ic}$$\n",
    "です。\n",
    "<div hidden>\n",
    "Note that the raised index becomes the *last* one among the contravariant indices,  i.e. the tensor $s$ returned by the method `up` is \n",
    "$$ s^{ab}_{\\ \\ \\ \\, c} = g^{bi} T^a_{\\ \\ ic}$$ </div>"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "これについての詳細は[up()の解説](https://doc.sagemath.org/html/en/reference/manifolds/sage/manifolds/differentiable/tensorfield.html#sage.manifolds.differentiable.tensorfield.TensorField.up) をご覧ください。\n",
    "\n",
    "See the [up() documentation](https://doc.sagemath.org/html/en/reference/manifolds/sage/manifolds/differentiable/tensorfield.html#sage.manifolds.differentiable.tensorfield.TensorField.up) for more details."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "$T$の全ての共変な指標(この例では　位置 1と2）を引き上げます。\n",
    "<div hidden>\n",
    "<p>Raising all the covariant indices of $T$ (i.e. those at the positions 1 and 2):</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 268,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tensor field of type (3,0) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "s = t.up(g)\n",
    "print(s)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 269,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Tensor field of type (0,3) on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "s = t.down(g)\n",
    "print(s)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "\n",
    "上記の式で引き下げられた指標は 共変な指標のうち *最初* の指標になることに注意しましょう。　即ち、`down`メソッドが返すテンソル $s$ は、\n",
    "$$ s_{abc} = g_{ai} T^i_{\\ \\ bc}$$\n",
    "となります。\n",
    "<div hidden>\n",
    "Note that the lowered index becomes the *first* one among the covariant indices,  i.e. the tensor $s$ returned by the method `down` is \n",
    "$$ s_{abc} = g_{ai} T^i_{\\ \\ bc}$$ </div>"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "これについての詳細は[down()の解説](https://doc.sagemath.org/html/en/reference/manifolds/sage/manifolds/differentiable/tensorfield.html#sage.manifolds.differentiable.tensorfield.TensorField.down)  をご覧ください。\n",
    "<div hidden>\n",
    "See the [down() documentation](https://doc.sagemath.org/html/en/reference/manifolds/sage/manifolds/differentiable/tensorfield.html#sage.manifolds.differentiable.tensorfield.TensorField.down) for more details. </div>"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Hodge双対(星印演算子) ： Hodge duality\n",
    "計量 $g$についての体積　3-形式(Levi-Civita テンソル　）は\n",
    "<div hidden>\n",
    "<p>The volume 3-form (Levi-Civita tensor) associated with the metric $g$ is</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 270,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "3-form eps_g on the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\epsilon_{g} = \\left( \\frac{1}{\\sqrt{x^{2} + y^{2} + z^{2} + 1}} \\right) \\mathrm{d} x\\wedge \\mathrm{d} y\\wedge \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\epsilon_{g} = \\left( \\frac{1}{\\sqrt{x^{2} + y^{2} + z^{2} + 1}} \\right) \\mathrm{d} x\\wedge \\mathrm{d} y\\wedge \\mathrm{d} z$"
      ],
      "text/plain": [
       "eps_g = 1/sqrt(x^2 + y^2 + z^2 + 1) dx∧dy∧dz"
      ]
     },
     "execution_count": 270,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "epsilon = g.volume_form()\n",
    "print(epsilon)\n",
    "epsilon.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 271,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\epsilon_{g} = \\left( \\frac{r^{2} \\sin\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} r\\wedge \\mathrm{d} {\\theta}\\wedge \\mathrm{d} {\\phi}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\epsilon_{g} = \\left( \\frac{r^{2} \\sin\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} r\\wedge \\mathrm{d} {\\theta}\\wedge \\mathrm{d} {\\phi}$"
      ],
      "text/plain": [
       "eps_g = r^2*sin(th)/sqrt(r^2 + 1) dr∧dth∧dph"
      ]
     },
     "execution_count": 271,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "epsilon.display(Y.frame())"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 272,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\epsilon_{g} = \\left( \\frac{r^{2} \\sin\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} r\\wedge \\mathrm{d} {\\theta}\\wedge \\mathrm{d} {\\phi}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\epsilon_{g} = \\left( \\frac{r^{2} \\sin\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} r\\wedge \\mathrm{d} {\\theta}\\wedge \\mathrm{d} {\\phi}$"
      ],
      "text/plain": [
       "eps_g = r^2*sin(th)/sqrt(r^2 + 1) dr∧dth∧dph"
      ]
     },
     "execution_count": 272,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "epsilon.display(Y.frame())"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 273,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field f on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} f:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & z^{3} + y^{2} + x \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} f:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & z^{3} + y^{2} + x \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) \\end{array}$"
      ],
      "text/plain": [
       "f: U → ℝ\n",
       "   (x, y, z) ↦ z^3 + y^2 + x\n",
       "   (r, th, ph) ↦ r^3*cos(th)^3 + r^2*sin(ph)^2*sin(th)^2 + r*cos(ph)*sin(th)"
      ]
     },
     "execution_count": 273,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "print(f) ; f.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 274,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "3-form *f on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\star f = \\left( \\frac{r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} x\\wedge \\mathrm{d} y\\wedge \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\star f = \\left( \\frac{r^{3} \\cos\\left({\\theta}\\right)^{3} + r^{2} \\sin\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} x\\wedge \\mathrm{d} y\\wedge \\mathrm{d} z$"
      ],
      "text/plain": [
       "*f = (r^3*cos(th)^3 + r^2*sin(ph)^2*sin(th)^2 + r*cos(ph)*sin(th))/sqrt(r^2 + 1) dx∧dy∧dz"
      ]
     },
     "execution_count": 274,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "sf = f.hodge_dual(g.restrict(U))\n",
    "print(sf)\n",
    "sf.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "古典的な式$\\star f = f\\, \\epsilon_g$, より正確には $\\star f = f\\, \\epsilon_g|_U$, を確かめてみましょう。\n",
    "$f$ は $U$ 上でのみ定義されていることに注意します。\n",
    "<div hidden>\n",
    "<p>We check the classical formula $\\star f = f\\, \\epsilon_g$, or, more precisely, $\\star f = f\\, \\epsilon_g|_U$ (for $f$ is defined on $U$ only):</p>  </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 275,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 275,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "sf == f * epsilon.restrict(U)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "1-形式のHodge 双対は、2ー形式 です。(3次元多様体の場合）；\n",
    "<div hidden>\n",
    "<p>The Hodge dual of a 1-form is a 2-form:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 276,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1-form omega on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\omega = r^{2} \\sin\\left({\\theta}\\right)^{2} \\mathrm{d} x + r \\cos\\left({\\theta}\\right) \\mathrm{d} y + \\left( r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) - r \\cos\\left({\\theta}\\right) \\right) \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\omega = r^{2} \\sin\\left({\\theta}\\right)^{2} \\mathrm{d} x + r \\cos\\left({\\theta}\\right) \\mathrm{d} y + \\left( r \\cos\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) - r \\cos\\left({\\theta}\\right) \\right) \\mathrm{d} z$"
      ],
      "text/plain": [
       "omega = r^2*sin(th)^2 dx + r*cos(th) dy + (r*cos(ph)*sin(th) - r*cos(th)) dz"
      ]
     },
     "execution_count": 276,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "print(om) ; om.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 277,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2-form *omega on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\star \\omega = \\left( \\frac{r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right)^{3} - r^{3} \\cos\\left({\\theta}\\right)^{3} - r \\cos\\left({\\theta}\\right) + {\\left(r^{3} {\\left(\\cos\\left({\\phi}\\right) + \\sin\\left({\\phi}\\right)\\right)} \\cos\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} x\\wedge \\mathrm{d} y + \\left( -\\frac{r^{4} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{4} - r^{3} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) + {\\left(\\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right) + \\sin\\left({\\phi}\\right)^{2}\\right)} r^{3} \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} x\\wedge \\mathrm{d} z + \\left( \\frac{r^{4} \\cos\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{4} - r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\theta}\\right) + {\\left({\\left(\\cos\\left({\\phi}\\right)^{2} + \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)\\right)} r^{3} \\cos\\left({\\theta}\\right) + r^{2}\\right)} \\sin\\left({\\theta}\\right)^{2}}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} y\\wedge \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\star \\omega = \\left( \\frac{r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right)^{3} - r^{3} \\cos\\left({\\theta}\\right)^{3} - r \\cos\\left({\\theta}\\right) + {\\left(r^{3} {\\left(\\cos\\left({\\phi}\\right) + \\sin\\left({\\phi}\\right)\\right)} \\cos\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} x\\wedge \\mathrm{d} y + \\left( -\\frac{r^{4} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{4} - r^{3} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right) + {\\left(\\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right) + \\sin\\left({\\phi}\\right)^{2}\\right)} r^{3} \\cos\\left({\\theta}\\right) \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} x\\wedge \\mathrm{d} z + \\left( \\frac{r^{4} \\cos\\left({\\phi}\\right)^{2} \\sin\\left({\\theta}\\right)^{4} - r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\theta}\\right) + {\\left({\\left(\\cos\\left({\\phi}\\right)^{2} + \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)\\right)} r^{3} \\cos\\left({\\theta}\\right) + r^{2}\\right)} \\sin\\left({\\theta}\\right)^{2}}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} y\\wedge \\mathrm{d} z$"
      ],
      "text/plain": [
       "*omega = (r^4*cos(ph)*cos(th)*sin(th)^3 - r^3*cos(th)^3 - r*cos(th) + (r^3*(cos(ph) + sin(ph))*cos(th)^2 + r*cos(ph))*sin(th))/sqrt(r^2 + 1) dx∧dy - (r^4*cos(ph)*sin(ph)*sin(th)^4 - r^3*cos(th)^2*sin(ph)*sin(th) + (cos(ph)*sin(ph) + sin(ph)^2)*r^3*cos(th)*sin(th)^2 + r*cos(th))/sqrt(r^2 + 1) dx∧dz + (r^4*cos(ph)^2*sin(th)^4 - r^3*cos(ph)*cos(th)^2*sin(th) + ((cos(ph)^2 + cos(ph)*sin(ph))*r^3*cos(th) + r^2)*sin(th)^2)/sqrt(r^2 + 1) dy∧dz"
      ]
     },
     "execution_count": 277,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "som = om.hodge_dual(g)\n",
    "print(som) ; \n",
    "som.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "（3次元多様体上では）2ー形式のhodge 双対は　1ー形式になります。\n",
    "<div hidden>\n",
    "<p>The Hodge dual of a 2-form is a 1-form:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 278,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2-form A on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    }
   ],
   "source": [
    "print(a)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 279,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "1-form *A on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\star A = \\left( \\frac{3 \\, r^{5} \\cos\\left({\\theta}\\right)^{5} + 3 \\, r^{3} \\cos\\left({\\theta}\\right)^{3} + {\\left(3 \\, r^{6} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) - 2 \\, r^{5} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) - 2 \\, r^{4} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)^{3}\\right)} \\sin\\left({\\theta}\\right)^{4} + {\\left(2 \\, r^{4} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)^{3} + {\\left(\\sin\\left({\\phi}\\right)^{3} - \\sin\\left({\\phi}\\right)\\right)} r^{3}\\right)} \\sin\\left({\\theta}\\right)^{3} + {\\left(3 \\, r^{5} \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right)^{2} - 2 \\, r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) - 2 \\, r^{2} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} + {\\left(2 \\, r^{4} \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) + r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} + 2 \\, r^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} x + \\left( -\\frac{r^{3} \\cos\\left({\\theta}\\right)^{3} + {\\left(3 \\, r^{6} \\cos\\left({\\phi}\\right)^{2} \\cos\\left({\\theta}\\right)^{2} - 2 \\, {\\left(\\cos\\left({\\phi}\\right)^{2} - 1\\right)} r^{5} \\cos\\left({\\theta}\\right) + 2 \\, {\\left(\\cos\\left({\\phi}\\right)^{4} - \\cos\\left({\\phi}\\right)^{2}\\right)} r^{4}\\right)} \\sin\\left({\\theta}\\right)^{4} - {\\left(r^{3} \\cos\\left({\\phi}\\right)^{3} + 2 \\, {\\left(\\cos\\left({\\phi}\\right)^{3} - \\cos\\left({\\phi}\\right)\\right)} r^{4} \\cos\\left({\\theta}\\right)\\right)} \\sin\\left({\\theta}\\right)^{3} + {\\left(3 \\, r^{6} \\cos\\left({\\theta}\\right)^{4} + 3 \\, r^{5} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) + r^{3} \\cos\\left({\\phi}\\right)^{2} \\cos\\left({\\theta}\\right) + 3 \\, r^{4} \\cos\\left({\\theta}\\right)^{2}\\right)} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\theta}\\right) - {\\left(r^{3} {\\left(\\cos\\left({\\phi}\\right) + \\sin\\left({\\phi}\\right)\\right)} \\cos\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} y + \\left( \\frac{2 \\, r^{5} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{5} + {\\left(3 \\, r^{6} \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) + 2 \\, r^{4} \\cos\\left({\\phi}\\right)^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) + 2 \\, r^{3} \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{3} - {\\left(2 \\, r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + {\\left(\\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right) + 1\\right)} r^{3} \\cos\\left({\\theta}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} - r \\cos\\left({\\theta}\\right) - {\\left(3 \\, r^{5} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{4} - r^{3} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\star A = \\left( \\frac{3 \\, r^{5} \\cos\\left({\\theta}\\right)^{5} + 3 \\, r^{3} \\cos\\left({\\theta}\\right)^{3} + {\\left(3 \\, r^{6} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) - 2 \\, r^{5} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) - 2 \\, r^{4} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)^{3}\\right)} \\sin\\left({\\theta}\\right)^{4} + {\\left(2 \\, r^{4} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)^{3} + {\\left(\\sin\\left({\\phi}\\right)^{3} - \\sin\\left({\\phi}\\right)\\right)} r^{3}\\right)} \\sin\\left({\\theta}\\right)^{3} + {\\left(3 \\, r^{5} \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right)^{2} - 2 \\, r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) - 2 \\, r^{2} \\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} + {\\left(2 \\, r^{4} \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) + r^{3} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} + 2 \\, r^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} x + \\left( -\\frac{r^{3} \\cos\\left({\\theta}\\right)^{3} + {\\left(3 \\, r^{6} \\cos\\left({\\phi}\\right)^{2} \\cos\\left({\\theta}\\right)^{2} - 2 \\, {\\left(\\cos\\left({\\phi}\\right)^{2} - 1\\right)} r^{5} \\cos\\left({\\theta}\\right) + 2 \\, {\\left(\\cos\\left({\\phi}\\right)^{4} - \\cos\\left({\\phi}\\right)^{2}\\right)} r^{4}\\right)} \\sin\\left({\\theta}\\right)^{4} - {\\left(r^{3} \\cos\\left({\\phi}\\right)^{3} + 2 \\, {\\left(\\cos\\left({\\phi}\\right)^{3} - \\cos\\left({\\phi}\\right)\\right)} r^{4} \\cos\\left({\\theta}\\right)\\right)} \\sin\\left({\\theta}\\right)^{3} + {\\left(3 \\, r^{6} \\cos\\left({\\theta}\\right)^{4} + 3 \\, r^{5} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) + r^{3} \\cos\\left({\\phi}\\right)^{2} \\cos\\left({\\theta}\\right) + 3 \\, r^{4} \\cos\\left({\\theta}\\right)^{2}\\right)} \\sin\\left({\\theta}\\right)^{2} + r \\cos\\left({\\theta}\\right) - {\\left(r^{3} {\\left(\\cos\\left({\\phi}\\right) + \\sin\\left({\\phi}\\right)\\right)} \\cos\\left({\\theta}\\right)^{2} + r \\cos\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} y + \\left( \\frac{2 \\, r^{5} \\sin\\left({\\phi}\\right) \\sin\\left({\\theta}\\right)^{5} + {\\left(3 \\, r^{6} \\cos\\left({\\theta}\\right)^{3} \\sin\\left({\\phi}\\right) + 2 \\, r^{4} \\cos\\left({\\phi}\\right)^{2} \\cos\\left({\\theta}\\right) \\sin\\left({\\phi}\\right) + 2 \\, r^{3} \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)^{3} - {\\left(2 \\, r^{4} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + {\\left(\\cos\\left({\\phi}\\right) \\sin\\left({\\phi}\\right) + 1\\right)} r^{3} \\cos\\left({\\theta}\\right)\\right)} \\sin\\left({\\theta}\\right)^{2} - r \\cos\\left({\\theta}\\right) - {\\left(3 \\, r^{5} \\cos\\left({\\phi}\\right) \\cos\\left({\\theta}\\right)^{4} - r^{3} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right)}{\\sqrt{r^{2} + 1}} \\right) \\mathrm{d} z$"
      ],
      "text/plain": [
       "*A = (3*r^5*cos(th)^5 + 3*r^3*cos(th)^3 + (3*r^6*cos(ph)*cos(th)^2*sin(ph) - 2*r^5*cos(ph)*cos(th)*sin(ph) - 2*r^4*cos(ph)*sin(ph)^3)*sin(th)^4 + (2*r^4*cos(th)*sin(ph)^3 + (sin(ph)^3 - sin(ph))*r^3)*sin(th)^3 + (3*r^5*cos(th)^3*sin(ph)^2 - 2*r^4*cos(ph)*cos(th)^2*sin(ph) + r^3*cos(ph)*cos(th)*sin(ph) - 2*r^2*cos(ph)*sin(ph))*sin(th)^2 + (2*r^4*cos(th)^3*sin(ph) + r^3*cos(ph)*cos(th)^2 + 2*r^2*cos(th)*sin(ph))*sin(th))/sqrt(r^2 + 1) dx - (r^3*cos(th)^3 + (3*r^6*cos(ph)^2*cos(th)^2 - 2*(cos(ph)^2 - 1)*r^5*cos(th) + 2*(cos(ph)^4 - cos(ph)^2)*r^4)*sin(th)^4 - (r^3*cos(ph)^3 + 2*(cos(ph)^3 - cos(ph))*r^4*cos(th))*sin(th)^3 + (3*r^6*cos(th)^4 + 3*r^5*cos(ph)*cos(th)^3*sin(ph) + r^3*cos(ph)^2*cos(th) + 3*r^4*cos(th)^2)*sin(th)^2 + r*cos(th) - (r^3*(cos(ph) + sin(ph))*cos(th)^2 + r*cos(ph))*sin(th))/sqrt(r^2 + 1) dy + (2*r^5*sin(ph)*sin(th)^5 + (3*r^6*cos(th)^3*sin(ph) + 2*r^4*cos(ph)^2*cos(th)*sin(ph) + 2*r^3*sin(ph))*sin(th)^3 - (2*r^4*cos(ph)*cos(th)^2*sin(ph) + (cos(ph)*sin(ph) + 1)*r^3*cos(th))*sin(th)^2 - r*cos(th) - (3*r^5*cos(ph)*cos(th)^4 - r^3*cos(th)^2*sin(ph))*sin(th))/sqrt(r^2 + 1) dz"
      ]
     },
     "execution_count": 279,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "sa = a.hodge_dual(g)\n",
    "print(sa)\n",
    "sa.display()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "最後に3ー形式のHodge 双対は　0-forms です。\n",
    "<div hidden>\n",
    "<p>Finally, the Hodge dual of a 3-form is a 0-form:</p></div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 280,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "3-form dA on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{d}A = \\left( -2 \\, {\\left(3 \\, r^{3} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + r \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right) - 1 \\right) \\mathrm{d} x\\wedge \\mathrm{d} y\\wedge \\mathrm{d} z\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{d}A = \\left( -2 \\, {\\left(3 \\, r^{3} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + r \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right) - 1 \\right) \\mathrm{d} x\\wedge \\mathrm{d} y\\wedge \\mathrm{d} z$"
      ],
      "text/plain": [
       "dA = (-2*(3*r^3*cos(th)^2*sin(ph) + r*sin(ph))*sin(th) - 1) dx∧dy∧dz"
      ]
     },
     "execution_count": 280,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "print(da)\n",
    "da.display()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 281,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Scalar field *dA on the Open subset U of the 3-dimensional differentiable manifold M\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\begin{array}{llcl} \\star \\mathrm{d}A:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & -{\\left(6 \\, y z^{2} + 2 \\, y + 1\\right)} \\sqrt{x^{2} + y^{2} + z^{2} + 1} \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & -\\sqrt{r^{2} + 1} {\\left(2 \\, {\\left(3 \\, r^{3} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + r \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right) + 1\\right)} \\end{array}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\begin{array}{llcl} \\star \\mathrm{d}A:& U & \\longrightarrow & \\mathbb{R} \\\\ & \\left(x, y, z\\right) & \\longmapsto & -{\\left(6 \\, y z^{2} + 2 \\, y + 1\\right)} \\sqrt{x^{2} + y^{2} + z^{2} + 1} \\\\ & \\left(r, {\\theta}, {\\phi}\\right) & \\longmapsto & -\\sqrt{r^{2} + 1} {\\left(2 \\, {\\left(3 \\, r^{3} \\cos\\left({\\theta}\\right)^{2} \\sin\\left({\\phi}\\right) + r \\sin\\left({\\phi}\\right)\\right)} \\sin\\left({\\theta}\\right) + 1\\right)} \\end{array}$"
      ],
      "text/plain": [
       "*dA: U → ℝ\n",
       "   (x, y, z) ↦ -(6*y*z^2 + 2*y + 1)*sqrt(x^2 + y^2 + z^2 + 1)\n",
       "   (r, th, ph) ↦ -sqrt(r^2 + 1)*(2*(3*r^3*cos(th)^2*sin(ph) + r*sin(ph))*sin(th) + 1)"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "sda = da.hodge_dual(g)\n",
    "print(sda)\n",
    "show(sda.display())"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "3次元のリーマン計量に対して、Hodge 双対はidempotent、つまり2回続けて作用させると元に戻ります。\n",
    "<div hidden>\n",
    "<p>In dimension 3 and for a Riemannian metric, the Hodge star is idempotent:</p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 282,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 282,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "sf.hodge_dual(g) == f"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 283,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 283,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "som.hodge_dual(g) == om"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 284,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 284,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "sa.hodge_dual(g) == a"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 285,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<html>\\(\\displaystyle \\mathrm{True}\\)</html>"
      ],
      "text/latex": [
       "$\\displaystyle \\mathrm{True}$"
      ],
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 285,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "sda.hodge_dual(g.restrict(U)) == da"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## 助けを求める：Getting help\n",
    "\n",
    "オブジェクトが呼び出すことのできる関数(メソッドを入手するには、オブジェクトの名前を入力したのち、\".\"とTABを入力します。\n",
    "つまり、`sa.<tab>`です。\n",
    "\n",
    "オブジェクトやメソッドについての情報を入手するために、疑問符 `?`をお使いください。\n",
    "<div hidden>\n",
    "<p><span>To get the list of functions (methods) that can be called on a object, type the name of the object, followed by a dot and the TAB key, e.g. </span></p>\n",
    "<p><span><span style=\"font-family: courier new,courier;\">sa.<tab></tab></span><br></span></p>\n",
    "<p><span id=\"cell_outer_269\">To get information on an object or a method, use the question mark:</span></p> </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 286,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "\u001b[0;31mSignature:\u001b[0m      \u001b[0mnabla\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtensor\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
       "\u001b[0;31mType:\u001b[0m           LeviCivitaConnection\n",
       "\u001b[0;31mString form:\u001b[0m    Levi-Civita connection nabla_g associated with the Riemannian metric g on the 3-dimensional differentiable manifold M\n",
       "\u001b[0;31mFile:\u001b[0m           /private/var/tmp/sage-10.0-current/local/var/lib/sage/venv-python3.11.1/lib/python3.11/site-packages/sage/manifolds/differentiable/levi_civita_connection.py\n",
       "\u001b[0;31mDocstring:\u001b[0m     \n",
       "   Levi-Civita connection on a pseudo-Riemannian manifold.\n",
       "\n",
       "   Let M be a differentiable manifold of class C^\\infty (smooth\n",
       "   manifold) over \\RR endowed with a pseudo-Riemannian metric g. Let\n",
       "   C^\\infty(M) be the algebra of smooth functions M--> \\RR\n",
       "   (cf. \"DiffScalarFieldAlgebra\") and let \\mathfrak{X}(M) be the\n",
       "   C^\\infty(M)-module of vector fields on M (cf. \"VectorFieldModule\").\n",
       "   The *Levi-Civita connection associated with* g is the unique\n",
       "   operator\n",
       "\n",
       "      \\begin{array}{cccc} \\nabla: & \\mathfrak{X}(M) x\n",
       "      \\mathfrak{X}(M) & ---> &          \\mathfrak{X}(M) \\\\\n",
       "      & (u,v) &  |--->  & \\nabla_u v \\end{array}\n",
       "\n",
       "   that\n",
       "\n",
       "   * is \\RR-bilinear, i.e. is bilinear when considering\n",
       "     \\mathfrak{X}(M) as a vector space over \\RR\n",
       "\n",
       "   * is C^\\infty(M)-linear w.r.t. the first argument: \\forall f\\in\n",
       "     C^\\infty(M),\\ \\nabla_{fu} v = f\\nabla_u v\n",
       "\n",
       "   * obeys Leibniz rule w.r.t. the second argument: \\forall f\\in\n",
       "     C^\\infty(M),\\ \\nabla_u (f v) = df(u)\\, v + f  \\nabla_u v\n",
       "\n",
       "   * is torsion-free\n",
       "\n",
       "   * is compatible with g: \\forall (u,v,w)\\in \\mathfrak{X}(M)^3,\\\n",
       "     u(g(v,w)) = g(\\nabla_u v, w) + g(v, \\nabla_u w)\n",
       "\n",
       "   The Levi-Civita connection \\nabla gives birth to the *covariant\n",
       "   derivative operator* acting on tensor fields, denoted by the same\n",
       "   symbol:\n",
       "\n",
       "      \\begin{array}{cccc} \\nabla: &  T^{(k,l)}(M) & ---> &\n",
       "      T^{(k,l+1)}(M)\\\\         & t &  |--->  & \\nabla t\n",
       "      \\end{array}\n",
       "\n",
       "   where T^{(k,l)}(M) stands for the C^\\infty(M)-module of tensor\n",
       "   fields of type (k,l) on M (cf. \"TensorFieldModule\"), with the\n",
       "   convention T^{(0,0)}(M):=C^\\infty(M). For a vector field v,  the\n",
       "   covariant derivative \\nabla v is a type-(1,1) tensor field such\n",
       "   that\n",
       "\n",
       "      \\forall u \\in\\mathfrak{X}(M), \\   \\nabla_u v = \\nabla v(., u)\n",
       "\n",
       "   More generally for any tensor field t\\in T^{(k,l)}(M), we have\n",
       "\n",
       "      \\forall u \\in\\mathfrak{X}(M), \\   \\nabla_u t = \\nabla t(...,\n",
       "      u)\n",
       "\n",
       "   Note:\n",
       "\n",
       "     The above convention means that, in terms of index notation, the\n",
       "     \"derivation index\" in \\nabla t is the *last* one:\n",
       "\n",
       "        \\nabla_c t^{a_1... a_k}_{\\quad\\quad b_1... b_l} =\n",
       "        (\\nabla t)^{a_1... a_k}_{\\quad\\quad b_1... b_l c}\n",
       "\n",
       "   INPUT:\n",
       "\n",
       "   * \"metric\" -- the metric g defining the Levi-Civita connection, as\n",
       "     an instance of class \"PseudoRiemannianMetric\"\n",
       "\n",
       "   * \"name\" -- name given to the connection\n",
       "\n",
       "   * \"latex_name\" -- (default: \"None\") LaTeX symbol to denote the\n",
       "     connection\n",
       "\n",
       "   * \"init_coef\" -- (default: \"True\") determines whether the\n",
       "     Christoffel symbols are initialized (in the top charts on the\n",
       "     domain, i.e. disregarding the subcharts)\n",
       "\n",
       "   EXAMPLES:\n",
       "\n",
       "   Levi-Civita connection associated with the Euclidean metric on\n",
       "   \\RR^3 expressed in spherical coordinates:\n",
       "\n",
       "      sage: forget() # for doctests only\n",
       "      sage: M = Manifold(3, 'R^3', start_index=1)\n",
       "      sage: c_spher.<r,th,ph> = M.chart(r'r:(0,+oo) th:(0,pi):\\theta ph:(0,2*pi):\\phi')\n",
       "      sage: g = M.metric('g')\n",
       "      sage: g[1,1], g[2,2], g[3,3] = 1, r^2 , (r*sin(th))^2\n",
       "      sage: g.display()\n",
       "      g = dr⊗dr + r^2 dth⊗dth + r^2*sin(th)^2 dph⊗dph\n",
       "      sage: nab = g.connection(name='nabla', latex_name=r'\\nabla') ; nab\n",
       "      Levi-Civita connection nabla associated with the Riemannian metric g on\n",
       "       the 3-dimensional differentiable manifold R^3\n",
       "\n",
       "   Let us check that the connection is compatible with the metric:\n",
       "\n",
       "      sage: Dg = nab(g) ; Dg\n",
       "      Tensor field nabla(g) of type (0,3) on the 3-dimensional\n",
       "       differentiable manifold R^3\n",
       "      sage: Dg == 0\n",
       "      True\n",
       "\n",
       "   and that it is torsionless:\n",
       "\n",
       "      sage: nab.torsion() == 0\n",
       "      True\n",
       "\n",
       "   As a check, let us enforce the computation of the torsion:\n",
       "\n",
       "      sage: sage.manifolds.differentiable.affine_connection.AffineConnection.torsion(nab) == 0\n",
       "      True\n",
       "\n",
       "   The connection coefficients in the manifold's default frame are\n",
       "   Christoffel symbols, since the default frame is a coordinate frame:\n",
       "\n",
       "      sage: M.default_frame()\n",
       "      Coordinate frame (R^3, (∂/∂r,∂/∂th,∂/∂ph))\n",
       "      sage: nab.coef()\n",
       "      3-indices components w.r.t. Coordinate frame (R^3, (∂/∂r,∂/∂th,∂/∂ph)),\n",
       "       with symmetry on the index positions (1, 2)\n",
       "\n",
       "   We note that the Christoffel symbols are symmetric with respect to\n",
       "   their last two indices (positions (1,2)); their expression is:\n",
       "\n",
       "      sage: nab.coef()[:]  # display as a array\n",
       "      [[[0, 0, 0], [0, -r, 0], [0, 0, -r*sin(th)^2]],\n",
       "       [[0, 1/r, 0], [1/r, 0, 0], [0, 0, -cos(th)*sin(th)]],\n",
       "       [[0, 0, 1/r], [0, 0, cos(th)/sin(th)], [1/r, cos(th)/sin(th), 0]]]\n",
       "      sage: nab.display()  # display only the non-vanishing symbols\n",
       "      Gam^r_th,th = -r\n",
       "      Gam^r_ph,ph = -r*sin(th)^2\n",
       "      Gam^th_r,th = 1/r\n",
       "      Gam^th_th,r = 1/r\n",
       "      Gam^th_ph,ph = -cos(th)*sin(th)\n",
       "      Gam^ph_r,ph = 1/r\n",
       "      Gam^ph_th,ph = cos(th)/sin(th)\n",
       "      Gam^ph_ph,r = 1/r\n",
       "      Gam^ph_ph,th = cos(th)/sin(th)\n",
       "      sage: nab.display(only_nonredundant=True)  # skip redundancy due to symmetry\n",
       "      Gam^r_th,th = -r\n",
       "      Gam^r_ph,ph = -r*sin(th)^2\n",
       "      Gam^th_r,th = 1/r\n",
       "      Gam^th_ph,ph = -cos(th)*sin(th)\n",
       "      Gam^ph_r,ph = 1/r\n",
       "      Gam^ph_th,ph = cos(th)/sin(th)\n",
       "\n",
       "   The same display can be obtained via the function\n",
       "   \"christoffel_symbols_display()\" acting on the metric:\n",
       "\n",
       "      sage: g.christoffel_symbols_display(chart=c_spher)\n",
       "      Gam^r_th,th = -r\n",
       "      Gam^r_ph,ph = -r*sin(th)^2\n",
       "      Gam^th_r,th = 1/r\n",
       "      Gam^th_ph,ph = -cos(th)*sin(th)\n",
       "      Gam^ph_r,ph = 1/r\n",
       "      Gam^ph_th,ph = cos(th)/sin(th)\n",
       "\u001b[0;31mInit docstring:\u001b[0m    Construct a Levi-Civita connection.\n",
       "\u001b[0;31mCall docstring:\u001b[0m\n",
       "   Action of the connection on a tensor field.\n",
       "\n",
       "   INPUT:\n",
       "\n",
       "   * \"tensor\" -- a tensor field T, of type (k,\\ell)\n",
       "\n",
       "   OUTPUT:\n",
       "\n",
       "   * tensor field \\nabla T.\n"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "nabla?"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 287,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "\u001b[0;31mSignature:\u001b[0m      \u001b[0mg\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mricci_scalar\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlatex_name\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
       "\u001b[0;31mDocstring:\u001b[0m     \n",
       "   Return the metric's Ricci scalar.\n",
       "\n",
       "   The Ricci scalar is the scalar field r defined from the Ricci\n",
       "   tensor Ric and the metric tensor g by\n",
       "\n",
       "      r = g^{ij} Ric_{ij}\n",
       "\n",
       "   INPUT:\n",
       "\n",
       "   * \"name\" -- (default: \"None\") name given to the Ricci scalar; if\n",
       "     none, it is set to \"r(g)\", where \"g\" is the metric's name\n",
       "\n",
       "   * \"latex_name\" -- (default: \"None\") LaTeX symbol to denote the\n",
       "     Ricci scalar; if none, it is set to \"r(g)\", where \"g\" is the\n",
       "     metric's name\n",
       "\n",
       "   OUTPUT:\n",
       "\n",
       "   * the Ricci scalar r, as an instance of \"DiffScalarField\"\n",
       "\n",
       "   EXAMPLES:\n",
       "\n",
       "   Ricci scalar of the standard metric on the 2-sphere:\n",
       "\n",
       "      sage: M = Manifold(2, 'S^2', start_index=1)\n",
       "      sage: U = M.open_subset('U') # the complement of a meridian (domain of spherical coordinates)\n",
       "      sage: c_spher.<th,ph> = U.chart(r'th:(0,pi):\\theta ph:(0,2*pi):\\phi')\n",
       "      sage: a = var('a') # the sphere radius\n",
       "      sage: g = U.metric('g')\n",
       "      sage: g[1,1], g[2,2] = a^2, a^2*sin(th)^2\n",
       "      sage: g.display() # standard metric on the 2-sphere of radius a:\n",
       "      g = a^2 dth⊗dth + a^2*sin(th)^2 dph⊗dph\n",
       "      sage: g.ricci_scalar()\n",
       "      Scalar field r(g) on the Open subset U of the 2-dimensional\n",
       "       differentiable manifold S^2\n",
       "      sage: g.ricci_scalar().display() # The Ricci scalar is constant:\n",
       "      r(g): U → ℝ\n",
       "         (th, ph) ↦ 2/a^2\n",
       "\u001b[0;31mInit docstring:\u001b[0m Initialize self.  See help(type(self)) for accurate signature.\n",
       "\u001b[0;31mFile:\u001b[0m           /private/var/tmp/sage-10.0-current/local/var/lib/sage/venv-python3.11.1/lib/python3.11/site-packages/sage/manifolds/differentiable/metric.py\n",
       "\u001b[0;31mType:\u001b[0m           method\n"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "g.ricci_scalar?"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "二つの疑問符 `??` は **Pythonソースコード** に直接導かれます。(SageMathはオープンソースです、そうでしょう？)\n",
    "<div hidden>\n",
    "Using a double question mark leads directly to the **Python source code** (SageMath is **open source**, isn't it?): </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 288,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "\u001b[0;31mSignature:\u001b[0m \u001b[0mg\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mricci_scalar\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlatex_name\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
       "\u001b[0;31mDocstring:\u001b[0m\n",
       "   Return the metric's Ricci scalar.\n",
       "\n",
       "   The Ricci scalar is the scalar field r defined from the Ricci\n",
       "   tensor Ric and the metric tensor g by\n",
       "\n",
       "      r = g^{ij} Ric_{ij}\n",
       "\n",
       "   INPUT:\n",
       "\n",
       "   * \"name\" -- (default: \"None\") name given to the Ricci scalar; if\n",
       "     none, it is set to \"r(g)\", where \"g\" is the metric's name\n",
       "\n",
       "   * \"latex_name\" -- (default: \"None\") LaTeX symbol to denote the\n",
       "     Ricci scalar; if none, it is set to \"r(g)\", where \"g\" is the\n",
       "     metric's name\n",
       "\n",
       "   OUTPUT:\n",
       "\n",
       "   * the Ricci scalar r, as an instance of \"DiffScalarField\"\n",
       "\n",
       "   EXAMPLES:\n",
       "\n",
       "   Ricci scalar of the standard metric on the 2-sphere:\n",
       "\n",
       "      sage: M = Manifold(2, 'S^2', start_index=1)\n",
       "      sage: U = M.open_subset('U') # the complement of a meridian (domain of spherical coordinates)\n",
       "      sage: c_spher.<th,ph> = U.chart(r'th:(0,pi):\\theta ph:(0,2*pi):\\phi')\n",
       "      sage: a = var('a') # the sphere radius\n",
       "      sage: g = U.metric('g')\n",
       "      sage: g[1,1], g[2,2] = a^2, a^2*sin(th)^2\n",
       "      sage: g.display() # standard metric on the 2-sphere of radius a:\n",
       "      g = a^2 dth⊗dth + a^2*sin(th)^2 dph⊗dph\n",
       "      sage: g.ricci_scalar()\n",
       "      Scalar field r(g) on the Open subset U of the 2-dimensional\n",
       "       differentiable manifold S^2\n",
       "      sage: g.ricci_scalar().display() # The Ricci scalar is constant:\n",
       "      r(g): U → ℝ\n",
       "         (th, ph) ↦ 2/a^2\n",
       "\u001b[0;31mSource:\u001b[0m   \n",
       "    \u001b[0;32mdef\u001b[0m \u001b[0mricci_scalar\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mname\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlatex_name\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m        \u001b[0;34mr\"\"\"\u001b[0m\n",
       "\u001b[0;34m        Return the metric's Ricci scalar.\u001b[0m\n",
       "\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m        The Ricci scalar is the scalar field `r` defined from the Ricci tensor\u001b[0m\n",
       "\u001b[0;34m        `Ric` and the metric tensor `g` by\u001b[0m\n",
       "\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m        .. MATH::\u001b[0m\n",
       "\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m            r = g^{ij} Ric_{ij}\u001b[0m\n",
       "\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m        INPUT:\u001b[0m\n",
       "\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m        - ``name`` -- (default: ``None``) name given to the Ricci scalar;\u001b[0m\n",
       "\u001b[0;34m          if none, it is set to \"r(g)\", where \"g\" is the metric's name\u001b[0m\n",
       "\u001b[0;34m        - ``latex_name`` -- (default: ``None``) LaTeX symbol to denote the\u001b[0m\n",
       "\u001b[0;34m          Ricci scalar; if none, it is set to \"\\\\mathrm{r}(g)\", where \"g\"\u001b[0m\n",
       "\u001b[0;34m          is the metric's name\u001b[0m\n",
       "\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m        OUTPUT:\u001b[0m\n",
       "\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m        - the Ricci scalar `r`, as an instance of\u001b[0m\n",
       "\u001b[0;34m          :class:`~sage.manifolds.differentiable.scalarfield.DiffScalarField`\u001b[0m\n",
       "\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m        EXAMPLES:\u001b[0m\n",
       "\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m        Ricci scalar of the standard metric on the 2-sphere::\u001b[0m\n",
       "\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m            sage: M = Manifold(2, 'S^2', start_index=1)\u001b[0m\n",
       "\u001b[0;34m            sage: U = M.open_subset('U') # the complement of a meridian (domain of spherical coordinates)\u001b[0m\n",
       "\u001b[0;34m            sage: c_spher.<th,ph> = U.chart(r'th:(0,pi):\\theta ph:(0,2*pi):\\phi')\u001b[0m\n",
       "\u001b[0;34m            sage: a = var('a') # the sphere radius\u001b[0m\n",
       "\u001b[0;34m            sage: g = U.metric('g')\u001b[0m\n",
       "\u001b[0;34m            sage: g[1,1], g[2,2] = a^2, a^2*sin(th)^2\u001b[0m\n",
       "\u001b[0;34m            sage: g.display() # standard metric on the 2-sphere of radius a:\u001b[0m\n",
       "\u001b[0;34m            g = a^2 dth⊗dth + a^2*sin(th)^2 dph⊗dph\u001b[0m\n",
       "\u001b[0;34m            sage: g.ricci_scalar()\u001b[0m\n",
       "\u001b[0;34m            Scalar field r(g) on the Open subset U of the 2-dimensional\u001b[0m\n",
       "\u001b[0;34m             differentiable manifold S^2\u001b[0m\n",
       "\u001b[0;34m            sage: g.ricci_scalar().display() # The Ricci scalar is constant:\u001b[0m\n",
       "\u001b[0;34m            r(g): U → ℝ\u001b[0m\n",
       "\u001b[0;34m               (th, ph) ↦ 2/a^2\u001b[0m\n",
       "\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m        \"\"\"\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m        \u001b[0;32mif\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_ricci_scalar\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0mmanif\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_ambient_domain\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0mric\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mricci\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0mig\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0minverse\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0mframe\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mig\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcommon_basis\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mric\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0mcric\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mric\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_components\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mframe\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0mcig\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mig\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_components\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mframe\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0mrsum1\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;36m0\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mmanif\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mirange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m                \u001b[0mrsum1\u001b[0m \u001b[0;34m+=\u001b[0m \u001b[0mcig\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m*\u001b[0m \u001b[0mcric\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0mrsum2\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;36m0\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mmanif\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mirange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m                \u001b[0;32mfor\u001b[0m \u001b[0mj\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mmanif\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mirange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mstart\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m                    \u001b[0mrsum2\u001b[0m \u001b[0;34m+=\u001b[0m \u001b[0mcig\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mj\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m*\u001b[0m \u001b[0mcric\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mj\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_ricci_scalar\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mrsum1\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;36m2\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0mrsum2\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0;32mif\u001b[0m \u001b[0mname\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m                \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_ricci_scalar\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_name\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m\"r(\"\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_name\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;34m\")\"\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m                \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_ricci_scalar\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_name\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mname\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0;32mif\u001b[0m \u001b[0mlatex_name\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m                \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_ricci_scalar\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_latex_name\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34mr\"\\mathrm{r}\\left(\"\u001b[0m \u001b[0;34m+\u001b[0m \\\n",
       "                                                 \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_latex_name\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;34mr\"\\right)\"\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m            \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m                \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_ricci_scalar\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_latex_name\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mlatex_name\u001b[0m\u001b[0;34m\u001b[0m\n",
       "\u001b[0;34m\u001b[0m        \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_ricci_scalar\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
       "\u001b[0;31mFile:\u001b[0m      /private/var/tmp/sage-10.0-current/local/var/lib/sage/venv-python3.11.1/lib/python3.11/site-packages/sage/manifolds/differentiable/metric.py\n",
       "\u001b[0;31mType:\u001b[0m      method\n"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "g.ricci_scalar??"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## さらに先へ：Going further\n",
    "\n",
    "[ページ:SageManifolds の例](https://sagemanifolds.obspm.fr/examples.html)をご覧ください。とくに、平行化不能な多様体（スカラー場は少なくとも二つの座標系で定義される必要があり、\n",
    "モジュール $\\mathfrak{X}(\\mathcal{M})$はもはやフリーではなく、\n",
    "テンソル場は少なくとも二つのフレームで定義される必要があります）\n",
    "での使い方については、\n",
    "[2-次元 球面](https://nbviewer.jupyter.org/github/sagemanifolds/SageManifolds/blob/master/Notebooks/SM_sphere_S2.ipynb)\n",
    "が役に立つでしょう。\n",
    "\n",
    "Christian Bär氏による[チュートリアル　ビデオ](https://www.youtube.com/playlist?list=PLnrOCYZpQUuJlnQbQ48zgGk-Ks1t145Yw)もご覧ください。\n",
    "<div hidden>\n",
    "Have a look at the [examples on SageManifolds page](https://sagemanifolds.obspm.fr/examples.html), especially the \n",
    "[2-dimensional sphere](https://nbviewer.jupyter.org/github/sagemanifolds/SageManifolds/blob/master/Notebooks/SM_sphere_S2.ipynb) for usage on a non-parallelizable manifold (each scalar field has to be defined in at least two coordinate charts, the $C^\\infty(\\mathcal{M})$-module $\\mathfrak{X}(\\mathcal{M})$ is no longer free and each tensor field has to be defined in at least two vector frames).\n",
    "\n",
    "You may also take a look at the [tutorial videos](https://www.youtube.com/playlist?list=PLnrOCYZpQUuJlnQbQ48zgGk-Ks1t145Yw) by Christian Bär.  </div>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "SageMath 10.0",
   "language": "sage",
   "name": "sagemath-10.0"
  },
  "language": "python",
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.11.1"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 4
}
