Rev Author Line No. Line
3655 kaklik 1 {
2 "metadata": {
3 "name": ""
4 },
5 "nbformat": 3,
6 "nbformat_minor": 0,
7 "worksheets": [
8 {
9 "cells": [
10 {
11 "cell_type": "markdown",
12 "metadata": {},
13 "source": [
14 "Uk\u00e1zka pou\u017eit\u00ed n\u00e1stroje IPython na manipulaci se senzorov\u00fdmi daty\n",
15 "=======\n",
16 "\n",
17 "P\u0159\u00edklad vyu\u017e\u00edv\u00e1 moduluvou stavebnici MLAB a jej\u00ed knihovnu https://github.com/MLAB-project/MLAB-I2c-modules \n",
18 "\n",
19 "Zprovozn\u011bn\u00ed demo k\u00f3du\n",
20 "---------------------\n",
21 "\n",
22 "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"
23 ]
24 },
25 {
26 "cell_type": "code",
27 "collapsed": false,
28 "input": [
29 "!i2cdetect -l"
30 ],
31 "language": "python",
32 "metadata": {},
33 "outputs": [
34 {
35 "output_type": "stream",
36 "stream": "stdout",
37 "text": [
38 "i2c-0\ti2c \ti915 gmbus ssc \tI2C adapter\r\n",
39 "i2c-1\ti2c \ti915 gmbus vga \tI2C adapter\r\n",
40 "i2c-2\ti2c \ti915 gmbus panel \tI2C adapter\r\n",
41 "i2c-3\ti2c \ti915 gmbus dpc \tI2C adapter\r\n",
42 "i2c-4\ti2c \ti915 gmbus dpb \tI2C adapter\r\n",
43 "i2c-5\ti2c \ti915 gmbus dpd \tI2C adapter\r\n",
44 "i2c-6\ti2c \tDPDDC-C \tI2C adapter\r\n",
45 "i2c-7\ti2c \tDPDDC-D \tI2C adapter\r\n",
46 "i2c-8\ti2c \ti2c-tiny-usb at bus 001 device 005\tI2C adapter\r\n"
47 ]
48 }
49 ],
50 "prompt_number": 1
51 },
52 {
53 "cell_type": "markdown",
54 "metadata": {},
55 "source": [
56 "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",
57 "\n",
58 "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"
59 ]
60 },
61 {
62 "cell_type": "raw",
63 "metadata": {},
64 "source": [
65 "KERNEL==\"i2c-[0-9]*\", GROUP=\"i2c\""
66 ]
67 },
68 {
69 "cell_type": "markdown",
70 "metadata": {},
71 "source": [
72 "Toto ozna\u010den\u00ed budeme je\u0161t\u011b d\u00e1le pot\u0159ebovat, proto si jej ulo\u017e\u00edme da prom\u011bnn\u00e9. "
73 ]
74 },
75 {
76 "cell_type": "code",
77 "collapsed": false,
78 "input": [
79 "port = 8"
80 ],
81 "language": "python",
82 "metadata": {},
83 "outputs": [],
84 "prompt_number": 2
85 },
86 {
87 "cell_type": "markdown",
88 "metadata": {},
89 "source": [
90 "Budeme pokra\u010dovat na\u010dten\u00edm pot\u0159ebn\u00fdch modul\u016f pro zach\u00e1zen\u00ed s I\u00b2C sn\u00edma\u010di."
91 ]
92 },
93 {
94 "cell_type": "code",
95 "collapsed": false,
96 "input": [
97 "import time\n",
98 "import datetime\n",
99 "import sys\n",
100 "\n",
101 "from pymlab import config\n",
102 "import matplotlib.pyplot as plt\n",
103 "import numpy as np"
104 ],
105 "language": "python",
106 "metadata": {},
107 "outputs": [],
108 "prompt_number": 3
109 },
110 {
111 "cell_type": "markdown",
112 "metadata": {},
113 "source": [
114 "Nyn\u00ed si nadefinujeme strukturu p\u0159ipojen\u00ed jednotliv\u00fdch \u010didel na I\u00b2C sb\u011brnici."
115 ]
116 },
117 {
118 "cell_type": "code",
119 "collapsed": false,
120 "input": [
121 "cfg = config.Config(\n",
122 " i2c = {\n",
123 " \"port\": port,\n",
124 " },\n",
125 " bus = [\n",
126 " {\n",
127 " \"type\": \"i2chub\",\n",
128 " \"address\": 0x72,\n",
129 " \n",
130 " \"children\": [\n",
131 " {\"name\": \"acc\", \"type\": \"imu01_acc\", \"sensitivity\": 4.0, \"channel\": 0, }, \n",
132 " ],\n",
133 " },\n",
134 " ],\n",
135 ")"
136 ],
137 "language": "python",
138 "metadata": {},
139 "outputs": [],
140 "prompt_number": 8
141 },
142 {
143 "cell_type": "markdown",
144 "metadata": {},
145 "source": [
146 "Tuto strukturu inicializujeme, aby jsme dos\u00e1hli definovan\u00e9 konfigurace \u010didel."
147 ]
148 },
149 {
150 "cell_type": "code",
151 "collapsed": false,
152 "input": [
153 "cfg.initialize()\n",
154 "acc = cfg.get_device(\"acc\")\n",
155 "time.sleep(0.5)"
156 ],
157 "language": "python",
158 "metadata": {},
159 "outputs": [
160 {
161 "output_type": "stream",
162 "stream": "stderr",
163 "text": [
164 "WARNING:pymlab.sensors.iic:HID device does not exist, we will try SMBus directly...\n"
165 ]
166 }
167 ],
168 "prompt_number": 9
169 },
170 {
171 "cell_type": "markdown",
172 "metadata": {},
173 "source": [
174 "Nyn\u00ed u\u017e m\u016f\u017eeme p\u0159\u00edmo komunikovat se za\u0159\u00edzen\u00edm pojmenovan\u00fdm jako gauge."
175 ]
176 },
177 {
178 "cell_type": "code",
179 "collapsed": false,
180 "input": [
181 "MEASUREMENTS = 1000\n",
182 "x = np.zeros(MEASUREMENTS)\n",
183 "y = np.zeros(MEASUREMENTS)\n",
184 "z = np.zeros(MEASUREMENTS)\n",
185 "\n",
186 "for n in range(MEASUREMENTS):\n",
187 "# 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",
188 " (x[n], y[n], z[n]) = acc.axes()\n",
189 " print( n, x[n], y[n], z[n])"
190 ],
191 "language": "python",
192 "metadata": {},
193 "outputs": [
194 {
195 "output_type": "stream",
196 "stream": "stdout",
197 "text": [
198 "(0, -0.81022499999999997, -0.54599999999999993, -0.26715)\n",
199 "(1, -0.83362499999999995, -0.52162500000000001, -0.26032499999999997)"
200 ]
201 },
202 {
203 "output_type": "stream",
204 "stream": "stdout",
205 "text": [
206 "\n",
207 "(2, -0.70297500000000002, -0.61327500000000001, -0.39487499999999998)"
208 ]
209 },
210 {
211 "output_type": "stream",
212 "stream": "stdout",
213 "text": [
214 "\n",
215 "(3, -0.83996249999999995, -0.58694999999999997, -0.35489999999999999)"
216 ]
217 },
218 {
219 "output_type": "stream",
220 "stream": "stdout",
221 "text": [
222 "\n",
223 "(4, -0.74246249999999991, -0.70199999999999996, -0.33052499999999996)"
224 ]
225 },
226 {
227 "output_type": "stream",
228 "stream": "stdout",
229 "text": [
230 "\n",
231 "(5, -0.51285000000000003, -0.83947499999999997, -0.30614999999999998)"
232 ]
233 },
234 {
235 "output_type": "stream",
236 "stream": "stdout",
237 "text": [
238 "\n",
239 "(6, -0.058987499999999998, -0.95647499999999996, -0.14235)"
240 ]
241 },
242 {
243 "output_type": "stream",
244 "stream": "stdout",
245 "text": [
246 "\n",
247 "(7, 0.25447500000000001, -0.84142499999999998, 0.011699999999999999)"
248 ]
249 },
250 {
251 "output_type": "stream",
252 "stream": "stdout",
253 "text": [
254 "\n",
255 "(8, 0.70199999999999996, -0.64203749999999993, -0.071175000000000002)"
256 ]
257 },
258 {
259 "output_type": "stream",
260 "stream": "stdout",
261 "text": [
262 "\n",
263 "(9, 0.90284999999999993, -0.16965, -0.047774999999999998)"
264 ]
265 },
266 {
267 "output_type": "stream",
268 "stream": "stdout",
269 "text": [
270 "\n",
271 "(10, 1.0125374999999999, 0.084824999999999998, -0.14624999999999999)"
272 ]
273 },
274 {
275 "output_type": "stream",
276 "stream": "stdout",
277 "text": [
278 "\n",
279 "(11, 0.92917499999999997, 0.244725, -0.1028625)"
280 ]
281 },
282 {
283 "output_type": "stream",
284 "stream": "stdout",
285 "text": [
286 "\n",
287 "(12, 0.80291249999999992, 0.59670000000000001, -0.44264999999999999)"
288 ]
289 },
290 {
291 "output_type": "stream",
292 "stream": "stdout",
293 "text": [
294 "\n",
295 "(13, 0.57329999999999992, 0.77171249999999991, -0.4914)"
296 ]
297 },
298 {
299 "output_type": "stream",
300 "stream": "stdout",
301 "text": [
302 "\n",
303 "(14, 0.35197499999999998, 0.84532499999999999, -0.48067499999999996)"
304 ]
305 },
306 {
307 "output_type": "stream",
308 "stream": "stdout",
309 "text": [
310 "\n",
311 "(15, 0.10237499999999999, 0.92527499999999996, -0.40121249999999997)"
312 ]
313 },
314 {
315 "output_type": "stream",
316 "stream": "stdout",
317 "text": [
318 "\n",
319 "(16, -0.086774999999999991, 0.90479999999999994, -0.312975)"
320 ]
321 },
322 {
323 "output_type": "stream",
324 "stream": "stdout",
325 "text": [
326 "\n",
327 "(17, -0.47872499999999996, 0.81461249999999996, -0.27689999999999998)"
328 ]
329 },
330 {
331 "output_type": "stream",
332 "stream": "stdout",
333 "text": [
334 "\n",
335 "(18, -0.77999999999999992, 0.53722499999999995, -0.31004999999999999)"
336 ]
337 },
338 {
339 "output_type": "stream",
340 "stream": "stdout",
341 "text": [
342 "\n",
343 "(19, -0.90674999999999994, 0.085800000000000001, -0.17354999999999998)"
344 ]
345 },
346 {
347 "output_type": "stream",
348 "stream": "stdout",
349 "text": [
350 "\n",
351 "(20, -0.98377499999999996, -0.36854999999999999, -0.24862499999999998)"
352 ]
353 },
354 {
355 "output_type": "stream",
356 "stream": "stdout",
357 "text": [
358 "\n",
359 "(21, -0.83460000000000001, -0.638625, -0.2457)"
360 ]
361 },
362 {
363 "output_type": "stream",
364 "stream": "stdout",
365 "text": [
366 "\n",
367 "(22, -0.55379999999999996, -0.81363750000000001, -0.2145)"
368 ]
369 },
370 {
371 "output_type": "stream",
372 "stream": "stdout",
373 "text": [
374 "\n",
375 "(23, -0.35148750000000001, -0.818025, -0.69712499999999999)"
376 ]
377 },
378 {
379 "output_type": "stream",
380 "stream": "stdout",
381 "text": [
382 "\n",
383 "(24, -0.33344999999999997, -0.30419999999999997, -0.96914999999999996)"
384 ]
385 },
386 {
387 "output_type": "stream",
388 "stream": "stdout",
389 "text": [
390 "\n",
391 "(25, -0.39097499999999996, 0.075075000000000003, -0.82289999999999996)"
392 ]
393 },
394 {
395 "output_type": "stream",
396 "stream": "stdout",
397 "text": [
398 "\n",
399 "(26, -0.80145, 0.252525, -0.74002499999999993)"
400 ]
401 },
402 {
403 "output_type": "stream",
404 "stream": "stdout",
405 "text": [
406 "\n",
407 "(27, -0.53576250000000003, 0.69029999999999991, -0.54794999999999994)"
408 ]
409 },
410 {
411 "output_type": "stream",
412 "stream": "stdout",
413 "text": [
414 "\n",
415 "(28, -0.16574999999999998, 0.9204, -0.48701249999999996)"
416 ]
417 },
418 {
419 "output_type": "stream",
420 "stream": "stdout",
421 "text": [
422 "\n",
423 "(29, 0.2588625, 0.83752499999999996, -0.40462499999999996)"
424 ]
425 },
426 {
427 "output_type": "stream",
428 "stream": "stdout",
429 "text": [
430 "\n",
431 "(30, 0.65617499999999995, 0.61522500000000002, -0.34709999999999996)"
432 ]
433 },
434 {
435 "output_type": "stream",
436 "stream": "stdout",
437 "text": [
438 "\n",
439 "(31, 0.69419999999999993, 0.18817499999999998, -0.61181249999999998)"
440 ]
441 },
442 {
443 "output_type": "stream",
444 "stream": "stdout",
445 "text": [
446 "\n",
447 "(32, 0.75562499999999999, -0.10237499999999999, -0.81509999999999994)"
448 ]
449 },
450 {
451 "output_type": "stream",
452 "stream": "stdout",
453 "text": [
454 "\n",
455 "(33, 0.43972499999999998, -0.27397499999999997, -0.88432499999999992)"
456 ]
457 },
458 {
459 "output_type": "stream",
460 "stream": "stdout",
461 "text": [
462 "\n",
463 "(34, 0.56940000000000002, -0.41827500000000001, -0.56940000000000002)"
464 ]
465 },
466 {
467 "output_type": "stream",
468 "stream": "stdout",
469 "text": [
470 "\n",
471 "(35, 0.43290000000000001, -0.70492499999999991, -0.59572499999999995)"
472 ]
473 },
474 {
475 "output_type": "stream",
476 "stream": "stdout",
477 "text": [
478 "\n",
479 "(36, 0.084824999999999998, -0.73904999999999998, -0.76439999999999997)"
480 ]
481 },
482 {
483 "output_type": "stream",
484 "stream": "stdout",
485 "text": [
486 "\n",
487 "(37, -0.27299999999999996, -0.54599999999999993, -0.82192500000000002)"
488 ]
489 },
490 {
491 "output_type": "stream",
492 "stream": "stdout",
493 "text": [
494 "\n",
495 "(38, -0.47969999999999996, -0.46507499999999996, -0.70784999999999998)"
496 ]
497 },
498 {
499 "output_type": "stream",
500 "stream": "stdout",
501 "text": [
502 "\n",
503 "(39, -0.53527499999999995, -0.33832499999999999, -0.79657499999999992)"
504 ]
505 },
506 {
507 "output_type": "stream",
508 "stream": "stdout",
509 "text": [
510 "\n",
511 "(40, -0.67079999999999995, -0.071175000000000002, -0.71954999999999991)"
512 ]
513 },
514 {
515 "output_type": "stream",
516 "stream": "stdout",
517 "text": [
518 "\n",
519 "(41, -0.76049999999999995, 0.21742499999999998, -0.70687499999999992)"
520 ]
521 },
522 {
523 "output_type": "stream",
524 "stream": "stdout",
525 "text": [
526 "\n",
527 "(42, -0.64934999999999998, 0.35392499999999999, -0.80047499999999994)"
528 ]
529 },
530 {
531 "output_type": "stream",
532 "stream": "stdout",
533 "text": [
534 "\n",
535 "(43, -0.57427499999999998, 0.357825, -0.83947499999999997)"
536 ]
537 },
538 {
539 "output_type": "stream",
540 "stream": "stdout",
541 "text": [
542 "\n",
543 "(44, -0.43338749999999998, 0.17257499999999998, -1.0208249999999999)"
544 ]
545 },
546 {
547 "output_type": "stream",
548 "stream": "stdout",
549 "text": [
550 "\n",
551 "(45, -0.063375000000000001, 0.110175, -1.1456249999999999)"
552 ]
553 },
554 {
555 "output_type": "stream",
556 "stream": "stdout",
557 "text": [
558 "\n",
559 "(46, 0.43290000000000001, 0.1794, -0.88139999999999996)"
560 ]
561 },
562 {
563 "output_type": "stream",
564 "stream": "stdout",
565 "text": [
566 "\n",
567 "(47, 0.45581249999999995, 0.14722499999999999, -0.96524999999999994)"
568 ]
569 },
570 {
571 "output_type": "stream",
572 "stream": "stdout",
573 "text": [
574 "\n",
575 "(48, 0.56745000000000001, 0.14527499999999999, -0.75074999999999992)"
576 ]
577 },
578 {
579 "output_type": "stream",
580 "stream": "stdout",
581 "text": [
582 "\n",
583 "(49, 0.73904999999999998, 0.034124999999999996, -0.61814999999999998)"
584 ]
585 },
586 {
587 "output_type": "stream",
588 "stream": "stdout",
589 "text": [
590 "\n",
591 "(50, 0.84483749999999991, -0.012674999999999999, -0.41144999999999998)"
592 ]
593 },
594 {
595 "output_type": "stream",
596 "stream": "stdout",
597 "text": [
598 "\n",
599 "(51, 0.92771249999999994, -0.10627499999999999, -0.15989999999999999)"
600 ]
601 },
602 {
603 "output_type": "stream",
604 "stream": "stdout",
605 "text": [
606 "\n",
607 "(52, 0.96232499999999999, -0.11943749999999999, 0.067275000000000001)"
608 ]
609 },
610 {
611 "output_type": "stream",
612 "stream": "stdout",
613 "text": [
614 "\n",
615 "(53, 0.92917499999999997, -0.207675, 0.47774999999999995)"
616 ]
617 },
618 {
619 "output_type": "stream",
620 "stream": "stdout",
621 "text": [
622 "\n",
623 "(54, 0.77317499999999995, -0.2535, 0.68835000000000002)"
624 ]
625 },
626 {
627 "output_type": "stream",
628 "stream": "stdout",
629 "text": [
630 "\n",
631 "(55, 0.57524999999999993, -0.23887499999999998, 0.83265)"
632 ]
633 },
634 {
635 "output_type": "stream",
636 "stream": "stdout",
637 "text": [
638 "\n",
639 "(56, 0.268125, -0.37829999999999997, 0.83362499999999995)"
640 ]
641 },
642 {
643 "output_type": "stream",
644 "stream": "stdout",
645 "text": [
646 "\n",
647 "(57, 0.02145, -0.66592499999999999, 0.66592499999999999)"
648 ]
649 },
650 {
651 "output_type": "stream",
652 "stream": "stdout",
653 "text": [
654 "\n",
655 "(58, -0.48067499999999996, -0.699075, 0.27689999999999998)"
656 ]
657 },
658 {
659 "output_type": "stream",
660 "stream": "stdout",
661 "text": [
662 "\n",
663 "(59, -0.79169999999999996, -0.62497499999999995, -0.0014624999999999998)"
664 ]
665 },
666 {
667 "output_type": "stream",
668 "stream": "stdout",
669 "text": [
670 "\n",
671 "(60, -0.70004999999999995, -0.64349999999999996, -0.27592499999999998)"
672 ]
673 },
674 {
675 "output_type": "stream",
676 "stream": "stdout",
677 "text": [
678 "\n",
679 "(61, -0.69322499999999998, -0.61522500000000002, -0.39779999999999999)"
680 ]
681 },
682 {
683 "output_type": "stream",
684 "stream": "stdout",
685 "text": [
686 "\n",
687 "(62, -0.67518749999999994, -0.62790000000000001, -0.548925)"
688 ]
689 },
690 {
691 "output_type": "stream",
692 "stream": "stdout",
693 "text": [
694 "\n",
695 "(63, -0.45434999999999998, -0.66494999999999993, -0.71954999999999991)"
696 ]
697 },
698 {
699 "output_type": "stream",
700 "stream": "stdout",
701 "text": [
702 "\n",
703 "(64, 0.39633750000000001, -0.50407499999999994, -0.50895000000000001)"
704 ]
705 },
706 {
707 "output_type": "stream",
708 "stream": "stdout",
709 "text": [
710 "\n",
711 "(65, 0.85409999999999997, -0.47092499999999998, 0.20865)"
712 ]
713 },
714 {
715 "output_type": "stream",
716 "stream": "stdout",
717 "text": [
718 "\n",
719 "(66, 0.62887499999999996, -0.065324999999999994, 0.58304999999999996)"
720 ]
721 },
722 {
723 "output_type": "stream",
724 "stream": "stdout",
725 "text": [
726 "\n",
727 "(67, 0.47969999999999996, 0.20085, 1.0110749999999999)"
728 ]
729 },
730 {
731 "output_type": "stream",
732 "stream": "stdout",
733 "text": [
734 "\n",
735 "(68, -0.10237499999999999, 0.73319999999999996, 0.50309999999999999)"
736 ]
737 },
738 {
739 "output_type": "stream",
740 "stream": "stdout",
741 "text": [
742 "\n",
743 "(69, -0.43679999999999997, 0.84776249999999997, 0.0195)"
744 ]
745 },
746 {
747 "output_type": "stream",
748 "stream": "stdout",
749 "text": [
750 "\n",
751 "(70, -0.54648750000000001, 0.79803749999999996, -0.5884125)"
752 ]
753 },
754 {
755 "output_type": "stream",
756 "stream": "stdout",
757 "text": [
758 "\n",
759 "(71, -0.21839999999999998, 0.43874999999999997, -0.98572499999999996)"
760 ]
761 },
762 {
763 "output_type": "stream",
764 "stream": "stdout",
765 "text": [
766 "\n",
767 "(72, -0.11505, 0.114075, -1.067625)"
768 ]
769 },
770 {
771 "output_type": "stream",
772 "stream": "stdout",
773 "text": [
774 "\n",
775 "(73, -0.099937499999999999, 0.085800000000000001, -1.0832249999999999)"
776 ]
777 },
778 {
779 "output_type": "stream",
780 "stream": "stdout",
781 "text": [
782 "\n",
783 "(74, 0.11505, 0.58109999999999995, -0.79998749999999996)"
784 ]
785 },
786 {
787 "output_type": "stream",
788 "stream": "stdout",
789 "text": [
790 "\n",
791 "(75, 0.28664999999999996, 0.818025, -0.19305)"
792 ]
793 },
794 {
795 "output_type": "stream",
796 "stream": "stdout",
797 "text": [
798 "\n",
799 "(76, 0.52844999999999998, 0.82094999999999996, -0.0277875)"
800 ]
801 },
802 {
803 "output_type": "stream",
804 "stream": "stdout",
805 "text": [
806 "\n",
807 "(77, 0.6157125, 0.8034, 0.25545000000000001)"
808 ]
809 },
810 {
811 "output_type": "stream",
812 "stream": "stdout",
813 "text": [
814 "\n",
815 "(78, 0.59572499999999995, 0.42217499999999997, 0.6552)"
816 ]
817 },
818 {
819 "output_type": "stream",
820 "stream": "stdout",
821 "text": [
822 "\n",
823 "(79, 0.56062499999999993, 0.27982499999999999, 0.81217499999999998)"
824 ]
825 },
826 {
827 "output_type": "stream",
828 "stream": "stdout",
829 "text": [
830 "\n",
831 "(80, 0.62107499999999993, 0.016574999999999999, 0.69224999999999992)"
832 ]
833 },
834 {
835 "output_type": "stream",
836 "stream": "stdout",
837 "text": [
838 "\n",
839 "(81, 0.67957499999999993, -0.21937499999999999, 0.50700000000000001)"
840 ]
841 },
842 {
843 "output_type": "stream",
844 "stream": "stdout",
845 "text": [
846 "\n",
847 "(82, 0.69224999999999992, -0.47189999999999999, 0.16087499999999999)"
848 ]
849 },
850 {
851 "output_type": "stream",
852 "stream": "stdout",
853 "text": [
854 "\n",
855 "(83, 0.70784999999999998, -0.64154999999999995, 0.20572499999999999)"
856 ]
857 },
858 {
859 "output_type": "stream",
860 "stream": "stdout",
861 "text": [
862 "\n",
863 "(84, 0.55769999999999997, -0.84824999999999995, 0.33929999999999999)"
864 ]
865 },
866 {
867 "output_type": "stream",
868 "stream": "stdout",
869 "text": [
870 "\n",
871 "(85, 0.071175000000000002, -0.94282499999999991, 0.33247499999999997)"
872 ]
873 },
874 {
875 "output_type": "stream",
876 "stream": "stdout",
877 "text": [
878 "\n",
879 "(86, -0.084824999999999998, -0.94672499999999993, 0.30809999999999998)"
880 ]
881 },
882 {
883 "output_type": "stream",
884 "stream": "stdout",
885 "text": [
886 "\n",
887 "(87, -0.1184625, -0.97792499999999993, -0.011699999999999999)"
888 ]
889 },
890 {
891 "output_type": "stream",
892 "stream": "stdout",
893 "text": [
894 "\n",
895 "(88, -0.18914999999999998, -0.92624999999999991, -0.52406249999999999)"
896 ]
897 },
898 {
899 "output_type": "stream",
900 "stream": "stdout",
901 "text": [
902 "\n",
903 "(89, 0.02145, -0.70882499999999993, -0.76244999999999996)"
904 ]
905 },
906 {
907 "output_type": "stream",
908 "stream": "stdout",
909 "text": [
910 "\n",
911 "(90, 0.1993875, -0.38414999999999999, -0.95647499999999996)"
912 ]
913 },
914 {
915 "output_type": "stream",
916 "stream": "stdout",
917 "text": [
918 "\n",
919 "(91, 0.30419999999999997, -0.051674999999999999, -1.026675)"
920 ]
921 },
922 {
923 "output_type": "stream",
924 "stream": "stdout",
925 "text": [
926 "\n",
927 "(92, 0.50212499999999993, -0.039, -0.92137499999999994)"
928 ]
929 },
930 {
931 "output_type": "stream",
932 "stream": "stdout",
933 "text": [
934 "\n",
935 "(93, 0.57573750000000001, -0.19305, -0.77999999999999992)"
936 ]
937 },
938 {
939 "output_type": "stream",
940 "stream": "stdout",
941 "text": [
942 "\n",
943 "(94, 0.52844999999999998, -0.62058749999999996, -0.38756249999999998)"
944 ]
945 },
946 {
947 "output_type": "stream",
948 "stream": "stdout",
949 "text": [
950 "\n",
951 "(95, 0.41388749999999996, -0.86580000000000001, 0.19109999999999999)"
952 ]
953 },
954 {
955 "output_type": "stream",
956 "stream": "stdout",
957 "text": [
958 "\n",
959 "(96, 0.48067499999999996, -0.624, 0.74197499999999994)"
960 ]
961 },
962 {
963 "output_type": "stream",
964 "stream": "stdout",
965 "text": [
966 "\n",
967 "(97, 0.445575, -0.12772500000000001, 0.83655000000000002)"
968 ]
969 },
970 {
971 "output_type": "stream",
972 "stream": "stdout",
973 "text": [
974 "\n",
975 "(98, 0.44264999999999999, 0.2145, 0.63082499999999997)"
976 ]
977 },
978 {
979 "output_type": "stream",
980 "stream": "stdout",
981 "text": [
982 "\n",
983 "(99, 0.89456249999999993, 0.19694999999999999, -0.097499999999999989)"
984 ]
985 },
986 {
987 "output_type": "stream",
988 "stream": "stdout",
989 "text": [
990 "\n",
991 "(100, 0.85604999999999998, -0.039974999999999997, -0.72344999999999993)"
992 ]
993 },
994 {
995 "output_type": "stream",
996 "stream": "stdout",
997 "text": [
998 "\n",
999 "(101, 0.54794999999999994, -0.149175, -0.87749999999999995)"
1000 ]
1001 },
1002 {
1003 "output_type": "stream",
1004 "stream": "stdout",
1005 "text": [
1006 "\n",
1007 "(102, 0.31784999999999997, -0.3276, -0.79267500000000002)"
1008 ]
1009 },
1010 {
1011 "output_type": "stream",
1012 "stream": "stdout",
1013 "text": [
1014 "\n",
1015 "(103, 0.2598375, -0.64252500000000001, -0.72734999999999994)"
1016 ]
1017 },
1018 {
1019 "output_type": "stream",
1020 "stream": "stdout",
1021 "text": [
1022 "\n",
1023 "(104, 0.29493749999999996, -0.78487499999999999, -0.49627499999999997)"
1024 ]
1025 },
1026 {
1027 "output_type": "stream",
1028 "stream": "stdout",
1029 "text": [
1030 "\n",
1031 "(105, 0.25447500000000001, -0.88139999999999996, -0.27787499999999998)"
1032 ]
1033 },
1034 {
1035 "output_type": "stream",
1036 "stream": "stdout",
1037 "text": [
1038 "\n",
1039 "(106, 0.41876249999999998, -0.85458749999999994, -0.13747499999999999)"
1040 ]
1041 },
1042 {
1043 "output_type": "stream",
1044 "stream": "stdout",
1045 "text": [
1046 "\n",
1047 "(107, 0.62497499999999995, -0.70784999999999998, -0.11309999999999999)"
1048 ]
1049 },
1050 {
1051 "output_type": "stream",
1052 "stream": "stdout",
1053 "text": [
1054 "\n",
1055 "(108, 0.75172499999999998, -0.53039999999999998, -0.37732499999999997)"
1056 ]
1057 },
1058 {
1059 "output_type": "stream",
1060 "stream": "stdout",
1061 "text": [
1062 "\n",
1063 "(109, 0.77171249999999991, -0.25837499999999997, -0.72344999999999993)"
1064 ]
1065 },
1066 {
1067 "output_type": "stream",
1068 "stream": "stdout",
1069 "text": [
1070 "\n",
1071 "(110, 0.61522500000000002, -0.046799999999999994, -0.85312499999999991)"
1072 ]
1073 },
1074 {
1075 "output_type": "stream",
1076 "stream": "stdout",
1077 "text": [
1078 "\n",
1079 "(111, 0.36269999999999997, -0.049724999999999998, -0.995475)"
1080 ]
1081 },
1082 {
1083 "output_type": "stream",
1084 "stream": "stdout",
1085 "text": [
1086 "\n",
1087 "(112, 0.49627499999999997, -0.25496249999999998, -0.73514999999999997)"
1088 ]
1089 },
1090 {
1091 "output_type": "stream",
1092 "stream": "stdout",
1093 "text": [
1094 "\n",
1095 "(113, 0.79413749999999994, -0.35197499999999998, -0.10188749999999999)"
1096 ]
1097 },
1098 {
1099 "output_type": "stream",
1100 "stream": "stdout",
1101 "text": [
1102 "\n",
1103 "(114, 0.89407499999999995, -0.19548749999999998, 0.5655)"
1104 ]
1105 },
1106 {
1107 "output_type": "stream",
1108 "stream": "stdout",
1109 "text": [
1110 "\n",
1111 "(115, 0.46166249999999998, -0.141375, 1.0544624999999999)"
1112 ]
1113 },
1114 {
1115 "output_type": "stream",
1116 "stream": "stdout",
1117 "text": [
1118 "\n",
1119 "(116, -0.13747499999999999, 0.00097499999999999996, 0.80827499999999997)"
1120 ]
1121 },
1122 {
1123 "output_type": "stream",
1124 "stream": "stdout",
1125 "text": [
1126 "\n",
1127 "(117, -0.81119999999999992, -0.11699999999999999, 0.28664999999999996)"
1128 ]
1129 },
1130 {
1131 "output_type": "stream",
1132 "stream": "stdout",
1133 "text": [
1134 "\n",
1135 "(118, -0.91698749999999996, -0.31492500000000001, -0.04095)"
1136 ]
1137 },
1138 {
1139 "output_type": "stream",
1140 "stream": "stdout",
1141 "text": [
1142 "\n",
1143 "(119, -0.89017499999999994, -0.43874999999999997, -0.52064999999999995)"
1144 ]
1145 },
1146 {
1147 "output_type": "stream",
1148 "stream": "stdout",
1149 "text": [
1150 "\n",
1151 "(120, -0.61522500000000002, -0.42119999999999996, -0.83655000000000002)"
1152 ]
1153 },
1154 {
1155 "output_type": "stream",
1156 "stream": "stdout",
1157 "text": [
1158 "\n",
1159 "(121, -0.40413749999999998, 0.0077999999999999996, -1.0705499999999999)"
1160 ]
1161 },
1162 {
1163 "output_type": "stream",
1164 "stream": "stdout",
1165 "text": [
1166 "\n",
1167 "(122, -0.64496249999999999, 0.268125, -0.63472499999999998)"
1168 ]
1169 },
1170 {
1171 "output_type": "stream",
1172 "stream": "stdout",
1173 "text": [
1174 "\n",
1175 "(123, -0.72539999999999993, 0.236925, -0.52747500000000003)"
1176 ]
1177 },
1178 {
1179 "output_type": "stream",
1180 "stream": "stdout",
1181 "text": [
1182 "\n",
1183 "(124, -0.97109999999999996, 0.016574999999999999, -0.0068249999999999995)"
1184 ]
1185 },
1186 {
1187 "output_type": "stream",
1188 "stream": "stdout",
1189 "text": [
1190 "\n",
1191 "(125, -0.98085, -0.13747499999999999, 0.342225)"
1192 ]
1193 },
1194 {
1195 "output_type": "stream",
1196 "stream": "stdout",
1197 "text": [
1198 "\n",
1199 "(126, -0.78389999999999993, -0.162825, 0.77999999999999992)"
1200 ]
1201 },
1202 {
1203 "output_type": "stream",
1204 "stream": "stdout",
1205 "text": [
1206 "\n",
1207 "(127, -0.41096250000000001, 0.24862499999999998, 0.84824999999999995)"
1208 ]
1209 },
1210 {
1211 "output_type": "stream",
1212 "stream": "stdout",
1213 "text": [
1214 "\n",
1215 "(128, -0.30907499999999999, 0.77317499999999995, 0.076049999999999993)"
1216 ]
1217 },
1218 {
1219 "output_type": "stream",
1220 "stream": "stdout",
1221 "text": [
1222 "\n",
1223 "(129, -0.64154999999999995, 0.72052499999999997, -0.50895000000000001)"
1224 ]
1225 },
1226 {
1227 "output_type": "stream",
1228 "stream": "stdout",
1229 "text": [
1230 "\n",
1231 "(130, -0.39584999999999998, 0.22522499999999998, -1.0578749999999999)"
1232 ]
1233 },
1234 {
1235 "output_type": "stream",
1236 "stream": "stdout",
1237 "text": [
1238 "\n",
1239 "(131, -0.192075, -0.23497499999999999, -0.96817500000000001)"
1240 ]
1241 },
1242 {
1243 "output_type": "stream",
1244 "stream": "stdout",
1245 "text": [
1246 "\n",
1247 "(132, 0.27982499999999999, -0.48945, -0.81119999999999992)"
1248 ]
1249 },
1250 {
1251 "output_type": "stream",
1252 "stream": "stdout",
1253 "text": [
1254 "\n",
1255 "(133, 0.46799999999999997, -0.70687499999999992, -0.54307499999999997)"
1256 ]
1257 },
1258 {
1259 "output_type": "stream",
1260 "stream": "stdout",
1261 "text": [
1262 "\n",
1263 "(134, 0.53771249999999993, -0.77122499999999994, -0.050699999999999995)"
1264 ]
1265 },
1266 {
1267 "output_type": "stream",
1268 "stream": "stdout",
1269 "text": [
1270 "\n",
1271 "(135, 0.54794999999999994, -0.75659999999999994, 0.48359999999999997)"
1272 ]
1273 },
1274 {
1275 "output_type": "stream",
1276 "stream": "stdout",
1277 "text": [
1278 "\n",
1279 "(136, 0.30809999999999998, -0.52844999999999998, 0.77317499999999995)"
1280 ]
1281 },
1282 {
1283 "output_type": "stream",
1284 "stream": "stdout",
1285 "text": [
1286 "\n",
1287 "(137, -0.0068249999999999995, -0.083849999999999994, 0.94867499999999993)"
1288 ]
1289 },
1290 {
1291 "output_type": "stream",
1292 "stream": "stdout",
1293 "text": [
1294 "\n",
1295 "(138, -0.39487499999999998, 0.10725, 0.73709999999999998)"
1296 ]
1297 },
1298 {
1299 "output_type": "stream",
1300 "stream": "stdout",
1301 "text": [
1302 "\n",
1303 "(139, -0.58694999999999997, -0.24667499999999998, 0.6157125)"
1304 ]
1305 },
1306 {
1307 "output_type": "stream",
1308 "stream": "stdout",
1309 "text": [
1310 "\n",
1311 "(140, -0.75172499999999998, -0.48847499999999999, 0.34027499999999999)"
1312 ]
1313 },
1314 {
1315 "output_type": "stream",
1316 "stream": "stdout",
1317 "text": [
1318 "\n",
1319 "(141, -0.70589999999999997, -0.76829999999999998, -0.19499999999999998)"
1320 ]
1321 },
1322 {
1323 "output_type": "stream",
1324 "stream": "stdout",
1325 "text": [
1326 "\n",
1327 "(142, -0.17354999999999998, -0.82874999999999999, -0.44947499999999996)"
1328 ]
1329 },
1330 {
1331 "output_type": "stream",
1332 "stream": "stdout",
1333 "text": [
1334 "\n",
1335 "(143, 0.6157125, -0.58889999999999998, -0.24033749999999998)"
1336 ]
1337 },
1338 {
1339 "output_type": "stream",
1340 "stream": "stdout",
1341 "text": [
1342 "\n",
1343 "(144, 0.97792499999999993, 0.096525, 0.34027499999999999)"
1344 ]
1345 },
1346 {
1347 "output_type": "stream",
1348 "stream": "stdout",
1349 "text": [
1350 "\n",
1351 "(145, 0.61424999999999996, 0.70882499999999993, 0.45239999999999997)"
1352 ]
1353 },
1354 {
1355 "output_type": "stream",
1356 "stream": "stdout",
1357 "text": [
1358 "\n",
1359 "(146, 0.4099875, 0.818025, -0.52259999999999995)"
1360 ]
1361 },
1362 {
1363 "output_type": "stream",
1364 "stream": "stdout",
1365 "text": [
1366 "\n",
1367 "(147, 0.36172499999999996, 0.59816249999999993, -0.92917499999999997)"
1368 ]
1369 },
1370 {
1371 "output_type": "stream",
1372 "stream": "stdout",
1373 "text": [
1374 "\n",
1375 "(148, 0.055574999999999999, 0.36269999999999997, -1.0135125)"
1376 ]
1377 },
1378 {
1379 "output_type": "stream",
1380 "stream": "stdout",
1381 "text": [
1382 "\n",
1383 "(149, 0.10871249999999999, -0.26324999999999998, -1.0447124999999999)"
1384 ]
1385 },
1386 {
1387 "output_type": "stream",
1388 "stream": "stdout",
1389 "text": [
1390 "\n",
1391 "(150, -0.3943875, -0.199875, -0.78292499999999998)"
1392 ]
1393 },
1394 {
1395 "output_type": "stream",
1396 "stream": "stdout",
1397 "text": [
1398 "\n",
1399 "(151, -0.64154999999999995, -0.45337499999999997, -0.728325)"
1400 ]
1401 },
1402 {
1403 "output_type": "stream",
1404 "stream": "stdout",
1405 "text": [
1406 "\n",
1407 "(152, -0.75221249999999995, -0.39877499999999999, -0.35099999999999998)"
1408 ]
1409 },
1410 {
1411 "output_type": "stream",
1412 "stream": "stdout",
1413 "text": [
1414 "\n",
1415 "(153, -0.88529999999999998, -0.268125, -0.12675)"
1416 ]
1417 },
1418 {
1419 "output_type": "stream",
1420 "stream": "stdout",
1421 "text": [
1422 "\n",
1423 "(154, -0.91113749999999993, -0.37439999999999996, 0.41535)"
1424 ]
1425 },
1426 {
1427 "output_type": "stream",
1428 "stream": "stdout",
1429 "text": [
1430 "\n",
1431 "(155, -0.29786249999999997, -0.51674999999999993, 0.65812499999999996)"
1432 ]
1433 },
1434 {
1435 "output_type": "stream",
1436 "stream": "stdout",
1437 "text": [
1438 "\n",
1439 "(156, 0.46994999999999998, -0.73271249999999999, 0.37927499999999997)"
1440 ]
1441 },
1442 {
1443 "output_type": "stream",
1444 "stream": "stdout",
1445 "text": [
1446 "\n",
1447 "(157, 0.68640000000000001, -0.78779999999999994, 0.0058499999999999993)"
1448 ]
1449 },
1450 {
1451 "output_type": "stream",
1452 "stream": "stdout",
1453 "text": [
1454 "\n",
1455 "(158, 0.60839999999999994, -0.818025, -0.133575)"
1456 ]
1457 },
1458 {
1459 "output_type": "stream",
1460 "stream": "stdout",
1461 "text": [
1462 "\n",
1463 "(159, 0.39682499999999998, -0.85019999999999996, -0.17354999999999998)"
1464 ]
1465 },
1466 {
1467 "output_type": "stream",
1468 "stream": "stdout",
1469 "text": [
1470 "\n",
1471 "(160, 0.24862499999999998, -0.91747499999999993, -0.20865)"
1472 ]
1473 },
1474 {
1475 "output_type": "stream",
1476 "stream": "stdout",
1477 "text": [
1478 "\n",
1479 "(161, 0.21059999999999998, -0.88529999999999998, -0.39389999999999997)"
1480 ]
1481 },
1482 {
1483 "output_type": "stream",
1484 "stream": "stdout",
1485 "text": [
1486 "\n",
1487 "(162, 0.029249999999999998, -0.97792499999999993, 0.0)"
1488 ]
1489 },
1490 {
1491 "output_type": "stream",
1492 "stream": "stdout",
1493 "text": [
1494 "\n",
1495 "(163, -0.049724999999999998, -0.97841249999999991, 0.27007500000000001)"
1496 ]
1497 },
1498 {
1499 "output_type": "stream",
1500 "stream": "stdout",
1501 "text": [
1502 "\n",
1503 "(164, -0.11309999999999999, -0.96232499999999999, 0.416325)"
1504 ]
1505 },
1506 {
1507 "output_type": "stream",
1508 "stream": "stdout",
1509 "text": [
1510 "\n",
1511 "(165, 0.34173749999999997, -0.86385000000000001, -0.29152499999999998)"
1512 ]
1513 },
1514 {
1515 "output_type": "stream",
1516 "stream": "stdout",
1517 "text": [
1518 "\n",
1519 "(166, 0.37829999999999997, -0.74490000000000001, -0.29542499999999999)"
1520 ]
1521 },
1522 {
1523 "output_type": "stream",
1524 "stream": "stdout",
1525 "text": [
1526 "\n",
1527 "(167, 0.62692499999999995, -0.45727499999999999, -0.61278749999999993)"
1528 ]
1529 },
1530 {
1531 "output_type": "stream",
1532 "stream": "stdout",
1533 "text": [
1534 "\n",
1535 "(168, 0.5864625, 0.3276, -0.81607499999999999)"
1536 ]
1537 },
1538 {
1539 "output_type": "stream",
1540 "stream": "stdout",
1541 "text": [
1542 "\n",
1543 "(169, 0.01755, 0.85409999999999997, -0.59084999999999999)"
1544 ]
1545 },
1546 {
1547 "output_type": "stream",
1548 "stream": "stdout",
1549 "text": [
1550 "\n",
1551 "(170, 0.00975, 0.97207499999999991, -0.070199999999999999)"
1552 ]
1553 },
1554 {
1555 "output_type": "stream",
1556 "stream": "stdout",
1557 "text": [
1558 "\n",
1559 "(171, 0.023399999999999997, 0.995475, 0.03705)"
1560 ]
1561 },
1562 {
1563 "output_type": "stream",
1564 "stream": "stdout",
1565 "text": [
1566 "\n",
1567 "(172, 0.11748749999999999, 0.87944999999999995, 0.15746250000000001)"
1568 ]
1569 },
1570 {
1571 "output_type": "stream",
1572 "stream": "stdout",
1573 "text": [
1574 "\n",
1575 "(173, -0.004875, 0.94184999999999997, 0.16184999999999999)"
1576 ]
1577 },
1578 {
1579 "output_type": "stream",
1580 "stream": "stdout",
1581 "text": [
1582 "\n",
1583 "(174, -0.045824999999999998, 0.99157499999999998, 0.32077499999999998)"
1584 ]
1585 },
1586 {
1587 "output_type": "stream",
1588 "stream": "stdout",
1589 "text": [
1590 "\n",
1591 "(175, -0.012674999999999999, 1.0247249999999999, -0.11115)"
1592 ]
1593 },
1594 {
1595 "output_type": "stream",
1596 "stream": "stdout",
1597 "text": [
1598 "\n",
1599 "(176, -0.11651249999999999, 1.0880999999999998, 0.20085)"
1600 ]
1601 },
1602 {
1603 "output_type": "stream",
1604 "stream": "stdout",
1605 "text": [
1606 "\n",
1607 "(177, -0.30712499999999998, 0.81899999999999995, -0.49334999999999996)"
1608 ]
1609 },
1610 {
1611 "output_type": "stream",
1612 "stream": "stdout",
1613 "text": [
1614 "\n",
1615 "(178, 0.035587500000000001, 0.94574999999999998, -0.15356249999999999)"
1616 ]
1617 },
1618 {
1619 "output_type": "stream",
1620 "stream": "stdout",
1621 "text": [
1622 "\n",
1623 "(179, -0.1399125, 1.0569, -0.18427499999999999)"
1624 ]
1625 },
1626 {
1627 "output_type": "stream",
1628 "stream": "stdout",
1629 "text": [
1630 "\n",
1631 "(180, 0.11115, 0.81997500000000001, -0.65812499999999996)"
1632 ]
1633 },
1634 {
1635 "output_type": "stream",
1636 "stream": "stdout",
1637 "text": [
1638 "\n",
1639 "(181, 0.52308749999999993, 0.28470000000000001, -0.77415)"
1640 ]
1641 },
1642 {
1643 "output_type": "stream",
1644 "stream": "stdout",
1645 "text": [
1646 "\n",
1647 "(182, 0.74490000000000001, 0.066299999999999998, -0.70102500000000001)"
1648 ]
1649 },
1650 {
1651 "output_type": "stream",
1652 "stream": "stdout",
1653 "text": [
1654 "\n",
1655 "(183, 0.79949999999999999, -0.32955000000000001, -0.61814999999999998)"
1656 ]
1657 },
1658 {
1659 "output_type": "stream",
1660 "stream": "stdout",
1661 "text": [
1662 "\n",
1663 "(184, 0.65715000000000001, -0.33929999999999999, -0.59084999999999999)"
1664 ]
1665 },
1666 {
1667 "output_type": "stream",
1668 "stream": "stdout",
1669 "text": [
1670 "\n",
1671 "(185, 0.156, -0.73124999999999996, -0.24033749999999998)"
1672 ]
1673 },
1674 {
1675 "output_type": "stream",
1676 "stream": "stdout",
1677 "text": [
1678 "\n",
1679 "(186, -0.080437499999999995, -0.92478749999999998, 0.14624999999999999)"
1680 ]
1681 },
1682 {
1683 "output_type": "stream",
1684 "stream": "stdout",
1685 "text": [
1686 "\n",
1687 "(187, -0.89115, -0.31492500000000001, 0.070199999999999999)"
1688 ]
1689 },
1690 {
1691 "output_type": "stream",
1692 "stream": "stdout",
1693 "text": [
1694 "\n",
1695 "(188, -0.97694999999999999, 0.44069999999999998, 0.236925)"
1696 ]
1697 },
1698 {
1699 "output_type": "stream",
1700 "stream": "stdout",
1701 "text": [
1702 "\n",
1703 "(189, -0.71467499999999995, 0.80145, 0.1482)"
1704 ]
1705 },
1706 {
1707 "output_type": "stream",
1708 "stream": "stdout",
1709 "text": [
1710 "\n",
1711 "(190, -0.60060000000000002, 0.78097499999999997, 0.21742499999999998)"
1712 ]
1713 },
1714 {
1715 "output_type": "stream",
1716 "stream": "stdout",
1717 "text": [
1718 "\n",
1719 "(191, -0.268125, 1.0208249999999999, 0.07897499999999999)"
1720 ]
1721 },
1722 {
1723 "output_type": "stream",
1724 "stream": "stdout",
1725 "text": [
1726 "\n",
1727 "(192, -0.68201250000000002, 0.44167499999999998, 0.19305)"
1728 ]
1729 },
1730 {
1731 "output_type": "stream",
1732 "stream": "stdout",
1733 "text": [
1734 "\n",
1735 "(193, -0.87896249999999998, 0.14624999999999999, 0.092624999999999999)"
1736 ]
1737 },
1738 {
1739 "output_type": "stream",
1740 "stream": "stdout",
1741 "text": [
1742 "\n",
1743 "(194, -1.1163749999999999, -0.36659999999999998, -0.46604999999999996)"
1744 ]
1745 },
1746 {
1747 "output_type": "stream",
1748 "stream": "stdout",
1749 "text": [
1750 "\n",
1751 "(195, -0.21742499999999998, -0.50797499999999995, -0.79559999999999997)"
1752 ]
1753 },
1754 {
1755 "output_type": "stream",
1756 "stream": "stdout",
1757 "text": [
1758 "\n",
1759 "(196, 0.43436249999999998, -0.31395000000000001, -0.75269999999999992)"
1760 ]
1761 },
1762 {
1763 "output_type": "stream",
1764 "stream": "stdout",
1765 "text": [
1766 "\n",
1767 "(197, 0.63569999999999993, 0.070199999999999999, -0.57329999999999992)"
1768 ]
1769 },
1770 {
1771 "output_type": "stream",
1772 "stream": "stdout",
1773 "text": [
1774 "\n",
1775 "(198, 0.79949999999999999, 0.22424999999999998, -0.39584999999999998)"
1776 ]
1777 },
1778 {
1779 "output_type": "stream",
1780 "stream": "stdout",
1781 "text": [
1782 "\n",
1783 "(199, 0.92624999999999991, 0.2223, -0.38999999999999996)"
1784 ]
1785 },
1786 {
1787 "output_type": "stream",
1788 "stream": "stdout",
1789 "text": [
1790 "\n",
1791 "(200, 0.94964999999999999, 0.27884999999999999, -0.11992499999999999)"
1792 ]
1793 },
1794 {
1795 "output_type": "stream",
1796 "stream": "stdout",
1797 "text": [
1798 "\n",
1799 "(201, 0.98231249999999992, -0.25545000000000001, 0.40754999999999997)"
1800 ]
1801 },
1802 {
1803 "output_type": "stream",
1804 "stream": "stdout",
1805 "text": [
1806 "\n",
1807 "(202, 0.59767499999999996, -0.57622499999999999, 0.46312499999999995)"
1808 ]
1809 },
1810 {
1811 "output_type": "stream",
1812 "stream": "stdout",
1813 "text": [
1814 "\n",
1815 "(203, 0.076049999999999993, -0.88919999999999999, 0.51772499999999999)"
1816 ]
1817 },
1818 {
1819 "output_type": "stream",
1820 "stream": "stdout",
1821 "text": [
1822 "\n",
1823 "(204, -0.34514999999999996, -0.65032499999999993, 0.55769999999999997)"
1824 ]
1825 },
1826 {
1827 "output_type": "stream",
1828 "stream": "stdout",
1829 "text": [
1830 "\n",
1831 "(205, -0.71272499999999994, -0.42607499999999998, 0.54307499999999997)"
1832 ]
1833 },
1834 {
1835 "output_type": "stream",
1836 "stream": "stdout",
1837 "text": [
1838 "\n",
1839 "(206, -0.60254999999999992, -0.39633750000000001, 0.69614999999999994)"
1840 ]
1841 },
1842 {
1843 "output_type": "stream",
1844 "stream": "stdout",
1845 "text": [
1846 "\n",
1847 "(207, -0.71565000000000001, 0.004875, 0.63569999999999993)"
1848 ]
1849 },
1850 {
1851 "output_type": "stream",
1852 "stream": "stdout",
1853 "text": [
1854 "\n",
1855 "(208, -0.69371249999999995, 0.2442375, 0.64057500000000001)"
1856 ]
1857 },
1858 {
1859 "output_type": "stream",
1860 "stream": "stdout",
1861 "text": [
1862 "\n",
1863 "(209, -0.54210000000000003, 0.966225, 0.10237499999999999)"
1864 ]
1865 },
1866 {
1867 "output_type": "stream",
1868 "stream": "stdout",
1869 "text": [
1870 "\n",
1871 "(210, -0.48457499999999998, 0.98767499999999997, -0.27982499999999999)"
1872 ]
1873 },
1874 {
1875 "output_type": "stream",
1876 "stream": "stdout",
1877 "text": [
1878 "\n",
1879 "(211, -0.24862499999999998, 0.98085, -0.3339375)"
1880 ]
1881 },
1882 {
1883 "output_type": "stream",
1884 "stream": "stdout",
1885 "text": [
1886 "\n",
1887 "(212, -0.34320000000000001, 0.786825, -0.63277499999999998)"
1888 ]
1889 },
1890 {
1891 "output_type": "stream",
1892 "stream": "stdout",
1893 "text": [
1894 "\n",
1895 "(213, -0.1326, 0.74977499999999997, -0.81704999999999994)"
1896 ]
1897 },
1898 {
1899 "output_type": "stream",
1900 "stream": "stdout",
1901 "text": [
1902 "\n",
1903 "(214, 0.16769999999999999, 0.77805000000000002, -0.64544999999999997)"
1904 ]
1905 },
1906 {
1907 "output_type": "stream",
1908 "stream": "stdout",
1909 "text": [
1910 "\n",
1911 "(215, 0.11505, 0.96671249999999997, -0.39731249999999996)"
1912 ]
1913 },
1914 {
1915 "output_type": "stream",
1916 "stream": "stdout",
1917 "text": [
1918 "\n",
1919 "(216, 0.067762500000000003, 0.905775, -0.16672499999999998)"
1920 ]
1921 },
1922 {
1923 "output_type": "stream",
1924 "stream": "stdout",
1925 "text": [
1926 "\n",
1927 "(217, 0.75172499999999998, 0.40462499999999996, -0.268125)"
1928 ]
1929 },
1930 {
1931 "output_type": "stream",
1932 "stream": "stdout",
1933 "text": [
1934 "\n",
1935 "(218, 1.022775, -0.093599999999999989, 0.21839999999999998)"
1936 ]
1937 },
1938 {
1939 "output_type": "stream",
1940 "stream": "stdout",
1941 "text": [
1942 "\n",
1943 "(219, 1.0949249999999999, -0.31346249999999998, 0.08287499999999999)"
1944 ]
1945 },
1946 {
1947 "output_type": "stream",
1948 "stream": "stdout",
1949 "text": [
1950 "\n",
1951 "(220, 0.81753749999999992, -0.70053749999999992, -0.0024375)"
1952 ]
1953 },
1954 {
1955 "output_type": "stream",
1956 "stream": "stdout",
1957 "text": [
1958 "\n",
1959 "(221, 0.44264999999999999, -0.4758, -0.93794999999999995)"
1960 ]
1961 },
1962 {
1963 "output_type": "stream",
1964 "stream": "stdout",
1965 "text": [
1966 "\n",
1967 "(222, 0.20474999999999999, -0.19597499999999998, -0.98182499999999995)"
1968 ]
1969 },
1970 {
1971 "output_type": "stream",
1972 "stream": "stdout",
1973 "text": [
1974 "\n",
1975 "(223, 0.74538749999999998, -0.32272499999999998, 0.14332499999999998)"
1976 ]
1977 },
1978 {
1979 "output_type": "stream",
1980 "stream": "stdout",
1981 "text": [
1982 "\n",
1983 "(224, 0.38805000000000001, -0.43582499999999996, 0.91552499999999992)"
1984 ]
1985 },
1986 {
1987 "output_type": "stream",
1988 "stream": "stdout",
1989 "text": [
1990 "\n",
1991 "(225, -0.38024999999999998, -0.10237499999999999, 0.68835000000000002)"
1992 ]
1993 },
1994 {
1995 "output_type": "stream",
1996 "stream": "stdout",
1997 "text": [
1998 "\n",
1999 "(226, -0.58938749999999995, -0.20572499999999999, 0.67567499999999991)"
2000 ]
2001 },
2002 {
2003 "output_type": "stream",
2004 "stream": "stdout",
2005 "text": [
2006 "\n",
2007 "(227, -0.86580000000000001, -0.26910000000000001, 0.51187499999999997)"
2008 ]
2009 },
2010 {
2011 "output_type": "stream",
2012 "stream": "stdout",
2013 "text": [
2014 "\n",
2015 "(228, -0.69809999999999994, -0.16672499999999998, 0.64642499999999992)"
2016 ]
2017 },
2018 {
2019 "output_type": "stream",
2020 "stream": "stdout",
2021 "text": [
2022 "\n",
2023 "(229, -0.74392499999999995, -0.1633125, 0.64447500000000002)"
2024 ]
2025 },
2026 {
2027 "output_type": "stream",
2028 "stream": "stdout",
2029 "text": [
2030 "\n",
2031 "(230, -0.73758749999999995, -0.14429999999999998, 0.48847499999999999)"
2032 ]
2033 },
2034 {
2035 "output_type": "stream",
2036 "stream": "stdout",
2037 "text": [
2038 "\n",
2039 "(231, -0.83167499999999994, -0.25739999999999996, 0.31589999999999996)"
2040 ]
2041 },
2042 {
2043 "output_type": "stream",
2044 "stream": "stdout",
2045 "text": [
2046 "\n",
2047 "(232, -0.92332499999999995, -0.56745000000000001, 0.09018749999999999)"
2048 ]
2049 },
2050 {
2051 "output_type": "stream",
2052 "stream": "stdout",
2053 "text": [
2054 "\n",
2055 "(233, -0.84629999999999994, -0.57524999999999993, 0.046799999999999994)"
2056 ]
2057 },
2058 {
2059 "output_type": "stream",
2060 "stream": "stdout",
2061 "text": [
2062 "\n",
2063 "(234, -0.61717499999999992, -0.52162500000000001, -0.65812499999999996)"
2064 ]
2065 },
2066 {
2067 "output_type": "stream",
2068 "stream": "stdout",
2069 "text": [
2070 "\n",
2071 "(235, -0.31638749999999999, -0.52552500000000002, -0.90382499999999999)"
2072 ]
2073 },
2074 {
2075 "output_type": "stream",
2076 "stream": "stdout",
2077 "text": [
2078 "\n",
2079 "(236, -0.17647499999999999, -0.44703749999999998, -0.907725)"
2080 ]
2081 },
2082 {
2083 "output_type": "stream",
2084 "stream": "stdout",
2085 "text": [
2086 "\n",
2087 "(237, -0.20279999999999998, -0.40754999999999997, -0.9179624999999999)"
2088 ]
2089 },
2090 {
2091 "output_type": "stream",
2092 "stream": "stdout",
2093 "text": [
2094 "\n",
2095 "(238, -0.0019499999999999999, -0.31784999999999997, -0.95647499999999996)"
2096 ]
2097 },
2098 {
2099 "output_type": "stream",
2100 "stream": "stdout",
2101 "text": [
2102 "\n",
2103 "(239, 0.19597499999999998, -0.357825, -0.91552499999999992)"
2104 ]
2105 },
2106 {
2107 "output_type": "stream",
2108 "stream": "stdout",
2109 "text": [
2110 "\n",
2111 "(240, 0.68347499999999994, -0.29688749999999997, -0.38805000000000001)"
2112 ]
2113 },
2114 {
2115 "output_type": "stream",
2116 "stream": "stdout",
2117 "text": [
2118 "\n",
2119 "(241, 0.9579375, -0.23594999999999999, 0.28470000000000001)"
2120 ]
2121 },
2122 {
2123 "output_type": "stream",
2124 "stream": "stdout",
2125 "text": [
2126 "\n",
2127 "(242, 0.73758749999999995, -0.30712499999999998, 0.70882499999999993)"
2128 ]
2129 },
2130 {
2131 "output_type": "stream",
2132 "stream": "stdout",
2133 "text": [
2134 "\n",
2135 "(243, 0.40852499999999997, -0.33734999999999998, 0.92917499999999997)"
2136 ]
2137 },
2138 {
2139 "output_type": "stream",
2140 "stream": "stdout",
2141 "text": [
2142 "\n",
2143 "(244, 0.0112125, -0.29542499999999999, 0.91601250000000001)"
2144 ]
2145 },
2146 {
2147 "output_type": "stream",
2148 "stream": "stdout",
2149 "text": [
2150 "\n",
2151 "(245, -0.20572499999999999, -0.28762499999999996, 0.88237499999999991)"
2152 ]
2153 },
2154 {
2155 "output_type": "stream",
2156 "stream": "stdout",
2157 "text": [
2158 "\n",
2159 "(246, -0.21011249999999998, -0.29152499999999998, 0.93014999999999992)"
2160 ]
2161 },
2162 {
2163 "output_type": "stream",
2164 "stream": "stdout",
2165 "text": [
2166 "\n",
2167 "(247, 0.1272375, -0.50992499999999996, 0.58694999999999997)"
2168 ]
2169 },
2170 {
2171 "output_type": "stream",
2172 "stream": "stdout",
2173 "text": [
2174 "\n",
2175 "(248, 0.56940000000000002, -0.85751250000000001, -0.096525)"
2176 ]
2177 },
2178 {
2179 "output_type": "stream",
2180 "stream": "stdout",
2181 "text": [
2182 "\n",
2183 "(249, 0.35294999999999999, -0.80388749999999998, -0.49822499999999997)"
2184 ]
2185 },
2186 {
2187 "output_type": "stream",
2188 "stream": "stdout",
2189 "text": [
2190 "\n",
2191 "(250, -0.18719999999999998, -0.81217499999999998, -0.429975)"
2192 ]
2193 },
2194 {
2195 "output_type": "stream",
2196 "stream": "stdout",
2197 "text": [
2198 "\n",
2199 "(251, -0.38951249999999998, -0.82387499999999991, -0.2223)"
2200 ]
2201 },
2202 {
2203 "output_type": "stream",
2204 "stream": "stdout",
2205 "text": [
2206 "\n",
2207 "(252, -0.74295, -0.59377499999999994, 0.117975)"
2208 ]
2209 },
2210 {
2211 "output_type": "stream",
2212 "stream": "stdout",
2213 "text": [
2214 "\n",
2215 "(253, -0.75513750000000002, -0.28275, 0.74392499999999995)"
2216 ]
2217 },
2218 {
2219 "output_type": "stream",
2220 "stream": "stdout",
2221 "text": [
2222 "\n",
2223 "(254, -0.371475, -0.16087499999999999, 0.85702499999999993)"
2224 ]
2225 },
2226 {
2227 "output_type": "stream",
2228 "stream": "stdout",
2229 "text": [
2230 "\n",
2231 "(255, -0.082387500000000002, -0.81607499999999999, 0.31053749999999997)"
2232 ]
2233 },
2234 {
2235 "output_type": "stream",
2236 "stream": "stdout",
2237 "text": [
2238 "\n",
2239 "(256, -0.1184625, -0.77415, -0.82582499999999992)"
2240 ]
2241 },
2242 {
2243 "output_type": "stream",
2244 "stream": "stdout",
2245 "text": [
2246 "\n",
2247 "(257, -0.14624999999999999, -0.084824999999999998, -1.10565)"
2248 ]
2249 },
2250 {
2251 "output_type": "stream",
2252 "stream": "stdout",
2253 "text": [
2254 "\n",
2255 "(258, -0.098474999999999993, 0.21937499999999999, -1.0461749999999999)"
2256 ]
2257 },
2258 {
2259 "output_type": "stream",
2260 "stream": "stdout",
2261 "text": [
2262 "\n",
2263 "(259, -0.14429999999999998, 0.40462499999999996, -0.95452499999999996)"
2264 ]
2265 },
2266 {
2267 "output_type": "stream",
2268 "stream": "stdout",
2269 "text": [
2270 "\n",
2271 "(260, -0.27689999999999998, 0.48262499999999997, -0.93112499999999998)"
2272 ]
2273 },
2274 {
2275 "output_type": "stream",
2276 "stream": "stdout",
2277 "text": [
2278 "\n",
2279 "(261, -0.39194999999999997, -0.055574999999999999, -1.2002249999999999)"
2280 ]
2281 },
2282 {
2283 "output_type": "stream",
2284 "stream": "stdout",
2285 "text": [
2286 "\n",
2287 "(262, -0.45239999999999997, -0.48067499999999996, -0.68445)"
2288 ]
2289 },
2290 {
2291 "output_type": "stream",
2292 "stream": "stdout",
2293 "text": [
2294 "\n",
2295 "(263, -0.400725, -0.72929999999999995, -0.51772499999999999)"
2296 ]
2297 },
2298 {
2299 "output_type": "stream",
2300 "stream": "stdout",
2301 "text": [
2302 "\n",
2303 "(264, -0.24862499999999998, -0.95257499999999995, -0.14235)"
2304 ]
2305 },
2306 {
2307 "output_type": "stream",
2308 "stream": "stdout",
2309 "text": [
2310 "\n",
2311 "(265, -0.075562499999999991, -0.91552499999999992, 0.46166249999999998)"
2312 ]
2313 },
2314 {
2315 "output_type": "stream",
2316 "stream": "stdout",
2317 "text": [
2318 "\n",
2319 "(266, 0.083849999999999994, -0.63569999999999993, 0.76829999999999998)"
2320 ]
2321 },
2322 {
2323 "output_type": "stream",
2324 "stream": "stdout",
2325 "text": [
2326 "\n",
2327 "(267, 0.36269999999999997, -0.1330875, 0.87359999999999993)"
2328 ]
2329 },
2330 {
2331 "output_type": "stream",
2332 "stream": "stdout",
2333 "text": [
2334 "\n",
2335 "(268, 0.39633750000000001, 0.10968749999999999, 0.91162499999999991)"
2336 ]
2337 },
2338 {
2339 "output_type": "stream",
2340 "stream": "stdout",
2341 "text": [
2342 "\n",
2343 "(269, -0.022425, 0.114075, 0.92527499999999996)"
2344 ]
2345 },
2346 {
2347 "output_type": "stream",
2348 "stream": "stdout",
2349 "text": [
2350 "\n",
2351 "(270, -0.28859999999999997, -0.17647499999999999, 0.91162499999999991)"
2352 ]
2353 },
2354 {
2355 "output_type": "stream",
2356 "stream": "stdout",
2357 "text": [
2358 "\n",
2359 "(271, -0.29542499999999999, -0.61327500000000001, 0.65617499999999995)"
2360 ]
2361 },
2362 {
2363 "output_type": "stream",
2364 "stream": "stdout",
2365 "text": [
2366 "\n",
2367 "(272, -0.16184999999999999, -0.90382499999999999, 0.43338749999999998)"
2368 ]
2369 },
2370 {
2371 "output_type": "stream",
2372 "stream": "stdout",
2373 "text": [
2374 "\n",
2375 "(273, -0.011699999999999999, -0.93209999999999993, 0.33344999999999997)"
2376 ]
2377 },
2378 {
2379 "output_type": "stream",
2380 "stream": "stdout",
2381 "text": [
2382 "\n",
2383 "(274, 0.12918749999999998, -0.62887499999999996, 0.85019999999999996)"
2384 ]
2385 },
2386 {
2387 "output_type": "stream",
2388 "stream": "stdout",
2389 "text": [
2390 "\n",
2391 "(275, 0.2145, 0.26129999999999998, 0.88724999999999998)"
2392 ]
2393 },
2394 {
2395 "output_type": "stream",
2396 "stream": "stdout",
2397 "text": [
2398 "\n",
2399 "(276, -0.0077999999999999996, 0.73417499999999991, 0.58889999999999998)"
2400 ]
2401 },
2402 {
2403 "output_type": "stream",
2404 "stream": "stdout",
2405 "text": [
2406 "\n",
2407 "(277, -0.41827500000000001, 0.87067499999999998, 0.31979999999999997)"
2408 ]
2409 },
2410 {
2411 "output_type": "stream",
2412 "stream": "stdout",
2413 "text": [
2414 "\n",
2415 "(278, -0.7137, 0.6030375, 0.156975)"
2416 ]
2417 },
2418 {
2419 "output_type": "stream",
2420 "stream": "stdout",
2421 "text": [
2422 "\n",
2423 "(279, -0.92186249999999992, 0.077512499999999998, -0.2608125)"
2424 ]
2425 },
2426 {
2427 "output_type": "stream",
2428 "stream": "stdout",
2429 "text": [
2430 "\n",
2431 "(280, -0.89602499999999996, -0.36757499999999999, -0.67274999999999996)"
2432 ]
2433 },
2434 {
2435 "output_type": "stream",
2436 "stream": "stdout",
2437 "text": [
2438 "\n",
2439 "(281, -0.42217499999999997, -0.63667499999999999, -0.73612499999999992)"
2440 ]
2441 },
2442 {
2443 "output_type": "stream",
2444 "stream": "stdout",
2445 "text": [
2446 "\n",
2447 "(282, -0.078, -0.78292499999999998, -0.61376249999999999)"
2448 ]
2449 },
2450 {
2451 "output_type": "stream",
2452 "stream": "stdout",
2453 "text": [
2454 "\n",
2455 "(283, -0.024374999999999997, -0.84239999999999993, -0.44752500000000001)"
2456 ]
2457 },
2458 {
2459 "output_type": "stream",
2460 "stream": "stdout",
2461 "text": [
2462 "\n",
2463 "(284, 0.1486875, -0.88919999999999999, -0.21937499999999999)"
2464 ]
2465 },
2466 {
2467 "output_type": "stream",
2468 "stream": "stdout",
2469 "text": [
2470 "\n",
2471 "(285, -0.25447500000000001, -0.78292499999999998, 0.60644999999999993)"
2472 ]
2473 },
2474 {
2475 "output_type": "stream",
2476 "stream": "stdout",
2477 "text": [
2478 "\n",
2479 "(286, -0.33149999999999996, -0.0068249999999999995, 0.86872499999999997)"
2480 ]
2481 },
2482 {
2483 "output_type": "stream",
2484 "stream": "stdout",
2485 "text": [
2486 "\n",
2487 "(287, -0.70979999999999999, -0.095549999999999996, 0.49237499999999995)"
2488 ]
2489 },
2490 {
2491 "output_type": "stream",
2492 "stream": "stdout",
2493 "text": [
2494 "\n",
2495 "(288, -0.92819999999999991, -0.18914999999999998, 0.18914999999999998)"
2496 ]
2497 },
2498 {
2499 "output_type": "stream",
2500 "stream": "stdout",
2501 "text": [
2502 "\n",
2503 "(289, -0.95013749999999997, -0.26032499999999997, 0.022912499999999999)"
2504 ]
2505 },
2506 {
2507 "output_type": "stream",
2508 "stream": "stdout",
2509 "text": [
2510 "\n",
2511 "(290, -0.92332499999999995, -0.27689999999999998, -0.19012499999999999)"
2512 ]
2513 },
2514 {
2515 "output_type": "stream",
2516 "stream": "stdout",
2517 "text": [
2518 "\n",
2519 "(291, -0.88383749999999994, -0.192075, -0.71857499999999996)"
2520 ]
2521 },
2522 {
2523 "output_type": "stream",
2524 "stream": "stdout",
2525 "text": [
2526 "\n",
2527 "(292, -0.51577499999999998, -0.29249999999999998, -1.0042499999999999)"
2528 ]
2529 },
2530 {
2531 "output_type": "stream",
2532 "stream": "stdout",
2533 "text": [
2534 "\n",
2535 "(293, 0.34320000000000001, -0.13064999999999999, -0.57914999999999994)"
2536 ]
2537 },
2538 {
2539 "output_type": "stream",
2540 "stream": "stdout",
2541 "text": [
2542 "\n",
2543 "(294, 0.88432499999999992, -0.43777499999999997, -0.12869999999999998)"
2544 ]
2545 },
2546 {
2547 "output_type": "stream",
2548 "stream": "stdout",
2549 "text": [
2550 "\n",
2551 "(295, 0.87311249999999996, -0.3276, 0.18768749999999998)"
2552 ]
2553 },
2554 {
2555 "output_type": "stream",
2556 "stream": "stdout",
2557 "text": [
2558 "\n",
2559 "(296, 0.62887499999999996, -0.1794, 1.0490999999999999)"
2560 ]
2561 },
2562 {
2563 "output_type": "stream",
2564 "stream": "stdout",
2565 "text": [
2566 "\n",
2567 "(297, -0.15307499999999999, 0.20426249999999999, 0.78974999999999995)"
2568 ]
2569 },
2570 {
2571 "output_type": "stream",
2572 "stream": "stdout",
2573 "text": [
2574 "\n",
2575 "(298, -0.80437499999999995, 0.12869999999999998, 0.31784999999999997)"
2576 ]
2577 },
2578 {
2579 "output_type": "stream",
2580 "stream": "stdout",
2581 "text": [
2582 "\n",
2583 "(299, -0.907725, 0.034612499999999997, 0.16965)"
2584 ]
2585 },
2586 {
2587 "output_type": "stream",
2588 "stream": "stdout",
2589 "text": [
2590 "\n",
2591 "(300, -1.014, -0.30419999999999997, 0.098474999999999993)"
2592 ]
2593 },
2594 {
2595 "output_type": "stream",
2596 "stream": "stdout",
2597 "text": [
2598 "\n",
2599 "(301, -0.9764624999999999, -0.4017, -0.49432499999999996)"
2600 ]
2601 },
2602 {
2603 "output_type": "stream",
2604 "stream": "stdout",
2605 "text": [
2606 "\n",
2607 "(302, -0.53722499999999995, -0.52259999999999995, -0.93112499999999998)"
2608 ]
2609 },
2610 {
2611 "output_type": "stream",
2612 "stream": "stdout",
2613 "text": [
2614 "\n",
2615 "(303, 0.022912499999999999, -0.23204999999999998, -1.0237499999999999)"
2616 ]
2617 },
2618 {
2619 "output_type": "stream",
2620 "stream": "stdout",
2621 "text": [
2622 "\n",
2623 "(304, -0.252525, 0.117975, -0.82972499999999993)"
2624 ]
2625 },
2626 {
2627 "output_type": "stream",
2628 "stream": "stdout",
2629 "text": [
2630 "\n",
2631 "(305, -0.57427499999999998, 0.20865, -0.57427499999999998)"
2632 ]
2633 },
2634 {
2635 "output_type": "stream",
2636 "stream": "stdout",
2637 "text": [
2638 "\n",
2639 "(306, -0.91844999999999999, 0.00097499999999999996, -0.31979999999999997)"
2640 ]
2641 },
2642 {
2643 "output_type": "stream",
2644 "stream": "stdout",
2645 "text": [
2646 "\n",
2647 "(307, -0.94233749999999994, -0.37927499999999997, 0.28664999999999996)"
2648 ]
2649 },
2650 {
2651 "output_type": "stream",
2652 "stream": "stdout",
2653 "text": [
2654 "\n",
2655 "(308, -0.36659999999999998, -0.41924999999999996, 0.88871249999999991)"
2656 ]
2657 },
2658 {
2659 "output_type": "stream",
2660 "stream": "stdout",
2661 "text": [
2662 "\n",
2663 "(309, 0.46702499999999997, 0.084824999999999998, 0.69419999999999993)"
2664 ]
2665 },
2666 {
2667 "output_type": "stream",
2668 "stream": "stdout",
2669 "text": [
2670 "\n",
2671 "(310, 0.85312499999999991, 0.37439999999999996, 0.38024999999999998)"
2672 ]
2673 },
2674 {
2675 "output_type": "stream",
2676 "stream": "stdout",
2677 "text": [
2678 "\n",
2679 "(311, 0.80291249999999992, 0.42314999999999997, -0.48457499999999998)"
2680 ]
2681 },
2682 {
2683 "output_type": "stream",
2684 "stream": "stdout",
2685 "text": [
2686 "\n",
2687 "(312, 0.73173749999999993, 0.089700000000000002, -0.89017499999999994)"
2688 ]
2689 },
2690 {
2691 "output_type": "stream",
2692 "stream": "stdout",
2693 "text": [
2694 "\n",
2695 "(313, 0.36611250000000001, -0.79462499999999991, -0.68932499999999997)"
2696 ]
2697 },
2698 {
2699 "output_type": "stream",
2700 "stream": "stdout",
2701 "text": [
2702 "\n",
2703 "(314, -0.133575, -0.669825, -0.7137)"
2704 ]
2705 },
2706 {
2707 "output_type": "stream",
2708 "stream": "stdout",
2709 "text": [
2710 "\n",
2711 "(315, -0.4675125, -0.58499999999999996, -0.35489999999999999)"
2712 ]
2713 },
2714 {
2715 "output_type": "stream",
2716 "stream": "stdout",
2717 "text": [
2718 "\n",
2719 "(316, -0.96378749999999991, -0.33734999999999998, 0.58597500000000002)"
2720 ]
2721 },
2722 {
2723 "output_type": "stream",
2724 "stream": "stdout",
2725 "text": [
2726 "\n",
2727 "(317, -0.34612499999999996, 0.015599999999999999, 0.91893749999999996)"
2728 ]
2729 },
2730 {
2731 "output_type": "stream",
2732 "stream": "stdout",
2733 "text": [
2734 "\n",
2735 "(318, 0.30224999999999996, 0.59670000000000001, 0.46994999999999998)"
2736 ]
2737 },
2738 {
2739 "output_type": "stream",
2740 "stream": "stdout",
2741 "text": [
2742 "\n",
2743 "(319, 0.79949999999999999, 0.48262499999999997, -0.077024999999999996)"
2744 ]
2745 },
2746 {
2747 "output_type": "stream",
2748 "stream": "stdout",
2749 "text": [
2750 "\n",
2751 "(320, 0.97743749999999996, 0.30127499999999996, -0.29932500000000001)"
2752 ]
2753 },
2754 {
2755 "output_type": "stream",
2756 "stream": "stdout",
2757 "text": [
2758 "\n",
2759 "(321, 0.92673749999999999, 0.24959999999999999, -0.67469999999999997)"
2760 ]
2761 },
2762 {
2763 "output_type": "stream",
2764 "stream": "stdout",
2765 "text": [
2766 "\n",
2767 "(322, 0.74099999999999999, 0.1633125, -0.85507499999999992)"
2768 ]
2769 },
2770 {
2771 "output_type": "stream",
2772 "stream": "stdout",
2773 "text": [
2774 "\n",
2775 "(323, 0.24033749999999998, 0.30419999999999997, -1.02765)"
2776 ]
2777 },
2778 {
2779 "output_type": "stream",
2780 "stream": "stdout",
2781 "text": [
2782 "\n",
2783 "(324, -0.075075000000000003, 0.014624999999999999, -0.9993749999999999)"
2784 ]
2785 },
2786 {
2787 "output_type": "stream",
2788 "stream": "stdout",
2789 "text": [
2790 "\n",
2791 "(325, -0.51090000000000002, -0.01755, -0.88919999999999999)"
2792 ]
2793 },
2794 {
2795 "output_type": "stream",
2796 "stream": "stdout",
2797 "text": [
2798 "\n",
2799 "(326, -0.79559999999999997, -0.083849999999999994, -0.31687499999999996)"
2800 ]
2801 },
2802 {
2803 "output_type": "stream",
2804 "stream": "stdout",
2805 "text": [
2806 "\n",
2807 "(327, -0.94233749999999994, -0.49529999999999996, 0.3276)"
2808 ]
2809 },
2810 {
2811 "output_type": "stream",
2812 "stream": "stdout",
2813 "text": [
2814 "\n",
2815 "(328, -0.44655, -0.49334999999999996, 0.73417499999999991)"
2816 ]
2817 },
2818 {
2819 "output_type": "stream",
2820 "stream": "stdout",
2821 "text": [
2822 "\n",
2823 "(329, 0.40365000000000001, -0.50797499999999995, 0.42899999999999999)"
2824 ]
2825 },
2826 {
2827 "output_type": "stream",
2828 "stream": "stdout",
2829 "text": [
2830 "\n",
2831 "(330, 0.88237499999999991, -0.52357500000000001, 0.011699999999999999)"
2832 ]
2833 },
2834 {
2835 "output_type": "stream",
2836 "stream": "stdout",
2837 "text": [
2838 "\n",
2839 "(331, 0.89992499999999997, -0.30907499999999999, -0.47189999999999999)"
2840 ]
2841 },
2842 {
2843 "output_type": "stream",
2844 "stream": "stdout",
2845 "text": [
2846 "\n",
2847 "(332, 0.84337499999999999, -0.357825, -0.52552500000000002)"
2848 ]
2849 },
2850 {
2851 "output_type": "stream",
2852 "stream": "stdout",
2853 "text": [
2854 "\n",
2855 "(333, 0.44264999999999999, -0.50017499999999993, -0.53234999999999999)"
2856 ]
2857 },
2858 {
2859 "output_type": "stream",
2860 "stream": "stdout",
2861 "text": [
2862 "\n",
2863 "(334, 0.067762500000000003, -0.87847500000000001, -0.28957499999999997)"
2864 ]
2865 },
2866 {
2867 "output_type": "stream",
2868 "stream": "stdout",
2869 "text": [
2870 "\n",
2871 "(335, -0.16916249999999999, -0.9286875, -0.39292499999999997)"
2872 ]
2873 },
2874 {
2875 "output_type": "stream",
2876 "stream": "stdout",
2877 "text": [
2878 "\n",
2879 "(336, -0.15892499999999998, -0.94379999999999997, -0.355875)"
2880 ]
2881 },
2882 {
2883 "output_type": "stream",
2884 "stream": "stdout",
2885 "text": [
2886 "\n",
2887 "(337, 0.47969999999999996, -0.62790000000000001, 0.51285000000000003)"
2888 ]
2889 },
2890 {
2891 "output_type": "stream",
2892 "stream": "stdout",
2893 "text": [
2894 "\n",
2895 "(338, 0.67226249999999999, -0.12967499999999998, 0.83216249999999992)"
2896 ]
2897 },
2898 {
2899 "output_type": "stream",
2900 "stream": "stdout",
2901 "text": [
2902 "\n",
2903 "(339, 0.28859999999999997, 0.90674999999999994, 0.33149999999999996)"
2904 ]
2905 },
2906 {
2907 "output_type": "stream",
2908 "stream": "stdout",
2909 "text": [
2910 "\n",
2911 "(340, -0.40852499999999997, 0.87359999999999993, -0.047774999999999998)"
2912 ]
2913 },
2914 {
2915 "output_type": "stream",
2916 "stream": "stdout",
2917 "text": [
2918 "\n",
2919 "(341, -0.69809999999999994, 0.77171249999999991, -0.070199999999999999)"
2920 ]
2921 },
2922 {
2923 "output_type": "stream",
2924 "stream": "stdout",
2925 "text": [
2926 "\n",
2927 "(342, -0.69468750000000001, 0.68786249999999993, -0.099449999999999997)"
2928 ]
2929 },
2930 {
2931 "output_type": "stream",
2932 "stream": "stdout",
2933 "text": [
2934 "\n",
2935 "(343, -0.76439999999999997, 0.62887499999999996, -0.100425)"
2936 ]
2937 },
2938 {
2939 "output_type": "stream",
2940 "stream": "stdout",
2941 "text": [
2942 "\n",
2943 "(344, -0.83752499999999996, 0.59084999999999999, -0.093599999999999989)"
2944 ]
2945 },
2946 {
2947 "output_type": "stream",
2948 "stream": "stdout",
2949 "text": [
2950 "\n",
2951 "(345, -0.79657499999999992, 0.47872499999999996, -0.025349999999999998)"
2952 ]
2953 },
2954 {
2955 "output_type": "stream",
2956 "stream": "stdout",
2957 "text": [
2958 "\n",
2959 "(346, -0.98962499999999998, 0.3641625, 0.085800000000000001)"
2960 ]
2961 },
2962 {
2963 "output_type": "stream",
2964 "stream": "stdout",
2965 "text": [
2966 "\n",
2967 "(347, -1.0130250000000001, 0.34514999999999996, -0.047774999999999998)"
2968 ]
2969 },
2970 {
2971 "output_type": "stream",
2972 "stream": "stdout",
2973 "text": [
2974 "\n",
2975 "(348, -0.99157499999999998, -0.50212499999999993, -0.28762499999999996)"
2976 ]
2977 },
2978 {
2979 "output_type": "stream",
2980 "stream": "stdout",
2981 "text": [
2982 "\n",
2983 "(349, -0.44167499999999998, -0.70492499999999991, -0.76439999999999997)"
2984 ]
2985 },
2986 {
2987 "output_type": "stream",
2988 "stream": "stdout",
2989 "text": [
2990 "\n",
2991 "(350, 0.0024375, -0.33539999999999998, -0.94769999999999999)"
2992 ]
2993 },
2994 {
2995 "output_type": "stream",
2996 "stream": "stdout",
2997 "text": [
2998 "\n",
2999 "(351, 0.061912499999999995, -0.20231249999999998, -1.0725)"
3000 ]
3001 },
3002 {
3003 "output_type": "stream",
3004 "stream": "stdout",
3005 "text": [
3006 "\n",
3007 "(352, -0.11992499999999999, -0.056549999999999996, -0.96914999999999996)"
3008 ]
3009 },
3010 {
3011 "output_type": "stream",
3012 "stream": "stdout",
3013 "text": [
3014 "\n",
3015 "(353, -0.3349125, -0.355875, -0.81217499999999998)"
3016 ]
3017 },
3018 {
3019 "output_type": "stream",
3020 "stream": "stdout",
3021 "text": [
3022 "\n",
3023 "(354, -0.70882499999999993, -0.61619999999999997, -0.39487499999999998)"
3024 ]
3025 },
3026 {
3027 "output_type": "stream",
3028 "stream": "stdout",
3029 "text": [
3030 "\n",
3031 "(355, -0.89992499999999997, -0.40706249999999999, 0.052649999999999995)"
3032 ]
3033 },
3034 {
3035 "output_type": "stream",
3036 "stream": "stdout",
3037 "text": [
3038 "\n",
3039 "(356, -0.96037499999999998, 0.042900000000000001, 0.44069999999999998)"
3040 ]
3041 },
3042 {
3043 "output_type": "stream",
3044 "stream": "stdout",
3045 "text": [
3046 "\n",
3047 "(357, -0.75367499999999998, 0.63082499999999997, 0.48652499999999999)"
3048 ]
3049 },
3050 {
3051 "output_type": "stream",
3052 "stream": "stdout",
3053 "text": [
3054 "\n",
3055 "(358, -0.097499999999999989, 0.93599999999999994, 0.088724999999999998)"
3056 ]
3057 },
3058 {
3059 "output_type": "stream",
3060 "stream": "stdout",
3061 "text": [
3062 "\n",
3063 "(359, 0.2457, 0.89797499999999997, 0.35197499999999998)"
3064 ]
3065 },
3066 {
3067 "output_type": "stream",
3068 "stream": "stdout",
3069 "text": [
3070 "\n",
3071 "(360, 0.44752500000000001, 0.61034999999999995, 0.59182499999999993)"
3072 ]
3073 },
3074 {
3075 "output_type": "stream",
3076 "stream": "stdout",
3077 "text": [
3078 "\n",
3079 "(361, 0.57135000000000002, 0.170625, 0.81899999999999995)"
3080 ]
3081 },
3082 {
3083 "output_type": "stream",
3084 "stream": "stdout",
3085 "text": [
3086 "\n",
3087 "(362, 0.62497499999999995, -0.27884999999999999, 0.58109999999999995)"
3088 ]
3089 },
3090 {
3091 "output_type": "stream",
3092 "stream": "stdout",
3093 "text": [
3094 "\n",
3095 "(363, 0.62692499999999995, -0.62497499999999995, 0.24911249999999999)"
3096 ]
3097 },
3098 {
3099 "output_type": "stream",
3100 "stream": "stdout",
3101 "text": [
3102 "\n",
3103 "(364, 0.73514999999999997, -0.74587499999999995, -0.15209999999999999)"
3104 ]
3105 },
3106 {
3107 "output_type": "stream",
3108 "stream": "stdout",
3109 "text": [
3110 "\n",
3111 "(365, 0.56452499999999994, -0.68054999999999999, -0.58597500000000002)"
3112 ]
3113 },
3114 {
3115 "output_type": "stream",
3116 "stream": "stdout",
3117 "text": [
3118 "\n",
3119 "(366, 0.56842499999999996, -0.56891249999999993, -0.68542499999999995)"
3120 ]
3121 },
3122 {
3123 "output_type": "stream",
3124 "stream": "stdout",
3125 "text": [
3126 "\n",
3127 "(367, 0.37245, -0.37342500000000001, -1.2743249999999999)"
3128 ]
3129 },
3130 {
3131 "output_type": "stream",
3132 "stream": "stdout",
3133 "text": [
3134 "\n",
3135 "(368, 0.121875, -0.15015000000000001, -1.0105875)"
3136 ]
3137 },
3138 {
3139 "output_type": "stream",
3140 "stream": "stdout",
3141 "text": [
3142 "\n",
3143 "(369, 0.013649999999999999, 0.34514999999999996, -0.83947499999999997)"
3144 ]
3145 },
3146 {
3147 "output_type": "stream",
3148 "stream": "stdout",
3149 "text": [
3150 "\n",
3151 "(370, 0.53820000000000001, 0.59670000000000001, -0.44849999999999995)"
3152 ]
3153 },
3154 {
3155 "output_type": "stream",
3156 "stream": "stdout",
3157 "text": [
3158 "\n",
3159 "(371, 0.70589999999999997, 0.51187499999999997, 0.055574999999999999)"
3160 ]
3161 },
3162 {
3163 "output_type": "stream",
3164 "stream": "stdout",
3165 "text": [
3166 "\n",
3167 "(372, 0.6552, 0.3651375, 0.89992499999999997)"
3168 ]
3169 },
3170 {
3171 "output_type": "stream",
3172 "stream": "stdout",
3173 "text": [
3174 "\n",
3175 "(373, 0.1638, -0.125775, 1.0880999999999998)"
3176 ]
3177 },
3178 {
3179 "output_type": "stream",
3180 "stream": "stdout",
3181 "text": [
3182 "\n",
3183 "(374, -0.42509999999999998, -0.52601249999999999, 0.77902499999999997)"
3184 ]
3185 },
3186 {
3187 "output_type": "stream",
3188 "stream": "stdout",
3189 "text": [
3190 "\n",
3191 "(375, -0.68347499999999994, -0.76439999999999997, -0.091162499999999994)"
3192 ]
3193 },
3194 {
3195 "output_type": "stream",
3196 "stream": "stdout",
3197 "text": [
3198 "\n",
3199 "(376, -0.43582499999999996, -0.29347499999999999, -1.0062)"
3200 ]
3201 },
3202 {
3203 "output_type": "stream",
3204 "stream": "stdout",
3205 "text": [
3206 "\n",
3207 "(377, -0.15209999999999999, 0.21157499999999999, -0.97694999999999999)"
3208 ]
3209 },
3210 {
3211 "output_type": "stream",
3212 "stream": "stdout",
3213 "text": [
3214 "\n",
3215 "(378, -0.342225, 0.50895000000000001, -0.83460000000000001)"
3216 ]
3217 },
3218 {
3219 "output_type": "stream",
3220 "stream": "stdout",
3221 "text": [
3222 "\n",
3223 "(379, -0.52406249999999999, 0.67274999999999996, -0.56842499999999996)"
3224 ]
3225 },
3226 {
3227 "output_type": "stream",
3228 "stream": "stdout",
3229 "text": [
3230 "\n",
3231 "(380, -0.53381250000000002, 0.8555625, -0.11309999999999999)"
3232 ]
3233 },
3234 {
3235 "output_type": "stream",
3236 "stream": "stdout",
3237 "text": [
3238 "\n",
3239 "(381, -0.64008749999999992, 0.69224999999999992, 0.42509999999999998)"
3240 ]
3241 },
3242 {
3243 "output_type": "stream",
3244 "stream": "stdout",
3245 "text": [
3246 "\n",
3247 "(382, -0.476775, 0.757575, 0.40365000000000001)"
3248 ]
3249 },
3250 {
3251 "output_type": "stream",
3252 "stream": "stdout",
3253 "text": [
3254 "\n",
3255 "(383, -0.39584999999999998, 0.68493749999999998, -0.36269999999999997)"
3256 ]
3257 },
3258 {
3259 "output_type": "stream",
3260 "stream": "stdout",
3261 "text": [
3262 "\n",
3263 "(384, -0.76732499999999992, 0.22619999999999998, -0.89358749999999998)"
3264 ]
3265 },
3266 {
3267 "output_type": "stream",
3268 "stream": "stdout",
3269 "text": [
3270 "\n",
3271 "(385, -0.32857500000000001, -0.33637499999999998, -0.93989999999999996)"
3272 ]
3273 },
3274 {
3275 "output_type": "stream",
3276 "stream": "stdout",
3277 "text": [
3278 "\n",
3279 "(386, 0.21937499999999999, -0.74879999999999991, -0.36757499999999999)"
3280 ]
3281 },
3282 {
3283 "output_type": "stream",
3284 "stream": "stdout",
3285 "text": [
3286 "\n",
3287 "(387, 0.69517499999999999, -0.57914999999999994, 0.16672499999999998)"
3288 ]
3289 },
3290 {
3291 "output_type": "stream",
3292 "stream": "stdout",
3293 "text": [
3294 "\n",
3295 "(388, 0.69614999999999994, -0.71662499999999996, 0.50992499999999996)"
3296 ]
3297 },
3298 {
3299 "output_type": "stream",
3300 "stream": "stdout",
3301 "text": [
3302 "\n",
3303 "(389, 0.35148750000000001, -0.49627499999999997, 0.79267500000000002)"
3304 ]
3305 },
3306 {
3307 "output_type": "stream",
3308 "stream": "stdout",
3309 "text": [
3310 "\n",
3311 "(390, -0.33247499999999997, -0.53527499999999995, 0.64934999999999998)"
3312 ]
3313 },
3314 {
3315 "output_type": "stream",
3316 "stream": "stdout",
3317 "text": [
3318 "\n",
3319 "(391, -0.73271249999999999, -0.18525, 0.74782499999999996)"
3320 ]
3321 },
3322 {
3323 "output_type": "stream",
3324 "stream": "stdout",
3325 "text": [
3326 "\n",
3327 "(392, -0.35099999999999998, 0.18914999999999998, 0.90674999999999994)"
3328 ]
3329 },
3330 {
3331 "output_type": "stream",
3332 "stream": "stdout",
3333 "text": [
3334 "\n",
3335 "(393, -0.215475, 0.70297500000000002, 0.68152499999999994)"
3336 ]
3337 },
3338 {
3339 "output_type": "stream",
3340 "stream": "stdout",
3341 "text": [
3342 "\n",
3343 "(394, -0.252525, 0.82972499999999993, 0.27007500000000001)"
3344 ]
3345 },
3346 {
3347 "output_type": "stream",
3348 "stream": "stdout",
3349 "text": [
3350 "\n",
3351 "(395, -0.33539999999999998, 0.98621249999999994, -0.57427499999999998)"
3352 ]
3353 },
3354 {
3355 "output_type": "stream",
3356 "stream": "stdout",
3357 "text": [
3358 "\n",
3359 "(396, 0.027299999999999998, 0.68201250000000002, -0.73124999999999996)"
3360 ]
3361 },
3362 {
3363 "output_type": "stream",
3364 "stream": "stdout",
3365 "text": [
3366 "\n",
3367 "(397, 0.53039999999999998, 0.65812499999999996, -0.47384999999999999)"
3368 ]
3369 },
3370 {
3371 "output_type": "stream",
3372 "stream": "stdout",
3373 "text": [
3374 "\n",
3375 "(398, 0.91649999999999998, 0.52552500000000002, 0.1638)"
3376 ]
3377 },
3378 {
3379 "output_type": "stream",
3380 "stream": "stdout",
3381 "text": [
3382 "\n",
3383 "(399, -0.0063374999999999994, 0.66689999999999994, 0.57817499999999999)"
3384 ]
3385 },
3386 {
3387 "output_type": "stream",
3388 "stream": "stdout",
3389 "text": [
3390 "\n",
3391 "(400, -0.70833749999999995, 0.027299999999999998, 0.56257499999999994)"
3392 ]
3393 },
3394 {
3395 "output_type": "stream",
3396 "stream": "stdout",
3397 "text": [
3398 "\n",
3399 "(401, -0.63521249999999996, -0.34320000000000001, 0.83167499999999994)"
3400 ]
3401 },
3402 {
3403 "output_type": "stream",
3404 "stream": "stdout",
3405 "text": [
3406 "\n",
3407 "(402, -0.23984999999999998, -0.30127499999999996, 0.93599999999999994)"
3408 ]
3409 },
3410 {
3411 "output_type": "stream",
3412 "stream": "stdout",
3413 "text": [
3414 "\n",
3415 "(403, 0.35392499999999999, -0.035099999999999999, 0.76732499999999992)"
3416 ]
3417 },
3418 {
3419 "output_type": "stream",
3420 "stream": "stdout",
3421 "text": [
3422 "\n",
3423 "(404, 0.81899999999999995, -0.055574999999999999, 0.33344999999999997)"
3424 ]
3425 },
3426 {
3427 "output_type": "stream",
3428 "stream": "stdout",
3429 "text": [
3430 "\n",
3431 "(405, 0.85409999999999997, -0.74977499999999997, 0.31004999999999999)"
3432 ]
3433 },
3434 {
3435 "output_type": "stream",
3436 "stream": "stdout",
3437 "text": [
3438 "\n",
3439 "(406, 0.23497499999999999, -0.99059999999999993, -0.054599999999999996)"
3440 ]
3441 },
3442 {
3443 "output_type": "stream",
3444 "stream": "stdout",
3445 "text": [
3446 "\n",
3447 "(407, -0.33686250000000001, -0.83557499999999996, -0.28762499999999996)"
3448 ]
3449 },
3450 {
3451 "output_type": "stream",
3452 "stream": "stdout",
3453 "text": [
3454 "\n",
3455 "(408, -0.71808749999999999, -0.46994999999999998, -0.20474999999999999)"
3456 ]
3457 },
3458 {
3459 "output_type": "stream",
3460 "stream": "stdout",
3461 "text": [
3462 "\n",
3463 "(409, -0.40706249999999999, -0.164775, 0.93599999999999994)"
3464 ]
3465 },
3466 {
3467 "output_type": "stream",
3468 "stream": "stdout",
3469 "text": [
3470 "\n",
3471 "(410, 0.52162500000000001, 0.073124999999999996, 0.62985000000000002)"
3472 ]
3473 },
3474 {
3475 "output_type": "stream",
3476 "stream": "stdout",
3477 "text": [
3478 "\n",
3479 "(411, 0.85166249999999999, 0.26519999999999999, 0.13747499999999999)"
3480 ]
3481 },
3482 {
3483 "output_type": "stream",
3484 "stream": "stdout",
3485 "text": [
3486 "\n",
3487 "(412, 0.91113749999999993, 0.36074999999999996, -0.30907499999999999)"
3488 ]
3489 },
3490 {
3491 "output_type": "stream",
3492 "stream": "stdout",
3493 "text": [
3494 "\n",
3495 "(413, 0.69029999999999991, 0.26129999999999998, -0.77122499999999994)"
3496 ]
3497 },
3498 {
3499 "output_type": "stream",
3500 "stream": "stdout",
3501 "text": [
3502 "\n",
3503 "(414, 0.38902500000000001, 0.091649999999999995, -0.98182499999999995)"
3504 ]
3505 },
3506 {
3507 "output_type": "stream",
3508 "stream": "stdout",
3509 "text": [
3510 "\n",
3511 "(415, 0.13942499999999999, -0.10335, -1.077375)"
3512 ]
3513 },
3514 {
3515 "output_type": "stream",
3516 "stream": "stdout",
3517 "text": [
3518 "\n",
3519 "(416, 0.14429999999999998, -0.54697499999999999, -0.79998749999999996)"
3520 ]
3521 },
3522 {
3523 "output_type": "stream",
3524 "stream": "stdout",
3525 "text": [
3526 "\n",
3527 "(417, -0.37927499999999997, -0.90089999999999992, 0.053624999999999999)"
3528 ]
3529 },
3530 {
3531 "output_type": "stream",
3532 "stream": "stdout",
3533 "text": [
3534 "\n",
3535 "(418, -0.44264999999999999, -0.77366249999999992, 0.35489999999999999)"
3536 ]
3537 },
3538 {
3539 "output_type": "stream",
3540 "stream": "stdout",
3541 "text": [
3542 "\n",
3543 "(419, -0.41827500000000001, -0.64154999999999995, 0.580125)"
3544 ]
3545 },
3546 {
3547 "output_type": "stream",
3548 "stream": "stdout",
3549 "text": [
3550 "\n",
3551 "(420, -0.23497499999999999, -0.28664999999999996, 0.90479999999999994)"
3552 ]
3553 },
3554 {
3555 "output_type": "stream",
3556 "stream": "stdout",
3557 "text": [
3558 "\n",
3559 "(421, -0.26129999999999998, -0.058012499999999995, 0.9701249999999999)"
3560 ]
3561 },
3562 {
3563 "output_type": "stream",
3564 "stream": "stdout",
3565 "text": [
3566 "\n",
3567 "(422, -0.33344999999999997, 0.03705, 0.847275)"
3568 ]
3569 },
3570 {
3571 "output_type": "stream",
3572 "stream": "stdout",
3573 "text": [
3574 "\n",
3575 "(423, -0.59475, 0.090674999999999992, 0.46215000000000001)"
3576 ]
3577 },
3578 {
3579 "output_type": "stream",
3580 "stream": "stdout",
3581 "text": [
3582 "\n",
3583 "(424, -0.94038749999999993, -0.34320000000000001, -0.40949999999999998)"
3584 ]
3585 },
3586 {
3587 "output_type": "stream",
3588 "stream": "stdout",
3589 "text": [
3590 "\n",
3591 "(425, -0.580125, -0.35880000000000001, -0.93307499999999999)"
3592 ]
3593 },
3594 {
3595 "output_type": "stream",
3596 "stream": "stdout",
3597 "text": [
3598 "\n",
3599 "(426, 0.0014624999999999998, 0.012187499999999999, -0.9179624999999999)"
3600 ]
3601 },
3602 {
3603 "output_type": "stream",
3604 "stream": "stdout",
3605 "text": [
3606 "\n",
3607 "(427, 0.67079999999999995, 0.27689999999999998, -0.66202499999999997)"
3608 ]
3609 },
3610 {
3611 "output_type": "stream",
3612 "stream": "stdout",
3613 "text": [
3614 "\n",
3615 "(428, 1.0110749999999999, 0.064349999999999991, -0.18086249999999998)"
3616 ]
3617 },
3618 {
3619 "output_type": "stream",
3620 "stream": "stdout",
3621 "text": [
3622 "\n",
3623 "(429, 1.0159499999999999, -0.0297375, 0.59670000000000001)"
3624 ]
3625 },
3626 {
3627 "output_type": "stream",
3628 "stream": "stdout",
3629 "text": [
3630 "\n",
3631 "(430, 0.56452499999999994, 0.20865, 0.74879999999999991)"
3632 ]
3633 },
3634 {
3635 "output_type": "stream",
3636 "stream": "stdout",
3637 "text": [
3638 "\n",
3639 "(431, 0.21839999999999998, 0.37732499999999997, 0.80242499999999994)"
3640 ]
3641 },
3642 {
3643 "output_type": "stream",
3644 "stream": "stdout",
3645 "text": [
3646 "\n",
3647 "(432, 0.21742499999999998, 0.39194999999999997, 0.67713749999999995)"
3648 ]
3649 },
3650 {
3651 "output_type": "stream",
3652 "stream": "stdout",
3653 "text": [
3654 "\n",
3655 "(433, 0.17501249999999999, 0.519675, 0.85019999999999996)"
3656 ]
3657 },
3658 {
3659 "output_type": "stream",
3660 "stream": "stdout",
3661 "text": [
3662 "\n",
3663 "(434, 0.12967499999999998, 0.490425, 0.89163749999999997)"
3664 ]
3665 },
3666 {
3667 "output_type": "stream",
3668 "stream": "stdout",
3669 "text": [
3670 "\n",
3671 "(435, -0.51869999999999994, -0.74782499999999996, -0.050699999999999995)"
3672 ]
3673 },
3674 {
3675 "output_type": "stream",
3676 "stream": "stdout",
3677 "text": [
3678 "\n",
3679 "(436, -0.67177500000000001, -0.5572125, -0.43290000000000001)"
3680 ]
3681 },
3682 {
3683 "output_type": "stream",
3684 "stream": "stdout",
3685 "text": [
3686 "\n",
3687 "(437, -0.88334999999999997, -0.199875, -0.30907499999999999)"
3688 ]
3689 },
3690 {
3691 "output_type": "stream",
3692 "stream": "stdout",
3693 "text": [
3694 "\n",
3695 "(438, -0.847275, -0.24862499999999998, 0.63179999999999992)"
3696 ]
3697 },
3698 {
3699 "output_type": "stream",
3700 "stream": "stdout",
3701 "text": [
3702 "\n",
3703 "(439, -0.3943875, 0.054599999999999996, 0.91649999999999998)"
3704 ]
3705 },
3706 {
3707 "output_type": "stream",
3708 "stream": "stdout",
3709 "text": [
3710 "\n",
3711 "(440, 0.48067499999999996, 0.24959999999999999, 0.72637499999999999)"
3712 ]
3713 },
3714 {
3715 "output_type": "stream",
3716 "stream": "stdout",
3717 "text": [
3718 "\n",
3719 "(441, 0.82874999999999999, 0.41193749999999996, 0.28275)"
3720 ]
3721 },
3722 {
3723 "output_type": "stream",
3724 "stream": "stdout",
3725 "text": [
3726 "\n",
3727 "(442, 0.84922500000000001, -0.49237499999999995, -0.77317499999999995)"
3728 ]
3729 },
3730 {
3731 "output_type": "stream",
3732 "stream": "stdout",
3733 "text": [
3734 "\n",
3735 "(443, -0.066299999999999998, -0.70589999999999997, -0.88773749999999996)"
3736 ]
3737 },
3738 {
3739 "output_type": "stream",
3740 "stream": "stdout",
3741 "text": [
3742 "\n",
3743 "(444, -0.42119999999999996, -0.40559999999999996, -0.82631250000000001)"
3744 ]
3745 },
3746 {
3747 "output_type": "stream",
3748 "stream": "stdout",
3749 "text": [
3750 "\n",
3751 "(445, -0.33149999999999996, -0.44752500000000001, -0.62497499999999995)"
3752 ]
3753 },
3754 {
3755 "output_type": "stream",
3756 "stream": "stdout",
3757 "text": [
3758 "\n",
3759 "(446, -0.8619, -0.34709999999999996, 0.46994999999999998)"
3760 ]
3761 },
3762 {
3763 "output_type": "stream",
3764 "stream": "stdout",
3765 "text": [
3766 "\n",
3767 "(447, -0.43972499999999998, -0.046799999999999994, 0.93794999999999995)"
3768 ]
3769 },
3770 {
3771 "output_type": "stream",
3772 "stream": "stdout",
3773 "text": [
3774 "\n",
3775 "(448, 0.4173, 0.44996249999999999, 0.59377499999999994)"
3776 ]
3777 },
3778 {
3779 "output_type": "stream",
3780 "stream": "stdout",
3781 "text": [
3782 "\n",
3783 "(449, 0.51674999999999993, 0.59377499999999994, 0.416325)"
3784 ]
3785 },
3786 {
3787 "output_type": "stream",
3788 "stream": "stdout",
3789 "text": [
3790 "\n",
3791 "(450, 0.57135000000000002, 0.77902499999999997, 0.19889999999999999)"
3792 ]
3793 },
3794 {
3795 "output_type": "stream",
3796 "stream": "stdout",
3797 "text": [
3798 "\n",
3799 "(451, 0.27105000000000001, 0.83167499999999994, 0.58548749999999994)"
3800 ]
3801 },
3802 {
3803 "output_type": "stream",
3804 "stream": "stdout",
3805 "text": [
3806 "\n",
3807 "(452, -0.8536125, -0.24959999999999999, 0.18719999999999998)"
3808 ]
3809 },
3810 {
3811 "output_type": "stream",
3812 "stream": "stdout",
3813 "text": [
3814 "\n",
3815 "(453, -0.80681249999999993, -0.61132500000000001, -0.74587499999999995)"
3816 ]
3817 },
3818 {
3819 "output_type": "stream",
3820 "stream": "stdout",
3821 "text": [
3822 "\n",
3823 "(454, -0.192075, -0.39194999999999997, -0.91454999999999997)"
3824 ]
3825 },
3826 {
3827 "output_type": "stream",
3828 "stream": "stdout",
3829 "text": [
3830 "\n",
3831 "(455, -0.2379, -0.312, -1.0218)"
3832 ]
3833 },
3834 {
3835 "output_type": "stream",
3836 "stream": "stdout",
3837 "text": [
3838 "\n",
3839 "(456, -0.053624999999999999, -0.090674999999999992, -1.0919999999999999)"
3840 ]
3841 },
3842 {
3843 "output_type": "stream",
3844 "stream": "stdout",
3845 "text": [
3846 "\n",
3847 "(457, 0.59865000000000002, 0.19597499999999998, -0.44069999999999998)"
3848 ]
3849 },
3850 {
3851 "output_type": "stream",
3852 "stream": "stdout",
3853 "text": [
3854 "\n",
3855 "(458, 0.9325874999999999, 0.37732499999999997, 0.51869999999999994)"
3856 ]
3857 },
3858 {
3859 "output_type": "stream",
3860 "stream": "stdout",
3861 "text": [
3862 "\n",
3863 "(459, 0.55477500000000002, 0.023399999999999997, 0.966225)"
3864 ]
3865 },
3866 {
3867 "output_type": "stream",
3868 "stream": "stdout",
3869 "text": [
3870 "\n",
3871 "(460, -0.25447500000000001, -0.60254999999999992, 0.70736250000000001)"
3872 ]
3873 },
3874 {
3875 "output_type": "stream",
3876 "stream": "stdout",
3877 "text": [
3878 "\n",
3879 "(461, -0.42802499999999999, -1.0120499999999999, 0.1252875)"
3880 ]
3881 },
3882 {
3883 "output_type": "stream",
3884 "stream": "stdout",
3885 "text": [
3886 "\n",
3887 "(462, -0.61229999999999996, -0.85507499999999992, -0.192075)"
3888 ]
3889 },
3890 {
3891 "output_type": "stream",
3892 "stream": "stdout",
3893 "text": [
3894 "\n",
3895 "(463, -0.69761249999999997, -0.31395000000000001, -0.80827499999999997)"
3896 ]
3897 },
3898 {
3899 "output_type": "stream",
3900 "stream": "stdout",
3901 "text": [
3902 "\n",
3903 "(464, -0.60011249999999994, -0.43874999999999997, -0.42948749999999997)"
3904 ]
3905 },
3906 {
3907 "output_type": "stream",
3908 "stream": "stdout",
3909 "text": [
3910 "\n",
3911 "(465, -0.89602499999999996, 0.12041249999999999, 0.67713749999999995)"
3912 ]
3913 },
3914 {
3915 "output_type": "stream",
3916 "stream": "stdout",
3917 "text": [
3918 "\n",
3919 "(466, -0.0029249999999999996, 0.71272499999999994, 0.63179999999999992)"
3920 ]
3921 },
3922 {
3923 "output_type": "stream",
3924 "stream": "stdout",
3925 "text": [
3926 "\n",
3927 "(467, 0.66689999999999994, 0.31979999999999997, 0.58743749999999995)"
3928 ]
3929 },
3930 {
3931 "output_type": "stream",
3932 "stream": "stdout",
3933 "text": [
3934 "\n",
3935 "(468, 1.0725, -0.39194999999999997, -0.21157499999999999)"
3936 ]
3937 },
3938 {
3939 "output_type": "stream",
3940 "stream": "stdout",
3941 "text": [
3942 "\n",
3943 "(469, 0.46507499999999996, -0.71077499999999993, -0.79852499999999993)"
3944 ]
3945 },
3946 {
3947 "output_type": "stream",
3948 "stream": "stdout",
3949 "text": [
3950 "\n",
3951 "(470, 0.064349999999999991, -0.71760000000000002, -0.79462499999999991)"
3952 ]
3953 },
3954 {
3955 "output_type": "stream",
3956 "stream": "stdout",
3957 "text": [
3958 "\n",
3959 "(471, -0.022912499999999999, -0.62692499999999995, -0.757575)"
3960 ]
3961 },
3962 {
3963 "output_type": "stream",
3964 "stream": "stdout",
3965 "text": [
3966 "\n",
3967 "(472, -0.818025, -0.41924999999999996, 0.30809999999999998)"
3968 ]
3969 },
3970 {
3971 "output_type": "stream",
3972 "stream": "stdout",
3973 "text": [
3974 "\n",
3975 "(473, -0.69566249999999996, 0.11212499999999999, 0.83947499999999997)"
3976 ]
3977 },
3978 {
3979 "output_type": "stream",
3980 "stream": "stdout",
3981 "text": [
3982 "\n",
3983 "(474, -0.059475, 0.52357500000000001, 0.83947499999999997)"
3984 ]
3985 },
3986 {
3987 "output_type": "stream",
3988 "stream": "stdout",
3989 "text": [
3990 "\n",
3991 "(475, 0.83849999999999991, 0.41778749999999998, 0.26227499999999998)"
3992 ]
3993 },
3994 {
3995 "output_type": "stream",
3996 "stream": "stdout",
3997 "text": [
3998 "\n",
3999 "(476, 0.67518749999999994, 0.57086249999999994, -0.13942499999999999)"
4000 ]
4001 },
4002 {
4003 "output_type": "stream",
4004 "stream": "stdout",
4005 "text": [
4006 "\n",
4007 "(477, 0.76439999999999997, 0.53137499999999993, -0.010725)"
4008 ]
4009 },
4010 {
4011 "output_type": "stream",
4012 "stream": "stdout",
4013 "text": [
4014 "\n",
4015 "(478, 0.82094999999999996, 0.64739999999999998, -0.071175000000000002)"
4016 ]
4017 },
4018 {
4019 "output_type": "stream",
4020 "stream": "stdout",
4021 "text": [
4022 "\n",
4023 "(479, 0.73709999999999998, 0.15453749999999999, -0.77610000000000001)"
4024 ]
4025 },
4026 {
4027 "output_type": "stream",
4028 "stream": "stdout",
4029 "text": [
4030 "\n",
4031 "(480, 0.19499999999999998, -0.58792499999999992, -0.75854999999999995)"
4032 ]
4033 },
4034 {
4035 "output_type": "stream",
4036 "stream": "stdout",
4037 "text": [
4038 "\n",
4039 "(481, -0.43095, -0.59670000000000001, -0.49237499999999995)"
4040 ]
4041 },
4042 {
4043 "output_type": "stream",
4044 "stream": "stdout",
4045 "text": [
4046 "\n",
4047 "(482, -0.85994999999999999, -0.33442499999999997, -0.29347499999999999)"
4048 ]
4049 },
4050 {
4051 "output_type": "stream",
4052 "stream": "stdout",
4053 "text": [
4054 "\n",
4055 "(483, -0.89115, -0.42314999999999997, -0.091649999999999995)"
4056 ]
4057 },
4058 {
4059 "output_type": "stream",
4060 "stream": "stdout",
4061 "text": [
4062 "\n",
4063 "(484, -0.90236249999999996, -0.48847499999999999, 0.64837499999999992)"
4064 ]
4065 },
4066 {
4067 "output_type": "stream",
4068 "stream": "stdout",
4069 "text": [
4070 "\n",
4071 "(485, -0.054112500000000001, 0.074099999999999999, 0.87067499999999998)"
4072 ]
4073 },
4074 {
4075 "output_type": "stream",
4076 "stream": "stdout",
4077 "text": [
4078 "\n",
4079 "(486, 0.61327500000000001, 0.46068749999999997, 0.27007500000000001)"
4080 ]
4081 },
4082 {
4083 "output_type": "stream",
4084 "stream": "stdout",
4085 "text": [
4086 "\n",
4087 "(487, 0.43095, 0.97499999999999998, -0.078)"
4088 ]
4089 },
4090 {
4091 "output_type": "stream",
4092 "stream": "stdout",
4093 "text": [
4094 "\n",
4095 "(488, -0.46215000000000001, 0.72929999999999995, 0.018525)"
4096 ]
4097 },
4098 {
4099 "output_type": "stream",
4100 "stream": "stdout",
4101 "text": [
4102 "\n",
4103 "(489, -1.0334999999999999, -0.41339999999999999, -0.19305)"
4104 ]
4105 },
4106 {
4107 "output_type": "stream",
4108 "stream": "stdout",
4109 "text": [
4110 "\n",
4111 "(490, -0.63374999999999992, -0.76829999999999998, -0.64252500000000001)"
4112 ]
4113 },
4114 {
4115 "output_type": "stream",
4116 "stream": "stdout",
4117 "text": [
4118 "\n",
4119 "(491, -0.066299999999999998, -0.61181249999999998, -0.85848749999999996)"
4120 ]
4121 },
4122 {
4123 "output_type": "stream",
4124 "stream": "stdout",
4125 "text": [
4126 "\n",
4127 "(492, 0.371475, -0.281775, -0.86969999999999992)"
4128 ]
4129 },
4130 {
4131 "output_type": "stream",
4132 "stream": "stdout",
4133 "text": [
4134 "\n",
4135 "(493, 0.42217499999999997, -0.66251249999999995, -0.59182499999999993)"
4136 ]
4137 },
4138 {
4139 "output_type": "stream",
4140 "stream": "stdout",
4141 "text": [
4142 "\n",
4143 "(494, 0.62790000000000001, -0.6907875, 0.17257499999999998)"
4144 ]
4145 },
4146 {
4147 "output_type": "stream",
4148 "stream": "stdout",
4149 "text": [
4150 "\n",
4151 "(495, 0.78487499999999999, -0.56891249999999993, 0.41339999999999999)"
4152 ]
4153 },
4154 {
4155 "output_type": "stream",
4156 "stream": "stdout",
4157 "text": [
4158 "\n",
4159 "(496, 0.39877499999999999, -0.61717499999999992, 0.70297500000000002)"
4160 ]
4161 },
4162 {
4163 "output_type": "stream",
4164 "stream": "stdout",
4165 "text": [
4166 "\n",
4167 "(497, -0.18329999999999999, -0.164775, 1.005225)"
4168 ]
4169 },
4170 {
4171 "output_type": "stream",
4172 "stream": "stdout",
4173 "text": [
4174 "\n",
4175 "(498, 0.29542499999999999, 0.81022499999999997, 0.17354999999999998)"
4176 ]
4177 },
4178 {
4179 "output_type": "stream",
4180 "stream": "stdout",
4181 "text": [
4182 "\n",
4183 "(499, 0.54989999999999994, 0.757575, -0.64349999999999996)"
4184 ]
4185 },
4186 {
4187 "output_type": "stream",
4188 "stream": "stdout",
4189 "text": [
4190 "\n",
4191 "(500, 0.46312499999999995, 0.70979999999999999, -0.62497499999999995)"
4192 ]
4193 },
4194 {
4195 "output_type": "stream",
4196 "stream": "stdout",
4197 "text": [
4198 "\n",
4199 "(501, 0.76391249999999999, 0.18525, -0.39292499999999997)"
4200 ]
4201 },
4202 {
4203 "output_type": "stream",
4204 "stream": "stdout",
4205 "text": [
4206 "\n",
4207 "(502, 0.87554999999999994, -0.490425, -0.61327500000000001)"
4208 ]
4209 },
4210 {
4211 "output_type": "stream",
4212 "stream": "stdout",
4213 "text": [
4214 "\n",
4215 "(503, 0.039487499999999995, -0.84434999999999993, -0.39487499999999998)"
4216 ]
4217 },
4218 {
4219 "output_type": "stream",
4220 "stream": "stdout",
4221 "text": [
4222 "\n",
4223 "(504, -0.54063749999999999, -0.76634999999999998, -0.058499999999999996)"
4224 ]
4225 },
4226 {
4227 "output_type": "stream",
4228 "stream": "stdout",
4229 "text": [
4230 "\n",
4231 "(505, -0.89212499999999995, -0.33734999999999998, 0.121875)"
4232 ]
4233 },
4234 {
4235 "output_type": "stream",
4236 "stream": "stdout",
4237 "text": [
4238 "\n",
4239 "(506, -1.03545, -0.13162499999999999, 0.14722499999999999)"
4240 ]
4241 },
4242 {
4243 "output_type": "stream",
4244 "stream": "stdout",
4245 "text": [
4246 "\n",
4247 "(507, -0.96524999999999994, -0.23594999999999999, 0.155025)"
4248 ]
4249 },
4250 {
4251 "output_type": "stream",
4252 "stream": "stdout",
4253 "text": [
4254 "\n",
4255 "(508, -0.87847500000000001, -0.371475, 0.17452499999999999)"
4256 ]
4257 },
4258 {
4259 "output_type": "stream",
4260 "stream": "stdout",
4261 "text": [
4262 "\n",
4263 "(509, -0.91747499999999993, -0.385125, 0.18232499999999999)"
4264 ]
4265 },
4266 {
4267 "output_type": "stream",
4268 "stream": "stdout",
4269 "text": [
4270 "\n",
4271 "(510, -0.75074999999999992, -0.81217499999999998, -0.31395000000000001)"
4272 ]
4273 },
4274 {
4275 "output_type": "stream",
4276 "stream": "stdout",
4277 "text": [
4278 "\n",
4279 "(511, 0.058499999999999996, -0.85117500000000001, -0.41827500000000001)"
4280 ]
4281 },
4282 {
4283 "output_type": "stream",
4284 "stream": "stdout",
4285 "text": [
4286 "\n",
4287 "(512, 0.728325, -0.61229999999999996, -0.28275)"
4288 ]
4289 },
4290 {
4291 "output_type": "stream",
4292 "stream": "stdout",
4293 "text": [
4294 "\n",
4295 "(513, 0.96963749999999993, -0.0029249999999999996, -0.063375000000000001)"
4296 ]
4297 },
4298 {
4299 "output_type": "stream",
4300 "stream": "stdout",
4301 "text": [
4302 "\n",
4303 "(514, 0.905775, -0.0706875, 0.68542499999999995)"
4304 ]
4305 },
4306 {
4307 "output_type": "stream",
4308 "stream": "stdout",
4309 "text": [
4310 "\n",
4311 "(515, 0.474825, -0.39389999999999997, 0.84629999999999994)"
4312 ]
4313 },
4314 {
4315 "output_type": "stream",
4316 "stream": "stdout",
4317 "text": [
4318 "\n",
4319 "(516, -0.10237499999999999, -0.66592499999999999, 0.58987499999999993)"
4320 ]
4321 },
4322 {
4323 "output_type": "stream",
4324 "stream": "stdout",
4325 "text": [
4326 "\n",
4327 "(517, -0.46897499999999998, -0.66397499999999998, 0.29152499999999998)"
4328 ]
4329 },
4330 {
4331 "output_type": "stream",
4332 "stream": "stdout",
4333 "text": [
4334 "\n",
4335 "(518, -0.73368749999999994, -0.63569999999999993, 0.19597499999999998)"
4336 ]
4337 },
4338 {
4339 "output_type": "stream",
4340 "stream": "stdout",
4341 "text": [
4342 "\n",
4343 "(519, -0.71418749999999998, -0.64349999999999996, -0.013649999999999999)"
4344 ]
4345 },
4346 {
4347 "output_type": "stream",
4348 "stream": "stdout",
4349 "text": [
4350 "\n",
4351 "(520, -0.69419999999999993, -0.60742499999999999, -0.53625)"
4352 ]
4353 },
4354 {
4355 "output_type": "stream",
4356 "stream": "stdout",
4357 "text": [
4358 "\n",
4359 "(521, -0.026324999999999998, -0.85409999999999997, -0.56159999999999999)"
4360 ]
4361 },
4362 {
4363 "output_type": "stream",
4364 "stream": "stdout",
4365 "text": [
4366 "\n",
4367 "(522, 0.23204999999999998, -0.78584999999999994, -0.40657499999999996)"
4368 ]
4369 },
4370 {
4371 "output_type": "stream",
4372 "stream": "stdout",
4373 "text": [
4374 "\n",
4375 "(523, 0.53966249999999993, -0.61522500000000002, -0.476775)"
4376 ]
4377 },
4378 {
4379 "output_type": "stream",
4380 "stream": "stdout",
4381 "text": [
4382 "\n",
4383 "(524, 0.669825, -0.31979999999999997, -0.62009999999999998)"
4384 ]
4385 },
4386 {
4387 "output_type": "stream",
4388 "stream": "stdout",
4389 "text": [
4390 "\n",
4391 "(525, 0.85604999999999998, -0.13455, -0.32077499999999998)"
4392 ]
4393 },
4394 {
4395 "output_type": "stream",
4396 "stream": "stdout",
4397 "text": [
4398 "\n",
4399 "(526, 0.94282499999999991, -0.024374999999999997, 0.18427499999999999)"
4400 ]
4401 },
4402 {
4403 "output_type": "stream",
4404 "stream": "stdout",
4405 "text": [
4406 "\n",
4407 "(527, 0.83849999999999991, -0.11602499999999999, 0.72149999999999992)"
4408 ]
4409 },
4410 {
4411 "output_type": "stream",
4412 "stream": "stdout",
4413 "text": [
4414 "\n",
4415 "(528, -0.017062499999999998, -0.52747500000000003, 0.81119999999999992)"
4416 ]
4417 },
4418 {
4419 "output_type": "stream",
4420 "stream": "stdout",
4421 "text": [
4422 "\n",
4423 "(529, -0.35392499999999999, -0.70297500000000002, 0.36074999999999996)"
4424 ]
4425 },
4426 {
4427 "output_type": "stream",
4428 "stream": "stdout",
4429 "text": [
4430 "\n",
4431 "(530, -0.61961250000000001, -0.77024999999999999, -0.1794)"
4432 ]
4433 },
4434 {
4435 "output_type": "stream",
4436 "stream": "stdout",
4437 "text": [
4438 "\n",
4439 "(531, -0.4914, -0.58304999999999996, -0.786825)"
4440 ]
4441 },
4442 {
4443 "output_type": "stream",
4444 "stream": "stdout",
4445 "text": [
4446 "\n",
4447 "(532, -0.24667499999999998, -0.077024999999999996, -1.1339249999999998)"
4448 ]
4449 },
4450 {
4451 "output_type": "stream",
4452 "stream": "stdout",
4453 "text": [
4454 "\n",
4455 "(533, -0.51187499999999997, 0.17354999999999998, -0.66494999999999993)"
4456 ]
4457 },
4458 {
4459 "output_type": "stream",
4460 "stream": "stdout",
4461 "text": [
4462 "\n",
4463 "(534, -0.907725, 0.0068249999999999995, -0.25155)"
4464 ]
4465 },
4466 {
4467 "output_type": "stream",
4468 "stream": "stdout",
4469 "text": [
4470 "\n",
4471 "(535, -0.88822499999999993, -0.42412499999999997, 0.51479999999999992)"
4472 ]
4473 },
4474 {
4475 "output_type": "stream",
4476 "stream": "stdout",
4477 "text": [
4478 "\n",
4479 "(536, -0.38317499999999999, -0.215475, 0.95062499999999994)"
4480 ]
4481 },
4482 {
4483 "output_type": "stream",
4484 "stream": "stdout",
4485 "text": [
4486 "\n",
4487 "(537, 0.31882499999999997, -0.083849999999999994, 0.75854999999999995)"
4488 ]
4489 },
4490 {
4491 "output_type": "stream",
4492 "stream": "stdout",
4493 "text": [
4494 "\n",
4495 "(538, 0.81948749999999992, -0.22034999999999999, 0.27641250000000001)"
4496 ]
4497 },
4498 {
4499 "output_type": "stream",
4500 "stream": "stdout",
4501 "text": [
4502 "\n",
4503 "(539, 0.79657499999999992, -0.62107499999999993, -0.37927499999999997)"
4504 ]
4505 },
4506 {
4507 "output_type": "stream",
4508 "stream": "stdout",
4509 "text": [
4510 "\n",
4511 "(540, 0.53039999999999998, -0.53332499999999994, -0.72929999999999995)"
4512 ]
4513 },
4514 {
4515 "output_type": "stream",
4516 "stream": "stdout",
4517 "text": [
4518 "\n",
4519 "(541, 0.31882499999999997, -0.48262499999999997, -0.92917499999999997)"
4520 ]
4521 },
4522 {
4523 "output_type": "stream",
4524 "stream": "stdout",
4525 "text": [
4526 "\n",
4527 "(542, 0.21742499999999998, -0.51382499999999998, -0.98669999999999991)"
4528 ]
4529 },
4530 {
4531 "output_type": "stream",
4532 "stream": "stdout",
4533 "text": [
4534 "\n",
4535 "(543, -0.15112499999999998, -0.56940000000000002, -0.81217499999999998)"
4536 ]
4537 },
4538 {
4539 "output_type": "stream",
4540 "stream": "stdout",
4541 "text": [
4542 "\n",
4543 "(544, -0.68737499999999996, -0.2964, -0.1867125)"
4544 ]
4545 },
4546 {
4547 "output_type": "stream",
4548 "stream": "stdout",
4549 "text": [
4550 "\n",
4551 "(545, -1.0866374999999999, -0.30127499999999996, 0.355875)"
4552 ]
4553 },
4554 {
4555 "output_type": "stream",
4556 "stream": "stdout",
4557 "text": [
4558 "\n",
4559 "(546, -0.76781250000000001, -0.35977499999999996, 0.53039999999999998)"
4560 ]
4561 },
4562 {
4563 "output_type": "stream",
4564 "stream": "stdout",
4565 "text": [
4566 "\n",
4567 "(547, -0.58889999999999998, -0.41437499999999999, 0.78974999999999995)"
4568 ]
4569 },
4570 {
4571 "output_type": "stream",
4572 "stream": "stdout",
4573 "text": [
4574 "\n",
4575 "(548, -0.12918749999999998, -0.55379999999999996, 0.8555625)"
4576 ]
4577 },
4578 {
4579 "output_type": "stream",
4580 "stream": "stdout",
4581 "text": [
4582 "\n",
4583 "(549, -0.1482, -0.25447500000000001, 0.8034)"
4584 ]
4585 },
4586 {
4587 "output_type": "stream",
4588 "stream": "stdout",
4589 "text": [
4590 "\n",
4591 "(550, -0.476775, 0.110175, 0.93014999999999992)"
4592 ]
4593 },
4594 {
4595 "output_type": "stream",
4596 "stream": "stdout",
4597 "text": [
4598 "\n",
4599 "(551, -0.080924999999999997, 0.62692499999999995, 0.72734999999999994)"
4600 ]
4601 },
4602 {
4603 "output_type": "stream",
4604 "stream": "stdout",
4605 "text": [
4606 "\n",
4607 "(552, 0.31979999999999997, 0.81899999999999995, -0.077024999999999996)"
4608 ]
4609 },
4610 {
4611 "output_type": "stream",
4612 "stream": "stdout",
4613 "text": [
4614 "\n",
4615 "(553, 0.75659999999999994, 0.431925, 0.54746249999999996)"
4616 ]
4617 },
4618 {
4619 "output_type": "stream",
4620 "stream": "stdout",
4621 "text": [
4622 "\n",
4623 "(554, 0.59377499999999994, -0.10139999999999999, 0.66007499999999997)"
4624 ]
4625 },
4626 {
4627 "output_type": "stream",
4628 "stream": "stdout",
4629 "text": [
4630 "\n",
4631 "(555, 0.61473749999999994, -0.4602, 0.24667499999999998)"
4632 ]
4633 },
4634 {
4635 "output_type": "stream",
4636 "stream": "stdout",
4637 "text": [
4638 "\n",
4639 "(556, 0.58207500000000001, -0.81997500000000001, -0.62302499999999994)"
4640 ]
4641 },
4642 {
4643 "output_type": "stream",
4644 "stream": "stdout",
4645 "text": [
4646 "\n",
4647 "(557, 0.28567500000000001, -0.65958749999999999, -0.84434999999999993)"
4648 ]
4649 },
4650 {
4651 "output_type": "stream",
4652 "stream": "stdout",
4653 "text": [
4654 "\n",
4655 "(558, 0.2227875, 0.0092624999999999999, -0.94574999999999998)"
4656 ]
4657 },
4658 {
4659 "output_type": "stream",
4660 "stream": "stdout",
4661 "text": [
4662 "\n",
4663 "(559, 0.51382499999999998, 0.15794999999999998, -0.71467499999999995)"
4664 ]
4665 },
4666 {
4667 "output_type": "stream",
4668 "stream": "stdout",
4669 "text": [
4670 "\n",
4671 "(560, 0.89115, -0.40852499999999997, 0.20669999999999999)"
4672 ]
4673 },
4674 {
4675 "output_type": "stream",
4676 "stream": "stdout",
4677 "text": [
4678 "\n",
4679 "(561, 0.056549999999999996, -0.87944999999999995, 0.52064999999999995)"
4680 ]
4681 },
4682 {
4683 "output_type": "stream",
4684 "stream": "stdout",
4685 "text": [
4686 "\n",
4687 "(562, -0.4446, -0.71272499999999994, 0.34709999999999996)"
4688 ]
4689 },
4690 {
4691 "output_type": "stream",
4692 "stream": "stdout",
4693 "text": [
4694 "\n",
4695 "(563, -0.72734999999999994, -0.74490000000000001, -0.40559999999999996)"
4696 ]
4697 },
4698 {
4699 "output_type": "stream",
4700 "stream": "stdout",
4701 "text": [
4702 "\n",
4703 "(564, -0.54502499999999998, -0.28762499999999996, -0.93892500000000001)"
4704 ]
4705 },
4706 {
4707 "output_type": "stream",
4708 "stream": "stdout",
4709 "text": [
4710 "\n",
4711 "(565, -0.25155, -0.07897499999999999, -0.87847500000000001)"
4712 ]
4713 },
4714 {
4715 "output_type": "stream",
4716 "stream": "stdout",
4717 "text": [
4718 "\n",
4719 "(566, -0.34076249999999997, 0.26032499999999997, -0.98377499999999996)"
4720 ]
4721 },
4722 {
4723 "output_type": "stream",
4724 "stream": "stdout",
4725 "text": [
4726 "\n",
4727 "(567, -0.76927499999999993, 0.29249999999999998, -0.53527499999999995)"
4728 ]
4729 },
4730 {
4731 "output_type": "stream",
4732 "stream": "stdout",
4733 "text": [
4734 "\n",
4735 "(568, -0.84532499999999999, -0.50017499999999993, 0.14429999999999998)"
4736 ]
4737 },
4738 {
4739 "output_type": "stream",
4740 "stream": "stdout",
4741 "text": [
4742 "\n",
4743 "(569, -0.62351250000000003, -0.35538749999999997, 0.87944999999999995)"
4744 ]
4745 },
4746 {
4747 "output_type": "stream",
4748 "stream": "stdout",
4749 "text": [
4750 "\n",
4751 "(570, 0.24082499999999998, 0.2145, 0.66884999999999994)"
4752 ]
4753 },
4754 {
4755 "output_type": "stream",
4756 "stream": "stdout",
4757 "text": [
4758 "\n",
4759 "(571, 0.69419999999999993, 0.164775, 0.59475)"
4760 ]
4761 },
4762 {
4763 "output_type": "stream",
4764 "stream": "stdout",
4765 "text": [
4766 "\n",
4767 "(572, 0.91357499999999991, -0.42412499999999997, -0.45629999999999998)"
4768 ]
4769 },
4770 {
4771 "output_type": "stream",
4772 "stream": "stdout",
4773 "text": [
4774 "\n",
4775 "(573, 0.371475, -0.39877499999999999, -0.86677499999999996)"
4776 ]
4777 },
4778 {
4779 "output_type": "stream",
4780 "stream": "stdout",
4781 "text": [
4782 "\n",
4783 "(574, 0.22424999999999998, -0.20474999999999999, -0.97207499999999991)"
4784 ]
4785 },
4786 {
4787 "output_type": "stream",
4788 "stream": "stdout",
4789 "text": [
4790 "\n",
4791 "(575, 0.27933749999999996, 0.040462499999999998, -0.9516)"
4792 ]
4793 },
4794 {
4795 "output_type": "stream",
4796 "stream": "stdout",
4797 "text": [
4798 "\n",
4799 "(576, 0.44069999999999998, 0.2457, -1.0071749999999999)"
4800 ]
4801 },
4802 {
4803 "output_type": "stream",
4804 "stream": "stdout",
4805 "text": [
4806 "\n",
4807 "(577, -0.055574999999999999, 0.34466249999999998, -0.91991249999999991)"
4808 ]
4809 },
4810 {
4811 "output_type": "stream",
4812 "stream": "stdout",
4813 "text": [
4814 "\n",
4815 "(578, -0.63667499999999999, 0.038024999999999996, -0.65325)"
4816 ]
4817 },
4818 {
4819 "output_type": "stream",
4820 "stream": "stdout",
4821 "text": [
4822 "\n",
4823 "(579, -0.8701875, -0.21742499999999998, -0.37001249999999997)"
4824 ]
4825 },
4826 {
4827 "output_type": "stream",
4828 "stream": "stdout",
4829 "text": [
4830 "\n",
4831 "(580, -0.95842499999999997, -0.44362499999999999, 0.21254999999999999)"
4832 ]
4833 },
4834 {
4835 "output_type": "stream",
4836 "stream": "stdout",
4837 "text": [
4838 "\n",
4839 "(581, -0.54112499999999997, -0.548925, 0.71662499999999996)"
4840 ]
4841 },
4842 {
4843 "output_type": "stream",
4844 "stream": "stdout",
4845 "text": [
4846 "\n",
4847 "(582, -0.12772500000000001, -0.23399999999999999, 1.0062)"
4848 ]
4849 },
4850 {
4851 "output_type": "stream",
4852 "stream": "stdout",
4853 "text": [
4854 "\n",
4855 "(583, 0.0024375, -0.0307125, 0.99352499999999999)"
4856 ]
4857 },
4858 {
4859 "output_type": "stream",
4860 "stream": "stdout",
4861 "text": [
4862 "\n",
4863 "(584, -0.20865, 0.031199999999999999, 0.95842499999999997)"
4864 ]
4865 },
4866 {
4867 "output_type": "stream",
4868 "stream": "stdout",
4869 "text": [
4870 "\n",
4871 "(585, -0.27592499999999998, 0.26129999999999998, 0.83460000000000001)"
4872 ]
4873 },
4874 {
4875 "output_type": "stream",
4876 "stream": "stdout",
4877 "text": [
4878 "\n",
4879 "(586, -0.17647499999999999, 0.25155, 0.93307499999999999)"
4880 ]
4881 },
4882 {
4883 "output_type": "stream",
4884 "stream": "stdout",
4885 "text": [
4886 "\n",
4887 "(587, -0.15794999999999998, 0.192075, 0.96037499999999998)"
4888 ]
4889 },
4890 {
4891 "output_type": "stream",
4892 "stream": "stdout",
4893 "text": [
4894 "\n",
4895 "(588, -0.1555125, 0.19597499999999998, 0.94087499999999991)"
4896 ]
4897 },
4898 {
4899 "output_type": "stream",
4900 "stream": "stdout",
4901 "text": [
4902 "\n",
4903 "(589, -0.17257499999999998, 0.114075, 0.95842499999999997)"
4904 ]
4905 },
4906 {
4907 "output_type": "stream",
4908 "stream": "stdout",
4909 "text": [
4910 "\n",
4911 "(590, -0.2223, -0.23351249999999998, 0.79364999999999997)"
4912 ]
4913 },
4914 {
4915 "output_type": "stream",
4916 "stream": "stdout",
4917 "text": [
4918 "\n",
4919 "(591, -0.54697499999999999, -0.36952499999999999, 0.49822499999999997)"
4920 ]
4921 },
4922 {
4923 "output_type": "stream",
4924 "stream": "stdout",
4925 "text": [
4926 "\n",
4927 "(592, -0.62595000000000001, -0.788775, -0.125775)"
4928 ]
4929 },
4930 {
4931 "output_type": "stream",
4932 "stream": "stdout",
4933 "text": [
4934 "\n",
4935 "(593, -0.39389999999999997, -0.64642499999999992, -0.85702499999999993)"
4936 ]
4937 },
4938 {
4939 "output_type": "stream",
4940 "stream": "stdout",
4941 "text": [
4942 "\n",
4943 "(594, -0.24082499999999998, -0.28664999999999996, -0.91064999999999996)"
4944 ]
4945 },
4946 {
4947 "output_type": "stream",
4948 "stream": "stdout",
4949 "text": [
4950 "\n",
4951 "(595, -0.41583749999999997, -0.0195, -0.81509999999999994)"
4952 ]
4953 },
4954 {
4955 "output_type": "stream",
4956 "stream": "stdout",
4957 "text": [
4958 "\n",
4959 "(596, -0.79657499999999992, -0.48359999999999997, -0.25739999999999996)"
4960 ]
4961 },
4962 {
4963 "output_type": "stream",
4964 "stream": "stdout",
4965 "text": [
4966 "\n",
4967 "(597, -0.56159999999999999, -0.76927499999999993, 0.6907875)"
4968 ]
4969 },
4970 {
4971 "output_type": "stream",
4972 "stream": "stdout",
4973 "text": [
4974 "\n",
4975 "(598, -0.164775, -0.25593749999999998, 0.73612499999999992)"
4976 ]
4977 },
4978 {
4979 "output_type": "stream",
4980 "stream": "stdout",
4981 "text": [
4982 "\n",
4983 "(599, 0.4602, -0.23204999999999998, 0.73027500000000001)"
4984 ]
4985 },
4986 {
4987 "output_type": "stream",
4988 "stream": "stdout",
4989 "text": [
4990 "\n",
4991 "(600, 0.79949999999999999, -0.54648750000000001, 0.2535)"
4992 ]
4993 },
4994 {
4995 "output_type": "stream",
4996 "stream": "stdout",
4997 "text": [
4998 "\n",
4999 "(601, 0.81022499999999997, -0.35294999999999999, -0.72637499999999999)"
5000 ]
5001 },
5002 {
5003 "output_type": "stream",
5004 "stream": "stdout",
5005 "text": [
5006 "\n",
5007 "(602, 0.59084999999999999, 0.17354999999999998, -0.51674999999999993)"
5008 ]
5009 },
5010 {
5011 "output_type": "stream",
5012 "stream": "stdout",
5013 "text": [
5014 "\n",
5015 "(603, 0.95452499999999996, -0.178425, 0.30907499999999999)"
5016 ]
5017 },
5018 {
5019 "output_type": "stream",
5020 "stream": "stdout",
5021 "text": [
5022 "\n",
5023 "(604, 0.28518749999999998, -0.728325, 0.461175)"
5024 ]
5025 },
5026 {
5027 "output_type": "stream",
5028 "stream": "stdout",
5029 "text": [
5030 "\n",
5031 "(605, -0.61619999999999997, -0.79949999999999999, 0.049724999999999998)"
5032 ]
5033 },
5034 {
5035 "output_type": "stream",
5036 "stream": "stdout",
5037 "text": [
5038 "\n",
5039 "(606, -0.82289999999999996, -0.55477500000000002, -0.070199999999999999)"
5040 ]
5041 },
5042 {
5043 "output_type": "stream",
5044 "stream": "stdout",
5045 "text": [
5046 "\n",
5047 "(607, -0.50895000000000001, -0.91454999999999997, -0.100425)"
5048 ]
5049 },
5050 {
5051 "output_type": "stream",
5052 "stream": "stdout",
5053 "text": [
5054 "\n",
5055 "(608, -0.30517499999999997, -0.9701249999999999, -0.26715)"
5056 ]
5057 },
5058 {
5059 "output_type": "stream",
5060 "stream": "stdout",
5061 "text": [
5062 "\n",
5063 "(609, -0.58109999999999995, -0.68445, -0.207675)"
5064 ]
5065 },
5066 {
5067 "output_type": "stream",
5068 "stream": "stdout",
5069 "text": [
5070 "\n",
5071 "(610, -0.55769999999999997, -0.82972499999999993, 0.30809999999999998)"
5072 ]
5073 },
5074 {
5075 "output_type": "stream",
5076 "stream": "stdout",
5077 "text": [
5078 "\n",
5079 "(611, 0.26861249999999998, -0.20865, 0.27494999999999997)"
5080 ]
5081 },
5082 {
5083 "output_type": "stream",
5084 "stream": "stdout",
5085 "text": [
5086 "\n",
5087 "(612, 0.75269999999999992, -0.77024999999999999, -0.00097499999999999996)"
5088 ]
5089 },
5090 {
5091 "output_type": "stream",
5092 "stream": "stdout",
5093 "text": [
5094 "\n",
5095 "(613, 0.070199999999999999, -0.79364999999999997, -0.71174999999999999)"
5096 ]
5097 },
5098 {
5099 "output_type": "stream",
5100 "stream": "stdout",
5101 "text": [
5102 "\n",
5103 "(614, -0.42509999999999998, -0.16818749999999999, -0.91064999999999996)"
5104 ]
5105 },
5106 {
5107 "output_type": "stream",
5108 "stream": "stdout",
5109 "text": [
5110 "\n",
5111 "(615, -0.82582499999999992, -0.12967499999999998, -0.073124999999999996)"
5112 ]
5113 },
5114 {
5115 "output_type": "stream",
5116 "stream": "stdout",
5117 "text": [
5118 "\n",
5119 "(616, -0.51821249999999996, 0.50017499999999993, 0.51090000000000002)"
5120 ]
5121 },
5122 {
5123 "output_type": "stream",
5124 "stream": "stdout",
5125 "text": [
5126 "\n",
5127 "(617, 0.62351250000000003, 0.34027499999999999, 0.31589999999999996)"
5128 ]
5129 },
5130 {
5131 "output_type": "stream",
5132 "stream": "stdout",
5133 "text": [
5134 "\n",
5135 "(618, 0.88529999999999998, -0.757575, 0.075075000000000003)"
5136 ]
5137 },
5138 {
5139 "output_type": "stream",
5140 "stream": "stdout",
5141 "text": [
5142 "\n",
5143 "(619, -0.091649999999999995, -0.936975, -0.47872499999999996)"
5144 ]
5145 },
5146 {
5147 "output_type": "stream",
5148 "stream": "stdout",
5149 "text": [
5150 "\n",
5151 "(620, -0.48945, -0.19305, -0.84239999999999993)"
5152 ]
5153 },
5154 {
5155 "output_type": "stream",
5156 "stream": "stdout",
5157 "text": [
5158 "\n",
5159 "(621, -0.876525, 0.18914999999999998, 0.38122499999999998)"
5160 ]
5161 },
5162 {
5163 "output_type": "stream",
5164 "stream": "stdout",
5165 "text": [
5166 "\n",
5167 "(622, 0.37488749999999998, 0.63374999999999992, 0.11992499999999999)"
5168 ]
5169 },
5170 {
5171 "output_type": "stream",
5172 "stream": "stdout",
5173 "text": [
5174 "\n",
5175 "(623, 1.0237499999999999, -0.38024999999999998, 0.18037499999999998)"
5176 ]
5177 },
5178 {
5179 "output_type": "stream",
5180 "stream": "stdout",
5181 "text": [
5182 "\n",
5183 "(624, 0.2383875, -0.99449999999999994, -0.15356249999999999)"
5184 ]
5185 },
5186 {
5187 "output_type": "stream",
5188 "stream": "stdout",
5189 "text": [
5190 "\n",
5191 "(625, -0.83655000000000002, -0.61229999999999996, -0.14235)"
5192 ]
5193 },
5194 {
5195 "output_type": "stream",
5196 "stream": "stdout",
5197 "text": [
5198 "\n",
5199 "(626, -0.79559999999999997, 0.19305, 0.72539999999999993)"
5200 ]
5201 },
5202 {
5203 "output_type": "stream",
5204 "stream": "stdout",
5205 "text": [
5206 "\n",
5207 "(627, 0.13016249999999999, 0.80827499999999997, 0.012674999999999999)"
5208 ]
5209 },
5210 {
5211 "output_type": "stream",
5212 "stream": "stdout",
5213 "text": [
5214 "\n",
5215 "(628, 0.847275, 0.036562499999999998, 0.24082499999999998)"
5216 ]
5217 },
5218 {
5219 "output_type": "stream",
5220 "stream": "stdout",
5221 "text": [
5222 "\n",
5223 "(629, 0.52259999999999995, -0.94477499999999992, -0.0307125)"
5224 ]
5225 },
5226 {
5227 "output_type": "stream",
5228 "stream": "stdout",
5229 "text": [
5230 "\n",
5231 "(630, -0.70589999999999997, -0.39389999999999997, -0.85263749999999994)"
5232 ]
5233 },
5234 {
5235 "output_type": "stream",
5236 "stream": "stdout",
5237 "text": [
5238 "\n",
5239 "(631, -0.70004999999999995, -0.4528875, 0.26422499999999999)"
5240 ]
5241 },
5242 {
5243 "output_type": "stream",
5244 "stream": "stdout",
5245 "text": [
5246 "\n",
5247 "(632, -0.63472499999999998, 0.51285000000000003, 0.58987499999999993)"
5248 ]
5249 },
5250 {
5251 "output_type": "stream",
5252 "stream": "stdout",
5253 "text": [
5254 "\n",
5255 "(633, 0.50895000000000001, 0.81217499999999998, -0.10725)"
5256 ]
5257 },
5258 {
5259 "output_type": "stream",
5260 "stream": "stdout",
5261 "text": [
5262 "\n",
5263 "(634, 0.95647499999999996, -0.474825, 0.59279999999999999)"
5264 ]
5265 },
5266 {
5267 "output_type": "stream",
5268 "stream": "stdout",
5269 "text": [
5270 "\n",
5271 "(635, -0.23887499999999998, -1.0208249999999999, 0.141375)"
5272 ]
5273 },
5274 {
5275 "output_type": "stream",
5276 "stream": "stdout",
5277 "text": [
5278 "\n",
5279 "(636, -0.78097499999999997, -0.40559999999999996, -0.60449999999999993)"
5280 ]
5281 },
5282 {
5283 "output_type": "stream",
5284 "stream": "stdout",
5285 "text": [
5286 "\n",
5287 "(637, -1.022775, -0.12869999999999998, 0.46556249999999999)"
5288 ]
5289 },
5290 {
5291 "output_type": "stream",
5292 "stream": "stdout",
5293 "text": [
5294 "\n",
5295 "(638, -0.56842499999999996, 0.58889999999999998, 0.32077499999999998)"
5296 ]
5297 },
5298 {
5299 "output_type": "stream",
5300 "stream": "stdout",
5301 "text": [
5302 "\n",
5303 "(639, 0.52259999999999995, 0.71954999999999991, -0.07897499999999999)"
5304 ]
5305 },
5306 {
5307 "output_type": "stream",
5308 "stream": "stdout",
5309 "text": [
5310 "\n",
5311 "(640, 0.89115, -0.2145, 0.201825)"
5312 ]
5313 },
5314 {
5315 "output_type": "stream",
5316 "stream": "stdout",
5317 "text": [
5318 "\n",
5319 "(641, 0.6010875, -0.98572499999999996, 0.096525)"
5320 ]
5321 },
5322 {
5323 "output_type": "stream",
5324 "stream": "stdout",
5325 "text": [
5326 "\n",
5327 "(642, -0.215475, -0.99742500000000001, -0.229125)"
5328 ]
5329 },
5330 {
5331 "output_type": "stream",
5332 "stream": "stdout",
5333 "text": [
5334 "\n",
5335 "(643, -0.57914999999999994, -0.40949999999999998, -0.78487499999999999)"
5336 ]
5337 },
5338 {
5339 "output_type": "stream",
5340 "stream": "stdout",
5341 "text": [
5342 "\n",
5343 "(644, -0.68445, -0.25642500000000001, -0.039)"
5344 ]
5345 },
5346 {
5347 "output_type": "stream",
5348 "stream": "stdout",
5349 "text": [
5350 "\n",
5351 "(645, -0.8097375, 0.43777499999999997, 0.56745000000000001)"
5352 ]
5353 },
5354 {
5355 "output_type": "stream",
5356 "stream": "stdout",
5357 "text": [
5358 "\n",
5359 "(646, 0.75952500000000001, 0.37342500000000001, 0.40365000000000001)"
5360 ]
5361 },
5362 {
5363 "output_type": "stream",
5364 "stream": "stdout",
5365 "text": [
5366 "\n",
5367 "(647, 0.77463749999999998, -0.90187499999999998, 0.27202499999999996)"
5368 ]
5369 },
5370 {
5371 "output_type": "stream",
5372 "stream": "stdout",
5373 "text": [
5374 "\n",
5375 "(648, -0.079949999999999993, -0.91357499999999991, -0.54210000000000003)"
5376 ]
5377 },
5378 {
5379 "output_type": "stream",
5380 "stream": "stdout",
5381 "text": [
5382 "\n",
5383 "(649, -0.63959999999999995, -0.50651250000000003, -0.78584999999999994)"
5384 ]
5385 },
5386 {
5387 "output_type": "stream",
5388 "stream": "stdout",
5389 "text": [
5390 "\n",
5391 "(650, -0.667875, -0.24764999999999998, 0.33539999999999998)"
5392 ]
5393 },
5394 {
5395 "output_type": "stream",
5396 "stream": "stdout",
5397 "text": [
5398 "\n",
5399 "(651, -0.69517499999999999, 0.33344999999999997, 0.52113750000000003)"
5400 ]
5401 },
5402 {
5403 "output_type": "stream",
5404 "stream": "stdout",
5405 "text": [
5406 "\n",
5407 "(652, 0.40657499999999996, 0.33929999999999999, 0.44069999999999998)"
5408 ]
5409 },
5410 {
5411 "output_type": "stream",
5412 "stream": "stdout",
5413 "text": [
5414 "\n",
5415 "(653, 0.92478749999999998, -0.8536125, 0.052649999999999995)"
5416 ]
5417 },
5418 {
5419 "output_type": "stream",
5420 "stream": "stdout",
5421 "text": [
5422 "\n",
5423 "(654, 0.15015000000000001, -0.96134999999999993, -0.57037499999999997)"
5424 ]
5425 },
5426 {
5427 "output_type": "stream",
5428 "stream": "stdout",
5429 "text": [
5430 "\n",
5431 "(655, -0.77073749999999996, -0.24959999999999999, -1.0032749999999999)"
5432 ]
5433 },
5434 {
5435 "output_type": "stream",
5436 "stream": "stdout",
5437 "text": [
5438 "\n",
5439 "(656, -0.52893749999999995, -0.46604999999999996, -0.047774999999999998)"
5440 ]
5441 },
5442 {
5443 "output_type": "stream",
5444 "stream": "stdout",
5445 "text": [
5446 "\n",
5447 "(657, -0.66884999999999994, -0.3046875, 0.905775)"
5448 ]
5449 },
5450 {
5451 "output_type": "stream",
5452 "stream": "stdout",
5453 "text": [
5454 "\n",
5455 "(658, 0.47433749999999997, 0.54794999999999994, 0.25642500000000001)"
5456 ]
5457 },
5458 {
5459 "output_type": "stream",
5460 "stream": "stdout",
5461 "text": [
5462 "\n",
5463 "(659, 0.85117500000000001, -0.28567500000000001, 0.231075)"
5464 ]
5465 },
5466 {
5467 "output_type": "stream",
5468 "stream": "stdout",
5469 "text": [
5470 "\n",
5471 "(660, 0.45873749999999996, -0.96329999999999993, -0.54502499999999998)"
5472 ]
5473 },
5474 {
5475 "output_type": "stream",
5476 "stream": "stdout",
5477 "text": [
5478 "\n",
5479 "(661, -0.45922499999999999, -0.638625, -0.79706250000000001)"
5480 ]
5481 },
5482 {
5483 "output_type": "stream",
5484 "stream": "stdout",
5485 "text": [
5486 "\n",
5487 "(662, -0.27299999999999996, -0.37196249999999997, -0.9764624999999999)"
5488 ]
5489 },
5490 {
5491 "output_type": "stream",
5492 "stream": "stdout",
5493 "text": [
5494 "\n",
5495 "(663, -0.86677499999999996, 0.32955000000000001, 0.041924999999999997)"
5496 ]
5497 },
5498 {
5499 "output_type": "stream",
5500 "stream": "stdout",
5501 "text": [
5502 "\n",
5503 "(664, -0.36757499999999999, 0.84142499999999998, 0.24277499999999999)"
5504 ]
5505 },
5506 {
5507 "output_type": "stream",
5508 "stream": "stdout",
5509 "text": [
5510 "\n",
5511 "(665, 0.476775, 0.43582499999999996, 0.67079999999999995)"
5512 ]
5513 },
5514 {
5515 "output_type": "stream",
5516 "stream": "stdout",
5517 "text": [
5518 "\n",
5519 "(666, 0.5425875, -0.65032499999999993, 0.31979999999999997)"
5520 ]
5521 },
5522 {
5523 "output_type": "stream",
5524 "stream": "stdout",
5525 "text": [
5526 "\n",
5527 "(667, 0.2442375, -1.0997999999999999, -0.32467499999999999)"
5528 ]
5529 },
5530 {
5531 "output_type": "stream",
5532 "stream": "stdout",
5533 "text": [
5534 "\n",
5535 "(668, -0.68981249999999994, -0.32174999999999998, -0.29542499999999999)"
5536 ]
5537 },
5538 {
5539 "output_type": "stream",
5540 "stream": "stdout",
5541 "text": [
5542 "\n",
5543 "(669, -0.77902499999999997, -0.083849999999999994, -0.26617499999999999)"
5544 ]
5545 },
5546 {
5547 "output_type": "stream",
5548 "stream": "stdout",
5549 "text": [
5550 "\n",
5551 "(670, -0.91942499999999994, 0.342225, 0.72539999999999993)"
5552 ]
5553 },
5554 {
5555 "output_type": "stream",
5556 "stream": "stdout",
5557 "text": [
5558 "\n",
5559 "(671, 0.13649999999999998, 0.86969999999999992, 0.29347499999999999)"
5560 ]
5561 },
5562 {
5563 "output_type": "stream",
5564 "stream": "stdout",
5565 "text": [
5566 "\n",
5567 "(672, 0.41437499999999999, 0.92527499999999996, -0.51869999999999994)"
5568 ]
5569 },
5570 {
5571 "output_type": "stream",
5572 "stream": "stdout",
5573 "text": [
5574 "\n",
5575 "(673, 0.28567500000000001, 0.98377499999999996, -0.42509999999999998)"
5576 ]
5577 },
5578 {
5579 "output_type": "stream",
5580 "stream": "stdout",
5581 "text": [
5582 "\n",
5583 "(674, -0.26763749999999997, 0.30858749999999996, -0.83118749999999997)"
5584 ]
5585 },
5586 {
5587 "output_type": "stream",
5588 "stream": "stdout",
5589 "text": [
5590 "\n",
5591 "(675, -0.69176249999999995, -0.53137499999999993, -0.63569999999999993)"
5592 ]
5593 },
5594 {
5595 "output_type": "stream",
5596 "stream": "stdout",
5597 "text": [
5598 "\n",
5599 "(676, 0.1642875, -0.91064999999999996, -0.077024999999999996)"
5600 ]
5601 },
5602 {
5603 "output_type": "stream",
5604 "stream": "stdout",
5605 "text": [
5606 "\n",
5607 "(677, 0.49432499999999996, -0.88724999999999998, 0.062399999999999997)"
5608 ]
5609 },
5610 {
5611 "output_type": "stream",
5612 "stream": "stdout",
5613 "text": [
5614 "\n",
5615 "(678, 0.55818749999999995, -0.76537499999999992, 0.43874999999999997)"
5616 ]
5617 },
5618 {
5619 "output_type": "stream",
5620 "stream": "stdout",
5621 "text": [
5622 "\n",
5623 "(679, 0.58987499999999993, -0.79267500000000002, 0.18037499999999998)"
5624 ]
5625 },
5626 {
5627 "output_type": "stream",
5628 "stream": "stdout",
5629 "text": [
5630 "\n",
5631 "(680, 0.62497499999999995, -0.68883749999999999, -0.37732499999999997)"
5632 ]
5633 },
5634 {
5635 "output_type": "stream",
5636 "stream": "stdout",
5637 "text": [
5638 "\n",
5639 "(681, 0.68835000000000002, -0.68152499999999994, -0.31492500000000001)"
5640 ]
5641 },
5642 {
5643 "output_type": "stream",
5644 "stream": "stdout",
5645 "text": [
5646 "\n",
5647 "(682, 0.80924999999999991, -0.41144999999999998, -0.25447500000000001)"
5648 ]
5649 },
5650 {
5651 "output_type": "stream",
5652 "stream": "stdout",
5653 "text": [
5654 "\n",
5655 "(683, 0.88529999999999998, -0.35977499999999996, -0.11895)"
5656 ]
5657 },
5658 {
5659 "output_type": "stream",
5660 "stream": "stdout",
5661 "text": [
5662 "\n",
5663 "(684, 0.92576249999999993, -0.13747499999999999, 0.48798749999999996)"
5664 ]
5665 },
5666 {
5667 "output_type": "stream",
5668 "stream": "stdout",
5669 "text": [
5670 "\n",
5671 "(685, 0.56793749999999998, 0.10529999999999999, 0.95647499999999996)"
5672 ]
5673 },
5674 {
5675 "output_type": "stream",
5676 "stream": "stdout",
5677 "text": [
5678 "\n",
5679 "(686, 0.28226249999999997, 0.16038749999999999, 0.91357499999999991)"
5680 ]
5681 },
5682 {
5683 "output_type": "stream",
5684 "stream": "stdout",
5685 "text": [
5686 "\n",
5687 "(687, 0.19889999999999999, 0.192075, 0.936975)"
5688 ]
5689 },
5690 {
5691 "output_type": "stream",
5692 "stream": "stdout",
5693 "text": [
5694 "\n",
5695 "(688, 0.057525, 0.20328749999999998, 0.876525)"
5696 ]
5697 },
5698 {
5699 "output_type": "stream",
5700 "stream": "stdout",
5701 "text": [
5702 "\n",
5703 "(689, -0.51772499999999999, 0.074099999999999999, 0.74490000000000001)"
5704 ]
5705 },
5706 {
5707 "output_type": "stream",
5708 "stream": "stdout",
5709 "text": [
5710 "\n",
5711 "(690, -0.70589999999999997, -0.058499999999999996, 0.64593749999999994)"
5712 ]
5713 },
5714 {
5715 "output_type": "stream",
5716 "stream": "stdout",
5717 "text": [
5718 "\n",
5719 "(691, -0.82241249999999999, -0.22717499999999999, 0.20669999999999999)"
5720 ]
5721 },
5722 {
5723 "output_type": "stream",
5724 "stream": "stdout",
5725 "text": [
5726 "\n",
5727 "(692, -0.77268749999999997, -0.60644999999999993, -0.59182499999999993)"
5728 ]
5729 },
5730 {
5731 "output_type": "stream",
5732 "stream": "stdout",
5733 "text": [
5734 "\n",
5735 "(693, -0.37245, -0.41242499999999999, -0.94964999999999999)"
5736 ]
5737 },
5738 {
5739 "output_type": "stream",
5740 "stream": "stdout",
5741 "text": [
5742 "\n",
5743 "(694, -0.48262499999999997, -0.050699999999999995, -0.88237499999999991)"
5744 ]
5745 },
5746 {
5747 "output_type": "stream",
5748 "stream": "stdout",
5749 "text": [
5750 "\n",
5751 "(695, -0.50017499999999993, -0.13552500000000001, -0.72052499999999997)"
5752 ]
5753 },
5754 {
5755 "output_type": "stream",
5756 "stream": "stdout",
5757 "text": [
5758 "\n",
5759 "(696, -0.83655000000000002, -0.4914, 0.061912499999999995)"
5760 ]
5761 },
5762 {
5763 "output_type": "stream",
5764 "stream": "stdout",
5765 "text": [
5766 "\n",
5767 "(697, -0.86774999999999991, -0.3705, 0.66884999999999994)"
5768 ]
5769 },
5770 {
5771 "output_type": "stream",
5772 "stream": "stdout",
5773 "text": [
5774 "\n",
5775 "(698, -0.36757499999999999, 0.41144999999999998, 0.84873749999999992)"
5776 ]
5777 },
5778 {
5779 "output_type": "stream",
5780 "stream": "stdout",
5781 "text": [
5782 "\n",
5783 "(699, 0.36562499999999998, 0.59767499999999996, 0.57914999999999994)"
5784 ]
5785 },
5786 {
5787 "output_type": "stream",
5788 "stream": "stdout",
5789 "text": [
5790 "\n",
5791 "(700, 0.67567499999999991, 0.281775, 0.4528875)"
5792 ]
5793 },
5794 {
5795 "output_type": "stream",
5796 "stream": "stdout",
5797 "text": [
5798 "\n",
5799 "(701, 0.88432499999999992, -0.20085, 0.18037499999999998)"
5800 ]
5801 },
5802 {
5803 "output_type": "stream",
5804 "stream": "stdout",
5805 "text": [
5806 "\n",
5807 "(702, 0.85799999999999998, -0.56696249999999992, -0.43777499999999997)"
5808 ]
5809 },
5810 {
5811 "output_type": "stream",
5812 "stream": "stdout",
5813 "text": [
5814 "\n",
5815 "(703, 0.51869999999999994, -0.48603749999999996, -0.89115)"
5816 ]
5817 },
5818 {
5819 "output_type": "stream",
5820 "stream": "stdout",
5821 "text": [
5822 "\n",
5823 "(704, 0.23399999999999999, -0.094574999999999992, -1.0237499999999999)"
5824 ]
5825 },
5826 {
5827 "output_type": "stream",
5828 "stream": "stdout",
5829 "text": [
5830 "\n",
5831 "(705, 0.29054999999999997, 0.0038999999999999998, -1.0042499999999999)"
5832 ]
5833 },
5834 {
5835 "output_type": "stream",
5836 "stream": "stdout",
5837 "text": [
5838 "\n",
5839 "(706, 0.44655, 0.07897499999999999, -0.85312499999999991)"
5840 ]
5841 },
5842 {
5843 "output_type": "stream",
5844 "stream": "stdout",
5845 "text": [
5846 "\n",
5847 "(707, 0.76829999999999998, -0.032174999999999995, -0.42217499999999997)"
5848 ]
5849 },
5850 {
5851 "output_type": "stream",
5852 "stream": "stdout",
5853 "text": [
5854 "\n",
5855 "(708, 0.90674999999999994, -0.283725, -0.054599999999999996)"
5856 ]
5857 },
5858 {
5859 "output_type": "stream",
5860 "stream": "stdout",
5861 "text": [
5862 "\n",
5863 "(709, 0.91649999999999998, -0.35977499999999996, -0.024374999999999997)"
5864 ]
5865 },
5866 {
5867 "output_type": "stream",
5868 "stream": "stdout",
5869 "text": [
5870 "\n",
5871 "(710, 0.84191249999999995, -0.57914999999999994, -0.18719999999999998)"
5872 ]
5873 },
5874 {
5875 "output_type": "stream",
5876 "stream": "stdout",
5877 "text": [
5878 "\n",
5879 "(711, 0.30907499999999999, -1.0247249999999999, 0.072149999999999992)"
5880 ]
5881 },
5882 {
5883 "output_type": "stream",
5884 "stream": "stdout",
5885 "text": [
5886 "\n",
5887 "(712, -0.33247499999999997, -1.0101, -0.15209999999999999)"
5888 ]
5889 },
5890 {
5891 "output_type": "stream",
5892 "stream": "stdout",
5893 "text": [
5894 "\n",
5895 "(713, -0.46361249999999998, -1.1075999999999999, -0.23302499999999998)"
5896 ]
5897 },
5898 {
5899 "output_type": "stream",
5900 "stream": "stdout",
5901 "text": [
5902 "\n",
5903 "(714, -0.45483750000000001, -0.60449999999999993, -0.92771249999999994)"
5904 ]
5905 },
5906 {
5907 "output_type": "stream",
5908 "stream": "stdout",
5909 "text": [
5910 "\n",
5911 "(715, -0.03705, -0.43095, -0.83655000000000002)"
5912 ]
5913 },
5914 {
5915 "output_type": "stream",
5916 "stream": "stdout",
5917 "text": [
5918 "\n",
5919 "(716, -0.40559999999999996, -0.37586249999999999, -0.67957499999999993)"
5920 ]
5921 },
5922 {
5923 "output_type": "stream",
5924 "stream": "stdout",
5925 "text": [
5926 "\n",
5927 "(717, -0.91649999999999998, -0.28762499999999996, 0.044850000000000001)"
5928 ]
5929 },
5930 {
5931 "output_type": "stream",
5932 "stream": "stdout",
5933 "text": [
5934 "\n",
5935 "(718, -0.83655000000000002, 0.11895, 0.76634999999999998)"
5936 ]
5937 },
5938 {
5939 "output_type": "stream",
5940 "stream": "stdout",
5941 "text": [
5942 "\n",
5943 "(719, -0.014137499999999999, 0.70297500000000002, 0.5655)"
5944 ]
5945 },
5946 {
5947 "output_type": "stream",
5948 "stream": "stdout",
5949 "text": [
5950 "\n",
5951 "(720, 0.58402500000000002, 0.59133749999999996, 0.58694999999999997)"
5952 ]
5953 },
5954 {
5955 "output_type": "stream",
5956 "stream": "stdout",
5957 "text": [
5958 "\n",
5959 "(721, 0.87847500000000001, 0.056549999999999996, 0.162825)"
5960 ]
5961 },
5962 {
5963 "output_type": "stream",
5964 "stream": "stdout",
5965 "text": [
5966 "\n",
5967 "(722, 0.85604999999999998, -0.56842499999999996, -0.57427499999999998)"
5968 ]
5969 },
5970 {
5971 "output_type": "stream",
5972 "stream": "stdout",
5973 "text": [
5974 "\n",
5975 "(723, 0.23497499999999999, -0.67469999999999997, -0.78389999999999993)"
5976 ]
5977 },
5978 {
5979 "output_type": "stream",
5980 "stream": "stdout",
5981 "text": [
5982 "\n",
5983 "(724, 0.17647499999999999, -0.48945, -0.85848749999999996)"
5984 ]
5985 },
5986 {
5987 "output_type": "stream",
5988 "stream": "stdout",
5989 "text": [
5990 "\n",
5991 "(725, -0.19109999999999999, -0.43582499999999996, -0.89017499999999994)"
5992 ]
5993 },
5994 {
5995 "output_type": "stream",
5996 "stream": "stdout",
5997 "text": [
5998 "\n",
5999 "(726, -0.58597500000000002, -0.36854999999999999, -0.46994999999999998)"
6000 ]
6001 },
6002 {
6003 "output_type": "stream",
6004 "stream": "stdout",
6005 "text": [
6006 "\n",
6007 "(727, -0.96817500000000001, -0.33052499999999996, 0.077024999999999996)"
6008 ]
6009 },
6010 {
6011 "output_type": "stream",
6012 "stream": "stdout",
6013 "text": [
6014 "\n",
6015 "(728, -0.83849999999999991, -0.56062499999999993, 0.252525)"
6016 ]
6017 },
6018 {
6019 "output_type": "stream",
6020 "stream": "stdout",
6021 "text": [
6022 "\n",
6023 "(729, -0.71565000000000001, -0.60791249999999997, 0.58499999999999996)"
6024 ]
6025 },
6026 {
6027 "output_type": "stream",
6028 "stream": "stdout",
6029 "text": [
6030 "\n",
6031 "(730, -0.21937499999999999, -0.62692499999999995, 0.80924999999999991)"
6032 ]
6033 },
6034 {
6035 "output_type": "stream",
6036 "stream": "stdout",
6037 "text": [
6038 "\n",
6039 "(731, -0.49529999999999996, -0.26519999999999999, 0.95939999999999992)"
6040 ]
6041 },
6042 {
6043 "output_type": "stream",
6044 "stream": "stdout",
6045 "text": [
6046 "\n",
6047 "(732, -0.10725, 0.20279999999999998, 0.87164999999999992)"
6048 ]
6049 },
6050 {
6051 "output_type": "stream",
6052 "stream": "stdout",
6053 "text": [
6054 "\n",
6055 "(733, 0.44898749999999998, 0.56745000000000001, 0.44167499999999998)"
6056 ]
6057 },
6058 {
6059 "output_type": "stream",
6060 "stream": "stdout",
6061 "text": [
6062 "\n",
6063 "(734, 0.62546249999999992, 0.44849999999999995, 0.29152499999999998)"
6064 ]
6065 },
6066 {
6067 "output_type": "stream",
6068 "stream": "stdout",
6069 "text": [
6070 "\n",
6071 "(735, 0.89602499999999996, -0.54015000000000002, -0.37634999999999996)"
6072 ]
6073 },
6074 {
6075 "output_type": "stream",
6076 "stream": "stdout",
6077 "text": [
6078 "\n",
6079 "(736, 0.30956249999999996, -0.53917499999999996, -0.936975)"
6080 ]
6081 },
6082 {
6083 "output_type": "stream",
6084 "stream": "stdout",
6085 "text": [
6086 "\n",
6087 "(737, 0.10335, -0.064349999999999991, -0.89699999999999991)"
6088 ]
6089 },
6090 {
6091 "output_type": "stream",
6092 "stream": "stdout",
6093 "text": [
6094 "\n",
6095 "(738, 0.69224999999999992, -0.25934999999999997, -0.33247499999999997)"
6096 ]
6097 },
6098 {
6099 "output_type": "stream",
6100 "stream": "stdout",
6101 "text": [
6102 "\n",
6103 "(739, 0.75513750000000002, -0.65081250000000002, 0.27787499999999998)"
6104 ]
6105 },
6106 {
6107 "output_type": "stream",
6108 "stream": "stdout",
6109 "text": [
6110 "\n",
6111 "(740, 0.20962499999999998, -1.0437375, 0.0038999999999999998)"
6112 ]
6113 },
6114 {
6115 "output_type": "stream",
6116 "stream": "stdout",
6117 "text": [
6118 "\n",
6119 "(741, -0.223275, -0.87847500000000001, -0.14332499999999998)"
6120 ]
6121 },
6122 {
6123 "output_type": "stream",
6124 "stream": "stdout",
6125 "text": [
6126 "\n",
6127 "(742, -0.55623749999999994, -0.84044999999999992, -0.16574999999999998)"
6128 ]
6129 },
6130 {
6131 "output_type": "stream",
6132 "stream": "stdout",
6133 "text": [
6134 "\n",
6135 "(743, -0.70784999999999998, -0.70394999999999996, -0.23399999999999999)"
6136 ]
6137 },
6138 {
6139 "output_type": "stream",
6140 "stream": "stdout",
6141 "text": [
6142 "\n",
6143 "(744, -0.77999999999999992, -0.69127499999999997, -0.64057500000000001)"
6144 ]
6145 },
6146 {
6147 "output_type": "stream",
6148 "stream": "stdout",
6149 "text": [
6150 "\n",
6151 "(745, -0.55769999999999997, -0.49724999999999997, -0.63472499999999998)"
6152 ]
6153 },
6154 {
6155 "output_type": "stream",
6156 "stream": "stdout",
6157 "text": [
6158 "\n",
6159 "(746, -0.53137499999999993, -0.46604999999999996, -0.86092499999999994)"
6160 ]
6161 },
6162 {
6163 "output_type": "stream",
6164 "stream": "stdout",
6165 "text": [
6166 "\n",
6167 "(747, -0.47872499999999996, -0.49578749999999999, -0.78779999999999994)"
6168 ]
6169 },
6170 {
6171 "output_type": "stream",
6172 "stream": "stdout",
6173 "text": [
6174 "\n",
6175 "(748, -0.49237499999999995, -0.39389999999999997, -0.82289999999999996)"
6176 ]
6177 },
6178 {
6179 "output_type": "stream",
6180 "stream": "stdout",
6181 "text": [
6182 "\n",
6183 "(749, -0.48701249999999996, -0.36123749999999999, -0.99742500000000001)"
6184 ]
6185 },
6186 {
6187 "output_type": "stream",
6188 "stream": "stdout",
6189 "text": [
6190 "\n",
6191 "(750, -0.064349999999999991, -0.16136249999999999, -1.0295999999999998)"
6192 ]
6193 },
6194 {
6195 "output_type": "stream",
6196 "stream": "stdout",
6197 "text": [
6198 "\n",
6199 "(751, 0.40462499999999996, -0.27592499999999998, -0.77561249999999993)"
6200 ]
6201 },
6202 {
6203 "output_type": "stream",
6204 "stream": "stdout",
6205 "text": [
6206 "\n",
6207 "(752, 0.86336249999999992, -0.35880000000000001, 0.025349999999999998)"
6208 ]
6209 },
6210 {
6211 "output_type": "stream",
6212 "stream": "stdout",
6213 "text": [
6214 "\n",
6215 "(753, 0.68542499999999995, -0.49822499999999997, 0.53332499999999994)"
6216 ]
6217 },
6218 {
6219 "output_type": "stream",
6220 "stream": "stdout",
6221 "text": [
6222 "\n",
6223 "(754, 0.28762499999999996, -0.40949999999999998, 1.0071749999999999)"
6224 ]
6225 },
6226 {
6227 "output_type": "stream",
6228 "stream": "stdout",
6229 "text": [
6230 "\n",
6231 "(755, -0.15404999999999999, -0.45922499999999999, 0.83460000000000001)"
6232 ]
6233 },
6234 {
6235 "output_type": "stream",
6236 "stream": "stdout",
6237 "text": [
6238 "\n",
6239 "(756, -0.22863749999999999, -0.65032499999999993, 0.78487499999999999)"
6240 ]
6241 },
6242 {
6243 "output_type": "stream",
6244 "stream": "stdout",
6245 "text": [
6246 "\n",
6247 "(757, 0.046799999999999994, -0.82777499999999993, 0.20669999999999999)"
6248 ]
6249 },
6250 {
6251 "output_type": "stream",
6252 "stream": "stdout",
6253 "text": [
6254 "\n",
6255 "(758, 0.036074999999999996, -1.0588499999999998, 0.061425)"
6256 ]
6257 },
6258 {
6259 "output_type": "stream",
6260 "stream": "stdout",
6261 "text": [
6262 "\n",
6263 "(759, -0.070199999999999999, -0.97158749999999994, -0.075075000000000003)"
6264 ]
6265 },
6266 {
6267 "output_type": "stream",
6268 "stream": "stdout",
6269 "text": [
6270 "\n",
6271 "(760, -0.19597499999999998, -0.667875, -0.68542499999999995)"
6272 ]
6273 },
6274 {
6275 "output_type": "stream",
6276 "stream": "stdout",
6277 "text": [
6278 "\n",
6279 "(761, -0.33101249999999999, -0.64252500000000001, -0.54210000000000003)"
6280 ]
6281 },
6282 {
6283 "output_type": "stream",
6284 "stream": "stdout",
6285 "text": [
6286 "\n",
6287 "(762, -0.48749999999999999, -0.83557499999999996, -0.20085)"
6288 ]
6289 },
6290 {
6291 "output_type": "stream",
6292 "stream": "stdout",
6293 "text": [
6294 "\n",
6295 "(763, -0.52747500000000003, -0.81168750000000001, -0.063375000000000001)"
6296 ]
6297 },
6298 {
6299 "output_type": "stream",
6300 "stream": "stdout",
6301 "text": [
6302 "\n",
6303 "(764, -0.74879999999999991, -0.50407499999999994, -0.624)"
6304 ]
6305 },
6306 {
6307 "output_type": "stream",
6308 "stream": "stdout",
6309 "text": [
6310 "\n",
6311 "(765, -0.60254999999999992, 0.054599999999999996, -0.98767499999999997)"
6312 ]
6313 },
6314 {
6315 "output_type": "stream",
6316 "stream": "stdout",
6317 "text": [
6318 "\n",
6319 "(766, 0.068737499999999993, 0.29493749999999996, -1.0295999999999998)"
6320 ]
6321 },
6322 {
6323 "output_type": "stream",
6324 "stream": "stdout",
6325 "text": [
6326 "\n",
6327 "(767, 0.1701375, 0.2452125, -1.0807875)"
6328 ]
6329 },
6330 {
6331 "output_type": "stream",
6332 "stream": "stdout",
6333 "text": [
6334 "\n",
6335 "(768, 0.66592499999999999, -0.42119999999999996, -0.19305)"
6336 ]
6337 },
6338 {
6339 "output_type": "stream",
6340 "stream": "stdout",
6341 "text": [
6342 "\n",
6343 "(769, 0.57329999999999992, -0.75074999999999992, 0.40754999999999997)"
6344 ]
6345 },
6346 {
6347 "output_type": "stream",
6348 "stream": "stdout",
6349 "text": [
6350 "\n",
6351 "(770, 0.8931, -0.100425, -0.67567499999999991)"
6352 ]
6353 },
6354 {
6355 "output_type": "stream",
6356 "stream": "stdout",
6357 "text": [
6358 "\n",
6359 "(771, 0.18914999999999998, 0.45434999999999998, -0.99449999999999994)"
6360 ]
6361 },
6362 {
6363 "output_type": "stream",
6364 "stream": "stdout",
6365 "text": [
6366 "\n",
6367 "(772, -0.62643749999999998, -0.11992499999999999, -0.56940000000000002)"
6368 ]
6369 },
6370 {
6371 "output_type": "stream",
6372 "stream": "stdout",
6373 "text": [
6374 "\n",
6375 "(773, -0.76781250000000001, -0.52357500000000001, -0.21157499999999999)"
6376 ]
6377 },
6378 {
6379 "output_type": "stream",
6380 "stream": "stdout",
6381 "text": [
6382 "\n",
6383 "(774, -0.74002499999999993, -0.60693750000000002, 0.1408875)"
6384 ]
6385 },
6386 {
6387 "output_type": "stream",
6388 "stream": "stdout",
6389 "text": [
6390 "\n",
6391 "(775, -0.41339999999999999, -0.56745000000000001, 0.57329999999999992)"
6392 ]
6393 },
6394 {
6395 "output_type": "stream",
6396 "stream": "stdout",
6397 "text": [
6398 "\n",
6399 "(776, -0.16672499999999998, -0.66056249999999994, 0.69809999999999994)"
6400 ]
6401 },
6402 {
6403 "output_type": "stream",
6404 "stream": "stdout",
6405 "text": [
6406 "\n",
6407 "(777, 0.037537500000000001, -0.61619999999999997, 0.78779999999999994)"
6408 ]
6409 },
6410 {
6411 "output_type": "stream",
6412 "stream": "stdout",
6413 "text": [
6414 "\n",
6415 "(778, 0.099937499999999999, -0.53234999999999999, 0.8034)"
6416 ]
6417 },
6418 {
6419 "output_type": "stream",
6420 "stream": "stdout",
6421 "text": [
6422 "\n",
6423 "(779, 0.034124999999999996, -0.50017499999999993, 0.81119999999999992)"
6424 ]
6425 },
6426 {
6427 "output_type": "stream",
6428 "stream": "stdout",
6429 "text": [
6430 "\n",
6431 "(780, 0.12479999999999999, -0.37342500000000001, 0.75952500000000001)"
6432 ]
6433 },
6434 {
6435 "output_type": "stream",
6436 "stream": "stdout",
6437 "text": [
6438 "\n",
6439 "(781, 0.1326, -0.50505, 0.82192500000000002)"
6440 ]
6441 },
6442 {
6443 "output_type": "stream",
6444 "stream": "stdout",
6445 "text": [
6446 "\n",
6447 "(782, 0.16965, -0.41437499999999999, 0.94769999999999999)"
6448 ]
6449 },
6450 {
6451 "output_type": "stream",
6452 "stream": "stdout",
6453 "text": [
6454 "\n",
6455 "(783, 0.50553749999999997, 0.03705, 0.42802499999999999)"
6456 ]
6457 },
6458 {
6459 "output_type": "stream",
6460 "stream": "stdout",
6461 "text": [
6462 "\n",
6463 "(784, 0.95647499999999996, 0.46507499999999996, -0.092624999999999999)"
6464 ]
6465 },
6466 {
6467 "output_type": "stream",
6468 "stream": "stdout",
6469 "text": [
6470 "\n",
6471 "(785, 0.90674999999999994, 0.24959999999999999, -0.252525)"
6472 ]
6473 },
6474 {
6475 "output_type": "stream",
6476 "stream": "stdout",
6477 "text": [
6478 "\n",
6479 "(786, 0.80047499999999994, -0.14722499999999999, -0.82582499999999992)"
6480 ]
6481 },
6482 {
6483 "output_type": "stream",
6484 "stream": "stdout",
6485 "text": [
6486 "\n",
6487 "(787, 0.30127499999999996, -0.56159999999999999, -0.85799999999999998)"
6488 ]
6489 },
6490 {
6491 "output_type": "stream",
6492 "stream": "stdout",
6493 "text": [
6494 "\n",
6495 "(788, -0.110175, -0.66104999999999992, -0.77415)"
6496 ]
6497 },
6498 {
6499 "output_type": "stream",
6500 "stream": "stdout",
6501 "text": [
6502 "\n",
6503 "(789, -0.49919999999999998, -0.54404999999999992, -0.72052499999999997)"
6504 ]
6505 },
6506 {
6507 "output_type": "stream",
6508 "stream": "stdout",
6509 "text": [
6510 "\n",
6511 "(790, -0.67859999999999998, -0.2145, -0.86580000000000001)"
6512 ]
6513 },
6514 {
6515 "output_type": "stream",
6516 "stream": "stdout",
6517 "text": [
6518 "\n",
6519 "(791, -0.67859999999999998, -0.18525, -0.83655000000000002)"
6520 ]
6521 },
6522 {
6523 "output_type": "stream",
6524 "stream": "stdout",
6525 "text": [
6526 "\n",
6527 "(792, -0.63326249999999995, -0.20279999999999998, -0.7722)"
6528 ]
6529 },
6530 {
6531 "output_type": "stream",
6532 "stream": "stdout",
6533 "text": [
6534 "\n",
6535 "(793, -0.50212499999999993, -0.33344999999999997, -0.87457499999999999)"
6536 ]
6537 },
6538 {
6539 "output_type": "stream",
6540 "stream": "stdout",
6541 "text": [
6542 "\n",
6543 "(794, -0.72393750000000001, -0.10725, -0.66104999999999992)"
6544 ]
6545 },
6546 {
6547 "output_type": "stream",
6548 "stream": "stdout",
6549 "text": [
6550 "\n",
6551 "(795, -1.09005, -0.0307125, 0.53917499999999996)"
6552 ]
6553 },
6554 {
6555 "output_type": "stream",
6556 "stream": "stdout",
6557 "text": [
6558 "\n",
6559 "(796, -0.30419999999999997, 0.342225, 0.90382499999999999)"
6560 ]
6561 },
6562 {
6563 "output_type": "stream",
6564 "stream": "stdout",
6565 "text": [
6566 "\n",
6567 "(797, 0.57476249999999995, 0.31784999999999997, 0.357825)"
6568 ]
6569 },
6570 {
6571 "output_type": "stream",
6572 "stream": "stdout",
6573 "text": [
6574 "\n",
6575 "(798, 0.73709999999999998, -0.031199999999999999, 0.64837499999999992)"
6576 ]
6577 },
6578 {
6579 "output_type": "stream",
6580 "stream": "stdout",
6581 "text": [
6582 "\n",
6583 "(799, 0.46263749999999998, -0.60352499999999998, 0.45142499999999997)"
6584 ]
6585 },
6586 {
6587 "output_type": "stream",
6588 "stream": "stdout",
6589 "text": [
6590 "\n",
6591 "(800, 0.1482, -0.99449999999999994, 0.18427499999999999)"
6592 ]
6593 },
6594 {
6595 "output_type": "stream",
6596 "stream": "stdout",
6597 "text": [
6598 "\n",
6599 "(801, -0.26958749999999998, -0.67859999999999998, -0.86385000000000001)"
6600 ]
6601 },
6602 {
6603 "output_type": "stream",
6604 "stream": "stdout",
6605 "text": [
6606 "\n",
6607 "(802, -0.14673749999999999, -0.50212499999999993, -0.87359999999999993)"
6608 ]
6609 },
6610 {
6611 "output_type": "stream",
6612 "stream": "stdout",
6613 "text": [
6614 "\n",
6615 "(803, -0.53137499999999993, -0.2145, -0.82387499999999991)"
6616 ]
6617 },
6618 {
6619 "output_type": "stream",
6620 "stream": "stdout",
6621 "text": [
6622 "\n",
6623 "(804, -0.86580000000000001, 0.093599999999999989, -0.72052499999999997)"
6624 ]
6625 },
6626 {
6627 "output_type": "stream",
6628 "stream": "stdout",
6629 "text": [
6630 "\n",
6631 "(805, -0.33929999999999999, 0.38999999999999996, -1.022775)"
6632 ]
6633 },
6634 {
6635 "output_type": "stream",
6636 "stream": "stdout",
6637 "text": [
6638 "\n",
6639 "(806, 0.15892499999999998, 0.42314999999999997, -0.7722)"
6640 ]
6641 },
6642 {
6643 "output_type": "stream",
6644 "stream": "stdout",
6645 "text": [
6646 "\n",
6647 "(807, 0.72442499999999999, 0.33832499999999999, -0.312)"
6648 ]
6649 },
6650 {
6651 "output_type": "stream",
6652 "stream": "stdout",
6653 "text": [
6654 "\n",
6655 "(808, 0.97304999999999997, -0.33929999999999999, -0.37634999999999996)"
6656 ]
6657 },
6658 {
6659 "output_type": "stream",
6660 "stream": "stdout",
6661 "text": [
6662 "\n",
6663 "(809, 0.19109999999999999, -0.78584999999999994, -0.59670000000000001)"
6664 ]
6665 },
6666 {
6667 "output_type": "stream",
6668 "stream": "stdout",
6669 "text": [
6670 "\n",
6671 "(810, -0.040462499999999998, -0.86774999999999991, -0.41144999999999998)"
6672 ]
6673 },
6674 {
6675 "output_type": "stream",
6676 "stream": "stdout",
6677 "text": [
6678 "\n",
6679 "(811, -0.268125, -0.936975, -0.4173)"
6680 ]
6681 },
6682 {
6683 "output_type": "stream",
6684 "stream": "stdout",
6685 "text": [
6686 "\n",
6687 "(812, -0.38999999999999996, -0.82094999999999996, 0.018525)"
6688 ]
6689 },
6690 {
6691 "output_type": "stream",
6692 "stream": "stdout",
6693 "text": [
6694 "\n",
6695 "(813, -0.57622499999999999, -0.44947499999999996, 0.96134999999999993)"
6696 ]
6697 },
6698 {
6699 "output_type": "stream",
6700 "stream": "stdout",
6701 "text": [
6702 "\n",
6703 "(814, 0.079949999999999993, 0.268125, 0.79657499999999992)"
6704 ]
6705 },
6706 {
6707 "output_type": "stream",
6708 "stream": "stdout",
6709 "text": [
6710 "\n",
6711 "(815, 0.550875, 0.66007499999999997, 0.52601249999999999)"
6712 ]
6713 },
6714 {
6715 "output_type": "stream",
6716 "stream": "stdout",
6717 "text": [
6718 "\n",
6719 "(816, 0.35489999999999999, 0.81412499999999999, 0.41437499999999999)"
6720 ]
6721 },
6722 {
6723 "output_type": "stream",
6724 "stream": "stdout",
6725 "text": [
6726 "\n",
6727 "(817, 0.0038999999999999998, 0.84824999999999995, 0.66592499999999999)"
6728 ]
6729 },
6730 {
6731 "output_type": "stream",
6732 "stream": "stdout",
6733 "text": [
6734 "\n",
6735 "(818, 0.047774999999999998, 0.45922499999999999, 0.69273750000000001)"
6736 ]
6737 },
6738 {
6739 "output_type": "stream",
6740 "stream": "stdout",
6741 "text": [
6742 "\n",
6743 "(819, -0.34904999999999997, -0.46604999999999996, 0.38122499999999998)"
6744 ]
6745 },
6746 {
6747 "output_type": "stream",
6748 "stream": "stdout",
6749 "text": [
6750 "\n",
6751 "(820, -0.66007499999999997, -0.57135000000000002, -0.73953749999999996)"
6752 ]
6753 },
6754 {
6755 "output_type": "stream",
6756 "stream": "stdout",
6757 "text": [
6758 "\n",
6759 "(821, -0.29347499999999999, -0.46507499999999996, -0.98377499999999996)"
6760 ]
6761 },
6762 {
6763 "output_type": "stream",
6764 "stream": "stdout",
6765 "text": [
6766 "\n",
6767 "(822, -0.45922499999999999, -0.42704999999999999, -0.78389999999999993)"
6768 ]
6769 },
6770 {
6771 "output_type": "stream",
6772 "stream": "stdout",
6773 "text": [
6774 "\n",
6775 "(823, -0.33929999999999999, -0.54307499999999997, -0.65812499999999996)"
6776 ]
6777 },
6778 {
6779 "output_type": "stream",
6780 "stream": "stdout",
6781 "text": [
6782 "\n",
6783 "(824, -0.0316875, -0.35392499999999999, -0.89797499999999997)"
6784 ]
6785 },
6786 {
6787 "output_type": "stream",
6788 "stream": "stdout",
6789 "text": [
6790 "\n",
6791 "(825, 0.36123749999999999, -0.13747499999999999, -0.83069999999999999)"
6792 ]
6793 },
6794 {
6795 "output_type": "stream",
6796 "stream": "stdout",
6797 "text": [
6798 "\n",
6799 "(826, 0.86774999999999991, 0.12675, -0.045824999999999998)"
6800 ]
6801 },
6802 {
6803 "output_type": "stream",
6804 "stream": "stdout",
6805 "text": [
6806 "\n",
6807 "(827, 0.82728749999999995, 0.14332499999999998, 0.59572499999999995)"
6808 ]
6809 },
6810 {
6811 "output_type": "stream",
6812 "stream": "stdout",
6813 "text": [
6814 "\n",
6815 "(828, 0.67957499999999993, 0.033149999999999999, 0.72149999999999992)"
6816 ]
6817 },
6818 {
6819 "output_type": "stream",
6820 "stream": "stdout",
6821 "text": [
6822 "\n",
6823 "(829, 0.60352499999999998, -0.081412499999999999, 0.68640000000000001)"
6824 ]
6825 },
6826 {
6827 "output_type": "stream",
6828 "stream": "stdout",
6829 "text": [
6830 "\n",
6831 "(830, 0.60839999999999994, 0.16769999999999999, 0.86872499999999997)"
6832 ]
6833 },
6834 {
6835 "output_type": "stream",
6836 "stream": "stdout",
6837 "text": [
6838 "\n",
6839 "(831, 0.45629999999999998, 0.28421249999999998, 0.81119999999999992)"
6840 ]
6841 },
6842 {
6843 "output_type": "stream",
6844 "stream": "stdout",
6845 "text": [
6846 "\n",
6847 "(832, 0.461175, 0.20231249999999998, 0.8034)"
6848 ]
6849 },
6850 {
6851 "output_type": "stream",
6852 "stream": "stdout",
6853 "text": [
6854 "\n",
6855 "(833, 0.40754999999999997, 0.39974999999999999, 0.83069999999999999)"
6856 ]
6857 },
6858 {
6859 "output_type": "stream",
6860 "stream": "stdout",
6861 "text": [
6862 "\n",
6863 "(834, 0.41778749999999998, 0.096525, 0.81314999999999993)"
6864 ]
6865 },
6866 {
6867 "output_type": "stream",
6868 "stream": "stdout",
6869 "text": [
6870 "\n",
6871 "(835, 0.62009999999999998, -0.229125, 0.86872499999999997)"
6872 ]
6873 },
6874 {
6875 "output_type": "stream",
6876 "stream": "stdout",
6877 "text": [
6878 "\n",
6879 "(836, 0.19012499999999999, -0.638625, 0.37927499999999997)"
6880 ]
6881 },
6882 {
6883 "output_type": "stream",
6884 "stream": "stdout",
6885 "text": [
6886 "\n",
6887 "(837, -0.387075, -0.85702499999999993, -0.70053749999999992)"
6888 ]
6889 },
6890 {
6891 "output_type": "stream",
6892 "stream": "stdout",
6893 "text": [
6894 "\n",
6895 "(838, -0.26422499999999999, -0.74490000000000001, -0.85312499999999991)"
6896 ]
6897 },
6898 {
6899 "output_type": "stream",
6900 "stream": "stdout",
6901 "text": [
6902 "\n",
6903 "(839, 0.11115, -0.43679999999999997, -1.0003499999999999)"
6904 ]
6905 },
6906 {
6907 "output_type": "stream",
6908 "stream": "stdout",
6909 "text": [
6910 "\n",
6911 "(840, -0.4977375, -0.065324999999999994, -0.65422499999999995)"
6912 ]
6913 },
6914 {
6915 "output_type": "stream",
6916 "stream": "stdout",
6917 "text": [
6918 "\n",
6919 "(841, -0.96817500000000001, -0.054599999999999996, 0.74490000000000001)"
6920 ]
6921 },
6922 {
6923 "output_type": "stream",
6924 "stream": "stdout",
6925 "text": [
6926 "\n",
6927 "(842, -0.35685, 0.19109999999999999, 0.96524999999999994)"
6928 ]
6929 },
6930 {
6931 "output_type": "stream",
6932 "stream": "stdout",
6933 "text": [
6934 "\n",
6935 "(843, 0.33442499999999997, 0.27299999999999996, 0.68737499999999996)"
6936 ]
6937 },
6938 {
6939 "output_type": "stream",
6940 "stream": "stdout",
6941 "text": [
6942 "\n",
6943 "(844, 0.7366125, 0.114075, 0.39389999999999997)"
6944 ]
6945 },
6946 {
6947 "output_type": "stream",
6948 "stream": "stdout",
6949 "text": [
6950 "\n",
6951 "(845, 0.86238749999999997, -0.1482, 0.0068249999999999995)"
6952 ]
6953 },
6954 {
6955 "output_type": "stream",
6956 "stream": "stdout",
6957 "text": [
6958 "\n",
6959 "(846, 0.79657499999999992, -0.64739999999999998, -0.49724999999999997)"
6960 ]
6961 },
6962 {
6963 "output_type": "stream",
6964 "stream": "stdout",
6965 "text": [
6966 "\n",
6967 "(847, 0.244725, -0.81168750000000001, -0.5655)"
6968 ]
6969 },
6970 {
6971 "output_type": "stream",
6972 "stream": "stdout",
6973 "text": [
6974 "\n",
6975 "(848, 0.186225, -0.84873749999999992, -0.44947499999999996)"
6976 ]
6977 },
6978 {
6979 "output_type": "stream",
6980 "stream": "stdout",
6981 "text": [
6982 "\n",
6983 "(849, 0.15404999999999999, -0.92624999999999991, -0.53722499999999995)"
6984 ]
6985 },
6986 {
6987 "output_type": "stream",
6988 "stream": "stdout",
6989 "text": [
6990 "\n",
6991 "(850, 0.00975, -0.82777499999999993, -0.42509999999999998)"
6992 ]
6993 },
6994 {
6995 "output_type": "stream",
6996 "stream": "stdout",
6997 "text": [
6998 "\n",
6999 "(851, -0.33052499999999996, -0.79072500000000001, -0.076049999999999993)"
7000 ]
7001 },
7002 {
7003 "output_type": "stream",
7004 "stream": "stdout",
7005 "text": [
7006 "\n",
7007 "(852, -0.64301249999999999, -0.56159999999999999, 0.56257499999999994)"
7008 ]
7009 },
7010 {
7011 "output_type": "stream",
7012 "stream": "stdout",
7013 "text": [
7014 "\n",
7015 "(853, -0.61619999999999997, -0.48945, 0.39487499999999998)"
7016 ]
7017 },
7018 {
7019 "output_type": "stream",
7020 "stream": "stdout",
7021 "text": [
7022 "\n",
7023 "(854, -0.55379999999999996, -0.77902499999999997, -0.58304999999999996)"
7024 ]
7025 },
7026 {
7027 "output_type": "stream",
7028 "stream": "stdout",
7029 "text": [
7030 "\n",
7031 "(855, -0.17549999999999999, -0.76439999999999997, -0.73319999999999996)"
7032 ]
7033 },
7034 {
7035 "output_type": "stream",
7036 "stream": "stdout",
7037 "text": [
7038 "\n",
7039 "(856, 0.15258749999999999, -0.76049999999999995, -0.49822499999999997)"
7040 ]
7041 },
7042 {
7043 "output_type": "stream",
7044 "stream": "stdout",
7045 "text": [
7046 "\n",
7047 "(857, 0.59962499999999996, -0.61132500000000001, -0.055574999999999999)"
7048 ]
7049 },
7050 {
7051 "output_type": "stream",
7052 "stream": "stdout",
7053 "text": [
7054 "\n",
7055 "(858, 0.81412499999999999, -0.36172499999999996, 0.51869999999999994)"
7056 ]
7057 },
7058 {
7059 "output_type": "stream",
7060 "stream": "stdout",
7061 "text": [
7062 "\n",
7063 "(859, 0.57037499999999997, 0.066299999999999998, 0.88237499999999991)"
7064 ]
7065 },
7066 {
7067 "output_type": "stream",
7068 "stream": "stdout",
7069 "text": [
7070 "\n",
7071 "(860, 0.044362499999999999, 0.025837499999999999, 1.0198499999999999)"
7072 ]
7073 },
7074 {
7075 "output_type": "stream",
7076 "stream": "stdout",
7077 "text": [
7078 "\n",
7079 "(861, -0.2013375, 0.29249999999999998, 1.0476375)"
7080 ]
7081 },
7082 {
7083 "output_type": "stream",
7084 "stream": "stdout",
7085 "text": [
7086 "\n",
7087 "(862, -0.48798749999999996, -0.29152499999999998, 0.47092499999999998)"
7088 ]
7089 },
7090 {
7091 "output_type": "stream",
7092 "stream": "stdout",
7093 "text": [
7094 "\n",
7095 "(863, -0.75367499999999998, -0.56745000000000001, 0.059475)"
7096 ]
7097 },
7098 {
7099 "output_type": "stream",
7100 "stream": "stdout",
7101 "text": [
7102 "\n",
7103 "(864, -0.788775, -0.66884999999999994, 0.13552500000000001)"
7104 ]
7105 },
7106 {
7107 "output_type": "stream",
7108 "stream": "stdout",
7109 "text": [
7110 "\n",
7111 "(865, -0.89456249999999993, -0.50407499999999994, 0.050699999999999995)"
7112 ]
7113 },
7114 {
7115 "output_type": "stream",
7116 "stream": "stdout",
7117 "text": [
7118 "\n",
7119 "(866, -1.026675, -0.24862499999999998, 0.33637499999999998)"
7120 ]
7121 },
7122 {
7123 "output_type": "stream",
7124 "stream": "stdout",
7125 "text": [
7126 "\n",
7127 "(867, -0.65715000000000001, -0.24277499999999999, 0.79169999999999996)"
7128 ]
7129 },
7130 {
7131 "output_type": "stream",
7132 "stream": "stdout",
7133 "text": [
7134 "\n",
7135 "(868, -0.77512499999999995, -0.00975, 0.55964999999999998)"
7136 ]
7137 },
7138 {
7139 "output_type": "stream",
7140 "stream": "stdout",
7141 "text": [
7142 "\n",
7143 "(869, -0.8619, -0.11699999999999999, 0.5655)"
7144 ]
7145 },
7146 {
7147 "output_type": "stream",
7148 "stream": "stdout",
7149 "text": [
7150 "\n",
7151 "(870, -0.69566249999999996, -0.033149999999999999, 0.71662499999999996)"
7152 ]
7153 },
7154 {
7155 "output_type": "stream",
7156 "stream": "stdout",
7157 "text": [
7158 "\n",
7159 "(871, -0.63521249999999996, -0.081412499999999999, 0.72539999999999993)"
7160 ]
7161 },
7162 {
7163 "output_type": "stream",
7164 "stream": "stdout",
7165 "text": [
7166 "\n",
7167 "(872, -0.54210000000000003, -0.14235, 0.79169999999999996)"
7168 ]
7169 },
7170 {
7171 "output_type": "stream",
7172 "stream": "stdout",
7173 "text": [
7174 "\n",
7175 "(873, -0.55184999999999995, -0.28567500000000001, 0.81997500000000001)"
7176 ]
7177 },
7178 {
7179 "output_type": "stream",
7180 "stream": "stdout",
7181 "text": [
7182 "\n",
7183 "(874, -0.55672500000000003, -0.57329999999999992, 0.54404999999999992)"
7184 ]
7185 },
7186 {
7187 "output_type": "stream",
7188 "stream": "stdout",
7189 "text": [
7190 "\n",
7191 "(875, -0.72734999999999994, -0.41242499999999999, 0.31979999999999997)"
7192 ]
7193 },
7194 {
7195 "output_type": "stream",
7196 "stream": "stdout",
7197 "text": [
7198 "\n",
7199 "(876, -0.83362499999999995, -0.72734999999999994, 0.42509999999999998)"
7200 ]
7201 },
7202 {
7203 "output_type": "stream",
7204 "stream": "stdout",
7205 "text": [
7206 "\n",
7207 "(877, -0.67859999999999998, -0.22424999999999998, 0.79852499999999993)"
7208 ]
7209 },
7210 {
7211 "output_type": "stream",
7212 "stream": "stdout",
7213 "text": [
7214 "\n",
7215 "(878, -0.43679999999999997, 0.52649999999999997, 0.53039999999999998)"
7216 ]
7217 },
7218 {
7219 "output_type": "stream",
7220 "stream": "stdout",
7221 "text": [
7222 "\n",
7223 "(879, -0.16916249999999999, 1.0023, -0.015599999999999999)"
7224 ]
7225 },
7226 {
7227 "output_type": "stream",
7228 "stream": "stdout",
7229 "text": [
7230 "\n",
7231 "(880, -0.86433749999999998, 0.59182499999999993, 0.054599999999999996)"
7232 ]
7233 },
7234 {
7235 "output_type": "stream",
7236 "stream": "stdout",
7237 "text": [
7238 "\n",
7239 "(881, -0.94867499999999993, -0.20962499999999998, -0.27689999999999998)"
7240 ]
7241 },
7242 {
7243 "output_type": "stream",
7244 "stream": "stdout",
7245 "text": [
7246 "\n",
7247 "(882, -0.53478749999999997, -0.76049999999999995, -0.54015000000000002)"
7248 ]
7249 },
7250 {
7251 "output_type": "stream",
7252 "stream": "stdout",
7253 "text": [
7254 "\n",
7255 "(883, -0.22034999999999999, -0.54015000000000002, -0.82777499999999993)"
7256 ]
7257 },
7258 {
7259 "output_type": "stream",
7260 "stream": "stdout",
7261 "text": [
7262 "\n",
7263 "(884, -0.30322499999999997, -0.50017499999999993, -0.786825)"
7264 ]
7265 },
7266 {
7267 "output_type": "stream",
7268 "stream": "stdout",
7269 "text": [
7270 "\n",
7271 "(885, -0.58548749999999994, -0.70492499999999991, -0.0068249999999999995)"
7272 ]
7273 },
7274 {
7275 "output_type": "stream",
7276 "stream": "stdout",
7277 "text": [
7278 "\n",
7279 "(886, -0.22619999999999998, -0.66494999999999993, 0.86872499999999997)"
7280 ]
7281 },
7282 {
7283 "output_type": "stream",
7284 "stream": "stdout",
7285 "text": [
7286 "\n",
7287 "(887, 0.24764999999999998, 0.13016249999999999, 0.8555625)"
7288 ]
7289 },
7290 {
7291 "output_type": "stream",
7292 "stream": "stdout",
7293 "text": [
7294 "\n",
7295 "(888, 0.47628749999999997, 0.48701249999999996, 0.60254999999999992)"
7296 ]
7297 },
7298 {
7299 "output_type": "stream",
7300 "stream": "stdout",
7301 "text": [
7302 "\n",
7303 "(889, 0.46215000000000001, 0.80632499999999996, 0.33734999999999998)"
7304 ]
7305 },
7306 {
7307 "output_type": "stream",
7308 "stream": "stdout",
7309 "text": [
7310 "\n",
7311 "(890, 0.080437499999999995, 1.0115624999999999, 0.26715)"
7312 ]
7313 },
7314 {
7315 "output_type": "stream",
7316 "stream": "stdout",
7317 "text": [
7318 "\n",
7319 "(891, -0.21742499999999998, 0.935025, 0.10139999999999999)"
7320 ]
7321 },
7322 {
7323 "output_type": "stream",
7324 "stream": "stdout",
7325 "text": [
7326 "\n",
7327 "(892, -0.45337499999999997, 0.82484999999999997, 0.297375)"
7328 ]
7329 },
7330 {
7331 "output_type": "stream",
7332 "stream": "stdout",
7333 "text": [
7334 "\n",
7335 "(893, -0.92332499999999995, 0.058499999999999996, 0.16574999999999998)"
7336 ]
7337 },
7338 {
7339 "output_type": "stream",
7340 "stream": "stdout",
7341 "text": [
7342 "\n",
7343 "(894, -0.75854999999999995, -0.74879999999999991, -0.33637499999999998)"
7344 ]
7345 },
7346 {
7347 "output_type": "stream",
7348 "stream": "stdout",
7349 "text": [
7350 "\n",
7351 "(895, -0.36903749999999996, -0.85507499999999992, -0.43679999999999997)"
7352 ]
7353 },
7354 {
7355 "output_type": "stream",
7356 "stream": "stdout",
7357 "text": [
7358 "\n",
7359 "(896, -0.30809999999999998, -0.90382499999999999, -0.34612499999999996)"
7360 ]
7361 },
7362 {
7363 "output_type": "stream",
7364 "stream": "stdout",
7365 "text": [
7366 "\n",
7367 "(897, -0.43338749999999998, -0.93014999999999992, -0.15892499999999998)"
7368 ]
7369 },
7370 {
7371 "output_type": "stream",
7372 "stream": "stdout",
7373 "text": [
7374 "\n",
7375 "(898, -0.41535, -0.82582499999999992, -0.069224999999999995)"
7376 ]
7377 },
7378 {
7379 "output_type": "stream",
7380 "stream": "stdout",
7381 "text": [
7382 "\n",
7383 "(899, -0.43338749999999998, -0.91649999999999998, 0.039974999999999997)"
7384 ]
7385 },
7386 {
7387 "output_type": "stream",
7388 "stream": "stdout",
7389 "text": [
7390 "\n",
7391 "(900, -0.461175, -0.77512499999999995, 0.34320000000000001)"
7392 ]
7393 },
7394 {
7395 "output_type": "stream",
7396 "stream": "stdout",
7397 "text": [
7398 "\n",
7399 "(901, -0.48945, -0.75952500000000001, 0.39389999999999997)"
7400 ]
7401 },
7402 {
7403 "output_type": "stream",
7404 "stream": "stdout",
7405 "text": [
7406 "\n",
7407 "(902, -0.3797625, -0.77122499999999994, 0.55379999999999996)"
7408 ]
7409 },
7410 {
7411 "output_type": "stream",
7412 "stream": "stdout",
7413 "text": [
7414 "\n",
7415 "(903, 0.080437499999999995, -0.50309999999999999, 0.77268749999999997)"
7416 ]
7417 },
7418 {
7419 "output_type": "stream",
7420 "stream": "stdout",
7421 "text": [
7422 "\n",
7423 "(904, 0.56745000000000001, 0.62790000000000001, 0.164775)"
7424 ]
7425 },
7426 {
7427 "output_type": "stream",
7428 "stream": "stdout",
7429 "text": [
7430 "\n",
7431 "(905, 0.45922499999999999, 0.53820000000000001, -1.0208249999999999)"
7432 ]
7433 },
7434 {
7435 "output_type": "stream",
7436 "stream": "stdout",
7437 "text": [
7438 "\n",
7439 "(906, 0.41144999999999998, 0.43095, -0.70979999999999999)"
7440 ]
7441 },
7442 {
7443 "output_type": "stream",
7444 "stream": "stdout",
7445 "text": [
7446 "\n",
7447 "(907, 0.79559999999999997, 0.46604999999999996, 0.21157499999999999)"
7448 ]
7449 },
7450 {
7451 "output_type": "stream",
7452 "stream": "stdout",
7453 "text": [
7454 "\n",
7455 "(908, 0.50895000000000001, 0.014624999999999999, 0.99839999999999995)"
7456 ]
7457 },
7458 {
7459 "output_type": "stream",
7460 "stream": "stdout",
7461 "text": [
7462 "\n",
7463 "(909, -0.1993875, -0.56062499999999993, 0.71565000000000001)"
7464 ]
7465 },
7466 {
7467 "output_type": "stream",
7468 "stream": "stdout",
7469 "text": [
7470 "\n",
7471 "(910, -0.5572125, -0.67177500000000001, 0.45337499999999997)"
7472 ]
7473 },
7474 {
7475 "output_type": "stream",
7476 "stream": "stdout",
7477 "text": [
7478 "\n",
7479 "(911, -0.45727499999999999, -0.92819999999999991, 0.16769999999999999)"
7480 ]
7481 },
7482 {
7483 "output_type": "stream",
7484 "stream": "stdout",
7485 "text": [
7486 "\n",
7487 "(912, -0.095549999999999996, -0.87262499999999998, -0.2145)"
7488 ]
7489 },
7490 {
7491 "output_type": "stream",
7492 "stream": "stdout",
7493 "text": [
7494 "\n",
7495 "(913, 0.13064999999999999, -0.84337499999999999, -0.37098749999999997)"
7496 ]
7497 },
7498 {
7499 "output_type": "stream",
7500 "stream": "stdout",
7501 "text": [
7502 "\n",
7503 "(914, 0.35636249999999997, -0.85117500000000001, -0.30712499999999998)"
7504 ]
7505 },
7506 {
7507 "output_type": "stream",
7508 "stream": "stdout",
7509 "text": [
7510 "\n",
7511 "(915, 0.41827500000000001, -0.83849999999999991, -0.28567500000000001)"
7512 ]
7513 },
7514 {
7515 "output_type": "stream",
7516 "stream": "stdout",
7517 "text": [
7518 "\n",
7519 "(916, 0.60547499999999999, -0.58402500000000002, -0.461175)"
7520 ]
7521 },
7522 {
7523 "output_type": "stream",
7524 "stream": "stdout",
7525 "text": [
7526 "\n",
7527 "(917, 0.78731249999999997, -0.36708749999999996, -0.52649999999999997)"
7528 ]
7529 },
7530 {
7531 "output_type": "stream",
7532 "stream": "stdout",
7533 "text": [
7534 "\n",
7535 "(918, 0.69127499999999997, -0.098474999999999993, -0.86969999999999992)"
7536 ]
7537 },
7538 {
7539 "output_type": "stream",
7540 "stream": "stdout",
7541 "text": [
7542 "\n",
7543 "(919, 0.25155, -0.19792499999999999, -1.0373999999999999)"
7544 ]
7545 },
7546 {
7547 "output_type": "stream",
7548 "stream": "stdout",
7549 "text": [
7550 "\n",
7551 "(920, -0.053624999999999999, -0.52552500000000002, -0.83216249999999992)"
7552 ]
7553 },
7554 {
7555 "output_type": "stream",
7556 "stream": "stdout",
7557 "text": [
7558 "\n",
7559 "(921, -0.34904999999999997, -0.76829999999999998, -0.46994999999999998)"
7560 ]
7561 },
7562 {
7563 "output_type": "stream",
7564 "stream": "stdout",
7565 "text": [
7566 "\n",
7567 "(922, -0.2227875, -0.73856250000000001, -0.580125)"
7568 ]
7569 },
7570 {
7571 "output_type": "stream",
7572 "stream": "stdout",
7573 "text": [
7574 "\n",
7575 "(923, -0.35685, -0.78584999999999994, -0.281775)"
7576 ]
7577 },
7578 {
7579 "output_type": "stream",
7580 "stream": "stdout",
7581 "text": [
7582 "\n",
7583 "(924, -0.609375, -0.77024999999999999, 0.12675)"
7584 ]
7585 },
7586 {
7587 "output_type": "stream",
7588 "stream": "stdout",
7589 "text": [
7590 "\n",
7591 "(925, -0.61522500000000002, -0.297375, 0.96524999999999994)"
7592 ]
7593 },
7594 {
7595 "output_type": "stream",
7596 "stream": "stdout",
7597 "text": [
7598 "\n",
7599 "(926, -0.058012499999999995, 0.33442499999999997, 0.77463749999999998)"
7600 ]
7601 },
7602 {
7603 "output_type": "stream",
7604 "stream": "stdout",
7605 "text": [
7606 "\n",
7607 "(927, 0.31151249999999997, 0.77805000000000002, 0.46897499999999998)"
7608 ]
7609 },
7610 {
7611 "output_type": "stream",
7612 "stream": "stdout",
7613 "text": [
7614 "\n",
7615 "(928, 0.19012499999999999, 0.94087499999999991, 0.32955000000000001)"
7616 ]
7617 },
7618 {
7619 "output_type": "stream",
7620 "stream": "stdout",
7621 "text": [
7622 "\n",
7623 "(929, -0.11212499999999999, 0.76927499999999993, 0.31882499999999997)"
7624 ]
7625 },
7626 {
7627 "output_type": "stream",
7628 "stream": "stdout",
7629 "text": [
7630 "\n",
7631 "(930, -0.79657499999999992, -0.67664999999999997, -0.0316875)"
7632 ]
7633 },
7634 {
7635 "output_type": "stream",
7636 "stream": "stdout",
7637 "text": [
7638 "\n",
7639 "(931, -0.30907499999999999, -0.72101249999999995, -0.81899999999999995)"
7640 ]
7641 },
7642 {
7643 "output_type": "stream",
7644 "stream": "stdout",
7645 "text": [
7646 "\n",
7647 "(932, 0.281775, -0.024374999999999997, -0.98036249999999991)"
7648 ]
7649 },
7650 {
7651 "output_type": "stream",
7652 "stream": "stdout",
7653 "text": [
7654 "\n",
7655 "(933, -0.40511249999999999, 0.28762499999999996, -0.85799999999999998)"
7656 ]
7657 },
7658 {
7659 "output_type": "stream",
7660 "stream": "stdout",
7661 "text": [
7662 "\n",
7663 "(934, -0.67811250000000001, -0.64788749999999995, 0.33686250000000001)"
7664 ]
7665 },
7666 {
7667 "output_type": "stream",
7668 "stream": "stdout",
7669 "text": [
7670 "\n",
7671 "(935, -0.0068249999999999995, -0.1716, 0.98231249999999992)"
7672 ]
7673 },
7674 {
7675 "output_type": "stream",
7676 "stream": "stdout",
7677 "text": [
7678 "\n",
7679 "(936, 0.58889999999999998, 0.43777499999999997, 0.47287499999999999)"
7680 ]
7681 },
7682 {
7683 "output_type": "stream",
7684 "stream": "stdout",
7685 "text": [
7686 "\n",
7687 "(937, 0.49627499999999997, 0.81704999999999994, 0.21352499999999999)"
7688 ]
7689 },
7690 {
7691 "output_type": "stream",
7692 "stream": "stdout",
7693 "text": [
7694 "\n",
7695 "(938, 0.11895, 1.0656749999999999, 0.069224999999999995)"
7696 ]
7697 },
7698 {
7699 "output_type": "stream",
7700 "stream": "stdout",
7701 "text": [
7702 "\n",
7703 "(939, 0.12479999999999999, 0.9204, 0.548925)"
7704 ]
7705 },
7706 {
7707 "output_type": "stream",
7708 "stream": "stdout",
7709 "text": [
7710 "\n",
7711 "(940, 0.22522499999999998, 0.61717499999999992, 0.55136249999999998)"
7712 ]
7713 },
7714 {
7715 "output_type": "stream",
7716 "stream": "stdout",
7717 "text": [
7718 "\n",
7719 "(941, -0.19305, 0.64106249999999998, 0.50066250000000001)"
7720 ]
7721 },
7722 {
7723 "output_type": "stream",
7724 "stream": "stdout",
7725 "text": [
7726 "\n",
7727 "(942, -0.68835000000000002, 0.53527499999999995, -0.081900000000000001)"
7728 ]
7729 },
7730 {
7731 "output_type": "stream",
7732 "stream": "stdout",
7733 "text": [
7734 "\n",
7735 "(943, -0.85312499999999991, 0.010725, -1.2470250000000001)"
7736 ]
7737 },
7738 {
7739 "output_type": "stream",
7740 "stream": "stdout",
7741 "text": [
7742 "\n",
7743 "(944, 0.1993875, 0.40608749999999999, -0.818025)"
7744 ]
7745 },
7746 {
7747 "output_type": "stream",
7748 "stream": "stdout",
7749 "text": [
7750 "\n",
7751 "(945, 0.1794, 0.73027500000000001, -1.055925)"
7752 ]
7753 },
7754 {
7755 "output_type": "stream",
7756 "stream": "stdout",
7757 "text": [
7758 "\n",
7759 "(946, -0.69371249999999995, 0.31004999999999999, 0.114075)"
7760 ]
7761 },
7762 {
7763 "output_type": "stream",
7764 "stream": "stdout",
7765 "text": [
7766 "\n",
7767 "(947, -0.97792499999999993, -0.0068249999999999995, 0.83655000000000002)"
7768 ]
7769 },
7770 {
7771 "output_type": "stream",
7772 "stream": "stdout",
7773 "text": [
7774 "\n",
7775 "(948, -0.22424999999999998, -0.357825, 0.87262499999999998)"
7776 ]
7777 },
7778 {
7779 "output_type": "stream",
7780 "stream": "stdout",
7781 "text": [
7782 "\n",
7783 "(949, 0.62643749999999998, -0.4446, 0.24277499999999999)"
7784 ]
7785 },
7786 {
7787 "output_type": "stream",
7788 "stream": "stdout",
7789 "text": [
7790 "\n",
7791 "(950, 0.85897499999999993, -0.44752500000000001, 0.092624999999999999)"
7792 ]
7793 },
7794 {
7795 "output_type": "stream",
7796 "stream": "stdout",
7797 "text": [
7798 "\n",
7799 "(951, 0.91649999999999998, -0.30712499999999998, -0.4602)"
7800 ]
7801 },
7802 {
7803 "output_type": "stream",
7804 "stream": "stdout",
7805 "text": [
7806 "\n",
7807 "(952, 0.88286249999999999, -0.29152499999999998, -0.33149999999999996)"
7808 ]
7809 },
7810 {
7811 "output_type": "stream",
7812 "stream": "stdout",
7813 "text": [
7814 "\n",
7815 "(953, 0.96524999999999994, -0.34612499999999996, -0.62009999999999998)"
7816 ]
7817 },
7818 {
7819 "output_type": "stream",
7820 "stream": "stdout",
7821 "text": [
7822 "\n",
7823 "(954, 0.61912499999999993, -0.40413749999999998, -0.788775)"
7824 ]
7825 },
7826 {
7827 "output_type": "stream",
7828 "stream": "stdout",
7829 "text": [
7830 "\n",
7831 "(955, 0.50700000000000001, -0.199875, -0.91259999999999997)"
7832 ]
7833 },
7834 {
7835 "output_type": "stream",
7836 "stream": "stdout",
7837 "text": [
7838 "\n",
7839 "(956, 0.56988749999999999, -0.31492500000000001, -0.94672499999999993)"
7840 ]
7841 },
7842 {
7843 "output_type": "stream",
7844 "stream": "stdout",
7845 "text": [
7846 "\n",
7847 "(957, 0.04095, -0.77707499999999996, -0.490425)"
7848 ]
7849 },
7850 {
7851 "output_type": "stream",
7852 "stream": "stdout",
7853 "text": [
7854 "\n",
7855 "(958, -0.51285000000000003, -0.76732499999999992, 0.49383749999999998)"
7856 ]
7857 },
7858 {
7859 "output_type": "stream",
7860 "stream": "stdout",
7861 "text": [
7862 "\n",
7863 "(959, -0.34076249999999997, -0.53186250000000002, 0.81168750000000001)"
7864 ]
7865 },
7866 {
7867 "output_type": "stream",
7868 "stream": "stdout",
7869 "text": [
7870 "\n",
7871 "(960, -0.015599999999999999, -0.40413749999999998, 0.85507499999999992)"
7872 ]
7873 },
7874 {
7875 "output_type": "stream",
7876 "stream": "stdout",
7877 "text": [
7878 "\n",
7879 "(961, 0.063375000000000001, -0.54015000000000002, 0.76342500000000002)"
7880 ]
7881 },
7882 {
7883 "output_type": "stream",
7884 "stream": "stdout",
7885 "text": [
7886 "\n",
7887 "(962, 0.6552, -0.48457499999999998, 0.42802499999999999)"
7888 ]
7889 },
7890 {
7891 "output_type": "stream",
7892 "stream": "stdout",
7893 "text": [
7894 "\n",
7895 "(963, 1.0105875, -0.033149999999999999, 0.66689999999999994)"
7896 ]
7897 },
7898 {
7899 "output_type": "stream",
7900 "stream": "stdout",
7901 "text": [
7902 "\n",
7903 "(964, 0.41291249999999996, -0.48749999999999999, 0.64642499999999992)"
7904 ]
7905 },
7906 {
7907 "output_type": "stream",
7908 "stream": "stdout",
7909 "text": [
7910 "\n",
7911 "(965, -0.72052499999999997, -0.61424999999999996, 0.11115)"
7912 ]
7913 },
7914 {
7915 "output_type": "stream",
7916 "stream": "stdout",
7917 "text": [
7918 "\n",
7919 "(966, -0.53527499999999995, -0.48652499999999999, -0.93599999999999994)"
7920 ]
7921 },
7922 {
7923 "output_type": "stream",
7924 "stream": "stdout",
7925 "text": [
7926 "\n",
7927 "(967, -0.12089999999999999, 0.30712499999999998, -0.93892500000000001)"
7928 ]
7929 },
7930 {
7931 "output_type": "stream",
7932 "stream": "stdout",
7933 "text": [
7934 "\n",
7935 "(968, -0.82874999999999999, -0.26227499999999998, -0.43290000000000001)"
7936 ]
7937 },
7938 {
7939 "output_type": "stream",
7940 "stream": "stdout",
7941 "text": [
7942 "\n",
7943 "(969, -0.66592499999999999, -0.45142499999999997, 0.87067499999999998)"
7944 ]
7945 },
7946 {
7947 "output_type": "stream",
7948 "stream": "stdout",
7949 "text": [
7950 "\n",
7951 "(970, 0.223275, 0.23497499999999999, 0.52844999999999998)"
7952 ]
7953 },
7954 {
7955 "output_type": "stream",
7956 "stream": "stdout",
7957 "text": [
7958 "\n",
7959 "(971, 0.51285000000000003, 0.60060000000000002, 0.45044999999999996)"
7960 ]
7961 },
7962 {
7963 "output_type": "stream",
7964 "stream": "stdout",
7965 "text": [
7966 "\n",
7967 "(972, 0.57817499999999999, 0.82972499999999993, -0.156975)"
7968 ]
7969 },
7970 {
7971 "output_type": "stream",
7972 "stream": "stdout",
7973 "text": [
7974 "\n",
7975 "(973, 0.72344999999999993, 0.19548749999999998, -0.65227499999999994)"
7976 ]
7977 },
7978 {
7979 "output_type": "stream",
7980 "stream": "stdout",
7981 "text": [
7982 "\n",
7983 "(974, 0.55964999999999998, -0.8931, -0.48993749999999997)"
7984 ]
7985 },
7986 {
7987 "output_type": "stream",
7988 "stream": "stdout",
7989 "text": [
7990 "\n",
7991 "(975, -0.1716, -0.89894999999999992, -0.34514999999999996)"
7992 ]
7993 },
7994 {
7995 "output_type": "stream",
7996 "stream": "stdout",
7997 "text": [
7998 "\n",
7999 "(976, -0.2374125, -0.82484999999999997, -0.58109999999999995)"
8000 ]
8001 },
8002 {
8003 "output_type": "stream",
8004 "stream": "stdout",
8005 "text": [
8006 "\n",
8007 "(977, 0.1106625, -0.8097375, -0.62692499999999995)"
8008 ]
8009 },
8010 {
8011 "output_type": "stream",
8012 "stream": "stdout",
8013 "text": [
8014 "\n",
8015 "(978, 0.55184999999999995, -0.68932499999999997, 0.080924999999999997)"
8016 ]
8017 },
8018 {
8019 "output_type": "stream",
8020 "stream": "stdout",
8021 "text": [
8022 "\n",
8023 "(979, 0.57524999999999993, -0.13552500000000001, 1.005225)"
8024 ]
8025 },
8026 {
8027 "output_type": "stream",
8028 "stream": "stdout",
8029 "text": [
8030 "\n",
8031 "(980, -0.229125, 0.19792499999999999, 0.91942499999999994)"
8032 ]
8033 },
8034 {
8035 "output_type": "stream",
8036 "stream": "stdout",
8037 "text": [
8038 "\n",
8039 "(981, -0.59962499999999996, -0.17745, 0.17745)"
8040 ]
8041 },
8042 {
8043 "output_type": "stream",
8044 "stream": "stdout",
8045 "text": [
8046 "\n",
8047 "(982, -0.64837499999999992, -0.57719999999999994, -0.82289999999999996)"
8048 ]
8049 },
8050 {
8051 "output_type": "stream",
8052 "stream": "stdout",
8053 "text": [
8054 "\n",
8055 "(983, -0.014624999999999999, 0.034124999999999996, -1.1124749999999999)"
8056 ]
8057 },
8058 {
8059 "output_type": "stream",
8060 "stream": "stdout",
8061 "text": [
8062 "\n",
8063 "(984, -0.52844999999999998, 0.07897499999999999, -0.57427499999999998)"
8064 ]
8065 },
8066 {
8067 "output_type": "stream",
8068 "stream": "stdout",
8069 "text": [
8070 "\n",
8071 "(985, -0.61473749999999994, -0.72052499999999997, 0.37927499999999997)"
8072 ]
8073 },
8074 {
8075 "output_type": "stream",
8076 "stream": "stdout",
8077 "text": [
8078 "\n",
8079 "(986, -0.38317499999999999, -0.096525, 0.99352499999999999)"
8080 ]
8081 },
8082 {
8083 "output_type": "stream",
8084 "stream": "stdout",
8085 "text": [
8086 "\n",
8087 "(987, 0.2457, 0.55672500000000003, 0.59670000000000001)"
8088 ]
8089 },
8090 {
8091 "output_type": "stream",
8092 "stream": "stdout",
8093 "text": [
8094 "\n",
8095 "(988, 0.3495375, 0.90041249999999995, 0.26422499999999999)"
8096 ]
8097 },
8098 {
8099 "output_type": "stream",
8100 "stream": "stdout",
8101 "text": [
8102 "\n",
8103 "(989, 0.069224999999999995, 1.0203374999999999, 0.22132499999999999)"
8104 ]
8105 },
8106 {
8107 "output_type": "stream",
8108 "stream": "stdout",
8109 "text": [
8110 "\n",
8111 "(990, -0.4080375, 0.86628749999999999, 0.114075)"
8112 ]
8113 },
8114 {
8115 "output_type": "stream",
8116 "stream": "stdout",
8117 "text": [
8118 "\n",
8119 "(991, -0.85117500000000001, 0.43338749999999998, 0.024374999999999997)"
8120 ]
8121 },
8122 {
8123 "output_type": "stream",
8124 "stream": "stdout",
8125 "text": [
8126 "\n",
8127 "(992, -0.85507499999999992, -0.64544999999999997, -0.50017499999999993)"
8128 ]
8129 },
8130 {
8131 "output_type": "stream",
8132 "stream": "stdout",
8133 "text": [
8134 "\n",
8135 "(993, -0.29152499999999998, -0.45922499999999999, -0.99449999999999994)"
8136 ]
8137 },
8138 {
8139 "output_type": "stream",
8140 "stream": "stdout",
8141 "text": [
8142 "\n",
8143 "(994, -0.18427499999999999, 0.48359999999999997, -0.89212499999999995)"
8144 ]
8145 },
8146 {
8147 "output_type": "stream",
8148 "stream": "stdout",
8149 "text": [
8150 "\n",
8151 "(995, -0.19597499999999998, 0.47921249999999999, -0.93599999999999994)"
8152 ]
8153 },
8154 {
8155 "output_type": "stream",
8156 "stream": "stdout",
8157 "text": [
8158 "\n",
8159 "(996, -0.36367499999999997, 0.67079999999999995, -0.66251249999999995)"
8160 ]
8161 },
8162 {
8163 "output_type": "stream",
8164 "stream": "stdout",
8165 "text": [
8166 "\n",
8167 "(997, -0.28079999999999999, 0.86872499999999997, 0.03705)"
8168 ]
8169 },
8170 {
8171 "output_type": "stream",
8172 "stream": "stdout",
8173 "text": [
8174 "\n",
8175 "(998, -0.40365000000000001, 0.81119999999999992, 0.33296249999999999)"
8176 ]
8177 },
8178 {
8179 "output_type": "stream",
8180 "stream": "stdout",
8181 "text": [
8182 "\n",
8183 "(999, -0.51528750000000001, 0.53039999999999998, 0.71662499999999996)"
8184 ]
8185 },
8186 {
8187 "output_type": "stream",
8188 "stream": "stdout",
8189 "text": [
8190 "\n"
8191 ]
8192 }
8193 ],
8194 "prompt_number": 72
8195 },
8196 {
8197 "cell_type": "code",
8198 "collapsed": false,
8199 "input": [
8200 "np.savez(\"calibration_data_set\", x=x, y=y, z=z)"
8201 ],
8202 "language": "python",
8203 "metadata": {},
8204 "outputs": [],
8205 "prompt_number": 73
8206 },
8207 {
8208 "cell_type": "code",
8209 "collapsed": false,
8210 "input": [
8211 "from mpl_toolkits.mplot3d.axes3d import Axes3D"
8212 ],
8213 "language": "python",
8214 "metadata": {},
8215 "outputs": [],
8216 "prompt_number": 53
8217 },
8218 {
8219 "cell_type": "code",
8220 "collapsed": false,
8221 "input": [
8222 "data = np.load('./calibration_data_set.npz')\n",
8223 "x=data['x']\n",
8224 "y=data['y']\n",
8225 "z=data['z']"
8226 ],
8227 "language": "python",
8228 "metadata": {},
8229 "outputs": [],
8230 "prompt_number": 74
8231 },
8232 {
8233 "cell_type": "code",
8234 "collapsed": false,
8235 "input": [
8236 "%pylab qt\n",
8237 "#%pylab inline\n",
8238 "#x, y, z) = np.load('./calibration_data_set.npz')\n",
8239 "fig = plt.figure()\n",
8240 "ax = Axes3D(fig)\n",
8241 "p = ax.scatter(x, y, z)\n",
8242 "#pyplot.show()\n"
8243 ],
8244 "language": "python",
8245 "metadata": {},
8246 "outputs": [
8247 {
8248 "output_type": "stream",
8249 "stream": "stdout",
8250 "text": [
8251 "Populating the interactive namespace from numpy and matplotlib\n"
8252 ]
8253 }
8254 ],
8255 "prompt_number": 76
8256 },
8257 {
8258 "cell_type": "code",
8259 "collapsed": false,
8260 "input": [
8261 "amin(p)"
8262 ],
8263 "language": "python",
8264 "metadata": {},
8265 "outputs": [
8266 {
8267 "metadata": {},
8268 "output_type": "pyout",
8269 "prompt_number": 7,
8270 "text": [
8271 "96972.25"
8272 ]
8273 }
8274 ],
8275 "prompt_number": 7
8276 },
8277 {
8278 "cell_type": "code",
8279 "collapsed": false,
8280 "input": [
8281 "amax(p)"
8282 ],
8283 "language": "python",
8284 "metadata": {},
8285 "outputs": [
8286 {
8287 "metadata": {},
8288 "output_type": "pyout",
8289 "prompt_number": 8,
8290 "text": [
8291 "96838.75"
8292 ]
8293 }
8294 ],
8295 "prompt_number": 8
8296 },
8297 {
8298 "cell_type": "code",
8299 "collapsed": false,
8300 "input": [
8301 "std(p)"
8302 ],
8303 "language": "python",
8304 "metadata": {},
8305 "outputs": [
8306 {
8307 "metadata": {},
8308 "output_type": "pyout",
8309 "prompt_number": 9,
8310 "text": [
8311 "2.3585270827361722"
8312 ]
8313 }
8314 ],
8315 "prompt_number": 9
8316 },
8317 {
8318 "cell_type": "code",
8319 "collapsed": false,
8320 "input": [
8321 "plt.plot(p)"
8322 ],
8323 "language": "python",
8324 "metadata": {},
8325 "outputs": [
8326 {
8327 "metadata": {},
8328 "output_type": "pyout",
8329 "prompt_number": 9,
8330 "text": [
8331 "[<matplotlib.lines.Line2D at 0xa00bb2c>]"
8332 ]
8333 },
8334 {
8335 "metadata": {},
8336 "output_type": "display_data",
8337 "png": "iVBORw0KGgoAAAANSUhEUgAAAXQAAAEECAYAAAA4Qc+SAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJztnXt8FOW9xp/NhVsSI7mQCAmCSCDhElJAMRWJYsBDC1rF\nakBAqLSWY6vWU3s5xxZ6CkRtRbStPfUUxAtgtdai0iiIESxClSAgcAjFRIOBcMuFJJDLZs4fbyc7\nO5mZnZmd2Zl39vf9fPJJdrO78+5cnnnmeX/vOz5BEAQQBEEQ3BPjdAMIgiAIayBBJwiC8Agk6ARB\nEB6BBJ0gCMIjkKATBEF4BBJ0giAIj+CIoO/btw/XXHMNxo4di1mzZuH8+fOKr2toaMDs2bORm5uL\nvLw87Nq1S/P9L730EgoKCrp/YmNjsX//fl1t+v73v4+kpCRrviBBEIQTCDbz3nvvCXfffXfQcxMm\nTBC2b98uCIIgrFmzRnjkkUcU3zt//nzhj3/8oyAIgtDR0SE0NDTofv+BAweEK6+8UlcbP/roI2He\nvHlCUlKSvi9FEAThQmx36D6fr8dzR48exeTJkwEAN954I/785z/3eE1jYyN27NiBRYsWAQDi4uKQ\nnJys+/3r16/HnXfe2f34nXfeQWFhIcaPH49vfvObaGlpAQD4/X48/PDDeOyxxyDQGCuCIDjGdkFX\nEslRo0bhr3/9KwDglVdeQU1NTY/XVFVVIT09HQsXLsRXvvIVLF68GK2trbrf/6c//QklJSUAgDNn\nzmD58uV49913sWfPHowfPx5PPPEEAOA3v/kNbr75ZmRmZlrzhQmCIBzCNkGfNGkSCgoKsHjxYmza\ntKk7196yZQvWrFmD3/3ud5gwYQKam5vRq1evHu/v7OxERUUFlixZgoqKCiQkJKC0tBQAQr5/9+7d\n6NevH/Ly8gAAu3btwqFDh1BYWIiCggI8//zz+OKLL1BbW4tXX30V9913H7lzgiC4J86uDxY7MN9/\n/30899xzWLt2bdD/3377bQBAZWUl3nrrrR7vz8rKQlZWFiZOnAgAmD17dregjxgxQvP9GzduxJw5\nc4KeKy4uxvr164Oe27x5M/75z3/iyiuvBAC0trYiJycHlZWVpr4zQRCEkzgSuZw+fRoA0NXVhV/+\n8pf47ne/2+M1mZmZyM7O7hbXrVu3YtSoUSHf39XVhVdeeSUoP580aRL+/ve/49ixYwCAlpYWHD16\nFDNmzMCJEydQVVWFqqoq9OvXj8ScIAhu0RT0RYsWISMjA2PGjOnxv1//+teIiYnBuXPnNBfg8/l6\ndIxu2LABI0aMQG5uLrKysnD33XcDAGpra/G1r32t+3VPP/005s6di/z8fOzfvx8//elPNd8PANu3\nb8fgwYMxZMiQ7ufS0tLw3HPPoaSkBPn5+SgsLMSRI0cU20oQBMErPkEjPN6xYwcSExMxf/58HDhw\noPv5mpoaLF68GEeOHMGePXuQkpISkcYSBEEQ6mg69MmTJ6N///49nv/BD36Axx57zLZGEQRBEMYx\n3Cn617/+FVlZWRg7dqzqayi6IAiCMEc4FXeGOkVbW1uxYsUKLFu2LOTCBUGgH0HAz3/+c8fb4JYf\nWhe0LmhdaP+EiyFBP3bsGKqrq5Gfn4+hQ4fi+PHjGD9+PE6dOhV2QwiCIIjwMBS5jBkzBnV1dd2P\nhw4dSp2iBEEQLkHToZeUlKCwsBCVlZXIzs7uMTiIsvLQFBUVOd0E10DrIgCtiwC0LqxDs2zR9If6\nfJbkQQRBENFEuNpJN7ggCILwCCToBEEQHoEEnSAIwiOQoBMEQXgEEnSCIAiPQIJOEAThEUjQCYIg\nPAIJOkEQhEcgQScIgvAIJOgEQRAegQSdIAjCI5CgEwRBeAQSdIIgCI9Agk4QBOERSNAJgiA8Agk6\nQRCERyBBJwiC8Agk6ARBRCWHDwMvv+x0K6yFBJ0giKjkpZeAV15xuhXWQoJOEERUsmMH0NbmdCus\nhQSdIIioo60N2L2bBJ0gCIJ7PvoI6OwkQScIguCe7duBq64iQScIguCeHTuAG28kQScIguAavx/Y\nuROYOhVob3e6NdZCgk4QRFSxbx+QlQUMHOg9hx7ndAOspKMDeP119hsA4uOBb3wDiPPUtyQIIhy2\nbwcmTwZ69yZBdzWffgp85zvATTexx3/7GzByJDBmjLPtIgjCPezYAdx2mzcFXTNyWbRoETIyMjBG\noog//OEPkZubi/z8fNx6661obGy0vZF6uXCBCfj69ewnJwdobna6VQRBuAVBYILuVYeuKegLFy5E\nWVlZ0HPTpk3DwYMHsW/fPuTk5GDlypW2NtAIFy8CffoEHickAC0tzrWHIAh3ceQI04Xs7CgU9MmT\nJ6N///5BzxUXFyMmhr3t6quvxvHjx+1rnUHa2thGEklIAFpbnWsPQRDuQszPAaBXL1blIgjOtslK\nwsrQ16xZg5KSEsX/LV26tPvvoqIiFBUVhbMoXUTSof/jH8B//3fg8aBBwO9/r/0eQQAWLADq69lj\nnw9YsQIYPdqeNhJEtNPZCcyfD5w/zx4fPAj85Cfs79hYICaGvSY+3pn2lZeXo7y83LLPMy3oy5cv\nR69evTBnzhzF/0sFPVJEWtAFgXXCtrUB8+aFFvT2dpbt/+Uv7PETTwB795KgE4Rd1NcDb70FvPgi\ne+zzATfcEPi/GLs4Jehys7ts2bKwPs+UoD/33HPYvHkz3n333bAWbjUXL/aMXOwS9IsXWQfszJlM\nqMVSSS06Othl3syZ7PGmTawjlyAIe2hqAlJTA8ecHFHQExMj2y67MCzoZWVlePzxx/H++++jj9QO\nu4C2tmCH3q+fvYIunjzi49noM0FgDkCNjo5gJ9CnDwk6QdhJUxOQnKz+f691jGp2ipaUlKCwsBBH\njhxBdnY21qxZg+9973tobm5GcXExCgoKsGTJkki1NSSRjFykJw+fj+VxnZ3a75FndX37kqAThJ00\nNQGXXKL+f68JuqZD37BhQ4/nFi1aZFtjwkUpcjl71r5lSXeU+PieDlyO/P99+7LPIQjCHhobtQVd\nrHTxCp6ay0UeudhZtig/eYiCroWSoJNDJwj7iDaH7ilBdypyAUjQCcKNkKBzTKSrXMIVdOoUJQh7\nIUHnGKeqXADzDp0ydIKwD6py4RiKXAiCkEIOnWN4i1xI0AnCXqjKhWN4q3KhDJ0g7IUcOsdQ5EIQ\nhBQSdI7hMXKhTlGCsA8SdI5Rq3KxY75jGlhEEO6Hqlw4Ru6ae/Vi86zY0elBkQtBuJ9QDp06RV2M\n3DUD9sUuNLCIINxPqCoXcuguRu6aAXsFnQYWEYR7aWtj01przfJNgu5i5K4ZsK90kSIXgnA3588z\nd651jwISdBcTqchFEKxx6PHxQFdX6HnUCYIwTqgOUYAE3dVEKnLp6GA3tIiNDTxnRtB9PsrRCcIu\nQnWIAiTorkYpcrFjgi6l5ZgRdIBiF4KwCz2C7rUqF1M3iXYjYnQhF0w7HLrSlUA4gk4do8D77wMf\nfxx4XFgIXHONc+0h9NHcDPzv/7LOR4AJ5L33at+5K1KEqnAB9Dn0+nrgyBFg0iTr2mYXnnHobW1s\n48g7QOwQdKWsnhx6eKxYAXz4IVBbC5SXA0884XSLCD3s3g08+STbbrW1wM9/Dnz2mdOtYlgVubz3\nHvtePOAZh64UgwD2VLlQ5GI9zc3AI48A114LvPkm8MwzTreI0ENdHXOuv/41e/zuu/ZNiGcUqwS9\ntdW+KUSsxjMOXck1A+6PXKhTlNHSAiQmsr/79XOPKBDa1NUBGRmBx27adlZVuZCgO4CSyAJ8RC6U\noTOHnpDA/rZz2mPCWuSC7qZtZ5VDv3CB7Z884BlBV4tcqMqFD8ih88nJk+516Ho6RfVUuZBDdwCt\nDN3NkQsJOkPq0O28FyxhLUqRi1u2nZUZOjn0CCNWuchxe+RCGTobedvaGizobnF5hDZuz9Ctilzs\nmobbajwj6FTlwi8XLrBLX3HkrZtyWEKbaMjQW1vZOBce+rqiomwxEpFLXJw+QY+TrXHqFA3OzwG2\nTlpbmSPSmliJcJauLuD0aWDAgMBzVjj0zz8PiGxsLHDFFeb2AyurXAC2n/bta7wdkcQzgh7pyIUc\nunVI83OAraOYGNZZpbRNCXdQX88EXOkuYWb5/HNg+HBgyBD2+PhxYNs2c6M0rYxcALafpqUZb0ck\n0YxcFi1ahIyMDIwZM6b7uXPnzqG4uBg5OTmYNm0aGhoabG+kHiLp0GmkqLXIHTrgriyWUEYetwDh\nb7dz54C8PKCykv1Mn85E3QxWVrkA7uns1UJT0BcuXIiysrKg50pLS1FcXIzKykpMnToVpaWltjZQ\nL5EsW6SBRdYid+gACToP2CHoTU1AUlLgcUYGW47Zz7IqQwf4qHTRFPTJkyejf//+Qc9t2rQJCxYs\nAAAsWLAAr7/+un2tM0AkR4paHblQht7Tobupc41QRknQw91u589bI+jt7ex4C5V56xX03r35cOiG\nM/S6ujpk/GsrZmRkoE5lbS9durT776KiIhQVFZlqoF54HilKDl3ZofNwAEUSQQBefRW4/XanW8Ko\nqwMyM4OfC3e7KQn6vn3mPifU3YoAdjz6/ayDN0bF3l64AKSn2+PQy8vLUV5ebtnnhdUp6vP54FNZ\nY1JBjwSRLluUXbiQoIdBczNl6HqorwfmzHGXoFsduVjl0PVUuABM8Hv1YoZQzc23tjJBt8NgyM3u\nsmXLwvo8w3XoGRkZOHnyJADgxIkTGCCtWXIQtcilXz8mmF1d1i2LMnRraWmhDF0PLS1szn+33JDB\n7YIeKj8XEQVdDVHQuc/QlZg1axbWrVsHAFi3bh1uueUWyxtlBrXIJSbGetGkyMValBw6Zeg9EQXF\nLcJiV4YuFWKzgq6nwkWkd2/tk+SFC6zWnocIUFPQS0pKUFhYiCNHjiA7Oxtr167Fj3/8Y2zZsgU5\nOTnYtm0bfvzjH0eqrZqoRS6A9XksdYpaCzl0fYj7sFuExSsOPVTHKE8OXTND37Bhg+LzW7dutaUx\n4aAWuQDWd4zS5FzW0tzcs0+COkV7woNDD3e7NTUBOTmBx0lJLC5VuooL9TlWCHpXF/tfaio72bgd\nz8zloha5ANYLOkUu1kIOXR9ucuiCAJw6Zb9D9/nMuXSrBF28Gk9Kcsd6D4VnBF0rcrE6j7UycqFO\nUcrQ9eImh97YyDoT5ZUhVtehA+YFXU+VC6At6K2t7CSVmOiO9R4KTwk6r5ELZejk0PXgJoeuFLcA\nwROrmUFJ0DMz7XXoWlUura3sO9kxnsUOPCPoFLnwi1odOg8HUCRxk0NXE/S4OPYTavSlGvIqF8Cc\nQ7eqyoUcukPwXOUS7YJODl0fPDh0ILxtZ2XkYkWGfuEC+z7k0COMGyKXzk7t91GGrgxl6PrgwaED\n4W07+eRcgLOCLkYu5NAjDK+RS+/e7ETg91vXPt4gh66Plha2j7vBKfLg0K3sFCWHHmFCVbm4NXLx\n+dhnRXPHKGXo+mhuZuLmBqcYStDNbDtxWoN+/YKfd0PkQg49woSKXKx0e2aqXASB7bByQQcoRyeH\nrg9R0N1worPDoZ8/z4RTPt+f3YKudZMLaeTihvUeCs8Iutsjl85ONq+M0hSd0SzogqA8fS5l6D1p\naeHDoZvddkoVLkBkqlz0RC5uWO+h8Iyguz1yUYpbRKK5Y7S9nd0IuFev4OfJofckGhy6PD8HWBbe\n3m7sM62OXHr1YlcObpnpUg1PCbpa5GJlHtvZyVxlnGwWnHAEPZoHFym5c4AydCXc4tAFwZ4MXU3Q\nfT4226Fel97RoZzFq6HHoQN8uHTPCHqkIpe2NrYDyHO+2Fj2W61aJZSgR6tDV7r9HEAOXQm3OPTm\nZrb/q02WZXbbKZUsihiJXfTerUhET9kiwEeO7glBF4SA0CphpaBrRTtaLp0EXRkth06CHoxbHLrS\nreekWB25AMYE3UjcAmgP/RcjF4AcesRob2cRiNo9Aa3sYLND0KM5Q1ebFlUUBbNzgngRt5QtasUt\nQHidolYIupEOUUDf0H+AHHrE0IpbAHsiFyXIoRtHqWQRYOsqJsb9nVCRRHToTotKKEEPJ0NXE2I7\nHbreyIUceoTQcs0AH5FLNHeKWp3FepHOTrYPpaY6Lyp6BJ2nyEVvpygPDl3zjkW8oFXhAlhbMeFE\nhn7iBHDkSODx0KHA5Zdrt9PvB86c0T7w3ICaQwcCwiC/m1E0Iq4np0Tl00/Z/gQAH30EZGerv9Yu\nQf/gA/X3fvklcPQo+3v3busEnbcM3ROC7vXI5Uc/AvbsYfc1FAQm7nv2AIMGqb/nkUeAd99lO7eb\n0XLoNLgogLie+vRh+1JnZ8/SWTu57jpg1KhANdfcueqvNbvdmpqAgQOV/6fl0AUBKCpipY3iMXbX\nXfqX66UqF08IOu+RS6hO0dpaYNUqYNo09viXvwTmzQO2bAkcYFLeew/43e+M3YPRKfQ4dCKwnny+\nwP6sd/KpcLl4kZ1Qtm/XVwoY6chl9252HHzwgf5SRSmhbnDBk0OPigy9d28WQYSaPCvcZdmVocsz\ny5/8hDm0xx/v+dqzZ4H584Hnn2f3fHR7lUioDN3tjihSSNdTpCeKqqtj7levWEa6U/TFF5kjNyPm\ngHaVizRy4cGhe0LQtWIQIOBqrHB7WvGOXZGLXNBjY9lOvGoV8I9/BJ4XBOCee4BvfhOYNYvtiPX1\n2t/Hacih60O6niI9lWuoTlA5djj0/v3ZZ8qNT0cH8PLLwJw5xpcn4qWRoq6NXMrKgNdeCzyeOBFY\nvFj5taEcOmDdZapWB6yWoKvNtAgwQRc7nJTeV18PpKUFPz94MPDb3wK33w5Mn86eO3sWqK4GNm5k\nj0VXk5Ki+ZVU2bkTeO65wOMhQ9jVgVknpIRYW62EmzL0998HXnpJ32sXLAC++lVrl++0Qzci6HbU\nocfEsKuEU6fYvi/y9tvAiBHAFVcYX56IkQxd7Th1C64V9BdeYGfGiRNZhvz00+EJulWX75HO0M+c\nYe5EqQNs9my2M544EXhuxozACUcU9Nxc5c8OxZ//DDQ0ADfeyB4/8wxry3e/a+7zlODFob/yChPR\noiLt1x07xjqxtSoyzOC0Q9caGSrHDocOBPZnqaC/8IKxDlAl9Fa58DAnumsFvbYW+K//AqZOZX//\n4Q/qrw1VtghYdxBEOnIJ5Y5mzlT/n5lpR6XU1gI33xyoaCgqYs5TrHiwAl4y9DNn2LooKdF+XUcH\nq9T47LPwXKMcnhy61ZNzicj358ZGdiX/zDPGlyXFS5GLazP02tpAWV5qKjug1Dr4QpUtAtYJutnI\nxWynqNGDSUq4gv7ll8GlkTk5wKOPMlGzaiAULw799OmesZcS8fHAHXfoj2f04rRDj0SGrjU5F9Bz\nf37tNeCGG8xHiiJqVS6CwF/ZoisFXRCYmIg1qb17s5Xa1KT8eiMZerhEemCRk4JeW9uzLnjhQmDk\nSODhh81/rhRe6tDPnGHjAPRw112s09rKCiOeHLqZ7Sbe6MSIoIvVLeGiVuUiztUvxp3k0E1y/jz7\nLd24aWnMJSmhN3LhscrFKUEXBGVB9/mA//kf4K232PYRf1asMLccJxz6+PHBbV+/PvR79Dp0ALj6\naqCrC/j4Y32vr6hgGbXYnuRkNnBMCk8OvW9f4xOrtbayY1hrsNQVVwBLlwbW05EjwNe+pn8ZaqhF\nLtL8HAjt0PfvB+6+O/z2hINpQV+5ciVGjRqFMWPGYM6cOWhTC6FMIMYt0mqK9HT1HmbeIxetTlGn\nBL2hgbVXyT337w/83/+x7VRbCzz1FLBvn7nlOJGhHz0aaP8DDwAHD2q/XhDYvqdX0H2+gEsPRXMz\ni7B+9avA+rzhBta5Kn8dLw49Lo79GJGEUPk5wIoizp4NrKfPPgt93OtBTdClcQsQ2qF//jmwa1f4\n7QkHU4JeXV2NZ599FhUVFThw4AD8fj82irVyFiCNW0RCOXTeIxetDN1IhYGUcARdyZ1LiY8POKUr\nrmCvN4MTDv3iRbY/JSWxOUlCraOmJnbQGxGPuXNZ+WiowWwPPAAUFrITgLg+MzN7mhfpjUAineWa\nMRVGt50eQff5gq+s5LctNIuWoBtx6C0t5o8DqzAl6Jdccgni4+PR2tqKzs5OtLa2YpDWxCIGURIT\nLYeuJ3Jxc9miGyOXUIIuZdAgdhI2Q6Qz9K4uVtsvioGedWQkPxe58kp2otu6Vf01r7zC6tufeir4\neSXzIr0RSCSz3PZ2JrZGOx6Nbjs9gm4XeiOXUOu9uZl9DzEydgJTZYspKSl46KGHMHjwYPTt2xfT\np0/HjWKx8r9YunRp999paUW4/PKi7sdTpmjPhiatcAl8hrpDb2sLvcMlJLCs8o032OOBA1mWapRI\nT85lhaALgvHBQPIKFy0uu4xtMzPLibRDl99CUI+gG8nPpdx1FxPrzk7ldvz7vwf6IqSkpwdmDhRx\nyqGfOsXao3bzGDWMbrtQFS52Ila5yPdfow5dFPvaWjbYSQ/l5eUoLy833GY1TAn6sWPH8OSTT6K6\nuhrJycm4/fbb8dJLL2GuZAo2UdA7O9lKEUczHjrELjO/9z31z//yy541vKEceqjL4aIiNjjpD39g\n4vrJJ8DJk9rvMbost2Xo/fqxZTY1GR8ha8ShJySw71Bfb8zJtbezOXYicXNvEfn2s8uhAywb/+AD\n9TEUjz3GBs7JSUtjo3SlOOXQze5/Rred1jwudhMby37ko7nlGXrv3tozXYrf14igFxUVoUgyWm3Z\nsmXGv4AEU4L+8ccfo7CwEKmpqQCAW2+9FTt37gwSdJG6OlZHLjrjVat6ug85tbXAtdcGP5eWBhw+\nrPx6PZHLtGmB2QoFgZ1tjU6ELy4rUpGLOKe5GTERychgJy4zgp6To//1YuxiRNClMwgqYYdDl+8r\neq5ijHSISklJATZsMP4+JfMi7xSNlEMPR9B5iVyAQOwiPUblkYt4Y2y1KUTEk6zZ+NEKTGXoI0eO\nxK5du3DhwgUIgoCtW7ciLy9P8bXyS/crr9Qn6EqRSzhVLlJ8PmDYMOCf/9T/HumyIjWw6OxZtuOo\nvU8PZnN0I5ELwNy80Q4haYyghF2Ri3Rf6dePXXKrjXEAWOQSzknVKErxorxskQeHzqOgS5FHLoD2\num9pYZ/jZMeoKUHPz8/H/PnzMWHCBIwdOxYA8O1vf1vxtfJL9+HDQwu6UpVLenp4VS5y9LTD6LLC\niVza21mHnZRw4haRzExzgm4kcgHMCbo0RlDCjk5Rpe0X6qRn1qGbxQsOnadOUUBd0KWRC6C97pub\nmWF1UtBNz+Xy8MMP42EdwwXlwnDFFUBNjbrAdXWxiOCyy4Kf13LoeiIXOW4SdJ+Ptf/ixWBHYIWg\nm3XoRgXdTKWLHoduR4Yu31fEdaQWMZ0+bSx+ChdxX5fGQE469Kws4+8zk6E7KehKw//NOPScHA4j\nFyPIL9179WKPq6qUX3/2LNuwctHUcuhGIxfAvKDbEbkAyh2jTgm638/eIz+pamGHQ49E5AK4z6H3\n6cOOE2n5G28O3QuRizxDB0I79JwcDiMXIyg5PS0xVYpbAJYlt7Yqz7nAe+QCKOfoTgn66dPApZca\nG7jBS4ZuJnKJdIYOBOfofj9rt3j578UM3UyBgpUozeeiFLmEcujDh0eBoMs717TEVO1S3+dTj114\nj1wA5UoXpwTdaNwCmItc9Dp0Kye50opc1Ii0QweCc3Tx0l+sBefBoXslQzfq0EVBd+rWjxGJXJQc\nulqFiZaYqAm6mcglM5Md3A0Nxt5nV+TiJkE3WuEC2OPQ4+OZiFlxL1gRtchFa0yC0w5dPvhK3Ffk\nneh2QJFL8HNa8+i0tLDtlpDAomMncGXkoiYmajm6mcjF52M90kZLF+1y6G7K0M049MxMtm38fv3v\nCeXQAes7Ro1GLh0d1ty60ChShy6fHiEmJjJzxXd2MsNj5uqEt05RI2WLWg49MZHpl1Oxi62CfuEC\nWyn/Gn/UjZnIBbA2cgnVDjV4jVyMXAKaEfT4eDaQxsjJI5RDB6wXLqORy5kzbP81OvQ9XLQcOhCZ\nHP30abZNY2ONv5c3h65W5aJUtqjl0BMS2LHjVKWLrbtpbS2rlJCPwBsyhH1hpQ5OLTFRc+hmIhfA\nnKDbGbnY0SmamMjWv5GD30zkAhiPXfQ4dKtr0Y1WuTiRnwPaDh2ITI4ezkyfPGbocj1Silz0OHQz\n8aNV2C7oSuIcH8+mLf3ss57/0xITLYduRtD1jFqV0tXFNnokMvSuLnbyGjBAf/vUMBq7mHHogPEd\n2SmHriboSlcxTuTngDscerjzCBkVdKerXPR2iiqtd3FgoFiW7VlBVxNnNXdsxqFHKnKRz9Qnx0pB\nr69nB62Z7yUnUoJudEd2KkOXr1Otq5hod+jhCLqR9jk52yKgf6SomkMXzYnPF4UOHVAW044O1jus\n5kqtrHJRa4MWoU4cVnaKWhG3iBgV9HAiFyPZoRMOXW1fUVtH5NDNvdfIdhNnMLTi7kNmCbfKRbov\nezZDVxskBCiXLp48ycRc7b6CSpMWiXNNa92LUI0BA9jOdO6cvteHOnFYmaE7JehtbUBjozkR4yFD\nV4vn1NYROXRz7zWy3cT83Ohc+lYSbpWLdF+myEXyeq1LfaVJi8zGLQDbgbRq4uWEyuqtjFycEvQT\nJ9jrzVR1GN2R3ZKhA9qCTg7dOEa2m9MdokD4VS5yh+5ZQTcSuYQSdCWHbjZu0WqHGnZGLm4RdK2T\ncCiMXmo6kaGrVSlpRS5OOPRLL2Xfu6PDOYd+8mRkMnQ3CLra0H+9k3NJ9+WMDLbfKN2pym4ci1wu\nv5ztMNKYIVR2m5bGMnZpNYLZChcRI4KuJ3JR24i8ZOhmO0QBfqtcAPc59JgYVgN+5kx0OHQnK1yA\n8Cfnku7LcXFMq8zezzccbBN0QdAWh7g4JurS0sVQYiLeeb2xMfBcJAU91LLi4rQdulbO7xaHrnUS\nDkVaGjs4lW64q4TWDaJFnM7QnXLoQCBi9HqG7nSFCxD+DS7kV5tO5ei2CXpTExthprWh5GKqxx3K\nc3StgT6ONwl6AAAV/ElEQVR6cFPkIr1aCedyV06ouUqkhBO5xMSwgSh6d2S9kYvdI0UB93WKAoGI\n0QmH7vezYgGzVyd9++qfWM0tkYtU0P1+dszKZxxVO5HKT7pOVbrYJuh6nJ5cTPWUy8lzdKscup4d\nz+4qFzc49HAiF8BY7KI3crE6Q9fr0AXBWUF30qGfOcNyfDPVYwB7X1ycvqs1Nwi6vFNUjFvklTdq\nJ1L5SdepjlHTdywKhR6nd+WVQEVFYCL/48eNO/RwBT01lR24X3wRuMFxQoJylYfdVS7nzwfWhZUO\n/ZJLWLZfVxe4hBQHQcgJJ3IBQl9qit/P72cHkLyKQI6TGfr58+xAd6o+OtIO3e8PrOuqqvD3P3Hb\nKa2/jo7AFemZM84LutyhK8UtANtf29rYupLOcSM/6XouctHj9MaPB159lb1u4EB2iTd4sPZ75IOL\nwo1cfD7g2muB0aNZG9LTgYceUn6tnYKelQW8805gXXR1mZ9HQ47PBxQUsBPowIHsJPb008qvDWf+\nDkD7UvNHP2Lrd+BANvXDiBGha4+djFycGlQkEkmH7vcD06axbT9wIFBcDOTnh/eZatuuq4vtj5dd\nxpb1i1+wfdNJ5FUuSiWLQGCmS/m6V3LoTkQutjl0PfHJpEnBHZx6kA//D9ehA8Cbbwb+/ugjYNEi\n5deFOnmEI+iTJ2vfeT5cPvww8Pfy5eoRTLgVB2qXmm+/Daxfz/YL+eybWkRici6AfeeOjmBn5mTc\nArBlV1ZGxqGXlrIrVbHvywrUtt3Onez3+fPODiaSInfoShUuIikpzHxKj5Pm5uD92qnIxVGHbga5\nQ7dC0KUUFACff648etROhx5JtMRAT0elFkqXmqdOAQsXAs8/b0zMgcjMhw4wYZG7dLc7dKsEfdcu\ndsX2wgvWiTmgvu1efBG46y73iDmgP3IB2D4s1wf5STcqIxczKDl0KyawEomLY1cOf/97z/95RdC1\nLtf1dFRqIb/UFAQm5nffDVx/vfHPi1TkAvQUdDc49NOnlU+yWtO4GqGxEZgzB/j9781XN6mhtO3a\n2ljMOneutcsKFyVBV+vfER26FLdUuTgauZhBKUO3utNq8mRg+3Zg5szg5+2MXCKJmkMXJ0kK5wQ5\ncCBw5Ajwhz+wx59+yrbXsmXmPi9Sk3MB7nXoSidZsw69uRl4+eXAnaXeeAOYPh245Zbw2ytHadtt\n3gyMGcP6UNyEvMpFy6GnpPS8xZzcoaemsueeeSZw1TNjBusrsxNbq1zsilysztDlXHcd68CTY9ah\n+/3MqVp5ORsOoUa7hXMpPGwYcPvtwMcfs8exsUxAzJ7MIjWwCOhZr+8Gh37qlHKGbrZTdPVq4PXX\nWbQIsI7pX/wi/LYqobTtxLjFbRjJ0JUiF7lD9/mAn/0M2LuXPd69m93O7+GHrW23HNsEva6O9WJb\njVLZopWRCwBcdRVw4EDPA8msoIvu3C2ZodZot3DiFoA5ndWrw/sMKU5HLjk51i3bKOLw8d69e5oB\nM52igsAEdc0a4JprrGunGvJtV18PbN0K/PGP9i/bKEpVLkYduvzY+c//DPy9dKn9I3sBGzP05OSe\no6ysQO7Q7Yhc+vYFxo1jnUVSzEYubopbAG2HHk6HqB1EamARoBy5OOnQ+/Rh20PpJCu6XyP3it2z\nh4nWpEnWtVEL+bZ79VVWGnnppZFZvhGMZOhqDl3r2InE3DuAjYJuR9wCsJ2htTVwNrUjcgFY7LJj\nR/BzeuZyEeMVKW4TdDsdutVY6dAFQfukrOTQnczQAbZ8JaGIjWWGSX5jcS0iXV0i33YvvgjMmxeZ\nZRvFaNmiHocuJRJz7wA2Ri52CbrPx25Mcf31TCSrqoAlS6xfzuTJwK9+FfxcKEH3+QITdEmvTtwm\n6Dw5dNGJFhWxxz4f2y7jxxv/rPZ2tn3U5nofOBB4993Asvbts+aeruGQlqZ+QhO3o5rwSOnsBDZu\n7GlS7CQpCXjySeC119jJ9NAh4KabIrd8I4RbtugWh26boD/2mF2fDGzZwjqLRMQOHiv56leBO+5g\nIiCKs568Xoxd3CzoPDn0uDg22EscgPbkk6yDyYygh4rnCgtZ1Yc4BXLv3qyT10mUbuoiIm5HPVcR\nW7cCQ4awuYsixX/8B4tYRC6/3J4Y1gqUqly0yhY959AbGhpwzz334ODBg/D5fFizZg0mScK50aMt\naZ8ieXnsx06Sk9lw5D17Ah1IevJ6pRzdbYLOk0MHgk/Y771nfp7pUFdYsbFsGgg3kZYWPAunFCMi\n4UR1SUpK4GrH7ShFLmr9J/I6dL+fGT+tfcv1Gfr999+PGTNm4PDhw9i/fz9yc3OtbJcrmDw5+BJV\nT17Pg6D37h2oOZfiRocux+gNr6XY1d9iJ2lp6idZvSLR3Mymt7jjDmvb5iWMVLnIIxfRCGn1Tbja\noTc2NmLHjh1Yt24d+5C4OCQnJwe9ZunSpd1/FxUVoYiXU7WE664Dnn024GwaG/VHLlLcJug+X2AH\nk242tzp0KeEKutUlrnaTns7u86pEYiKbJTTUhHavv86uPJzu4HUzvXuz/UMcrn/mjHrk0r8/K8EU\nBHYs6b3ZudLJt7y8HOXl5WG1XYopQa+qqkJ6ejoWLlyIffv2Yfz48Vi9ejX6SU5pUkHnlSlT2ECA\nCRPY49jY0CO9eBB0ILCDSQXd6w7djhJXu8nPV+/EHTsWeOCB0J8RE+PO2m83ER8P5OYGjnWfD/jO\nd9Rf268fm8gsOVnfdBlqDl1udpeZHVL9L0wJemdnJyoqKvCb3/wGEydOxAMPPIDS0lL8wq4hZw6R\nnh58izw98CLoSjtYNDh03gT93/6N/SixahX7IcLH52ODCfUidowmJ4fn0K3GVIaelZWFrKwsTJw4\nEQAwe/ZsVFRUWNowXuFF0JV2MK87dB4jF8KdSHN0PcdNpDJ0U4KemZmJ7OxsVFZWAgC2bt2KUaNG\nWdowXuFF0Hl16ElJrKrAzMHBY+RCuBNp6aKe40YcZNXVZW+7TJctPv3005g7dy7a29sxbNgwrF27\n1sp2cQsvgs6rQ5fOW37FFcbey2PkQrgTaeminuMmNpbtexcu2GuaTAt6fn4+PvroIyvb4gl4EXQl\nhx7uzS0iRTiCTpELYQXSyEXvla1oouw8xmybyyVa4UXQlRx6uDe3iBRmc3SKXAirkEYueq9sI5Gj\nk6BbDC+CzrtDl85brheKXAirkDt0vYJud6ULCbrF8CLo0ejQKXIhrELu0PVGLuTQOYMXQefdoVPk\nQjgJOfQogRdBj1aHToJOWAE59CiBF0FXcgu8OPTMTIpcCGeRli2SQ/cwvAi63C34/SySUJuQyE1Q\n5EI4TWoqOfSogBdBl7sF8c43ahNBuQmKXAinufRSNvtqVxc5dE+jJOidne4TdLlb4CU/B9iESO3t\nxu6nCZCgE9YRF8emoWhsJIfuaXh16DwM+xcR7ytr1KVr3SCaIIwidoySQ/cwvAi6kkPnoUNUxEzs\nQg6dsBKxdJEcuofhRdB5dugACTrhPOTQowBeBD1aHTpFLoRViKWL5NA9DC+CHo0OncoWCStJTWX3\nHr14Uf2G0lLIoXMIL4Lety/bEf1+9jhaHDoJOmEVKSlATQ3bp/SU+5JD5xBeBD0mJnAXFSA6HDpF\nLoSVpKYyQdd73JBD5xBeBB0InqArGhw6RS6ElaSkAJ9/rv+4IYfOITwJunSCrmhx6CTohFWkpgJf\nfEEO3dPwJOjR5tApciGsJCWF3WhFr6ArzXBqNSToFsOToPPs0Pv3Zyehtjb976HIhbCSlBRAEIxH\nLoJgX5tI0C0mPp7N3SLFrYLOs0OPiQHS04FTp/S/hyIXwkpSU9lvvUYoPp7NAXPxon1tIkG3GHLo\nkcNo7EKRC2ElyclsXiEjRsjuG0WToFsMT4LOs0MHjAl6Zyc7+OLi7G0TET3ExrLoz4gRsrtjlATd\nYngS9Ghy6BS3EHaQkmLMCNldukiCbjE8CXo0OXSKWwg7SE0lh+5peBJ03h26kXuLUoULYQduc+iU\nKFoMT4KemBioEuHVoT/7LPDQQ+xxUhLws58pz6tBkQthB0YF3W6HToJuMTwJOu8Ofdo0NrBDrOtd\ntgy4917m3OWQoBN28MMfsvJZvbjWofv9fkyYMAFZWVl44403rGwT1/Ak6GKG3tXFJunSMwWom0hL\nA37wg8DjtWtZBKMm6JShE1aTn2/s9a7N0FevXo28vDz4fD4r28M9PAm66NAvXGDuNTbW6RaFh1Yn\nKWXohBtwZZXL8ePHsXnzZtxzzz0Q7BzHyiE8Cbro0HnMz5XQEnSKXAg34MoM/cEHH8Tjjz+OpqYm\n1dcsXbq0+++ioiIUFRWZWRR38CTookPnMT9XIpSgU+RCOE1CAnD+fOBxeXk5ysvLLft8w4L+5ptv\nYsCAASgoKNBsiFTQowmeBF3q0L0u6BS5EG4gMRE4cSLwWG52ly1bFtbnG45cdu7ciU2bNmHo0KEo\nKSnBtm3bMH/+/LAa4SV4EnSpQ6fIhSDsx3UZ+ooVK1BTU4Oqqips3LgRN9xwA55//nk72sYlPAm6\n6NC9ErloDTSiyIVwA66tchGhKpdgeBJ00aFHQ6coRS6EG3BtHToATJkyBVOmTLGqLZ5ALuiCAPj9\n7pzlT9y5zp/3hkOnyIVwO6536EQwcXHBgt7Rweq73XghExvLYogzZ7zh0AcMYN+lq6vn/yhyIdyA\n6zJ0Qhu5Q3dr3CKSmMhcrRccenw8cMklwNmzPf9HkQvhBsihc4Yo6OJ4K7cLekICE3QvOHRAPXah\nyIVwA+TQOSMmhv34/eyx2wXdSw4d0BZ0ilwIpyGHziHS2MXtgh4tDp0iF8IN0D1FOYQnQY8mh06C\nTjhNr14sjm1vt+fzSdBtgCdBT0hgN7nwukMnQSfcgp0unQTdBngS9MRE1kavO/S2NsrQCXcgvbGM\n1ZCg2wBPgi46c3LoBBEZyKFzBk+CLjpzrzt0EnTCLZBD5wyeBD2aHDpFLoQbIIfOGTwJutcc+oAB\nrJNXfiMtKlsk3AI5dM7gSdC95tD79GE3u66vD36eIhfCLZBD5wyeBF105l4RdEA5dqHIhXAL5NA5\ngydBT0hggx3c3EajKAk6RS6EWyCHzhk8CXpionfycxE1h06CTrgBcuicwZOgJyR4K24BKHIh3I2d\nDt2F99Hhn169gOXLgbVrgepqYMgQp1ukTlKS9xy60r1FKXIh3EJCArsRix2QoNtAaSnw6aeBxwUF\nzrUlFPn5wIYNTrfCWjIygN27A4/9fqCz091XSkT0QA6dM8aOZT88EBvLRN1LyCMXcR4XN94GkIg+\nKEMnCAMoCTrFLYRboCoXgjCAXNCpwoVwE+TQCcIAoqCLw/+pwoVwE5ddBmzfziJA8efYMWs+mzJ0\nwnP07csqjZqagORkilwId5GXxzrp7YAcOuFJMjKAkyfZ3xS5ENECCTrhSaQ5Ogk6ES1Q5EJ4kowM\n4C9/AY4fBw4fpgydiA7IodtMeXm5001wDZFcF3feyRz6m2+yDqeSkogtWhe0XwSgdWEdpgS9pqYG\n119/PUaNGoXRo0fjqaeesrpdnoF21gCRXBe33w6sXx/4uffeiC1aF7RfBKB1YR2mIpf4+HisWrUK\n48aNQ3NzM8aPH4/i4mLk5uZa3T6CIAhCJ6YcemZmJsaNGwcASExMRG5uLmpray1tGEEQBGEMnyDI\n775ojOrqakyZMgUHDx5E4r+m7fPRpBkEQRCmCEeSw6pyaW5uxuzZs7F69epuMQ+3QQRBEIQ5TFe5\ndHR04LbbbsNdd92FW265xco2EQRBECYwFbkIgoAFCxYgNTUVq1atsqNdBEEQhEFMCfoHH3yA6667\nDmPHju3Oy1euXImbbrrJ8gYSBEEQ+jAVuVx77bXo6urCJ598gr1792Lv3r3dYl5WVoaRI0di+PDh\nePTRRy1trNtRq88/d+4ciouLkZOTg2nTpqGhocHhlkYOv9+PgoICzJw5E0D0rouGhgbMnj0bubm5\nyMvLw+7du6N2XaxcuRKjRo3CmDFjMGfOHLS1tUXNuli0aBEyMjIwZsyY7ue0vvvKlSsxfPhwjBw5\nEu+8807Iz7d0pKjf78d9992HsrIyHDp0CBs2bMDhw4etXISrEevzDx48iF27duG3v/0tDh8+jNLS\nUhQXF6OyshJTp05FaWmp002NGKtXr0ZeXl73lVy0rov7778fM2bMwOHDh7F//36MHDkyKtdFdXU1\nnn32WVRUVODAgQPw+/3YuHFj1KyLhQsXoqysLOg5te9+6NAhvPzyyzh06BDKysqwZMkSdHV1aS9A\nsJCdO3cK06dP7368cuVKYeXKlVYugituvvlmYcuWLcKIESOEkydPCoIgCCdOnBBGjBjhcMsiQ01N\njTB16lRh27Ztwte//nVBEISoXBcNDQ3C0KFDezwfjevi7NmzQk5OjnDu3Dmho6ND+PrXvy688847\nUbUuqqqqhNGjR3c/VvvuK1asEEpLS7tfN336dOHDDz/U/GxLHfqXX36J7Ozs7sdZWVn48ssvrVwE\nN1RXV2Pv3r24+uqrUVdXh4yMDABARkYG6uS3pPcoDz74IB5//HHExAR2s2hcF1VVVUhPT8fChQvx\nla98BYsXL0ZLS0tUrouUlBQ89NBDGDx4MAYOHIhLL70UxcXFUbkuRNS+e21tLbKysrpfp0dPLRV0\nGlDEaG5uxm233YbVq1cjKSkp6H8+ny8q1tObb76JAQMGoKCgQHVcQrSsi87OTlRUVGDJkiWoqKhA\nQkJCj0ghWtbFsWPH8OSTT6K6uhq1tbVobm7Giy++GPSaaFkXSoT67qHWi6WCPmjQINTU1HQ/rqmp\nCTrDRANiff68efO66/MzMjJw8l93Wzhx4gQGDBjgZBMjws6dO7Fp0yYMHToUJSUl2LZtG+bNmxeV\n6yIrKwtZWVmYOHEiAGD27NmoqKhAZmZm1K2Ljz/+GIWFhUhNTUVcXBxuvfVWfPjhh1G5LkTUjgm5\nnh4/fhyDBg3S/CxLBX3ChAk4evQoqqur0d7ejpdffhmzZs2ychGuRhAEfOtb30JeXh4eeOCB7udn\nzZqFdevWAQDWrVsXFQOxVqxYgZqaGlRVVWHjxo244YYb8MILL0TlusjMzER2djYqKysBAFu3bsWo\nUaMwc+bMqFsXI0eOxK5du3DhwgUIgoCtW7ciLy8vKteFiNoxMWvWLGzcuBHt7e2oqqrC0aNHcdVV\nV2l/mNWB/+bNm4WcnBxh2LBhwooVK6z+eFezY8cOwefzCfn5+cK4ceOEcePGCX/729+Es2fPClOn\nThWGDx8uFBcXC/X19U43NaKUl5cLM2fOFARBiNp18cknnwgTJkwQxo4dK3zjG98QGhoaonZdPPro\no0JeXp4wevRoYf78+UJ7e3vUrIs777xTuOyyy4T4+HghKytLWLNmjeZ3X758uTBs2DBhxIgRQllZ\nWcjPD3tyLoIgCMId0B2LCIIgPAIJOkEQhEcgQScIgvAIJOgEQRAegQSdIAjCI5CgEwRBeIT/B4Th\n3AENN2mnAAAAAElFTkSuQmCC\n",
8338 "text": [
8339 "<matplotlib.figure.Figure at 0x9eb46cc>"
8340 ]
8341 }
8342 ],
8343 "prompt_number": 9
8344 },
8345 {
8346 "cell_type": "code",
8347 "collapsed": false,
8348 "input": [
8349 "plt.plot(t)"
8350 ],
8351 "language": "python",
8352 "metadata": {},
8353 "outputs": [
8354 {
8355 "metadata": {},
8356 "output_type": "pyout",
8357 "prompt_number": 11,
8358 "text": [
8359 "[<matplotlib.lines.Line2D at 0x9ee51ec>]"
8360 ]
8361 },
8362 {
8363 "metadata": {},
8364 "output_type": "display_data",
8365 "png": "iVBORw0KGgoAAAANSUhEUgAAAX4AAAEECAYAAAAvY19bAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAHpFJREFUeJzt3X9wk/XhB/B3+kM5ql86JoSZRMtIaBOQNKMYj+ldtNRq\nlUyBzaLTjlXXK1ernrd9x+27G72bQA83V1Z313pnofNW+mc7L0SskE3EtGMtsKOdpBz5mgTpd4px\ngvgNTZ/vH/kaSJs+SfNEyofn/brrtU/yeZ588py8+/GdJ41GkiQJRESkGjmzPQEiIrq6GPxERCrD\n4CciUhkGPxGRyjD4iYhUhsFPRKQy13Tw//SnP4XZbIbVasW6devw2WefTRnz5Zdfwm63o7S0FBaL\nBVu2bInf98tf/hJWqxWlpaUoLy9HIBAAAJw7dw733nsvbr75Zjz77LNpzaW1tRVGoxE5OTk4d+5c\ndp4gEdEsuGaC3+PxYNOmTQm33X///Thx4gSOHTuGpUuXYvv27VP2mzNnDg4ePIijR4/i+PHjOHjw\nIA4dOgQA+NnPfoZjx47h6NGjeOSRR9DU1BTf59e//jVefvnltOd3991345133sHtt9+u4FkSEc2+\nayb4NRrNlNsqKiqQkxObot1uRzAYTLrv3LlzAQCRSATRaBTz588HANx8883xMefPn8ctt9wSH//d\n734XN95445Rj7d+/H6tXr8bKlSvxgx/8ABcuXAAAlJaWMvSJ6LpwzQR/qjcQv/7666iqqkp638TE\nBEpLS6HVanHvvffCYrHE7/vFL36B2267DXv27MHPf/7zhP0m/7L5+OOP8dJLL+Gdd97B3//+d6xc\nuRK//e1vM3xGRETXplkP/rvuugs2mw3PPPMMent7YbPZYLPZsH///viYl156CTfccAMef/zxpMfI\nycnB0aNHEQwG8de//hUejydh3w8//BA/+tGP8MILL8jOxev1Ynh4GKtXr4bNZkNnZyc+/PDDrDxP\nIqJrRd5sT8Dr9QIA/vKXv2D37t3o6OhIuH/37t1wuVx45513Uh5r3rx5eOihh3DkyBE4HI6E+x5/\n/PFp/4/hShUVFfjTn/6U/hMgIhLMrK/4v5Ks6nG73di5cyd6enowZ86cpPt9/PHHCIfDAICLFy/i\n7bffhs1mAwD4fL74uJ6envjt0z3mXXfdhffeew+nTp0CAFy4cCHhGHJzJSISRcrgd7vdKCkpgclk\nQnNzc9IxjY2NMJlMsFqtGBoaAgB88MEH8drGZrNh3rx52LVr17SPo9FopnTuzz77LM6fP4+KigrY\nbDZs3rwZAHDmzBk89NBD8Z/vu+8+lJaWwm63Y+3atSgvLwcAbNmyBXfccQdKS0vh8Xjwm9/8Jn7s\noqIivPjii9i9ezcMBgP++c9/4pZbbsHu3buxceNGWK1WrF69Gh988AEAYNeuXTAYDAiFQlixYgV+\n8pOfpDp1RETXJI3cn2WORqMoLi5GX18fdDodVq1aha6uLpjN5vgYl8uF1tZWuFwu9Pf347nnnovX\nN1+ZmJiATqfDwMAADAbD1/dsiIgoJdkV/8DAAIxGI4qKipCfn4/q6mr09PQkjOnt7UVNTQ2A2CWX\n4XAYY2NjCWP6+vqwZMkShj4R0TVA9sXdUCiUENZ6vR79/f0pxwSDQWi12vhte/fuTXpFTrJr94mI\nKDUlrzXKrvjTDebJE7hyv0gkgj//+c/4/ve/P+2+/JLwq1/9atbncK188VzwXPBcyH8pJRv8Op0u\n/vdtACAQCECv18uOCQaD0Ol08e19+/Zh5cqVWLBggeLJEhGRcrLBX1ZWBp/PB7/fj0gkgu7ubjid\nzoQxTqcTnZ2dAGLX5BcWFibUPF1dXdi4cePXMHUiIsqEbMefl5eH1tZWVFZWIhqNora2FmazGW1t\nbQCAuro6VFVVweVywWg0oqCgIOENWBcuXEBfXx9ee+21r/dZXAcmv+FMzXguLuO5uIznIntkL+f8\n2h9co8lKX0VEpCZKs/OaeecuERFdHQx+IiKVYfATEakMg5+ISGUY/EREKsPgJyJSGQY/EZHKMPiJ\niFSGwU9EpDIMfiIilZn1D1vPxLp1wFtvJb+vuBgYHJTf/3//F7j9duDzz7M/NyKir0tPD7BmjfLj\nCBn8//3fseCf9NnpOHcOsFpT73/xIvDFF8D//M/XMz8ioq/DjTdm5zhCBv/4OPAf/wEUFCTeHo3G\n7ktn/xtumLo/EZEaCNnxj48DeUl+ZeXlpR/8yfYnIlIDIYP/0qXpg//Spcz3JyJSAyGDf3wcyM+f\nevtXK/5Uf6Z6uv2JiNRA2OBPtmLPyYl9TUxktj8RkRoIGfxyVU06dQ+rHiJSMyGDX27Fns4LvFzx\nE5GaCRv803X0+fnpBT87fiJSKyGDn1UPEVHmhAx+Vj1ERJkTNvhZ9RARZSZl8LvdbpSUlMBkMqG5\nuTnpmMbGRphMJlitVgwNDcVvD4fD2LBhA8xmMywWC7xer+IJS1LsTzPkTDNzrviJiOTJBn80GkVD\nQwPcbjeGh4fR1dWFkZGRhDEulwujo6Pw+Xxob29HfX19/L7nnnsOVVVVGBkZwfHjx2E2mxVP+KvQ\n1miS38+On4hInmz8DQwMwGg0oqioCABQXV2Nnp6ehADv7e1FTU0NAMButyMcDmNsbAxz5szBu+++\niz179sQeKC8P8+bNm/IYW7dujf/scDjgcDhkJ5yqpmHVQ0TXG4/HA4/Hk7XjyQZ/KBSCwWCIb+v1\nevT396ccEwwGkZubiwULFmDTpk04duwYVq5ciZaWFsydOzdh/yuDPx2pahpWPUR0vZm8KG5qalJ0\nPNmqRzNdnzKJNOmP42g0GoyPj2NwcBCbN2/G4OAgCgoKsGPHjsxn+v9S1TSseoiI5MkGv06nQyAQ\niG8HAgHo9XrZMcFgEDqdDnq9Hnq9HqtWrQIAbNiwAYOpPhorDVzxExEpIxv8ZWVl8Pl88Pv9iEQi\n6O7uhtPpTBjjdDrR2dkJAPB6vSgsLIRWq8WiRYtgMBhw8uRJAEBfXx+WLVumeMLs+ImIlJFd9+bl\n5aG1tRWVlZWIRqOora2F2WxGW1sbAKCurg5VVVVwuVwwGo0oKChAR0dHfP/f//73eOKJJxCJRLBk\nyZKE+zLFqoeISBmNNLmgv5oPrtFMeX0glVOngPvvj31Pprwc2LJF/gOJ29uBv/0NeO21GT00EdE1\nIZPsvJJw79xl1UNEpIyQwc8Xd4mIMidc8LPjJyJSRrjgZ9VDRKSMkMHPqoeIKHPCBT+rHiIiZYQL\nfq74iYiUETL42fETEWVOuOBn1UNEpIxwwc+qh4hIGSGDn1UPEVHmhAx+rviJiDInXPCz4yciUka4\n4GfVQ0SkjJDBz6qHiChzwgU/qx4iImWEC36u+ImIlBEy+NnxExFlTrjgZ9VDRKSMcMHPqoeISBkh\ng59VDxFR5oQMfq74iYgylzL43W43SkpKYDKZ0NzcnHRMY2MjTCYTrFYrhoaG4rcXFRVhxYoVsNls\nuPPOO7MyYXb8RETKyMZfNBpFQ0MD+vr6oNPpsGrVKjidTpjN5vgYl8uF0dFR+Hw+9Pf3o76+Hl6v\nFwCg0Wjg8Xgwf/78rE2YVQ8RkTKyK/6BgQEYjUYUFRUhPz8f1dXV6OnpSRjT29uLmpoaAIDdbkc4\nHMbY2Fj8fkmSsjphVj1ERMrIxl8oFILBYIhv6/V69Pf3pxwTCoWg1Wqh0WiwZs0a5Obmoq6uDs88\n88yUx9i6dWv8Z4fDAYfDITthVj1EpDYejwcejydrx5ONP41Gk9ZBplvVHzp0CLfeeiv+9a9/oaKi\nAiUlJbjnnnsSxlwZ/Ongip+I1GbyoripqUnR8WSrHp1Oh0AgEN8OBALQ6/WyY4LBIHQ6HQDg1ltv\nBQAsWLAAjz76KAYGBhRNFmDHT0SklGzwl5WVwefzwe/3IxKJoLu7G06nM2GM0+lEZ2cnAMDr9aKw\nsBBarRZffPEFPv/8cwDAhQsXsH//ftxxxx2KJ8yqh4hIGdn4y8vLQ2trKyorKxGNRlFbWwuz2Yy2\ntjYAQF1dHaqqquByuWA0GlFQUICOjg4AwNmzZ7Fu3ToAwPj4OJ544gncf//9iifMqoeISBmNlO3L\nbmby4BrNjK/6qa4GHn0UeOyx5Pf39wONjbHv01mwABgejn0nIhJNJtl5Jb5zl4hIZYQLfnb8RETK\nCBf8vKqHiEgZIYOfVQ8RUeaEC36lVY8kAdEokJub/bkREYlAuOBXuuIfH4+FfppvSiYiuu4IGfxK\nOn72+0SkdsIFv9Kqh1f0EJHaCRf82ah6GPxEpGZCBj+rHiKizAkZ/FzxExFlTrjgZ8dPRKSMcMGf\nqqrJzQUmJmJfmexPRHS9EzL45VbsGk3s/mg0s/2JiK53wgV/OlWNXN3DqoeI1E644E9nxS73Ai9X\n/ESkdkIGf6qOXu6STnb8RKR2wgU/qx4iImWEC35WPUREylyXwc+qh4hoekIF/8RE7HLNnBSz5oqf\niGh6QgV/uv08O34ioukJFfzp1jSseoiIppcy+N1uN0pKSmAymdDc3Jx0TGNjI0wmE6xWK4aGhhLu\ni0ajsNlsWLt2reLJplvTsOohIpqebPBHo1E0NDTA7XZjeHgYXV1dGBkZSRjjcrkwOjoKn8+H9vZ2\n1NfXJ9zf0tICi8UCTRY+65BVDxGRcrLBPzAwAKPRiKKiIuTn56O6uho9PT0JY3p7e1FTUwMAsNvt\nCIfDGBsbAwAEg0G4XC48/fTTkCRJ8WS54iciUk42AkOhEAwGQ3xbr9ejv78/5ZhQKAStVosXXngB\nO3fuxL///e9pH2Pr1q3xnx0OBxwOx7Rj2fETkRp5PB54PJ6sHU82+NOtZyav5iVJwptvvomFCxfC\nZrPJTvjK4E+FVQ8RqdHkRXFTU5Oi48lWPTqdDoFAIL4dCASg1+tlxwSDQeh0Ohw+fBi9vb1YvHgx\nNm7ciAMHDuCpp55SNFlWPUREyskGf1lZGXw+H/x+PyKRCLq7u+F0OhPGOJ1OdHZ2AgC8Xi8KCwux\naNEibNu2DYFAAKdPn8bevXtx3333xcdlilUPEZFysmvfvLw8tLa2orKyEtFoFLW1tTCbzWhrawMA\n1NXVoaqqCi6XC0ajEQUFBejo6Eh6rGxc1cMVPxGRchopG5fbZPrgGs2MrvYZHASefjr2Xc66dcAT\nTwDr10+9b+dOYGwMePnlGU6WiOgaMdPsnIzv3CUiUhnhgp9VDxGRMkIFPy/nJCJSTqjg54qfiEg5\n4YKfHT8RkTJCBT+rHiIi5YQKflY9RETKCRf8rHqIiJQRLvi54iciUkao4GfHT0SknFDBz6qHiEg5\n4YKfVQ8RkTJCBT+rHiIi5YQKflY9RETKCRf8rHqIiJQRKvhZ9RARKSdU8HPFT0SknHDBz46fiEgZ\n4YKfK34iImWECn52/EREygkV/Kx6iIiUEy74WfUQESkjVPCz6iEiUi5l8LvdbpSUlMBkMqG5uTnp\nmMbGRphMJlitVgwNDQEAvvzyS9jtdpSWlsJisWDLli2KJ8uqh4hIOdngj0ajaGhogNvtxvDwMLq6\nujAyMpIwxuVyYXR0FD6fD+3t7aivrwcAzJkzBwcPHsTRo0dx/PhxHDx4EIcOHVI0WVY9RETKyQb/\nwMAAjEYjioqKkJ+fj+rqavT09CSM6e3tRU1NDQDAbrcjHA5jbGwMADB37lwAQCQSQTQaxfz58xVN\nllUPEZFyshEYCoVgMBji23q9Hv39/SnHBINBaLVaRKNRrFy5EqdOnUJ9fT0sFsuUx9i6dWv8Z4fD\nAYfDMe18uOInIjXyeDzweDxZO55sBGo0mrQOIklS0v1yc3Nx9OhRfPbZZ6isrITH45kS7FcGfyrs\n+IlIjSYvipuamhQdT7bq0el0CAQC8e1AIAC9Xi87JhgMQqfTJYyZN28eHnroIRw5ckTRZFn1EBEp\nJxv8ZWVl8Pl88Pv9iEQi6O7uhtPpTBjjdDrR2dkJAPB6vSgsLIRWq8XHH3+McDgMALh48SLefvtt\n2Gw2RZNl1UNEpJxsBObl5aG1tRWVlZWIRqOora2F2WxGW1sbAKCurg5VVVVwuVwwGo0oKChAR0cH\nAOCjjz5CTU0NJiYmMDExgSeffBLl5eWKJsuqh4hIOY00uaC/mg+u0Ux5fUBORQXwn/8JrFkjP250\nFHjggdj3yXJyYuGfI9Rb14iILptpdk4mVPwp7fij0dh3hj4RqZlQEai06mHNQ0QkYPAreXGXL+wS\nEQkW/EqrHl7KSUQkWPBzxU9EpJxwwc+On4hIGaGCn1UPEZFyQgX/TKueyZe5suohIhIw+NOpanJy\nYl8TE5ntT0R0PRMu+NNdsSd7gZcrfiIiwYJ/Jh19sp6fHT8RkWDBP5OqJtmVPax6iIgEDH5WPURE\nyggV/Kx6iIiUEyr4ueInIlJOmOCXpNifVc7NTW88O34iouSECf6vVutpfv47qx4iomkIF/zpYtVD\nRJScUME/k5qGVQ8RUXJCBT9X/EREygkT/DPt59nxExElJ0zws+ohIsoOoYKfVQ8RkXIpg9/tdqOk\npAQmkwnNzc1JxzQ2NsJkMsFqtWJoaAgAEAgEcO+992LZsmVYvnw5du3apWiirHqIiLJDNvij0Sga\nGhrgdrsxPDyMrq4ujIyMJIxxuVwYHR2Fz+dDe3s76uvrAQD5+fl45ZVXcOLECXi9Xrz66qtT9p0J\nrviJiLJDNvgHBgZgNBpRVFSE/Px8VFdXo6enJ2FMb28vampqAAB2ux3hcBhjY2NYtGgRSktLAQA3\n3XQTzGYzzpw5k/FE2fETEWWH7Po3FArBYDDEt/V6Pfr7+1OOCQaD0Gq18dv8fj+GhoZgt9unPMbW\nrVvjPzscDjgcjqRzYdVDRGrl8Xjg8XiydjzZGNSk+fcRpEkfbnvlfufPn8eGDRvQ0tKCm266acq+\nVwa/HFY9RKRWkxfFTU1Nio4nW/XodDoEAoH4diAQgF6vlx0TDAah0+kAAJcuXcL69evxwx/+EI88\n8oiiibLqISLKDtngLysrg8/ng9/vRyQSQXd3N5xOZ8IYp9OJzs5OAIDX60VhYSG0Wi0kSUJtbS0s\nFguef/55xRPlip+IKDtkYzAvLw+tra2orKxENBpFbW0tzGYz2traAAB1dXWoqqqCy+WC0WhEQUEB\nOjo6AADvvfce3njjDaxYsQI2mw0AsH37djzwwAMZTTRbHf+NN2b08ERE142UUfrggw/iwQcfTLit\nrq4uYbu1tXXKfnfffTcmJiYUTu+ybFU9SV5mICJSFb5zl4hIZYQJfl7OSUSUHcIEP1f8RETZIVTw\n83JOIiLlhAl+Vj1ERNkhTPCz6iEiyg6hgp9VDxGRckIFP1f8RETKCRP87PiJiLJDmOBn1UNElB1C\nBT+rHiIi5YQJflY9RETZIUzwc8VPRJQdQgU/O34iIuWECX5WPURE2SFM8LPqISLKDqGCn1UPEZFy\nQgU/V/xERMoJE/zs+ImIskOY4GfVQ0SUHUIFP6seIiLlhAl+Vj1ERNkhTPBzxU9ElB0pg9/tdqOk\npAQmkwnNzc1JxzQ2NsJkMsFqtWJoaCh++49//GNotVrccccdiifKjp+IKDtkgz8ajaKhoQFutxvD\nw8Po6urCyMhIwhiXy4XR0VH4fD60t7ejvr4+ft+mTZvgdruzMlFWPURE2SEb/AMDAzAajSgqKkJ+\nfj6qq6vR09OTMKa3txc1NTUAALvdjnA4jLNnzwIA7rnnHnzjG9/IykRZ9RARZYdsDIZCIRgMhvi2\nXq9Hf39/yjGhUAiLFi1KawJbt26N/+xwOOBwOJKOY9VDRGrl8Xjg8XiydjzZ4NdoNGkdRJKkjPYD\nEoNfjtIVvyQB0SiQm5v+MYiIrgWTF8VNTU2Kjidb9eh0OgQCgfh2IBCAXq+XHRMMBqHT6RRNKhml\nHf/4eCz0Z/A7iYjouiQb/GVlZfD5fPD7/YhEIuju7obT6UwY43Q60dnZCQDwer0oLCyEVqvN+kSV\nVj2seYiIYmSDPy8vD62traisrITFYsFjjz0Gs9mMtrY2tLW1AQCqqqrw7W9/G0ajEXV1dfjDH/4Q\n33/jxo1YvXo1Tp48CYPBgI6OjownqrTq4Qu7REQxGmlyQX81H1yjmfL6wHRsNuD112Pf0/Hpp8Di\nxUA4HNs+dw5YsiR2OxGRyGaSncmo5p27XPETEcUIFfzs+ImIlBMm+JVe1cN37RIRxQgT/DOtanJz\ngYmJ2Fcm+xMRXa+ECv6ZVDUaTSzoo9HM9iciul4JFfwzXbFf+QIvV/xERDHCBH8mHf2VPT87fiKi\nGGGCP5Oq5sore1j1EBHFCBX8rHqIiJQTJvhZ9RARZYcwwc8VPxFRdggR/BMTscszc2Y4W3b8RERT\nCRH8mdY0rHqIiKYSIvgzrWlY9RARTSVM8GdS07DqISKaSpjg54qfiCg7hAh+dvxERNkjRPCz6iEi\nyp5ZXwNv2JB6zIULmQf/f/0XsGAB4PcDpaUzPwYR0fVm1oO/ujq9cXr9zI/d0gJ88MHl7XQ/r5eI\n6HomzIetExFRjGo+bJ2IiLKDwX+N8Hg8sz2FawbPxWU8F5fxXGRPyuB3u90oKSmByWRCc3Nz0jGN\njY0wmUywWq0YGhqa0b4Uw/+oL+O5uIzn4jKei+yRDf5oNIqGhga43W4MDw+jq6sLIyMjCWNcLhdG\nR0fh8/nQ3t6O+vr6tPclIqKrTzb4BwYGYDQaUVRUhPz8fFRXV6OnpydhTG9vL2pqagAAdrsd4XAY\nZ8+eTWtfIiK6+mQv5wyFQjAYDPFtvV6P/v7+lGNCoRDOnDmTcl8g9uo0xTQ1Nc32FK4ZPBeX8Vxc\nxnORHbLBn24oZ3pZES/lJCK6+mSDX6fTIRAIxLcDgQD0k95JNXlMMBiEXq/HpUuXUu5LRERXn2zH\nX1ZWBp/PB7/fj0gkgu7ubjidzoQxTqcTnZ2dAACv14vCwkJotdq09iUioqtPdsWfl5eH1tZWVFZW\nIhqNora2FmazGW1tbQCAuro6VFVVweVywWg0oqCgAB0dHbL7EhHRLJNmyb59+6Ti4mLJaDRKO3bs\nmK1pzIoPP/xQcjgcksVikZYtWya1tLRIkiRJn3zyibRmzRrJZDJJFRUV0qeffjrLM716xsfHpdLS\nUunhhx+WJEm95+LTTz+V1q9fL5WUlEhms1nyer2qPRfbtm2TLBaLtHz5cmnjxo3Sl19+qZpzsWnT\nJmnhwoXS8uXL47fJPfdt27ZJRqNRKi4ult56662Ux5+Vd+6q/Rr//Px8vPLKKzhx4gS8Xi9effVV\njIyMYMeOHaioqMDJkydRXl6OHTt2zPZUr5qWlhZYLJb4BQVqPRfPPfccqqqqMDIyguPHj6OkpESV\n58Lv9+O1117D4OAg/vGPfyAajWLv3r2qORebNm2C2+1OuG265z48PIzu7m4MDw/D7XZj8+bNmJiY\nkH+Ar+XXVQqHDx+WKisr49vbt2+Xtm/fPhtTuSZ873vfk95++22puLhYOnv2rCRJkvTRRx9JxcXF\nszyzqyMQCEjl5eXSgQMH4it+NZ6LcDgsLV68eMrtajwXn3zyibR06VLp3Llz0qVLl6SHH35Y2r9/\nv6rOxenTpxNW/NM9923btiW0JpWVldL7778ve+xZWfFPd+2/Gvn9fgwNDcFut2NsbAxarRYAoNVq\nMTY2NsuzuzpeeOEF7Ny5Ezk5l/9zVOO5OH36NBYsWIBNmzbhO9/5Dp555hlcuHBBledi/vz5ePHF\nF3Hbbbfh1ltvRWFhISoqKlR5Lr4y3XM/c+ZMwhWT6eTprAQ/37QVc/78eaxfvx4tLS24+eabE+7T\naDSqOE9vvvkmFi5cCJvNNu37OtRyLsbHxzE4OIjNmzdjcHAQBQUFU6oMtZyLU6dO4Xe/+x38fj/O\nnDmD8+fP44033kgYo5ZzkUyq557qvMxK8Kfz/oDr3aVLl7B+/Xo8+eSTeOSRRwDEfoufPXsWAPDR\nRx9h4cKFsznFq+Lw4cPo7e3F4sWLsXHjRhw4cABPPvmkKs+FXq+HXq/HqlWrAAAbNmzA4OAgFi1a\npLpzceTIEaxevRrf/OY3kZeXh3Xr1uH9999X5bn4ynT/JpK9l0qn08kea1aCX+3X+EuShNraWlgs\nFjz//PPx251OJ/bs2QMA2LNnT/wXwvVs27ZtCAQCOH36NPbu3Yv77rsPf/zjH1V5LhYtWgSDwYCT\nJ08CAPr6+rBs2TKsXbtWdeeipKQEXq8XFy9ehCRJ6Ovrg8ViUeW5+Mp0/yacTif27t2LSCSC06dP\nw+fz4c4775Q/WLZfkEiXy+WSli5dKi1ZskTatm3bbE1jVrz77ruSRqORrFarVFpaKpWWlkr79u2T\nPvnkE6m8vPy6v1RtOh6PR1q7dq0kSZJqz8XRo0elsrIyacWKFdKjjz4qhcNh1Z6L5ubm+OWcTz31\nlBSJRFRzLqqrq6VvfetbUn5+vqTX66XXX39d9rm/9NJL0pIlS6Ti4mLJ7XanPP6sfvQiERFdffwE\nLiIilWHwExGpDIOfiEhlGPxERCrD4CciUhkGPxGRyvwf/46pxWPvViQAAAAASUVORK5CYII=\n",
8366 "text": [
8367 "<matplotlib.figure.Figure at 0x9d764cc>"
8368 ]
8369 }
8370 ],
8371 "prompt_number": 11
8372 },
8373 {
8374 "cell_type": "code",
8375 "collapsed": false,
8376 "input": [],
8377 "language": "python",
8378 "metadata": {},
8379 "outputs": []
8380 }
8381 ],
8382 "metadata": {}
8383 }
8384 ]
8385 }