{
 "metadata": {
  "name": ""
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "markdown",
     "metadata": {},
     "source": [
      "Uk\u00e1zka pou\u017eit\u00ed n\u00e1stroje IPython na manipulaci se senzorov\u00fdmi daty\n",
      "=======\n",
      "\n",
      "P\u0159\u00edklad vyu\u017e\u00edv\u00e1 moduluvou stavebnici MLAB a jej\u00ed knihovnu https://github.com/MLAB-project/MLAB-I2c-modules \n",
      "\n",
      "Zprovozn\u011bn\u00ed demo k\u00f3du\n",
      "---------------------\n",
      "\n",
      "Nejd\u0159\u00edve zjist\u00edme zda m\u00e1me p\u0159\u00edstup pro z\u00e1pis a \u010dten\u00ed do syst\u00e9mov\u00e9ho za\u0159\u00edzen\u00ed. A jak\u00e9 \u010d\u00edslo m\u00e1 I\u00b2C sb\u011brnice na  kterou m\u00e1me p\u0159ipojen\u00e1 \u010didla. \n"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "!i2cdetect -l"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "i2c-0\ti2c       \ti915 gmbus ssc                  \tI2C adapter\r\n",
        "i2c-1\ti2c       \ti915 gmbus vga                  \tI2C adapter\r\n",
        "i2c-2\ti2c       \ti915 gmbus panel                \tI2C adapter\r\n",
        "i2c-3\ti2c       \ti915 gmbus dpc                  \tI2C adapter\r\n",
        "i2c-4\ti2c       \ti915 gmbus dpb                  \tI2C adapter\r\n",
        "i2c-5\ti2c       \ti915 gmbus dpd                  \tI2C adapter\r\n",
        "i2c-6\ti2c       \tDPDDC-C                         \tI2C adapter\r\n",
        "i2c-7\ti2c       \tDPDDC-D                         \tI2C adapter\r\n",
        "i2c-8\ti2c       \ti2c-tiny-usb at bus 001 device 005\tI2C adapter\r\n"
       ]
      }
     ],
     "prompt_number": 1
    },
    {
     "cell_type": "markdown",
     "metadata": {},
     "source": [
      "Proto\u017ee pro p\u0159ipojen\u00ed \u010didel k po\u010d\u00edta\u010di pou\u017e\u00edv\u00e1me adapt\u00e9r i2c-tiny-usb. Vid\u00edme, \u017ee sb\u011brnice m\u00e1 aktu\u00e1ln\u011b ozna\u010den\u00ed nap\u0159\u00edklad i2c-8. \n",
      "\n",
      "V p\u0159\u00edpad\u011b, \u017ee v\u00fd\u0161e uveden\u00fd p\u0159\u00edklad vr\u00e1t\u00ed chybu, nebo pojmenov\u00e1n\u00ed \"unknown\" tak nem\u00e1me p\u0159\u00edstup k syst\u00e9mov\u00fdm rozhran\u00edm. Ten z\u00edsk\u00e1me vytvo\u0159en\u00edm souboru s n\u00e1sleduj\u00edc\u00edm obsahem ve slo\u017ece:  /etc/udev/rules.d/i2c-devices.rules"
     ]
    },
    {
     "cell_type": "raw",
     "metadata": {},
     "source": [
      "KERNEL==\"i2c-[0-9]*\", GROUP=\"i2c\""
     ]
    },
    {
     "cell_type": "markdown",
     "metadata": {},
     "source": [
      "Toto ozna\u010den\u00ed budeme je\u0161t\u011b d\u00e1le pot\u0159ebovat, proto si jej ulo\u017e\u00edme da prom\u011bnn\u00e9. "
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "port = 8"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [],
     "prompt_number": 2
    },
    {
     "cell_type": "markdown",
     "metadata": {},
     "source": [
      "Budeme pokra\u010dovat na\u010dten\u00edm pot\u0159ebn\u00fdch modul\u016f pro zach\u00e1zen\u00ed s I\u00b2C sn\u00edma\u010di."
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "import time\n",
      "import datetime\n",
      "import sys\n",
      "\n",
      "from pymlab import config\n",
      "import matplotlib.pyplot as plt\n",
      "import numpy as np"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [],
     "prompt_number": 3
    },
    {
     "cell_type": "markdown",
     "metadata": {},
     "source": [
      "Nyn\u00ed si nadefinujeme strukturu p\u0159ipojen\u00ed jednotliv\u00fdch \u010didel na I\u00b2C sb\u011brnici."
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "cfg = config.Config(\n",
      "    i2c = {\n",
      "        \"port\": port,\n",
      "    },\n",
      "    bus = [\n",
      "        {\n",
      "            \"type\": \"i2chub\",\n",
      "            \"address\": 0x72,\n",
      "            \n",
      "            \"children\": [\n",
      "                {\"name\": \"acc\", \"type\": \"imu01_acc\", \"sensitivity\": 4.0, \"channel\": 0, },   \n",
      "            ],\n",
      "        },\n",
      "    ],\n",
      ")"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [],
     "prompt_number": 8
    },
    {
     "cell_type": "markdown",
     "metadata": {},
     "source": [
      "Tuto strukturu inicializujeme, aby jsme dos\u00e1hli definovan\u00e9 konfigurace \u010didel."
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "cfg.initialize()\n",
      "acc = cfg.get_device(\"acc\")\n",
      "time.sleep(0.5)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stderr",
       "text": [
        "WARNING:pymlab.sensors.iic:HID device does not exist, we will try SMBus directly...\n"
       ]
      }
     ],
     "prompt_number": 9
    },
    {
     "cell_type": "markdown",
     "metadata": {},
     "source": [
      "Nyn\u00ed u\u017e m\u016f\u017eeme p\u0159\u00edmo komunikovat se za\u0159\u00edzen\u00edm pojmenovan\u00fdm jako acc."
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "MEASUREMENTS = 1000\n",
      "x = np.zeros(MEASUREMENTS)\n",
      "y = np.zeros(MEASUREMENTS)\n",
      "z = np.zeros(MEASUREMENTS)\n",
      "\n",
      "#    acc.route()  V p\u0159\u00edpad\u011b v\u00edce \u010didel je pot\u0159eba ke ka\u017ed\u00e9mu p\u0159ed jeho pou\u017eit\u00edm nechat vyroutovat cesutu na sb\u011brnici.\n",
      "\n",
      "for n in range(MEASUREMENTS):\n",
      "    (x[n], y[n], z[n]) = acc.axes()\n",
      "    print( n, x[n], y[n], z[n])"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "(0, -0.81022499999999997, -0.54599999999999993, -0.26715)\n",
        "(1, -0.83362499999999995, -0.52162500000000001, -0.26032499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(2, -0.70297500000000002, -0.61327500000000001, -0.39487499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(3, -0.83996249999999995, -0.58694999999999997, -0.35489999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(4, -0.74246249999999991, -0.70199999999999996, -0.33052499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(5, -0.51285000000000003, -0.83947499999999997, -0.30614999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(6, -0.058987499999999998, -0.95647499999999996, -0.14235)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(7, 0.25447500000000001, -0.84142499999999998, 0.011699999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(8, 0.70199999999999996, -0.64203749999999993, -0.071175000000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(9, 0.90284999999999993, -0.16965, -0.047774999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(10, 1.0125374999999999, 0.084824999999999998, -0.14624999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(11, 0.92917499999999997, 0.244725, -0.1028625)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(12, 0.80291249999999992, 0.59670000000000001, -0.44264999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(13, 0.57329999999999992, 0.77171249999999991, -0.4914)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(14, 0.35197499999999998, 0.84532499999999999, -0.48067499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(15, 0.10237499999999999, 0.92527499999999996, -0.40121249999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(16, -0.086774999999999991, 0.90479999999999994, -0.312975)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(17, -0.47872499999999996, 0.81461249999999996, -0.27689999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(18, -0.77999999999999992, 0.53722499999999995, -0.31004999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(19, -0.90674999999999994, 0.085800000000000001, -0.17354999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(20, -0.98377499999999996, -0.36854999999999999, -0.24862499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(21, -0.83460000000000001, -0.638625, -0.2457)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(22, -0.55379999999999996, -0.81363750000000001, -0.2145)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(23, -0.35148750000000001, -0.818025, -0.69712499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(24, -0.33344999999999997, -0.30419999999999997, -0.96914999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(25, -0.39097499999999996, 0.075075000000000003, -0.82289999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(26, -0.80145, 0.252525, -0.74002499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(27, -0.53576250000000003, 0.69029999999999991, -0.54794999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(28, -0.16574999999999998, 0.9204, -0.48701249999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(29, 0.2588625, 0.83752499999999996, -0.40462499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(30, 0.65617499999999995, 0.61522500000000002, -0.34709999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(31, 0.69419999999999993, 0.18817499999999998, -0.61181249999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(32, 0.75562499999999999, -0.10237499999999999, -0.81509999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(33, 0.43972499999999998, -0.27397499999999997, -0.88432499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(34, 0.56940000000000002, -0.41827500000000001, -0.56940000000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(35, 0.43290000000000001, -0.70492499999999991, -0.59572499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(36, 0.084824999999999998, -0.73904999999999998, -0.76439999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(37, -0.27299999999999996, -0.54599999999999993, -0.82192500000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(38, -0.47969999999999996, -0.46507499999999996, -0.70784999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(39, -0.53527499999999995, -0.33832499999999999, -0.79657499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(40, -0.67079999999999995, -0.071175000000000002, -0.71954999999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(41, -0.76049999999999995, 0.21742499999999998, -0.70687499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(42, -0.64934999999999998, 0.35392499999999999, -0.80047499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(43, -0.57427499999999998, 0.357825, -0.83947499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(44, -0.43338749999999998, 0.17257499999999998, -1.0208249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(45, -0.063375000000000001, 0.110175, -1.1456249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(46, 0.43290000000000001, 0.1794, -0.88139999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(47, 0.45581249999999995, 0.14722499999999999, -0.96524999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(48, 0.56745000000000001, 0.14527499999999999, -0.75074999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(49, 0.73904999999999998, 0.034124999999999996, -0.61814999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(50, 0.84483749999999991, -0.012674999999999999, -0.41144999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(51, 0.92771249999999994, -0.10627499999999999, -0.15989999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(52, 0.96232499999999999, -0.11943749999999999, 0.067275000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(53, 0.92917499999999997, -0.207675, 0.47774999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(54, 0.77317499999999995, -0.2535, 0.68835000000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(55, 0.57524999999999993, -0.23887499999999998, 0.83265)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(56, 0.268125, -0.37829999999999997, 0.83362499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(57, 0.02145, -0.66592499999999999, 0.66592499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(58, -0.48067499999999996, -0.699075, 0.27689999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(59, -0.79169999999999996, -0.62497499999999995, -0.0014624999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(60, -0.70004999999999995, -0.64349999999999996, -0.27592499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(61, -0.69322499999999998, -0.61522500000000002, -0.39779999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(62, -0.67518749999999994, -0.62790000000000001, -0.548925)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(63, -0.45434999999999998, -0.66494999999999993, -0.71954999999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(64, 0.39633750000000001, -0.50407499999999994, -0.50895000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(65, 0.85409999999999997, -0.47092499999999998, 0.20865)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(66, 0.62887499999999996, -0.065324999999999994, 0.58304999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(67, 0.47969999999999996, 0.20085, 1.0110749999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(68, -0.10237499999999999, 0.73319999999999996, 0.50309999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(69, -0.43679999999999997, 0.84776249999999997, 0.0195)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(70, -0.54648750000000001, 0.79803749999999996, -0.5884125)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(71, -0.21839999999999998, 0.43874999999999997, -0.98572499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(72, -0.11505, 0.114075, -1.067625)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(73, -0.099937499999999999, 0.085800000000000001, -1.0832249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(74, 0.11505, 0.58109999999999995, -0.79998749999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(75, 0.28664999999999996, 0.818025, -0.19305)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(76, 0.52844999999999998, 0.82094999999999996, -0.0277875)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(77, 0.6157125, 0.8034, 0.25545000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(78, 0.59572499999999995, 0.42217499999999997, 0.6552)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(79, 0.56062499999999993, 0.27982499999999999, 0.81217499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(80, 0.62107499999999993, 0.016574999999999999, 0.69224999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(81, 0.67957499999999993, -0.21937499999999999, 0.50700000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(82, 0.69224999999999992, -0.47189999999999999, 0.16087499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(83, 0.70784999999999998, -0.64154999999999995, 0.20572499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(84, 0.55769999999999997, -0.84824999999999995, 0.33929999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(85, 0.071175000000000002, -0.94282499999999991, 0.33247499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(86, -0.084824999999999998, -0.94672499999999993, 0.30809999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(87, -0.1184625, -0.97792499999999993, -0.011699999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(88, -0.18914999999999998, -0.92624999999999991, -0.52406249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(89, 0.02145, -0.70882499999999993, -0.76244999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(90, 0.1993875, -0.38414999999999999, -0.95647499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(91, 0.30419999999999997, -0.051674999999999999, -1.026675)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(92, 0.50212499999999993, -0.039, -0.92137499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(93, 0.57573750000000001, -0.19305, -0.77999999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(94, 0.52844999999999998, -0.62058749999999996, -0.38756249999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(95, 0.41388749999999996, -0.86580000000000001, 0.19109999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(96, 0.48067499999999996, -0.624, 0.74197499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(97, 0.445575, -0.12772500000000001, 0.83655000000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(98, 0.44264999999999999, 0.2145, 0.63082499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(99, 0.89456249999999993, 0.19694999999999999, -0.097499999999999989)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(100, 0.85604999999999998, -0.039974999999999997, -0.72344999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(101, 0.54794999999999994, -0.149175, -0.87749999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(102, 0.31784999999999997, -0.3276, -0.79267500000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(103, 0.2598375, -0.64252500000000001, -0.72734999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(104, 0.29493749999999996, -0.78487499999999999, -0.49627499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(105, 0.25447500000000001, -0.88139999999999996, -0.27787499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(106, 0.41876249999999998, -0.85458749999999994, -0.13747499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(107, 0.62497499999999995, -0.70784999999999998, -0.11309999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(108, 0.75172499999999998, -0.53039999999999998, -0.37732499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(109, 0.77171249999999991, -0.25837499999999997, -0.72344999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(110, 0.61522500000000002, -0.046799999999999994, -0.85312499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(111, 0.36269999999999997, -0.049724999999999998, -0.995475)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(112, 0.49627499999999997, -0.25496249999999998, -0.73514999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(113, 0.79413749999999994, -0.35197499999999998, -0.10188749999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(114, 0.89407499999999995, -0.19548749999999998, 0.5655)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(115, 0.46166249999999998, -0.141375, 1.0544624999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(116, -0.13747499999999999, 0.00097499999999999996, 0.80827499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(117, -0.81119999999999992, -0.11699999999999999, 0.28664999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(118, -0.91698749999999996, -0.31492500000000001, -0.04095)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(119, -0.89017499999999994, -0.43874999999999997, -0.52064999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(120, -0.61522500000000002, -0.42119999999999996, -0.83655000000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(121, -0.40413749999999998, 0.0077999999999999996, -1.0705499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(122, -0.64496249999999999, 0.268125, -0.63472499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(123, -0.72539999999999993, 0.236925, -0.52747500000000003)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(124, -0.97109999999999996, 0.016574999999999999, -0.0068249999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(125, -0.98085, -0.13747499999999999, 0.342225)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(126, -0.78389999999999993, -0.162825, 0.77999999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(127, -0.41096250000000001, 0.24862499999999998, 0.84824999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(128, -0.30907499999999999, 0.77317499999999995, 0.076049999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(129, -0.64154999999999995, 0.72052499999999997, -0.50895000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(130, -0.39584999999999998, 0.22522499999999998, -1.0578749999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(131, -0.192075, -0.23497499999999999, -0.96817500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(132, 0.27982499999999999, -0.48945, -0.81119999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(133, 0.46799999999999997, -0.70687499999999992, -0.54307499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(134, 0.53771249999999993, -0.77122499999999994, -0.050699999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(135, 0.54794999999999994, -0.75659999999999994, 0.48359999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(136, 0.30809999999999998, -0.52844999999999998, 0.77317499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(137, -0.0068249999999999995, -0.083849999999999994, 0.94867499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(138, -0.39487499999999998, 0.10725, 0.73709999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(139, -0.58694999999999997, -0.24667499999999998, 0.6157125)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(140, -0.75172499999999998, -0.48847499999999999, 0.34027499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(141, -0.70589999999999997, -0.76829999999999998, -0.19499999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(142, -0.17354999999999998, -0.82874999999999999, -0.44947499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(143, 0.6157125, -0.58889999999999998, -0.24033749999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(144, 0.97792499999999993, 0.096525, 0.34027499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(145, 0.61424999999999996, 0.70882499999999993, 0.45239999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(146, 0.4099875, 0.818025, -0.52259999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(147, 0.36172499999999996, 0.59816249999999993, -0.92917499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(148, 0.055574999999999999, 0.36269999999999997, -1.0135125)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(149, 0.10871249999999999, -0.26324999999999998, -1.0447124999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(150, -0.3943875, -0.199875, -0.78292499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(151, -0.64154999999999995, -0.45337499999999997, -0.728325)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(152, -0.75221249999999995, -0.39877499999999999, -0.35099999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(153, -0.88529999999999998, -0.268125, -0.12675)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(154, -0.91113749999999993, -0.37439999999999996, 0.41535)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(155, -0.29786249999999997, -0.51674999999999993, 0.65812499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(156, 0.46994999999999998, -0.73271249999999999, 0.37927499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(157, 0.68640000000000001, -0.78779999999999994, 0.0058499999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(158, 0.60839999999999994, -0.818025, -0.133575)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(159, 0.39682499999999998, -0.85019999999999996, -0.17354999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(160, 0.24862499999999998, -0.91747499999999993, -0.20865)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(161, 0.21059999999999998, -0.88529999999999998, -0.39389999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(162, 0.029249999999999998, -0.97792499999999993, 0.0)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(163, -0.049724999999999998, -0.97841249999999991, 0.27007500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(164, -0.11309999999999999, -0.96232499999999999, 0.416325)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(165, 0.34173749999999997, -0.86385000000000001, -0.29152499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(166, 0.37829999999999997, -0.74490000000000001, -0.29542499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(167, 0.62692499999999995, -0.45727499999999999, -0.61278749999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(168, 0.5864625, 0.3276, -0.81607499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(169, 0.01755, 0.85409999999999997, -0.59084999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(170, 0.00975, 0.97207499999999991, -0.070199999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(171, 0.023399999999999997, 0.995475, 0.03705)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(172, 0.11748749999999999, 0.87944999999999995, 0.15746250000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(173, -0.004875, 0.94184999999999997, 0.16184999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(174, -0.045824999999999998, 0.99157499999999998, 0.32077499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(175, -0.012674999999999999, 1.0247249999999999, -0.11115)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(176, -0.11651249999999999, 1.0880999999999998, 0.20085)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(177, -0.30712499999999998, 0.81899999999999995, -0.49334999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(178, 0.035587500000000001, 0.94574999999999998, -0.15356249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(179, -0.1399125, 1.0569, -0.18427499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(180, 0.11115, 0.81997500000000001, -0.65812499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(181, 0.52308749999999993, 0.28470000000000001, -0.77415)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(182, 0.74490000000000001, 0.066299999999999998, -0.70102500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(183, 0.79949999999999999, -0.32955000000000001, -0.61814999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(184, 0.65715000000000001, -0.33929999999999999, -0.59084999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(185, 0.156, -0.73124999999999996, -0.24033749999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(186, -0.080437499999999995, -0.92478749999999998, 0.14624999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(187, -0.89115, -0.31492500000000001, 0.070199999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(188, -0.97694999999999999, 0.44069999999999998, 0.236925)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(189, -0.71467499999999995, 0.80145, 0.1482)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(190, -0.60060000000000002, 0.78097499999999997, 0.21742499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(191, -0.268125, 1.0208249999999999, 0.07897499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(192, -0.68201250000000002, 0.44167499999999998, 0.19305)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(193, -0.87896249999999998, 0.14624999999999999, 0.092624999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(194, -1.1163749999999999, -0.36659999999999998, -0.46604999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(195, -0.21742499999999998, -0.50797499999999995, -0.79559999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(196, 0.43436249999999998, -0.31395000000000001, -0.75269999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(197, 0.63569999999999993, 0.070199999999999999, -0.57329999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(198, 0.79949999999999999, 0.22424999999999998, -0.39584999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(199, 0.92624999999999991, 0.2223, -0.38999999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(200, 0.94964999999999999, 0.27884999999999999, -0.11992499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(201, 0.98231249999999992, -0.25545000000000001, 0.40754999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(202, 0.59767499999999996, -0.57622499999999999, 0.46312499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(203, 0.076049999999999993, -0.88919999999999999, 0.51772499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(204, -0.34514999999999996, -0.65032499999999993, 0.55769999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(205, -0.71272499999999994, -0.42607499999999998, 0.54307499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(206, -0.60254999999999992, -0.39633750000000001, 0.69614999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(207, -0.71565000000000001, 0.004875, 0.63569999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(208, -0.69371249999999995, 0.2442375, 0.64057500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(209, -0.54210000000000003, 0.966225, 0.10237499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(210, -0.48457499999999998, 0.98767499999999997, -0.27982499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(211, -0.24862499999999998, 0.98085, -0.3339375)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(212, -0.34320000000000001, 0.786825, -0.63277499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(213, -0.1326, 0.74977499999999997, -0.81704999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(214, 0.16769999999999999, 0.77805000000000002, -0.64544999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(215, 0.11505, 0.96671249999999997, -0.39731249999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(216, 0.067762500000000003, 0.905775, -0.16672499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(217, 0.75172499999999998, 0.40462499999999996, -0.268125)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(218, 1.022775, -0.093599999999999989, 0.21839999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(219, 1.0949249999999999, -0.31346249999999998, 0.08287499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(220, 0.81753749999999992, -0.70053749999999992, -0.0024375)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(221, 0.44264999999999999, -0.4758, -0.93794999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(222, 0.20474999999999999, -0.19597499999999998, -0.98182499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(223, 0.74538749999999998, -0.32272499999999998, 0.14332499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(224, 0.38805000000000001, -0.43582499999999996, 0.91552499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(225, -0.38024999999999998, -0.10237499999999999, 0.68835000000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(226, -0.58938749999999995, -0.20572499999999999, 0.67567499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(227, -0.86580000000000001, -0.26910000000000001, 0.51187499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(228, -0.69809999999999994, -0.16672499999999998, 0.64642499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(229, -0.74392499999999995, -0.1633125, 0.64447500000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(230, -0.73758749999999995, -0.14429999999999998, 0.48847499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(231, -0.83167499999999994, -0.25739999999999996, 0.31589999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(232, -0.92332499999999995, -0.56745000000000001, 0.09018749999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(233, -0.84629999999999994, -0.57524999999999993, 0.046799999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(234, -0.61717499999999992, -0.52162500000000001, -0.65812499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(235, -0.31638749999999999, -0.52552500000000002, -0.90382499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(236, -0.17647499999999999, -0.44703749999999998, -0.907725)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(237, -0.20279999999999998, -0.40754999999999997, -0.9179624999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(238, -0.0019499999999999999, -0.31784999999999997, -0.95647499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(239, 0.19597499999999998, -0.357825, -0.91552499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(240, 0.68347499999999994, -0.29688749999999997, -0.38805000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(241, 0.9579375, -0.23594999999999999, 0.28470000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(242, 0.73758749999999995, -0.30712499999999998, 0.70882499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(243, 0.40852499999999997, -0.33734999999999998, 0.92917499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(244, 0.0112125, -0.29542499999999999, 0.91601250000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(245, -0.20572499999999999, -0.28762499999999996, 0.88237499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(246, -0.21011249999999998, -0.29152499999999998, 0.93014999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(247, 0.1272375, -0.50992499999999996, 0.58694999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(248, 0.56940000000000002, -0.85751250000000001, -0.096525)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(249, 0.35294999999999999, -0.80388749999999998, -0.49822499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(250, -0.18719999999999998, -0.81217499999999998, -0.429975)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(251, -0.38951249999999998, -0.82387499999999991, -0.2223)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(252, -0.74295, -0.59377499999999994, 0.117975)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(253, -0.75513750000000002, -0.28275, 0.74392499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(254, -0.371475, -0.16087499999999999, 0.85702499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(255, -0.082387500000000002, -0.81607499999999999, 0.31053749999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(256, -0.1184625, -0.77415, -0.82582499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(257, -0.14624999999999999, -0.084824999999999998, -1.10565)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(258, -0.098474999999999993, 0.21937499999999999, -1.0461749999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(259, -0.14429999999999998, 0.40462499999999996, -0.95452499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(260, -0.27689999999999998, 0.48262499999999997, -0.93112499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(261, -0.39194999999999997, -0.055574999999999999, -1.2002249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(262, -0.45239999999999997, -0.48067499999999996, -0.68445)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(263, -0.400725, -0.72929999999999995, -0.51772499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(264, -0.24862499999999998, -0.95257499999999995, -0.14235)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(265, -0.075562499999999991, -0.91552499999999992, 0.46166249999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(266, 0.083849999999999994, -0.63569999999999993, 0.76829999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(267, 0.36269999999999997, -0.1330875, 0.87359999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(268, 0.39633750000000001, 0.10968749999999999, 0.91162499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(269, -0.022425, 0.114075, 0.92527499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(270, -0.28859999999999997, -0.17647499999999999, 0.91162499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(271, -0.29542499999999999, -0.61327500000000001, 0.65617499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(272, -0.16184999999999999, -0.90382499999999999, 0.43338749999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(273, -0.011699999999999999, -0.93209999999999993, 0.33344999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(274, 0.12918749999999998, -0.62887499999999996, 0.85019999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(275, 0.2145, 0.26129999999999998, 0.88724999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(276, -0.0077999999999999996, 0.73417499999999991, 0.58889999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(277, -0.41827500000000001, 0.87067499999999998, 0.31979999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(278, -0.7137, 0.6030375, 0.156975)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(279, -0.92186249999999992, 0.077512499999999998, -0.2608125)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(280, -0.89602499999999996, -0.36757499999999999, -0.67274999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(281, -0.42217499999999997, -0.63667499999999999, -0.73612499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(282, -0.078, -0.78292499999999998, -0.61376249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(283, -0.024374999999999997, -0.84239999999999993, -0.44752500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(284, 0.1486875, -0.88919999999999999, -0.21937499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(285, -0.25447500000000001, -0.78292499999999998, 0.60644999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(286, -0.33149999999999996, -0.0068249999999999995, 0.86872499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(287, -0.70979999999999999, -0.095549999999999996, 0.49237499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(288, -0.92819999999999991, -0.18914999999999998, 0.18914999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(289, -0.95013749999999997, -0.26032499999999997, 0.022912499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(290, -0.92332499999999995, -0.27689999999999998, -0.19012499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(291, -0.88383749999999994, -0.192075, -0.71857499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(292, -0.51577499999999998, -0.29249999999999998, -1.0042499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(293, 0.34320000000000001, -0.13064999999999999, -0.57914999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(294, 0.88432499999999992, -0.43777499999999997, -0.12869999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(295, 0.87311249999999996, -0.3276, 0.18768749999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(296, 0.62887499999999996, -0.1794, 1.0490999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(297, -0.15307499999999999, 0.20426249999999999, 0.78974999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(298, -0.80437499999999995, 0.12869999999999998, 0.31784999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(299, -0.907725, 0.034612499999999997, 0.16965)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(300, -1.014, -0.30419999999999997, 0.098474999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(301, -0.9764624999999999, -0.4017, -0.49432499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(302, -0.53722499999999995, -0.52259999999999995, -0.93112499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(303, 0.022912499999999999, -0.23204999999999998, -1.0237499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(304, -0.252525, 0.117975, -0.82972499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(305, -0.57427499999999998, 0.20865, -0.57427499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(306, -0.91844999999999999, 0.00097499999999999996, -0.31979999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(307, -0.94233749999999994, -0.37927499999999997, 0.28664999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(308, -0.36659999999999998, -0.41924999999999996, 0.88871249999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(309, 0.46702499999999997, 0.084824999999999998, 0.69419999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(310, 0.85312499999999991, 0.37439999999999996, 0.38024999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(311, 0.80291249999999992, 0.42314999999999997, -0.48457499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(312, 0.73173749999999993, 0.089700000000000002, -0.89017499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(313, 0.36611250000000001, -0.79462499999999991, -0.68932499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(314, -0.133575, -0.669825, -0.7137)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(315, -0.4675125, -0.58499999999999996, -0.35489999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(316, -0.96378749999999991, -0.33734999999999998, 0.58597500000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(317, -0.34612499999999996, 0.015599999999999999, 0.91893749999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(318, 0.30224999999999996, 0.59670000000000001, 0.46994999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(319, 0.79949999999999999, 0.48262499999999997, -0.077024999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(320, 0.97743749999999996, 0.30127499999999996, -0.29932500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(321, 0.92673749999999999, 0.24959999999999999, -0.67469999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(322, 0.74099999999999999, 0.1633125, -0.85507499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(323, 0.24033749999999998, 0.30419999999999997, -1.02765)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(324, -0.075075000000000003, 0.014624999999999999, -0.9993749999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(325, -0.51090000000000002, -0.01755, -0.88919999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(326, -0.79559999999999997, -0.083849999999999994, -0.31687499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(327, -0.94233749999999994, -0.49529999999999996, 0.3276)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(328, -0.44655, -0.49334999999999996, 0.73417499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(329, 0.40365000000000001, -0.50797499999999995, 0.42899999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(330, 0.88237499999999991, -0.52357500000000001, 0.011699999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(331, 0.89992499999999997, -0.30907499999999999, -0.47189999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(332, 0.84337499999999999, -0.357825, -0.52552500000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(333, 0.44264999999999999, -0.50017499999999993, -0.53234999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(334, 0.067762500000000003, -0.87847500000000001, -0.28957499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(335, -0.16916249999999999, -0.9286875, -0.39292499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(336, -0.15892499999999998, -0.94379999999999997, -0.355875)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(337, 0.47969999999999996, -0.62790000000000001, 0.51285000000000003)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(338, 0.67226249999999999, -0.12967499999999998, 0.83216249999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(339, 0.28859999999999997, 0.90674999999999994, 0.33149999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(340, -0.40852499999999997, 0.87359999999999993, -0.047774999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(341, -0.69809999999999994, 0.77171249999999991, -0.070199999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(342, -0.69468750000000001, 0.68786249999999993, -0.099449999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(343, -0.76439999999999997, 0.62887499999999996, -0.100425)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(344, -0.83752499999999996, 0.59084999999999999, -0.093599999999999989)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(345, -0.79657499999999992, 0.47872499999999996, -0.025349999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(346, -0.98962499999999998, 0.3641625, 0.085800000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(347, -1.0130250000000001, 0.34514999999999996, -0.047774999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(348, -0.99157499999999998, -0.50212499999999993, -0.28762499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(349, -0.44167499999999998, -0.70492499999999991, -0.76439999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(350, 0.0024375, -0.33539999999999998, -0.94769999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(351, 0.061912499999999995, -0.20231249999999998, -1.0725)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(352, -0.11992499999999999, -0.056549999999999996, -0.96914999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(353, -0.3349125, -0.355875, -0.81217499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(354, -0.70882499999999993, -0.61619999999999997, -0.39487499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(355, -0.89992499999999997, -0.40706249999999999, 0.052649999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(356, -0.96037499999999998, 0.042900000000000001, 0.44069999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(357, -0.75367499999999998, 0.63082499999999997, 0.48652499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(358, -0.097499999999999989, 0.93599999999999994, 0.088724999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(359, 0.2457, 0.89797499999999997, 0.35197499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(360, 0.44752500000000001, 0.61034999999999995, 0.59182499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(361, 0.57135000000000002, 0.170625, 0.81899999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(362, 0.62497499999999995, -0.27884999999999999, 0.58109999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(363, 0.62692499999999995, -0.62497499999999995, 0.24911249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(364, 0.73514999999999997, -0.74587499999999995, -0.15209999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(365, 0.56452499999999994, -0.68054999999999999, -0.58597500000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(366, 0.56842499999999996, -0.56891249999999993, -0.68542499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(367, 0.37245, -0.37342500000000001, -1.2743249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(368, 0.121875, -0.15015000000000001, -1.0105875)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(369, 0.013649999999999999, 0.34514999999999996, -0.83947499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(370, 0.53820000000000001, 0.59670000000000001, -0.44849999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(371, 0.70589999999999997, 0.51187499999999997, 0.055574999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(372, 0.6552, 0.3651375, 0.89992499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(373, 0.1638, -0.125775, 1.0880999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(374, -0.42509999999999998, -0.52601249999999999, 0.77902499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(375, -0.68347499999999994, -0.76439999999999997, -0.091162499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(376, -0.43582499999999996, -0.29347499999999999, -1.0062)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(377, -0.15209999999999999, 0.21157499999999999, -0.97694999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(378, -0.342225, 0.50895000000000001, -0.83460000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(379, -0.52406249999999999, 0.67274999999999996, -0.56842499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(380, -0.53381250000000002, 0.8555625, -0.11309999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(381, -0.64008749999999992, 0.69224999999999992, 0.42509999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(382, -0.476775, 0.757575, 0.40365000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(383, -0.39584999999999998, 0.68493749999999998, -0.36269999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(384, -0.76732499999999992, 0.22619999999999998, -0.89358749999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(385, -0.32857500000000001, -0.33637499999999998, -0.93989999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(386, 0.21937499999999999, -0.74879999999999991, -0.36757499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(387, 0.69517499999999999, -0.57914999999999994, 0.16672499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(388, 0.69614999999999994, -0.71662499999999996, 0.50992499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(389, 0.35148750000000001, -0.49627499999999997, 0.79267500000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(390, -0.33247499999999997, -0.53527499999999995, 0.64934999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(391, -0.73271249999999999, -0.18525, 0.74782499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(392, -0.35099999999999998, 0.18914999999999998, 0.90674999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(393, -0.215475, 0.70297500000000002, 0.68152499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(394, -0.252525, 0.82972499999999993, 0.27007500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(395, -0.33539999999999998, 0.98621249999999994, -0.57427499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(396, 0.027299999999999998, 0.68201250000000002, -0.73124999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(397, 0.53039999999999998, 0.65812499999999996, -0.47384999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(398, 0.91649999999999998, 0.52552500000000002, 0.1638)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(399, -0.0063374999999999994, 0.66689999999999994, 0.57817499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(400, -0.70833749999999995, 0.027299999999999998, 0.56257499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(401, -0.63521249999999996, -0.34320000000000001, 0.83167499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(402, -0.23984999999999998, -0.30127499999999996, 0.93599999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(403, 0.35392499999999999, -0.035099999999999999, 0.76732499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(404, 0.81899999999999995, -0.055574999999999999, 0.33344999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(405, 0.85409999999999997, -0.74977499999999997, 0.31004999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(406, 0.23497499999999999, -0.99059999999999993, -0.054599999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(407, -0.33686250000000001, -0.83557499999999996, -0.28762499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(408, -0.71808749999999999, -0.46994999999999998, -0.20474999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(409, -0.40706249999999999, -0.164775, 0.93599999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(410, 0.52162500000000001, 0.073124999999999996, 0.62985000000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(411, 0.85166249999999999, 0.26519999999999999, 0.13747499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(412, 0.91113749999999993, 0.36074999999999996, -0.30907499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(413, 0.69029999999999991, 0.26129999999999998, -0.77122499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(414, 0.38902500000000001, 0.091649999999999995, -0.98182499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(415, 0.13942499999999999, -0.10335, -1.077375)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(416, 0.14429999999999998, -0.54697499999999999, -0.79998749999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(417, -0.37927499999999997, -0.90089999999999992, 0.053624999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(418, -0.44264999999999999, -0.77366249999999992, 0.35489999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(419, -0.41827500000000001, -0.64154999999999995, 0.580125)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(420, -0.23497499999999999, -0.28664999999999996, 0.90479999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(421, -0.26129999999999998, -0.058012499999999995, 0.9701249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(422, -0.33344999999999997, 0.03705, 0.847275)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(423, -0.59475, 0.090674999999999992, 0.46215000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(424, -0.94038749999999993, -0.34320000000000001, -0.40949999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(425, -0.580125, -0.35880000000000001, -0.93307499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(426, 0.0014624999999999998, 0.012187499999999999, -0.9179624999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(427, 0.67079999999999995, 0.27689999999999998, -0.66202499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(428, 1.0110749999999999, 0.064349999999999991, -0.18086249999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(429, 1.0159499999999999, -0.0297375, 0.59670000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(430, 0.56452499999999994, 0.20865, 0.74879999999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(431, 0.21839999999999998, 0.37732499999999997, 0.80242499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(432, 0.21742499999999998, 0.39194999999999997, 0.67713749999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(433, 0.17501249999999999, 0.519675, 0.85019999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(434, 0.12967499999999998, 0.490425, 0.89163749999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(435, -0.51869999999999994, -0.74782499999999996, -0.050699999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(436, -0.67177500000000001, -0.5572125, -0.43290000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(437, -0.88334999999999997, -0.199875, -0.30907499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(438, -0.847275, -0.24862499999999998, 0.63179999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(439, -0.3943875, 0.054599999999999996, 0.91649999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(440, 0.48067499999999996, 0.24959999999999999, 0.72637499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(441, 0.82874999999999999, 0.41193749999999996, 0.28275)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(442, 0.84922500000000001, -0.49237499999999995, -0.77317499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(443, -0.066299999999999998, -0.70589999999999997, -0.88773749999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(444, -0.42119999999999996, -0.40559999999999996, -0.82631250000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(445, -0.33149999999999996, -0.44752500000000001, -0.62497499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(446, -0.8619, -0.34709999999999996, 0.46994999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(447, -0.43972499999999998, -0.046799999999999994, 0.93794999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(448, 0.4173, 0.44996249999999999, 0.59377499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(449, 0.51674999999999993, 0.59377499999999994, 0.416325)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(450, 0.57135000000000002, 0.77902499999999997, 0.19889999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(451, 0.27105000000000001, 0.83167499999999994, 0.58548749999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(452, -0.8536125, -0.24959999999999999, 0.18719999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(453, -0.80681249999999993, -0.61132500000000001, -0.74587499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(454, -0.192075, -0.39194999999999997, -0.91454999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(455, -0.2379, -0.312, -1.0218)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(456, -0.053624999999999999, -0.090674999999999992, -1.0919999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(457, 0.59865000000000002, 0.19597499999999998, -0.44069999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(458, 0.9325874999999999, 0.37732499999999997, 0.51869999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(459, 0.55477500000000002, 0.023399999999999997, 0.966225)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(460, -0.25447500000000001, -0.60254999999999992, 0.70736250000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(461, -0.42802499999999999, -1.0120499999999999, 0.1252875)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(462, -0.61229999999999996, -0.85507499999999992, -0.192075)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(463, -0.69761249999999997, -0.31395000000000001, -0.80827499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(464, -0.60011249999999994, -0.43874999999999997, -0.42948749999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(465, -0.89602499999999996, 0.12041249999999999, 0.67713749999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(466, -0.0029249999999999996, 0.71272499999999994, 0.63179999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(467, 0.66689999999999994, 0.31979999999999997, 0.58743749999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(468, 1.0725, -0.39194999999999997, -0.21157499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(469, 0.46507499999999996, -0.71077499999999993, -0.79852499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(470, 0.064349999999999991, -0.71760000000000002, -0.79462499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(471, -0.022912499999999999, -0.62692499999999995, -0.757575)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(472, -0.818025, -0.41924999999999996, 0.30809999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(473, -0.69566249999999996, 0.11212499999999999, 0.83947499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(474, -0.059475, 0.52357500000000001, 0.83947499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(475, 0.83849999999999991, 0.41778749999999998, 0.26227499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(476, 0.67518749999999994, 0.57086249999999994, -0.13942499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(477, 0.76439999999999997, 0.53137499999999993, -0.010725)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(478, 0.82094999999999996, 0.64739999999999998, -0.071175000000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(479, 0.73709999999999998, 0.15453749999999999, -0.77610000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(480, 0.19499999999999998, -0.58792499999999992, -0.75854999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(481, -0.43095, -0.59670000000000001, -0.49237499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(482, -0.85994999999999999, -0.33442499999999997, -0.29347499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(483, -0.89115, -0.42314999999999997, -0.091649999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(484, -0.90236249999999996, -0.48847499999999999, 0.64837499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(485, -0.054112500000000001, 0.074099999999999999, 0.87067499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(486, 0.61327500000000001, 0.46068749999999997, 0.27007500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(487, 0.43095, 0.97499999999999998, -0.078)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(488, -0.46215000000000001, 0.72929999999999995, 0.018525)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(489, -1.0334999999999999, -0.41339999999999999, -0.19305)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(490, -0.63374999999999992, -0.76829999999999998, -0.64252500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(491, -0.066299999999999998, -0.61181249999999998, -0.85848749999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(492, 0.371475, -0.281775, -0.86969999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(493, 0.42217499999999997, -0.66251249999999995, -0.59182499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(494, 0.62790000000000001, -0.6907875, 0.17257499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(495, 0.78487499999999999, -0.56891249999999993, 0.41339999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(496, 0.39877499999999999, -0.61717499999999992, 0.70297500000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(497, -0.18329999999999999, -0.164775, 1.005225)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(498, 0.29542499999999999, 0.81022499999999997, 0.17354999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(499, 0.54989999999999994, 0.757575, -0.64349999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(500, 0.46312499999999995, 0.70979999999999999, -0.62497499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(501, 0.76391249999999999, 0.18525, -0.39292499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(502, 0.87554999999999994, -0.490425, -0.61327500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(503, 0.039487499999999995, -0.84434999999999993, -0.39487499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(504, -0.54063749999999999, -0.76634999999999998, -0.058499999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(505, -0.89212499999999995, -0.33734999999999998, 0.121875)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(506, -1.03545, -0.13162499999999999, 0.14722499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(507, -0.96524999999999994, -0.23594999999999999, 0.155025)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(508, -0.87847500000000001, -0.371475, 0.17452499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(509, -0.91747499999999993, -0.385125, 0.18232499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(510, -0.75074999999999992, -0.81217499999999998, -0.31395000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(511, 0.058499999999999996, -0.85117500000000001, -0.41827500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(512, 0.728325, -0.61229999999999996, -0.28275)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(513, 0.96963749999999993, -0.0029249999999999996, -0.063375000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(514, 0.905775, -0.0706875, 0.68542499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(515, 0.474825, -0.39389999999999997, 0.84629999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(516, -0.10237499999999999, -0.66592499999999999, 0.58987499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(517, -0.46897499999999998, -0.66397499999999998, 0.29152499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(518, -0.73368749999999994, -0.63569999999999993, 0.19597499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(519, -0.71418749999999998, -0.64349999999999996, -0.013649999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(520, -0.69419999999999993, -0.60742499999999999, -0.53625)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(521, -0.026324999999999998, -0.85409999999999997, -0.56159999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(522, 0.23204999999999998, -0.78584999999999994, -0.40657499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(523, 0.53966249999999993, -0.61522500000000002, -0.476775)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(524, 0.669825, -0.31979999999999997, -0.62009999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(525, 0.85604999999999998, -0.13455, -0.32077499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(526, 0.94282499999999991, -0.024374999999999997, 0.18427499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(527, 0.83849999999999991, -0.11602499999999999, 0.72149999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(528, -0.017062499999999998, -0.52747500000000003, 0.81119999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(529, -0.35392499999999999, -0.70297500000000002, 0.36074999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(530, -0.61961250000000001, -0.77024999999999999, -0.1794)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(531, -0.4914, -0.58304999999999996, -0.786825)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(532, -0.24667499999999998, -0.077024999999999996, -1.1339249999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(533, -0.51187499999999997, 0.17354999999999998, -0.66494999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(534, -0.907725, 0.0068249999999999995, -0.25155)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(535, -0.88822499999999993, -0.42412499999999997, 0.51479999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(536, -0.38317499999999999, -0.215475, 0.95062499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(537, 0.31882499999999997, -0.083849999999999994, 0.75854999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(538, 0.81948749999999992, -0.22034999999999999, 0.27641250000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(539, 0.79657499999999992, -0.62107499999999993, -0.37927499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(540, 0.53039999999999998, -0.53332499999999994, -0.72929999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(541, 0.31882499999999997, -0.48262499999999997, -0.92917499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(542, 0.21742499999999998, -0.51382499999999998, -0.98669999999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(543, -0.15112499999999998, -0.56940000000000002, -0.81217499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(544, -0.68737499999999996, -0.2964, -0.1867125)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(545, -1.0866374999999999, -0.30127499999999996, 0.355875)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(546, -0.76781250000000001, -0.35977499999999996, 0.53039999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(547, -0.58889999999999998, -0.41437499999999999, 0.78974999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(548, -0.12918749999999998, -0.55379999999999996, 0.8555625)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(549, -0.1482, -0.25447500000000001, 0.8034)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(550, -0.476775, 0.110175, 0.93014999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(551, -0.080924999999999997, 0.62692499999999995, 0.72734999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(552, 0.31979999999999997, 0.81899999999999995, -0.077024999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(553, 0.75659999999999994, 0.431925, 0.54746249999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(554, 0.59377499999999994, -0.10139999999999999, 0.66007499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(555, 0.61473749999999994, -0.4602, 0.24667499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(556, 0.58207500000000001, -0.81997500000000001, -0.62302499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(557, 0.28567500000000001, -0.65958749999999999, -0.84434999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(558, 0.2227875, 0.0092624999999999999, -0.94574999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(559, 0.51382499999999998, 0.15794999999999998, -0.71467499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(560, 0.89115, -0.40852499999999997, 0.20669999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(561, 0.056549999999999996, -0.87944999999999995, 0.52064999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(562, -0.4446, -0.71272499999999994, 0.34709999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(563, -0.72734999999999994, -0.74490000000000001, -0.40559999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(564, -0.54502499999999998, -0.28762499999999996, -0.93892500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(565, -0.25155, -0.07897499999999999, -0.87847500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(566, -0.34076249999999997, 0.26032499999999997, -0.98377499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(567, -0.76927499999999993, 0.29249999999999998, -0.53527499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(568, -0.84532499999999999, -0.50017499999999993, 0.14429999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(569, -0.62351250000000003, -0.35538749999999997, 0.87944999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(570, 0.24082499999999998, 0.2145, 0.66884999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(571, 0.69419999999999993, 0.164775, 0.59475)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(572, 0.91357499999999991, -0.42412499999999997, -0.45629999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(573, 0.371475, -0.39877499999999999, -0.86677499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(574, 0.22424999999999998, -0.20474999999999999, -0.97207499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(575, 0.27933749999999996, 0.040462499999999998, -0.9516)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(576, 0.44069999999999998, 0.2457, -1.0071749999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(577, -0.055574999999999999, 0.34466249999999998, -0.91991249999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(578, -0.63667499999999999, 0.038024999999999996, -0.65325)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(579, -0.8701875, -0.21742499999999998, -0.37001249999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(580, -0.95842499999999997, -0.44362499999999999, 0.21254999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(581, -0.54112499999999997, -0.548925, 0.71662499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(582, -0.12772500000000001, -0.23399999999999999, 1.0062)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(583, 0.0024375, -0.0307125, 0.99352499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(584, -0.20865, 0.031199999999999999, 0.95842499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(585, -0.27592499999999998, 0.26129999999999998, 0.83460000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(586, -0.17647499999999999, 0.25155, 0.93307499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(587, -0.15794999999999998, 0.192075, 0.96037499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(588, -0.1555125, 0.19597499999999998, 0.94087499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(589, -0.17257499999999998, 0.114075, 0.95842499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(590, -0.2223, -0.23351249999999998, 0.79364999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(591, -0.54697499999999999, -0.36952499999999999, 0.49822499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(592, -0.62595000000000001, -0.788775, -0.125775)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(593, -0.39389999999999997, -0.64642499999999992, -0.85702499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(594, -0.24082499999999998, -0.28664999999999996, -0.91064999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(595, -0.41583749999999997, -0.0195, -0.81509999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(596, -0.79657499999999992, -0.48359999999999997, -0.25739999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(597, -0.56159999999999999, -0.76927499999999993, 0.6907875)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(598, -0.164775, -0.25593749999999998, 0.73612499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(599, 0.4602, -0.23204999999999998, 0.73027500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(600, 0.79949999999999999, -0.54648750000000001, 0.2535)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(601, 0.81022499999999997, -0.35294999999999999, -0.72637499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(602, 0.59084999999999999, 0.17354999999999998, -0.51674999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(603, 0.95452499999999996, -0.178425, 0.30907499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(604, 0.28518749999999998, -0.728325, 0.461175)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(605, -0.61619999999999997, -0.79949999999999999, 0.049724999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(606, -0.82289999999999996, -0.55477500000000002, -0.070199999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(607, -0.50895000000000001, -0.91454999999999997, -0.100425)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(608, -0.30517499999999997, -0.9701249999999999, -0.26715)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(609, -0.58109999999999995, -0.68445, -0.207675)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(610, -0.55769999999999997, -0.82972499999999993, 0.30809999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(611, 0.26861249999999998, -0.20865, 0.27494999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(612, 0.75269999999999992, -0.77024999999999999, -0.00097499999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(613, 0.070199999999999999, -0.79364999999999997, -0.71174999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(614, -0.42509999999999998, -0.16818749999999999, -0.91064999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(615, -0.82582499999999992, -0.12967499999999998, -0.073124999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(616, -0.51821249999999996, 0.50017499999999993, 0.51090000000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(617, 0.62351250000000003, 0.34027499999999999, 0.31589999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(618, 0.88529999999999998, -0.757575, 0.075075000000000003)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(619, -0.091649999999999995, -0.936975, -0.47872499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(620, -0.48945, -0.19305, -0.84239999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(621, -0.876525, 0.18914999999999998, 0.38122499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(622, 0.37488749999999998, 0.63374999999999992, 0.11992499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(623, 1.0237499999999999, -0.38024999999999998, 0.18037499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(624, 0.2383875, -0.99449999999999994, -0.15356249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(625, -0.83655000000000002, -0.61229999999999996, -0.14235)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(626, -0.79559999999999997, 0.19305, 0.72539999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(627, 0.13016249999999999, 0.80827499999999997, 0.012674999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(628, 0.847275, 0.036562499999999998, 0.24082499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(629, 0.52259999999999995, -0.94477499999999992, -0.0307125)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(630, -0.70589999999999997, -0.39389999999999997, -0.85263749999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(631, -0.70004999999999995, -0.4528875, 0.26422499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(632, -0.63472499999999998, 0.51285000000000003, 0.58987499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(633, 0.50895000000000001, 0.81217499999999998, -0.10725)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(634, 0.95647499999999996, -0.474825, 0.59279999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(635, -0.23887499999999998, -1.0208249999999999, 0.141375)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(636, -0.78097499999999997, -0.40559999999999996, -0.60449999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(637, -1.022775, -0.12869999999999998, 0.46556249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(638, -0.56842499999999996, 0.58889999999999998, 0.32077499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(639, 0.52259999999999995, 0.71954999999999991, -0.07897499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(640, 0.89115, -0.2145, 0.201825)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(641, 0.6010875, -0.98572499999999996, 0.096525)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(642, -0.215475, -0.99742500000000001, -0.229125)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(643, -0.57914999999999994, -0.40949999999999998, -0.78487499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(644, -0.68445, -0.25642500000000001, -0.039)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(645, -0.8097375, 0.43777499999999997, 0.56745000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(646, 0.75952500000000001, 0.37342500000000001, 0.40365000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(647, 0.77463749999999998, -0.90187499999999998, 0.27202499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(648, -0.079949999999999993, -0.91357499999999991, -0.54210000000000003)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(649, -0.63959999999999995, -0.50651250000000003, -0.78584999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(650, -0.667875, -0.24764999999999998, 0.33539999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(651, -0.69517499999999999, 0.33344999999999997, 0.52113750000000003)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(652, 0.40657499999999996, 0.33929999999999999, 0.44069999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(653, 0.92478749999999998, -0.8536125, 0.052649999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(654, 0.15015000000000001, -0.96134999999999993, -0.57037499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(655, -0.77073749999999996, -0.24959999999999999, -1.0032749999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(656, -0.52893749999999995, -0.46604999999999996, -0.047774999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(657, -0.66884999999999994, -0.3046875, 0.905775)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(658, 0.47433749999999997, 0.54794999999999994, 0.25642500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(659, 0.85117500000000001, -0.28567500000000001, 0.231075)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(660, 0.45873749999999996, -0.96329999999999993, -0.54502499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(661, -0.45922499999999999, -0.638625, -0.79706250000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(662, -0.27299999999999996, -0.37196249999999997, -0.9764624999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(663, -0.86677499999999996, 0.32955000000000001, 0.041924999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(664, -0.36757499999999999, 0.84142499999999998, 0.24277499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(665, 0.476775, 0.43582499999999996, 0.67079999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(666, 0.5425875, -0.65032499999999993, 0.31979999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(667, 0.2442375, -1.0997999999999999, -0.32467499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(668, -0.68981249999999994, -0.32174999999999998, -0.29542499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(669, -0.77902499999999997, -0.083849999999999994, -0.26617499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(670, -0.91942499999999994, 0.342225, 0.72539999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(671, 0.13649999999999998, 0.86969999999999992, 0.29347499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(672, 0.41437499999999999, 0.92527499999999996, -0.51869999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(673, 0.28567500000000001, 0.98377499999999996, -0.42509999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(674, -0.26763749999999997, 0.30858749999999996, -0.83118749999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(675, -0.69176249999999995, -0.53137499999999993, -0.63569999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(676, 0.1642875, -0.91064999999999996, -0.077024999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(677, 0.49432499999999996, -0.88724999999999998, 0.062399999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(678, 0.55818749999999995, -0.76537499999999992, 0.43874999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(679, 0.58987499999999993, -0.79267500000000002, 0.18037499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(680, 0.62497499999999995, -0.68883749999999999, -0.37732499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(681, 0.68835000000000002, -0.68152499999999994, -0.31492500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(682, 0.80924999999999991, -0.41144999999999998, -0.25447500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(683, 0.88529999999999998, -0.35977499999999996, -0.11895)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(684, 0.92576249999999993, -0.13747499999999999, 0.48798749999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(685, 0.56793749999999998, 0.10529999999999999, 0.95647499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(686, 0.28226249999999997, 0.16038749999999999, 0.91357499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(687, 0.19889999999999999, 0.192075, 0.936975)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(688, 0.057525, 0.20328749999999998, 0.876525)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(689, -0.51772499999999999, 0.074099999999999999, 0.74490000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(690, -0.70589999999999997, -0.058499999999999996, 0.64593749999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(691, -0.82241249999999999, -0.22717499999999999, 0.20669999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(692, -0.77268749999999997, -0.60644999999999993, -0.59182499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(693, -0.37245, -0.41242499999999999, -0.94964999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(694, -0.48262499999999997, -0.050699999999999995, -0.88237499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(695, -0.50017499999999993, -0.13552500000000001, -0.72052499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(696, -0.83655000000000002, -0.4914, 0.061912499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(697, -0.86774999999999991, -0.3705, 0.66884999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(698, -0.36757499999999999, 0.41144999999999998, 0.84873749999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(699, 0.36562499999999998, 0.59767499999999996, 0.57914999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(700, 0.67567499999999991, 0.281775, 0.4528875)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(701, 0.88432499999999992, -0.20085, 0.18037499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(702, 0.85799999999999998, -0.56696249999999992, -0.43777499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(703, 0.51869999999999994, -0.48603749999999996, -0.89115)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(704, 0.23399999999999999, -0.094574999999999992, -1.0237499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(705, 0.29054999999999997, 0.0038999999999999998, -1.0042499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(706, 0.44655, 0.07897499999999999, -0.85312499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(707, 0.76829999999999998, -0.032174999999999995, -0.42217499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(708, 0.90674999999999994, -0.283725, -0.054599999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(709, 0.91649999999999998, -0.35977499999999996, -0.024374999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(710, 0.84191249999999995, -0.57914999999999994, -0.18719999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(711, 0.30907499999999999, -1.0247249999999999, 0.072149999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(712, -0.33247499999999997, -1.0101, -0.15209999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(713, -0.46361249999999998, -1.1075999999999999, -0.23302499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(714, -0.45483750000000001, -0.60449999999999993, -0.92771249999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(715, -0.03705, -0.43095, -0.83655000000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(716, -0.40559999999999996, -0.37586249999999999, -0.67957499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(717, -0.91649999999999998, -0.28762499999999996, 0.044850000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(718, -0.83655000000000002, 0.11895, 0.76634999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(719, -0.014137499999999999, 0.70297500000000002, 0.5655)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(720, 0.58402500000000002, 0.59133749999999996, 0.58694999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(721, 0.87847500000000001, 0.056549999999999996, 0.162825)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(722, 0.85604999999999998, -0.56842499999999996, -0.57427499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(723, 0.23497499999999999, -0.67469999999999997, -0.78389999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(724, 0.17647499999999999, -0.48945, -0.85848749999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(725, -0.19109999999999999, -0.43582499999999996, -0.89017499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(726, -0.58597500000000002, -0.36854999999999999, -0.46994999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(727, -0.96817500000000001, -0.33052499999999996, 0.077024999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(728, -0.83849999999999991, -0.56062499999999993, 0.252525)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(729, -0.71565000000000001, -0.60791249999999997, 0.58499999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(730, -0.21937499999999999, -0.62692499999999995, 0.80924999999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(731, -0.49529999999999996, -0.26519999999999999, 0.95939999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(732, -0.10725, 0.20279999999999998, 0.87164999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(733, 0.44898749999999998, 0.56745000000000001, 0.44167499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(734, 0.62546249999999992, 0.44849999999999995, 0.29152499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(735, 0.89602499999999996, -0.54015000000000002, -0.37634999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(736, 0.30956249999999996, -0.53917499999999996, -0.936975)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(737, 0.10335, -0.064349999999999991, -0.89699999999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(738, 0.69224999999999992, -0.25934999999999997, -0.33247499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(739, 0.75513750000000002, -0.65081250000000002, 0.27787499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(740, 0.20962499999999998, -1.0437375, 0.0038999999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(741, -0.223275, -0.87847500000000001, -0.14332499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(742, -0.55623749999999994, -0.84044999999999992, -0.16574999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(743, -0.70784999999999998, -0.70394999999999996, -0.23399999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(744, -0.77999999999999992, -0.69127499999999997, -0.64057500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(745, -0.55769999999999997, -0.49724999999999997, -0.63472499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(746, -0.53137499999999993, -0.46604999999999996, -0.86092499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(747, -0.47872499999999996, -0.49578749999999999, -0.78779999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(748, -0.49237499999999995, -0.39389999999999997, -0.82289999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(749, -0.48701249999999996, -0.36123749999999999, -0.99742500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(750, -0.064349999999999991, -0.16136249999999999, -1.0295999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(751, 0.40462499999999996, -0.27592499999999998, -0.77561249999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(752, 0.86336249999999992, -0.35880000000000001, 0.025349999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(753, 0.68542499999999995, -0.49822499999999997, 0.53332499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(754, 0.28762499999999996, -0.40949999999999998, 1.0071749999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(755, -0.15404999999999999, -0.45922499999999999, 0.83460000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(756, -0.22863749999999999, -0.65032499999999993, 0.78487499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(757, 0.046799999999999994, -0.82777499999999993, 0.20669999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(758, 0.036074999999999996, -1.0588499999999998, 0.061425)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(759, -0.070199999999999999, -0.97158749999999994, -0.075075000000000003)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(760, -0.19597499999999998, -0.667875, -0.68542499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(761, -0.33101249999999999, -0.64252500000000001, -0.54210000000000003)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(762, -0.48749999999999999, -0.83557499999999996, -0.20085)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(763, -0.52747500000000003, -0.81168750000000001, -0.063375000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(764, -0.74879999999999991, -0.50407499999999994, -0.624)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(765, -0.60254999999999992, 0.054599999999999996, -0.98767499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(766, 0.068737499999999993, 0.29493749999999996, -1.0295999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(767, 0.1701375, 0.2452125, -1.0807875)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(768, 0.66592499999999999, -0.42119999999999996, -0.19305)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(769, 0.57329999999999992, -0.75074999999999992, 0.40754999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(770, 0.8931, -0.100425, -0.67567499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(771, 0.18914999999999998, 0.45434999999999998, -0.99449999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(772, -0.62643749999999998, -0.11992499999999999, -0.56940000000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(773, -0.76781250000000001, -0.52357500000000001, -0.21157499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(774, -0.74002499999999993, -0.60693750000000002, 0.1408875)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(775, -0.41339999999999999, -0.56745000000000001, 0.57329999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(776, -0.16672499999999998, -0.66056249999999994, 0.69809999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(777, 0.037537500000000001, -0.61619999999999997, 0.78779999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(778, 0.099937499999999999, -0.53234999999999999, 0.8034)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(779, 0.034124999999999996, -0.50017499999999993, 0.81119999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(780, 0.12479999999999999, -0.37342500000000001, 0.75952500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(781, 0.1326, -0.50505, 0.82192500000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(782, 0.16965, -0.41437499999999999, 0.94769999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(783, 0.50553749999999997, 0.03705, 0.42802499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(784, 0.95647499999999996, 0.46507499999999996, -0.092624999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(785, 0.90674999999999994, 0.24959999999999999, -0.252525)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(786, 0.80047499999999994, -0.14722499999999999, -0.82582499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(787, 0.30127499999999996, -0.56159999999999999, -0.85799999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(788, -0.110175, -0.66104999999999992, -0.77415)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(789, -0.49919999999999998, -0.54404999999999992, -0.72052499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(790, -0.67859999999999998, -0.2145, -0.86580000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(791, -0.67859999999999998, -0.18525, -0.83655000000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(792, -0.63326249999999995, -0.20279999999999998, -0.7722)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(793, -0.50212499999999993, -0.33344999999999997, -0.87457499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(794, -0.72393750000000001, -0.10725, -0.66104999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(795, -1.09005, -0.0307125, 0.53917499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(796, -0.30419999999999997, 0.342225, 0.90382499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(797, 0.57476249999999995, 0.31784999999999997, 0.357825)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(798, 0.73709999999999998, -0.031199999999999999, 0.64837499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(799, 0.46263749999999998, -0.60352499999999998, 0.45142499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(800, 0.1482, -0.99449999999999994, 0.18427499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(801, -0.26958749999999998, -0.67859999999999998, -0.86385000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(802, -0.14673749999999999, -0.50212499999999993, -0.87359999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(803, -0.53137499999999993, -0.2145, -0.82387499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(804, -0.86580000000000001, 0.093599999999999989, -0.72052499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(805, -0.33929999999999999, 0.38999999999999996, -1.022775)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(806, 0.15892499999999998, 0.42314999999999997, -0.7722)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(807, 0.72442499999999999, 0.33832499999999999, -0.312)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(808, 0.97304999999999997, -0.33929999999999999, -0.37634999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(809, 0.19109999999999999, -0.78584999999999994, -0.59670000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(810, -0.040462499999999998, -0.86774999999999991, -0.41144999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(811, -0.268125, -0.936975, -0.4173)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(812, -0.38999999999999996, -0.82094999999999996, 0.018525)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(813, -0.57622499999999999, -0.44947499999999996, 0.96134999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(814, 0.079949999999999993, 0.268125, 0.79657499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(815, 0.550875, 0.66007499999999997, 0.52601249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(816, 0.35489999999999999, 0.81412499999999999, 0.41437499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(817, 0.0038999999999999998, 0.84824999999999995, 0.66592499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(818, 0.047774999999999998, 0.45922499999999999, 0.69273750000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(819, -0.34904999999999997, -0.46604999999999996, 0.38122499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(820, -0.66007499999999997, -0.57135000000000002, -0.73953749999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(821, -0.29347499999999999, -0.46507499999999996, -0.98377499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(822, -0.45922499999999999, -0.42704999999999999, -0.78389999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(823, -0.33929999999999999, -0.54307499999999997, -0.65812499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(824, -0.0316875, -0.35392499999999999, -0.89797499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(825, 0.36123749999999999, -0.13747499999999999, -0.83069999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(826, 0.86774999999999991, 0.12675, -0.045824999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(827, 0.82728749999999995, 0.14332499999999998, 0.59572499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(828, 0.67957499999999993, 0.033149999999999999, 0.72149999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(829, 0.60352499999999998, -0.081412499999999999, 0.68640000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(830, 0.60839999999999994, 0.16769999999999999, 0.86872499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(831, 0.45629999999999998, 0.28421249999999998, 0.81119999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(832, 0.461175, 0.20231249999999998, 0.8034)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(833, 0.40754999999999997, 0.39974999999999999, 0.83069999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(834, 0.41778749999999998, 0.096525, 0.81314999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(835, 0.62009999999999998, -0.229125, 0.86872499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(836, 0.19012499999999999, -0.638625, 0.37927499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(837, -0.387075, -0.85702499999999993, -0.70053749999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(838, -0.26422499999999999, -0.74490000000000001, -0.85312499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(839, 0.11115, -0.43679999999999997, -1.0003499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(840, -0.4977375, -0.065324999999999994, -0.65422499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(841, -0.96817500000000001, -0.054599999999999996, 0.74490000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(842, -0.35685, 0.19109999999999999, 0.96524999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(843, 0.33442499999999997, 0.27299999999999996, 0.68737499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(844, 0.7366125, 0.114075, 0.39389999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(845, 0.86238749999999997, -0.1482, 0.0068249999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(846, 0.79657499999999992, -0.64739999999999998, -0.49724999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(847, 0.244725, -0.81168750000000001, -0.5655)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(848, 0.186225, -0.84873749999999992, -0.44947499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(849, 0.15404999999999999, -0.92624999999999991, -0.53722499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(850, 0.00975, -0.82777499999999993, -0.42509999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(851, -0.33052499999999996, -0.79072500000000001, -0.076049999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(852, -0.64301249999999999, -0.56159999999999999, 0.56257499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(853, -0.61619999999999997, -0.48945, 0.39487499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(854, -0.55379999999999996, -0.77902499999999997, -0.58304999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(855, -0.17549999999999999, -0.76439999999999997, -0.73319999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(856, 0.15258749999999999, -0.76049999999999995, -0.49822499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(857, 0.59962499999999996, -0.61132500000000001, -0.055574999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(858, 0.81412499999999999, -0.36172499999999996, 0.51869999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(859, 0.57037499999999997, 0.066299999999999998, 0.88237499999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(860, 0.044362499999999999, 0.025837499999999999, 1.0198499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(861, -0.2013375, 0.29249999999999998, 1.0476375)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(862, -0.48798749999999996, -0.29152499999999998, 0.47092499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(863, -0.75367499999999998, -0.56745000000000001, 0.059475)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(864, -0.788775, -0.66884999999999994, 0.13552500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(865, -0.89456249999999993, -0.50407499999999994, 0.050699999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(866, -1.026675, -0.24862499999999998, 0.33637499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(867, -0.65715000000000001, -0.24277499999999999, 0.79169999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(868, -0.77512499999999995, -0.00975, 0.55964999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(869, -0.8619, -0.11699999999999999, 0.5655)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(870, -0.69566249999999996, -0.033149999999999999, 0.71662499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(871, -0.63521249999999996, -0.081412499999999999, 0.72539999999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(872, -0.54210000000000003, -0.14235, 0.79169999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(873, -0.55184999999999995, -0.28567500000000001, 0.81997500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(874, -0.55672500000000003, -0.57329999999999992, 0.54404999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(875, -0.72734999999999994, -0.41242499999999999, 0.31979999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(876, -0.83362499999999995, -0.72734999999999994, 0.42509999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(877, -0.67859999999999998, -0.22424999999999998, 0.79852499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(878, -0.43679999999999997, 0.52649999999999997, 0.53039999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(879, -0.16916249999999999, 1.0023, -0.015599999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(880, -0.86433749999999998, 0.59182499999999993, 0.054599999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(881, -0.94867499999999993, -0.20962499999999998, -0.27689999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(882, -0.53478749999999997, -0.76049999999999995, -0.54015000000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(883, -0.22034999999999999, -0.54015000000000002, -0.82777499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(884, -0.30322499999999997, -0.50017499999999993, -0.786825)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(885, -0.58548749999999994, -0.70492499999999991, -0.0068249999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(886, -0.22619999999999998, -0.66494999999999993, 0.86872499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(887, 0.24764999999999998, 0.13016249999999999, 0.8555625)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(888, 0.47628749999999997, 0.48701249999999996, 0.60254999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(889, 0.46215000000000001, 0.80632499999999996, 0.33734999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(890, 0.080437499999999995, 1.0115624999999999, 0.26715)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(891, -0.21742499999999998, 0.935025, 0.10139999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(892, -0.45337499999999997, 0.82484999999999997, 0.297375)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(893, -0.92332499999999995, 0.058499999999999996, 0.16574999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(894, -0.75854999999999995, -0.74879999999999991, -0.33637499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(895, -0.36903749999999996, -0.85507499999999992, -0.43679999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(896, -0.30809999999999998, -0.90382499999999999, -0.34612499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(897, -0.43338749999999998, -0.93014999999999992, -0.15892499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(898, -0.41535, -0.82582499999999992, -0.069224999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(899, -0.43338749999999998, -0.91649999999999998, 0.039974999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(900, -0.461175, -0.77512499999999995, 0.34320000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(901, -0.48945, -0.75952500000000001, 0.39389999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(902, -0.3797625, -0.77122499999999994, 0.55379999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(903, 0.080437499999999995, -0.50309999999999999, 0.77268749999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(904, 0.56745000000000001, 0.62790000000000001, 0.164775)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(905, 0.45922499999999999, 0.53820000000000001, -1.0208249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(906, 0.41144999999999998, 0.43095, -0.70979999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(907, 0.79559999999999997, 0.46604999999999996, 0.21157499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(908, 0.50895000000000001, 0.014624999999999999, 0.99839999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(909, -0.1993875, -0.56062499999999993, 0.71565000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(910, -0.5572125, -0.67177500000000001, 0.45337499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(911, -0.45727499999999999, -0.92819999999999991, 0.16769999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(912, -0.095549999999999996, -0.87262499999999998, -0.2145)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(913, 0.13064999999999999, -0.84337499999999999, -0.37098749999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(914, 0.35636249999999997, -0.85117500000000001, -0.30712499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(915, 0.41827500000000001, -0.83849999999999991, -0.28567500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(916, 0.60547499999999999, -0.58402500000000002, -0.461175)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(917, 0.78731249999999997, -0.36708749999999996, -0.52649999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(918, 0.69127499999999997, -0.098474999999999993, -0.86969999999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(919, 0.25155, -0.19792499999999999, -1.0373999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(920, -0.053624999999999999, -0.52552500000000002, -0.83216249999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(921, -0.34904999999999997, -0.76829999999999998, -0.46994999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(922, -0.2227875, -0.73856250000000001, -0.580125)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(923, -0.35685, -0.78584999999999994, -0.281775)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(924, -0.609375, -0.77024999999999999, 0.12675)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(925, -0.61522500000000002, -0.297375, 0.96524999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(926, -0.058012499999999995, 0.33442499999999997, 0.77463749999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(927, 0.31151249999999997, 0.77805000000000002, 0.46897499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(928, 0.19012499999999999, 0.94087499999999991, 0.32955000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(929, -0.11212499999999999, 0.76927499999999993, 0.31882499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(930, -0.79657499999999992, -0.67664999999999997, -0.0316875)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(931, -0.30907499999999999, -0.72101249999999995, -0.81899999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(932, 0.281775, -0.024374999999999997, -0.98036249999999991)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(933, -0.40511249999999999, 0.28762499999999996, -0.85799999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(934, -0.67811250000000001, -0.64788749999999995, 0.33686250000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(935, -0.0068249999999999995, -0.1716, 0.98231249999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(936, 0.58889999999999998, 0.43777499999999997, 0.47287499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(937, 0.49627499999999997, 0.81704999999999994, 0.21352499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(938, 0.11895, 1.0656749999999999, 0.069224999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(939, 0.12479999999999999, 0.9204, 0.548925)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(940, 0.22522499999999998, 0.61717499999999992, 0.55136249999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(941, -0.19305, 0.64106249999999998, 0.50066250000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(942, -0.68835000000000002, 0.53527499999999995, -0.081900000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(943, -0.85312499999999991, 0.010725, -1.2470250000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(944, 0.1993875, 0.40608749999999999, -0.818025)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(945, 0.1794, 0.73027500000000001, -1.055925)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(946, -0.69371249999999995, 0.31004999999999999, 0.114075)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(947, -0.97792499999999993, -0.0068249999999999995, 0.83655000000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(948, -0.22424999999999998, -0.357825, 0.87262499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(949, 0.62643749999999998, -0.4446, 0.24277499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(950, 0.85897499999999993, -0.44752500000000001, 0.092624999999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(951, 0.91649999999999998, -0.30712499999999998, -0.4602)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(952, 0.88286249999999999, -0.29152499999999998, -0.33149999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(953, 0.96524999999999994, -0.34612499999999996, -0.62009999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(954, 0.61912499999999993, -0.40413749999999998, -0.788775)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(955, 0.50700000000000001, -0.199875, -0.91259999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(956, 0.56988749999999999, -0.31492500000000001, -0.94672499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(957, 0.04095, -0.77707499999999996, -0.490425)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(958, -0.51285000000000003, -0.76732499999999992, 0.49383749999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(959, -0.34076249999999997, -0.53186250000000002, 0.81168750000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(960, -0.015599999999999999, -0.40413749999999998, 0.85507499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(961, 0.063375000000000001, -0.54015000000000002, 0.76342500000000002)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(962, 0.6552, -0.48457499999999998, 0.42802499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(963, 1.0105875, -0.033149999999999999, 0.66689999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(964, 0.41291249999999996, -0.48749999999999999, 0.64642499999999992)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(965, -0.72052499999999997, -0.61424999999999996, 0.11115)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(966, -0.53527499999999995, -0.48652499999999999, -0.93599999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(967, -0.12089999999999999, 0.30712499999999998, -0.93892500000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(968, -0.82874999999999999, -0.26227499999999998, -0.43290000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(969, -0.66592499999999999, -0.45142499999999997, 0.87067499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(970, 0.223275, 0.23497499999999999, 0.52844999999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(971, 0.51285000000000003, 0.60060000000000002, 0.45044999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(972, 0.57817499999999999, 0.82972499999999993, -0.156975)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(973, 0.72344999999999993, 0.19548749999999998, -0.65227499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(974, 0.55964999999999998, -0.8931, -0.48993749999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(975, -0.1716, -0.89894999999999992, -0.34514999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(976, -0.2374125, -0.82484999999999997, -0.58109999999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(977, 0.1106625, -0.8097375, -0.62692499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(978, 0.55184999999999995, -0.68932499999999997, 0.080924999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(979, 0.57524999999999993, -0.13552500000000001, 1.005225)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(980, -0.229125, 0.19792499999999999, 0.91942499999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(981, -0.59962499999999996, -0.17745, 0.17745)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(982, -0.64837499999999992, -0.57719999999999994, -0.82289999999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(983, -0.014624999999999999, 0.034124999999999996, -1.1124749999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(984, -0.52844999999999998, 0.07897499999999999, -0.57427499999999998)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(985, -0.61473749999999994, -0.72052499999999997, 0.37927499999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(986, -0.38317499999999999, -0.096525, 0.99352499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(987, 0.2457, 0.55672500000000003, 0.59670000000000001)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(988, 0.3495375, 0.90041249999999995, 0.26422499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(989, 0.069224999999999995, 1.0203374999999999, 0.22132499999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(990, -0.4080375, 0.86628749999999999, 0.114075)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(991, -0.85117500000000001, 0.43338749999999998, 0.024374999999999997)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(992, -0.85507499999999992, -0.64544999999999997, -0.50017499999999993)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(993, -0.29152499999999998, -0.45922499999999999, -0.99449999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(994, -0.18427499999999999, 0.48359999999999997, -0.89212499999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(995, -0.19597499999999998, 0.47921249999999999, -0.93599999999999994)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(996, -0.36367499999999997, 0.67079999999999995, -0.66251249999999995)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(997, -0.28079999999999999, 0.86872499999999997, 0.03705)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(998, -0.40365000000000001, 0.81119999999999992, 0.33296249999999999)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n",
        "(999, -0.51528750000000001, 0.53039999999999998, 0.71662499999999996)"
       ]
      },
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "\n"
       ]
      }
     ],
     "prompt_number": 72
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "np.savez(\"calibration_data_set\", x=x, y=y, z=z)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [],
     "prompt_number": 73
    },
    {
     "cell_type": "markdown",
     "metadata": {},
     "source": [
      "Nam\u011b\u0159en\u00e1 data m\u016f\u017eeme tak\u00e9 z\u00edskat z p\u0159edem ulo\u017een\u00e9ho souboru. V n\u00e1sleduj\u00edc\u00edm bloku je otev\u0159en soubor s referen\u010dn\u00edmi daty. "
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "data = np.load('./calibration_data_set.npz')\n",
      "x=data['x']\n",
      "y=data['y']\n",
      "z=data['z']"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [],
     "prompt_number": 1
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "from mpl_toolkits.mplot3d.axes3d import Axes3D\n",
      "%pylab qt\n",
      "#%pylab inline\n",
      "fig = plt.figure()\n",
      "ax = Axes3D(fig)\n",
      "p = ax.scatter(x, y, z)\n",
      "#pyplot.show()\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Populating the interactive namespace from numpy and matplotlib\n"
       ]
      }
     ],
     "prompt_number": 3
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "amin(p)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "metadata": {},
       "output_type": "pyout",
       "prompt_number": 7,
       "text": [
        "96972.25"
       ]
      }
     ],
     "prompt_number": 7
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "amax(p)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "metadata": {},
       "output_type": "pyout",
       "prompt_number": 8,
       "text": [
        "96838.75"
       ]
      }
     ],
     "prompt_number": 8
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "std(p)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "metadata": {},
       "output_type": "pyout",
       "prompt_number": 9,
       "text": [
        "2.3585270827361722"
       ]
      }
     ],
     "prompt_number": 9
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "plt.plot(p)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "metadata": {},
       "output_type": "pyout",
       "prompt_number": 9,
       "text": [
        "[<matplotlib.lines.Line2D at 0xa00bb2c>]"
       ]
      },
      {
       "metadata": {},
       "output_type": "display_data",
       "png": "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\n3AENN2mnAAAAAElFTkSuQmCC\n",
       "text": [
        "<matplotlib.figure.Figure at 0x9eb46cc>"
       ]
      }
     ],
     "prompt_number": 9
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "plt.plot(t)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "metadata": {},
       "output_type": "pyout",
       "prompt_number": 11,
       "text": [
        "[<matplotlib.lines.Line2D at 0x9ee51ec>]"
       ]
      },
      {
       "metadata": {},
       "output_type": "display_data",
       "png": "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\n",
       "text": [
        "<matplotlib.figure.Figure at 0x9d764cc>"
       ]
      }
     ],
     "prompt_number": 11
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [],
     "language": "python",
     "metadata": {},
     "outputs": []
    }
   ],
   "metadata": {}
  }
 ]
}