diff --git a/Exams/Final/Final_Solutions_AnugrahSingh.ipynb b/Exams/Final/Final_Solutions_AnugrahSingh.ipynb new file mode 100644 index 0000000..1232ac1 --- /dev/null +++ b/Exams/Final/Final_Solutions_AnugrahSingh.ipynb @@ -0,0 +1,540 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.0" + }, + "colab": { + "name": "Final Solutions- AnugrahSingh.ipynb", + "provenance": [], + "collapsed_sections": [] + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "8Zuc-7b_P49g", + "colab_type": "text" + }, + "source": [ + "# Final Exam\n", + "\n", + "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github//afarbin/DATA1401-Spring-2020/blob/master/Exams/Final/Final.ipynb)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "MosLVDz5P49h", + "colab_type": "text" + }, + "source": [ + "Recall the drawing system from lecture 18:" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "FvGxj1jaP49h", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class Canvas:\n", + " def __init__(self, width, height):\n", + " self.width = width\n", + " self.height = height\n", + " self.data = [[' '] * width for i in range(height)]\n", + "\n", + " def set_pixel(self, row, col, char='*'):\n", + " self.data[row][col] = char\n", + "\n", + " def get_pixel(self, row, col):\n", + " return self.data[row][col]\n", + " \n", + " def h_line(self, x, y, w, **kwargs):\n", + " for i in range(x,x+w):\n", + " self.set_pixel(y,i, **kwargs)\n", + "\n", + " def v_line(self, x, y, h, **kwargs):\n", + " for i in range(y,y+h):\n", + " self.set_pixel(i,x, **kwargs)\n", + " \n", + " def line(self, x1, y1, x2, y2, **kwargs):\n", + " slope = (y2-y1) / (x2-x1)\n", + " for y in range(y1,y2):\n", + " x= int(slope * y)\n", + " self.set_pixel(x,y, **kwargs)\n", + "\n", + " def cir_arc(self,r,**kwargs):\n", + " size=2*r+1\n", + " for i in range(int(size)):\n", + " for j in range(int(size)):\n", + " x=i-r\n", + " y=j-r\n", + " if x * x + y * y == r * r + 1:\n", + " self.set_pixel(i,j,**kwargs)\n", + "\n", + " def oval_arc(self,ax_1,ax_2,**kwargs):\n", + " size=2*ax_1+1\n", + " for i in range(int(size)):\n", + " for j in range(int(size)):\n", + " x=i-ax_1\n", + " y=j-ax_1\n", + " if (x * x)/(ax_1^2) + (y * y)/(ax_2^2) == 1:\n", + " self.set_pixel(i,j,**kwargs)\n", + " \n", + " def display(self):\n", + " print(\"\\n\".join([\"\".join(row) for row in self.data]))" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "XDZxMBNUP49m", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class Shape:\n", + " def __init__(self, name=\"\", **kwargs):\n", + " self.name=name\n", + " self.kwargs=kwargs\n", + " \n", + " def paint(self, canvas): pass\n", + "\n", + " def __str__(self):\n", + " return \"{}({})\".format(self.name,self.kwargs)\n", + "\n", + "class Rectangle(Shape):\n", + " def __init__(self, x, y, w, h, **kwargs):\n", + " Shape.__init__(self, **kwargs)\n", + " self.x = x\n", + " self.y = y\n", + " self.w = w\n", + " self.h = h\n", + "\n", + " def __str__(self):\n", + " return \"Square({},{},{},{},{})\".format(self.x,self.y,self.w,self.h,self.kwargs)\n", + "\n", + " def paint(self, canvas):\n", + " canvas.h_line(self.x, self.y, self.w, **self.kwargs)\n", + " canvas.h_line(self.x, self.y + self.h, self.w, **self.kwargs)\n", + " canvas.v_line(self.x, self.y, self.h, **self.kwargs)\n", + " canvas.v_line(self.x + self.w, self.y, self.h, **self.kwargs)\n", + "\n", + "class Square(Rectangle):\n", + " def __init__(self, x, y, size, **kwargs):\n", + " Rectangle.__init__(self, x, y, size, size, **kwargs)\n", + "\n", + "class Line(Shape):\n", + " def __init__(self, x1, y1, x2, y2, **kwargs):\n", + " Shape.__init__(self, **kwargs)\n", + " self.x1=x1\n", + " self.y1=y1\n", + " self.x2=x2\n", + " self.y2=y2\n", + "\n", + " def __str__(self):\n", + " return \"Line({},{},{},{},{})\".format(self.x1,self.y1,self.x2,self.y2,self.kwargs)\n", + " \n", + " def paint(self, canvas):\n", + " canvas.line(self.x1,self.y1,self.x2,self.y2)\n", + " \n", + "class CompoundShape(Shape):\n", + " def __init__(self, shapes):\n", + " self.shapes = shapes\n", + "\n", + " def paint(self, canvas):\n", + " for s in self.shapes:\n", + " s.paint(canvas)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "HRE-KuTSP49r", + "colab_type": "text" + }, + "source": [ + "1. Add `Point` and `Triangle` classes and test them." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "Q3cOVbRMJW3E", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class Triangle(Shape):\n", + " def __init__(self, x1, y1, x2, y2, **kwargs):\n", + " Shape.__init__(self, **kwargs)\n", + " self.x1=x1\n", + " self.y1=y1\n", + " self.x2=x2\n", + " self.y2=y2\n", + "\n", + " def __str__(self):\n", + " return \"Triangle({},{},{},{},{})\".format(self.x1,self.y1,self.x2,self.y2,self.kwargs)\n", + " \n", + " def paint(self, canvas):\n", + " canvas.line(self.x1,self.y1,self.x2,self.y2)\n", + " canvas.h_line(self.x1,self.y1,self.x2-self.x1,**self.kwargs)\n", + " canvas.v_line(self.x2,self.y1,self.y2-self.y1,**self.kwargs)\n", + "\n", + "class Point(Shape):\n", + " def __init__(self, x, y, **kwargs):\n", + " Shape.__init__(self, **kwargs)\n", + " self.x=x\n", + " self.y=y\n", + "\n", + " def __str__(self):\n", + " return \"Point({},{},{})\".format(self.x,self.y,self.kwargs)\n", + " \n", + " def paint(self, canvas):\n", + " canvas.set_pixel(self.x,self.y,**self.kwargs)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "9AhnoK0ieZRW", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 353 + }, + "outputId": "5b272728-7a9a-4bf8-b741-39617b768476" + }, + "source": [ + "c1=Canvas(20,20)\n", + "t1=Triangle(0,0,10,10,char=\"*\")\n", + "t1.paint(c1)\n", + "p1=Point(2,6,char=\"+\")\n", + "p1.paint(c1)\n", + "c1.display()" + ], + "execution_count": 206, + "outputs": [ + { + "output_type": "stream", + "text": [ + "*********** \n", + " * * \n", + " * + * \n", + " * * \n", + " * * \n", + " * * \n", + " * * \n", + " * * \n", + " * * \n", + " ** \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "IDVJhn88P49t", + "colab_type": "text" + }, + "source": [ + "2. Add an `Arc` class that is instantiated with a center location, two axis lengths, and starting and ending angles. If start and end are not specified or are the same angle, the `Arc` instance should draw an oval. If in addition the two axes are the same, the `Arc` instance should draw a circle. Create `Oval` and `Circle` classes that inherit from `Arc`. Test everything." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "YMS9Q-CoC_du", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class Arc(Shape):\n", + " def __init__(self,**kwargs):\n", + " Shape.__init__(self,**kwargs)\n", + " self.kwargs=kwargs\n", + "\n", + " def paint(self,canvas):\n", + " pass\n", + "\n", + "class Circle(Arc):\n", + " def __init__(self,ax_1,**kwargs):\n", + " Arc.__init__(self,**kwargs)\n", + " self.ax_1=ax_1\n", + "\n", + " def paint(self,canvas):\n", + " canvas.cir_arc((self.ax_1)/2,**self.kwargs)\n", + "\n", + "class Oval(Arc):\n", + " def __init__(self,ax_1,ax_2,**kwargs):\n", + " Arc.__init__(self,**kwargs)\n", + " self.ax_1=ax_1\n", + " self.ax_2=ax_2\n", + "\n", + " def paint(self,canvas):\n", + " canvas.oval_arc(self.ax_1,self.ax_2,**self.kwargs)\n" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "b76nH8K4YM4f", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 353 + }, + "outputId": "f97e05a9-af84-4b55-88b5-60457a9055ec" + }, + "source": [ + "c1=Canvas(50,20)\n", + "c=Circle(16)\n", + "c.paint(c1)\n", + "o=Oval(25,1)\n", + "o.paint(c1)\n", + "c1.display()\n" + ], + "execution_count": 109, + "outputs": [ + { + "output_type": "stream", + "text": [ + " * * \n", + " * * \n", + " \n", + " \n", + " * * \n", + " \n", + " \n", + "* * \n", + " \n", + "* * \n", + " \n", + " \n", + " * * \n", + " \n", + " \n", + " * * \n", + " * * \n", + " \n", + " \n", + " \n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "MvdBzoXfP49w", + "colab_type": "text" + }, + "source": [ + "3. Use your classes to create a `RasterDrawing` that draws a happy face." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "BIaRgBoMP49p", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class RasterDrawing:\n", + " def __init__(self):\n", + " self.shapes=dict()\n", + " self.shape_names=list()\n", + " \n", + " def add_shape(self,shape):\n", + " if shape.name == \"\":\n", + " shape.name = self.assign_name()\n", + " \n", + " self.shapes[shape.name]=shape\n", + " self.shape_names.append(shape.name)\n", + " \n", + " def paint(self,canvas):\n", + " for shape_name in self.shape_names:\n", + " self.shapes[shape_name].paint(canvas)\n", + " \n", + " def assign_name(self):\n", + " name_base=\"shape\"\n", + " name = name_base+\"_0\"\n", + " \n", + " i=1\n", + " while name in self.shapes:\n", + " name = name_base+\"_\"+str(i)\n", + " \n", + " return name" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "W_z-fzpUP49w", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 370 + }, + "outputId": "b964de55-7a13-4323-efaf-036e58aa8b47" + }, + "source": [ + "c1=Canvas(20,20)\n", + "rd=RasterDrawing()\n", + "rd.add_shape(Circle(16))\n", + "rd.add_shape(Point(2,6,char=\"+\"))\n", + "rd.add_shape(Point(2,10,char=\"+\"))\n", + "rd.paint(c1)\n", + "c1.display()" + ], + "execution_count": 106, + "outputs": [ + { + "output_type": "error", + "ename": "KeyboardInterrupt", + "evalue": "ignored", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0mrd\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0madd_shape\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mCircle\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m16\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0mrd\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0madd_shape\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mPoint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m6\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mchar\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m\"+\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 5\u001b[0;31m \u001b[0mrd\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0madd_shape\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mPoint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m10\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mchar\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m\"+\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 6\u001b[0m \u001b[0mrd\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mpaint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mc1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0mc1\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdisplay\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36madd_shape\u001b[0;34m(self, shape)\u001b[0m\n\u001b[1;32m 6\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0madd_shape\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mshape\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mshape\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mname\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m\"\"\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 8\u001b[0;31m \u001b[0mshape\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mname\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0massign_name\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 9\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 10\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mshapes\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mshape\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mshape\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36massign_name\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 21\u001b[0m \u001b[0mi\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 22\u001b[0m \u001b[0;32mwhile\u001b[0m \u001b[0mname\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mshapes\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 23\u001b[0;31m \u001b[0mname\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mname_base\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;34m\"_\"\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0mstr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 24\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 25\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mname\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + ] + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "MDAjRpF8P49y", + "colab_type": "text" + }, + "source": [ + "4. Add to the `Shape` base class a `__str__()` method. Overwrite the method in each shape to generate a string of the python code necessary to reinstantiate the object. For example, for a rectangle originally instantiated using `Square(5,5,20,char=\"^\")`, `__str__()` should return the string `'Square(5,5,20,char=\"^\")'`.\n" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "W_XPIFo19TTF", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "45a03edd-2457-4d6d-dd35-7f3cbcdcba96" + }, + "source": [ + "c1=Canvas(50,40)\n", + "s1=Square(5,5,20,char=\"^\")\n", + "print(s1)" + ], + "execution_count": 146, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Square(5,5,20,20,{'char': '^'})\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "6vAEOEHtP492", + "colab_type": "text" + }, + "source": [ + "5. Add to `RasterDrawing` two functions, `save(filename)` and `load(filename)`. The save function writes the `__str__()` of all of the shapes in the drawing to a file (one shape per line). The load function, reads the file, and instantiates each object using the python `eval(expression)` function, and adds each shape to the drawing, thereby recreating a \"saved\" raster drawing. Use this functionality to save and load your happy face.\n", + "\n", + " `eval` takes a string that contains a fragment of a python code and executes it. Consider the following examples: " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "HRi-sIbXP493", + "colab_type": "code", + "colab": {} + }, + "source": [ + "eval(\"print('Hello')\")" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "eAebp4ySP496", + "colab_type": "code", + "colab": {} + }, + "source": [ + "x = eval('1+2')\n", + "print(x)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "ILjkg5KmP498", + "colab_type": "code", + "colab": {} + }, + "source": [ + "" + ], + "execution_count": 0, + "outputs": [] + } + ] +} \ No newline at end of file diff --git a/Exams/Mid-term/Exam_Solutions_Anugrah_Singh.ipynb b/Exams/Mid-term/Exam_Solutions_Anugrah_Singh.ipynb new file mode 100644 index 0000000..149af00 --- /dev/null +++ b/Exams/Mid-term/Exam_Solutions_Anugrah_Singh.ipynb @@ -0,0 +1,743 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.1" + }, + "colab": { + "name": "Exam Solutions- Anugrah Singh.ipynb", + "provenance": [] + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "uSDFGmHw1Bsj", + "colab_type": "text" + }, + "source": [ + "# Mid-term Exam\n", + "\n", + "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github//afarbin/DATA1401-Spring-2020/blob/master/Exams/Mid-term/Exam.ipynb)\n", + "\n", + "Add cells to this notebook as you need for your solutions and your test of your solutions." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "9M6rP8F91Bsk", + "colab_type": "text" + }, + "source": [ + "1. Write a function `first_alphabetically(lst)` that takes a list `lst` of strings and returns the string that is alphabetically first. For example, calling your function with the list of states:" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "XvmMY4Pn1Bsl", + "colab_type": "code", + "colab": {} + }, + "source": [ + "states=['Mississippi', 'Maryland', 'Delaware', 'Connecticut', 'Virginia', 'Utah', 'Kansas',\n", + " 'Wyoming', 'Indiana', 'Louisiana', 'Missouri', 'Illinois', 'Minnesota', 'Vermont', \n", + " 'New Mexico', 'North Dakota', 'Wisconsin', 'Tennessee', 'New York', 'Oklahoma', \n", + " 'Colorado', 'Pennsylvania', 'West Virginia', 'Alabama', 'Montana', 'Texas', \n", + " 'Washington', 'Michigan', 'New Hampshire', 'Arkansas', 'Hawaii', 'Iowa', \n", + " 'Idaho', 'Kentucky', 'Ohio', 'Nebraska', 'Alaska', 'Oregon', 'South Dakota', \n", + " 'New Jersey', 'Florida', 'Georgia', 'Rhode Island', 'Arizona', 'Maine', \n", + " 'South Carolina', 'California', 'Nevada', 'Massachusetts', 'North Carolina']" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "zaZCH4_S1Bso", + "colab_type": "text" + }, + "source": [ + "should return the string `\"Alabama\"`. Note that you can compare strings:" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "5JHJaxLh1Bsp", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 84 + }, + "outputId": "bf1180fa-666b-48ca-e372-2378f172cfe0" + }, + "source": [ + "print(\"A\">\"B\")\n", + "print(\"B\">\"A\")\n", + "print(\"A\">\"a\")\n", + "print(\"bca\">\"bbc\")" + ], + "execution_count": 1, + "outputs": [ + { + "output_type": "stream", + "text": [ + "False\n", + "True\n", + "False\n", + "True\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "EmYH8zKqPOz6", + "colab_type": "code", + "colab": {} + }, + "source": [ + "def first_alphabetically(lst):\n", + " for i in range(len(lst)-1, 0, -1):\n", + " for j in range(i):\n", + " if lst[j] > lst[j+1]:\n", + " lst[j], lst[j+1] = lst[j+1], lst[j]\n", + " print(lst[0])" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "lmXDfWo2R1r4", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "0f917d70-46be-40c2-a68f-b67af303933c" + }, + "source": [ + "states=['Mississippi', 'Maryland', 'Delaware', 'Connecticut', 'Virginia', 'Utah', 'Kansas',\n", + " 'Wyoming', 'Indiana', 'Louisiana', 'Missouri', 'Illinois', 'Minnesota', 'Vermont', \n", + " 'New Mexico', 'North Dakota', 'Wisconsin', 'Tennessee', 'New York', 'Oklahoma', \n", + " 'Colorado', 'Pennsylvania', 'West Virginia', 'Alabama', 'Montana', 'Texas', \n", + " 'Washington', 'Michigan', 'New Hampshire', 'Arkansas', 'Hawaii', 'Iowa', \n", + " 'Idaho', 'Kentucky', 'Ohio', 'Nebraska', 'Alaska', 'Oregon', 'South Dakota', \n", + " 'New Jersey', 'Florida', 'Georgia', 'Rhode Island', 'Arizona', 'Maine', \n", + " 'South Carolina', 'California', 'Nevada', 'Massachusetts', 'North Carolina']\n", + "first_alphabetically(states)" + ], + "execution_count": 70, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Alabama\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "W21r7I-D1Bst", + "colab_type": "text" + }, + "source": [ + "Make sure your implementation isn't case sensitive. Do not use python's built-in `min`, `max`, `sort` or any other sort function you find." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "hONADJC51Bsu", + "colab_type": "text" + }, + "source": [ + "2. Write a function `arg_first_alphabetically(lst)`, which does the same thing as in exercise 1 but returns the index of the first string alphabetically." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "SMm1kjbbZZDP", + "colab_type": "code", + "colab": {} + }, + "source": [ + "def arg_first_alphabetically(lst):\n", + " unsorted_lst=[]\n", + " for item in lst:\n", + " unsorted_lst.append(item)\n", + " for i in range(len(lst)-1, 0, -1):\n", + " for j in range(i):\n", + " if lst[j] > lst[j+1]:\n", + " lst[j], lst[j+1] = lst[j+1], lst[j]\n", + " for k in range(1, len(unsorted_lst)):\n", + " if unsorted_lst[k]==lst[0]:\n", + " print(\"Index of the first string alphabetically is:\",k)\n", + " break" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "5SpN1H_VeTW3", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "ff7201c8-53fb-40f1-9122-c6c9b5ef215d" + }, + "source": [ + "states=['Mississippi', 'Maryland', 'Delaware', 'Connecticut', 'Virginia', 'Utah', 'Kansas',\n", + " 'Wyoming', 'Indiana', 'Louisiana', 'Missouri', 'Illinois', 'Minnesota', 'Vermont', \n", + " 'New Mexico', 'North Dakota', 'Wisconsin', 'Tennessee', 'New York', 'Oklahoma', \n", + " 'Colorado', 'Pennsylvania', 'West Virginia', 'Alabama', 'Montana', 'Texas', \n", + " 'Washington', 'Michigan', 'New Hampshire', 'Arkansas', 'Hawaii', 'Iowa', \n", + " 'Idaho', 'Kentucky', 'Ohio', 'Nebraska', 'Alaska', 'Oregon', 'South Dakota', \n", + " 'New Jersey', 'Florida', 'Georgia', 'Rhode Island', 'Arizona', 'Maine', \n", + " 'South Carolina', 'California', 'Nevada', 'Massachusetts', 'North Carolina']\n", + "arg_first_alphabetically(states)" + ], + "execution_count": 93, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Index of the first string alphabetically is: 23\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "colab_type": "text", + "id": "aA79VrQcka4f" + }, + "source": [ + "3. Use your result in question 2 to implement a function `arg_sort_alphabetically(lst)` that returns a list that is alphabetically sorted. Sorting can be accomplished by successively applying the function in question 1 and removing the first element alphabetically. You can remove an element from a list using `pop()`. Make sure your implementation isn't case sensitive. Do not use python's built-in `min`, `max`, `sort` or any other sort function you find." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "BBgSYuKAkbnJ", + "colab_type": "code", + "colab": {} + }, + "source": [ + "def arg_sort_alphabetically(lst):\n", + " for i in range(len(lst)-1, 0, -1):\n", + " for j in range(i):\n", + " if lst[j] > lst[j+1]:\n", + " lst[j], lst[j+1] = lst[j+1], lst[j]\n", + " lst.pop(0)\n", + " print(lst)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "0Muke1-wkpb4", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 54 + }, + "outputId": "e91e40b1-3fc8-406c-94f4-9aac8451c508" + }, + "source": [ + "states=['Mississippi', 'Maryland', 'Delaware', 'Connecticut', 'Virginia', 'Utah', 'Kansas',\n", + " 'Wyoming', 'Indiana', 'Louisiana', 'Missouri', 'Illinois', 'Minnesota', 'Vermont', \n", + " 'New Mexico', 'North Dakota', 'Wisconsin', 'Tennessee', 'New York', 'Oklahoma', \n", + " 'Colorado', 'Pennsylvania', 'West Virginia', 'Alabama', 'Montana', 'Texas', \n", + " 'Washington', 'Michigan', 'New Hampshire', 'Arkansas', 'Hawaii', 'Iowa', \n", + " 'Idaho', 'Kentucky', 'Ohio', 'Nebraska', 'Alaska', 'Oregon', 'South Dakota', \n", + " 'New Jersey', 'Florida', 'Georgia', 'Rhode Island', 'Arizona', 'Maine', \n", + " 'South Carolina', 'California', 'Nevada', 'Massachusetts', 'North Carolina']\n", + "arg_sort_alphabetically(states)" + ], + "execution_count": 95, + "outputs": [ + { + "output_type": "stream", + "text": [ + "['Alaska', 'Arizona', 'Arkansas', 'California', 'Colorado', 'Connecticut', 'Delaware', 'Florida', 'Georgia', 'Hawaii', 'Idaho', 'Illinois', 'Indiana', 'Iowa', 'Kansas', 'Kentucky', 'Louisiana', 'Maine', 'Maryland', 'Massachusetts', 'Michigan', 'Minnesota', 'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New Hampshire', 'New Jersey', 'New Mexico', 'New York', 'North Carolina', 'North Dakota', 'Ohio', 'Oklahoma', 'Oregon', 'Pennsylvania', 'Rhode Island', 'South Carolina', 'South Dakota', 'Tennessee', 'Texas', 'Utah', 'Vermont', 'Virginia', 'Washington', 'West Virginia', 'Wisconsin', 'Wyoming']\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "BDUIH7gl1Bsv", + "colab_type": "text" + }, + "source": [ + "4. Implement a function `outer_product` that takes two one-dimensional lists of numbers and returns the two-dimensional outer product matrix defined as:\n", + "\n", + "\\begin{equation*}\n", + "\\begin{pmatrix} x_1\\\\x_2\\\\ \\vdots \\\\x_m \\end{pmatrix} \\begin{pmatrix} y_1&y_2& \\dots &y_n\\end{pmatrix} =\n", + "\\begin{pmatrix}\n", + "x_1y_1 & x_1y_2 & \\dots & x_1y_n\\\\\n", + "x_2y_1 & x_2y_2 & \\dots & x_2y_n\\\\\n", + "\\vdots & \\vdots & \\ddots & \\vdots \\\\\n", + "x_my_1 & x_my_2 & \\dots & x_my_n\n", + "\\end{pmatrix}\n", + "\\end{equation*}\n", + "\n", + "In other words the elements of matrix C which is the outer product of A and B are $c_{ij} = a_i b_j$." + ] + }, + { + "cell_type": "code", + "metadata": { + "colab_type": "code", + "id": "fFzpkxmBtc8o", + "colab": {} + }, + "source": [ + "def outer_product(a,b):\n", + " result=[]\n", + " mat_c=[]\n", + " while len(a)>0: \n", + " d=0 \n", + " a1=a[:1:] \n", + " c=True\n", + " while d0:\n", + " for X in range(len(result[0])):\n", + " for Y in range(len(b)):\n", + " sum=sum+result[Y][X]\n", + " mat_c.append(sum)\n", + " sum=0 \n", + " for s in range(len(b)):\n", + " result.pop(0) \n", + " mat_c=[mat_c[i:i+len(b[0])] for i in range(0, len(mat_c), len(b[0]))] \n", + " return (mat_c)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "4VCO_zhXs_qe", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 185 + }, + "outputId": "f1f86c1f-68d2-43c9-8581-7e3aa03d7fc6" + }, + "source": [ + "a = [[1],\n", + " [2],\n", + " [3],\n", + " [4],\n", + " [5],\n", + " [6],\n", + " [7],\n", + " [8],\n", + " [9],\n", + " [10]]\n", + "b = [[11, 12, 13, 14, 15, 16, 17, 18, 19, 20]]\n", + "outer_product(a,b)" + ], + "execution_count": 337, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "[[11, 12, 13, 14, 15, 16, 17, 18, 19, 20],\n", + " [22, 24, 26, 28, 30, 32, 34, 36, 38, 40],\n", + " [33, 36, 39, 42, 45, 48, 51, 54, 57, 60],\n", + " [44, 48, 52, 56, 60, 64, 68, 72, 76, 80],\n", + " [55, 60, 65, 70, 75, 80, 85, 90, 95, 100],\n", + " [66, 72, 78, 84, 90, 96, 102, 108, 114, 120],\n", + " [77, 84, 91, 98, 105, 112, 119, 126, 133, 140],\n", + " [88, 96, 104, 112, 120, 128, 136, 144, 152, 160],\n", + " [99, 108, 117, 126, 135, 144, 153, 162, 171, 180],\n", + " [110, 120, 130, 140, 150, 160, 170, 180, 190, 200]]" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 337 + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "fSu9hmVL1Bsw", + "colab_type": "text" + }, + "source": [ + "5. Implement a function `cumulative_sum(lst)` that takes a list of numbers and returns a list of same size where the element `i` is the sum of the elements `0` to `i` of the input list. For example given `[1,2,3]`, you should return [1,3,6]." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "ngtjdGwB5ydu", + "colab_type": "code", + "colab": {} + }, + "source": [ + "def cumulative_sum(lst):\n", + " a=[0]\n", + " for i,j in zip(lst,a):\n", + " a.append(i+j)\n", + " a.pop(0)\n", + " print(a)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "mxkbNMvvEpEe", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "4757a9b6-dfda-47c4-a6a4-2a04e7bfe184" + }, + "source": [ + "l=[1,2,3,4,5,6,7,8,9,10]\n", + "cumulative_sum(l)" + ], + "execution_count": 23, + "outputs": [ + { + "output_type": "stream", + "text": [ + "[1, 3, 6, 10, 15, 21, 28, 36, 45, 55]\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "rl5Zk4WL1Bsw", + "colab_type": "text" + }, + "source": [ + "6. Imagine you have a normal distributed random variable `x`. For example `x` can be grades on this exam. Using the normal distribution generator and histogram functions from lecture (provided below) and `cumulative_sum` from previous question to compute what is the value of $x_{90}$ in $\\sigma$ such that 90% of the values $x$ are below $x_{90}$. In other words:" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "iPZG6nd_1Bsx", + "colab_type": "text" + }, + "source": [ + "$$\n", + "\\int_{-\\infty}^{x_{90}} N(x;\\mu=0,\\sigma=1) dx = 0.9\n", + "$$" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "F5gn_fn01Bsx", + "colab_type": "code", + "colab": {} + }, + "source": [ + "import math,random\n", + "\n", + "def arange(x_min,x_max,steps=10):\n", + " step_size=(x_max-x_min)/steps\n", + " x=x_min\n", + " out = list()\n", + " for i in range(steps):\n", + " out.append(x)\n", + " x+=step_size\n", + " return out\n", + "\n", + "def generate_normal(N,m=0,s=1):\n", + " out = list() \n", + " \n", + " while len(out)=bin_edges[i] and d0.9):\n", + " x_90=n\n", + " break\n", + "print(\"The bin value for which probability<0.9 is:\",x_90)" + ], + "execution_count": 330, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Normal Random Variable values: [1.937239355264046, -0.6824019573806508, -0.47625757069867264, 0.6850407876956655, -1.242400680230673, -0.8626099712508153, -1.6690453568671226, 0.8551514964566628, 1.4027627885848992, 0.28356422935732556, -0.49186771235926197, 0.4930090362665878, -0.482493807888141, -0.8463283665029786, -0.29093824357513665, 0.04539258364459376, -1.275809774071245, 0.1416599440092548, 0.43905429322454204, 0.2766292192895696, 0.23933279466074578, 0.5027310700264475, -1.0844961172432648, -0.0676624571281174, 1.076745830122026, 0.5010540248019261, 0.2065852300688065, -0.9087196700739768, 0.2573866480207738, -0.6467449610107586, -0.054551822745265835, 1.3332672887842798, -0.2719022020522222, 1.205831842172228, -0.9967417705964903, -0.06600353101282459, -0.3242696080014772, -0.9451901250120849, -1.0291632488396976, -0.3262322359145363, 0.4179362004973354, -0.31250128511655423, 0.5075196317138242, 0.17412349783038278, 0.9972534820054721, -0.6206673681277802, -0.8448679495113263, 1.1154918144044301, -0.06712197964801883, 0.46059707327194777, -2.6245902542362307, -1.3824611818087775, 0.6936912115607984, 1.629524361878702, 0.7957875584146406, -0.29213895422108727, 0.04587347927642238, 0.03639486502370361, 0.13134857534872044, -0.5263442174755647, 0.4243978776637584, -0.8539948987719066, -0.578787711143283, -0.7400679161448372, -1.3411241688282665, 0.4965933179635469, -1.4905329086969459, 1.4301089093063024, 0.6297928020547207, 0.3927016858823912, 0.4931074662177809, 0.7337759583771423, 0.7692266313459176, 1.2272966615649057, -0.35963198772582133, 1.4376011340836905, 0.37615817624328685, -1.8800655792499086, 0.04610594860402706, -0.1657311541154868, 1.3974077442425556, -1.0513707253179452, -1.335983916877031, -0.8180862657909167, -0.5806787956579001, -0.16032119862288208, -2.2401591526011373, 1.0752720292218105, 0.7581595612330786, 0.20435646838360444, 1.2971547899329066, -0.4925395373138055, -0.8316804990004271, -0.965283273773136, 1.579737444581687, -0.642990104118705, 0.5356357506386903, 0.25027436980534384, -0.9866486888984684, 0.3353167844868036, -0.7801176889279757, -0.6157658745535514, 0.10967685406346427, -2.4888756335212623, -1.0186236205034953, -1.6267357909956262, -1.5651318427360879, -0.00989580251585389, 0.17444666370905604, -0.6596554657020112, 0.33284975412478707, 0.6122921799347221, 0.5608840221348622, 1.0893978335744183, -0.030513038065086536, 0.212344887052887, -0.7840017544720445, -0.3288536843702003, -0.8366555200366559, -0.4475719468250951, -1.0145429691581362, 0.8016520852586022, 0.05148817462525655, -1.6732781032526105, 1.923098430568007, -0.08799059567337865, -0.4165711154661497, -1.1544699114924442, 1.0887947330089227, -0.7502729760281787, 0.8496121227638731, -1.6643178920444106, -0.7652147060882335, -0.270555251507446, -0.3083952935715464, 0.8279198862338628, -0.034688086503432726, 0.9490525501255136, 1.0028164837788334, -0.2958780522520525, -0.7658611179053216, -0.40498737458395967, 1.5960166957619168, 0.3016289172444075, -1.665751736235888, 0.2486750653559683, 0.6074526379286674, -1.1013942792870202, 0.7545402198726672, -0.8936251253183904, -0.049204660056036624, -0.3756408447490281, 1.2581318451264871, 0.5612543373947153, -0.6651734896072864, -2.211521358307344, -1.1238380136623287, 0.32205956238387423, 1.0419240809400154, 0.11242192507425133, -0.08833299021635352, -0.33553847735845926, -2.300940511867313, -0.0012842126219390828, -0.7377055933879778, -1.1041387826282139, 0.5458579679317379, 0.008550837136502822, 0.777765562791796, 0.5542387073953489, 0.14152808440055437, -1.0671505707818192, 0.43364692371128555, -1.5366388303193546, 0.15318180498285994, -0.7142865679456608, 0.7828357202508562, 1.341848848479567, 1.9857625945462014, 1.181988332368897, 0.10031038187524902, -1.8754050116845908, -0.6832154353746315, 0.4609353682240814, 0.02120639766390461, -0.3027797213553306, -0.14243262552703878, -0.07730724980351017, -0.7238602134702316, 0.16699359421958881, -0.9120150589376699, 0.9620464378001412, -0.24964851169335908, 0.5164943356594932, 1.4848437822330882, -1.4584322437307415, -0.243656411131097, -0.18167797840013342, -0.8612160837461187, -0.6148764582735234, -0.8216745772812291, -1.520849780285939, -2.1198778740807946, 0.7236973660625681, -1.8408318604379477, 1.2792716564016737, -0.17108775696695233, -1.906785163103469, -1.4956485560495185, 0.8375610079086978, 0.8408308696619523, -1.2347580052306493, -1.8254017038212946, -0.5099212765177478, -0.49749891347114383, -0.4779477563589837, -0.2375509729239116, -0.16362669931112372, 1.167093512960088, -2.642104615430675, 3.0095056871060843, -1.1396673284426924, 0.5186374673057884, 0.2637136013748153, 1.5377497611098163, -0.8029460430121756, -0.5685393324192485, -0.6870563589445977, 0.5128614761210466, -0.5606795223224279, -0.9410114813438967, -0.5027245723494932, 1.0566030571675133, 0.07571948528762323, -0.33337098626726414, -1.1363515849736798, 2.250328367019506, -1.5941088572670348, 0.4160895624246252, -0.49834118898693275, 0.6649118416393531, 1.1309876561692505, 0.05587809678962461, -0.8161489271272097, -0.27643772716616977, -0.6291158497009477, -0.6905639090326767, 0.9309269379390874, -0.44482733529717056, 0.8577989322245743, -1.4957164297409273, -0.5240910972516406, -0.6789500443245232, -2.2181626651566426, -0.04322626070131341, 0.08526790306614689, 1.558626381308483, -0.18878468333939688, -0.9056268384961687, -0.5818125164981319, 1.0776805227780215, 1.633893725568384, -0.2550242015750316, -0.08360248226456539, -1.3987941876480037, 1.823780016918899, -1.017934132568273, -0.36587000815597054, -0.04715072931563057, -0.87109483854869, 0.10592689765900612, -1.0642525009299713, 0.6732717913031959, -0.27458342715262063, -1.2228825904306935, 2.5659281845713933, -0.36715093559426076, -0.33397478960442845, 0.760503838933696, 1.9301897073562002, -0.8766740143570287, 0.14736104815806697, 0.7141339672700125, 0.5292557921910757, -0.9456445249606458, 1.4763980580568377, 1.4493799848560673, 0.07741486075392968, 0.39560507085873964, 1.1329453195410293, 0.7990890006895187, -0.8147135071334725, 0.012959550388499256, 0.10741949648213456, -0.12746684041131512, 1.8810839249664286, -0.6816443279998129, 2.7601287191792068, 1.2022796143101695, 0.19692956620847568, -0.6372199859562868, -0.36176495809923853, -0.3331211702015642, -1.0835381199562002, 1.2228296574476603, 0.7399662046684767, 0.3365475082924284, -0.16062668170967656, 0.48452436344454447, -2.019087233289301, -1.4133040011214353, -1.0861361754262995, 0.9852493591300515, -1.0833551822363312, -0.7488018747120593, -0.008556240996617146, 0.6313716037608008, -0.8601084747895238, 0.5759271071517701, 1.2349958841877362, -0.37692313792954024, -0.8443270759323375, 0.17850786066530203, 0.5840151040068843, 0.28525342421790356, -0.26707164314003357, -1.4807142161964006, 0.05089897567260719, -1.753956604071336, 1.1676092367036073, -0.9222273258026356, 0.5670525273497979, 2.252999537872347, 1.5845742725950387, -0.7954847712360795, -0.23658333487357122, 0.12414688263732278, 0.03435415894710274, -0.532722960373592, -0.24032976201757686, -0.4961170215456739, 0.23879918852268553, 0.5425124579823303, 0.3556277235895517, 1.8713048056270318, 0.6034230630703391, 0.2209100639124863, 0.7435248897162684, -0.32609609134562856, -0.7956035121003977, -0.6491074617373478, 0.5982762687735522, -0.49635635763628155, 1.4429121192583931, 0.32520073088280294, -0.6489149450561981, 0.6886627886978766, 1.5417045847004978, 0.6717633610077512, 0.4512271682610313, -0.33545481824011836, 1.1326575599901285, 0.014445340295134501, -0.7601829909363935, 0.5977162231398657, -0.07858849378860899, -0.5701893638162485, -0.17996134132415087, 0.0864818006728119, -0.713977019584934, -0.883133837078601, 0.3130251426946709, 0.4955449664088766, -0.6074666501670097, 0.926564260429609, -0.655309318259406, 0.7420816036651388, -2.0169834107168585, 1.281889880126385, -0.5529829789461598, 0.4315306116548818, -0.5933839556257231, -0.5845282206984113, 0.35866673242890157, 0.42795555038769467, -1.3959375809473922, -0.3762729408463746, 1.0490287958395168, -0.6196001370167391, 0.9443695334664064, 0.9893891665473754, -0.11288284716945828, 0.8456160204436435, 0.32109060516768584, 0.6708171090567447, -0.4967291927158924, 0.8943639388244401, 1.9404945846144155, -2.849901977272838, 0.0821613024815426, -1.3327026343153323, 0.3220487178600881, 0.4894543924534968, 0.690536424318174, 1.022736411266919, 1.213881486559603, -0.2604150810155826, 1.0539180980778973, 0.4689020164231326, 0.6686421445805893, -0.5654055708329799, -0.7256183733786892, -0.166987561081644, 0.0756406826583669, -0.8427138288896225, 1.5492011812955726, -2.324576848907827, 0.6348238560170241, 1.1340704928003806, 2.434600310518777, -1.474083801146404, -0.5102463113906668, -0.2901102044317833, -1.3628694502181382, 1.097376113974476, 0.20284808076880237, 0.24948771495442337, 0.1365576810742393, 1.0060619893761735, 0.6296723035790726, 0.5870144114954442, -0.23574880966381065, 1.046765203947673, 1.5849171426137818, 0.6799779843323268, -0.24728920921777925, 0.9915622783812382, 0.5285228279304132, 0.09915899617670083, 1.222633044248941, -0.38334840971931905, 1.0350098821135183, -0.0695665956326403, -0.1203835196848065, 0.13059907085449743, 0.8548313576158357, 1.4083243240986199, 0.3439533803259309, 1.6819230031437777, 0.0019233096322346253, -0.28995350117020924, 0.20937467734798149, -1.4929914692289707, 0.3570941487818506, -1.6997827732450586, 0.46899987378881575, -0.3691559929121889, -0.06898496549645047, -1.0551769317766235, -2.229840887961856, -1.111927678238315, 1.7843075746435777, -0.2813477708865828, -1.1524481454626465, -0.3665167403050923, -0.771337549120606, -0.6923764375902597, 0.266132914782408, 0.3116154333418503, -0.1848147027294954, -0.5097370638284557, 0.962740607565355, -0.28934158684310546, 0.27902656904285567, 0.06837931885332181, 0.14902730464379615, -1.0178864837127277, 1.1032752557999208, -0.8453156620454406, -1.9469849866337965, -0.7187999393682997, 1.961560865923706, -0.607358208592803, 0.24279078263385695, -1.6279367777973721, -0.5819558255176177, -0.14084986528611698, 0.8252694088638036, 1.1439052732679957, 1.1548053742985347, 1.123651209034464, 0.12514824449984951, 1.4703622191198917, -1.5471815582942152, -0.32402275058306934, 0.06092504381990248, -0.5053356077509359, -0.20302352185770087, 0.7202520879760654, 0.43321764248982503, 1.1957040337086966, 0.4594967229740527, 0.20376298369125487, -0.5441789554625772, -0.6905428128246942, 1.3031766379743768, -1.8127606938329275, 0.6505453174436256, -0.9408581827387095, 0.7948010845236485, -0.17681821018912697, 0.44996488883271124, -1.8122146905856533, -1.2061810951698069, -0.20514122289453768, 1.4122634350026788, -0.22569140039098218, 1.8974237786442962, -0.09859936962770667, 1.4253551877011659, 1.0892396789877616, -1.0600634860605678, 0.19665952243181123, 0.012953818686804794, 0.4966897322513402, -0.8486048194060234, -0.11821200115791211, -0.634885576365534, 1.7132780738488478, -1.541892312734353, 1.8610869553268992, 0.16476230927862529, 0.14850500295624855, 0.07005442656699368, 0.004812912205819804, -1.7311731906460583, -1.5815401885751021, 0.043990273937940985, 0.35274593968047663, -0.00948627070874418, 1.0987565314840717, -0.7816385443036247, -0.6873589241413725, -0.7718154848143306, 1.1819711361564182, -0.005793506013572307, -0.9637904735921695, -1.0670875828738924, -1.512390331655791, -0.6399369196759839, -1.1298381094632257, 0.11625831558537063, -0.069168076039915, 2.5493751743813373, -0.09866448359100607, -2.1831808573601967, -0.5800525382461216, 0.6954054260663094, -1.3558569169818924, 0.4112519253424682, 0.5137092204677495, -1.465284462516956, 0.8698074517528201, -1.7734281140875805, 0.5749137169103294, -0.1721679557929526, 2.1518611207826384, -0.20286383475483782, -0.710113005440373, 0.7957969721846251, -0.6233348303967001, -0.8472777233471743, -0.6543186176909495, -2.044995425465551, -1.7188934055248746, 1.27239876421317, -0.2402011972296036, -3.303368737546948, 0.014625975542818337, 1.3010504807409837, -1.613621854331618, 1.8003200963546513, -1.2464150807197338, -0.8099292200902319, -0.39450443685638475, 1.642896849811537, 1.1432015800897088, -1.357048019541357, 2.2847336479956932, -1.4947706746274814, -1.5367865626212205, -0.6434056896644469, 0.37664342341920365, 0.6892066580951385, -0.15278970665124322, 1.0472205620656378, 0.6242428009691323, -0.8272205616857494, 0.4195161013624313, -0.851412193492585, -0.30994627137140185, 1.490610431204537, 0.21737469524451628, -1.4210893091361705, 0.36447908842513155, -1.418303753915617, 0.4678196410314794, -0.5732853229197924, -0.9804593201332275, -1.2524682956332454, 1.612591354852786, 0.16341710539934146, 0.35911456013856147, -0.20752205798702852, 0.0030968876748260097, 0.18195051911142576, 1.7017909634448973, 1.1868111828625818, -0.3798114631654328, -0.5306918018636033, -0.39814426472439796, -1.9596069704446155, 1.0378744565718871, -0.8947072532049809, 1.2480259620970258, 0.3131084711521546, -0.5008184436374856, -2.057024821250913, -0.21831785228307696, 0.7011275473976056, 0.6260938808651932, 0.47044642819970145, -1.2276099145475425, -0.900268840698958, -0.6022031253019552, -1.4161631094928604, -0.09987418129716258, 1.7291494282700808, 0.06116301918182711, -0.380678159537988, -0.23437321338321981, 2.7779442206639025, -0.6697860585164314, -2.5958856382198396, 0.03284599922271773, -2.329129804182924, 1.0050975073829391, -1.5047152802948693, 1.4723443489053871, 1.0421469835487867, 2.5531391849136518, 0.18363312733912643, -1.1938609543279712, -0.6968889119700323, 0.4059389360572828, 0.28979033052072334, -0.2443337677576615, 0.3939209585312895, 1.2973539389012523, -0.06313946749980567, -2.6650738432011982, 0.6747022856214395, 0.33529749270893205, 0.8214244441878227, -1.0214348563532123, -0.3869391888995139, 1.9548256260042234, -0.49439786099638044, 1.7877512850723587, -0.9069649385562497, 0.2379280698797288, -0.3789507766917391, -0.022188766972981878, 0.06082310881012113, -1.0198672428580133, -0.4434413723282213, -0.5578058053257546, 0.4737189454629678, -1.1681909288157633, 2.373826651910778, -0.9745268889626666, -0.5916247684499817, -0.8324531034358738, 0.36897253147771664, -0.19676246025910515, -0.6934867133957698, -0.7544388229248993, 0.23054701149575094, -1.437879503073343, -0.8493700348680715, 0.01898221165360974, 1.4120113686111158, -1.206152965742869, 1.1509752309309498, 1.356364973303642, 0.7434693871375113, -1.2654614525273766, -0.1394883589960534, 0.49574076916744736, -0.7984495073004848, 0.059095861086529484, 0.6219125324052464, 0.5643500410215383, -0.19333040900947232, -0.2557282488307314, 1.2171972981966073, 1.5034916899508666, -0.1884833077785107, 0.391348900887828, -0.6512794756120821, 1.5115812397721937, -0.20986276502928777, -0.8637339396166304, 0.45313555057692506, 0.3018662092172038, -1.2383407476422597, -0.7417013226997466, -0.4186419953906811, -1.6400397644828324, 1.2961650802120308, 1.7995829866117616, -1.3129678300391783, -0.2528775681277338, 1.4288038927634956, 0.144586657350552, -2.682676891091207, 0.21190683728271342, 0.04822012991253044, -0.8893846111471708, 1.0140161935883838, -0.08774610267137217, -0.30020796495908725, -1.0128424213146543, -0.4249324296735466, 1.5300041700250737, -0.3241383096220732, -1.3488300859716014, 0.5625952907531251, -1.1817828351069668, -0.7396522505633962, 0.4115209215241994, -0.25111943081658233, -0.057933274786462596, -0.6570727214352031, 1.411424497379928, 0.06463060183664734, -0.7605980104420145, -0.35892186144028754, 0.30559020161415207, -0.8682432037448577, -0.805796734315042, 1.568001588652526, -0.19471138800077223, -0.15827183697669966, 1.3215594519707725, -1.6347609505916953, -0.9614430683802466, -0.5715148965551595, -0.14115097040743024, 0.0732258171550356, -0.2843956883350905, -0.6195854176192702, -0.7910327058661945, 1.36787372794236, -0.2749474373527592, 0.2474626422475066, 0.3790675975232725, 0.8642823415030729, -0.3902433225107171, -1.3035077788528784, -0.5392896378156786, 0.3927858748159538, -0.4314637944575427, 1.6250766357977935, 1.447879659503061, 0.014530070320160281, 1.878724270357587, 0.3156074008902295, 0.5070352327895256, 0.08469656295553235, -0.28085661038098036, -0.04894009126201536, 0.7779585637648354, 0.4131030346968302, 0.2765463529118752, -1.5528620172947152, -0.5680913323056125, -0.495861259783447, -0.7287838935518356, -2.0425629393138487, -0.6019093752548116, -1.3514465199018268, -1.3156523172642238, -0.6022078364389459, 0.1286066353585871, 1.2020125309909762, -0.8524564120256783, 0.2592044298762819, 1.7007446301604612, 0.6461568460728784, 1.32117797937576, -0.7855306216027395, -0.8971862679649212, 1.3048571209508215, 1.0158125429280283, -0.17662219403722818, 0.5941414890875467, 0.8448334446571371, -1.121530335920016, -0.4748811851221723, -2.0342384402761753, 0.029002864642569032, -0.8528040446397149, 0.21709184019460007, -2.158872311510061, -0.22744726099236515, 1.5564095705031373, -0.5374048579454567, 1.9491889093987087, -1.7424794273070756, 0.8181022846716431, 0.6001862818751058, 1.6429220081847455, 0.15938362614882126, -2.616741004968572, -0.9161036839953616, 0.7857465801368197, 1.0250279481188238, -0.6145682154518167, 0.22485289370184655, 0.6364179539643515, 0.7910203436122537, 0.25634752504108477, 0.529344937203524, -0.258828382259144, 0.8462327737953594, 0.07644541757851571, 1.1535787276541316, -0.5543477492069919, -0.7118657608390623, -0.4343515306325157, -0.891841639258286, 0.7113676390402148, -1.578675244874355, -0.4938597314756931, 0.09786031206147472, 0.9342053720803603, 0.11715876192763813, -1.3985812496955103, 0.018480045350510864, 1.5110163057661592, -0.46427946929139463, -0.13059590380920416, -0.08404979343613833, 0.22428396138131781, 0.8589801803855971, -0.28968753911448697, -1.2554322025001177, -0.49468348792933275, 1.4518822736521284, 0.6145938376632789, 0.5062969085367469, 0.09644656940054058, 0.9223265699695735, -1.094197415193431, -0.3083258587422531, 2.0511827380506555, -0.6964728217608189, -0.796345196555668, 0.9854693446601706, 0.19436327034128048, -0.8219589644966834, -0.3011440968448104, -0.37888072042063625, 0.8222216369995144, -0.6082113642684176, 0.5703341920703765, -1.5525834567474532, 0.7404450596254398, 1.0779522726831754, 1.3007442257680362, -1.0652003306313866, 0.38083398403050406, 0.39443029157384973, 1.2177564772339082, 0.019307356606268845, 1.1448763925128542, -1.0916997060571847, -1.687992105067639, 0.6566244091759613, -2.473521112341264, -0.8095996500956462, 1.3562959609891962, 0.5514812676912172, -0.3603383007789598, -1.5078365926369068, -0.5525574563933306, -0.0033744456683496055, 0.02737854394333463, -1.1524025613022777, 0.1476787594465208, 0.14253564109495465, 0.20812251352459846, -1.3189882792084915, 0.6012405981716213, 2.15042691985865, 0.6843362742714854, 0.8175220649520717, 0.06051963655022354, -1.3609427300636117, 0.8690983415504471, -0.3051578888204724, -1.6704367587876257, 1.2483168653332843, 0.859338451997632, -1.165735558573903, 0.591916927088144, -0.54012776071124, 2.212105738906854, 1.3963274025052177, 0.22879509195421552, -0.8406334698446453, -0.4861509064969179, 0.658408849224589, 1.7849387363290834, 0.22926148635838645, -2.507450005293586, 0.038407095016240574, -0.517377133081695, -0.4497522944486805, 0.7391591154557752, 0.08594277404027527, -1.2265256928624841, 0.7116264109394194, -0.09377309350504202, -1.019391397923623, 0.2288173360146858, 0.4883967917235529, 0.05468678333439246, -1.2643289058082428, -0.06786296585245066, -0.9484866269322987, -0.5421236241145908, -0.31805996233352224, 0.12457757922983917, -1.4478217585846613, -0.011478420354818391, 0.8237410170388112, -0.5094866340463333, -0.19255089241835263, -0.6327110615595202, 1.0321731289125404, 1.2351040204834576, -0.1710900483168675, -0.9053761977308178, 1.4211863077359712, -0.5243208734309217, 0.09588467467888419, 1.1000166216108247, 0.47562797543440427, 1.0935717217112262, -0.5938336434632482, 1.5063886123290038, 0.18866549813939196, 0.3849197249741134, -0.6627038275840299, 0.10952328741905779, -2.4023158084771032, 1.2041222762109849, -1.3002212175162358, -0.9710074115520971, 0.8334458367881322, -1.0787601697641729, 0.7174137752801869, -1.2999217717302372, -0.12717357804566226, -0.1600819145227629, -0.4824861657763222, 0.6854363927131255, 0.5353791559847205, -0.9556161060950383, 0.8570986252405437, -0.41964284445499805, 0.638155792123267, -1.1829252468860447, 1.2845689299417762, 0.9587826843483718, -0.7267557673081914, 0.80222587288264, 0.7715541958240792, 0.3088334986992622, -0.3133239260835986, 2.736358437964339, 0.23928580991614826, 2.8070034681588454, -0.7912014484301508, -0.9614503995363465, 0.8366400183403303, 0.28446416245260797, 3.0112175024286696, 0.2285719894963542, 0.29228529252053975, -0.8492745162645683, 0.6951396920300456, 0.5479855711248489, -1.0572173858398155, -0.10309526400841514, -0.45942830759270764, -0.22279260545201174, -1.548262849573823, -1.0734661946105828, -1.5197210235291703, -1.4430539338400643, 0.4077401266174696, 0.423842612365634, 0.24016298104978098, 1.1643894853594385, -0.25370180123017316, 2.376197338511617, 0.805331140228248, -0.11927347244457287, 0.30507188882977143, -0.4352475350423278, 0.508758892540263, 0.2213232944383268, -0.41550449789249766, -0.265564368051927, -1.4039679496127533, -1.0861509164981966, 1.4387242904890418, -0.5142664718475256, 0.21736376215810302, 0.5587282792608561, -1.3272930214059375, -0.0200352572523118, 0.4579451930572282, 0.46813951394175146, -0.16680537951155802, -0.2575690208835389, 0.0793609385842617, -0.971185610107039, 0.5414437411603802, 0.277451384989099, -0.46057812297083733, -1.0783866037176617, 0.7484748203730308, -0.012707874265085248, 0.02375113420705027, -0.32158146223412354, -2.0963563529260516, 0.24599649356159597, 0.23704703131774285, 0.10614912978637046, -1.2473669508906404, -1.592602385401357, 0.9097397088487443, -0.41240587878351276, 0.13649873566524287, -0.07022116308558808, 0.7002512767818564, -0.8699102035121059, 0.2567245795960713, -0.9631867769506182, -0.3955949277434313, 0.47647385459551816, -0.19204274598823115, -0.2506284087076978, -0.5599178033501521, 0.23534728764521243, -0.017736892674782102, -0.8334448583537108, 0.511948620333289, -0.6963131564504642, -0.15089484100694947, -0.4061945910485631, 0.11337722632687328, 0.14391350441918482, 0.42265411738413927, -0.38010476454271774, 0.8286160033024377, 0.827915693433361, 0.3433389323047718, 0.3957531008933457, -1.7518942928760193, -1.4826508403656888, -1.1959807066394341, 0.22903706840732557, 0.1378320946068483, -2.1767434936266428, 0.5728942494748591, -0.4562112181706335, -0.12075091213697596, 0.6644713553229539, -0.899339539564341, -0.8593280806976685, -0.2460198535451028, 0.10812568533134619, -0.889248652230268, -0.42160570139247144, -0.4967823865144242, 1.6562739739359615, -0.13116776563354907, -1.0807429686563657, -0.5131864764971243, 0.18404534906072584, 1.7553540898563635, -1.8928859875290285, 0.605823591538471, 1.1429913185459273, 0.43678808688305093, 0.5212245857835038, -0.3446807330688876, -0.9551872868720882, 1.725843901301954, -2.2084344057464835, 0.2661442879286861, -0.2683591552022912, -0.5436418611784165, -0.5213924681638907, 0.669216590469029, 0.9410663373020045, 1.6419189376327519, -3.300073914170686, -0.04417268450983086, -0.9904340580207903, 0.6857733340156402, 0.4050399725014853, -1.7729937680887322, 2.852494660783768, 0.8885362031221484, -0.5308900369785695, -1.264244106890511, 0.5922757129135212, -0.02508013729683636, 0.12081034155765374, -0.4111630278225702, -0.8405249851683421, -2.410854245795842, -0.4666169896370518, 0.09478250852756348, 0.5921541356161621, 0.09603106851134627, -0.5950742010010829, -0.47560668630118563, -0.43249502614875984, 0.743100052433029, 0.47379144743303503, 0.08759150476885096, -0.6895318593373284, 0.6202032486749418, -1.342125217566259, -0.9454366078130814, 0.022809661338335514, 0.806030052621622, -0.5276162848091628, -0.5946971880205033, 0.731817094095907, -1.048946455225513, 0.34690236057936424, 2.266428713285048, -0.9947174242548871, 0.3754243433302542, 0.2583173922325777, -0.9100014030221698, -0.4317824658445161, 1.7875758515345688, 0.40701421508156793, 0.6886555359422888, -0.13953925141356358, -1.5732039326034466, 0.08138250539863488, -0.11035827310953969, 1.2496718101432236, 0.24698584969662382, -0.7005582239700964, -1.18456786920618, -0.7157417578841322, -1.3933139282134053, 0.7761726483059088, 1.136193973027069, -0.956116597701607, -1.8572673338831176, 0.19838372323005715, -1.2786432079427745, -0.9737235878906828, -1.8955085757165, 0.19488998716127984, -0.8341491276478268, 0.20326863261004893, -0.03186345797345113, 0.5859842152531765, 0.4337906932482156, -0.3637509466477152, -1.7268756801928427, 0.44988410627923714, -1.6197398445274482, -0.8085508419037509, -1.2048836161897463, -0.8116747792143435, 0.4313418595388607, -2.0972205574665512, 0.38993031521563637, 1.0576345494211632, -0.14646109722423253, -0.9524187146147719, -1.4587035197386216, -1.5199360748306654, -1.195667584002906, -0.17301643886735474, 0.022383201703023534, 0.5089317991142959, -0.02168622378237063, 0.0660897452457839, 0.44401537527522333, -0.5423860086183417, 0.9086158259622961, 0.2647297996885233, -0.7539237897212421, -0.621997219291868, -1.2936893746831277, -0.8659738999329579, 1.0213044382968501, 0.23203679118969558, -0.44931393482390874, 0.027438016510243576, 1.651044336755335, 0.21516050600222827, 1.2531316332871707, 0.14050857906437716, 0.5060700287342532, -0.6950775156517933, 1.3800637808012433, -1.0594040160105251, 1.3253245491766612, 1.0797354283498852, 0.5556556659707074, -0.3872083455001535, -0.8461357852277249, 1.414013540560116, -0.6907086082739459, 0.10332057431378334, -0.18503666542955732, -1.7747124188238215, -1.764941238762003, -0.3284985153406283, 1.058503844147566, -1.070286285912136, -0.8150350031012562, 1.6465771397071987, -1.3058401930573977, -0.9358007374612062, -0.18349808099292741, 1.4225618130485687, 0.13900509205376058, 2.4835650316801887, 0.43446408696839184, 1.920514638651253, 1.0940590377681148, 0.21580106928207135, 0.4282900062701187, 0.26981342364739863, -0.26602221557655525, -0.3372933476560955, -1.2963843002658946, -1.0104448423678276, -1.3099439201266303, -0.525236605580585, -0.9192680246158925, -1.8260318072089976, 0.6260029020586857, -0.7618242654038762, -1.8064064626108178, 0.14610778818101208, -0.47617708071431075, -0.22367963355508638, -0.49437065917689044, -0.6893110962532, 0.9748167637818617, -0.48821655700726746, -1.9943831516388608, 1.5905478796397616, 1.032793989450564, 0.45025231629028234, -0.777281820650151, -0.14159790320113155, 0.9886728078689085, -0.25426341611158393, -0.32697302721252386, 0.3905407399627116, -1.004414592427816, 0.7999735157272945, 1.4201983922514554, -0.3016311510111675, 1.0095248987898193, -0.10549627053339182, -1.276264636423743, -0.06706076197504018, 0.158109851576948, 0.6437922853842382, -0.8133655883411719, -0.053235749081249055, -0.5023850226606706, 0.19501902403692667, -0.4409297930159947, -0.09074162657405901, 0.34725561232939606, 0.12512463019873304, 0.5371766157123968, -1.6580540418217873, 2.363303044917435, 1.1853415015471278, 1.0301814274805112, 0.2720579404231569, 1.3319679355226621, -0.2072769225892614, -0.1083930944593883, -1.1571174365250865, 1.324930967183861, 0.47724190284067824, -0.393167315745467, -1.6395716532426288, -0.9278617568434032, -0.11033555726668516, 0.8350272206471613, 0.009125223636341304, 0.42975064679402536, 1.1300283039715473, -0.3970047147771556, -0.7112417795139774, -0.39138521285782873, -0.23159590918798423, 0.6910208674511303, 0.40248076030055097, -0.13506086917823204, -1.4859647745035156, 1.5253681926737828, -0.7496355204158268, -1.9836124869361926, -1.5168584938319911, 1.0021053280649468, 0.4901421987450635, -0.3638717679924755, 0.4331845360597491, 1.6704245764545926, 2.407924932315162, -0.9108282293295857, 0.9224216337953896, -0.6698982883460626, 1.325441485507032, 0.913119705181274, 0.9976689969313814, 0.15813458171861577, -1.3261091609259406, -1.2364406547284612, 1.9198214741431139, 1.155214804446197, -2.390235444396209, 1.5621544077010319, -0.8702886223185838, -1.265387265217942, 0.7205547381584263, -1.3469662426496096, -0.8143987535752794, 0.057526917221439974, -0.020398627132900252, 0.9690256642025069, 1.3904154504557862, 0.036825043033394955, 0.8118641629690303, 2.409262807833973, -0.5223464797296091, 0.555294785539082, -1.7111947395329954, -2.01015435744555, -0.40633721211324264, -0.3739160866357594, -0.25158996634103364, -1.032678795172467, -0.16749369801972103, 1.6361020229479344, -0.4504468451074822, -0.5423412640275104, -0.6617388570969687, 0.5297691955631403, 0.4038239320303742, -0.2902038301648792, -0.8951302942978904, 0.36280687309036785, -1.9249494641570837, -0.009260915433313515, 0.5853409945142172, 0.5822988142937016, 0.10616979792796326, -0.6376354929481728, -0.5851678904244375, 0.6048781178354175, 1.4840315875600751, -0.7775852269316468, -0.07584374308640972, 0.8501997164564123, -0.07049077299017169, -0.32681598143102014, -0.5785199483787896, -0.3701110266095337, -1.2444567697113753, 0.5200665794183061, 0.7031509286236278, -0.20939094325674312, -0.31437870560675063, -1.444553275111102, -1.1755466989020582, 0.7386626906707469, 0.584619628113106, -0.700552395808478, -2.0103375425488634, -1.0345837210313, 0.4894884767770283, -1.0122041606204926, 0.4085773490277669, 2.003348820662117, 0.44808568353507594, -0.374821864841688, 0.3480786445950788, -1.053896442595623, -0.112536522970473, 0.15720352917917568, -0.6387183723298702, -1.8117549090530336, 0.8155531398269925, -0.7803982222878372, 0.8175237072388521, 0.13421924440985997, -0.35933857568807387, 1.7857223848698778, -1.681353361437723, 0.17685062117758757, 0.9772373244071484, -0.38399934092498655, -0.0049210148691857655, -1.8377096551495085, -0.2930345039872944, 0.15059560158581928, -1.2468609169046738, 1.0262848132387827, -1.5157537347260623, 0.7769668441895609, 1.8124945678111988, -1.2320711717944817, 0.20060983912205796, -1.3300031511155292, -0.27545712343126266, -0.0008021638936166869, -0.11234751389521326, -0.6905277230555856, -1.6551769717709766, -0.3220524890424244, 0.21544773766942324, -0.5561072477856182, -0.5875800565391781, 1.0715544072155316, -2.3044145152641478, 0.3241887439606876, 0.18654496987801017, -1.3902715281932096, 1.506399890804483, 0.6872445777069854, -1.4828357696418242, -0.9767940585322948, 0.50668982454628, 0.5818877496237556, 0.30758735258388314, -0.5794557357220872, 0.045035547533136946, 0.7821692080952392, -0.9104724226292172, 0.7933726165669097, 1.9592941149816483, -0.4752786273643709, 1.397162440073647, 0.41846058469682446, -0.8491657091975413, -0.3309981616322957, -1.0831125159007793, -0.23639315412745787, 0.7197693547515656, 0.1181840548589275, 0.9918740802801365, -0.2923945433554259, 0.19981184232683513, -1.0308799269719942, -0.420768400446513, -2.4367135296536895, 0.2847951265865965, 0.5028529186886226, 0.43051231031031983, -0.7586036822739041, -1.536251804969919, 1.2235567500174687, -0.16936175449962204, -1.4834147567599618, 0.9129128267882881, -2.0429295990789975, 0.3557543407599555, -0.8986563235202426, -0.20801191109411235, 0.391782148468402, -0.002386460253760185, 0.08321753866498002, 0.16479901105938724, 0.7777243846483645, 1.5607523513516908, 0.45404664207949713, 0.2933264937634423, 0.6137131802296776, -0.8970955816001495, 0.7121864826236459, 0.024138732173616503, -0.12299486582044526, -0.5653174091176825, -0.7315980848262107, 1.5328669024299846, 0.5519676352437278, 0.1594639487643225, 0.9676859818288698, 1.1979498328231726, 0.5721973519615278, -1.0405384581709571, 1.1401824637777263, -0.0112893338347489, 1.5003189757263318, -1.0983012060155786, 0.8433081415463732, 0.82940693635308, 1.2251143236892392, 1.8341216249646588, -1.076231626358773, -0.22880557379593433, 1.3343242769603771, -0.59294883006982, 0.325060570666214, -0.2776345769721417, -0.11475741207254951, -0.048659266321236586, -0.3270889096016744, 0.5028173871857226, 0.606227973409777, 0.23708120167348323, -2.0778794265257288, 1.1937003236529287, -0.16304749877236846, 0.5361330929967467, 0.3180816357323959, -0.9964893329323523, 0.05909009746459046, 0.36174333503674605, 0.19717489802929133, 0.5983682173846593, 1.3237284451809699, 0.7936972249746707, -1.5412729352273558, -0.2825652315361141, -1.321699342522634, -0.09448675678878721, 0.8728957527547954, 0.4417958120992204, 0.01659526138045692, -3.4257385654029284, -0.4185863702274711, 1.2600765675180106, -0.8915242979288766, 0.260774291375703, -0.37741341873444, -0.017853610584278538, 1.468741229447522, -0.36162054440383185, -0.8083774170366088, -0.7690598581511526, 1.0477211266845592, 1.1192056438246603, -1.041449079883307, 0.7404994454042618, -0.01259617643098029, 1.2823591995226797, -1.8008865504898224, -0.9913896615256822, -0.69247215539447, -1.1405672222105354, -0.7550038074650294, 0.8182590657580738, -0.6316263063565438, 0.8119588370606461, -0.4827131279213732, -1.4417838301414616, 1.0903697713888763, -1.395574201696591, 0.6480657303252725, 0.5651286643428737, 0.1702086787921528, -2.122847719469978, -1.6137744023022984, -0.7562175890934887, -1.8221667457834518, -0.910453855802232, 0.6001057786379865, -2.5916723918276627, -1.1983196052660687, -1.4546287734494483, -0.8653417686185332, 1.9464110755884423, -0.7361838495761069, -0.31598370789333413, 0.12449012665554203, -0.024872285890308914, 0.015368641656218894, 0.4489192624868599, 0.34818536551952545, -0.28105979664618824, -0.18967536280821196, -0.6179731760130885, 0.2800234454921579, 0.04947084444770033, 0.6914214046642003, -0.4937953718163993, 0.3136663086639436, -1.0133923744075781, 0.6907947705916432, -0.32888589480521974, -0.345610357417378, 0.18158519936863463, -0.07283648222892812, 1.976073990191775, -0.7350205555987005, 0.6856496687481755, -0.7530419211449257, -0.9662619072540952, -0.19134290714729071, 0.5366498074462828, 0.421725774086217, 0.17772614647731852, 0.7441014493688157, 1.3133375837570564, 0.07490297130456547, 0.38160207832885124, -0.7681231450928031, 1.2681128976370903, 0.07597659395383156, 0.8031557862757683, -0.16450814561958543, -0.05065451073369489, -0.8837677212586654, -0.1670955833539461, 0.621829468524437, 0.12535100695477822, -0.01905909099991144, -1.3431134162051392, -1.2395772291948215, -0.6947620697852508, -3.2142841628635797, 0.14117491980488442, 0.4668377416636536, -0.149450830239135, 0.08218676407640924, 0.4937897534036766, 0.010853688019187683, 1.2954396932382708, -0.4919182796840185, 0.654173375820041, 0.3601748020378151, -0.24210629957976518, -1.9009373535710945, -0.9338736082204657, -0.15769964092990527, -0.48644180862060077, -1.007744810677404, -0.4516863725332905, 1.267319907978827, 1.6767001096677243, 0.5587064373021756, 1.701986361128744, 0.8771590081676055, 0.8707169203721005, -0.7761756764095138, -0.7226915920754441, 0.8411489763344634, 0.7706384573912756, 0.2879514251544776, 2.002098415787821, -0.45497973432535727, -0.6380019827655784, -0.7040088484787195, -0.04135763455377976, 0.007824717598927297, -0.28310243123603873, -0.6534376365000286, 0.6667250995001396, 0.7795819882724743, 0.0950003360528415, 1.5218083359106793, -0.041533692285919466, -0.7542195020270112, -0.08148529389602081, 1.0339825055829104, -0.10711883377947547, 1.5214548225590543, -0.3079020531201985, 1.35954714565183, 1.4935508247980507, 0.7333672405185481, 1.6651450377586636, -0.10096417603282606, -0.8609099384144294, -0.9262315602553508, 0.1631733871829836, -0.4406784971234465, 0.11773283589861651, -0.3857168402805947, 1.4425192076111808, -1.1825493505438887, 1.2963019181742192, -0.6046192726233685, -0.08508070055862048, 0.1793669892853176, 0.08296105159062876, -0.4822562129124486, 0.19189365158598315, -1.28655425320513, -0.4103080147239767, -0.5304234784112427, 0.00067351928697412, -1.6188513440070766, -1.4748413666672904, -0.2845913432293097, 0.6638433775648125, 0.7343694209171224, 1.1980373129929238, -0.16316097139016997, 0.07634194213680882, -0.19074003663535335, 0.046307376038501324, -0.06919596183233649, -0.25117138380042325, -0.71044031058153, 0.03638862251845348, -0.7595961488472311, -0.4776036101041023, 0.5883661139187532, -0.5199507855194878, -0.9060096503076654, -2.17041595889805, 1.636703199190461, -1.3371025331058153, 0.13565988047014355, -0.41549935391597337, 0.5264045137505429, 0.713650302688253, 0.36921186809329626, 1.9049582223030241, -1.0312148139395063, 0.4201358384168803, 0.4661717444936062, 0.5351014162466737, 0.2074322030105024, -1.9233216553742938, 1.1547975902601488, 0.2341144489277707, 0.9858224267220335, 0.355962435339673, 0.18224157681343361, -0.4083700108086053, -0.6495561004574018, -0.939637068177189, 0.6381669603164473, 0.6600816015331269, 1.2809738554155663, 0.2983758135324496, 1.1951456661503699, -0.20697424213073523, 0.15194760554502326, -1.9113564200938133, 0.3102698316206771, 0.526881465842434, -0.20947535393321, -0.2199529483858207, 1.6476948884156806, 0.18695258169465861, 0.12673376145743273, 1.1679323953948706, -0.022417065504762516, -0.6213948293769924, -0.016886281967623134, -0.06683585187084214, 1.0106887703194314, -0.6214411798632432, -1.370883848459498, 1.2978104065524798, 0.6743701179670024, 0.33693433033530396, -0.17988010280189462, -1.3141783879373048, 0.6515218350663133, -0.27712477890963366, -0.6023348824172184, -0.853234215286122, -0.05476483215051416, -0.8806031182157233, -0.3793639451795286, 0.9517235631016442, 0.2487692251154686, -1.3588955879650357, -0.017352305236082204, -1.3499242544942434, -0.18123668244483082, -1.336143602551712, 0.0764096502648293, -1.3668989890759327, -1.0404752793403702, -0.14851475553118282, 1.3344744723571638, 0.8183486208608252, 1.2444265365619336, -0.1072480321408003, -0.34451840819083956, 1.3374213074899004, -0.28860718808004704, -1.260213136777972, 1.4135854765300147, 0.40587330501907154, 0.8916552727760945, 1.20128824743074, -1.6417121227014568, -0.9626427027949968, 0.6023685521328189, 1.1563969829621292, 0.7302193540416902, -0.6020582886050844, -0.45658359294787754, 0.4355978031226878, 1.2803171149796966, 0.01969367407194391, -0.021222623761800844, 0.013569006700848646, 1.0059891614390952, -0.7392616479564947, 0.561477650158702, -1.1929031909711714, -0.37450991595918603, 0.4491393648132338, 1.1053585116340239, -0.779923660719935, 0.3346380284911115, -0.07245151724862563, -1.143875904691191, 0.6588825764521887, -1.3717076345511836, -1.114069033381858, -0.2456676794132727, -0.1488665154770419, 0.32792306451861436, -0.016152633594661906, -0.47101875926378334, -1.320532835319455, -0.62678811500669, 0.692689898447428, 1.0858024833263646, 0.29584094803102345, 0.6131262458936769, -0.2427417696994504, -0.9271313880973672, -0.07732069027009965, -0.480056112379883, -0.46566360714870436, 0.19170371066581635, -0.3412234597859217, 0.3900226168365878, -0.29063498350594547, 1.3445848603591795, 0.39320035748217946, -0.29014462148968895, 0.08111745741339503, -1.0976165558884998, 0.1335658548698142, -0.03522416261712405, -0.3116208339071548, 0.2467444362231859, -0.06838501414018867, 1.2597506428165077, -1.1425486076702247, -0.8704049762557272, 0.2556431341759297, -0.46169577727658145, -0.2609443906151481, -0.3003377615936181, 0.6541115357348057, 1.5946944665384744, 0.43785786425568224, 0.9412912807308241, -1.7933568077234647, 0.6797990792074177, 1.2891996847367815, 0.8345809564941716, 0.3380366372632233, -0.7140262543124122, -0.5651073995021998, 1.4049016036325022, 0.08527738056534856, -0.245328714759917, 1.4530437900722775, 0.43883033971383517, -1.5464020873816198, 1.0196217785067323, 0.1344182137354106, 0.38465554066540875, 0.37807217819750777, 0.30819641191704966, -1.0844729810943212, 0.020142683813649233, 2.052629035254077, 1.780085817377182, 0.2546290128249261, 0.640811640240892, -0.7613808090242143, 0.17334061458936043, 0.7765064498719026, -1.4976223023742576, -0.11586141319524206, 1.165343038857277, -2.5978836925550333, -0.005785884718218519, -0.05454422320150536, 0.4279072521585998, 1.4706182602268443, -0.11337231314047087, -0.7441421189722464, 0.9489245217320865, 0.3962008822882195, -0.04526996267139766, 2.0442858089741787, -0.17657694734186472, 0.5387409106246001, 0.23300592660730501, 0.08949188733330715, -2.526077672499062, 1.7023367227461603, -0.16585876882836337, 0.11098647865669616, 0.3076723868339413, -1.1857559444239634, 0.4156051906747362, -0.64279979531026, 1.266364287007833, 1.1126633113560753, -0.4842163246930578, 0.02998852816663345, 1.0487114477386905, 0.833453004645259, -1.352814946404467, -2.0840990306726797, -0.01271660757265607, -1.9755452956040516, 0.5047145662700891, -0.8418508662638696, 0.3590442732297386, 1.3643839719259485, 0.5141161759297971, 0.7680083045101816, -0.03703438578342947, 0.22430468463484887, -0.30048868204345286, -0.5498261871490656, 0.29704315900963923, 0.7245188213199946, 1.177881860769116, -0.5415495027956677, -0.912065768921201, -1.680821237349307, 0.47912927682629464, -0.8076480316885747, -2.2037435914773194, 2.073369998704493, 1.8177435217214235, 1.5475982593199502, -1.4728277596964063, -0.3966591234358638, -1.7598883067119753, -0.39793581624630736, 0.8655600250221296, -0.4046350739202504, -0.9172727944925706, 0.4794336582757305, 0.06949139545585427, -0.3804951070295418, 0.31973456938401196, -0.19993024535041726, 0.7282528493892801, 2.13253096870035, 0.0014696486224342292, 0.4190749119112064, -0.42459792248341766, 0.017902848290696063, -0.07855118987993571, -0.2510911381696517, 0.6454405419897944, -0.0858294654139674, -1.0022375574827425, 0.5355759484429558, 0.05225354428157366, 0.4832240277870133, 0.4358785041607317, 0.6579188549369147, 1.0562912036892413, 0.2850205701135192, -1.171473353910957, 1.9696216866813097, -0.5008136562676145, -1.269040428201557, -0.4758780623361609, -0.37500270516269174, -1.3144547863738305, -0.3943613809143385, 2.178413639271344, 0.27072827883982953, -0.4703928806349102, -2.648553459846813, -0.6666907383959985, 0.8971274164786557, 0.7454356197676378, 1.3424551960000537, 0.4133578922779352, -1.4655789607787566, 0.3306186768003234, -2.101055538776727, -0.07935105384752578, -0.23953477838270554, 0.281256985498465, 0.8299142187182348, 0.8493748366854188, 0.7163047935167827, 0.5006916538376194, -1.8260908705720762, 0.7190613521220514, -0.13625657750845263, -0.24761489764912079, -0.7066920727540232, -0.39840512515677956, 0.1179571491171324, 0.15865914600638473, -1.3355776960664683, 0.3971992961127212, -1.122171463916136, -1.057032174497336, 0.1907483408107141, -0.42882402911530926, -0.3006869544379172, 0.5298443115671791, 1.526170038134922, 0.4052354172990852, 0.4921754429041682, -0.8365862343682418, 0.9233710668993967, -0.2445415702054892, 1.367881114589311, -1.4174501527629513, -0.4544127683617837, -2.16000466782349, 2.4156357945342433, 1.3287756814741514, 0.9892960977209373, -0.2138889569173005, 0.8542700742997592, 0.25528969508682103, 1.5469454251781087, -0.8760652191397269, 0.9010630772474901, 0.2244459566589262, -0.3638672395978828, -0.21017828278130765, 0.8151096858369823, -1.0011498108056773, 0.9057309904249005, 0.08088280503159492, 1.2304400390207644, 0.11972393406270221, 0.46351551415570047, -1.414586878786598, 1.4817702654763645, -2.0365474027325927, 0.20339848230461066, -0.22411662263508517, 0.36425383446152215, 1.487550379569573, -1.1451960542786883, 0.3730956294519208, 2.362160079750007, -1.729990935328975, 0.9215745960035878, 0.6524249734101194, -0.21386240002994758, 0.01768725117593882, -2.00615495646917, -0.20146475700477487, -0.5125704380549285, -0.780536563895172, -0.16198566498992803, 1.2071963045805405, 0.6392879369392108, 0.5790675465007821, 1.9804703400254091, 0.5777910158379106, 2.0398574499201727, 1.8888241333415836, 0.1591521234652156, 0.6439096924509929, 0.6553870370572221, -1.9771322113411247, -0.13413138718230241, -0.25442900395765633, -0.6725045288889681, 1.5935191573647125, -0.9243664358771503, 1.76032800012928, -1.4583617113165896, -0.6089510244965387, -0.467806462754459, -1.6158069943762374, 0.34808811867769174, 0.8540611792988719, -0.24961327439356465, -0.29693254167878214, 1.5717711446567795, -0.40155032767731497, 0.9655292831840653, -0.5146002200270489, 1.276800739648944, -0.17458401108888483, -0.8694983732967739, -1.702238656723398, -1.3086031233936433, -1.2967001494444854, 0.6036677519023683, -0.32445438172536295, -1.5567290998634464, -0.6740864853618782, -0.08008974222613834, 0.7618306529569164, -2.033039328340248, 0.4626283320979843, 0.18753368808054058, -0.39453257753530424, 0.5544607352110621, 0.5472840089917133, -0.8167934803531689, 1.5424248024334979, 0.8495655839569534, -0.5251876425006752, 1.1989790958100963, 0.37273028481185033, 0.2244828752967447, -0.7944345966739638, -1.744410402853142, 0.6573374397986413, 0.3526294907925703, -0.7017126512585046, 0.4144722240652209, -0.6106531744857626, -0.695828365273056, -1.990467905509044, -0.2995460860269918, -1.4792144544066521, -1.38108758284398, 1.4216372750978097, -0.9342014816188793, 0.4300563630527567, -1.4623814489288902, -0.47733484643141066, 1.0295260157550046, -0.5736014403098081, 0.046568264321463194, 1.0364243990214743, 1.430960722145755, -1.4271299928208547, 0.034644929107319755, -0.6645500569331202, -1.2193457977325068, -0.2932269571415748, 0.4353412751382425, 0.7804599876881352, 0.1445644557041829, -0.44290050642743545, 0.3444837047356598, -1.390588888962477, -0.3273071723948085, -0.7134039372100639, 0.45468350429341137, 0.08589785909208497, -0.019577707802945772, -0.40101008554763284, -0.18895126409501484, 0.7427631430052987, 0.05685533897643696, 0.4955520354173881, 0.03567883507190632, 0.40379067589045, 0.3921647376575532, -0.2651338398461632, 0.6838268900909502, 2.1523396383755555, -1.02012170068406, 0.3750101901701666, -1.3893482964842625, -0.04538328378782186, 1.0694091557933252, 0.07794105299157626, -1.6436897194828104, -0.38094756964604615, 0.907291042116833, -0.17391390013303565, 1.2878668131269546, -0.1243873267781355, 0.38613459058513744, 1.4291957845723975, -0.4495781328778394, -0.7424692308854507, -0.6385687257370295, -0.13739567081556425, 0.9012468560842944, 0.854944107498872, 0.734209585976451, 1.2015230355576507, -0.3870149586371892, -0.9049368393377983, -2.698877062323193, 0.18392110035647352, -1.2805614010268709, 0.3755777563363783, 0.13064801295907294, -0.4826813270639346, 0.1367025427390299, 0.24685929343978397, 0.8184475258195952, -0.15575671616514308, -0.14654471823345439, -1.7464277334248905, 0.4203288496719843, -0.7530255905187878, 2.2479639040423303, -0.36781840796104315, 1.0906437315013882, -0.5995997166440602, -3.260249988980485, -1.894827048876961, 1.1518304093896723, 0.26781744374246014, -1.3350279641898168, -0.6889252995516327, 0.469922734143875, -0.4391820092042775, -1.4343697306721908, 1.534958386553234, -0.6477819408870011, 0.13195620890384804, -0.09788941953618419, 0.24260465003651333, -0.9404896053333279, 1.275290660824376, -1.1124200429906477, 1.708346444311062, -0.9443535419709542, 0.13200799666548851, 0.9822280574955689, -1.469002736981201, -0.22576069510849253, -1.0842431918494124, -0.8120135832284822, -1.818185351414457, 1.0225104365005186, -0.7878497996887696, -1.019504643867568, 0.14027696331123515, 1.5403556982673945, -0.44546921273878887, -1.8785128208431843, -0.5846542709743043, -0.2923046144324148, -1.0658154354426066, 0.4195416061060362, 0.5487366221795101, 0.43020868101061127, -0.5137890094172123, -0.8034208558223597, 1.0653554791397837, -1.0126203826570304, -0.1042809746848396, -1.8431472682015912, 0.31451777444420764, -0.10885889869362167, 0.18593185147020821, 0.4415326290806569, -0.05729456493946777, 1.3335774599397838, -0.07902704543439187, 0.05108345299337787, -1.1264747459713678, 0.10460449065555237, -2.30858335954584, -0.6743205903058759, -0.2960300188325344, -1.4110381813518493, 0.8768403860514282, 0.5438142169729494, -1.2257015618865974, 0.5343620198436908, 2.273136279592474, 1.436595258973763, -0.8909519159780789, 0.04085170514122102, 0.9962506111217352, -0.08078781491869008, 0.32853118866792, -0.7800159543338122, -0.19212952790934143, 2.03902955506803, -0.14153068462935545, -0.089376027160071, 0.10266435956044498, 0.17648546623523434, -0.5956743908517386, 0.7667691788086183, 1.1804085842436125, 0.64482225018156, -1.926539187240716, -1.185489753429983, -0.0339507042597613, -0.33448482338531293, 1.8086124139015465, 2.5129812074552302, -0.19491758388508673, -1.5302604754235343, -0.5168658516327248, 0.3683706945697468, -1.1051950231941658, 1.455503674057166, -0.23030983323736767, 0.6761172121330711, -0.9329305876630398, 1.6150468571341765, -0.526699679171726, 0.022592660900670504, -0.26851300165082276, -1.288082117441794, 0.08717076030558164, 0.9913195645900437, 1.5701993642594578, -1.0867768057655736, 0.13540369431620328, -0.02470147482603262, 0.5707298140771334, -0.8958398251442321, 0.26576512884908593, 0.19186704233188087, -0.8660589732738107, 1.7703416436183372, 0.28390746971228803, -0.7590304016645898, -1.9298779825515742, 0.6025279951345919, 1.3903858415065509, -0.8689197728789655, -0.3831884630575323, -1.2780873651811127, -1.787234222986504, 0.3230520252267321, -1.5766150737659577, 2.221002877103001, 0.8111968722628652, 0.8960065104416687, -0.0012505971572392232, 0.49580651052684255, -0.3193113138443108, 0.9364493507372679, -0.15126022421625437, -0.6953559904311788, -1.6488886271754357, -0.38216934524288, 0.18463473471394207, 1.56431184796636, 2.458209326339001, 1.3886581561472775, 0.21563847986442924, 0.7841535734008951, 1.2538230753166397, -0.06763063269792086, -1.0237194933838918, 1.0649395779446982, -0.28201233390925073, -2.3342309188817647, 0.858616509299789, -0.012397483469129179, 1.641754179262322, 0.6423649993498717, 0.5878207676087385, 0.9910644471677477, -1.3881836156099308, 0.6805213467552873, -1.090986720653446, -0.7176487627930558, -1.05200124796558, -0.45220300639512345, -1.0007272381267458, 0.8075881067554275, 1.1843584270194543, 1.3820639380794475, -0.7890927093722434, 1.1969735020713503, 0.3418897565560762, -1.1305024263633245, 0.45434893722169256, -0.16599647963119143, 0.8839961431421622, 0.4764357698864634, 1.4965413271745815, 0.22267459540187853, -0.20704967946202144, 1.3677024962395243, -0.5926927884402732, -0.21199785300384633, -0.38058823370618894, 0.41673058059305446, 0.33889100503149583, 0.628167253375713, 0.40184819835245017, -1.7607362550640733, -1.5375767282462374, 0.8236114294921917, -1.2420934920024496, -0.12358830484661992, 0.09779306343317103, -0.293421997762116, 0.44999564170919587, -0.36184308868688775, 0.18561685980416415, -0.5436398573193403, 0.8613703642354154, -0.14654829862840124, 1.170204885680049, 0.6256472716197512, -8.9802401109883e-05, 0.06123485493793723, -0.6601142770437292, -0.9680224485905453, -0.44062995159127905, -1.3264169196034643, -0.11946581137490526, -0.021392946340489303, -0.19230566223073417, -1.0224385191713272, 0.8102432959739783, 0.334259928746687, -1.418339781827213, 0.902711548627962, -1.50021457929437, 0.6482299132048757, -0.9967879428763572, -0.4191025563599091, 2.1601659070431594, 1.1185837515622399, -0.036112096390226375, -0.37195670360684807, -0.0729789184379239, 1.057308101061875, -0.11411372145728862, 0.13309730660730448, -0.22285412497174698, 0.13710705651897195, 1.3283579293449446, 1.5402544575247321, 0.5511390660664927, 0.7673741636188283, -0.6320236806987722, -1.1707395295207408, -1.2002606519114352, -0.449447573209286, -0.17823241032531326, 0.16026128356983388, 0.7657338260023961, -0.7801646183407994, 1.0509197995364268, 0.13729764302628447, 0.7008787216746413, -1.42561611655179, 0.6150695467285782, -0.5878216666630931, -0.6753122677458623, 0.505307497881006, 0.9362198283811516, 0.6676476626865468, 0.4582778455520667, 1.0396889221454788, 1.2450920618721335, 0.38780335028703833, -0.07973745014914471, 0.6775118133118063, -0.3047461050093329, 1.0924637744896908, -0.16411618600616373, -0.6475234712132962, -0.7453945294490083, 0.16638876624047394, -0.7633652874317655, 0.9784744253578193, 0.2979133084448197, 1.750733161103803, 0.040344019050558, -0.30374625812119216, -1.0894927490866095, 0.5052949428750968, 0.6185908156676501, 0.5765885708617217, 0.8307331933787531, -0.02893647763592744, 0.2703140669075474, -0.990714437514624, -0.02046975281924511, 1.5105894512255273, 0.2683843846234542, 0.401942619281924, 0.47688155336597227, -0.17907770324915886, 1.6655238295029169, -0.39888820194701347, -0.3152655645465391, -0.5485402814784971, -0.4990635046010024, 0.1506020221090779, -0.7203168470438471, -0.8371840557651107, 0.003357342050650964, -0.7694114627036388, -0.9155162445413525, 1.1971157237145666, 1.181911642366138, -0.40046296827360917, 0.4534463635035457, 1.618766060338283, 1.133480252579712, 0.48632199886669264, -0.1516724799590544, 0.4502203493179693, -1.380334055710826, -0.35006870197168316, -1.720231164953577, -0.032208460908409176, -1.4718984232087642, -1.6015068681945877, -0.6372850429340373, 0.21256385104455908, -0.07322852509453326, 2.0294511263197013, 0.4193522862988143, 0.16344106412319284, -0.8557171899910642, -0.5337696836301987, -0.0717101734791434, -1.2479554327069333, -0.7312192600220285, -0.8168414271783112, -1.2033985565352052, -0.1563845341497337, 0.4624337888016957, -2.3204532018848885, -1.5318341343511854, -1.0091018117134594, 0.45927395729435666, -0.5069704584999623, -1.3170261589635992, -1.3395655065918615, 1.1014086827806806, 0.7107469274247071, 0.06261510315170996, -2.227207005894207, -0.32334005900259416, -1.8153404999822613, -1.2546880894716763, -1.833686797529525, -0.9826538364835309, -0.9646113692363866, 2.1017819530870825, -1.4146050956051024, 1.2215291943987192, -0.6466260498822907, -1.9405207627576775, 0.32829428581015485, 0.7110793564808351, 0.12988986512240022, 0.01807338449865223, 0.5575932297774802, 1.065080620891438, 0.1747458588153736, -1.5694694897854198, 1.5173106138032353, -0.6545976068984708, 0.5394244430533024, 0.7769310253469839, -2.4226767786835914, 1.4669198236562264, -0.44939061294471755, 0.05300534501560051, -0.3239185257974925, 1.188809845814974, 0.3768757593929303, -1.0680447055269795, -0.1481757354420583, 1.04735239163846, -0.03562546270600348, 0.2640998790516924, 0.5870834530947192, -0.3727064481366896, -0.45614130498211025, 1.0141645894162044, -0.6598534743209601, 1.293689427017263, -0.2982696149031618, -0.48508559291662595, 0.42321163481771695, 0.189648476380701, -0.14074829781287404, -1.4097339794762296, -1.433502133267628, -0.7701985030354892, -1.1649930650272533, -0.9180344165554641, 0.4633076444123117, 1.7304866990137169, 1.3360785257638428, -0.580591317476512, -0.012729047221632412, 1.3538119183003803, -2.620351558434815, 1.0970643894182066, -1.2922899624975948, -0.040491780702272, 0.9862461375059045, -0.5086484215207618, -0.45951706116994334, 1.4253791517224748, -1.4775147085937719, 0.3446824733754436, 2.0557805131935396, 0.3716238479100545, 1.6373441982567885, -0.030381116686401262, -1.220834770104461, -2.1061872359605704, -1.138701096686978, 0.2952233417930743, 0.6897243211692098, -1.132142440998118, -0.4290172661616632, 0.2910187658570915, -1.1614860883995015, 1.3403971291105605, 0.3647821355883394, 0.17082564979848308, -0.5833188624631932, -0.6269384149912912, -0.7906144622434451, 1.2828743391454824, 0.8253297079309949, 0.5120771966984662, 1.268164936007127, -0.28224989070393397, -0.13858681508336868, 0.5973055877380182, 0.2158688087719426, -1.771749533526669, 1.6754701335068733, 0.6270813491426569, -0.8270898219067276, 1.2005281638569267, -0.4635728776300376, -0.5543808106651537, 0.36241707950590313, -0.32278436303221086, 0.2716921463014844, -0.5515103891685109, -0.4950482717773179, 0.1367671076772786, -0.832915100057806, -0.46362104666966336, -0.3493553168659573, -0.11317963415205198, -0.5938671398832104, 0.695503063975659, 1.4032493927887841, -0.20466619075952075, -0.909771048174015, -0.45432107886474277, -0.9185993973100308, -1.189344197018059, -1.2788552857655486, 0.43329656351452306, -0.6667617187139919, 1.3689005277751412, 1.3643585199833417, 0.5764914538032101, -0.5031512349817207, 0.7125143973381719, -0.9652612257073364, 1.1215776223889062, -1.1016865515189653, 0.24665184810918636, -2.027390400522376, 1.1928843779873246, 1.574911936805028, -0.9733711164283793, 2.231012533081469, -0.3689150052167745, -0.04916479941451088, 0.41876623757420306, 0.3646973863353881, 1.9242908582326552, -0.41366673222056616, 0.596258237520379, -0.548761983876557, 0.5086221165642365, 0.5241355878881926, -0.7424352156049157, 0.5778512997643889, -1.4939855611502577, 0.8891695089575867, -0.3943253575202936, 1.5347722103452703, -0.22297430511493146, 0.31904093110492493, -0.48769749179703664, 0.43654674014852923, -0.028141227889222346, -0.4644525937539216, -1.1621844244595172, 0.8610399472227842, -0.7719356834832521, 0.29950857438535755, 0.33009924544664554, -0.4424433449786146, 1.5173738872532483, -0.7932261301940668, -1.7160723434625704, -1.193918471450661, -1.1928162568515739, 0.10167987254646067, 0.9300880919013055, 0.951175192475094, -0.13642952105119727, -0.33378462639390016, -0.6889217176593555, 0.013212587641410076, -1.2486950426671273, 1.2761676896559195, 0.30143866328491425, -2.0787458499395806, 1.1017688365477438, 0.02454350582038155, -0.4717722439811174, -0.18728819073007233, 0.16714144602304049, -1.7355229331741426, 0.5235241943776138, 0.7097359937452496, -0.4155605429215156, -1.1118580432424912, -0.9873509568332519, -0.5407553925458352, 1.6594224812526388, 0.04070793236381703, -0.914082251086725, 1.2710553949519685, -0.3121447275011919, -0.015459851166616401, -1.6359311389559683, -2.6496503653376937, -0.24285807676952656, 0.0765506365589997, -1.6952413124255163, 1.4005804671416802, 0.6370679372932068, 1.6709735957211531, 0.20519147352674133, 0.3004257311523713, 0.008399631824695494, 1.258991253198876, 0.9819797482007403, 0.8306929452857073, -0.0905071407367641, -1.1563718089422477, -0.5287809694639266, 1.879049173868863, -0.7818947091210553, -0.2835935975609362, 0.49453654983046297, 0.4825966461142378, -0.3711407040608605, -2.013505413107609, -0.5614692052983548, 0.9124736697982528, 1.0246083643463313, 1.2361943189084303, -1.0253836355536532, 0.4317528730109156, -0.3868193829748834, -0.5120988524874449, -0.7635008467650487, -0.4308367923847977, 0.6326262831374961, -0.5016250982719628, -0.4081241554977649, -0.3485211319699876, 1.523738128490244, 1.2949321845501112, 0.6938601799420769, -2.322018065551964, 0.6251456227042557, -1.5872034078863126, 0.9998277325491919, 0.061223373121414584, 1.3472525529861756, -1.5049073240914952, -0.07993415503650676, 0.10204014507663814, -0.09172068385056302, 0.23380502453650173, -0.9335918109766649, 1.9396048275254056, -0.5486327850013469, -0.0694177375312549, 0.32149415858679586, -0.359460824909164, -0.7196388740249133, -1.2071753561667593, -0.032421751648823036, 0.9321890219414243, 0.11025751423198431, -0.034792819630906004, -0.27800881521102905, 1.370544261775697, -0.8208468031432145, 0.7897900046899877, 0.8086038353253542, 0.5482053934052196, -1.3220143419573314, -0.04999149627183923, -0.3224250664424457, 0.47117690176451504, -0.5973873898394148, -0.3651353002432719, -0.023014263186538878, -0.07886994888353809, 0.7924107315605856, 1.4081366223149616, -1.297753211005544, -0.1879007494153403, 1.2788446828490476, 0.3424540689359063, 0.15266813061144216, 1.4127946543377161, -0.5020460167338052, -0.5159552148168518, 0.6440870437174144, -0.7493367156897406, 1.5142007642934834, -0.6059938534767142, 0.224183918403044, 0.9102173462490656, 0.013584437389998646, -0.6825727707761737, 1.0759001246884952, -0.7082704851975004, 0.08073975230066965, -0.7033742200748075, -3.014209195465496, 0.5920084058118668, 0.03676960957847003, 0.9500700799432914, -0.3000804228313383, 0.8301632178773365, 0.8519794024652366, 0.29414812585209354, 0.3265104410076297, -0.3287454768446993, 0.5789770103725471, -0.5976501153939581, 1.2179461008330037, -1.1637095577691476, 0.6894119174254786, 1.5800360338430575, -0.34854914737406106, -0.6630218315907788, -0.5791763073432526, 0.17828400767155358, 0.6044124996455517, 0.44725356085792894, -0.7301532755734074, -0.4044670039137006, -1.230110669854543, -0.7646394895103612, -1.5590942399456251, 0.8433270352479029, 0.7817967129124747, -1.1653359115537403, 0.22837063797382515, -0.1868198052731523, -1.5390434483490525, -0.46637408388561674, -0.023531857784901418, 0.36130168056309425, -0.6469464594192287, 1.3049844100749068, -0.46636238694761384, 1.668108180493175, -0.08324558596857365, 1.604543992415418, -0.1085985664481866, -0.13271624574963878, -0.2752239750630792, -1.6639833513866351, 0.29649772646294537, -2.007412017477447, -0.45524130812651487, -1.9431217407384598, -0.6833733902153748, -1.366925856286439, 0.3522854885735444, -0.6439168526609113, -0.5028801538413823, 1.2043809380894468, 1.387968843278933, 1.6587197120001955, 0.6213693681774837, -0.12784739659396316, -0.31865965473660524, -1.0250183344203336, 0.5219186978127203, 1.3238045666738198, 1.1918108092378636, 2.2112738336769966, 0.42883660844920735, 0.14718489727437956, -1.1091530876647906, -0.28509721748876543, -0.7495890263208277, 0.7130637563936776, 1.1998376394690666, -1.1626426033450585, -0.39401316790463303, -1.3209112241662964, -0.16737612876192143, -1.4442762645639897, 0.5053161286285295, 2.224759173155316, 1.9206084055791062, -0.5288199052909592, -1.1739061059522102, -0.16817852339699124, -0.2589784120387551, 0.07942853064747137, 0.013695377826354308, -0.6077103105634046, -0.7007888813097789, 0.6910107377586281, 0.5865386288465523, -0.08200216632749274, -0.046496110787728286, -0.6140010054473074, 0.6935709177680117, 1.0221987490468318, 0.03961159964191072, -0.17325608649097285, -0.8079670567245545, 0.24223158059286595, -0.941780507816354, -0.14550630533999956, -0.7068597886695239, -1.0998795619669666, 0.7294082326879905, 0.12590558797254214, 1.4645448104371774, -1.4114047945785797, -0.3973245574094616, 1.3355963302389873, -0.30975198603781207, 1.1113525460509124, -1.8225562450070971, -0.460671941075652, -1.6283081696072919, 1.2674285550097932, 0.288240751667912, -1.3440055655678573, 0.5738575409327077, 1.3836027047858164, -0.07295100998713758, 1.410973382914702, 0.9652439653333978, 0.2659598877392836, -0.5215179661114248, -1.424281909443237, 1.6477164507237356, 0.7154414226978145, 0.9555479163080466, -0.37159562539999275, -0.7800065038035275, 0.07505284754452957, 0.38292224727508267, -0.9756334997728081, 1.1795615116365632, -2.8024949745083085, 0.6748035709234069, 0.6979965255365104, 1.796607369732383, 2.3762296743456552, 1.4459879279421235, -0.8010190474247572, 0.22540005994223314, 1.3055871612390162, -1.1850272482400037, 1.1412318629283549, 1.069047509447051, 0.3521242932092195, 1.1894522668013119, -0.945614593381342, -0.04717547890237115, 0.5004315671576622, 0.12656947274713967, -1.2595963502817806, 1.652488766826481, 1.0739812906372392, -0.10234088985541179, 0.8326354062742152, -0.1443514736067047, 0.004657438128207455, 1.775598773152686, 0.028950779425413634, -1.8900973714104352, 1.3277092529585017, -1.2764853290275557, 0.5202806205600726, -0.8231105552835479, -0.035220920664373406, 0.0653584065561912, 0.6137412078497565, 0.057772358635576816, 0.03368239104820866, -0.6628854106424963, -0.3105570794290513, 0.9471176900285451, -0.6394105547732092, -0.38971228444843925, -1.6251204520273077, 0.7485009437990915, -0.5223152115014553, 1.6567179015817086, -0.27971058437634033, 1.46664735563401, -0.8106251823152554, 1.814987462678521, 0.441327287247578, 0.4853184436016448, -0.28261659618969825, -0.00066901552587308, -0.9155724683894866, 0.15328497274142652, -0.45048714920961513, 2.0049394074915883, -0.2189445513651937, 0.34268480727451817, 0.45645855208536684, -0.8103681442531857, -0.11269979198917959, -0.3312686002810437, -0.5954893815458738, 1.0802893748450082, 0.5922595637283135, -0.08912748938148991, 0.43467296557580115, -0.3024947717730618, -1.329630266524469, 1.1829701377607738, 0.003376761378848119, 0.16637894805971, 0.13631097468003156, 1.7536904532556514, 1.2962737012513958, -0.012211647171156125, -0.7661408236358248, 0.3413693779245968, -1.3596009694843454, 0.9224777757002032, 0.09009404208703634, -1.072655844247951, 0.35976657924384725, -0.6319450575541622, -0.7837194752028793, -1.0987170061321085, 1.340913458599097, 2.150770498338426, -0.00615111243832388, -1.0338263792859554, -0.9880118863899291, -0.910984939995625, -0.22073694730032198, -1.0535548460089215, -0.01516167588587077, -0.7454236454450385, -1.7607720914104932, -0.6266531896923704, 1.1130100616935958, -1.330914336567211, 0.3468795682695759, -0.23147230469242353, -0.7189115464485553, 0.8075611933424424, -0.25237694176100955, 0.6986636597319288, 0.36512108772220436, -2.2982000758014456, 1.2001169363506283, -2.0537440433436367, 0.2229027041334558, 1.6613425212959414, -0.7442154744354054, 3.4674881982163765, 0.21785192431096717, -0.9094798302411771, -0.19347295870004777, 0.4388273339796, 1.175700378393292, -0.4102156313245785, 1.7954326780498917, 0.25639186637713324, 0.5415428172054513, -0.12757203879131107, -2.0573503591648024, -0.29374505161652864, -0.26626121076272685, 1.2256100385058464, -1.7267535983828717, -1.030393802246147, 0.2159634298797914, 0.6816308920716969, 0.6371167932731873, 1.103611977531372, 0.3622772953240448, 0.7665137155301173, 0.6087756543833764, -0.05054403211567761, -0.9392294834868153, -1.0945618422028018, -0.7306832004108107, -2.381507850923432, 0.5873998232362523, -1.2312872136140505, 0.22072510833329606, -0.7311003071648201, 0.5363170187154748, -0.14451273443047366, -0.47501209030286734, 0.5106904757189079, -0.3132976525028728, -0.8879334038719751, 1.2473634752123302, 0.9862340881150995, -0.4982966556613449, 1.1601493932536542, 0.21985199949924367, -0.15557111168968388, -1.0724560164370363, 0.29155147144608035, 0.5342655183260442, 0.7385931178825275, 0.5508883311104252, -1.4847863523198397, 0.4485685113539343, 1.4879312041842276, 1.0189809561531256, -1.989977702535176, -0.40291469886109754, 1.0265527282741875, 0.8892170592160373, -0.01362108240785073, 0.8216780752129568, 1.3725558248894016, -2.517447315579695, -1.053462368678803, -0.9886124310003596, 1.4555603356505926, -0.6246454582712586, 0.2836501779461487, 2.791080536957069, -1.4272880910026302, -0.3527630594020277, 0.6598772575281686, 1.1350525836744376, 1.1890851246422642, 0.2972585910736538, -0.06998794173643405, -0.38658134707375597, 0.5167715773052953, 1.784135249759213, 0.005998053745959258, -0.1644899539280303, -0.40404308236825787, -1.2088558959668567, 1.8084424675502329, -0.6776687422125457, 0.4823435275814182, 0.7532681700581317, -0.5104038380345066, 0.4494877254073124, 1.3975745884411794, 0.5688398073303692, 1.0454204436249372, -1.0933903293174971, 0.16037771147402688, -1.027404746067246, -0.34673980548698297, -0.10099432453474141, 0.2250105366703611, -0.17852191323863018, -0.9028611288678596, -0.33772493010115406, -0.23655837618375206, 0.7685339841462834, -0.3130473347857647, -0.8702870210087629, 0.9408071559120343, -0.5081241500804178, -0.39355373096846774, 0.9159630813110795, -0.775832450959257, -1.461821747280607, 0.607939945573785, -0.2540546549548153, 0.8593449779238596, 2.0190132687062246, 0.03097237050931524, -0.2920469872350051, -0.5052687516021627, -0.06511392510077683, -1.008440418325676, -0.7860400499965219, 0.05531536337687181, -0.16522582118550905, 0.19253055611613867, 0.007468674292605332, 0.4951298781762937, -1.3291086811692132, 0.7079546455600445, -0.17451917656867694, 0.7340258354543192, -0.3909026264934177, -0.012729259355890655, 1.2676420093709118, 0.03347917972142679, 0.2110967163299444, -1.4309232614176222, -1.4005970633397964, 0.810721692812909, -1.6312520588147763, -0.14942039643598512, 0.046613569288180584, -0.7496424991056748, -0.43343328825575633, 0.048493008875983956, 1.6349894255893003, 0.7281289356120657, 0.7964148237959244, 0.36684992706164643, -0.9439043343683833, -0.20611962744421541, -1.462322100061203, -1.1265046723818521, 1.3447190925277432, -1.015702152948838, -0.795521630082401, 0.6747733102541114, -0.0174705123822259, 0.5366972692543058, 1.626044050403677, -1.9379023399139457, -0.3473055388588219, 0.2018532751319868, 1.0530230929008098, -0.24317608533118742, 0.7623549953589541, 0.42946332055334985, 0.23560279728984182, 1.5470187623782725, -1.3662905386800652, -0.270788681368689, -0.8311331985729329, -0.10044913296155189, -0.028397641059344673, 0.9717566839640446, -0.5102430118829605, 1.2350584117219503, -1.2783800394618472, 0.38179034447881144, 0.45083733883233795, -1.9492632580953835, 1.9126405056489078, -1.0386282335428778, -0.590317472333296, -0.4824222533241038, 0.9172467586320915, 1.3367445718883009, 2.2073606084730217, -0.2245996158900019, 0.2975880718274719, -1.1496492045132838, 0.5046622695881551, 0.012234108259802182, 0.7085182836483908, -1.4280913693540387, -0.019197017206011628, -0.8739157822267318, 1.9452308180325404, -0.5558517850245207, 1.1920901282195575, -0.3303949354425765, 0.07579717509770582, 0.6429965385991258, -1.502159561787125, 1.581106224422398, 1.4615023853566786, 0.5164046131048372, 1.735176903431862, 0.7540535358209213, -1.4017518071280646, -1.9235940779763185, -2.5254592748354945, 1.021590059312723, 0.12477972081680261, 0.7913457396154473, -0.08661073563709795, 1.2193402808054843, -0.07759875447586694, -0.8903214479976125, -0.1463027418113582, 1.0466395376036055, 0.6570530348506094, 1.5702451573094973, -0.4199128942538934, 0.1912798644198054, 0.23372958313660408, -1.604526628337865, 0.498611381431851, 0.4810158864759327, -0.4389949102949748, 0.3869172485474464, 0.141098029882808, -1.1933925196477253, -0.16450918122178013, 1.696636788475053, 0.5688938467035153, 1.053796058970314, -0.0641656703742238, 0.3084071948989927, -0.026189383604990984, 1.7420512308699068, 1.8561130707316273, 1.031691257646802, 0.2448803655966799, -0.8607606974774845, 0.46122888481312274, 0.03534040466770351, 1.0851278339084687, 2.1578039593604936, -0.8762341711703163, 0.33711008208528775, 0.47120468269711296, 0.7725571583917161, 0.8586709324162177, 1.7762560555247644, 0.03750787994953862, 0.8754847768015375, 0.09847778738899653, -0.9619806269477681, 0.11112920802870967, -0.6103892047746623, -0.5136781318393091, 1.3608780825556543, 0.579777127158078, -1.1825727330160214, 0.1551354090543079, 0.6523503828261356, 1.145238917382223, 0.1931716648453129, -0.6691949103619218, 0.6241863825381633, -0.5404189876472684, 1.6496512650171777, -0.23763847553315717, -0.193973211945372, -0.308963238417119, -0.6900629822026917, 0.8543182503729906, -2.646101946555202, -0.2805033443983786, 1.935748903777626, -1.6488298556362295, 0.2542127748056776, -1.6468596196545828, -0.09567022455247418, 0.5159761743160235, -0.034619004419831546, 1.3867325315169667, 0.05149874488288579, -1.1642220132666294, -0.1563825021208584, 0.15271853867283694, -0.8442236901262177, -0.26274309992267114, -0.5174535741948294, -0.7259462791936026, 0.6493810455270442, -0.32739656521466814, 1.6751300842818602, 0.9287448420149703, -2.446048056187173, 0.9575536541051956, 1.6337572873460309, 1.6571147805284216, -0.5694621800102387, -0.15442698345825595, 0.13312879341985667, -1.3695000999421012, -0.32938501915398066, 0.17291190312191546, -0.41447104236092464, 0.95872565497704, 0.6473757719111297, -1.2518808091420668, -1.6297053352502775, -0.061243883205674324, 1.7355393029623836, -0.09649290088181367, -0.7171939816994808, -1.8475398410595183, -1.661359052878262, -0.2674923016818494, 0.2994934859171432, 0.06069396776570838, 1.835874877419989, 1.2480164417001245, 0.039312741813793205, 0.2518306460142295, 0.4605936168607316, -0.5838962607032797, -1.1258596030408474, 0.6048710247734239, -1.585591493662171, -0.34858598442555716, -0.7017128909220676, 2.1586735163463384, -0.6674314683045917, 1.7596009988896357, 0.6303055959887982, 0.23553576655293096, -1.4563029776885565, 0.17188876251440446, 0.4222800290776964, 0.17749560320430322, 0.22634768357468318, -0.7301901741453872, 2.028521603266224, -1.2223195695083966, 0.3337812613488149, 0.6131478678851628, -0.08648720938842872, 0.9853495943122688, 0.9260668670516433, 0.57062384538284, -0.8357061750519024, -0.6241858711331567, 0.7421614388323579, 0.05198552837327569, 0.23528900136854441, -0.8326806620165588, 1.4304817691880403, -1.4336061404489315, -0.10521416887120331, -0.3141127158568294, 0.32061829432025113, -0.08854754151868692, -2.8682922627559084, -0.2270976742342588, -0.8044776369672165, -0.7047103853917204, 0.39485292874728906, 0.4769126951273994, -0.09639722282228674, 0.721973229186111, -0.4407018558901797, 0.19913359297905261, -0.7893187219996238, -0.32062419023341265, -0.6352745070413117, -1.3009701992246887, 0.7807705076519652, -0.14236347376339653, 0.4329826638126162, -3.107615367083253, 1.1890668880755426, 1.607914009453031, -1.4949646960918836, 1.4283464898295135, -1.099787466115773, 0.3291444400219485, 1.7477204863219864, -0.47792360487097774, 0.7922346206929302, 0.42796291497952904, 0.7496083850627056, -0.2252966072869775, 1.0932955927896721, -0.41440541022597155, -1.2214370873181262, 2.7527970691738686, 0.5112118124243189, 1.8946606705650197, 1.8032113982795939, 0.18657919968708822, 0.7391143014964727, 0.4016744217400053, -2.0626806542074707, 0.6822132660865505, -0.4188097899354652, -1.9029077826769274, 0.8787595301985837, 0.6200027644866097, -0.16171603457927666, -0.962288854969198, 0.33963287105350454, -0.08370846520469558, 1.4778218718260312, -0.4964551463778856, 0.9193237253776416, -1.545386290939213, 1.2922029851126717, -1.0479784150164326, 0.6918422585333303, -1.7565588432353128, 0.19783304240342228, -1.0593584294813263, 1.2127858886070946, -1.6536203134599599, 0.1913763385086801, -0.24326764580404983, -1.1063164293377423, -1.202785329685198, 0.6830583293897164, -1.2255570251235124, -0.08720156340795533, 0.6093870436941835, 1.1998574786146583, -2.3351394347184686, -0.527786999382424, -1.0486200696229584, 1.4367965195184027, -0.47621954581066084, 0.08050114568340536, -0.8410516557691102, 0.3941331036620412, 1.8200849317738932, -0.7463623801041999, -0.7963462562588662, -0.6980436528034515, -0.8266626872904093, -0.5644508162667765, 0.5303271200911835, -0.6188115158312089, -0.6651748703722261, -1.6615389391395528, 1.3084925630950104, 2.2765362199309718, -0.23587074501253433, -0.8190996280569351, 1.8257225917103532, 0.3407058152449217, -1.159301388159528, -1.206496603379581, -0.3309896943596681, 0.15678202937131464, -0.002588083355050064, 1.394633330036038, 0.258639455583002, -0.16894313206969805, 0.12651100726684172, 1.0841023456346899, -0.5741056099235208, 1.2965028943764791, 1.642338097567407, -1.0623573568925089, 0.43123270127613667, -0.34193555120459, 0.9179798159336823, -1.0895130550422747, 0.4074538855592313, 0.004066810584731318, 0.536123009398191, -0.32575268186233985, -1.153983384756027, 1.3034330825276264, 1.0527065250279997, 1.2439592425834638, 0.7398475280044109, -0.33364554415570585, -0.6631657924051552, -0.8665568001552699, -2.3359053440766964, 0.6905987189163981, 0.6688850186131426, -1.9001040240954294, 2.509488417728043, -0.9311005409323818, -0.4060861461316361, 1.8139022870732509, -0.8963755795852898, -1.6653657811145697, 0.9092950308426062, -0.5957581217188254, -0.2311116768312202, 0.5999504104625515, 0.4823991029530286, 0.4650529098979147, -1.587195520395066, 0.7543482014122954, -0.4026381344915395, -0.007813999240625735, 0.6541295417504063, 1.8957271725611873, -2.715765987374965, -0.9275236913299668, -2.0062101421618004, -0.2016588957311353, 0.10603999600527586, 0.14630472795497948, -1.337823446113259, -0.06201412086854608, 1.0253985942574335, -0.23996579193461046, 2.3720592332464903, 0.8698810482210165, -0.9265661223542154, -2.2080673439727834, -0.7345537595253965, 0.31874986909922076, -0.048394501466249, -0.4904221494661955, 0.011332681266509124, 0.7974244617792099, -0.25091143446645714, -1.5169275883718016, 0.4644850317278202, 1.2269203085875577, 0.5459365270523138, 0.5532799680066426, 0.05502040215691499, -0.4314415602848595, 0.9962989868666253, 0.01856453939377985, -0.6662319158962261, 1.1114315736083749, 0.33009310875369924, 1.5558831271446631, 1.27046812192653, -0.8681872141680363, -0.575824931174706, 0.8374800223013865, 1.4374876104450878, -0.565612436599194, -1.8143879491174135, -0.9147927299221446, 0.217735776716758, 0.19830029255771017, 2.4302883878965598, -2.910688991323959, 0.9522264178092674, -0.43053451686874833, -0.5009398244850211, -0.9912788009864366, 0.6478382707930873, -0.638676364592883, -0.9421995511237293, 0.7986918681986023, -0.7844893629384909, 0.05895490284865112, -0.609327783532705, -0.41050340586089573, 0.6881291080139254, -0.5531421111663061, 1.199719427020757, -0.5996775371082401, -0.12138269154900026, 0.004467785090796074, -0.259177176386381, -0.07205184737613955, 1.1271666579819029, -2.4019426244410815, 1.9371075868919703, 1.1171788900216097, -0.21460816548455428, 1.4413415969107304, 0.0939359039266607, -1.081464682429247, -2.2966068209006076, -0.6204230879515938, -0.21434944501513706, 0.3846287448357103, 2.202998413182072, 0.4497093700799499, -1.1713972071397556, -1.6859464876356174, 0.10082156495816898, 0.6152169608245027, -0.28816872233598206, 2.6440425651825943, 0.19049443174709266, -1.396224609799287, 1.4349425083110143, 0.22107837888353582, 1.8172529196378058, -1.9553662478269689, 1.1748656973413212, 0.5245984499658137, -1.5875101548957444, 0.15828370081999366, 0.5870207176326608, 0.24443556080793988, 1.7451462361211827, -0.017016706882883398, 1.0179903392734833, 1.5540956644024873, 0.42613948730716494, 1.6195078990350813, 1.4067685477093352, -0.08943497659531989, 0.49025313562126444, 1.8209355738958175, -1.5022010723563337, -1.1132593749588364, -0.16642440962576993, 0.1349309836493073, 1.2904280930244405, 1.6047892903099155, 0.05769084320122172, 0.762050177260414, 1.5722943762984436, -0.421277076618161, -1.3427783515268303, -0.6458446971669229, -0.3419507431480462, 0.3487401878621703, -1.087139366196636, 0.9483858804201815, -0.9505229145421504, 1.019472171240519, 0.420246733055027, -1.4619572784825026, -0.9318541592435026, 0.7848659825462255, 1.7776411814656434, -1.315668481199555, -0.8025955794815538, -0.5116808707493873, 0.2882575409602443, 0.5533025849006437, -0.06504941587883918, 0.4561961001460426, -2.001705824784454, -0.44146020042081463, 0.5181995242301708, 0.502809116448103, 1.5632945469807946, 1.2231435927949972, 1.1260744284680617, -0.06114182406131932, -0.8799732521296498, -0.3629447064944239, -0.4999467537712493, 1.1020011053094863, -0.8812443370318078, -0.1343856084973395, -0.552142668323249, -0.13588824011750616, 0.6920615864078323, -1.097487662953712, 2.0230436434152783, 0.250890801239489, -0.29789729349642546, 0.8117511040202409, 0.5830406383179131, 0.1499380361770206, 1.1043300923768864, 0.604228823615965, 1.7543238789890685, -0.1840085394151827, 0.4070914698791207, -0.3649081309633237, -1.149749598387052, 1.613600530932826, -1.0290073813744092, 1.1309383250285836, -0.20829917771474946, -0.45220418108249727, -0.2797272425482715, 0.12449415228095959, -0.26121255617887557, 0.20309235868240041, -0.22536006633503958, 1.28708828173321, 0.010318469736819469, -0.08866627855039447, 0.6811313156529507, -1.2069858496175674, 0.18487400388306122, -1.745194766817649, 0.0382915472207393, 1.3732386618018573, -0.998383170832668, 1.0301731550084314, -0.9912818000744384, 1.4897703670322096, 1.2708295273879733, 1.094856471353993, -0.8191211857466636, 0.014726919749704942, 1.057283160756984, -1.5130616625163082, 0.8898138285551969, -0.050945186888800766, -0.5147014407862216, -0.0353587291667657, -1.4215190061389311, -1.0435166164157672, 0.3906396909660382, 0.5157191158465211, 0.3117791440388217, -2.151322601143995, -0.3732659175332618, -1.133775925580237, 1.0096073382092299, -1.058229662733669, 2.2677278852278975, -1.523731062212667, 0.29917116082477224, -1.524200462399132, 0.7960925214139307, 0.3933194905136624, 0.9897627282818444, 0.4329948407980088, -1.5119176238652423, -0.3032316053064867, -0.00638056888489304, 0.6080165686003978, 1.157309051087954, 0.48665460958059686, 0.999375948945712, -0.41920260591408576, 0.032524662811972124, -1.6828464174906774, -0.30639096024268136, 2.070770324008508, -0.2436872889768176, -0.3792011386299031, -0.47626061174600437, -0.9774617804991227, 1.0451350829962132, -1.0218093376695527, -0.055388909929539695, 0.2735797527226966, -1.0724684244110223, -0.6903591437266504, -0.20980013040044482, -1.8267559441382617, 0.44827532864075664, -1.7152223576443455, 0.41763144967356297, -0.032046506587816874, 1.7555477306467848, -0.40600997180436826, -0.627206496885787, 0.7167150019404036, -0.5606637148338253, 0.6430395856313332, 1.0242057020079283, -1.6633043187134713, 1.1184735429444073, 1.370505578019372, 1.150028755725533, -1.4461283793418944, -0.4747793622791874, 0.2437900368695195, -0.2270551020323434, 0.9821232213997277, 0.4664880929885543, 1.0293502842768274, 0.2647842087650143, 1.9193434429476492, -0.9406455846883187, -0.04993839912671405, 0.19290916418691337, 0.1902730818012938, 1.4628515114656504, 1.0363116743596437, 0.6570071765977369, 0.7631648287615399, 0.46428669412791285, -1.1937483867372474, -0.512761794860763, 1.7652219935055147, -0.9165410198811481, 1.912739430890295, -1.0064220441708025, 0.4858787814712266, -0.0399849760690959, 0.9399426073159122, -1.2363034728531983, 0.09612983073730777, -0.4411665256801321, 0.6303015578456705, 1.3661488769136463, -1.6054033619091015, -0.1353102150180244, 0.058148267839421466, 0.6931921055731931, -0.6978204187481972, 0.2937475041943671, -0.316113961702072, 0.7739147574842536, 0.4970902923621957, -0.3519954748494609, -0.3180238819370831, 0.746812269549041, -0.09945778035966682, 0.9451740268364186, -0.6857052006194513, -0.8053295353207057, 0.5269190988703282, -0.25889042083299046, 0.6508682404738706, -1.0298238783325255, -0.9866031743504509, 0.23885948943531077, -0.749096170152401, -0.07989496609343989, 0.8577203799681209, 0.13688598017494022, 0.724175177840275, 0.9693662040152804, 1.6677204038090792, -0.9255364339165744, 1.1136975280589803, -2.7558089710648397, -1.2592713677347211, -0.698415854016665, -0.40766628345789385, 0.08600022634023828, 0.4905384686249382, 0.1909854820486303, -1.251786677513, -2.8666390253331784, 1.6178014922160096, 1.4961952010630184, -0.30235947253455586, 0.12683214549519584, 0.5160417947999227, -0.26210933924480767, -0.6640919464937617, -0.5157051900558881, 1.488441195658906, 1.8269339381026615, -2.1456509958037935, 0.9365147581800038, -0.08046121744876718, 0.19016023491784081, -0.43241535782653684, -0.027803515064827575, -0.8896885577159722, -0.31747220171277746, 0.5641615117510038, -0.5218878658469084, 0.17877715092226273, 1.357045416816898, 1.95775445722483, 0.9140701731216768, -0.7651624824831339, 0.640302259719463, -0.35979220934459244, -0.14162313815815064, 1.4253137957929443, 0.8011057329066379, -1.3248896777790675, 1.199101504038937, 1.9534479266471538, -1.3700164404615696, 0.16376019485416196, 0.5074076254537772, 1.5640140419444981, 0.30230840481242877, -0.08881859822687965, 0.24168480560061595, 1.894944141347556, -0.25754767455250194, 1.9401519598181824, -0.4097376265643024, 0.4610237740824428, 0.05960127369342534, 1.034337493190747, -0.3096183659066455, 1.1065943640313909, -2.0868642429277116, -0.8866938116536609, -0.5924388484485453, 0.4998646220442589, 0.009368927111437692, -0.41017683058664817, 1.7412380881352674, 1.2288635043123117, 1.5419370076320393, 1.0881358183217336, -0.5542265861543092, -0.04551281891599689, 1.7762947197089265, -0.034858129305456856, -0.726990047510151, 0.4115577404233191, -0.5402681492214305, -0.30657022815004187, 0.34011827394546285, 0.07513948282222283, -2.2096835303325673, -1.9477515507818937, -0.6361604764623999, -1.2007734778714956, 0.4887777509572988, -1.593149421594567, -0.6394833395780358, 0.18793530649017162, 0.9822000976954072, 0.5635717134826691, 0.32070059750426505, 1.2412248281403169, 0.8673278879270324, 1.6135959961939843, -0.36003149876872864, 2.0103937682575523, -0.25842581076534743, 0.03533659653144971, -0.5860332921701887, 1.0888297525143205, -0.15690353420490222, -1.0112553021315418, -2.07368493074309, 1.4017625707834043, -1.2105083306212576, -1.480198339931974, 1.4022136073767488, -1.1741656208018254, -0.19823137677558952, 0.7498078595367214, -0.5798748336007429, 0.3658151581054749, 0.19484012491193875, -1.068537174526002, -0.05968706758440418, 1.370540574950564, -1.325930809038413, 1.285903890663709, 1.0797826372575468, -0.9256890380901904, 0.8903625324537484, -0.048924571499537384, 0.6323870729299871, -0.06582972449157952, -0.7624240547003345, 1.7473148684417728, 2.0298108391695764, -0.8688605686753471, -0.2771885023675026, -1.2366885547586388, -1.4371528747036317, -1.0344467748455384, 0.9668222356207381, -0.36170708490480186, 1.64163864357441, -0.07209164595316961, 1.354716717554571, -0.5144033178413675, -1.0546514378968406, 1.1928352453687805, 0.18539786129956007, -0.3904369238912344, -2.0159672004625104, -0.7584122157150575, -0.14538110288117495, 0.9625617712381128, -1.6320134039479772, -1.2734833933054712, -0.3018787804477607, -0.9876332931654184, 1.1272831543128565, 0.5265899947558065, 0.27879755663808575, -0.9966286823186213, 0.24611837245427842, 0.2420588168762666, 0.2065115159269434, -1.1304070658885208, 0.39626780433992675, 0.497382165925186, -0.15475269516645526, 1.5495060376466214, -0.7213844626834254, 2.2273454683634504, 1.5550594357625518, -1.5025557634124085, -0.5166385992513518, -0.538752645481287, 0.6887992691925506, -0.9268994732091604, 0.059061182061740554, -1.233411316397756, -0.4842852894916833, -0.5880614490809836, -2.0255785678378024, -0.6591491595682479, 0.6463716424648027, -0.8659273772452782, -1.0750279367740978, 1.6012137437557488, -0.4850793108326086, 0.96181321207188, 0.390998967516902, 0.7207190351699, -0.3418535329302982, 1.7055534247562152, 2.033184673547101, 0.6023185120660989, -0.4995282724299193, -0.36978547400112266, 0.6892592040301168, -0.3515884215287471, 1.3860435885347548, 0.6645000155239709, 1.2133968961250374, -1.1222677279919104, -0.8409672059786969, 1.533590338513073, -0.566095281707812, 0.8585524065959836, 1.0155384706224468, 1.6908790596875753, 0.6237645381843455, 0.23958047684031283, -0.20314550871931217, -0.9669944949292799, -0.845086691053409, -1.7816908210776083, 0.09920921540517237, -2.1381268931333395, 1.0312320652943392, 1.1594920922403797, -1.2411614714512011, -1.3796615811314734, 1.9127820185790023, 0.11630258727712471, -0.0038735956336222095, -0.15594749763752863, -0.2559088828986717, -0.09362134481087298, -0.16513607884947024, 0.22673879550528198, 0.05856408890982672, -1.819593648464332, -0.09483376178107235, -0.1072967312211849, 0.14515642775176094, 1.1407560428495789, 1.3205543404218947, -1.562990452682277, 3.6316586799355424, 0.2750945286389964, 1.1651247480910427, 1.2284398253519704, -0.09413113309491945, 0.08418602762991986, 0.5330818368001896, -1.3389086912685433, 1.1656299124908085, 0.23490217348692466, -1.2775425676891539, -0.6839435326484374, -0.15873963951634337, 1.0782607373876218, 0.22505577671194893, 0.27907238804615647, -0.0987445244085397, -0.029913705555112913, 0.5106306058717753, 0.21106657659651923, 0.8109115719234368, -1.7518796906032188, 0.03368040647057705, -0.781378745461582, 0.40275025905299744, 0.8083195662190036, 0.4553416285487884, -1.1481904607234952, -3.1504580253491574, -0.4522049533422036, -0.6729349689634079, 0.3349637206846584, 0.2814249747595594, 1.737916580316779, 0.6877600049206207, -2.100141722718091, 1.9037083868373526, 1.9650248929251446, 0.16916238166994862, -0.8082983870385172, 0.7321622970813977, 1.4912051443668872, -1.0409647455664466, 1.1505184607502696, -0.22586391825766794, -0.3155533083636007, 0.053404676771531406, 0.010716721839616203, 0.1875619419661784, -0.5030973341236248, -1.0525981998040623, 0.11735238400849445, 0.933142163555966, 1.676536830223125, -1.3742373172292655, 0.3531898961915802, 0.28438366833644596, -0.8924498654571493, -0.9964831008172618, 1.2213074307104952, -0.3847786142994672, -2.1637775996636157, 1.4447609172950766, 1.4769229337287952, 1.3201178729252117, -0.22042487349898154, 0.40314114638731624, 1.6074419814959093, -0.5318933298184383, 0.7421379704574443, 0.4859579212614406, -0.16527414789246492, -0.6564402084128063, -1.0459978644421273, 0.0921467695053614, 1.0747594433692595, -0.3828179043184748, 0.8674907390358766, 0.7955121733941761, 0.5266073800430687, 0.5647969303697912, 0.23637907814594847, -0.9683586804141832, 0.38040049926376973, -0.8105228590452846, 0.4298508024398486, 0.35673412308800106, 0.5294330053957644, 1.6350198843920105, -1.5562913393941318, 0.49103472076346977, 0.5158420604096235, -0.5640526983102148, -0.5738125139852407, 0.3970795500368078, 1.793396572896408, 0.19488118147216424, -0.9304838573377044, 1.4000724314990103, -0.6786882545751743, 1.09363140045982, -1.36418416616216, -0.84754380710925, 0.10013488501741213, 1.2264215136874694, 1.411954921519661, 1.7541944567474226, -1.7233554717815986, 0.1971193761620885, -1.836125253463498, 0.5739985104468895, 0.6458292721569913, 1.1005931139076495, 0.16560222612075734, -0.5068481418590662, -0.6286966565651811, 0.4095291200420071, 0.09336698540097536, -1.7936195421485197, -0.615405061893504, 0.7119355875653168, -1.6279039749345698, -0.9442466533586829, -0.7358578311593712, -2.154981646669042, -0.6635544535806392, 0.3265032685965561, 1.7585915831396033, -0.46854029163947014, 0.38925395472913865, -0.11308640152568465, -0.4364410851110287, -0.8924913552621041, 0.9249402947035145, 1.934444883688563, 1.205724869253588, -0.47196601262578347, 0.3656516128926449, -1.1993912595458587, 1.3197305802155312, 1.5295579023820878, 0.03632992823726057, -0.2844727072327886, -1.4809394048708702, -0.30002197841255474, -0.471718460573333, -0.09978265392944376, 0.9229823390720757, 0.6068222456465282, 0.23603043606680557, -1.8788297710633328, 0.34969891903916955, 1.4481806558520482, -0.4768970779672375, -1.2542930656102387, 0.8075249759297887, -1.349837985884432, 0.677846527985043, 0.779844436091651, -0.622942060458423, -1.3276791567810111, -1.8404404533130747, 0.6631012498386614, 0.06582640307786147, -2.0055803539153527, -0.16003376532476535, 0.1472207868020671, -1.6285342068014304, -1.9178893593492963, -0.2877507389874298, -0.23002147260893663, 0.5334634418544246, 0.0607582552475608, -0.2436852634817149, -0.024234016090751317, -0.8462536574222627, -0.8899156039534489, 0.6619694816628688, 0.933088545471768, -0.044946257185835135, -1.6457321121907236, 1.6054486767595144, 1.1968484085412916, 0.3578925630049234, 0.3838396674996168, -0.6631269364025401, -0.5278668716986582, 1.5539931666925435, -0.6160293577253155, -0.48416184539706814, 0.4611512919876773, 0.7918780184960433, -1.3008163708403289, 0.3766858833638754, 1.6127459629946148, -0.2376900135442005, 0.8966355164629102, -0.8510647331941055, -1.109388241932552, -0.9291485546039522, -1.2120588506079415, 1.4022092485986162, -0.2292577755865196, -0.6759668025904979, -0.2605316378274235, 0.14557661023029647, -0.31326872646964915, 0.07766898131403617, 0.17449020810093235, 1.1245467612943585, 1.0668919756275705, -0.4510400232739356, 0.2738395346887916, 1.3241176216917256, 0.1516792945599238, 0.12861563645558907, 0.3652285728741573, 0.09535740502087502, 0.7698957364401278, -1.4697549334743054, 0.6749671119193946, 0.5920840907782053, 1.139536944232706, 0.6089620344538234, -0.6278288423442794, 0.7578761656233801, -0.14395996919204546, -0.30607853260183604, -0.6587981249971895, -0.8180491365073758, 0.45157555730994564, -0.6314303226117158, -0.6616460927698671, 1.3916042518542695, -0.38474893945488337, 2.493427223402828, -0.5096286928221215, 0.7509298641435206, 1.7756542818753356, -0.6531551413540345, 2.157280275176897, -0.942912512242949, 0.47549869598935923, 1.9433246141266, 0.37290848050612235, 1.0885852582942326, -1.4628206201610434, 1.6687382274890996, 0.4967490248485125, 1.058433257607734, 0.0807103259292174, 0.904332431100796, 1.653293826849153, -0.034886985965742676, 0.9717579991320965, -1.0744396974274444, 0.8693394639171895, -1.2607137793431742, 0.43720477476995245, -1.3248468219019824, 0.47395491375830606, -0.9064869174583801, 1.155633705871688, -0.06882021224947782, -0.7032904366782027, -0.004058084681421319, 1.5234341839552135, 0.2142081688349197, -1.688844426007864, -0.39752991087995665, 0.5435369816543622, 1.4278206285192367, 0.07856375194865392, -1.1195558454609147, -1.0387449140350693, -0.113465252282113, 1.1972693971160315, 1.3598090788692312, -0.7203085312465639, 0.09512201881849316, 0.6100906755019467, -0.18628902733118058, -0.1685899652060938, 1.7709078892893764, 0.4379428620373014, 1.5217295987750385, 0.21711660185208215, -1.118417793804008, 0.5248646907668304, -0.9523929818246489, 0.20396920069358074, -1.6738097053151682, 0.29066001579645795, 1.4606375169782764, -0.00852261106634712, -0.8322117914030571, 0.9285726940463648, 1.0697401002305769, 1.7882029701458486, -1.0894630951468147, -0.7668084805029037, -1.1462459213555423, -0.3215828413132597, 1.0091657784886225, 1.4195270747933995, -1.5001153075714602, 1.3726450849115037, -0.01983287707020376, 0.6866233979236561, -0.4700016299820702, 1.4395102092781737, 1.2002237722885347, 0.2730178556620356, 0.013217686590372122, -0.24007874535411938, -3.5574205396198932, 0.2131306431978942, 0.16870685088057774, 0.25320659590203265, -0.6384258257371012, 0.18053077838900972, 1.814979021206704, -1.2843268987270662, 1.9754718789904138, -2.8089458303184554, -0.052021936148693146, 0.05398020362803356, 1.0606969704795786, -0.3674741481564413, -0.15510087226567562, -0.1003098675103233, -0.8334927378213324, 0.42702832567037263, 0.22230175006116445, -0.045256556224125374, 0.7814673087573322, -0.056458881469562, 0.48610108567863886, 1.0186269745046692, -1.3330450504293587, -1.1416501513839037, 0.08809313229996943, 0.24345404698904577, -0.030379201274764244, 0.5059932011328206, -0.29144052851998714, 0.39872285269544755, 1.348901474145118, 0.3272092974967396, -2.0626909616743423, -0.13391286151136264, 1.0634073627896536, 0.12118265200549914, 1.7351515909766033, 0.8536732577720623, 0.4177184291810994, 1.4403323177446066, 1.8881288929502742, -2.4570335690397807, 0.26689649474530175, -1.0321899210096017, 0.7813003771853104, 0.659734029444276, 0.18919394352682772, -1.888901024735014, 1.8195862060058678, -0.9330477617579865, 0.6225748367268348, 0.19686773807475969, -0.2639442043983386, -1.7798678349431123, -1.2535403912953698, -0.40915757886617016, 0.5341838251910692, 0.8988373830513209, -1.1918264260074225, -0.34198503637967126, -1.5041499343063633, -1.6776441462160834, -0.18776520563408136, 0.11743293082978512, 1.7049555786923722, -0.22185731749951915, -0.23184688878740567, -1.2195532054125209, 1.5023325515352177, -0.20920840109618302, 0.4206616787380156, 0.22834702255409248, 1.0905172026181447, 0.5105812355982482, 0.06811131675198917, -0.5787034203305128, -0.677587079986728, -0.035642141601436084, -0.8046315706641389, -1.7761876581446396, 0.17257609315976202, -0.38512456508786846, 0.13205433416470855, -0.8592537417357907, 2.302170570635634, 2.1455125468622374, 0.7384345854519858, -0.811022884499451, -0.8152399080766162, -0.29442501872093685, -0.7152167665116185, 1.6601716254649945, 0.7891176882474328, -0.10268223199346108, -0.39368485113627816, -1.0374149014865877, -0.6520097352787749, 0.7200161701184333, -0.5351587259995207, -0.34987725479470694, -0.6361710680483682, -1.5452027277132834, 1.18957707047734, -0.8045137056796446, 0.6715567556458536, -1.4643871715824706, -2.0080745753318654, -0.522508114482565, 0.016546101535178336, 0.04307258957346773, 1.626331395935859, -0.022335123955560744, 0.1460323910607749, -0.4150754544099891, -1.5340591695175652, -1.4453626871564067, -0.500776093414045, 1.0401922160036654, -0.29556871859040373, 0.1590990318634088, 0.37141932109067227, -0.7496041589929233, -0.7851388177920735, -0.32928564008215655, 1.1971710624686602, 1.3723736693187312, 0.17039687334919262, 0.8274265023073327, 1.2588778896075714, 0.6367414266041503, 0.7306454727590271, 0.7682368656111233, -0.1020279603317484, -0.33956267083204306, -1.1475082288153815, 0.2635446399463608, -0.4876519554707229, -0.26186168359168743, 1.1401861966217774, -1.3805328987886423, 0.497806877049959, 0.9166422776134406, 0.4034149177237806, 0.27902120100407585, -0.7477620150503062, -0.4965178870927769, -0.6165428015362647, -0.41827752160992365, -0.15546058468431945, 0.5955038283539114, 0.44187812213785926, -1.2845185118860822, 0.9658200835878584, -0.21000240591492217, -0.32798231979072506, -2.663017716240288, -0.6674245142610554, 0.29701440094883735, 1.558684198230863, 0.690944783160799, 0.49829472683346715, 0.3826119271181153, -0.6448097252406689, -1.4116757306501553, -0.06448515751664555, 0.34747125444616894, 0.12582720717847237, -0.21681310254938932, 0.5171624715686419, -0.8046994793066244, -0.32475603920711504, 0.07119446111336726, 0.6334855607619198, 1.6392249767134899, 0.7746760591955872, 1.2392038522028685, 1.4010383773947201, -0.7472699972294985, -0.5419725536793226, 0.560729163299639, 0.8932049905630624, 0.3095307291792704, -0.174996394964912, 0.09468240437199264, -1.5566708776579656, -1.0979998151517787, 0.11418332151349986, 2.020179102633169, 1.007646614549235, 0.863587735012537, 0.05149840958549888, 0.4219682192658032, -1.6470701720793448, -0.9630839350866832, 0.11942184886446568, 1.5990675245193107, -0.26139084132164225, -0.9220199113912906, 1.2433573698887506, -0.24158784489373733, -0.6715161709340105, 0.19446491250372622, -0.022768882017533215, -0.1265619991912825, -1.6868215531728468, 1.156808189274813, 0.22596424247637173, -1.2628715664940737, 1.5898437040481577, 0.569499865897645, -1.5064956606529127, 0.4477222767537169, -0.2771437579450715, 0.02130514848806227, 0.3276844548164965, 0.8977326094005801, -0.29153360884036417, 0.12128110632258902, 1.133092333003044, 1.1865695098867926, -0.29617255706427903, 0.3555222454812506, -0.9202275354171084, 0.5530035726148548, -0.8087929326780673, 0.38970804447794843, -1.21961086320145, 1.3293577141039303, 1.4321780999742888, 0.21277767017973417, 1.9267227938950864, 1.7947909081797366, -1.489034511948908, -0.2008581597674149, -0.4057485206680436, -1.1878291925905098, -0.6925633953597582, 1.0628567353140397, 0.6864416551460794, -3.411148882443595, -0.601973134484899, 0.5241762925831519, -0.3536506118728148, 0.5031996954918381, -0.15407067526834584, 1.2926411659991557, 0.6362485572957881, 0.9060383810275007, -0.5549869203324548, -0.6860140300410374, 1.8478911449303368, -0.5445054378821851, 1.3696766215265421, 0.2721557928819129, -0.32182094844115866, 1.0023045486964202, -2.03488881480792, -0.1678878442052617, -1.4654230444386587, -1.0486627126241026, -0.037845934289328975, -0.664040095772353, 1.1737589557114887, -0.02384785168415367, 0.04337229923315418, 0.2934861374188936, -1.2888170343378487, -1.4113387610520145, -1.4020169470358066, 0.2315920428317667, 0.554109436873392, -0.11526170859426947, 0.08752882971634596, 1.6738518308080568, -1.748760898161788, 0.21932428826713413, -0.04210981070636819, -0.952520553975157, 0.7406619243779268, 0.18046316078917773, 1.0466196403154948, 2.1374895794818123, 1.0935553070752269, 1.0217534603933718, -0.906971829485555, -0.5813890849588534, 1.2803975300643327, 0.09903354677997664, 0.3443003060343034, -0.5802402629739324, -0.7646935314346193, -0.07479356979947548, -0.2700560411552518, 1.3153953293952976, -0.1594077419594168, 1.103348052287362, -0.14838579225957674, -1.752228965309621, -1.243652086203238, 1.5760363610128885, -1.5246805068064146, 2.185308407214547, 0.5815894010357119, 0.9519461745367865, -0.6772360878668985, -0.6989961359780114, -0.06623945321425483, 0.11568562314274246, 0.7156967684989689, -2.085009226507869, -0.7822063445424463, 1.4017070604253794, 0.828555661622099, -0.8174323562762134, -0.6230487685031326, -1.3260313079528938, -1.520449492836498, -0.22669709149779188, 0.24088113145232573, -0.5000364388442569, 1.4724988550745597, -0.7826242843376084, 1.5121735029108703, 0.22589695039571273, 0.5292645932986457, -1.1241523039334202, -0.30001444055716764, -0.7997895723043471, -0.27420786609248254, -1.6198573651475785, -0.9867914572230271, -0.696326641545478, -0.009055521001346649, -0.13596882663750598, 0.8861045172218552, 0.32123631619752135, 1.0747933638631604, 1.2366614510628136, 0.4174543288611357, 0.026748235919259764, 0.05236755649468269, 0.4703496931155705, 1.305763414904023, 1.588173750424947, 0.7003928985737826, 0.6222859872863026, -0.3938381565891538, -1.1012198564562161, -1.3642078781584128, 0.7151399875458198, 0.7734693689523483, -0.22563649953796552, 0.26950098922996796, 1.012655841040377, -0.6120690380329983, -0.358799448362035, 0.9513815520151551, 0.2667848115322484, -0.4756321726020989, 0.2541600002644731, 0.8382483250719761, 1.3172395126464544, 0.7847204990698886, 0.06061139531244287, -0.21400554859464904, 0.187608508818724, -0.9503283438584649, 0.7364757893373736, -0.20407516688848656, 1.1194945871069473, 0.15362567852162926, 0.21733950773433916, 1.1125548796377216, 0.033611143645153156, 1.7724086045195435, 4.380206142166992, -1.5032475091259898, 1.517765729253597, -1.102066851746224, -0.8394700710552951, -0.06075790692016413, -1.5374173726273876, -0.801452469127018, 0.28462395708075755, 1.3621155584133429, -0.7385943436988931, 0.7265924136312281, 0.3974305199953445, 1.4930806188800576, 1.6118091066864095, -0.3470328687341253, 0.03423190186353961, -0.8481559949416979, -0.3834052296039998, -0.1270987572516473, -1.2527964510387433, 0.548647614674341, -0.31947143254927074, 1.2710429385921556, 0.15489343197151065, 0.18548991581959692, 1.5326641013356632, 0.26631186904329407, 0.30296169187427097, -0.2424095448327842, -0.5445149795331579, -0.7151457997451953, 0.4359615258142543, -0.004388331159252593, 1.0281483519859798, 2.5396088851421097, 0.0009755235055463399, 0.9171232429321079, -0.04505929310522795, -0.47748754659497755, -0.19737030320855836, 0.5428633574019968, 2.0910587727485423, 0.1498591062856981, 0.7445755505572413, -0.5595954494616066, -0.8933931365879124, 1.2846000693071224, 1.0019657213258157, -1.085457124958924, -2.357251046082736, 0.7535105548746739, 0.018950766859523807, 1.145664773611984, 1.5073269742162398, 1.387906494160537, 0.7211493426065297, 0.354956614512451, 0.3804512802723683, 1.0188758641908615, 0.17192688378623297, -1.3266268408130388, 0.9147732965843993, 0.8929457933781525, 1.2252884572981795, 0.8212967981454496, 0.8477490608629242, -1.8679082861583762, 0.2503663337069652, 1.203004109431626, -0.9052171894069688, 0.07867404195811713, -0.5334733377445551, -0.16326153573069627, -1.9141702617371557, 0.7479790221617117, -1.136253040216314, 1.4919984862226634, 0.11010931783397689, -1.5066570093549216, 0.003179830808442484, -0.765512668408597, 2.5723974752595145, 0.9105732543885162, -1.3017358759043511, 1.1968327628254425, 2.4034609590122615, -1.1716689196450338, 0.2753301466096724, -0.2576826671693176, 1.395711028774693, -1.5887444629233711, -0.20424407914605328, -1.476789539194627, -0.6483069716692592, -0.5486280622005978, 0.8848558451476805, -0.2390447098136513, -1.4750735599253828, 1.4544546922818378, -0.8086944577762337, -0.936740861967884, -0.7217131007930678, -0.3686286159584222, 0.433856889811528, 1.7064987936957579, -0.9634630627170282, 0.8191799192748371, 0.7938283319593777, 1.177297590600994, 0.0881033666367136, 0.08896487103822498, 1.442703907355264, -2.3827246259336254, 0.026517577917861534, -0.3556003179019841, 0.2012926541567273, 0.038923145644257695, -0.24266704362100283, -1.4032486862508171, 0.48751720531514287, 2.019530646895635, -1.0909311095336625, -0.8970722598133143, 1.3250300563020383, 1.021336875092968, 0.5308193875411683, -0.8624452585472779, 1.0918697443253118, 1.0632823934247433, 0.7201188471633339, -0.4766689589421795, 0.676753062041078, -0.7850085374239346, 1.9330944596623014, -0.7964979775786031, 0.5877456019317985, 0.4927191139618455, -1.519726832460662, -2.0755757484488813, -1.287599719932167, 1.2439747058589121, -0.18496610892657428, -0.5096090096492185, 3.2130526038184413, -0.3008347931562633, -0.649312521224578, 1.4044142981903154, -0.5942622565115819, 1.349287125301088, -0.021935838308601588, 0.1009548219548147, -0.6503884341555438, 1.4988012040132646, 0.17777110843819655, -0.19633586535112751, -0.6664913622120924, -0.19630409786004832, -0.46278029987448466, -1.5223740980472626, 1.3091924356696032, -0.19151186558658345, 0.41813569035392956, -0.006838186183748591, 0.37908778555205075, 1.4192000473867996, 0.36695580811951917, -1.088470251988402, -0.6911042631823567, -1.0236921503080545, 1.3387216840711467, 0.526580169825665, -1.4420815432930962, 0.5114185240331254, -1.6393975350113505, 1.3631617074604523, -0.31564862863069004, -0.044356584796727, -1.7851112351893952, 1.4402590671892634, -1.3753286078872984, -0.42716095991690906, -0.08660462807982189, 0.41867780204239574, -1.1650849346984828, 0.4621861072763867, 0.10938444617221962, -0.746463944945749, -3.1110788262427977, 0.07403530819655162, 0.1393571351870532, 0.9492542712680268, -0.2700271802009402, -0.5498189892105446, 0.7153978471976096, 2.1608917613393452, 0.33199388643012556, -1.917459308003037, 0.16783484064145335, 1.1166033332186474, -0.7021882234406727, -1.4756697047665666, 0.5056003483203529, 0.9965817620549354, -1.7825398070935978, 0.03318296759356149, 2.8913086443554357, -0.2706903633292646, 0.8594851271344046, -0.6427442897914282, 2.0771993108813245, 1.7179215688361271, -0.23199011484008836, -1.3855630894866038, -0.20723585912072098, 0.12857981713264843, 0.23000036649751812, 0.45194752023620766, -0.3369565386527199, -0.10793672428074713, -0.33991422005871175, -0.5828446590313282, -0.8164014070281104, -0.5850493243651254, -0.046028251965874165, 0.08423381468247235, 0.9949881426442141, -0.18561621777906886, 0.5113076402042545, 0.4241607223352729, -0.640790255669269, 0.19943390032269845, 0.48686039929644515, -0.8517392080367793, -0.31464345983236497, -1.2520696920739756, 0.39936737494433416, -0.393202863711451, -1.1876385208418552, -0.48083966533959865, -0.3181003343669296, -0.4022337316970466, -0.6990373164651015, 0.41497884216954806, 0.4721954142897063, 0.5768146358389536, -0.6411324880017536, 0.06933442904600312, -1.6741812463870154, -0.47199403761759434, -1.3971829808337266, 1.5248182643486463, -0.17990039122407522, 0.2645308305642076, 0.5152275624028804, -0.3948113971931857, -0.9187561020060928, -1.0907998579765683, 0.24572115634001443, -0.10936145680958625, 1.193126859399193, -0.967381083706553, 0.3677163746445819, -0.20910067939064414, -0.3286728624258527, 0.12028052680323814, 1.8073884818291266, -1.3925840195406682, 1.6212814784295955, 1.3278478860962124, 0.02108011928897025, 1.1172411577195203, 0.3031933717978852, 1.8389924024904953, -0.620861139541741, -0.10127772819016842, -2.133209599039991, 0.021170695012968928, 0.13005994325016568, -1.236207064334926, 0.3296523710100132, -0.2015422353669951, -1.5091026571250015, 1.7927174980407683, 0.32837244785845604, 0.6492582520056237, -1.4614601486002727, -1.0502795319570135, -1.3822195963920625, 0.16151986093327853, -0.47941563834088435, -1.029051370305812, -1.4756231777851347, -3.525590016679045, -0.4884633237361543, 1.2900383837886054, 1.144631965769455, 0.35928841513701754, 0.4461379237462697, -1.20929859701868, -0.48025315255204093, -0.38671324895968084, 0.510375394506035, -0.4314835941249102, -1.918202901905642, 1.3398655846971543, 1.1354789148839406, -0.9007957448125261, -0.29412661838417065, -1.489478472764753, -1.6658719383151286, -1.9088828597188365, -1.6632500854069225, -2.0851002858260594, 1.1815216346745572, -1.4085672132080902, 0.21057700736944698, 1.7198475200253505, -0.0974316036259347, -0.07939317047821902, -1.3484974901913644, 0.34503375270721254, -1.7653198082262214, 1.2129830134482176, 1.0262921571229209, -1.0201310421109606, 0.1654526751855473, -0.5104444008976765, 1.5552089154194846, -0.9438384279286292, -0.46997547104529636, 0.055809122755593826, 1.6912658582568953, -1.1939561352943404, -0.004700054018665158, 0.31744550138620015, -0.31211391472557587, -1.286413081541636, -0.6666156764916824, -2.4906656520825328, 0.14739737924737809, -0.4121291332619796, -1.073290526869881, 1.165890828397574, 0.9343550657139534, -1.3412270829195316, 0.23561045742069928, 0.9176235524830858, -0.2446484333140539, 0.9806135497350178, 0.42748042934753566, -0.6443251804824395, 1.2322367982858025, -1.0713022794108311, 2.0754493184598832, -0.39369167048206377, 1.391301621429694, 0.5790390657980128, 0.5572427368577793, 1.1841686406397187, -1.924445481892892, -0.7382848218397807, -1.1178956821581276, 0.23123691435554275, -1.5572238274181764, -0.36964998669429394, -1.324610431458406, 0.22562033609767848, -0.3922561348055168, -1.1627512062362233, 0.43106717432877156, -1.0177644492235483, 0.23682930731312404, 0.39846449037762305, 0.3543692018248189, -1.5518853140767432, 0.28868240131023, 1.0982481607616157, 1.1854486168211873, 1.1384557920622858, -1.5547444350254271, -0.7341940619830482, 0.015842408951931897, 2.4024067332996424, -2.0486475287208186, 0.12618637237140734, 0.5149973502411868, 0.007257635853393014, -0.28547000804693945, -2.0421868615443124, 0.7632041594932364, -0.23201993886014674, 0.4782366534145974, 0.7283739765429404, 0.5504140897337403, 2.5429499791851216, 0.1241902363217312, -1.9767200602894266, -0.7394333904766488, 1.9823485749942302, 0.07403117049405251, 0.46258007214993707, 0.7350909559795391, -0.6557478882030228, -0.6979471438221346, -0.4465682169431159, 0.9307133077539091, -0.11009196659519817, 1.079767780134448, -0.15648391571913273, -1.8380321914757478, -0.9655714080999934, -0.16523880412136807, 0.7626067634937799, 2.6478983286434414, 0.09916219468377743, 2.3368850197317017, -2.1266842451691375, -0.9141982821371795, 0.8249208087102293, 0.5562295204937582, 0.9950102729846113, -1.7512013026193636, -0.014137243693339463, 1.6888952666321542, 0.5620700231217362, 0.4067031343029742, -1.1581691405502998, 1.1271979872042426, 0.4473271087420814, -0.5270152791456977, 0.11328461246445358, -0.03600108672539017, -0.9550483256150121, 1.5995438492034721, -1.349427928955402, -0.5864197623405236, 0.909759704258203, -2.3375132245965915, 0.5076107572189844, -0.5913753111150091, 0.5694185983873399, 0.6679968005263172, 0.15662529172290607, -0.42631840026039747, 1.6156164361036605, 1.621937667084915, 0.36645040978988186, -0.22594675906663172, 0.8877774441523626, -1.5332626097126696, -1.3394997818349137, -0.20618013809640603, 0.3933323748919318, -0.1352706485476133, -1.3193117408661443, -0.6903716266937198, -0.3384342445230611, -0.5094813906873463, -0.15432523661832395, -0.5165969527672285, -0.1830421126460961, -0.6998010818328242, -1.6718533600809484, 0.22050337321089378, 0.2759346536528514, 0.4656683962696559, -2.575968468489008, -0.13453356413107007, 0.0007370193908790691, -0.4566602339444703, 1.0984734462273724, -1.2636339819797318, 0.7723632615095044, 0.8523198502803649, -1.0222678517621664, -0.36899734609123214, 0.7048338833527702, 1.0208821840983293, 0.14345629415061614, 0.9087708451168542, 0.6714414933278913, -0.897702856948771, 0.4130038225957835, -0.6598043373855766, -1.2840913409607013, -0.6053953726938535, -2.4957456922095993, 0.5768703468294414, -0.13274948635970155, -2.6430031872123902, -0.5330419993642187, 0.1923875719204393, -0.09235038813892155, 0.4945257191236155, 0.1955229988181336, 0.19614645403639328, 2.460118581810838, -0.05100409019544136, 1.4679431440903181, 1.3236121974074244, 1.0534443041099, 2.3584606412358347, 1.18428563004665, 0.6484729089762938, -0.18672156255876132, 1.0904420982741843, 0.05754465041676575, 1.5788566075214072, -2.1964297201374325, 0.1343815546106253, 1.2350444825891074, 0.7722356106987414, 0.41712676057928716, -0.018749837941786793, 0.7430604623247482, 1.9852779086133816, -1.1350992693188298, 1.9351746988998906, -0.08870625497144777, -2.4582494969188633, 1.0975071023839904, -1.167639410716143, 1.5270238885114948, -1.5058779910369737, 1.82403404759096, 0.7929398113078537, -1.2587635660052645, 0.6599310917206487, -1.774359316738279, -0.36978733574200645, 0.8119642397832446, 0.6290936943670111, 1.2434390240372908, -0.9516180386791275, 0.3596376644929571, -0.47454691174985797, -1.2868844995529256, -0.6050491133401903, 1.6269090731810163, 0.643848748400859, 0.8792715455267183, 1.2741253085904245, 1.9990440252322843, -1.3191168397706918, -0.21285058325832504, -0.7439081629278025, -0.512473807168223, -2.015312836780564, 0.6177130881122344, -1.1896407736518058, 0.1430461318735376, 2.5639084323179686, -0.433068293328021, -2.0584953714671457, -0.5353268702852712, 0.270622280000628, -0.005151340745139329, -0.3230233403985881, -0.07387917780069103, -1.5599440488782268, 0.06943096123180013, 1.7065933624367056, 0.8060297251490789, -1.2172724270913384, 0.33845120634173204, -0.24269476438911702, -0.715028403059861, 0.6274992770277197, 0.9351854832421556, -0.3540513227359592, 0.6912467897473471, 1.5428262225166476, -0.3099454081472856, 1.1999234360255424, -0.3098416898385794, -0.9122530599124452, -0.3086669377449199, -1.949181033075019, 1.501119002772606, -0.7198886534824234, -0.48749621887315786, 0.6311930187818876, 0.2394946987582145, -0.2619472239124745, 1.2522397391886149, -0.08520586978774759, -0.3040940615353179, -2.928397814448382, 0.39322621416066983, -0.09658693904956782, -0.8208453356893622, -0.1410686717946556, -0.03066662597985338, -0.8789464813103529, 0.648776151068648, -1.2137356336853888, -0.7859744430046319, 0.04671110971091798, 1.3201686472007186, 1.744537133785374, -0.9573866067311636, 1.2585537311446724, 0.18921318412900245, -0.31253244704600236, -0.6662203481411139, -0.098865521859393, 1.2814929844041676, -2.237864218246273, 0.7322154034360265, -0.30253340502665166, 0.7151681201904126, 2.068114058334392, -1.0892992566514665, 1.5043820220022337, -0.9172705837623093, 1.313051049083363, -1.6434229311752366, 0.9446074570253172, 2.0310770642601397, 0.7199029235654631, 1.2943588633567376, 0.9391168628553639, 0.6345749504792418, 0.603259404175546, 1.4411827470187755, -0.10982775086017735, 0.9421094748765423, -1.2765955326631468, 0.5078580073463975, -0.8000156803564963, -1.9710375131665239, -0.9922316663018079, -1.7634266091267252, -0.28832902528319326, 0.1713805490747816, 0.3854112927491456, -0.5222731853688624, 0.7959130951560478, 1.1844647296812474, 0.7140111440200164, -0.49104613989892204, -0.12996801679083997, -0.5201596774394356, 2.104559945099465, -0.07315517415420116, -0.7425644187075574, -0.12307867352342958, -0.005615287048653165, -0.5228973332693134, 1.2581524787366536, -0.7838501539798078, -0.10998111754071974, -0.34784956319471466, 0.5425947160419242, -0.20826483399267282, 1.038564359137714, -0.7720042918381232, -1.1353371596040283, -0.13510052151638852, 0.9337284892396714, -0.06345917714877372, -0.8440647806214289, -0.25720486685158894, -0.04360897714737654, -0.04320132672633784, -1.3358541807011537, -0.9656269097085507, 0.7565331889590471, -0.8602425785686247, -0.6098161608533303, -0.774883954802753, -0.6423191620973461, 1.5154183619510926, -0.15576635530397887, -0.3548208070451953, -0.09333739287389328, 1.2699748160276396, -0.48503269587666936, 0.2658990896318203, -0.37528227857298185, 0.3096720350199203, 0.6479142816081113, 0.23419497585213617, -0.11330147127257977, -0.29721087605918206, 0.4516524110174324, -1.6067897583480963, -0.2864146732921792, -0.4481207238154764, -0.368420880558844, -0.9032928000688786, 0.9002105623977418, 2.065667251367183, 0.6428001575665083, 0.006778585206894343, -0.013706911165604001, -2.5512794549056905, -0.473564019976848, -0.1487594578638891, 0.3232603077371073, 0.3383279850935286, -2.97908437026744, 1.3103860140752346, 1.760276246671576, -1.6991189120300778, -1.8428008650207053, -0.29289469516020755, -0.2517086134566624, 0.6968193509369496, -1.0262134183786185, -0.9007911498216417, -0.5646927430203483, 1.5522815098868585, 0.4404657969979643, 0.5666160107219492, -0.2684547868796374, -0.7265847919366457, 0.23523863009977478, -1.8657047826918822, -0.9980340831536436, -1.2645881181252987, 0.6185477367060028, 0.19545323747015805, -0.9498047382235393, 1.5745486903265409, -1.5871794046639958, 0.0707999151289361, 0.3044754909060999, 1.6886275156164516, 0.5365539583043144, 0.6308772127297858, -0.622356599478101, 1.4984685664992299, 1.082573833177352, -0.14254925145509265, 1.0979492744964203, 1.409973653236318, 0.8005942842706095, -0.7562155927082308, -1.0203588530044223, -0.6363460605844492, 3.1571280039029164, 1.0907669825248394, -1.0646896196644078, -1.3281096733308755, 0.7055763441869287, 0.45962264646716194, -1.3718414977407773, 1.4518989851985402, -1.5540805905728161, 0.438765471744982, -0.0869205820087504, -0.614729578443789, -0.19293736763568, -2.035837339182514, -1.865056903537714, 0.614518561650414, -1.033122959928851, -2.003078654135618, -1.4427633542943161, -0.6083211527850972, -1.2392053013775584, 0.1629999690560258, 1.5887568581945912, -1.1125941232394054, -0.08024156559449205, -3.0863882975203816, 0.4084136772724539, -0.17601524156257956, 1.5203071583912022, 0.45990508840472627, 1.3542600970790868, 1.645020066619125, 1.939931578551782, -1.2937290920379685, 0.5765146549096856, 1.3668634892718146, -0.582281885318363, -1.2462788104960392, 0.8128072250326497, -1.053392745348057, -1.8537555181678829, 1.369897837421149, 0.6962383803453621, 0.5569715831051869, 0.22448343217894695, 1.5889427286687645, -0.8839589699085675, 0.2867858335500137, -1.6476261875371654, -1.1667579301417859, -0.01780624719040817, 0.34957120183031914, -1.0973773364337238, -0.1635342896325741, -1.2368823632421764, -0.6290693844708427, -0.21103996635761227, -1.0556698779845806, 1.523931081970691, 0.10448568190951713, 0.3782432813407308, 0.12976190044882746, 2.380110149995937, 1.9256621958763533, 1.7473847693206463, 0.4255083677637402, 0.6748468213656079, 0.9532253439922936, 1.4876005982196214, 1.4875908965772726, -0.06536111791026335, -0.5910664551977085, -0.5535447468937762, -1.277354903258041, -1.6165609470580835, 0.5535603939935543, -0.5836218574808443, 0.7148530938071406, 1.0112829372970877, -1.0705383811081306, -2.0592509727300645, -0.014144335809903909, 0.5656979617585858, -1.4948603032041248, -0.2023190331891355, 0.6910040056171484, 2.1279857504412565, -1.4846263600036618, 1.3620369242720414, 0.2731920643521199, -0.03556174651840993, -0.1532621648395363, 1.3418887890332778, 0.3174478636184842, -1.4055858391218843, 0.9733977757394344, 0.8264029846989466, 0.21324783140910777, 1.5552709663162987, -0.8502323151984345, -0.18940209642498934, 0.4458141786196931, -2.241094562670399, -0.2832611369280237, -0.8609857550982541, -0.1099023635508602, -1.0034981779372651, 1.8614721246941563, -0.31895710735051047, 1.0058944769381206, 0.707283722057143, 1.273459176182278, -1.0670991992107688, 0.16706718337282017, -0.1260226220084968, -0.24237453424014616, 0.0060641452073110875, 0.21049768305824917, -0.5083716898866275, -0.10364487089637232, -0.5708608253803272, -0.7384930239952666, 1.4729393631046135, 0.8099784233236947, -0.9720507679313086, 1.1503815408320712, 1.5573627338790488, 1.4803511686776507, -1.4397230935271483, -0.7201257854633044, 0.6423790903951125, -0.18306506110794776, 0.5063982776501422, 1.7883402113273588, 0.1818241766218091, -0.6401040363781677, -0.2947168405748945, -0.3521667050410354, -0.01794886694335308, -1.011101311585459, 0.1754013015162576, -0.6300481834612367, -0.2568320109958412, -1.0925866104171302, -1.1530026046770987, 0.3261801756962255, 0.7737054735796502, 0.0006491280712236036, 1.3720396618925448, 0.5726716837721648, -0.15928964094158332, -0.25656465782984483, 0.4592087565628356, 1.3773335916556455, 0.018915354959161888, 0.19836613485539942, -2.180804725675549, -1.1313466182038343, 0.6154680323734382, 0.18772341732706202, 0.5897122634562432, 0.16941454886007323, -1.5024099426336217, 0.6698954078177316, 0.32038193139224447, -1.2060044050974754, -0.038037691866460624, 1.3643948332609868, -1.0647523723614578, -1.445156756431478, -2.822068987851344, -0.1335111820050864, 1.7171916633818185, -1.0674339288686188, -0.9382431672690028, -1.1063218804524788, 1.0674784307359277, -0.06701964503251118, -0.0029743747560634017, 0.2772532446188351, 2.0748055992874233, 0.26851427537993744, -0.8633289736834119, 0.03953804209205928, 1.020134073367747, 0.8749221575212617, 0.9041177859452343, -0.4868409611190164, -1.2175714065332255, 0.2277149279616844, 0.39855553614226646, -0.31113418716152613, -1.4834856634856621, 1.2845319244803133, -0.20314747446028114, -0.30137803387531126, 2.7671734351806556, -1.1088178737000014, 0.18748476101557357, -0.39483279053272885, 1.595517207949221, -0.30786276948960506, 1.3787560500377145, -0.8682687200472446, -0.9055610663933111, -0.9183167706892446, -0.35940806402324527, -1.0515887155457337, -0.16258933161565162, -0.2017407479741791, -0.9690994231389212, -0.5680124774754564, -0.05702611187990399, 0.7310572726160331, 0.8452225583279559, -0.7000755643236963, -0.5063041698455629, -0.7034953562151123, -0.9036943536872772, 0.6332394154233241, -0.027834187551797184, -0.6303133726761773, -1.6586017247399736, 0.9201401377085789, -0.2868791635559166, 0.34577513743734806, -2.4105863649345505, -1.2152237560045887, 0.6906820612000113, -0.6222348075993946, -0.20501714358467577, -1.5768402007211768, 0.5161613494333188, -1.7007799303375477, -0.47930390971944703, 1.693884942685474, -0.7313739023859747, 0.5014858688695072, -0.5829255513479977, -0.09016396189658195, -2.004231581580616, -0.6772151936425144, -0.3329150110661948, -0.340935940973477, 0.23701511056701863, -1.0953043531863245, -0.6355002856583976, 0.8257683641835735, -1.4198204992010586, -1.053701744212975, 0.6681620614028296, -2.18901298452686, 0.3599095384931171, -0.36579456962027374, 1.427853531290248, -1.094272488005022, -0.33472429642491686, -0.012834067986827416, -1.3916307918058137, -0.5149169611690212, -1.2475563839708745, 0.908614307544404, -1.1344488197877984, -0.18717633896251243, -0.029922890456975288, -1.2760426205984037, 0.6416873690784929, -0.4755490167026632, 0.19297219189897583, -0.2361499806986024, 0.5721739266155135, -1.94443882697804, -0.6722609234175411, 0.37852379090367233, -1.8852155234784174, -1.692409344144446, 1.1810197200793349, -0.5608576610497416, 0.01856904221082576, -0.9991086171917399, 0.6147998026841516, 0.4977887767591975, 1.0678297313480964, -0.6800045959713192, 2.0610768900385046, 0.702106689008276, -1.0340874907600894, 0.6270366662672435, 0.8235739661605548, 0.3007646058199366, -1.455728929721872, 2.4117545546670076, 0.732185471564015, -1.128978452554991, 0.48042677409193923, -0.8747913491415573, 0.05057089991860144, 0.38698475126024845, 1.689661206729036, -0.37542935254462195, -0.11566953784911897, 0.7785314224992721, 0.512036304924378, -1.8836736371726917, -0.26204610572084786, -0.04868647998306495, 0.987831060225666, -0.1769396045167092, 0.6554817817103619, 1.155945001832748, 0.5424964866062346, -0.12114003560806105, 0.6987291408475951, -1.5424595999273902, -0.47162232335016746, 0.5250264447417877, -0.4259976028157745, 0.005324868338594218, -0.20755254208183627, -0.3995710362150748, 1.801065327265622, -0.45197233835538725, -0.6181841046432887, -0.261717502131176, 0.3082116432699131, -0.4931480678265296, 1.10845680237884, -0.5285170393793225, -0.20844667921142493, 1.2193950539722629, -0.7221023127934961, 0.0429684690601154, -0.6154397841163172, 0.30877535371208165, -0.17952271971373918, 0.4705641334331777, -1.5080886765954067, -0.6604927910167698, 0.06118630007887306, -1.3795343263497204, 0.6692319606077191, -0.9237384335448171, 0.43575707913678996, -1.3489485117065363, 0.04276595695878297, -0.2588907433162467, -0.3825743524776607, 0.939689542518769, -0.29587628485605794, 0.3859985310884712, 0.7246472137209179, -0.9668869540037618, 0.6520002774374719, 0.2970567944989701, -1.0339842026235453, 1.033193216006281, -0.043664224385279254, -0.15706189637040438, 0.5842106931138662, 0.22159761054987862, -1.0062850808882216, 0.14474343118627034, 1.1420102094102091, 1.1056357820480247, 0.7821971313935647, -0.5088161788564317, -0.07610791467202654, -0.37178168198247613, -0.3895539339170534, 0.9305337808532878, -0.8969094902100287, -0.9504648972854305, -0.9637695807266211, 0.1563494212914625, -0.6719642439774831, 0.9070729564241508, -0.4849084254412251, 0.2323786839188413, -0.5608626601657049, -1.2316064619328944, -0.07778610930397391, 0.7759958219031633, 0.6860083973337543, 1.0621433791354424, -1.3718026974498656, -1.2712480703836013, -0.929473585893567, -0.18449011754299535, -0.8623471772270587, 1.2167737840984931, -0.6629162341421998, -0.21043801018246058, 1.5647713815747997, 0.9921188360468389, -0.43872271777275323, -0.520278383676948, -0.16697115878934293, 0.5368167522177976, 0.999311985126483, -1.0621947064412178, -0.30569157608839514, -0.7900748685709379, -0.07038735772021065, 1.8361049164767576, 0.1981838583626877, -0.5799152369528647, 0.5795926769598289, 1.0277430765165718, 0.42961932439397366, 0.1593924587819955, 1.6980586225878673, 1.2311950639547107, 0.044087459255409474, 0.6156326179559723, -0.3287453265304863, -0.16800686281621735, -0.23249130323198128, 0.7816683649259626, 0.09358958691263096, -1.113621209447014, -0.22046086255516806, 0.04608063283914156, -1.2887169978923292, -0.5340700647966313, 0.7957622869370095, -1.384375519245777, -0.242979295973563, -1.6367262904840105, 0.31587311932300044, 1.5155633287150738, -1.4816069743890965, 1.673103652205686, 0.2219684410430296, 1.6787494669596141, 0.1532437478754284, -0.5746189250093524, -0.6437138354362615, -0.4545412800302369, 0.32809939135176996, 0.6671944609939018, -0.2039993491222714, 1.3887521074039253, -0.1510614833801497, -0.4757728643131707, -0.8397786440352885, -0.8845414979487853, -1.2256789459592046, 1.279568924963583, -0.8268953252609982, 2.188772136564117, 1.381424180989576, 1.5387789153071934, 0.9309003978053589, 1.317760686988303, -1.2422869497100595, 0.7694343463280389, 0.5823630293458367, 0.06365466462538284, -0.28576011522102956, -0.16544579103600154, -1.0154850452058273, -0.04473177021974158, 0.10405295741645737, 0.7343914902260971, -1.0922177289113375, -1.1768863486525594, -0.869318495586374, -0.03425002377535979, 0.10878536976487865, 1.6817726231462515, 1.4377535313329834, -0.3408581221481451, 0.961562888381545, 0.037273785815761226, -1.4042023752262358, 1.1658719938909372, 0.22019563439276732, 0.6295018786562692, -0.7362626122077212, 0.13619240021428988, -0.6604212517569771, -0.011286440477375653, -0.19478732264887544, -0.44836887484296306, 0.8251343190187838, -1.7288573863086116, -1.2993516366332662, 0.8714985177736825, 1.0004706885379817, 0.4592033583398625, 1.8780916775556447, 0.7753502035373352, -1.112478198863772, -1.2376358191566712, 1.4500429433265727, -2.8335950944558106, 0.6205403597927948, -1.2072857285288725, -0.32184047439249364, 1.2414104161225947, -1.2108836616363674, -0.9722810266110175, 0.29814471639191625, -2.303270222856393, 1.3580593113414758, 0.0817448826393505, -0.4117586923675074, -0.1717934575908583, 0.19290723892129918, 0.7260473558233388, -0.48957821718613903, 0.9406980950272547, 0.5402401983877146, 0.43256676312139286, 0.5668084988153664, -2.182669685146699, 0.5141391650614336, 0.6054398773780421, -1.7551411673165869, 1.463165817777697, 1.3349693246544558, 0.022650711149896943, 0.38556606535564, 1.0101093679878157, -0.1737096973983507, -0.471952266299534, -1.2417254652886547, 0.7069133982384799, -0.8267692611309668, -0.480623711124534, -0.381177267001525, 0.7644460513614711, 1.0754682395998676, -0.005306901505949005, 0.6809756309251233, -1.765816878566996, 0.5541665308651919, -0.0508801417515057, 1.0481628744217195, 0.1355062237512649, -1.0341061069248254, 0.26449311373687034, -0.555295671072481, 0.49018596701477934, 1.7905934751237702, -1.121565408791221, 1.0879518300109454, -1.652597331908968, 0.7234032577009435, -2.335868869137504, 0.23721647077755204, 0.310849943405694, -0.5154121833429203, -3.453539303366281, 0.6432970098757916, 0.5438226008648349, 0.0947685745145777, -0.020572963025698766, 0.14783721363746422, 1.1849284006501635, 1.4140079172072066, -1.1934134371210698, -0.5460913961226419, -1.514270438979863, 2.022590630647631, 1.7352216169925616, -1.4169164674027426, 1.2672325553842247, -2.1627177562421824, -0.733691488015645, -0.46979599241701914, 0.4265253199485235, 0.7556226563867313, -1.3555300420479732, 0.19518639748798985, 0.0748265147049572, 0.8169049060677034, 2.288270155127649, -0.21638439978812865, -2.750074344755822, -0.6238632583608323, 0.16601976369608049, 0.2460464060602988, -0.08948538557426473, -2.1986679419519697, -3.1997933069407662, 1.432029037398035, -0.14410856703309394, -0.4538271742909215, 0.566323799124262, 1.124611447196042, -0.984466637709884, 0.9647544744850818, 1.105882717250826, -1.6073885794512401, -0.8067843724251629, -2.9103960550716104, 0.2664396427757277, -0.7418952741736079, 1.8369557414901376, 0.1333369508848314, -0.056158033865530366, -0.0024357785215700996, 0.20086751355452684, -0.7583108551017613, -0.10120176479463006, -0.5264154785114797, 0.4676513852742285, 0.08630398195952944, -1.5394033918801875, -0.9850879209107483, -0.4036953106657304, 1.1159942127309135, 0.6105626983609029, 2.8005766623249393, 1.5173496101333648, -1.926724168012077, -2.0930218362221837, -0.014897117971806926, -0.5445283780197387, 1.2434198334905127, 0.48006235653708856, 1.7550952521724776, -1.5887214197479576, -0.7918258197511839, 0.056322926976260256, 0.7671757400334064, -0.3516455198392288, 0.31614845071597214, 0.03682858223265321, 0.17265607155301493, 0.4177903413575776, -1.3513933582107984, -0.6261829352530223, -1.6806381503679455, 2.566236468477545, 0.10395996232874972, 1.3952400136216603, 0.9110516295086816, -1.4528749823545428, 0.538836464543832, 0.9135255363177387, -0.22251840444075033, -1.1704261354610053, -0.41603764385306985, -2.326026937069382, 0.3433141525045127, -1.0632933420832038, 0.161602071119746, 0.46289880121060917, -0.030776075105616578, 1.6315009343885858, -1.3926112402214004, 1.3592868340777502, -0.09041222287021365, 0.3862976914021945, -1.944261150147317, 0.3101321876239227, 0.2510145399251059, 1.41426773584079, -1.7518360052827506, 0.8744239795279256, -1.5300901493861028, -1.2988961510538561, 0.21767460360411395, -2.0930816443780538, -0.2610517256706078, 1.4669179921560145, 0.42658678664100846, -0.04719230409341796, 2.5899306562667594, -0.37138502605606544, 0.08406913883118616, 0.7010780831713589, 1.291031860093563, -0.0544495764611539, 1.4623640955135424, 0.9835683469192675, 0.0039041411328917435, -0.12348000916836441, -0.20776701095577232, -0.7678473825929518, 0.4254955759297105, -0.29850315786053166, 1.040035517909064, -0.6557465307677889, 0.5425238985053414, -0.7678551158451303, 0.4403083917623942, -0.8335891709296152, -0.3645736418243952, -0.9211389281072936, 1.062171637276861, -0.5311530333417731, -0.32772366849874895, 1.2890388718030619, 1.17657976302586, 0.0065405065136529125, 1.1217968716496993, 0.7923640083646843, 0.9943000007251266, 0.00016467368458320076, 1.6393594947915, -1.2467847215984589, 1.333583170787661, -1.9877855043137105, 2.8028578196091596, 1.6384801773596973, 1.6422659506634318, 0.15301225179405767, 0.8622984610170611, 0.03890003252192584, 0.9146511749482928, 1.0370097144451376, 1.066527076982438, -0.16974866094617538, 0.1504404449560201, 0.10118913849007441, 1.209960619011605, 1.6020106991426701, 0.13610774760726138, -0.6925562241030193, -3.7765913186856768, 0.13737865568526406, 0.3043909585114907, -0.023164850981221313, -0.770746065833885, 0.1295993005542191, 1.4924715513620463, 1.3009184254128268, 1.353101370120655, 0.20457190657968377, -2.001061657744971, -0.21958699281397442, 0.12382879688630476, -0.27597727839019026, 0.03365931380795069, -0.08638907660990226, -1.1330622595706372, 1.010909001485484, 0.6249216814573637, 0.8496181631810497, 0.17648704792504313, 0.17557017652134965, -0.12400430072946515, 0.05249562509981129, -0.054433760842650114, -0.08298843598222716, 1.2202953457523766, 1.2018479305371126, -1.1655855452265944, -2.151237463003173, -0.48951682036267463, 1.5527016382167977, -0.17028831383678342, -0.5857379403456814, 0.06799786543309358, 0.20499947961722276, -0.6010548737256467, -0.4638248647592124, 1.2081560523176404, 1.0995695317110572, 2.2738697987549754, -0.8627414666751264, 0.25500163058089176, 1.3718012404637865, -0.46079273378955143, 1.102827037828782, 0.10972998247232997, -0.7386444283617458, -1.033816255571865, -1.1938487265282252, -0.3271759465610923, 0.4667740654044131, 0.19589527018274192, 1.5665298681054003, -2.1723896049922846, 1.916446766175648, -0.11034362059584651, 1.3041250456463802, 0.16133165895403032, 1.449906746277825, 0.9202835925085646, -0.5622663406571298, -0.08392980110209179, 0.5981975538793536, 0.8393792942628503, -0.7037599264914426, 0.9735324811964279, 0.5530333635836594, 0.7840255292730186, 1.6021042992324128, 0.9193867128984297, 0.06781513206358605, 0.5068146496632359, 0.736142268919637, 0.5378506849455552, 1.2071315157253426, -1.059462113632509, -1.8330301103708542, 0.0034221278008178826, -1.4708566096747229, 0.5504789384541047, 0.2554640809480505, 0.31232837559343835, 0.14132066908028187, 0.5896090863105501, -0.39494935180539764, 0.004093935805678461, 0.20166721786415998, -1.226595620544089, -0.8760189899615815, -0.2796479088201861, 0.7301279212254584, 0.6983506167089218, -1.0566516454909274, 0.3971613564692292, -1.47008202569131, 1.1387870924655157, -0.5853766309417878, 0.14147470679623245, -0.4459292673201412, -1.8647492521747167, -0.23302633364566824, -0.9542838903973515, 0.6369043511185599, 0.5438452962560153, -1.3806175472948308, 0.174725751224978, 0.7308838599109445, 1.2259584498058669, 0.33505361798257455, 0.1763671680514675, -0.0655259483018985, -0.04008626239304278, -0.1878755644012171, -0.20650693921618132, -0.5729095054887204, 0.7559396096236999, -0.06981792883281494, -0.9192250952289167, -0.025375553876142484, 0.459253625003786, 0.9065534767387555, -1.083245810124369, -0.22298165990109742, -0.40750295305930306, -1.1394306741051188, 0.19435057038703138, -0.9570903102911303, -0.6115286628277475, -0.7227824318636404, 1.2304954110608408, 0.4130431954644422, 1.1565522615595716, 0.17685450229947142, -0.14902927481264133, -0.011236904183839958, 1.3388572175079254, -0.00211684187364179, 1.1359429324735588, -0.15993021941344807, -0.2944389622238225, 0.6008894989443092, -0.3467151788290192, -1.1253953672548456, -1.4320185343018585, -1.9535293238377651, -0.5505350878680414, -2.220401995265728, 0.29953063395766694, 0.06259753712595982, -0.816002639394446, -0.4000333473146081, -0.9885224529017621, 1.7263090122973863, 0.2402727498359614, 0.9730911904805444, 0.6570980315064482, -0.3871093227682639, 1.719562088343671, 0.05576223459144034, -0.029530030787455853, 0.20872640129691022, -1.3152564249941667, 0.5797662018258775, 0.2694061556447465, -0.302267975324544, -0.4763546643391249, -1.596971712249391, 0.41119885613520546, -0.6630269223821493, 1.2657175439550163, -0.3275811299475416, 0.13434780429254087, -1.047600684725774, 1.1956557285531844, -2.1863968533060723, 0.23518500648019336, -0.7267719716311503, 0.9797241767534155, 0.7289512961433283, 0.8969474315035396, 0.8560004495828222, -1.4543395666264551, 0.9295485567405734, 0.9911017277508669, -1.561465277784479, -1.521824011216099, 0.6532888193059367, 1.8921304102305696, -1.171000485236172, -2.093629203564671, -1.5793746912140283, -0.48729458512853724, 0.9331921671697397, 0.6073811611047851, 0.35224852788821437, -1.929172493773814, -1.097552826747996, 1.65107759203352, 0.36570773439222304, -0.08648806040721657, 0.848534265354123, 0.07016411715763807, -1.3221577408637482, -1.3436337851895443, -0.27050250286096233, 1.4721701282736808, -0.7592920943137763, -0.6824266135194483, -1.086165815259512, 0.4733961552710135, -0.12553099963511416, 0.46737358857487704, 0.6614485411381263, 0.6171889294848636, -0.9661706858596639, -0.1256557334395471, -1.7081925655083559, -0.5817983213337068, -0.18554996634833498, -1.8340765756994428, 1.9339334895830353, 0.5788699981613337, -0.3869604701586401, 0.6266535684922228, -1.3570556555266244, -0.806696645630126, 0.20608674329608048, -1.013809202060091, -0.7995690614346621, 0.26677822348859964, 0.746137438653152, -0.6231468687332702, 0.12258165371145975, 0.8115048091550697, -0.48072022670202585, 0.23008207645649406, 0.06625805066461761, 0.5447515265911714, 0.8489776153767468, 1.1959509781955218, 0.24309394747161708, -0.8174939458493626, 0.11269524345005841, -0.598319102769075, -1.2017218436373145, 1.710026430498153, -2.047084674385698, -1.8210512285962226, 0.9505697486348114, 0.8829139570285941, 0.5658602626600213, 0.897886497993294, -0.49416579672233696, 2.066564342006468, -0.940973682040644, -0.6099981637483877, -0.5048836870954035, 1.349383128538864, 0.7979308668178047, 0.43081597873209465, 0.5643641306915108, 1.4857982150904228, 0.17258635281661555, 0.30917282212807695, -1.3518880593175506, 0.02125170699381028, 0.3812166569474493, -0.03500094808956484, -0.4097158585645104, -0.13902211906671785, -0.02856623500463063, 2.224345865998851, -0.20988604970808333, -0.224615113462986, 1.1783539350911219, 1.5879175153373006, -1.1976872168708024, -0.5980044309167303, 1.2486027157182775, -1.1515942180099767, -1.0157496599166906, 1.9443950983704543, 0.23206950453524464, -1.2653231031933663, -0.03406026636690509, 0.5144114246814991, -0.7104972085757748, 0.30500737566821523, -0.9076061264641884, -0.39974741505259936, 2.0158812874190937, 1.1788570919586299, 2.07669217339711, 0.4045897632355618, 0.37508495007891063, 0.3329060145838173, 0.40320281496401655, -1.679221842431226, -1.613775313156528, -1.3304974512594927, 0.39893959751006525, 0.2390409497038375, 1.4996803972464399, -2.226566325164237, -2.127644695331211, -0.00518261422089262, -0.4222799177861303, 0.38273350583827304, 0.46539495005648884, -0.2950878509843365, -1.1337334342967302, 0.7737091734204792, -0.2702132868755555, -0.9961961288934051, 1.3281588096973587, 2.161095870791709, -0.392153192818159, 0.5413692031456913, 1.4441921733166379, -1.0737692408579653, -1.1388005104079546, 0.8050115715728722, -0.944156150763293, 0.7131058571056214, -0.16101156722178891, -0.4789017782626954, 0.5902532068075912, 0.4760658340645796, 0.6688009493431754, -0.8813037993273549, -0.8751675490337786, -0.22992435251545773, -0.5521481706979738, 0.5369108785151137, -0.04023660033487673, 0.24577205584123513, 0.8615997670514103, 0.16987936311598817, 0.7070347332057761, -0.6761855453910954, -1.9337833128644561, -1.7914772964531671, 1.4478764431825557, 0.08726472330295573, -0.292118342453428, 1.1312408719720783, -1.8658066755625282, 0.6807326472631107, 0.3395316789872575, 2.0153387728310137, -0.5088478107027561, 0.39261204385682685, 0.9194590152252313, 0.5519222668820621, 1.696314453577605, -0.9043963391138802, -0.34354365243995616, -0.6255294394986591, 0.17467922430460586, 0.16446535691833572, -0.8907554004667092, 0.014347057039373804, 0.5015435116276686, -0.26641947027658935, -1.8136379214596017, 1.1375448760539288, -1.2801154164667699, -0.009360952970496574, -0.08722189060716949, 0.32462050941286835, -0.43068172410638883, 0.1706200296988723, 1.0995427338584831, 0.29308387146337916, -0.9609698875115609, -0.1702981463355914, -0.37609161215079673, -0.01856016510147787, 0.007908275630758712, 0.6075824229828263, -0.5407433106060785, 0.8206957251781618, -0.49901640979186196, 0.7978739869185489, 1.4780452550153498, 0.46943376264562187, -1.700882161076812, 0.044549528577369595, -1.0342425123364953, 0.7331119587657937, 0.19398728191670436, 1.4813296161850484, -2.3372584489284467, 0.5117269637521481, 1.1527744608904493, 0.6685406661050629, 0.41891127427260066, 0.23825561559474934, -0.13269729960503318, -0.6828767232879851, -1.7125177856216698, 1.6732079693838706, 0.9965575539872484, 1.061300410679062, -1.03630932585166, -1.2872705045902748, -1.9508210046820689, -0.3843798646134773, 1.4481376979007843, 0.8853015130582946, 0.2551889037769337, -1.3194749460739679, 0.8825439075694023, -0.5703242875652015, 1.4654347750890138, -0.4323669437514303, -2.7647473882583413, -1.1607633702550342, 1.605650854895937, 0.4787526351810724, -0.3001549663942004, 0.37169553837771346, 1.0638152582061702, 1.7719960494256504, 1.9112711790180288, -2.1735753709748153, -1.1643018753681647, -0.9304104509647976, 0.2883059474204157, -0.5366653470975579, -0.675724771751169, -0.3712038385538806, -0.47088296642030875, 0.7796287293333831, 0.8470171562076123, -1.2114462295369004, 1.2057151004871727, -0.5980452796607701, -0.15407519354411212, 0.30849545773439224, 0.8659476771908168, -0.2822955006689541, 1.0540767290264252, 0.7128896635301808, -0.6153204295936135, -1.3785072272773282, 0.27136504336075906, -0.6754511421879312, -0.5148984131020494, 2.1426166334521466, 0.13772481346377022, -0.6000487102631764, 0.7652395992797059, -0.1728750234570893, 0.3570299792606313, 1.0120555989608953, -2.0208481695011487, -0.299417175284942, -0.6803752240804259, 0.6149682095230092, -0.1209836921080693, 0.5637673486474486, -0.44293502782548294, 0.10017926710859577, 1.4234639017605726, 0.713881396984194, -0.5108240734090161, -0.39840652573076873, 0.6698575363903424, -1.5244856117082988, -1.019406717879736, 0.3711372231014941, 0.9044541860976812, -1.0301950795271482, 0.9851012171753343, -0.3550009915965924, 0.5267700778013588, -0.1631700653685392, 1.0718962811793866, 1.0230546429009024, 1.038436862976236, -0.7618696531002871, -1.5426245130376457, 0.4506082764632435, -1.7883702757267417, -1.906822656873164, -1.0941305808784583, 1.3893083947329634, 0.533790335048016, -0.06330194611984244, -0.48198620623390037, 0.01898000502082501, -1.3138457180335528, -0.4179116309531809, 1.264136237259456, -1.1520324638926458, -0.3318904444634667, -0.7911788935597085, 0.41715885466833613, -0.37650858528714615, 1.9765265046524818, 0.6240655681667758, -0.3686833801598722, -0.8190419366896851, -0.4701690154321676, -0.48096494388379823, 1.3240115295585286, -0.6564983936565014, 0.8692988752175794, 1.2429772862495752, 0.13200640019295046, 0.391213567382299, -0.7967281628837478, 1.3042951720156732, 1.374506845064383, -0.26226483652909527, -0.28942433258099903, 0.31707992224550235, -0.23273353412642114, 0.29165831630586125, 0.5166154857626382, -0.02918197655051601, 1.4485530851986195, -0.12898234316748788, 1.4823953437456434, -0.8987990022601033, -0.5373843298587964, 1.3044887281534023, -0.549454091193609, 0.24275158588933707, 0.7151405491179592, -0.8803154687204423, -0.2010552924031431, 0.7015241206079236, -0.37784464455462047, -0.07947046638582676, 1.237201834840779, 0.09303189018016086, 0.4818470669013178, -1.800777660973963, -0.23035491813244643, -2.2366251971624864, -0.0025810037353451902, 1.4515927325353621, 0.8379163960951924, -1.01482460482138, -0.14737082639006152, 0.1849790693359199, -0.3795608034640243, -0.7992950724945234, -0.3772383801959624, -0.784596930480109, -0.862371964763298, 0.8270988640984912, -0.8934749464331041, 1.3685913103506522, 0.5806946399745471, 0.45385424408936775, 0.44076034083246396, 0.8223326970674186, 0.1667779786802865, 0.9494760001780166, -0.35457410284303764, -0.5754258483727005, 0.2171078470878593, -0.9062502466791105, -1.4124982876363137, 2.2599539219986893, 0.3181677315699462, -1.6657662474727155, 0.025322724401984062, -0.5608197570487886, -0.03163759184892673, -0.2760135421334852, -0.017940664428624343, 0.6215280167431573, -0.31857319674534074, -0.22274053169794758, -0.5492713044869573, -0.46601827044482336, 0.3394228049597658, 0.04723409062966148, 0.9240701370285461, 0.7168090196269621, -1.6765896337009216, 1.4174927559879666, 0.19954213562159054, -1.0534632417508096, 1.4040185867624264, -0.8669651579150185, -1.9222185777196343, 1.493475469553866, 0.0317985646927632, 0.6259050874795244, -2.4776143790584544, -1.4766282457925237, -1.0785168686725926, 0.6934297775028725, 0.15889883092175225, -0.2646070753355633, -0.0959158089149027, -0.6044467247506563, 1.2341726677232572, 1.6404980468819705, 0.4361218560825764, 0.988684703610048, 0.24018323947867418, -0.5534748571772535, 0.28785295627032803, 0.1206779744359419, -0.12337352551568047, -0.5148401456393314, 0.0884858776729018, 0.6100978990676665, 1.3712990480144935, 0.1502612056174764, 0.2790845470725486, -0.5514993376521334, 0.413067237234684, 1.758605712132847, 0.15929718094906362, 0.38833013909537456, -1.8243928735456945, -0.5490186157747425, 0.05008382468380361, 0.42748489087642294, -2.373020068012163, -1.5060833888815661, 1.3946341708459182, 0.8519393339444452, -2.194211724934235, -0.011169337142748948, 0.31167180974466535, 0.16022208601707363, -1.3991792148493425, -1.462617402071123, 0.5177832998273241, 0.3999788928721896, -0.7588511885403831, 0.09761841898537782, 0.5944853513710305, -0.19218536631786026, 0.013693076739528257, -1.584676249265238, -0.9397911663679652, 3.0266954599452784, 1.3845079231933504, 1.1376185728710866, -1.171072755650006, -0.7262259344260448, 2.0927548183466276, 0.009424206380798633, -0.923791215066428, 0.3406568528991316, 0.3327352302827455, -1.2079756819142449, -1.097114121246512, 0.23229005832599686, 0.7389613257010171, -1.6830887770199883, -1.0630501358963633, 1.6031675050053473, 0.32543996469717357, 0.308671182587245, -0.6968191518601636, 0.34948581315418015, 0.5837984300561723, 2.0783645601935383, -1.3931993863865992, 0.1201153999893361, -1.103267009495079, -0.9852727418235238, -1.0910187295290374, -0.05908643516154261, -0.45844482499170697, -0.8198419178331214, -0.4143583897130741, -0.26107060051130454, -0.5331775756194371, 0.2111236206974063, 0.66558180692845, -0.5059216560935174, 1.61927170707641, 0.21108993633361578, 0.25056814199046906, 0.7875385269511479, 1.0597937897101861, -0.673885963745917, -0.4258924144781782, -0.8718838728319658, -0.8373015771803389, 0.1466878315913218, 0.01131117737687232, 0.1492149184453605, -0.4747142853038377, 0.8958420030011477, 1.0534337783787935, 0.36680491285527744, -1.1252690898461475, -1.0698352128300326, -1.5710995007230595, 0.6926141932898077, 0.8469104852578184, -1.250074642632133, -0.4962687427047482, 0.22925125321839102, 0.30579872571354344, 0.8813991030572614, 0.23992927119114854, -0.09465867084554105, -0.19629246643692722, -0.7139637057241865, 0.44640099215171347, -0.10178133678156627, 0.4696964449710637, -0.678957576026612, 0.48906929117617176, -0.5147760587510057, 1.6600190605695662, -0.4190073288182123, 0.5018948663618136, -0.14465170430983593, 0.31470815196384233, -0.7016665326828408, 0.1893806819846752, -0.3980417708371401, 0.6132130267396132, -1.254606087457484, 0.8303276047897051, 0.06942917996082906, -0.15823048672386725, 0.43109517584199664, 0.4128216685754114, 1.8779975458790648, 0.2402564173353325, -1.2313434407568826, -1.659300609603565, -0.004098812717855723, -1.3119269127376065, 0.5066540379979801, 0.0821986812771125, -0.06742194193119948, 0.559443129083296, -0.5820709934082307, 0.09019086062159185, -1.1628352869777827, -1.2831093698123999, -2.279310273005458, 0.8763134948466155, -0.021029249539175853, -0.8459416330034956, -0.39055641636957056, 0.1233599195289644, 0.2606356552300679, -0.09888459479015983, 0.32369897879543097, 1.1593951814152375, 1.5700886862147412, -0.36746004999689924, 0.9193634312857137, 0.040414490001391905, -0.22946411868259842, 0.05914531637543973, -2.400795233695899, 0.0986632714961769, -0.24702369060961848, -0.537184779340198, -0.3483264823023733, -1.1435128728274127, 0.4440334161467617, 1.2270081082221151, 0.348971935225256, -1.1784490978231745, -0.5720226715644186, 0.2793876330851309, 0.23368563251795677, 0.42131851804735165, 0.5220549820865125, 1.173114476734402, -1.1878134184198537, 0.9693730082712908, -0.4938975937525214, 0.6398720678734122, -0.03834547055356599, 1.187473224919411, -0.407915206727926, 1.2073424731229445, 1.4256562294455037, 0.08970858315375337, -0.11685917215259102, -0.14568731629569898, 0.3968900317246058, 1.8361974479814749, 1.4072848915065002, 0.5061624100399948, -0.1421444313306563, 1.107488913676129, 0.5818784970976463, 0.33931264184300847, -0.7405877044171546, 1.149216841916394, -0.498426600229577, -0.02078963252560143, 0.700628754300727, 1.5090448298277575, 1.0691751310262883, 0.25927254907135316, -0.4089865514634976, 0.6349487186198293, -1.6971894583787235, 0.8163624926011545, 1.2196164409437626, 0.9073157493988826, 1.3706061614389737, -0.7744085248455471, 0.2725162903405975, 1.9059264181465245, -0.4843836604359601, -0.47805503778473507, -0.8356492077956219, 1.9098556331082848, -0.7631863641296809, 1.2016424892344262, -0.7794278709305065, 1.665649853473283, -1.7175496579739133, -0.29056419310574166, 0.0733344802030305, 0.054794447443106645, -1.1930466190948286, -1.9660513930134997, -1.8690011215630498, 0.29314080121511443, 0.9115103085046996, -1.3714534987368106, -1.450309197264924, -0.018774391440199552, 0.9160945089956842, -0.2978942203666804, -0.846040305092538, -0.09338377728270049, 1.059978255832479, 0.48043685587046164, 0.15072829989923664, -1.2683304465091823, -0.304590988667545, -0.13783737330719423, -0.5445715783384093, 0.36398485335683484, -1.9037516050374501, -1.4556021535224075, 1.0802998854121038, -0.28150789839635615, 0.07431074059114001, 1.3663921083768609, -1.3164422410630778, 0.222909845526984, 0.7802526857920276, -0.15975380653940047, 0.8195794102495093, 1.4431271160979742, -1.5840464629786701, -1.014004753305208, -0.28778693291829727, 2.1174714122896856, -0.2733419224609037, -0.14373489249916954, -0.052449895647042506, 0.193838374314713, 1.302524015979916, 0.485896243800144, 0.03464504751386954, -0.593170473270782, 0.19003181750450535, 0.1696114944500529, 0.841546003912429, 0.7896459691519213, 0.4886740141001491, -1.0497985832534855, 0.30280310660839477, -0.6042201541055313, -0.9545812252345545, 0.9277226278218365, 1.3254454055331217, 0.8503315440608534, 0.6296293216666469, -1.6118747542305485, -0.29178081996414995, 0.09653136356769441, 1.7917146678117402, -1.5667863268301032, 1.0254958800955716, -1.2951854968752414, -0.376183183357279, 0.40613720252091895, -4.07837677747591, 0.365565634161979, -1.3602600665450102, -0.3920872027705757, 0.902863630900212, 0.6672914244528264, 0.09189105002974904, 1.0180942962365078, -0.14800071109347038, 0.41699846313342076, 0.6826481318312639, 0.8891317030680286, 0.6186027733971338, -0.5892610502664443, -0.8364169443901247, -1.9768887006601945, -0.3310551846243673, 0.39948938365233716, 0.6113918057577544, -0.2195118629025672, 0.030442440106497916, 0.035655338219474024, -1.0314246926156045, 0.2613775390436823, 0.19479502144614735, -0.6017259660465811, -0.2024916385680465, 0.6718272532312255, -0.0851696882926291, 0.6560518867168805, 2.2947004947279526, -1.5296362879071979, 0.49215648922438904, -1.5685303422785808, 0.9584050411368241, 0.7389584427148822, 0.022219421768486874, -0.7651745165852948, -0.37273292807160746, -1.3517685857442159, 0.765576532651216, -1.4527531053794178, 2.3699106748661403, -1.3400124319501683, 2.225578207759765, 1.4064388220143422, 2.1863355875431028, 0.42402639352767035, -1.0877305904294214, 0.8704484541800165, 0.3163827262463334, -0.7551604146703449, -1.0763397163204185, -1.1313054196068468, -0.5639048720339653, -1.4658543597629292, -0.5107488739917274, -2.0971221824564332, -0.7397769876807858, -1.2341788700983949, -2.3801610021663184, -1.2456339447950489, -0.9641853584160809, 0.5199093921560859, 0.20653921509526024, -0.21276696270713144, -0.16736478701028826, -1.2177386604917972, -0.003021380207991729, 1.0232787938548908, -0.46735647038130984, -1.4752167923528468, 0.7884672650918637, 0.5119706442498245, 0.34649444684532016, -0.24496465566987805, 0.19988998542529016, -2.2569912224715956, 1.3263584643122353, -1.7375528915215113, 0.582752084175171, -0.28708651665779045, 0.059673664016228804, -1.199769494316134, 1.0414918962399073, 1.3145411195028391, -1.7125495856963637, -0.9797795327868585, -0.8264341622987034, 1.3329170452365888, -1.0041430483596445, 1.1927523840897991, -0.7894708558049364, -1.0445778803679677, 0.022308041736745714, -0.45056637753770873, -1.209995743099761, 1.6845992564839845, 0.4778763222312091, 0.33877255907268583, -0.5360191481138987, -1.0917296157147458, -0.1655810773829385, -0.5181718967404142, 0.10899370123534048, 1.7787227500582998, -0.891686983764491, 1.1160532088372637, 0.08757880818431664, 0.6780741166817914, 1.6147465829401637, 0.24998905514684175, -1.3049804462832717, 0.2363850492536756, 0.7195253145720552, -2.975122140054598, -0.5252334383430396, -0.6747154071440593, 0.1169633364222017, 2.2526073189323563, -0.9044909782998478, -0.3566558249817976, 0.36764653938218805, 1.1443309036469536, 0.29342214196357, -0.2006187772213388, -1.2020088754283857, -0.9834643054282896, -1.4996572596033997, 0.13465522372482136, 0.17011968477631323, -1.2514610296284343, -1.0463669273246012, -0.8007428672416178, -0.7727300400500805, -0.4637069043732852, 1.1554938074890562, 2.921859387130959, -0.01359378607761532, -0.1601396299675025, -3.151367104465193, -0.4007146398734001, -0.8763802937172247, 0.5955936518202991, -1.434866353602046, 0.42972206925783574, -0.21820441614004077, 0.18245760804455827, -1.4606752235139397, -1.7159831199153208, 1.5705910040019606, -2.3175491620968245, -1.0799979774258468, 0.41249334813174404, 0.6114204157532072, -1.4237168231513018, 0.7252460110201002, 0.6643299794395096, -2.0026568868072023, 0.568859128379306, -0.49995290686848737, -0.18134206983475543, -0.22837478369142322, -1.6419725857853569, 0.3091116902137526, 0.44962628669891336, -1.3163521038761274, -0.6327348357239915, -0.7435716001385158, 0.1377970823607474, 1.5234847809959475, -1.5911508738358835, 0.5310955505831466, 0.672684390609007, 1.7253699594299838, 0.1824153633631289, -0.43199143838794435, -0.8401368522023824, -0.4863533338277281, 0.08780102913351583, 0.6008439899911081, 0.04730156609222766, 0.7897785651358933, -1.0283590818349795, 0.06031992752197112, 0.4157352323050646, 1.09832062554193, 0.4838972405073658, -1.201418642410227, 1.3400102790486534, 1.436211966373376, 1.2473679095482084, 0.26064581096290984, 1.4986856344467707, -0.7445000150938297, -2.039625208725131, -0.04977981781747304, 0.8874258530050677, -0.4304489213248339, -0.23975785871162897, -1.6620618220073249, 0.2075717963375195, -0.6250353090323455, -1.2632522675933304, -1.6878099794708625, -0.16904177961476907, -0.577448856649795, -0.22259919747930798, -0.8089928787466304, -0.9760481086923275, -1.4015461321821079, 0.22967507351925176, -1.644853616290226, -0.9444628422833468, 0.18924450967110862, -0.13214773377267147, -0.11199475509222467, -1.3835086178641622, -0.842572263232788, 0.2582160971855133, 0.07027603298594379, -0.604554008042894, 0.990400642952579, 1.0528746505152233, -0.9875310731974918, 0.02123040169997129, 0.4689196834580943, 0.3049324699648013, -1.3348357534749686, -0.546752236540708, -0.8910356922029622, 2.587410587954809, 2.1560971900949406, -0.3327544218966276, 0.5153397717191357, 0.6155624436136902, -0.059486677672323136, -0.3010972938170391, 0.08219518272445854, -2.035775468855862, -1.5675623705673891, 0.17768954078525426, -1.5630301342058301, -0.655440989903821, -0.11441240906906242, 0.022533061763488047, 0.9964983546281575, -0.4837028710903568, -0.1112098250452548, -0.39597183679041315, -0.8562768431284105, 0.2525342393974407, -0.3729089173267221, 0.22320084556306483, -0.9855612326293005, 1.4747509924112854, -0.6096788159723829, 0.6681504153777874, -1.2073372974675112, -0.2950906159371671, 0.6501669011003959, 0.857262786809318, -0.9744804138235947, -0.023066352403904103, -0.884773418639746, -0.4990134514693831, -0.878278740109016, -0.9638233565137465, 0.24403855261541846, 1.478717876170533, -0.9662261153381535, -0.6583807977556425, -1.3888756961764575, -0.450522247173894, 2.088346768032379, -1.3274477817225194, -0.3370345379969177, 0.9730975034772759, -3.2099881324350372, 0.32433830085970144, 1.3768979591686303, -0.8185319919793316, 0.3626274058485766, -1.2577268209470491, -0.8658454253590957, 1.073516315323151, -2.1225038496946427, 0.7596431939260687, -0.20531378721525, -0.17059812118364645, -1.6409016663727205, 0.4240900228020227, 0.4556656757580189, -0.8570251114068399, -1.3872813794713401, -1.972698615410014, 0.6071645042675463, -0.34244967445839936, 0.9051682438757251, -1.05038805110265, 0.15086653721483817, -0.1430040334994945, -0.16390973240867956, -0.5238040978356998, -0.12585258297513988, -0.31684307032349274, 0.1556033180080751, -0.8222577311769278, 0.8059462195081282, -1.390424084855399, 0.44044981379594134, -0.13215465996167133, 1.3628360091583138, 1.728171966465232, 1.1786437995121595, -0.7198730975076518, -0.8986943382429079, 1.0397384940394025, 0.4001282995069831, -0.16155460331368285, 0.8862527651207914, 0.44231422575691964, 0.28575345254186013, 0.4624166115555558, 0.723249134987221, -0.1713453088352905, 0.1328250197769441, 0.6639043658183091, 1.5779182199358965, -1.1175729202464026, -1.4045324593657915, 0.6390856601388586, -0.7131926133210825, 1.615354894756807, 0.4485414954384428, 0.9591480102514397, 0.5351845868770603, -0.6582401751952957, 0.15129944764514286, -1.444986224299964, 0.7289893276085702, 0.7638356079348978, 1.4792946562870788, -0.08239873035485142, 0.22972326439579277, 0.2793980424721604, -0.01720327437722585, -1.9646997198843255, 0.49049105711926105, 0.48890204146129096, -0.8841467508916524, 0.8022619052883928, -0.15369987988136954, -0.3230406794361664, -1.9174209334742969, -0.5539165620713714, 1.633478247028309, -1.5890585722482844, 0.9272510364913309, -1.3861536010953723, 0.7686349907393563, -0.48066907453699814, -0.4785047349172397, 1.5943157539924784, 1.3993622679578712, -1.3825525157904377, -0.7919483076169119, 0.1624084191412163, 0.13014400509312543, 0.1761077521629849, 0.9054506242663811, -0.15691962640455337, 0.8940960941973792, 0.8630180873666046, 1.3180698728771594, 0.2927038233481597, -1.222993308228824, 1.9623847119496944, -1.1767180377662316, -1.6429296949735375, 0.3685335775920687, 0.7179513682078866, 0.023722860669112812, -0.06784528914933845, -0.7001083498235732, -0.3359276510659689, -1.4977444442010015, 0.7189995356515314, -1.9047475002527452, -0.11815217148281232, -0.7989515068228011, 0.42997271291798767, -1.1527815217765638, 0.766542848807535, -1.2615840540628906, 0.7177217384870991, -1.5124859821135628, -0.5218252379296797, -2.189876020568351, -1.323197946036323, -0.26549944547761267, 0.35705496514269236, -0.6559145360218949, -1.2734526477932375, -0.1732184282480213, -1.002924666429276, 0.672766113291377, -0.8337838866472536, -0.42335163726611974, -0.7129753127311702, 0.22588956120242856, 0.17291272419096454, 0.07668704986272304, 0.6073681666383111, 0.6263132606781711, -0.6823566966467526, 0.2118681447727534, -0.15805395252038448, 0.18619369981015815, -0.12934744034596654, 0.7557462750394119, -1.4293987122799345, 0.5056445028990836, -1.1072124981812468, 1.1039793668760427, -0.8060976191686761, -0.11117511888229312, -0.8204676793211865, 0.9153183993894816, -0.5278300394816661, 0.11377123496880147, -0.2452654530803699, -1.1851633707966538, -1.1368810757493992, -0.9397254233556532, 0.17547249304600954, -0.47253329173065617, -0.30831740111046396, -0.15775475798546287, 0.5413427144754421, -0.22228923647488927, -0.10029363201041244, 3.466932583021373, -0.6153007305866757, -1.2486506476124328, 0.9636101430482882, -0.059250320718566715, 0.4987914484905008, -0.079937645209627, 0.955767714375253, -0.2982922631929797, -0.7563717722369038, 1.1152245244249392, 0.06805716180491866, 0.6489615940288337, 0.16586960482585864, -1.9949083786892556, -0.5529143979640666, -0.6513785618885143, -0.023314899480974944, 0.15931842344368705, 0.24395429343397138, -0.006050367812616515, 1.309944350197559, 0.6444533683867003, -1.241320453167309, 1.7065861192543996, 0.6445999718160599, -0.17013434657563112, -0.31165116120809244, -2.178321634512302, 0.955794048527706, -0.3468623213961723, 1.4947494296508677, -0.03739602918901109, -0.7507242170166237, -2.061029974190706, 0.22675066669071564, 0.4137428844697476, -0.7500449170538107, 0.9954583450187303, 0.6583469801832608, 1.2158009246087533, -3.124876049819594, -0.7346099067088315, -1.3053486922071358, 0.4049526721959306, -0.9583549671121186, 0.7487474999215996, 2.464658506275369, 1.4294715017792015, 0.25399972518348646, -0.19410870356816232, -0.3007192883453558, 0.9156232022391368, -0.9210433350934798, 0.05289538645026373, -1.0593139646319476, -1.0488684749627313, 0.4221953559902526, 1.3216016597386742, -0.06646143159286913, -0.5284461655755543, -2.000967743901034, 0.2726452910569823, -0.6980873522882708, 0.9797551786936861, -0.7234739063108613, 0.11087362801427843, -0.6786653512314645, -1.0766593375371, 0.7214712215932844, -0.05027915406597563, 0.3566619445653694, -1.211553348274458, 0.5371211341893241, 0.0483626205282788, -1.4064699043209523, -0.3349675952218968, 0.3596206227972014, -0.6209104760575086, 0.2542564462052584, -0.7097926312099812, 0.19692567473523034, 2.0617450086972733, -0.6376505579391156, -0.42313750849440074, 1.8162205694565896, 0.0951778053319805, 1.1157039745317188, -0.6514581580632713, 0.11813148195442638, 0.31501726371307337, -0.28250230249340486, -1.1765947431314279, -1.7357923543049443, -0.8878509546428932, 0.5868014848219654, 0.6831074130841033, 1.347528160983109, -0.3721112899254079, 0.586970886802303, -1.2635319694648213, 0.30235974259963133, 1.6528431751824477, -0.015572023140332946, -0.12565907031125875, 0.6933391281010192, 2.029072461166209, 0.14618774852539462, 0.5095377808656205, -0.5085494040547899, -1.115518484693982, 1.1146785488609978, 0.7738093679088248, -0.6822919727687653, -0.7769257523290503, -0.10591503346918457, -0.1440878362741248, 1.261620019775797, -0.6381967863276982, -0.3320053245162196, -0.8483740013427225, 1.0682820376252626, -2.213874411886496, -1.0964142183123458, 2.5738923796169253, 0.6608200514266573, 1.6956953216010824, 0.25765791648331854, -1.1567618143351033, -0.41657154809643454, -0.7107448239447614, -1.6591798923625551, 0.4696629105298941, -1.0814514828119959, 1.076882348172172, -1.8149208728846535, -0.6268311842536298, -0.15278948054237768, -1.7266921620178515, -1.7336984659222279, 0.021154981258222946, 0.8142930500743203, -1.0478655527782466, -0.9329021223603959, 0.48757687863503824, -0.6757048813015789, 0.27642939029455, 1.2416109222169804, 0.937913694197759, 0.44312143423843076, -0.29229613113902386, -1.4879960436579276, -0.9064406045632728, 1.3430546039823719, -1.2915484921339815, 0.6859016507068691, 0.928756145119122, -0.13238340983951577, 0.15418947148518264, -0.5706238290461018, -1.8351637444339353, -0.09793188644520766, -0.16898646740564616, -1.4536125909992632, 0.38037181465381986, -0.2728536765216418, 1.615303303212941, -0.2832390719850966, 1.6841668726273509, 0.8059998922482695, 0.8807250909008681, 1.8374433936628602, -0.9354424748440155, 0.3051300489120574, -0.7492267784833898, 0.29428671099519055, 0.2135388585451887, -1.0388132961927161, -0.28837455400804174, 0.14818105600739687, 0.5457312165116769, 1.0125382355679315, 1.3861174384642254, -0.3319802228715741, 0.5279009238047342, 1.026186912826751, -2.180586823239852, 0.8118946580881539, 0.31728411627208314, 0.5965625028586491, -0.09524735967447062, -0.8699035587623899, -0.2540045032493972, 1.7547781076490352, -1.3609633506011143, 1.1990474301535547, 1.2622077549576585, -1.669717836360633, -0.25473735369332123, -0.745997357683999, 0.1396425717867096, 1.0167792687849082, 0.631660004420257, -1.7948407798941197, -0.86793093650693, 0.8112176625940124, -0.005608768248440087, -0.46793519678665985, -1.7464328218597152, 0.16030917496819977, -1.4302835103554892, 0.31220139893583165, -0.1715655687499118, 0.2966358854884855, -0.9579478978954231, 1.7036064409210645, 1.1084287966225765, -0.05939443775041312, -0.9012152367450825, -1.974532290510233, 0.5510474225550642, 0.17066705165948645, 0.6131380255467501, -0.29298636800588823, 0.6410555994391529, -1.1381911524957695, 1.1316552593415543, -0.021391510340473076, 1.146459787592546, -0.1856128809002761, 0.014805900734299068, -0.7375174129215918, -0.45192704581004034, -1.482705909281826, -0.01689946268012515, 0.5533114772874134, 1.12263590494073, 0.7753379962142987, -2.0164722827517387, 0.47503969855407846, -0.623553404189772, -1.4350023602761801, -0.6512447341383583, -2.8498913623580475, -0.7314898347111856, -2.242985914202269, 0.5131942209771689, 1.6995652343285335, 1.1210940296054615, 0.5559032770671221, -0.10866625702844514, 1.2697543384187235, -1.3126780429312652, 0.2418396721565377, 0.2493002858418622, 0.10839784914884129, 1.8039233492151079, 0.21468286069466605, -1.0892695795947642, -0.7875458997411114, -0.5255382015425891, -0.8124836478112218, 0.7501092943516919, 0.9348836242934309, 1.6253360773598469, -1.2543234194083586, 0.5254894628363661, -1.9342477960393831, -0.5631795255898492, 0.7964603253328816, -0.8273931786108666, 0.3986810727848058, -1.5908789029805208, -1.2723039030295173, 0.11322404067884334, 1.096204651197285, -1.287245989548907, 0.7116253257441637, -0.4467166150259333, -2.839051305899105, -0.07611284549260315, -2.039815198171508, 1.6122621131274797, -0.9365505161857449, 0.2844334098134401, 0.09668503993301943, -0.08690953538912366, -0.1564292423498961, 0.21111464822274453, -0.14121565028412195, 0.5882284698411092, -1.1138292726121146, 0.2246305886574197, -1.1517901919770084, -0.31989607378044854, 0.08771729598270282, 1.5648075682008902, 1.032730596272287, -0.3025622952934164, -0.4689231658212816, 2.14164032788918, -0.485123168128808, -0.2752895998111329, 1.079100319696382, -0.26987559507756087, 1.1729525556844171, -1.399808601123521, -0.35346702582174244, -0.8097885672716666, -0.8472162510910719, 0.501640440571242, -0.6346707664972566, 0.8431755336613045, 0.560733008115704, -0.4144242407492006, -0.18812344642012802, -0.21686683822954156, 0.24125391782464922, -1.0597789807027376, -0.07964239490097927, 0.3640936954757409, -0.0635744035485502, -0.4766561677902154, 0.1236559773473161, 1.2305590115812257, 0.7504516388842549, 0.38452790509426654, -0.5913040309860513, -0.6244946065820723, -0.2246109647380402, 1.1502231286970224, -1.076366578094524, 1.1048944018182265, -1.2331139153733144, -0.34757515515259685, -0.26739724714947294, 0.7677184283209101, -1.3710070701030201, -0.6586377394844098, 1.0021509666964328, 0.32677330195052945, 1.3591247673893418, -0.6205607186422814, -2.205567797764416, 0.4135859444354339, -0.607074399584894, -0.10178495051480094, -0.3747120723791912, -0.7130992651966224, -1.91937868320312, 1.5137844975944552, 0.518121965160065, 1.1557581887200987, 1.3433159233888476, 0.0924139200038912, 0.19881911492651402, -1.7257420121282268, 1.602208977732822, -0.7112037363708918, -1.7976782870078738, 1.3704589379447727, -0.9710600691150912, -0.42194026060355155, 0.23635574977058704, -1.058357785741973, 0.7714062487921429, -0.09681961863699598, 0.2424145541163035, 0.4350529288760326, -1.2692777142459026, -0.8661152552554924, -0.5249286158806161, 0.49212391368040287, -0.670275682162322, -1.5570453886359206, 1.0839431483707487, 0.008139788094391667, -0.4944282319135081, -0.38124225328814487, -1.2160565612199878, -0.6229867843349275, 1.4624666796486046, -0.8545853257913965, 0.47606697028621114, 0.36174799028330773, -0.7583855542795225, -1.6144954072344821, -0.6732345061917745, -0.2697683163667246, -1.6403915413131487, 2.62451764312421, -1.2441876542679098, 1.5426504606860216, -0.8085250643064161, -1.69214759962469, -1.619828269475806, -0.24136755696852627, -0.8430904792888406, -0.3032308939573443, 0.6673938919914294, -1.0072812571672698, -0.1267371130323331, -0.9050825213389432, 0.18183319571551074, -0.8321666960321101, 0.1136631967192556, 0.9947860532372425, 1.9219445286920158, -0.6069213512611432, -0.803175610999578, -1.1355448831317474, -0.14829051979337807, 0.9838902495349017, 0.5605133667873279, -1.0007487295663673, 0.4028354214779626, -0.9095276874234817, 0.22107727162544766, -0.12591273203646244, -0.9958149600921914, -0.925983270529748, 0.6513871593484628, 0.4250687812666365, 0.15599427651267284, 0.1999127291409593, -0.5433477847863188, -0.1848175582420124, -0.18958883858020356, -0.4000164890631815, -0.8007262306326528, 0.02757551338113129, -0.049993808671297914, -0.21485185453629174, -0.7988009667951792, -0.7414181067215616, -1.4244122693136423, 0.21446193514453088, -0.6101680899000567, -0.35162371512474433, -0.917164526774813, 0.38978813804898743, -0.3732633692012909, -1.4450038940640428, -0.11849542893811883, 0.521745302808258, 0.910860435279774, 0.8384932684532939, 0.4823958879428875, -1.5988424853745484, 0.3211576909717193, 0.9835536661566067, -0.19317490337400975, 0.793024144982121, -0.6372074468086961, -0.6470754899798128, 0.8728441967837743, -0.5807345764040095, -0.42494168897129125, 0.4075193899067125, -0.6050561393056335, -1.4004010856815234, 0.1722148628626632, 0.09205234994472665, -1.1685549300950826, -1.0339861359777307, 0.7393550322605379, 0.8292122465848739, 0.3851305773419492, -0.22252756874761676, -0.20027327971789627, 2.2368686280544776, 0.3145099911429038, -1.5486035350992635, 1.870917237499836, -0.5700027727293351, 0.5892886661900787, 0.7013772705958101, -0.7884516139130092, -0.7865946045337262, -1.6995230200238953, -1.102925250619444, -0.20324690929534098, -0.45149619794997403, -1.0603736586858905, -1.5131642187391392, 0.6452234418879891, 0.582475789332542, -1.520523102893996, 0.7390988368099937, -0.8908005712803279, -0.12211356685359466, -1.3743929324393038, -0.010085363553061673, 1.8940214027364513, -0.4993725729476754, 0.6230975212664425, 0.14157570585308638, -0.06675055344877473, -1.2033903553427638, 1.8021190517575991, -2.309710220196532, 0.15133423049647296, -1.1749195759607711, -0.30808114613920407, 0.053064466286972284, 0.5440984359030336, 0.282401960055441, -0.04412431746889356, 0.3825385391694618, 0.5296751685389174, -0.013504703717931534, -0.6657103955288692, -1.3632697594946837, -0.576330565729346, -1.0056201163111922, 0.9411629808056, -1.276248348100988, 0.14027568062305218, -0.01431411729564126, 0.8215540155347607, -2.2456192500253462, -0.4647433305548341, 1.1820097914419085, -0.8602395123958148, 2.5063901317462545, -0.3870983219994158, -0.6796248548122135, -0.8046509842351185, 0.12269112522087713, -0.49695919303956526, -0.6504724294917944, -0.061687835305779204, 1.0146960595927006, -0.635072274410225, 0.9059369930286046, -1.348148465454735, -0.5132343508013923, -1.741033103989381, 0.3683846284726656, -0.36212566711367045, 0.5264342697002389, 0.0968074445312222, 2.032539512421908, 1.5629125178341952, 2.369353189237192, -1.784679780789863, 0.22787572019065339, 0.04625941413972469, 0.5986979015666402, -0.0696021736177279, 0.21672645305210805, -0.5761226386567796, -0.36893916964308776, -0.3511590791592453, 0.5250904884383594, -0.6647875556234248, 0.25837307506410223, -0.6452292279987313, 1.515809692842045, 0.6972462860895443, 1.387458845975377, -2.113813003756872, -0.669701366745519, -0.2169380095464392, 0.8653377243388807, 0.9469812029608247, 0.4882568354424997, -0.10693943732705281, 0.6473483201329495, -0.32023943873801997, -0.4654004611436233, -0.7500179854502688, -2.2733986965468134, 0.3241818022098435, 0.020539961468314993, -0.6069491075660158, 0.9769115556313767, -0.7373886005144905, 0.08770789927572485, -0.14423708201651522, 2.0731003093423674, -0.8920961874762844, -1.702325447384934, -0.5220351180214834, -0.2620498947890833, -2.1723572969445244, 1.6734582398938096, 1.160422463363793, 2.0034578795626907, -0.2543402153773204, 1.2245786348391834, 0.6725773854716273, 0.4458910217858239, 0.5370946099695899, -1.452424247523029, 1.0598935214197194, 0.7511199989640008, -0.07699981738219164, 1.9005579121090863, 0.06796232361296886, 1.6824208014294728, 1.485063549688426, -1.758300695009627, -1.2908562059645026, -1.3574419408278589, 0.3850564586499459, -0.025822208065642713, -1.095998791950885, -0.9439014227801859, -0.1915635483618618, 0.32049619721519446, -0.22954897439530222, -0.4728504923426188, -0.14065497643858293, -0.7297252753398997, 0.3554283875978467, 1.4857513483382883, 0.22165294403244618, -0.6142151762170288, -0.7119440828109804, 0.6532164929856897, -0.09714317985734536, 0.423241526265619, 0.6377273507248729, -0.9536490522161625, -0.9404993390875233, -0.001210626851372051, -0.8213722736314771, -0.14657522794681857, 0.2289997165867775, 1.5746801459599635, 0.08642207832723917, 2.094214481654876, 0.3716834758540506, 0.025737767831674738, -0.28522374044393667, -0.9357603723123206, -0.5126570327538361, -0.7261267200934786, 0.035403009749351816, -0.6620317334295095, -0.17675212033422144, 0.8478515260817271, -2.6320576729544185, -0.09453080393980169, 0.8811507084743346, 0.5095142156473109, 0.6711187229557001, 0.7795967662157913, 1.003447831933884, 0.9889120570325016, -0.5416108468720601, 1.459675998403253, 0.5568871166618876, 0.6574054596196318, 0.22191194018503904, -0.8790364483932858, -0.31668541162719116, 0.47677751187995177, -0.3024107494822469, -0.7189289491898737, -0.45142157194350757, 0.46197475700815754, 0.25745606360360024, -1.821255359809647, -1.2998584798630164, 1.442075445656779, -0.44314480708952647, 0.24697955723920986, -0.4748195468684427, -1.2131890352440216, -0.5980019204583925, 0.21963959266387828, 1.4115335165137617, -1.745684596359752, 0.16889745808751072, 0.6601656888263103, 1.5704572428952883, -0.2703462175232065, 0.8671210335972059, -0.968792275770082, 0.39516777665549996, -0.5988796106273728, 0.7615996418443524, -0.6805606256669259, -1.8079231962267845, -1.1161700303326618, 1.3175347577602996, -0.9581814079287594, 0.43709344326235455, -0.6548612145282635, -0.6425713382713176, -0.9507884988375555, 1.6742065037117384, -1.1752149191661132, -0.3000551842030095, -0.1579363739540981, 0.8134812957201535, -0.41356344936568395, -0.5577307830112547, -1.3059261535337756, -1.0897967123855843, -1.0869744639702135, 0.38204777903044307, -0.4829540792045841, 0.25476351369169825, -0.24109852238479235, 0.7840729007108246, 0.0867616293720283, 0.6492772134310122, 0.5546535887441597, -0.518077779792774, 0.8105625518398946, -1.484054889290178, -0.2458714414241979, 0.7971123044205027, 2.550908103908219, 1.2799284511105022, -0.6601811437846312, 0.2984492651097762, 1.0863596898277854, -1.1221166191741658, -1.088743790689529, -1.2783357305637888, -0.9100474240183574, -1.4522650745393142, -2.4065452997665107, -1.028405824189331, -1.3552650344046397, 0.8776186044937735, -0.34887250747170995, 1.2319599959857304, -0.21313174917565153, 1.4292183827807088, 0.4112127001491308, 0.1099396619445329, 0.45297716610141864, 0.561338220307291, -0.9758480274960577, -1.6617545615791118, 0.47280324950549546, 1.4645078314803366, 0.9138465612751426, -0.24232309287350948, 1.0842936442840805, -1.0686652414590352, -0.43956790050389455, -1.5505110600648544, -0.7142309661071699, 0.7673330633405124, -0.7409957995883518, -0.30386903055708303, -0.7685957387648431, -0.4536521891695456, -0.9865493315683197, -1.689977189470811, -0.8499728832480044, 0.7864793591163363, -1.252163274799913, -0.9294696936496973, -1.73404489154366, -0.5557574450976552, 1.6622090851058506, 0.9317837748687956, 0.509155369124435, -2.041913089168558, -1.0074400030992878, 1.0696588388027786, 1.718311128656904, -1.0271509842820075, -0.14437372073503574, 1.494252537331682, 0.14444389009675807, 1.475362153378508, 1.8833988249680715, -0.5715612924969516, 0.06716046739950661, 0.9952838436822542, 0.2631174237943049, 0.342396654107525, -0.21251997299905317, 2.415742055701896, 0.09857561469162517, 0.08611937881947544, 0.45308901926766565, 1.7558627893473078, 1.3211276383674053, -1.3849145281492472, -0.7666718571728011, 0.44252217634803415, -1.15288370892517, 0.5348085989877333, -1.378398442472619, 0.7449204138360503, 0.8115152277927962, 0.7371416381692337, 1.0889555210771236, -2.016993271154716, -0.5985040928843793, -0.7474217045880268, 1.6977560785329864, 0.7891358061922873, -1.0734816239236609, -0.09243753277052648, 0.6517982834699269, 0.03132457487848635, 1.3604854897704497, -0.9580223582743974, 0.6071229020933431, 0.614157270821228, 0.2757948150854335, 1.361019785543579, -0.33514365565841386, 0.7179142088465909, 0.16403513135556408, -0.963694642718923, -0.5038810766525456, -0.48501670992559365, -0.8715196024824508, 0.971482349322395, 0.8227560437990539, -0.7261934152435451, 0.6385983180252472, 1.202970972689117, 0.05036737487164701, -0.11404796633830344, 0.2993925179185958, 1.4728508266580531, -1.1064333852976773, -0.5253418042469987, -0.7887724392654868, -0.35183813179402207, -0.5746702614510817, 0.9721462734567569, -1.958588484312788, 1.8497857192628786, 0.07808614640429716, -1.0177457167793227, -0.04361887586932597, 1.4057482575551719, 1.23134060300477, 1.1390666197243016, 1.0011805487353775, -0.4290519355724425, -1.844730298484244, 1.3407917340349034, 0.4881947352801974, -0.3935531238878124, 0.03820546438092943, -1.4741297999487992, -0.646213467828569, 1.042888636725182, -0.4942490425826521, -0.7721146342914701, -0.6074510772971304, -1.0533016178251116, -0.7669318451148891, -1.797766301553916, -0.3701339509901953, -0.9727638166148483, 1.341617039389682, 1.1392452967415823, 0.6313642666553911, 0.921685680292233, 0.5430485175911497, 0.6415075086051021, 1.8750307468536904, -0.10928310143380955, -0.027218650049075324, -0.3403487214196985, 0.3003645471040173, -0.9537024028680153, 1.0356364689432662, -0.14164061641442513, -1.3719472883973092, 0.6632291785459714, -1.6360902192019542, -0.4298866037288158, 0.5255196870801742, 0.6138604903477787, 0.8825934072739682, -1.292688603649956, 2.096566485496734, -0.30465803630526067, 0.10600381789651372, 0.03608913259948279, 1.722972737908955, -0.39222501606675336, 1.1473498915755211, -0.10901481158273789, -2.100398666377188, -0.36234136988143695, -0.2103609714210194, -0.33730624715630236, -1.8256097276668375, -0.9522185649049587, -0.18743548602952753, 1.5869728522680513, -0.7926123731882767, 1.532359474083782, 0.32707222885680387, 0.7722643034413491, 0.8288529775396739, -1.483438764925327, 0.7367604916181661, 0.703608489343578, -1.1761780033320055, -1.0384854185508174, -0.5517038396672528, -1.5897724589327136, 0.4696615946345803, 2.790027296730478, -0.5299062681381763, -1.558826795985225, -0.0900632222099204, 0.37471940977634954, 0.3979165252081655, -0.7827957119718382, -0.5251506226700923, -2.2600660373956587, -0.853819077705807, 1.711473487165145, -0.431547668748421, -0.007623048410692176, 1.256449710188817, -0.6790517790833744, 0.8957977354695151, 0.377708980058927, -1.137932643900863, 1.3858511496231631, -2.1621943355167583, -0.069868833202911, -1.1976165065476432, 0.21288625903176467, 0.12319617959429602, 0.31398449762631936, 0.4255436981272012, -0.20645711513426193, -1.2777950144753052, -0.1871048635080148, 0.6579784046697102, -0.6957565710106614, 0.4975678639395033, -0.7176864365188578, -1.9224979944342455, 0.4216624515192978, 0.6660144581175498, 1.1487293775892018, 1.3131489693643916, 0.08038891020915438, 1.4068222032104671, -0.14071788861554935, 1.5209966048613721, -0.8271819640318034, 0.6004218144529414, -0.6199595989547189, 0.20839827994405408, 0.7510469643941151, 0.3882662362103398, 0.3067056441542369, -0.23128736718472254, 0.32313221179656704, -0.2967269650064357, -0.29117976159793507, -0.16316499242343416, -0.6256760630598099, -0.5779734768801078, 0.2831238795999164, 0.9633308310798411, -0.19706715541122424, 0.12393762342728241, -0.5077648753192809, -0.37127254561547557, -1.8774499365418569, -1.0401824054575302, -0.44084895587010126, 1.8808394342791062, -0.8624152338138332, 0.08542186945301454, 0.3402527387064343, -0.5621963602786378, -1.0575040324894238, 2.6486052409684477, 1.2609197148397715, -0.9965466285988631, 0.4358285840877959, -2.114840737526449, 1.72932623925928, 1.564821225092017, -0.06408907502947798, -0.5319404441400751, -0.07207147721177035, -0.3473706091867469, -0.09845556914101644, 1.6830521431549483, -1.2757919631528343, 0.14775357530991137, -0.7239951874259312, -0.5194365161889462, -0.6227177736475515, 0.5328194952676001, -0.12891519206523314, 0.11974238522358505, -1.2345245268463707, 1.1697396285299855, -0.9758385822627359, 0.6115880272657237, 0.27338960246820043, -0.934868855383744, -1.3062530851324503, -0.9809757205858527, 1.9959919117347784, -0.29876175359732604, -1.8101345217494953, -1.0176404373268297, -0.05144368378320003, -0.2576913009589208, 2.1238773046682815, -1.154204943460286, -2.173696203897859, -0.3188600095899317, -1.8962141183645698, 1.1626514079244974, 0.12555681252402054, -0.7272059011055103, -0.512149830481472, 0.7449615699313101, 2.3736275704069443, -0.8122906713632466, 2.0114215158952926, -0.11012093413400466, -2.3950434503021336, 1.9632534335260023, 0.8885922197974043, -0.6401185514219951, -0.3023516554643572, -1.0448870604746698, 0.2528926255133621, 1.3243006614663357, 0.05439695399871101, 1.2714068893862591, -0.4088729916903355, 0.3084118445227815, 1.104485944615399, -1.6780656777380163, -0.4709335305706715, 0.9920435705171776, 0.7433095306613123, 1.4532742086485815, 1.1930854755262057, 0.05224324386804031, -0.5404043544691546, 1.4502481438321184, -0.7199936938215997, -0.5196834886616192, -0.12647030917005853, -0.1823309462828172, -0.012340634130856964, -0.3296429160878232, -0.6195408011500594, 1.816291518116019, 0.5080038204783711, -0.7699267425105454, 0.870198950399223, -0.9163453880928307, -1.446291864004988, -0.25797564033153725, 1.2455384732770811, 1.2350635270901822, -0.2337800610008671, -0.6120840625054934, 1.3130984297358923, -0.43213744386971625, 0.9635838787309606, 0.30967551844953, -0.07844380984503277, 1.955331453346854, 0.955597456907812, -0.800547548379302, -1.1899018240182169, 1.560065622227114, -1.410647890833652, -0.24731990455177766, -0.4512944592649144, -1.1137157488494818, 1.556014884930803, -1.1616214221076475, 1.775287278862769, 0.8218804053775071, -0.7132208025102903, 1.7221374082150307, 4.855636231351652e-05, 0.6175387633505749, -1.3763905911461118, 1.090869729291223, 0.9278346069990356, 0.3771652076351602, -1.1324425314460758, -0.0974269761436354, 1.2244160247545715, -0.9746244851505357, -0.15969933755714893, -0.5887828630233817, 0.24457620891135884, -1.7635546586809985, 1.2315404841315036, -0.48844105279125183, -0.34975944805991266, 0.3985955816919881, -1.3902589157632328, -1.5610724881791005, 0.5123092543136842, -1.1086522123310485, -0.1482230712242669, 0.4985881400247504, -0.22061206324936924, -0.07324697556803175, -0.5477221715211648, -0.16838567362752063, 1.4597365374504523, -1.1965977505961867, -0.321792212034514, 0.6135513859507725, -0.6770191171595177, 1.3039652831438235, -0.5449976859997525, -0.44225471959816315, -0.34132041578926375, -0.9593524302676668, -0.9450902866060746, -0.6062188847244702, -0.5036339174638345, -0.6820352702685195, -0.9412282422398435, -1.518544395387829, -0.42641529029101444, -0.8200159462419557, -1.1021699242253504, 0.6295085135058573, 1.1619199291180662, -0.19846104274196016, -0.5294830240202676, 0.3532729290960027, 0.31788635904952206, 1.6129235512952371, -0.12786277577248886, -2.340822963273776, -1.0663940111573091, -0.9986412869444931, -0.5072993819451757, 0.8345674553057597, 0.17402083738947624, -0.03330395121575508, 0.4499213646833282, -0.6113347353354712, 0.3528366692827777, 0.9045235395879464, -0.9424019698342857, 0.528516637012793, 0.3420639651543172, 0.03129724085265425, 1.5794872351678615, -0.5405096741947595, -0.9069268325934584, 3.8713216894040308, -0.4940206277107213, -0.7031679627043003, 0.833639418575956, 1.0595001437133715, 0.5736791876275876, 1.0578306510195554, -0.5130781110186273, 0.3773605944784143, 0.8066740493706315, -0.36038778715731945, 0.03616714583297081, -0.6675941826135136, 0.13496932070382922, 0.9060970984297946, -1.4016139824346276, 1.827502288610126, -1.7126576660514616, 0.09192928126307044, 0.2760028057886362, 0.6385998668422103, -0.13033864996672323, 0.5563840387051129, -1.2177086735348182, 0.5345432850574938, -2.004911117177261, 0.46275158966270885, -0.715385813144318, -0.4457558398585703, -0.17454802863882696, -0.08775090282513191, -1.2383237130399798, 2.179330842200993, 0.3440097095881448, 0.3071308696979582, 0.43997585965266345, 1.006028126494899, -1.411976092423102, 0.5694856278296664, 0.5409938329891807, 0.18808782653387535, -0.5224033764713631, -1.0440366337547817, -1.0509354277022376, -0.6665934471186692, -0.05822268831829198, -0.4954698522159436, -0.7683411498255321, 0.7992059200819255, 1.2136813414626506, -0.617432646658707, -0.5125151242178354, 0.8463283140274783, 0.1481252964649521, 0.6558130736064324, 1.109100649244443, -1.721909273485119, -0.874855982024865, -2.2008112757240967, -1.4194645006842743, 0.2920258293200306, -0.2035344515629585, 1.1221808822548183, 1.472543760997409, 1.2195557707429867, 0.6244512387339807, -3.1018796355726823, 0.453563643831165, -0.060406826886935015, -1.0762482158671856, 0.71151015406823, -0.16851766882238337, -0.489027537489012, -0.7229139445968658, 0.01889143574236512, 0.5565870849098861, 0.7841880001944396, 0.22753799473997488, -0.9293461538358957, -0.8295697066852882, 0.30754482870404304, -0.1723366087261425, -0.6507763474837156, -1.8245418469819494, -1.2867263004616758, -1.2703818720219533, 1.3954393355002328, 0.27819073780562836, 1.727848682503641, -0.1818716903548302, 0.5906575012716497, -2.716749273745134, -0.4329456000976821, -0.4793967880038251, -1.1581426704958622, 0.072708749993983, 0.34773411359104117, 1.139591774212683, 3.011267243100265, -1.07797540289235, 0.1238788174532705, 1.4660153523672306, -1.3005394592069657, 0.501490196674537, -0.0448267882286964, -0.31863856451948164, -0.28903780264819806, -0.39755967957261773, -1.153277758073694, 1.317020181289249, -0.3503218246235117, -1.617129154037152, 0.44602288285652403, -0.45338734671975467, -0.12909382629778957, -0.4943995565580765, 1.7632423016014627, 0.6516896277449845, 0.05008976043555739, -0.2267957695890358, -1.593700075012118, 0.30423135685210007, -0.7414235970164658, 2.5380693706817583, -0.31742232218494604, -0.7114465339865, -1.6424386384241776, 0.2096889547717021, -0.49171801605436344, -1.4011170243720414, 0.18887509277912565, -1.1048173088786855, -0.17011141232919877, -1.71511037403219, -0.04389985703943245, 0.698529815782121, -0.5667009622166854, -1.9090583931694265, 1.1123806381792458, 0.7176032578691224, 1.5361340692180783, -1.9478236035068393, -0.23330432058750414, 3.789151245217767, 0.8129909379176092, -0.6180767032883309, -1.1366260749043022, -0.6754363539843529, 1.0448765605291002, -0.9412468465408005, -0.5212218014627511, 0.4914096976099104, 0.6053038399602344, 0.4138481212211143, -1.6394383468584635, 2.0305880868395585, 2.1570092010762663, -1.4302415612900399, 0.8407396690194143, -0.3018125531675976, -1.4265452712404745, 0.5577121968032367, 0.7562441723610233, -0.14911575329533078, -0.4355420491101185, 1.1885246604389397, 0.6114843872776948, -2.0222349248309963, 0.4870807093590775, 0.577000304487804, -0.27005451650666823, -1.1783985234253476, -0.05648880735326029, -0.26194199077080255, -0.13376507762075462, -0.24472128271079785, -1.0561040193119164, 0.07374271570135432, 0.07840556126831931, 0.2997787802791312, 0.1307325015139552, 0.1990494058323763, 0.41861211599988024, 0.13152237994649535, -0.8323632066017483, -0.5838080042625691, -0.6339475655996158, 0.46461127570517285, -1.8281146096706213, 0.3589267723476256, -1.5136912014847512, 1.5644412169553314, 0.02985572749431431, -0.33351615647614474, -0.7045267699098414, -2.8308995134846144, -1.264049382441448, -2.090866073349831, 0.04640666558174115, 0.172585695781532, 0.22123132958215647, -0.3559497384771982, -1.312004179700773, 0.8767916824801095, -2.002145188380772, 0.03991091586271377, 0.1407580276558715, 1.2539388539892355, -1.3152268923094432, 0.027685525488162457, 0.9802278362967002, 1.4986144376396149, 0.18406269948936407, 0.7947178760415553, 0.4352988090923614, -0.5231452334207287, 2.17242606471542, -0.8146853086154227, 0.6148928183365927, -0.6124096951846008, 1.7164347876473183, -0.8205802038781048, -0.8013887697476605, 1.1978845389728228, -0.662485299582988, -0.9828101344365755, -2.172663524577478, 0.9531248219616172, 1.1203565899126124, -0.802215992246942, -0.6287030444593356, -0.8100521757597595, 0.8504735434786777, -0.7566979984143308, -0.10709771156935705, 0.6621378651340479, -1.477342208697268, 0.1728704951023171, 0.020746125527885944, 0.5786128559780477, 0.10809808961579466, -0.9861458115439652, 0.8016886870618054, -0.5614205270722611, -0.12215809095254009, -0.04287760829219289, -0.3039775502267877, -0.4495574693655127, 1.9379864464230492, -2.2721178528171766, -0.3969735064922435, 0.762674698091585, -0.374382791547536, 1.2464790688506826, 0.1251051949502739, 1.3011637129990525, -0.14161482866089048, -1.5322983403416472, 0.5196997562686246, 0.7252670386665071, -1.6733916718537667, -0.5949131513615474, -0.9511477876163066, -1.03211629068426, 1.9929292581074094, 0.52785354888176, 0.16486221745173613, -0.1259739594072808, -0.5917834331311443, 0.3972479733956823, 0.03492023519477063, -0.021092387959278792, 0.05561046533927974, 0.8357261093286756, -0.31732731180650287, -0.38850820933653496, -0.4355444959468814, 0.16788731696297793, -0.23801863306911697, -0.801091160178615, 0.7353196606903466, -0.9702655480759741, -0.596293946545129, 0.34875755382043766, 0.9963068829841184, 0.735782027497509, 0.6476019520258578, 0.4483201293618042, -0.9219051579171176, 0.3728233431148261, -0.6774387735324584, 0.28115679194212273, 0.6440167167315451, -0.10365994184009246, -0.6380917570455127, 0.18234430361449647, 0.33927713222138284, -0.23951730515528266, 0.8074992351625812, -0.8394488822822421, 0.5304092524941129, -0.8526994073052594, -0.8020418911403402, 0.8189139311811517, 0.012313614497810134, 0.3451181664322459, 0.41331433690631125, -2.9307386707342955, -1.3314927955346894, 0.2853262190579893, -2.154089620973389, -1.1999007731643803, -1.067804496562855, -2.5100386214739236, -0.3113461312468565, 0.28240186367630965, -0.008657202899131002, -0.8050084284002538, 0.12525269546370965, -0.1539874560926123, 0.7156813166242618, 0.34356248495761293, -0.16097743859985286, 1.0590617321137812, -0.7787242447833569, -0.1151233942410995, 1.379001167893918, 0.6122497449593723, 0.8356516986355942, 1.4121598990240347, -1.1866290853774528, 0.16087656499167746, 0.015509217449792502, 0.14059083357814106, -0.5391118745970015, 1.1783681352741608, 0.3928752135070461, -0.18941312924960016, -0.02719314502258727, -0.6904172346598931, 0.49820815188688433, 1.4233101459597466, 0.16316089252337057, -1.4908551161691037, 1.6620086879472558, -0.2466757134810868, 0.3035650619942071, 0.17326777978014096, -0.59783985370733, -1.002964620008561, 0.4036504414647343, -0.0634528462636832, -0.8075533183088696, 0.16822834567181888, 0.3404525788435382, -0.48397511367182316, -0.29710659679941037, -0.9361402827284895, 0.4726482798431432, -0.5340760183577747, -0.9063917595539752, 0.6335112295023828, 0.598354535148321, 1.066605169428633, -1.0644453015767619, 0.2971071071115092, -1.1034628132730442, -1.0613766022452333, -0.19390935736375506, -1.2582028555594615, 0.18218237473476048, -0.6980772236332465, -0.3696040670669129, 0.1505719208478986, -0.4554954165598379, 1.2346866776904943, -0.9573766407680933, -0.04349772115904864, 0.8178684013215287, -0.9957230413980227, 0.8309537315567481, 0.462905750239267, -1.0034675266613562, 1.2242496701080872, 0.7381215277533901, 0.28499753280851065, 0.2668984119828664, -1.4854649079673112, 1.1296520331724038, 0.19050050388621012, -0.24816652078640186, 0.7250727684418569, 0.2790623572750345, 1.676893282925577, -0.15836526740469845, -1.6980876915642507, -0.08318616213507023, -0.16877663020760406, -1.3151299093703623, -0.9354302169570604, 0.6121602482869319, -0.6079611748276568, 1.273526697192009, -2.4788281828311467, -0.9676266285802407, 1.5227171067125689, 1.416305168748494, -0.32944033487619323, -1.333373390590693, 0.39621121312722724, -1.6377622618272605, 0.48327844208619136, -0.09344618396944591, 0.4275237595166625, -0.2964425563620665, -0.30952026875812966, -1.7631539395045253, -0.330114918266849, -1.0978124053271652, -0.11450904926550141, 0.49135243852672233, 0.1932600754645565, 0.4855180097861272, 0.9611527375911594, -1.4860556900838995, -1.019534502475133, 0.9032998321175325, 0.028253141880995408, -0.020486758048016418, 0.3322439278358301, 1.5862527059545524, -1.585257476120878, 0.10595153479147844, -0.6148564219522984, 0.6359601294041863, -0.3885107853516509, -0.5892479805849511, 1.960661829313678, -0.17799288159819504, -0.9631771488226611, 0.8244480915087756, -1.6833500455374617, 0.6180187441144318, -0.5309284786666097, 0.37040720323979043, -1.1552024274036998, -0.6949934210780663, -1.161572458197687, -0.790966251682209, -0.3954511310683595, 0.07822917907844948, -1.9604801502931164, -0.347417236385188, 3.1921510825736825, 0.844865885182316, 0.9019881735672305, 0.924378877229419, 0.9837617231474954, -0.41404457677734513, 0.312836287113188, -0.0811443212410428, 0.7697505749117546, 0.36655427645594185, 0.3483933089105189, 0.9571986875396026, 1.4767381232019974, -1.011832131373815, 1.7763048923544513, -0.1269117072052467, -2.3755970635977195, -0.1622437955094111, -0.13017665091410846, 1.3369347696756175, 1.0876424291519216, 0.9390337223116251, 0.15024089803786095, 0.374152087886835, 0.35394868326585915, -0.5970107450298978, 0.6135860909169196, 0.8247522314044469, 0.3082435523920382, 0.7315839877968616, 0.22201436607616978, 0.014789901033413945, 2.499975663239245, -1.5522473863413078, -0.27520679088580474, 1.9384090104631733, -0.7269928847247632, 0.6190076546953329, 0.31251019737678326, -0.08201491348975846, -1.0367168283809198, -0.03448220545532225, 0.6624801256783013, -0.08017300835272485, -1.0365300703454357, 1.0698653692704339, 0.6490316999715424, 0.805760802381944, 1.8547160179357567, 0.49274128589061755, -1.9534608757873853, 0.33231596409791725, 0.7760948454587492, 0.019948750985620677, 0.5281410781027177, -1.7437537115176789, -0.7321381117727042, -0.5502662494260673, -1.1336862496319802, 0.22064703223628357, 1.1253728331325767, -0.849887266511437, 0.3680182985337883, 0.17581621814417833, 0.477070468845447, 0.945112261799487, -1.0087606539104104, -0.10125814501776971, -0.28731051466514473, 0.12749821213124468, 1.7603482955182466, -1.6914078852565135, -1.003592393998015, -1.9322561273461554, -0.5615663634908353, 0.20412614418247407, -2.8005063326431907, -0.6606276801481799, 0.8861110857831562, 0.9098846832913514, 0.6902083244530288, 0.31949834820170164, -1.3867681645108882, -0.09849502400491195, 0.37600407964674637, -0.39043466183713293, 0.046921806416479105, 0.8092596823656377, 0.1393943555732622, 1.178742529657737, 0.4325522350781456, 1.336846287842397, -0.5576234731278097, 0.5584183777554, 0.313696684458173, 0.34188376620121436, -1.0038940715266431, 0.37596390286713954, 0.4606503359080865, -0.33738959165068394, 0.3635732349987668, -1.1257404226735628, -0.530147497425399, -0.10067777537554033, -0.5092129602735219, 0.4805223919543413, 0.26125916776611874, -0.9755290118046284, -0.7911668382945303, 1.354260350141625, 2.1585554948709125, -0.1698249207016451, 1.0817683301871532, -0.8802025496728335, -0.876742745834733, -1.4746648557148125, -1.6519207833700753, -1.4762536382214824, 1.6681453174414724, 1.158195146733052, -0.482722820771904, -0.5965761233910452, -0.6328401075179062, -0.8444122542232233, 0.07359480955805908, -1.2855557446466424, -0.7317634329270363, 1.0638052477922315, 2.5311992390146396, -2.011506003173655, -0.5039188638698892, 1.1754407345916176, 1.528591215652903, 0.5073342461953172, 1.2248617636517027, -0.7003567245690557, 0.9243184861960808, 1.3714301995438913, -0.5977071048239158, 0.7121953991526517, 1.4169536204840623, -0.3962786600488603, 1.6070933296175818, 0.27328733961591645, -2.260150647257383, 0.37994642490502867, -1.334332917970865, -2.163214436113559, 1.3356909120753486, -1.099550650027979, 2.0123707588931734, 0.40626041518831574, 1.287548618240584, -2.207861631434129, -0.31094212201417687, -0.5094600448833944, -0.8914784163202512, 0.538380015903173, -0.4449010881221521, 0.5139634309852089, 0.41401572835619416, 0.7612986605256815, 1.4542966872809588, -0.6393764102358378, -0.36080020030962506, 0.4755835223837896, 0.21793669686236133, 0.44388847530317077, -1.791782579538189, -0.004352281109831893, 2.0058494153420816, 1.129773484591016, 0.019407287576778554, 0.4177863969484838, 1.9822977244144642, -0.8017065508616377, 0.16454320852138407, -1.8620832454671892, 1.6306638711537966, 1.285850294093777, -0.651635017596908, -1.1422245088306708, 1.1128996262452704, -1.358391773799734, 1.08127525099852, 0.3519881724622507, -0.03943429831734781, 1.5715375473315896, -0.2630904304675951, 1.0541907322857356, 1.030535439146221, 1.1418047659969537, -0.16936626714358138, 0.8487785599131171, 0.3920395849130579, -0.7079823465446587, 0.2742189688198134, 0.4163470307397424, -1.9114598440521458, 1.3174228588383075, 1.2509019874800438, -0.06982022786270478, -0.043769321932257854, -0.48921484344074323, 0.9584325833651811, 0.38040767288844046, 0.18293340067873445, 0.636434946138663, -0.23736705950678977, 1.2429709356026317, 0.3313457552958663, -0.7904297745687965, 0.8625838328932192, -0.7242881378814582, -1.8131873384448611, -0.3809535386861033, 1.747815000059896, 0.5686895850598491, -0.6414043398812683, 1.2187377648486102, 1.9268706660389727, 0.9642796672540165, -0.15913851234872864, -0.8152042344666519, -0.5285106863015416, 1.0923710551013106, -1.77184201955317, 1.6658560030194587, 0.08221106828088051, 1.4103277510800036, 0.3548542974379812, 1.4394201373527031, -0.06912332548500312, -0.06675952450320179, 1.047300138717976, -0.18603901848485244, 1.9932428800204331, -0.11443022545730802, 0.012785847462033385, 0.02612082183757027, -1.0645845511677074, -0.6969770050180911, -1.8348043884272793, -2.1352961268364994, 1.5156820313208657, 0.06460417372197577, 0.8782857697527445, -0.9627036439451118, -0.16255305620867225, 1.1534676434786963, 0.01822851663705607, -0.16725490104559787, -1.098911506772383, 0.1817700994933485, -0.2819913026276776, 1.2105009681510666, 1.9189858564801003, 1.2237963072273568, 0.49893991631539253, 0.39030878807131963, 0.4485903183655539, 0.38233703810682074, 0.45650933503295976, -0.026135225085080902, -0.8675895691304699, 0.9290052216453414, 0.15247810494159936, 0.2508352585495417, -0.6835918923745546, 0.3957677359775015, 0.4253309694330021, -0.10217602429246858, 0.14377396589973415, 0.7556465769019178, -1.1700673270195165, -0.009623099017160215, 0.6705074791382337, -0.427727862407682, -0.6140378429084218, -0.05937997370777245, -0.006569742474922238, -1.1007007146258454, -1.3138794099681723, 1.8259362401847044, 0.39721081268198166, 0.10763374805270837, 1.3607588298697668, 0.25738348973710823, 0.160012161959336, -0.023092659917539685, 0.47383485658119623, -0.9991762799657916, 0.6812093951277133, -2.2299745305689838, 2.2788925891701193, 0.9370446134252738, 0.5471405101476706, -0.3587682075718495, -0.8024751874351097, 0.817989533347835, 1.4725351217136344, -0.8732323602300563, -1.7286635169747344, 0.4243978583487746, 0.2427729001247679, 0.946894126866931, 0.19103803929912758, -0.02621310878273249, 0.4553977947032231, 0.6287750630182714, -0.11606571125528503, 0.5861568326914169, -0.7559246964114475, 0.324237060716139, -0.08795498328302097, 0.22865174696898122, -0.7599271656342101, -1.0200748995425888, 0.9652932655727644, -0.5309328820699071, -0.23582186713820605, -0.06382407958589412, -0.21115294563720347, 0.72491549204582, -1.3656780891179394, -1.3439182524585502, -0.19333378293354564, 0.7600893836694367, -1.079019049059115, -0.9668565023435753, -0.6928871636297387, -0.5703601406341514, -0.21131852801090736, 0.42570725821901495, 3.1800819816355186, -1.7527091660670007, -1.3811624683298265, -0.3540741416349364, -0.5827257644033772, -0.36452448184286307, 0.37150476720056125, 0.8238324781916777, -0.7748071221103555, -1.3063840892282168, -1.8166184720974006, 0.5548984127020958, -1.3890809699177267, -0.33791899225845706, -0.5081273197379678, -0.2846951811460177, 2.028091828198595, -0.738365404880488, -0.5932488774831003, 0.607458936989574, 0.7190749812145107, 1.7906447551528952, -0.10968133239116078, -0.9781048101843393, 0.46828063997168157, -1.1792706653731404, 0.9512013386411995, -0.5484989281976735, -0.7057885479181293, 0.5491058420792395, 1.8088044301870063, -0.4383503276115066, -0.25669191755849724, -0.3100211250010063, -0.7019376564117297, -1.3953115943840642, -1.2072471921221934, -1.3100282311284728, 1.437110465501544, -1.2852194564649444, 1.14462766427541, -0.491504166343584, 0.9543355574865487, 0.842285226385865, 1.2867054830543991, -0.5127634582318046, 0.7875553907525963, -2.44120302764959, -1.1548670095714912, -0.24870227197901912, 2.2368545378140348, 0.016334796828526343, -2.0859904190113268, 1.4050785972899467, 0.5689138092222885, -1.0620969748991065, 0.3331810670579818, 2.5473658982835126, -0.6651581685217974, -0.8751083512879013, -0.6128524806920123, 0.42053380644826305, -1.2812066366289925, -0.2953454369894404, 0.12560296530982107, -0.21536220103206688, -1.287503319979103, -1.5432245978673813, 0.35543379426484195, 0.9061729842894665, -0.3168009852040294, -0.6272113660910676, 0.27197922018967424, -0.5172975769941189, -0.5436098603762525, 0.20371930503269017, -0.027083755356744687, 0.8160735878180847, 0.45328848741410865, 0.8735650025020174, 0.7872342776851774, 0.7253759875801329, 0.5891035788063086, 1.6232276976708422, -0.6496989396885331, -0.024986583047865628, -0.16355014973303209, 0.3968578622549657, -1.0030553427521358, -1.4906894994283122, -0.9168346311050226, -1.3962667035931153, 0.30291585535069265, -0.7934985338071129, 0.7051642931360016, 0.6780784304118804, 0.33548269034773215, -0.6920831562841123, -0.7761164006451517, -1.0609825726362636, -0.4093805367067838, -0.45639563993723814, -0.7922637002447062, -0.24882768474387434, 1.138138356779474, -0.3900612471904329, 1.3901382983483608, -2.1013416261225863, -2.6064871960986853, -1.2869872727981844, 1.3342275230775473, 0.17241376750926868, -0.4217629033927369, 0.22237747248555717, 1.5993414143119953, 0.7882535279237036, 1.6858385405330525, -1.2110520580837691, 0.46546489574297, 0.436882143379379, 0.10713872242420008, -0.03305569558125935, 0.504748028848992, -0.7850069532742244, -2.0665196439488924, -0.5571957771073328, -0.4644724921074233, 0.953923445290704, -0.5897170694355207, -1.4519740503358467, 0.7396566505311587, -0.7369494588544901, 1.4197758392435886, -0.5738323686174467, 0.784974450629287, 0.4718899762436967, 0.6045142313012449, 1.293898194062561, -0.7920172275125864, -0.20508163411248165, -0.7054316123698876, 1.078359888540688, 0.4012919736804142, -0.22345459203780094, -0.48257880207674225, 0.8322429555090083, 0.5113206740456125, -0.6314891191820065, 0.3412466501983651, 0.3989405638200445, 0.0052345474304308845, -0.2433882061170295, -0.5843756537196714, -0.5036943138231104, -0.9238307338664575, -0.5179292477110173, -1.228430054377572, 0.678750772555083, -0.37829261153031707, 1.2674627892698112, -0.02139074760893854, -0.46442623518699194, 1.070183103151573, -0.17181764156221052, 0.7015085711183786, -1.2767763674242407, 1.6130855069381878, -0.6137728693285442, 0.2096542594721653, -0.9527809739478607, 0.9829469174596208, 0.016611768433625048, 0.5323480707839049, 0.4991309388816764, 0.9633469697725593, 0.3310388693156807, 0.8265149383182686, 1.9432753214316056, 1.8735143721896366, 0.7480391674424979, -0.426557519910144, -0.08741723121098667, 0.6338763018869562, 0.7489797773959528, 2.3439727193989186, -1.5221055271773365, -0.8453348444260377, 1.9524317741261041, 0.9292560536260165, -1.2410010752771437, 1.2987071872931084, -0.29089754017979597, 0.48460347025647404, -1.2113072439083863, -0.22895318824106067, -1.1477303097288725, -0.8765848113733841, -1.364104943121719, 0.826580648295964, -0.37777632999975586, -0.21241749839649687, 0.5236884133372779, -0.18315933186244882, 0.6030194301898653, 0.802365104410073, 0.07435397378107098, -0.1052548985621814, 0.2765553615524372, 0.2952470622754378, 0.040711690808160304, 0.15835618934607973, -1.5852923479286545, -0.3102322059479758, -0.5043980140121073, 0.03840873467701074, 1.569356437903978, -0.3786747916350177, -2.2140943901296213, 1.1905020045629886, 0.2937770889434149, -0.8461492551679713, 1.1969915218111244, -0.2258662657978417, -1.4391054162245573, 0.06269914002363439, -0.10531935241612149, -0.01040120225900257, 0.9141879133809574, -0.15068537411155145, -0.7849149229250215, 0.25588480479524217, -1.1220723139932223, 0.3007562430683335, -2.2371285273902592, -0.7432835796638674, -1.0046353021896675, -1.160610740236009, -1.492911542864833, -0.617620501257322, -1.6827225449063279, 0.025137356742736035, -0.7673300132174969, -0.6165670559476422, -1.4987213525014182, 0.19992182470968536, -0.7055680692623459, 1.9062500461433876, 0.9362724323663123, -1.0020296833569735, 1.268498261450217, -1.0231312528319711, -1.1304151122711097, -0.4028792945928438, -2.0783439659126897, -0.7843053145694853, 0.5678988273294627, -0.06743060050422296, -0.5060603364186675, 0.37282728097030193, -1.1412529348719136, 0.7694708624590165, -0.6734173734010854, -0.6876261188536436, 1.0046340368571665, -1.113005086840704, -0.15450559747351617, 0.38006511559654543, -1.4586618242165728, -0.9460991298893328, -2.584461712096838, 0.1532059776601259, 0.15869613333869229, 0.6747801621430964, -0.36341250807524283, -0.7929991893142008, -1.5695242496717048, -0.44373181785590216, 1.4243277770948515, 0.271229860847068, 0.5038508811260367, 0.5897505880760776, -0.1438637177683262, -0.09381906557898505, 0.3695535875703383, -0.3939921523934699, 0.7394794944250128, 0.08409819008604415, -0.23186198735874058, 0.32805101295461453, 1.4727909329360183, -1.2633898548247662, 0.43408669418420803, -1.624221296317833, 0.7830248608218822, 0.6973696085925521, -1.1482662073210654, -0.770043697068709, -0.13858136342172, 0.571042262118701, -1.6055557597666972, 1.271330037463512, -0.5565307909092155, 0.8111685214134035, -0.8064502986573066, -0.2830849923440157, -0.06904902264651248, -0.2920208224339291, 2.373531523940371, -1.571385087713581, 1.4125978504335885, 0.21372332911003517, 0.9732341496508546, 0.19975716522331563, 1.1442585478392036, -0.3908297480602128, 0.7186026791187199, -0.6747421877530226, -0.23301282267395754, -0.5620971355706106, 0.7974029238058399, 0.7597157494206619, -0.4590551163212116, -0.9116281265163293, -0.8396161288050878, -0.2586419076326188, -0.3280991901104658, -2.081083588834095, -0.684729986888088, 1.238779594536128, -0.14487240902562215, 1.8381465694607135, -1.2658306081727038, -0.38531462143882056, -1.1594841729506375, 0.6034691768743325, -0.6894488741066576, -0.49777644010074484, -0.39081170064880105, -0.9859153472922478, 0.5472332492594244, 1.3537103980504204, -0.9500579742592399, 0.019926812764450783, -0.06869402620218755, -1.355438696916864, -0.7144142792967415, -0.3489704666211619, -1.989462884425708, 0.9801465395300853, -1.1770891934703, 0.6488186329058766, -0.32685234902478205, -0.506143463472761, 0.2783603846148024, -0.4657753136925768, 0.07834213046677177, -1.333222596970711, -1.0837164743805365, 1.2362777823435451, -1.5605817782682276, 0.4542379959722857, 0.179298207101712, -0.06656589630163855, 0.017679267266990654, 0.523817130458108, 0.2030109885688425, 0.7995540741533481, 0.9842335426281176, -0.6280579341846597, 0.8003539065238394, -0.01794538847401716, 0.727060375845879, 0.009625384890701623, 0.1807969725154928, -0.4739805882740575, 0.7260626695067122, 0.1464774604008407, -0.6934760739022392, 0.6110400035247522, 2.807446420764416, -0.6639534070910145, -1.6612810459583838, 1.5358547214729636, 0.7898095635200612, -0.5749479653006196, 1.3335726446468437, -0.7832093694236026, -1.047126206793423, 0.8990454403263825, -1.6542593417385543, -0.9324574370122484, 0.31665107948568105, 0.12854736366021666, -1.2581621551701212, 0.7229801440963772, 0.84572295769338, 1.4557539149433578, 0.08622931639348579, -1.1444428205661312, -0.7005992971897654, 1.1265515638603598, 0.21102810812124398, -0.10700802566620383, 1.7039630559685683, 0.4728727952537172, -0.1404390435143488, 0.8619005821565332, 0.9404109988996749, 0.14886413028215767, 0.5790997610558067, 0.5211567011924758, -0.7654825148902868, 1.2448329424564917, 0.08653101872035653, 0.9358858516017325, -0.501337463934391, -0.13247173037251994, 0.40041046362327176, -0.7874267738529132, 0.7671793704259218, 1.4448841133256567, -0.2456859593038173, -2.1573106882668998, -1.1332189189474333, 1.6469675462637143, 0.33376132035259704, 0.4947875316146132, -0.8016566169416863, -0.8287666938086413, 3.5945298932509613, 0.38137862106387876, 1.4288326010548569, -0.4577711614843573, 0.35846114327537004, -0.6607457857987243, -1.4990927018810487, 1.559203187981313, 0.4360961519285257, -0.7718441296995874, 0.2427310295203341, -0.48331241374132106, 0.29111218340029615, 0.4036710206972838, -1.149397448998332, -0.35220633727746664, -0.09557217521601882, -2.3021967384180546, 0.8878634896096314, -0.30616044707410384, 1.8310934486212085, 1.261215345414006, -0.2614899710305302, -1.921213094446642, 0.5427709499346793, -0.3125949792392834, 1.2370390276287797, 0.6714868004312371, 1.7522693896935013, 2.787193278160551, -0.29993527317299323, 0.07327380021783582, 0.6100040223617261, 0.3607839903345583, -1.939458397735124, -0.9379121582409014, 0.47650078972136534, 0.5999333234869735, -0.001763598239558042, 0.129660579796798, 0.7446818266110562, -0.49748073075134436, -0.49914829221539536, -1.5149880562394444, -0.8234752658200015, 0.9493505940909496, -0.3918215466191458, 1.9583130612650874, -1.7477754607550373, 0.5065672765892276, -1.657669467973681, -1.0413509691790628, 0.9267400001397316, 0.06962247831063048, 0.41389029911452496, 0.7844041620263262, 0.17138407709268114, 0.14076213019346664, 1.86569401605749, 1.0665135853732257, 0.13009324211324308, -0.5264878964666188, 0.7719997678679172, 0.5652114235352765, -0.1907176570107716, 0.39418001083642695, -0.24092104058360134, -1.3557129717504133, 0.5898386666360069, -1.3673765456155287, -0.17882422228264555, -1.8614636968456884, -1.0681788229483447, 0.1160238119083714, -0.06372770398034312, -0.8344073145281423, 0.4234236123705827, 1.4376345516284454, -1.2868981899935386, -0.2849534545485769, 0.11316381071955985, 0.2552676946390073, 0.16883406964703124, -1.075447006616544, 1.1152447219570396, 2.032059291813062, -0.4405199474382906, 0.3037197824452342, 0.22997371035075953, 0.5893550549722073, 1.066440855899459, 1.7326515146600945, 0.036398574345532786, 1.5302829077850788, -0.7130608243372211, -1.0838985686955145, 1.3304937015041678, 0.6726479756151253, -0.16702415618699684, -0.8434052263091932, -1.8173665600747195, 1.4922933188924528, -0.0821576582688277, -0.3922910262046999, 1.5784163267653046, -1.7440210337796878, -1.3413164597345293, 0.2451963561255151, 0.2596061474038953, -0.5723914556113908, -2.4186641217985745, 0.7662176779511044, -0.5991354738419996, 0.45633514361065197, 0.113369437634066, 0.9470848421113793, 2.504726483013497, -0.10675779671864755, 0.47392521534303356, 0.7862216527760381, 0.2911695603418808, 0.006833996306161052, -0.4554003918937304, -0.5543283172178324, 0.5751295089876813, -0.04975707554387918, 3.369267257627237, 0.8991713307165587, 1.2887319304529374, -0.40069404863732555, 1.7454216050972846, -1.2880536012605526, -1.754096747333534, -1.0087684415814444, -0.007938623691825616, -0.12244586588507221, 0.9177260541899097, -0.7271700530104063, 0.26306354250446595, 0.19456912686282724, 0.5819112938073422, -0.26373423426744974, 1.5657440120045982, -0.577118669875452, 0.038721275824389896, -0.22812477207333426, -1.3407254443639678, 0.23698996598698543, 1.2464544523085925, -0.14872112344861385, -0.7677110638958857, -2.222960155371139, 1.7374703845873323, 0.5500822079424025, 0.6630817532389388, -1.7240675851933325, -0.1264613416953942, 0.8706683762788834, -0.08191966979523829, -0.5570607670038501, 0.008906334419888464, 2.8283474612296486, 1.4047997814795041, -1.127403868615451, 0.367015929740348, 0.06740603990825161, -0.23542138013029754, 0.21036998970742732, -0.3391232116912376, 1.1449327561575249, -1.30287917393992, -0.8156643702370148, -0.2700150905374789, -1.189803810745506, -0.38342458510097077, 0.11550164758823568, -0.3873551478399293, -0.32889049297697487, -1.559283871038267, 0.16468738807545957, 0.4946289343027944, -0.38936575559743236, 1.338309417008704, -3.1260537061167377, -0.45247578374807873, 0.9419902623431606, -0.3391468675503353, 0.9828692634752184, 1.4003404217334934, 0.20858771913867022, 0.392533768854795, -0.0768909595472988, -1.0467492913521406, -1.4178255763031349, -2.5845214268668073, 0.8617611558356602, 0.1847653396487277, -0.4248654077134297, 2.1026402407276574, 0.2380382329077385, -0.6477235623947175, 0.14421241300192297, -0.21036808638172547, -0.4853014314215258, -0.3101532324920385, 0.7736274785104599, -0.32671134871276486, -2.378751872567849, 0.17766814904975706, 0.49048027748650386, -0.11060535454795362, 1.186087255482543, -0.04479306333381021, 0.6606035144121682, 0.4775605354746562, 0.68879658247665, 0.38254248874667973, 0.09805690459264153, -0.010829938050152931, -1.091866084846694, -1.233765220852336, 0.9132138738271262, 0.5400973902444209, 1.0799696249861062, 0.6420228554593401, -0.6053069507102871, 0.3606569737083847, -0.9902093956668729, -0.07353513324983524, 1.0266044281949827, -1.7294857370067374, -1.85468387826712, 0.392265423226566, -0.4880240415791193, 2.6564963702004034, 0.8024380030102912, -0.25364345316796905, 1.3058193659398434, 0.6762622507734051, 0.48390379470854533, -0.40478128988725615, -1.393174010598218, -0.39998758049937894, -0.4820714536886695, -0.9519133157799363, -0.7122959190982865, -0.4014965884828597, -0.4537008632561084, 2.105867102085605, -0.6192665344459187, 0.021552560792236043, 1.2822087028178348, -0.6224105968769055, 1.2849169045997284, -0.25311875970309067, 0.9809336210673494, -0.3678805231791374, -0.5888743049015183, -0.9560195460350336, 0.21292679130955117, 0.32870131387165935, 0.21636595076911785, 1.308672760072973, 0.6646106184309815, 0.5875331903133878, 0.9077077978197683, -0.1506155631636296, 0.6999380326459018, 0.13715365688087652, 0.9596530600362484, -1.258754620753987, 1.471782266756073, -1.0100086952362715, 0.8876865672163706, 1.4922379849381784, 0.09129866295591964, -0.6369916196995389, 0.36851559721433497, 0.778578896675837, 0.40461201714269945, 1.4295278696013713, -0.9885415517605666, 0.04650733372461205, 0.6494259395185843, -0.6242004885075956, -0.26063448722039245, 1.9598478327280324, 0.6782981221567186, -1.567294133446221, -1.0256563069629074, 0.5913592530637943, 0.4873729336989863, 1.4653064105176496, -1.0811365769868901, 0.6174584113094341, -0.9605871024910607, -0.4288049993281922, -0.8397511379357787, -0.30475802045819506, -0.5536336615897776, -0.03315115024150984, -0.19956980043487962, -0.2560915025604636, -1.8043132514533784, -0.7223536434297051, -0.9151762867355451, 1.3438004586194328, 1.1459101487415049, -0.7114964852546867, 2.033078982119054, 0.5996734561051609, 0.607782608451133, -0.5675280326363031, 0.7933243843933429, -0.27451568217558786, 0.3753945981372641, -0.8567610680350399, 0.9336375705244219, 1.3989391864473881, -1.1973532077269995, 1.040693995433384, -0.8431231417543463, 0.45719555580934584, -0.11599901695331731, -0.1883208260680258, -0.6368399778123262, -0.4998314946245659, 0.19819632831691178, 2.036377197740125, 1.485430942688109, 0.6712734014017068, -0.758735397788142, 1.7064676295602503, -1.6398387609265808, -0.16404068628873247, -0.0266800558752676, -1.6183013576977914, 1.71485857670479, -0.5743000477405136, 0.18376266146994652, -0.8633487845897292, -1.4693202708831297, 0.16528070972980835, -0.06478494940674023, -0.2323140374012832, 0.01969575881932368, -0.6564853968558377, 0.8128630674191222, 2.340146192439579, -1.2188698822678061, -1.5061355615286602, 0.10056610772326748, -0.1923992640272284, -1.0088398643160774, 0.22100136687339092, -0.5980391286422986, 0.9026783694589138, 0.8631757503663752, -1.254566490829215, -0.7796308268446924, 1.2548518235141022, -0.3748487657184908, 0.6871916223137784, 0.5563938023745193, -0.8458539185852939, -1.360052396173827, -1.1768507811801443, -1.1078513186034713, -0.242075243857515, -1.2789581478329157, -0.7990807177430319, -0.10670980991150342, -0.5444549150797526, -1.2246661567931005, -1.2605647692453865, 0.7572182314722512, -0.2810703509623311, 0.9798144290166145, -0.35237063423775744, 0.3653776869370393, -0.7559260402304334, -0.26744130397107846, -0.08463231835759993, 0.7892794480220632, -0.2779188815165673, -0.8179631090858521, 2.5304150023801935, 1.5293080572029174, -0.7259727496383255, 0.7539231742656657, 0.6706258064126048, -1.1201349140800159, 1.7544132969731538, -1.0076596300640122, -0.3759436108820528, -0.9251573832294863, 0.31184410731061096, 0.6115624966755963, -0.8774471551918827, -1.9044681859978838, -0.13103183674698288, 1.3647935774626632, -0.5628723854138435, -0.8708265926345489, -0.7995919445968894, 0.9250933617294406, -1.2003634570442232, -0.5951070536248192, 1.029064387882724, -2.298715409382305, 0.8953368935901792, 1.4298221598201355, -0.8010137316148163, -1.4747571681678353, 1.299337729925405, 0.27639741131335704, 1.0879811310761536, -0.8919397914348717, 1.1243783088259462, 0.35659028646065677, -0.7838315231677875, -1.0276843151643886, 0.9765836988743314, -0.7141750436296078, 0.5369320832566993, 1.0352987261272748, 0.4332322656516383, 1.1118806910476005, 1.4313493867707068, 0.6623726587476452, 1.1885239980860594, -0.2066015563353163, -1.0543792678067618, -1.1385795383444746, 1.2761588095952754, 0.6461949133949652, -0.013311759330724664, 1.1296275426352287, 0.4063120870261889, -1.8780513637198044, -0.2045142783916439, -0.3062405686502489, -1.3449019972803216, -0.3690454474537795, -0.7690458671303315, 0.8093100413326106, 0.12685210218036252, -0.12878456802928612, -0.5418742756925473, -0.9889381967272718, -0.5691175031154133, -1.2015813792576964, 0.8778053566390566, 1.620728590112804, -0.7819987862835275, 0.2796589898369114, 0.9392208223371731, 0.6499775654869847, 0.6546697673718924, 0.2194060094382523, -0.8049524585319954, 0.22761509370328487, 0.5215927641963022, -0.2766013887318267, 0.0024197451609700034, 0.5456017590538186, 0.9187371174229301, 0.7589180631113625, 1.9752509326165482, -1.1860869851162332, -0.026553992084313915, -0.4159539900783479, -0.4560459437310543, -1.779275836121646, -0.4032487530935342, -0.1186355759496173, 0.15460221499205312, 1.6417916919180222, 1.5568134598699916, 0.5693347371484242, -0.06125057162688724, -1.5766144985928177, -1.045498754437162, -0.23071618240042752, 0.3366135983192138, 0.08232809708400506, -0.004820769385671399, -2.0822967839550715, -0.26524333395192307, -0.7827231868515527, -2.3010406285195684, -0.004459730887260205, 1.2196016226860522, 1.54904916487926, 0.8359425321592684, 1.1299954610470657, 0.06264239087911204, 0.37114906936819975, -0.9870041582256972, 1.6737585382734679, 0.32143544115546563, -0.24212393197282764, -0.8180207804155651, -0.2720786284354737, 1.1939278185016429, 2.3115874388349513, 0.4466556008075023, -1.8387270673548237, -1.4638219303444653, 0.1463257169782835, 0.7065563902697516, 1.0280099333875092, 0.17464690937340796, 0.7253643792282852, 1.6643812444223591, 0.21541556715124285, 1.3671578777526474, -0.9110658668437229, 0.028779902619972816, 0.5509394421699575, 0.7162638027046503, -0.8170731682226471, 1.5270573395941993, -0.1731605635766614, 0.06256737196831083, 1.0249061985482302, 0.6816978606431369, -0.4804177391561712, -0.20934639961810106, -0.5094706519248926, 0.45820345124955963, 0.034660677128587086, -0.39600195187854004, -0.7944648769587394, -1.2323334567189443, -0.3942305018936222, 0.9160432083414135, -0.3318348116393023, -1.2351238204863222, -0.11710508229600068, -1.5658305681931468, -0.4518978449417364, 0.9354827763104588, 0.5805459298431362, 0.4699697692565322, -0.5493429414845846, -0.8178880735841456, -0.7297787450428745, 0.06839636336737061, -0.24989967631174526, -0.2162576333265485, 1.8392146019912872, 2.2983672503269585, 0.16242441870883306, 1.4953897875820201, -0.2702517521331199, 0.6598048663574264, -0.5341015004137827, 0.6158770996460049, 2.281118456210233, 0.14377770218166372, -0.20683472865866798, -0.27600808254064074, -2.2137664718025936, -1.7239165254244084, -0.002744457464012844, -0.5221513521660696, -1.285384758201514, -0.466490285760934, 0.7023717917045639, -1.1044289703732488, 0.2585299374621916, -1.445897764577524, -0.14358615907589728, -0.8889808168377414, 0.2694137050005194, 2.466121916168808, -0.2540764686804254, 0.8435786951655585, 0.13220376891247346, -1.1808238840252956, -0.6628377995916226, 0.38633241196257617, -0.6342554534586328, -0.8289985858103959, -0.43141609970826333, -0.0574428427689525, 0.9687236601604043, 0.6974687960258569, 0.027849772238344766, 0.7108968448393969, -1.609183789465137, -0.7358715641981394, 0.48849208901638375, -0.1507697433044842, -1.828909471222888, -0.792031939384893, 0.1634126939330274, -0.8801473928198333, -1.573735467247228, -0.2501530756029444, 2.2403144309284473, 0.14819647398581237, -1.0387227561514685, -0.9065718406131855, -0.23577428677113615, 0.3362071090484739, -1.490385200537727, 1.4295631671478852, 0.6300762441246771, -0.12544801002387085, -0.5504942075170719, 1.4437954016115973, 0.3248026101650517, 0.7943837408151568, -1.0673484779647986, 1.852776035427466, -1.0807707058979792, 0.7946651732824989, -0.36329008091582854, 1.1652462196910311, -0.13401243758915635, 0.059151649793274474, -0.07015203606594507, 2.34544035473453, 0.37419324278484156, -2.783019844681314, -0.24918451780712822, -0.8304784970903177, 0.6145573935674752, -0.023702895669248096, 1.313034650063452, 1.8857737870557074, -0.25126199402290306, 1.235919653628174, -0.20559889198070613, -0.8572582568746591, 0.22386986223955524, -0.8922248160981586, 0.5061972101257681, 0.03171913062384509, -0.2124238233767016, -0.4300706760585665, -0.26818799815123634, -1.3234803422059525, 0.07492778855283569, 0.9904592465556937, -0.8944206813085558, 1.2448909135578918, 0.29198653154665266, 0.235336582955983, -1.9891679133032183, 0.798169158260794, -0.4770622823600738, 0.2975837581932957, 0.28745484067019483, -0.5984795063613559, -0.2941815674611447, -1.1912318879567965, 1.5564210021170606, -0.6348051202986705, 0.7015624075851994, 0.8471957047172337, -0.3147132258837457, -0.5919772458856367, 2.0323815338463898, -0.0832032926781769, 0.8224838648709804, 0.36263084534415824, 0.44606016497703765, -0.03787119292646509, 0.23455062696693446, -0.7337555647418521, -0.5343478780063657, 0.10900640151549744, 1.1966725716316429, -0.03688383119249193, 0.23341945005055637, -0.6277268199156443, -0.11429329883683595, -0.25562641808774295, 0.9303985818783272, -1.2148787814144062, 0.4917927429172996, -0.11032684088996471, -0.03311659049510465, 1.109642753664993, -0.29389752223119375, 0.04930805533609526, 0.9150254010613271, 0.7487065858787036, 2.712734887481617, 0.03501243311932813, 0.027553390823665907, 0.08531621003361291, -0.02693470563316203, -0.9406910367308351, 0.46156718646813777, -0.6744053916095002, 0.23712570353809911, -0.0911245571784434, -1.3564530527171785, -0.12388165018728702, -1.7222716177356847, -0.1262014702636281, -0.151101607556266, 1.412393732347036, 1.0515681659593061, -0.5370657481286282, -0.8221184692685285, 0.9990546543768178, 1.80690634461794, 0.0786242655724248, -0.04248471347995723, 1.6587300709879964, -0.7904559277068651, -2.315407430309387, -0.967031751425031, -1.2111104112659692, 1.1165142741201712, -1.14866755354264, 0.8057441244012098, 0.4178928647723216, -0.020846646337734358, 0.5551469182712572, -1.5961455451806656, -0.7031302949055669, -0.41028204933945617, -0.9777361191330871, 1.2981725493682448, 0.3188319828192939, 0.25873127395385664, -0.379385187819982, 2.107178188533238, 1.4536609387913249, -1.1387941261419205, -1.712425182923322, 0.3566695829730953, 1.1414677831956617, 0.20633129354426713, -0.8058761699524354, -1.5234881845032275, 0.3333472378510335, -2.5155800539541624, -2.0302328787290658, -0.2576464586072924, 0.8185234894232848, -1.28940629465169, -0.2306027324522638, 0.7358827505613679, 1.0374909793046605, -0.9345316135333895, -0.16442059928314412, 0.308965199801336, 0.34251142706269105, -0.07080734393970523, 0.8231579131975931, -1.3729294413980373, -0.46127465887655894, -0.035252930217957924, -0.23658050317984944, 1.7518197603730261, -0.81059797741492, 0.1826290983648366, -0.7737213030793697, -0.9997873375116736, -0.1328475091059407, 0.03570963436880882, -1.1154190656098026, -0.7173668619510178, 0.8540460915663904, -0.6749903885940287, -1.248551685971229, -1.3338024102303017, 0.148945945460554, 0.4121244092522423, -0.06608742293155152, 0.46647845728579346, 1.672424304427963, -1.8182089292370218, 0.26358627441451854, -1.932801012946216, 1.3225327810296341, 1.018473350511054, 2.0386774797018488, 1.5241022518138863, -0.9330726618722696, 0.23962006320701515, -1.827840212436318, -0.5182940646691341, 1.6768171268458474, 0.8727008011357287, 1.3141478076060127, 1.1331000618153295, -0.6471714724484876, 0.797059389152219, 0.002784666050067822, -0.32182490338824976, 0.45643912926372443, 0.33095558880021847, 1.8831725913285673, -0.24445248993450566, -1.0997783597859248, 0.8419272499163758, 1.8322109771288724, 1.548776243494974, -0.4033887271665669, -1.6434051461329007, 0.1439054437108451, -0.5215482135100272, -0.43561739060533844, 2.068004749025106, -0.47566257052374805, 0.06269893943723043, 1.0042854544194937, 1.0556896242580895, -0.3300823027926001, 2.2788576134008567, -0.22366362863483996, 1.8759480674470883, 0.15140043189879102, 1.9004116854971862, 0.7940554166644426, 0.06181476323711728, -0.570871244760353, -0.46732998412991184, -1.2499592242702053, -1.0849888819599012, -0.5954869080244052, 0.13289689540976066, -1.6834501357259144, -0.2736045486781373, -0.8369675677370783, 0.16383419590308843, -1.608642985723565, -0.3369215598187456, -1.2568333612185285, -0.054724281358610134, -0.30517930807042987, -0.6744050252037821, 0.37987983377552786, -0.1389374364935864, 0.3414789590951887, 0.14336629157391864, -0.3513974030355616, 1.0440954733411791, -0.6303507818714148, 0.2840138644013874, -0.215675684268328, -2.2862630005006683, 0.9524940657514128, 0.17288902504982026, 0.2768596315553701, 0.6888469622508878, 0.525330843298114, -0.5518510385067477, 2.979264106690357, 0.43577558064296856, -0.19001773852863663, 0.4987379345614985, -0.44433329386320003, 0.6939790691305675, -0.684994439165174, -0.2694280451068745, -0.18830081265510723, 1.0579995333584131, -0.3370536026898364, 0.5239472667582602, 1.3832328768631545, 0.8429899051742298, 0.7401746312785207, 0.6498521432888026, -1.958330054772077, 1.681280208471534, -0.192285315944823, -0.9535987062840535, 2.217903890305526, 1.159521051429327, -0.6508386428083419, -0.3793943460742719, -0.33961433011760284, -0.47700795546090585, 1.2815285850748785, -0.3851736319713896, 0.21645751501248764, -1.6945195837721594, -0.8103697171254504, 0.5277482353715718, -0.33525676866312615, -0.8235512904023813, -0.32757639475004285, -0.9495232512263411, -0.9560395226894949, 0.10797815626063763, -0.40796936948169893, 2.0019720619470185, 0.7363163559786813, 1.1179858184891438, 1.8589486629191159, -1.0356569873045773, 0.7105249491991853, -0.8011896448744533, -1.6665164049266594, -1.2287942918683348, -0.7392424318086622, -0.5969860451090878, 0.8861391585939355, 0.018826031407573985, -1.1638707607358365, -0.05844190733359086, -1.0863702909733435, 0.17232456770354987, 1.111699482094117, -1.436279291507423, -1.910977855164438, -1.611568336132021, -2.0556807495581184, 0.944963078458417, 0.10495937986298445, -0.7422032047796717, -1.4200280222126396, -0.12339870459268165, 1.226165790531111, -0.29829351276222144, 0.5959257016300005, 0.2528795617367993, -0.9461920316605699, -0.9994851389676243, 1.001847392748595, -1.1431816369839354, 1.2589295050762352, 0.3969883765301359, 1.3784563926437594, -1.2536546413890888, -0.7911799885042053, 0.8226435856115948, 1.8102771182207362, -0.07439224242377843, 2.4524233672501117, -0.6246742528651107, -0.2278289071660564, 1.2530422007504627, -0.19696271021917766, 0.04256068208742518, -1.7987363195830814, 0.493081683306822, 0.6205980279148317, -0.7636178676767112, 0.9086924436733845, -0.462816133490974, -1.0909945129432963, 0.01968468577732986, 0.5090420417608628, 0.08377655925163774, -0.36220974410088447, 0.46646921755606313, -0.7984114057270517, 0.8608315780332864, 1.0855859314736596, -2.5097797006341684, -1.7133216845000545, -0.18811179081527124, -0.8585487839824099, -0.46003510545841586, 1.185348877042055, -0.06837744230993265, 0.7593582387741656, -1.0344317813707127, 0.5046947296604607, -1.9422987481234022, -1.2234658526817974, 0.2681903783538725, 1.587195779950092, 0.1355510526449358, -1.5974681769715842, -0.5512307346759514, -1.3252421835178432, -0.10530067234736702, 0.801442557021987, -1.8109717967434968, 1.0186115134101386, 0.4142426802210144, -1.8247023381866363, 1.4040885460756498, -0.14982138229308825, 1.3317263598759692, -1.1357971320306748, 2.849100297138873, -1.9976763422694885, -0.5460224046028854, -0.36426287326194373, 0.6721100179635024, 0.25914554462986766, 0.09920922197831285, 0.9911081520831109, 0.7086259173479953, -1.5058258930399135, 0.031669234503163876, -0.8526173469242245, -0.8079401141335737, 0.40370201504754255, 1.2172319363809345, 0.39346791051651697, -0.48570210503929395, -1.7255027121852753, 0.49139485302682634, -0.752943003781883, -0.44291269499209035, 1.2546621478537752, 1.6441885044375946, 0.15362493536616473, -0.7428854631239674, -1.0179466867098086, 1.6593655689757547, -0.03988964256678901, -1.0123153205659965, -0.8734967589608623, 1.9946776216198865, 0.6075396224178844, 0.4177484513679741, 1.0093178205364592, 0.863837750315016, -0.370114767133925, -2.089040153760886, -1.5492628211978905, 0.44443701070548086, 0.2002240619617895, -0.19545372454934734, -0.9626541117643814, -1.5063430764878232, -0.8611637025927162, -0.025835928134702212, -0.39759992884061257, -0.3176579624277766, -0.5361364893392745, -1.8314564569883693, -0.54179588129677, -0.17564875996841528, 1.061157701304941, 0.3536239976826397, -1.2461505142902223, 0.7957521550067248, -0.011939756036441481, 0.618629342330549, 0.6499192803667364, 1.198734908962728, 0.5219266667532433, 0.019441828637641715, -0.5276092354503508, 0.486355024402404, 1.901795561330448, -0.19428788581116363, 0.18142732212126172, -0.6205905776687375, 0.6215072858350296, 0.06893349502234608, -0.8994041981001568, 2.535238954105019, 1.803584810188028, -0.3002422767662764, 0.7772770720989453, 1.2501381168674697, 0.2648566559242316, 0.5847582338656413, 0.11847944686285733, 0.9170274990667989, 0.5177587396774179, -0.508432510531831, 2.219819485081512, -0.3882974155604778, 0.008989685448373152, 1.7280837062533885, -1.2276853845391786, 1.3423269453496884, -0.34657364286607967, 0.15387248079230703, -1.0036588175551275, -1.0569236569383849, -1.5570575448904793, 0.6073961608033702, 1.0978958122938598, -0.04639003124627615, -0.43848432532368237, -1.8894570439851615, 0.8711696365098546, 1.5757224894871669, -1.3174549982184063, -1.0017434335583857, -0.6645952583973973, -2.525093244504134, -1.527423725986071, -0.4018117779861691, -1.5170181728342755, 0.9119825190944588, 1.3481185534777587, -0.3255860744344463, 0.11180410241699067, -1.9585378925038028, 0.10248054999395283, -0.8187920350020144, -2.5099160509767877, -0.9476011165582775, 0.5843063132109265, 0.3325429047866673, 0.22435940945472446, -2.4140784361682917, -0.6217143644317914, -0.2229337657779744, 0.8974108611322525, 0.02821845330584946, -1.052032104520854, -1.4848636836878235, -0.6254228337176929, 1.3491477500758227, 0.574912387219418, 3.482127573625267, -1.2910185229003674, -1.0235547609596032, -0.1518051513992686, 0.39193306218449475, -1.0281247167829861, 0.4300278679992335, 0.6255099857247797, 0.33655863040221434, -0.911695403942514, 1.441017776166993, 0.11256948740441326, -0.36739298058181846, -1.3488511279933697, -0.7114202859602522, 0.766094607063383, 0.2305108300419299, 1.4594999022825508, 1.6565028594878446, 0.9495384635265338, -0.9965458966168914, 0.08298002317548679, -1.260750749781777, 1.0194526282172784, 0.92992280535859, -0.9547386442484339, 0.19418075061668896, -0.3576117905310136, 1.4552130613718364, -0.6059413024490841, -0.2717870830555471, -0.19003438855033833, 0.313798394510438, -0.853282974516705, -0.05883608268018914, 0.7424771538856715, 0.3329652615417796, -0.3772242078650047, 0.21504611004418214, -1.2584634713647451, -0.12298532287400522, 1.2122924926226268, -1.1912467032821663, 0.8205280480507767, 1.1654586248244356, 0.9109061783586183, 0.17539765174607105, -0.1721865090924666, 1.7499594816876005, 1.3432083104463668, 1.2642206531407492, -0.26101674019627513, -1.2406383253791493, 0.6100395375390452, -1.2282478843842994, 0.5631781172591249, -0.1415406098956512, 1.1146474291081632, 0.12809259050481248, 0.8575296241498003, 0.3179195631270259, -0.7187837042656359, -0.2858004306915729, 1.2930273894839117, 0.04546408815877423, -0.1336966151872569, 0.05706608920567127, 1.112331658894643, -0.954799237243002, 0.39902168974606456, 0.3581379962058217, -0.9190058835224986, 0.7452488441493872, -0.03197200339390337, 0.9418746708525668, 2.3745506617296184, 0.9311639870519529, -1.031758491739968, -1.0070661652309916, -0.1822018421265716, -1.3973827417907212, 1.5959990136029103, -1.093401899579313, -0.9398515915364787, -0.044822553143688264, -2.4546214483508875, 0.06031927248227498, 1.0648666355995915, 1.7889783203609224, 0.9123892950973486, 0.8739741945387111, 0.9320148543614325, -0.7709063088687087, 0.7725751535712285, 0.2803654756897968, 0.3731499546926155, -0.1636565542432425, -1.1603667625732599, -0.8264577964061548, 0.6181380120960005, 0.28920576002664117, 0.8810855672900837, -0.6777995030090043, 0.31066059043482463, -0.567074498799235, 0.05260131840280725, 0.5958820831936323, 1.2633287768307866, 0.2506728305875376, 0.9549399574464227, 0.6132749252898843, 0.6172887444353594, -0.23563155235787656, -1.439136631179678, -0.49667777418014397, -1.8696273326602113, 0.5698386301404551, 1.0208829434037705, -1.227446369672442, -0.7098732595084535, 0.6285442590037809, 1.077680579202451, -2.475046197849588, 2.096932493780143, 0.00458783155768144, 0.47710954088755186, 0.4883911933568989, 1.6393870605823775, -0.45830874275290484, 0.7318743374272004, 0.027201853010524635, 0.11917638766696866, 0.8051234664368223, 0.15078633278804918, -0.2971713777817473, 1.4004281718598546, 0.5418526726703001, 1.1491846922800586, 0.136945792281875, -1.0207233445610824, 1.1804431844493877, -2.004244280072164, 0.2566063463580519, 1.1586159199856005, -0.4557580476274826, -0.22593392826742104, 0.6218206263596171, 0.591986347130927, 0.6112908981415572, 0.1975420283709659, -0.6704978670429186, 0.21682529384572752, -0.47076708180824206, -0.845247285794217, 1.7787868430821605, -0.3712787742817403, 0.2826155077240386, 0.04868019245064243, 0.7013182941515893, -1.9002634040000022, 0.3536259351762963, 0.023738406582152215, 0.3205025187512855, -0.8423141342597781, 0.748479386705465, -1.6489731291701415, 0.817346764973665, -1.0742805619991638, 0.3355705657080463, -0.1435403855733355, -0.857741823959872, 1.4034513495822272, 0.01772843432103923, -0.6725657613413668, 1.1288854699619695, 1.0984019754856196, 0.5226439185665586, -1.5652105011676398, -1.187607591355943, -1.744529108769471, -1.1593321314316867, -0.5463214000534694, -0.32117598031117106, -0.3009664153872677, -0.611157489523602, -0.2575386715122376, 0.8894816341271155, -1.064499895869951, 1.4501611777336252, 0.4055226842737947, 0.6641937144878431, -0.6087311428234844, -1.0754536619692905, 0.03697031386268651, 1.0593371438279335, -1.0860464942194645, -1.2235527520907938, 1.6760595207805011, -1.0454928312055851, 0.29201977497638065, -0.45020213722880126, -1.2977139587358602, -0.22225219986909528, -0.26670364351052217, 1.0604323049696474, -2.266577260592208, 1.6729119898161413, -0.8650913232473473, -0.8282183606221125, 1.2384846285442699, -0.3716059456421079, 0.16621636379563645, -0.035259612579548356, -0.9831509716572585, 0.6508523061980431, -1.4146020741698042, -0.04559774484085054, 1.2083471275857263, -1.644495860722049, -1.8666572259512482, 0.10626187903777197, -0.06430204807650282, -0.3358516059305064, -1.0635409503728515, 0.3201752605812687, 0.25058468769216125, -0.005709196510509492, 1.3339876045645092, 0.34077493276500037, 0.17508150267583353, -2.893947656318093, -0.7695162073175942, 1.1750492653897546, -0.9796019364037872, 1.3972965815075544, -1.4345798457411505, 0.3489464790053254, -2.0197777522959477, -0.8065394745011645, -0.0034135338824841203, -1.0731169344306746, -1.237462996201327, 0.3948932019142556, -0.4317587918007289, -0.499921778189602, 0.7737349402443094, -0.47763157578243765, 0.07638447317229659, 1.894361514776413, 0.5871359115692453, -0.36029655305427266, -0.7569125761723322, -0.29593885086992766, 0.7212952349084024, -0.038228024915274154, -0.8530774178197754, -0.21215586412483442, -1.441167393238252, 0.4281714181364489, 0.28616963542634943, 0.7168856597120674, 0.2832232342095599, 1.510338402678415, 0.7211043660558477, -0.04057018261482024, -1.4276100802599914, 0.1647229155746489, -0.4829258791726341, 0.30440659432496103, 0.7339219585244234, 1.16699159039612, -0.30310907986428337, 0.6605240538089705, 0.06277517933032051, -1.037107708351542, 1.8441114826600193, 0.8647912560844689, -1.6555116702400055, -1.693284874624285, -0.011163109353542769, 3.20726895218537, -0.4041848680982382, 0.8137346850131517, 0.27131346204904827, -0.5506323449735452, -0.22992971700201584, 0.546037934923752, -0.8065464041714884, -0.07972348966120531, -0.2664581103583098, 1.6379957505235996, 0.49838884862285027, 1.3403616253061532, 0.06692266105284445, -0.9160945321799026, 0.22203784069579008, -0.06548760067920414, -0.20915597731156368, 0.9055055807944128, -0.2912774101197887, 0.3044170421285907, -0.4383113225850442, -1.4879178857478077, -0.4452090802313031, -0.08971559381616405, -2.8970848551462884, -0.7812686449776763, -0.8603825797245094, 0.2650737949773325, -0.4901214136212036, -0.5260458946517702, 0.13895104695661034, -0.6031405812353118, 0.5610805308831738, -0.23516402093397207, -0.4934227107237387, -0.08982730429071005, 0.2239396603107932, 0.4284005495184442, -0.0793614586854048, 0.1925446611468018, -0.7425889197898019, 0.21192434446493427, -1.0098416626653304, 0.16143136423359958, 0.9955543094101242, 0.001654224259415607, 0.17687985058320896, -0.3255981350525653, -1.9080401727239902, 0.5054535144095093, 1.613586257680883, -1.7200676084135762, -1.3728131438800562, 0.07640753123648016, -0.8700508282904109, -0.1761104053605984, -1.7728031869057461, -1.653300687678279, -0.9157742211948212, 0.8275829292958561, 1.0118447726491153, -1.0120661516027996, 0.18118108740747385, -0.8224231934621419, 0.48150501731124623, -0.696662325935554, 0.20544685901912266, -2.1344661842071058, -0.7767114460115234, 0.19590253338408023, 0.8926047231535484, -1.3006638215645796, 0.576328919681951, -1.2173584311819785, -0.6172370496259396, 2.233981317687901, -0.7179055406815259, -0.7086367313990741, -0.8472474794023428, -0.06022288023401176, 1.1857036118297335, -1.6508664396885853, 1.859273523618425, -0.5500320388605151, -0.34878314774842867, 0.6076453338857416, 0.44988739533538413, 1.2463279540599614, 1.223017557117916, -0.28119018556376363, 1.017177117851101, 0.22290425517769535, -0.2122902059894626, -0.5974718649137669, -0.8016731745397001, -1.9209866279361265, -1.3941741701896513, 0.6449902571360758, -2.261989172953603, -0.33396885593955056, -1.8855254505818353, -0.3378334464473359, 0.11964693316464774, -0.290549274830387, -0.3451151907078269, -0.34056280244737497, 0.49641372654918897, 1.8738330015350317, -0.8259964589143509, 0.7546139262611415, 0.9783890634858938, 0.7450536854105123, 0.2268244734649951, -0.6584193081378465, 1.072389791850441, -0.08334849594822555, 0.15101801889237174, -2.1217564979698587, -0.11363980907792413, 0.49762317078621854, 0.5873167193731348, -1.6184528382419914, 0.4271822017082235, 0.36944164377047395, 2.21586108992756, -1.9965047357817696, 0.4032771592052368, 0.45172564770881724, -1.4024383710742119, 0.8360260916419137, -1.0989114078144606, -0.2424224508092074, -0.7919165566970661, 1.2452621510001574, 0.7060159362727503, -0.05716524823275308, 0.1307970412958502, -1.1386445145414372, 0.14020394802149638, 1.5451291811315313, 1.0726667614971659, -0.42370983101355975, -0.20113364968659764, 2.395499785767523, -0.06118305782779048, -1.2558623039694434, -0.2570817956501713, 0.46016229997790403, 0.8993620149919005, 0.6832783230266065, 0.26210898833791996, 0.7165560644133152, 1.2172040710366143, -0.6632913271829526, -1.7765711887597941, -1.3340829512387526, 1.1929085392809835, -1.2732750357995384, 0.027533956999463982, 0.8764534033600169, -0.3306800652450025, -0.9903555465986492, 0.7167430614561386, -1.8664826846885418, -0.6771412606552548, -0.4096290666936604, 0.28071146857318724, 0.4339382794723062, -0.9152560021912343, -1.3555276030738406, 0.5057119473625972, 2.6452662519202312, -0.06282145679059335, -0.08235023773533072, 1.708873355849287, -0.49632313592856947, -0.5130201759109713, -0.45507094135657866, -0.8745389933874148, -0.04504770521421096, 0.04997715326438358, 1.7120888854777687, -0.42013445995116727, -1.368042458311234, 0.6322769854238124, -0.4361155364396361, -0.13263004903364053, 0.3498829397768942, 0.40215801558856806, 0.12719348388431073, -0.5012598313251173, 0.6610339927851817, 0.17882954001561305, 0.5150974318972018, 0.011088296424341391, -1.2001651247376517, -1.762148512338698, 0.15399347883167072, -1.7871938763590334, 0.4966116163910412, 0.2337060713279987, -0.9181065344909255, -1.6239288585132634, -1.01250283262199, -0.4113157808335941, 0.5146204275871085, -1.085963459263915, -0.20732855079271315, 1.3550741819769065, 0.19494672485453582, 0.6217573691518721, 0.5663321895464859, 0.23199478117047492, -1.8987665871965578, 0.4316103868944005, 0.5525793599291801, -0.3590074209313032, 1.3139878682751902, 1.503472917877104, -0.8403469269942735, -2.321638892469411, 0.615177865134696, -0.5691120050845233, -0.27337872388426043, -0.22027480428127236, -0.6708339019924402, 0.4779076283151932, 1.364824357270289, -1.3005943830522144, 2.1500221682239338, 0.8956340022881684, -1.4669196647361165, -1.3825671597580942, -2.2959604090694663, -1.005900712116088, 0.41370219795132607, 0.06514941901958944, -0.8986548323277307, -0.12442442818454845, 0.790229429330228, -0.26524779539533466, 0.6231823577732554, -0.05433032062535339, -0.3271679637155966, -0.48641817237705415, 1.2709563437229254, -1.2818928528496292, -0.44625769453040887, 1.4706117124650453, 0.27436692517771527, 0.1266690421678248, -0.7077099504219033, -1.5889253174633846, -0.23561921887879395, 1.7319461002182612, -0.5884666640616496, 0.362071976074073, 0.9795487898926456, 1.5839237961469552, -0.47774221468792927, 1.0940311578656114, 0.8459547131716953, -0.14113396428364625, 0.552520555371134, -0.6138526561756049, -1.1153598489046637, -0.938266514681295, 0.44057262576890616, -0.3153992566198346, 0.44221032860530696, -0.5114793884119986, -0.4870781728745626, 0.3281864731031445, 0.21921931950670162, 0.37112048133772546, -0.35435721098136164, 1.3659144689895932, -1.8012882606444534, 0.23544803543426052, -0.7020501844352192, 1.7984940296686476, -0.9654732947037176, -0.3332003348515321, 1.1700647195581357, -1.114849081935053, -1.4730818177415759, 0.16400122704560613, 0.11006510109439172, 0.9757259173953169, -1.3822598299754023, -1.2825450334505082, 1.2937018904017876, 0.4744071613967099, 0.3270241482120047, 0.4935447230678845, -1.1126787394776003, 0.26361053910394133, -0.6348074884280713, 0.019697285376441314, 0.5138451621517045, 0.8631551474596675, 1.3248426478437305, -0.8969411363957005, 1.1458475216382171, 0.32001122801979925, 4.586491568040012e-05, -1.289229351682586, -0.3930741275374174, 0.5444927707117395, 0.7129861747453765, 0.11636254471556545, 0.3324219721408809, -1.4621247463380092, -0.3957672444548875, -0.5035518004074743, 0.7596050045788456, -0.0771957595117727, -0.29500800865620874, 2.3336461297481965, 0.5035003768826509, 1.505435095665562, 0.5860967688521225, -0.687254036452084, -0.05304605945477337, -0.6885244478882085, -1.8076867304729067, -1.4888261487483414, -1.1968396077565917, -0.4683820496794834, 0.18876691647756583, 0.18394875811533604, 1.3332253439364106, 1.6528268287637704, -0.57061185237872, 0.07341710760377934, -1.0323278274267111, -0.22963693220616152, 0.7030366247302751, 0.9110005880782556, -0.4341462812487439, 0.797886473841515, 0.647482313587353, 0.2741029832687556, 0.029286395951917715, 0.0295928812062812, 1.1522274668380685, -0.3142083135626996, 0.4775810030692476, -2.1347173574975415, -0.4322117750170843, -0.013212149257710306, -0.7014013272155128, -1.1609142988349819, -0.2089971956131933, -1.8772222875449667, -0.37704340752512483, -0.21623435000986505, -1.4417953437661464, 0.2886867717262001, 1.3252285801327996, -0.8605274479600202, 1.6926588569758974, 0.824659165992215, 0.49870142021172137, -0.7788581426382463, -0.06593531126581628, -0.47123640747842427, -1.3621132963071056, -0.001007865357421154, 0.30658821740993414, 0.7410312604250597, 1.2006564399785566, -1.2564523068359401, 0.03260214567616272, 1.9253519877871668, -0.5670994758028738, -0.03768520109794122, 0.4910960994397462, -1.4539511025598824, -0.825885458889322, 0.415499428802682, 1.184541568112193, 1.1375245848146405, 0.8525034166657206, -0.11661578564546203, -1.2841192764426541, -1.6215456140740563, -0.5200240877025308, -0.04844107610277171, -1.5207554456206835, 1.9127682467429836, -0.42645621297502234, 0.48435473134451146, -0.9862018103256094, 0.09447361684626393, 2.7024423951040224, -1.2502852168208263, 1.0564608242796756, -0.6079512367663675, 0.17884446714485908, -0.22149876786782363, 2.0218414213735065, -0.944690837933129, 0.015963164221029297, 0.9157090697913318, 0.1116560258768564, 0.3357751068892096, -1.2763621884965641, 0.1690766629450158, -2.381336287347689, -0.4486870786153337, 0.9949643514861417, -0.7169672621870234, -0.6502187364074389, 0.07307131376826644, 0.7241803270715641, -0.24155746549995188, 0.5788147912485433, -1.5559493137562985, -1.371133401477528, -0.8528224142755823, -1.4400643270776965, 1.0323955824966942, -0.4997595789834856, -0.42583934666403955, 0.5146706579055145, 0.0645170796112235, 1.2112581179509845, 1.2319879510737775, -0.48132179880820924, 0.13521482203332824, 0.6418828340325854, 0.43341793080291846, -0.9409719636806865, -0.25339845421219565, 2.6593341629733795, -0.34707390486076817, -0.5911437842541418, 1.5229321119386807, 1.2565967386065764, -0.49006174867955893, -1.2062551407832132, -1.40099599415034, 1.5833045282764626, -0.9192831024033993, -0.3596588907306126, 0.454854393818262, -0.8403883098933949, 0.2514038467979002, -0.571815180574922, -0.0953635080825489, -0.8823614229378317, -0.05347586028012364, -0.5258414612178492, -0.2390119947951497, 0.4538783284342796, -0.3175945593504469, -0.7713328571653605, -0.9479948415017309, 1.1410930246955318, 0.8824925642979248, 0.35955435976648853, -0.5113076940026064, -0.4434979913488173, -0.1404910642952451, -0.43855135015010555, 0.23556700118057217, 0.5515337163152376, 0.7981188695283868, 0.31655649455565227, -1.3242657943213598, -2.881403080187673, 1.6827983426917472, 0.9723777039129146, 1.3705410722189804, 1.6331811514487842, -0.6135137552402714, 0.4012321328373087, 1.7041616423960386, 0.5596167458449445, 0.8447491104863223, -1.5418873934832487, 1.1506721334416476, -0.8648331148320585, 0.9402467040593111, -0.3576267962203251, -0.48746914759156385, 1.230669025148999, -1.5916883685771226, 0.22069925490052383, 1.9937904507346118, 0.2687312036463947, 0.47725224105860664, -0.16823345811271526, 1.3047148845095464, -0.5880310086192692, 0.5292928285709689, 0.641407217626025, 0.6306312294334836, 0.8564000479804418, 2.6517523104451124, -0.5160112159760138, -1.2895172890047952, 0.5114057540420519, 1.9951257379111054, 0.8461740409447916, -0.1382720341617296, -0.8150968659328504, 0.4722682848574434, -1.1788566593214072, -1.5989697267808782, -0.8293708085450275, 0.9407141260606352, -0.5132217761050155, -0.7265695401379062, -0.19125050749757364, -1.1013792608464439, -0.45460097028953367, 0.23352728810852694, -0.3617959235721764, 0.3134168443525273, 0.27613630292415026, -0.16100614913260114, 1.4123667855424256, 0.48007701383774704, 1.0312592614323792, 0.9026052733839219, 0.22155257444183055, -1.2028335027158916, -2.7083410278893836, 0.963531497334552, -1.0128877172962578, 1.0459513571305676, -1.1496184777298708, 1.060051235720651, -1.129917808407382, -1.6006321073429823, -1.2344398516430222, 0.6712639713110571, 0.4275038196419661, -1.5503315232586383, -0.0258713979265484, -0.7492104283001418, -0.0004303482146737261, -0.8206409809605414, 0.30231415633002073, -1.949278277300761, 0.7152968081433905, 0.8570491926983616, -0.0179904148620451, 0.4288929530749687, -1.170800131974393, 0.5178109918686724, 1.5274386033549012, 0.2970729844708446, -0.8020340126841875, -1.6789018883883375, -0.010101758567312798, -0.8212078898186892, -0.3363740287065721, 0.6606844076702482, -0.4960001482957064, -0.9535095924868308, -0.16271164006627017, 1.1475663788419839, 0.7090478555933555, 0.13143731838501344, -2.362842908403514, -0.28247981358495444, -0.14135996743718046, 1.0963717774822173, -3.042544936995932, 0.6042083834803645, -1.2508884246457501, -1.1929741948031187, 0.17300043974037216, 1.2407014002058, 1.3574845019672483, 1.9243998615319633, 1.1926594175502163, -2.0305443209851455, 0.34212041713114766, -0.4644844679087709, -0.49655743893310145, 0.7538052328908408, -0.007712610078743199, -1.2476975036508844, 0.5196349089335629, -0.4135857088308844, -0.3068132086290662, 1.8916170402323318, -1.3815040861368346, 0.5525362259989156, 0.9424842802962516, -0.20884835442135474, -1.5173911603257264, 0.47091295669565136, 1.7199434373465081, -0.5370333308091513, 0.06042254744015805, -0.8748902559053183, -1.340205583733888, 0.4958666036733343, 0.20342820299611594, 0.11751515820281094, 0.7370316963801268, -1.2442847407258064, -0.3106877352283444, 1.3911286164928944, -0.2887390981778722, 0.7008929616731443, -0.8257902662060436, 0.3180872558547474, -0.08939616487185616, 0.3756368027672861, -1.3237180551609653, -0.3324041907926577, -0.32126883859350397, -0.20509768842290566, 0.08817508354871997, 0.513158417554927, -1.4751743339719563, -2.4625827310082276, -0.15821561745474802, 1.1368161703639743, -0.7319280025656693, 1.2626963407116831, 1.5179650379453165, -0.8757855382289687, -0.6492223151361847, 1.4598488605293016, -0.7143510996010386, -0.6394972528566122, 1.1647772469977757, -0.24997706273700973, -0.4353769612983601, -1.464563492759939, -0.23003522809338034, 0.03774109152436001, -1.1190208403185888, -0.5556666582441676, -0.7379348607240042, -1.1758189270185915, -0.014907920723456713, 0.023472841574159475, 0.1319322445282922, 0.21344429388823122, -0.02845274321953803, -0.8775709339432134, -0.9001662417411024, 1.3393988699419022, -0.18913649158424936, -0.3777633095031596, -0.35584107757370215, 0.3963238928067366, 0.3029564132451743, 1.7247682495352483, 1.2468318179845552, -0.7258449513136214, -0.31071857429898236, -0.31842364290351305, 0.6311839731650102, -0.7055765934926371, -1.7874218569696585, -1.1106272610223071, -0.5625437235220516, -0.13697385085913294, 0.15282291717446833, -1.8104538538791626, 0.7988006687752819, -0.7578989688809694, 0.8262751105136543, 1.8334795583190833, -0.6744246238915512, -0.789359688339313, 1.404192770796905, 0.330362926324018, -1.1804479185776882, 0.9471462073176418, -0.19828899067069544, 0.27051837665526074, -0.5934351121160857, 0.37895872620187815, 0.11964080450031542, -0.3228956426671053, -1.1880822912216487, 0.947931529141902, -0.0905159639136626, -0.019557717306973175, -1.4209300095662964, -1.791349225999429, 0.9663602127327576, -0.3153993657707258, -1.761319155349504, 0.6313889627096874, 0.07985869058758541, 1.2580602596572856, 1.029251940544257, -1.2290471786829351, 0.6696034536648222, 1.5551311289106517, 0.28402407101400595, -1.4893865879702253, -1.5444098119762752, 0.5876447968681623, 0.6496662605382096, -0.12886323783855255, 0.9558441145401433, 0.5019351142930705, 0.10153305601208097, -1.7366630240513052, -0.435825631958508, 0.25791840787449705, -1.5036051642324433, 0.5435784345467861, 0.09616323500360772, 0.8592973650087373, 0.15645591008418647, -0.9307876232247423, 0.3771198510758209, -0.4489299740896566, 0.6759258883564428, 0.6282520902380114, 0.01113955954143369, -1.1850119552898466, 0.1088174449656543, -1.5782956636428527, 2.1524445783822075, -0.1923488636731992, -0.08998659605684306, -0.0667341475475383, -1.021277463826713, -1.1496230815212778, 1.4444810218604507, -0.48974185427652245, 0.030509213491028194, -0.9033859889879514, 0.41772363744710317, 1.1400766522125514, -0.5442453428755152, -0.14947057354321336, 2.2397333608993617, 0.35472563965024234, -0.4529480699406293, 0.5951745343335869, -1.4081219160859766, -0.15818091203445495, -2.216119447538367, 0.3612497002879088, 0.9295831853780858, 0.3162677353792205, 0.4791820204634915, -1.1000915051273246, -1.989297607724569, -1.3202566339922561, -0.30034434201906607, 0.016677549667049207, -0.9129013329363429, -1.1661744416381359, 0.05963001570322361, -0.23124390034444367, -0.8170896967763409, 2.1042247723567264, 0.865234808152949, -0.31760434706203206, 1.2824573948162326, 0.334716574612848, -1.2848803475776145, 0.6926301468382663, -0.40519007344522595, 0.13635287413106587, -0.7126058248568676, 0.05062781055205412, -1.8070378085735819, -0.615294795017385, -0.23117653476177036, 0.3613518894877463, 0.6370441078210951, -1.8652584886223038, -0.29565197427005857, -1.146340967726066, -0.8595695337679159, 0.0576864185834971, 0.07070599550268974, -0.036507928105365316, -0.1628433379144742, 0.06323760715907836, 0.07725234964386865, 0.2745526828266456, -1.1993502850910627, 1.2215624196744064, -0.2516002190837337, -1.4842748087317998, 1.295792226996102, -0.9217394035013782, -1.6289683513323872, 0.18731695583741478, 0.6463501086959019, -0.8044491175965442, 0.09980439275311402, -0.20409139065513487, -0.565051736306158, 0.5398860573863753, -0.21335764190193762, 0.9469019714187379, 0.6594567777557834, -0.1670566261651727, -0.48411742404427804, -0.47333982486335097, -0.5264955334024398, -0.3564263780000383, 0.10606288937749743, -1.742636576256362, -0.41241349984549636, -0.2771689005284763, 1.1756330497496872, 0.0371722224095856, -1.719513269213884, 0.11274290200956968, 0.2921306808914324, -0.1826672480217419, -1.181956937449059, -2.149453264914192, 1.0285019398853157, 1.0310471283746865, -2.663436394639705, 1.2467363653267913, 0.5123683379216205, 0.23092751585459137, 0.8081290279755639, -0.6049718575345218, -0.23635457803191948, -1.9395218029516015, -0.1323862952716759, 1.2325203915325644, 0.276009243526737, 0.1492459253256237, 0.21726766455192587, -0.5770434460848459, 0.5827452988547814, 0.11916774115381311, -2.14401394992588, 0.5195313892102802, 1.0241891307815474, 1.0927262709225463, 0.7376121073343893, 0.4887206083683307, -0.09443649599196768, 0.9102224699247276, -1.284898388781849, -0.36193589354046696, -0.4740088576086175, -0.48039949677793525, 0.6839818119478203, -2.2827331175478127, 0.8750452129317589, -0.1512473551743855, -0.3703834572823892, -0.9107045942870674, 1.0433939496948768, -1.7725168779038851, 0.6333201005771621, -0.35343040315014634, 0.7393488827035163, -1.1216856542442588, -0.25908162538710716, 1.6198872052913045, -0.7203452724640645, 1.6547633340795311, 0.5578070300279805, 0.07777708585746157, -0.23822108331619382, -0.7195382174910474, 0.18049971990772462, -0.834460048131092, 0.6143240831256247, 0.5636982076926961, 0.09740574218790975, 1.3338524222936559, -1.3226736544417588, 0.698380378860492, 0.43095161244539737, -0.1400484411627931, 1.776195615199475, -0.26597546211714684, 1.6794774330801518, -1.1510854510977948, 0.38530220722175546, 1.8216230737551882, 0.6530243677007253, 0.019322248012372287, -0.7114761411064147, 0.18660022784391314, -0.2399719244729699, 0.9379312415720328, -0.4313632097657701, -0.37240605366390944, 1.1444008367587273, -1.4695622082044484, 0.2297157575005933, 0.15186388355918132, 2.184018388262148, 0.508398049229347, 0.6186006945560227, -2.536621378241337, -0.5310345827042616, -0.8552101617775465, -0.33074064462383984, -0.5078748552087413, -0.8927622769766214, 0.7504534355298947, -1.1298416458313374, 0.020776555615165924, 0.06465915603958969, -0.19551925912624857, 0.14997333395833098, 1.5599383209102764, -2.7376058748105367, -1.587371215759828, -1.8997501337213472, 0.017901236005802866, -1.1338667441955352, -0.3550406252643645, 0.30108513606615217, -0.3208121264787822, 0.626530007733015, 0.2744959194716906, -0.39826309988964836, -1.8664634887003235, 1.3785379713019141, 1.5094368391871784, -0.6813521620074146, 1.1878723466353807, -0.007059298483052189, 1.3542362472368055, 0.025119054456544603, 0.08979674558997426, 0.7176302389765217, 0.8822042330405572, -0.3442875361139858, -0.9402095043441547, -2.018076017413993, 0.16945865538136087, -1.6430500763775309, -1.1270043036998092, 1.6535411837532856, 1.0331617938142523, 0.00876961662970532, -0.04318726012512911, 0.0023817564294567623, -1.767572706159409, -0.36379963350756367, 0.18918843006493744, -0.1768662938466334, -0.46476807122108144, -1.9122243496856774, -0.618586339464337, 1.0667521656002157, 0.18156825563576162, -0.20051354130191604, -1.0373118362469471, -0.5873479589138144, 1.6664900468127306, 0.7069719380074558, -0.034508451237904414, 1.2923449903666082, -0.011993828336699585, -0.13652393006125702, -0.32546126515227014, 2.3827134086213455, -1.8214957596529628, 0.3510494819659443, -1.083608591300827, 1.7872830333857956, 0.5068201167182538, 0.5971079811106282, -1.2939391702882272, -0.2964218479793759, -0.3509766732500651, -1.2037312756897323, -0.8614527025847927, -0.0029024197672250234, -0.46468576551266494, -0.18661414355002814, 0.551815406341273, 1.886839121356719, 1.4223242116082684, -0.02851755550786297, 2.767009222983421, 0.1434528487048508, 1.8730726828523547, -0.1191833289029975, -1.359998783080323, -0.28495483887802026, -0.3202279717077839, 0.7141831252141186, 1.4065600524338642, 1.6782484418939712, 0.2676092690129307, 1.691327419693624, -0.5498570099078863, -0.4042370249564641, -0.6085711835439352, 1.4890548897245532, -1.0863079688325965, -0.8324371980686543, -0.3313727925049896, 0.019048011017657424, 0.5569434766412212, -0.900826048779606, 1.4238027836367861, 1.2194898364511235, 0.8423680451918025, -2.241886350676299, -2.182876346680223, -0.2993046870533146, -0.0007551968338306254, -0.37879411642814753, -0.7265652441224006, 0.7052568880192436, 0.11658508286303995, -0.059910081863703994, -0.9360076371433992, -1.662527343200741, 0.44958322283424906, -0.8331453195300628, 0.6174560436887718, -1.5628989109880915, 0.7701410604514248, -0.296317504233838, -1.0516355774041801, -0.748138739138431, -1.1979212659045873, -1.0048780321679438, -0.24410418339164186, -0.3254511468057938, -0.12216159154968081, -0.6378266741542062, 1.6254626311867266, -1.5537906008043914, 0.4886499654838213, 2.206712449202791, -2.007872886559281, -0.4600895735375054, 1.6098552652907814, 0.6959942461763746, 0.6872698526768858, -2.059413815649536, 0.6429745833638741, 1.9236279857609546, 1.0633533031389553, 0.12903836892220535, -0.18433642860298133, -1.013006466102884, -1.3698491778203084, 0.930052843257239, -0.21213540468715783, -0.40179979408773375, 0.41260000347288955, -0.23978801028981436, 1.3056932567693695, -0.26447829855969485, -0.7963181909186883, -1.6345405076612392, -0.8506241749783195, 0.6097742881989994, 0.388223330211629, -0.07469745972828269, 0.016772012182802446, -0.5486151064335579, 2.2291703806653245, -0.25621877544999216, -0.33769185823373016, -0.5536907367378379, -0.15717135875724825, -0.32871529459042287, 1.6625505927719224, -0.49347510151130786, 0.5469483726806459, 1.0559201202675936, -0.32164427495168857, -0.5990474901848305, 1.0979158102276247, -0.8765112360484772, 1.0038059338432612, 1.6686400858902937, -1.5495711662418965, -0.8784086983989291, 0.6997712600795104, 0.10991293196589064, 0.7086361663474886, 0.37129657710782604, -1.8077042836876722, -1.5954685388672745, 0.3232043415936279, -0.4566757452463469, 0.8077046844976783, -1.177582165165101, 0.9439509469018373, -1.1151639439609535, 1.5523290844110595, 1.2613959036861477, 0.8209084627557682, -0.4243726623053182, -0.4862717769911483, 0.40404807827624006, -1.4466134509550241, -0.00624735733095473, 1.0520402754179328, -0.8722541828496629, -0.6799339496665626, 0.6091104970411173, -1.2730251508510573, 0.3898483105588955, 0.03950859179512322, 0.7045978817388773, 0.13051179919705969, -0.769928580591015, -0.38706586587281894, -2.1884244944544884, -1.5462647231776003, 2.150683546278495, 0.16746987982804082, -0.6453161071237874, -0.5185979856040569, 1.068005110808604, -0.5519478013185184, -1.0637339356486204, -0.004620990959358303, 1.1554405485779522, 0.7891604887401937, -0.3644147983641005, 0.9498887909625876, -0.5536480489832435, 0.14438494696729487, 0.04098189348277105, -0.10272982955947696, 0.5305615968969359, -0.995528480778522, 0.872504296971036, -1.4070705866701454, 1.128649119759697, -1.5809781783249912, 0.7102202803494383, 0.06473383258019214, 0.521063582744536, 1.4999879564842378, -0.39226274652609067, 0.19736932679628197, -0.38600603901487396, -0.04671787916401287, 0.3163636538864384, -0.4777479848933039, -0.9711374359747212, 0.21796956057562508, -0.19562127428915482, -0.7054534774848735, 1.3128141350544442, 0.2229008793314517, -0.16073353617710456, -0.5256425849756727, -0.6052026303783189, -1.2589661241601846, -0.015183594743139277, -0.9344327734508454, 0.7587542035232343, 0.136738443175867, 0.023843190577136616, 2.328225993768622, 0.4488006120452813, 0.6726706491022046, 0.3926892912377975, 0.548218754468701, 0.10759045243683583, 0.4663653244090998, -1.328219368562249, 0.0592721595246483, -2.0639656321926605, -0.5881105407969139, 1.3888149647948875, 0.6560982296854557, -1.0972131412801969, 0.5457412491989376, 1.2348467530533678, -1.2976351302754268, 0.26401651342621546, -1.5561924556806193, 0.3674942862463336, -0.3439064576778566, 2.2356800241059576, -0.3906113810125744, 0.10829037303008042, 1.5270454511968594, 0.252436720890857, -2.5530001206821535, 0.7438169013467107, 1.1516506713164663, 0.12302287207483713, -0.3599179211431063, 1.6233887181019708, -0.8183146237822995, 0.2766435760175578, -0.7240557483785782, -0.7238615654375279, -0.945659455264612, -0.07054578384195014, 1.0822386011637193, 0.13489568071676256, 1.4558312345346531, -0.11359082195414956, 0.8100396029677873, 0.030197635334452477, -0.3118990181777971, 2.1982111698051825, 0.14919843270305297, 0.139110287215119, -1.25561030049179, 0.19039042022921165, -1.2845602929996556, 1.059301224805147, 1.5653304842230278, 1.2762045761250103, 0.38090996690926004, -1.285979604155631, -0.16871596794651017, 0.05850898426085006, 0.25573336518348483, -1.3702919404742915, -0.006587784319585789, 0.027066386178782237, -0.5338706943197515, -1.7359614646965926, 0.5080638355254677, 0.43486172057221706, 0.320015056941304, 1.7457355400398868, 0.8126166596493409, 1.055836552030688, -0.6361504277616422, -0.33528951744714375, -0.10845932521529855, 0.4646833357216721, -1.7471536422398954, 0.9666235272535522, 1.3414508295017038, 0.13310386996741153, -0.5286505136815602, -1.31364848630992, 0.593906699151246, -0.11748804287847256, -1.2965398032042752, 2.944232374532836, 0.11330877513892873, 1.8781161454116444, 1.026857679454778, -0.012003499664282925, 1.1524743706196239, -0.7423702568521173, -0.9985710606601657, -1.107706872179296, -2.482920290544643, 0.04327408650834569, -0.10026085380397144, -1.2264523665603626, -0.4452168453424089, 0.14540836853589434, -0.7385736296623213, 0.0016232399758307591, -1.3483221817651023, 1.1621271878100212, 0.9957423378854412, 0.11107458333896249, 0.12281555072364035, 0.33877940788958916, -0.168124720643258, -0.5602250757528341, 0.06245823475451705, -1.9662663196072043, 1.8518631803188825, -1.728989082649746, -1.0337560541972661, -1.0717130687801766, -0.39504217502525507, 0.6719655632139919, -1.0665784982114057, 0.9653660553996423, 1.4740721020448508, -1.513991315676773, 1.2574189430044536, 0.3206414895191301, 0.008851936437818148, -0.5006341565046872, 0.866079935060251, 1.8650509536269317, -1.1269577949672307, 1.2183929571924386, 0.24495054685530382, -1.0083750833962843, 0.11038842023841493, 2.607938897623084, 0.5924356354655104, -0.5463392541425185, 1.2797654507867142, -1.0666235047058839, 1.5842725570539198, 0.8005237609856793, 0.8626288972088121, -0.3774368838596184, 0.9009634195311308, -0.12825031298140882, 1.6021854491659717, 1.198035491971652, -0.6809006386323374, -0.8831217194890325, 2.084516475525021, -0.6441657746507309, 0.7970103889547545, -0.9172436576657528, -1.0460337413643794, -0.039565930561252474, 0.28258594430979017, 0.08910876424415057, 0.9967615019848041, 0.49179723949388493, 0.7101403727269309, 0.48862023874559496, -0.599830452579898, -0.5549340192926291, -0.46536871782920264, 0.9710534091292323, 0.7340024893287418, 1.6820724320228384, 0.4339299732238606, 1.35856048975219, -2.2447452586454233, 2.0734072774542756, -2.624173007376384, 1.0152601754066048, -0.9785471230931957, 0.6825945755359714, 0.8016493051418274, -0.662816201519004, 0.5272885928915853, 0.3576634122316196, 0.13920114196331781, -0.06863607648768935, -1.126586805115935, 1.7123194328408913, -0.5794501230674017, 0.1752068297029034, 0.6653379470381086, 0.5082729525847542, 1.5533596523997106, -0.13924530460117462, 0.8502123589339697, -0.36509895038653545, -0.5737427062589687, -0.06480484284734397, 0.715749980057103, 0.7688551587923359, 0.36899716239219016, 0.29699550267561803, 0.6849881511075482, 0.06832038043751089, 1.0613606973582568, -0.9077669178634319, 0.14497684861924395, 1.0679794599086292, 0.4774453264369599, -0.6598136562305091, -1.0782073140422657, -0.35762567413632323, -0.4909908636297596, 1.161443782820182, 1.0119698847952852, -0.42169772062141603, -1.2221777197813115, -1.393868456388865, -0.3904081131624869, -0.6026808111283517, 0.9276412769375297, -0.5967904668434584, 0.16063517507554015, 0.5247378691019225, 0.7121635972220902, -1.163024190654117, -0.3275968293208714, -1.1721159932429834, -1.6231625532017067, 0.05887356340675864, -0.36645540590440867, -1.2818181140318108, -0.5290128685512564, -1.9097654455211408, -0.9424143998014013, 0.22302359551515868, -0.18165112177900763, 0.9437978180996683, -0.7280189165251367, 0.34038118034359016, 2.091911131856089, 0.4060925349928024, -0.8072041711955733, 0.05530427126876719, 0.734249347156722, 0.3365937939162652, 0.6967275329142919, 0.7898185609958813, 0.8886521782687599, 1.0413044481492433, -0.6700499892225206, 0.8871065537708589, -0.9189459800483565, -1.0888789154687724, 1.0239562442480228, -1.0649589111312474, 1.0537351921660618, -1.5385718230256957, -0.14853063326869156, -0.5165799894051134, 1.0905617885489294, 1.2967290477960955, -0.7997680792544548, -0.5069716800146089, -1.3109029015958826, -0.5858190158230483, -1.734516941704114, -0.2578169585859392, -0.6830091518938295, 1.171240192928609, 2.8237947343391827, -1.793186113941429, 0.40897690861867425, 0.4826300157909068, -0.5112502283960999, -0.3710413199539956, -0.3300067770592871, 0.5911415330338283, -0.18122994129986697, 0.4443530868409132, 0.027147809818996123, -0.10369787899221976, -0.6163521291935005, -1.317242664493679, -1.9239752229671998, 1.264065580811913, -0.40672946294936535, -0.4602933274883655, 0.6206410613281366, -0.47134458329828227, 0.9807701030543726, -0.5079992337027055, -0.18145635190931644, 0.6189481716644808, -0.9520165694478807, -0.09213347373194739, 1.205512581875889, -0.8532014820916263, 0.377392253465434, -1.2380384733941838, -1.1352153647915924, -1.3683579093575813, 0.24596319422886173, -0.19570540904912812, -0.37728999918959316, 0.5395058468375314, 0.2900462396654103, -0.9908591765609992, -1.1259433669701748, 0.014610950836273553, -0.6450932478614865, -1.3992990803363285, 0.15715492490952965, -0.19949841834617063, -0.7058650610915143, -0.7350271438155802, 0.9650952486784004, 0.9808259879650554, -0.11176818976437473, 1.2588169314997943, 1.531522290226976, 0.08180989834240854, -1.2822235568991989, -1.630343707322912, 1.350477916021385, 0.7994621430925957, 0.021966458754803447, -0.41127597689518297, 0.5586408470149216, 0.8349687512728117, -1.2210373123932536, 0.7262500588913596, 1.4041622456659328, -1.0764273925659842, -2.0840653329028354, 1.9355649394382115, -0.2008253725094459, -0.38131254300392825, 1.3763263593096655, 0.20633483705055516, -1.7752542456934648, -0.4385349861684601, -0.07096657861675587, -0.2315865961092422, 0.981199795414533, 1.4079032676627572, -0.052129642699011464, 0.8408231248513519, -0.6256782493489154, 0.7729598349251114, -0.7597697291753581, 0.20893803728878038, -0.8247422735940259, -1.0527057705941048, 0.9244963118652106, -0.1141520684175612, -0.9996199228007489, 0.2868994908073264, 0.8807866645817453, 0.8932367513982552, 0.4655764748701526, 0.0443317602322072, 0.03949587951494557, 0.48972665159979384, 1.580533608401225, -1.1824585725162355, -0.0777770997481879, -2.188306223379875, 0.6707720548255504, -0.8712833917354008, 0.6692385743437442, -0.5575020602978454, -0.5796707538962274, 1.2211851733552923, -0.31613888855975086, 1.8351793821119085, -1.454735189694207, -0.4010557044279263, 0.15376317412841192, 0.17940817582776009, -0.4728405010831975, -0.6885681108304528, -0.25053975586621696, -1.0726707073478063, 0.44235539466865237, -0.1582920496490099, -0.4108948789732931, 1.4013273881313102, 0.9138324487782492, -0.613102683568391, -1.1236640483240596, -0.38999605337987037, -0.3434137264077922, 0.15433318927112297, -0.45615154178044437, 0.20812221467342423, 1.7536490990759923, 0.5479269058001199, 0.956042629000586, 1.1527520080471736, -1.0378509197881824, 0.5628832167159955, -0.863025050561032, 1.9404517383762365, 0.45517189119852286, -1.158116490510508, -0.14610118078867942, -0.5129236138964494, 0.4479803714934865, 0.4785621600197823, 0.2252794196089366, -0.059769484520886665, 1.766340482393109, 2.5701269342663187, 1.2372742192949988, 1.1310893837696094, 2.305547175949977, 0.22561039681576586, -0.37921101995467443, -0.2801159408179712, -1.0436461168638143, -0.24054981008023765, -1.9282786896961186, 0.18907767635117415, 0.8293096929266672, -1.3541573030425555, 0.6768507012444247, -1.046538342238297, 0.10893210587352309, 0.7418991715964344, 1.2903213779659923, 2.1340227614235032, -0.5859386809924207, 0.044243833507547375, -0.20560041239906068, 0.8762594588129772, 0.4653941063456604, 0.5090457759691491, -0.6210292702272744, -0.1716608975046444, -0.6041579313738888, -0.5896817580880136, -0.784502001151342, -0.35144097061645635, 0.618825345688003, -1.0245145802070823, 0.12126417859066356, 1.6020297358935311, -1.8043301892297403, -0.732272494583361, -0.5207252471639188, -0.05005257088627774, 1.4322275914490998, 0.4988018049611825, -0.9211642694355218, -0.6042371251662498, -0.8860414630663199, -1.059878889043355, 1.1291617561841611, -1.3771708308253265, 1.0256047048581494, -0.45386167176058667, -1.8415639857905164, -0.3763414586847369, 1.5516593249999417, 0.8616537138707957, 0.2610728936881949, -2.097250713253371, 0.35380221436530856, 0.896572485377775, -0.31805198529192513, -0.7901125912479224, 0.15150993946908564, -0.27739099841482034, 0.27724233477405225, 1.355436728809678, 0.3181245975812992, 0.35856122818240915, -0.09942977693977842, -1.6925773660345191, -0.8199445547074357, 0.5642257748591617, 1.0612067484060792, 1.3255868110493136, -0.02165951163855545, 0.9050871008124497, 0.36331081836754814, -1.300509137389348, 1.3050905075241943, -1.3341856608382832, -0.2567715580624035, -1.3150650529024819, 1.2124129331255298, -0.3322048172026388, 0.1490002335874278, -0.45997241734269123, 0.6123107145054358, -0.5819616921396858, 0.1531690721599398, 0.6531133400412714, -0.7111319372378685, -0.5876948847962905, 0.5587774670930591, 0.2710300996823061, -0.8522098851716818, 0.5403742429398344, -1.2469205979220328, 0.4589016526193676, 0.8008570006990394, -1.092048042634447, -1.0903733299637925, 0.13154516938668417, -0.30980248030607777, -0.30489498035327345, -0.9160413699445468, 0.31465743860456025, -0.3226722615824326, 0.01687215205228551, 0.7963025590872406, 0.6013557454800295, 1.3287825353977507, -0.09748068338907123, 0.26015390359111623, 0.9066644780489163, 0.8358643979675346, -0.6478612832400343, -1.6604748927345323, 0.7160968192967452, -2.218337106055463, -0.941349031013087, -1.0509692574584704, 0.8134314336392577, 0.1464866084342279, 0.13816450565474617, -0.23358848141228192, 0.6750487643675901, 1.4840113098503243, -0.030642016628487975, -0.7259748549064929, 0.7058573982682864, -0.8264895946830951, -0.6680700557275263, 0.09423353643863981, 0.33990868034306815, 0.682345487542728, -0.5502287417304161, -0.46112245350138936, -1.2493398446325352, 1.299942609182171, -0.15707146261671112, -1.1372331333621448, -0.13124994541488652, -0.11928448011408088, -0.30105207696195163, -0.11970713710475292, -0.10142157819176668, -0.7686689100881905, -0.5947785758506917, -1.5603083984548451, 0.024469548839268645, 0.43168480127560716, 0.7801623078234406, -1.228068707167616, 0.4773346406941812, -1.0197627733232015, -1.5845307912725144, 1.8320316209011207, -0.08761206317316696, 0.4795218420482735, -0.008035077822784925, -0.8407142738522152, 1.4063499289909955, 0.04106185911772361, 2.3128828095583707, 0.03534640253016347, -0.09734996885863946, -0.4268627098612084, 0.8746391671897924, 0.3469537669692453, -0.3416231575190103, 0.24121298095018928, -1.017024583637966, 2.0127451524176454, -0.39138841791569645, -1.3610484790991206, -2.3634751988863294, -0.417348779694147, 0.36895927306115817, -0.4443961943811634, -0.41323332286974873, 0.2065072595886182, -0.2924483283431064, 0.6727332240110292, 0.010272737710302317, 0.30684989322404044, -0.42577399394534765, 2.2660804379354698, -0.8081549540381503, -0.5901546113124416, 0.12851694733733982, 1.6044370345877308, -0.19215299215222384, 0.9033205680954688, -0.009026904384224705, -1.614200932236675, -1.013343746095368, -2.0572159605693097, 1.372472406554859, 1.0040676056311981, -0.795816063030764, -0.20069895517915076, 0.6478334494953839, -0.0963103300973947, 0.22819397996115848, -1.0030368835698615, 0.2057566869626026, 1.082686859022349, -1.2467504122246158, -0.1146427662290558, -0.49959281878930795, -0.8231876945184505, -0.8636577820266111, -0.0036946402012173925, 1.6952753127738558, -0.7520668049327859, 0.948740797676391, 0.06488313270533089, -0.7459953124244748, 0.38128035948810735, 1.7412398003033074, 0.4174992413872481, -0.38709093842502973, -0.8701958240475901, -1.1802281644651607, 0.10525404602140893, -1.1927216035808037, 1.3103172419740678, -0.31975569622009486, -0.4688349203678613, 1.1897786633134082, 1.4437728067043167, -0.2776245230276176, 0.5872561431310394, -0.5515749411862635, 0.10678004211181935, -0.1302759092012687, 1.4073677729797085, 0.40399207258208736, 0.7626663851772874, 0.2982978346221785, -0.10877730353028098, 0.7551550680149769, -0.2602880666060072, 0.7161626655895195, -0.7307212483535426, -1.040217027613515, -0.2273753454435447, -0.42592903456751524, -0.3165011045692937, 0.5872873327117123, 1.0745176238876488, 0.38427768753353403, -1.8179461383150155, 1.2769676398672303, -0.8746411999356579, 1.2291611276483858, -0.4352177644568348, -0.5925199391319143, 0.2944876466550489, 0.36631520651387794, -1.3394504521212487, 0.7764727109533243, -0.9087820362186313, 0.2858076844065453, -0.3343584471952098, -0.3530544607381567, -0.10275558247466492, -1.0949487606693233, -1.2538804128017915, -1.4708118631523772, 1.160566914167961, 0.6947405686633179, -0.6799137572376984, -1.9031004881414393, -0.9447402436677159, -0.4463063240825184, -0.1253149577499413, -1.1769788196865547, 2.2700687708022387, -2.2543329531720238, -0.21500731664479644, -0.01750412566464952, 0.017157231072289603, -0.6008594292529779, -2.5445155148577863, -1.3413971945369372, 0.06088235851484888, 1.1623821636751956, -1.9291461907744683, 0.06255855284748922, -1.1349365369587787, 0.16938582090232074, -0.058940089750110655, 0.464397741256248, -0.2676406845441706, -0.41464464125064465, 0.09364958991903938, 1.6145094910839541, 0.0324756774768176, 1.825779558436039, -0.9823078454562371, 2.7453607658735493, -0.6912823317626752, 0.8176641435051167, 2.0921748915579506, -1.6753004104755362, -0.4035678334657872, 0.05627643811646744, -0.47072447922445376, 0.6947564845834638, 1.1011108871951276, 1.686968215230193, -0.045085768606161446, 1.1835279947408537, -0.546714469150858, 0.5510423515636304, 0.10961690791058043, 0.4045343752080624, 0.8127738362091891, -0.1805841245618092, -0.6009528416956267, -1.48626442965494, -0.9164546847526457, -1.7424128070199036, 0.7912352203184935, 0.743843054802909, 0.4241263506345793, 0.8989155954652396, -0.4068487320945481, 0.46317265879329755, -0.4840816510664477, 0.7010877677361871, 1.427124537031565, 0.2942106243541707, 0.49176250086972534, 0.06787684758160606, -0.6493684523785379, 0.734042339074355, -1.0673087048638867, 1.623305431214219, -0.40513383513216084, -0.8982903219242022, 1.2898900276371068, 0.10281580051107668, 1.215758769167509, 0.9865119218922598, 1.1467281463374854, -1.782808426410428, -0.15978086345976691, -0.6331345723926969, -1.260749814801309, -0.16946501625481458, -1.3830591760998723, -0.5523161782182089, -1.166695420061397, -0.6308077693560672, -0.03298210796079812, -0.32840245013383274, -0.7993000586526754, -1.0149797146024053, -1.7084657033362518, -1.3505805865961205, 0.15344212090485643, 1.3129802352657955, -0.9914526285324228, 0.46737803741572054, 0.17854850730215258, 1.8145494057543299, -1.3379846508469966, 0.3659610559274494, 0.12765656190729974, 1.0511040908773406, -0.08711953948519435, 0.07776859289508883, 0.7005181962203536, -0.5041884777506628, 1.1080317566285418, -0.8532467680020938, 1.1638112400565477, 0.23092711733152893, -0.4789115871268688, 0.7359935286341489, 0.06253080994408253, -2.2940870447908623, -0.2982339394482971, 0.36112584436050055, -0.6325541024561077, 1.390058493919351, 0.7125205188693099, -0.1312178670335424, 0.032952323801720196, -0.1375433173665891, -0.9471252098494184, 0.6601442037066978, -0.46429970896782474, 1.5022265324253576, 0.22246755272794394, 0.2512946195081729, 0.5950253696983937, 0.6317481654220527, 0.01880610319898903, -1.2949353020765921, -0.6766651591244124, -0.8880145843517423, -1.9298998339735232, 0.21173067786691638, -0.4870466628695365, 0.5157924772992794, -0.7798086557296178, 0.4669806629804085, -0.6778216657008226, -0.20524910955214276, 0.22072781787653403, 0.4844229073843512, -1.3641331908478918, 1.971637837992993, -0.14328267556813215, -0.8294736111021769, -1.878624911287903, 0.10074383958482808, 1.0680265831871396, 0.33030459201472906, 0.5376906745563755, 0.38447487721287327, 0.8887313824738908, 1.3671570063010523, -0.1879322890380311, -0.8972959307679507, -0.06653423765233824, 0.760480925329754, 0.45074220102277507, -0.6954352200507978, 1.643053048827989, -0.5710489418605288, 0.2990882086467097, -0.1548659960820597, -1.448652445105219, 0.01822210919286651, -1.0018287245335846, -0.10467967607881243, -0.2696681454519187, 0.29537538617906717, -0.35909259429530327, 0.0029506520031694567, 0.7527818968323612, 0.651113885133357, -0.4836540016814735, -0.9685171259875484, -0.0595887132242571, 2.3762104446555856, 0.049719601084303164, 1.9531200124214787, -0.48796456572031216, 1.3210345730626225, 1.5577709862230549, 0.2111915947795921, 0.8358190848540639, 0.1950013869441435, 0.3214335738819925, -0.03620043166970052, 1.6474897987588815, 0.3579189893406078, -0.22137317883854385, 0.03715447426391472, 1.2494625983910743, 0.07544292932544808, -1.1195771409782236, -1.9150179940538719, 0.51323638877533, -0.02830149978593516, 1.344656325945363, -2.7587152964091, -0.09088069874922765, -1.4536507317659009, 1.4025233092404048, -1.4583354566844857, 0.48826568371120427, -1.4605315263104452, -1.365209559621393, -0.4678936693108849, 0.045028878187212976, -0.7761317484483552, -1.0778742762328017, -0.4902515738151591, 0.38896983253197176, 1.1991116574738383, -2.0601804282428784, -0.56213195693073, 0.42598211220634397, -0.42178483060051636, 1.3915060687633678, 0.0007896571530910924, 0.05053686483818479, -0.7534422385657886, -0.3371759050482858, -0.18040981509496862, -0.4770588860578514, -0.811183877556708, 0.22898921039733083, -1.6995102347214717, 0.31670441594582094, -0.15158856928626946, -0.8214901993585222, 0.3494853697294854, -0.009436800015995983, -0.4251005770047412, -0.9023748139281931, -1.4000168379976647, -2.135747493670538, 0.9033054655695801, -0.11853744360916027, -0.35664692647872204, 0.004782422276641526, 1.0051216086096617, 1.5022330978716838, 0.15352716672885292, 0.6809844627918783, 0.4847176855510617, 0.5819362606356749, -0.40599115563075155, 0.3580681767445623, -0.621744303125061, -0.9958408019558302, 1.0986382399441093, 0.5766245467412481, -1.7184597130050596, 0.17120171147900523, 0.7117373726058451, -1.385915257364471, -1.4465176643840192, -0.7058055921953145, 0.8057498991258767, -0.492249897591024, 0.8426059906519706, -1.2764381142098147, -0.4292641124300907, -0.47645674231769825, 0.3373328618416371, -0.22148679091257265, 0.12244974315198172, -1.6195156987343455, 0.9406612107261845, 1.4764604273853144, 0.16988899318899062, -0.7949237802379638, -1.0833810538952775, 0.23071571612932676, -1.0994397452765299, -0.2686448531537039, -1.59878556312632, 1.5965589648338938, -0.2550051509353931, -0.1420750581688229, -1.152093856402537, -0.0381048911736556, -0.9358596681282214, -0.07081277696893301, -1.1457282610661805, 0.6594674875615772, -1.7174398272521019, -0.383953961126264, 1.1611961287907309, 0.5216313368004529, -2.226496646460183, 0.5146772619984251, 0.5297326263559163, 0.46630795566720684, 0.8902904659806175, -0.72169382689312, -2.781566392651409, 0.501403937494168, 0.13152695118987862, -0.6105919283941227, -1.3684561721157646, 0.1282716427975408, -0.06042803754493796, -1.0934596733785533, -0.25221470121802164, 0.13399404170980367, -0.3889344127077058, 0.10985426292088446, -0.8849078369505761, 3.281580624901274, -0.6522012731150553, 0.7226193894895395, 0.5650043800375225, -1.8738409402631684, 0.19332184672425412, 0.02884950803668246, -1.2548540956031353, -0.17145030208855144, -0.3404737906416097, 0.47811950820972243, -0.20032983377818048, 0.04870852199289641, -0.9501521110357593, 0.9062348269546241, 0.7319628313038161, -0.9979123185157076, -0.5965611612772054, 0.7693820357156512, -0.3972070481431289, -0.18688657029587344, -1.066438571244664, 1.2055618462274884, 0.6036750042265729, 2.2682716281475974, 0.3045775296570566, -0.5578317036636463, 0.9726090339523414, 0.9689560119491156, 0.6304573862846139, -0.4726738834494244, 0.944545787130251, 2.0971038550949737, -1.5218451302950085, 0.7117976775311994, 2.420259264366286, 2.167705678922237, 0.15819881758267937, 0.6148796767358016, -0.0912804005214049, -0.9031806768079116, 1.4240512870385609, -1.20127070260113, -0.22314621205296767, 1.672764347372751, 0.9979830977245397, -1.1617675028194998, -0.5935261241560638, 0.8136012113980069, 0.724950176769993, -1.17164206050933, -1.2463719012610328, -1.0155602179047036, -0.5054238064084482, -1.782865025035072, 0.21835178102591443, -0.5635924160206692, -0.9461723582516833, -0.9827707718108345, -1.417629199745677, 2.589161187986723, 0.16983123666437924, 0.244518050226759, 0.47350150551901593, 0.2324369069154052, -1.066308724526504, 1.913923158385553, -1.5814484955545713, -0.20712048873476777, -0.5708765905072488, -1.6167717657676823, -1.0912072680227758, -0.795692167107049, 0.2600642165095998, 0.4929516413486462, 0.6099629617577839, -0.541944682246578, -0.18682221082368897, -0.1831826231845282, 0.055085002086291836, -0.09590046803476891, -1.324300919407756, 0.22432458316664114, -1.5821550637631063, -1.3709872985543805, -0.5575960070391732, 1.1784972243068241, -0.719096516801063, -0.07526546656372365, -0.7355889343737244, 1.3123855432425633, 0.886724819379952, 0.7019968741627092, 0.2731611701122863, -0.5414413866913074, -1.990948319989529, 0.35533364788123445, -0.3503293823604425, -0.4275716141162346, -0.6003808693962978, -0.5089995375538465, 0.9839655427692998, 0.39986381856790365, 0.6313896856754034, -0.06317747734116515, 0.6349676690096832, -0.8662178367442751, -0.9117921281787427, 0.11067081187884846, -0.9447207751646225, -1.1931235292968885, 0.13502716729147743, -0.07758238510124807, -0.7135017205716162, -1.314251223309021, -0.13247934422307778, 0.20716145355686583, 0.6772268545915062, -0.7430451836785755, -0.30359107900348226, -0.7242868687255037, 0.4520110837448854, -0.7049769262350506, -0.48790870386657414, 0.8865396538770265, 0.05653000362295181, -0.011966699931163102, 0.6541708685076959, 0.7308852907084519, -0.7646030483179603, -0.8929390412246637, -0.5442504405186146, -0.39987294354798936, -0.9091056745539101, -0.050200831479505326, -0.04337323733010369, -0.18383110522692214, 0.22402047445543946, -0.1943205017304449, 0.14508199165488248, -1.455894449779695, 1.2522480434807306, 0.053106577570689775, 0.06753834547772498, 0.1529855301100059, -0.36831394893398167, 0.22646852678444426, -1.032477657428036, -1.3256629916561353, -1.2085978206669277, 0.09847398042662443, 1.353912766538178, -0.12751014033126862, 1.6129295754216992, -0.5296627609195339, 0.20672924555490874, -0.2770173704935768, 0.4509235631133895, 0.23418729432455698, 2.5731226488475683, -1.9588640728048314, -1.2128721062554408, 1.7702572396463463, -2.1154301287045483, 1.1509866118095715, -1.5441119621964912, 3.0168398634386993, -0.5053185328551032, 0.9870786004758418, -0.5101063934830076, -0.8291491840679691, -0.7253201206716563, 0.1362376593265341, 0.6501503129000851, -0.607434208460304, 0.8244691313614303, -0.7660338868939355, -0.6392737273515391, 0.4107400988669352, 0.731375184897974, 1.089090752135939, -0.23690538869871267, 0.3243445744783341, -0.738074979097351, 0.40733313889288697, -0.6000194306283609, 0.5847762759385026, -1.3314939630157758, 0.33840114292442336, -1.60874220672916, 0.07658092681332276, -1.2705044980063773, -0.29325929444151816, -0.4359880469980864, 0.8812013974543098, -0.4980497302907435, 0.7607744116064895, 0.1638545080637735, 0.5479049371155792, 0.025592026180727413, 0.9607301722775232, -2.020245333757461, -1.9215226743173661, -1.621207920950546, -1.1549955343494689, -0.01836763153937868, 0.11296799710779004, -0.6565199480418433, 1.307208521575161, -1.9126240993510475, 0.6652722731362786, 1.6523909839065376, 1.5854505206803933, 0.4608699767317498, -0.20690379861733804, -1.447015820079541, -0.7527870078579777, -0.06954238837741027, -0.965406871819278, 0.389094018265118, 0.8545639875203517, -1.5288635362359482, 2.0814833396390897, -1.3557738498204701, -0.4396700356509522, 0.7727409077121805, -0.22340096203873241, 0.36325490649707465, -1.7282546021530956, 0.8270912904731557, -1.1298914746789561, -1.1106846866864828, -0.2726115527445826, -0.354145556467746, -1.6401866840317296, 0.4214804920698963, -0.6101006597654087, -1.5573009518079324, 0.9317227215394182, 1.092811890547534, 1.2258633856050754, -0.8795003612034125, -1.9552936115933894, -1.6835919611512271, -1.405630202673935, -0.512291722632888, 0.24851541934835364, -0.8323569953289859, 1.8238741167703945, -0.2582483692138113, 0.5260727841043611, -0.5139999842860938, 0.19653520760662502, -1.5889727920916814, 0.520457677892828, -0.6116893305639233, 0.3497632258788494, -1.8973771026426303, -0.35823128726553455, 1.235839235657999, 0.6049576461985008, 0.5603798853770645, -0.776179336687828, 1.2561114733274266, -0.8858931369814312, 2.152225723367049, -0.4780177824175979, -1.2429400223427864, 0.722016487663882, -0.37687946104066017, 0.07820053787341229, -0.4740627434497539, -0.067992859749939, 1.0050773601435103, 0.44530402525689966, 0.642320498238429, 1.9698810038810821, 1.4259521503827766, 0.666533659983558, 0.1959356694108477, -1.044132762015032, 0.4467124417097242, 1.7650691652730885, -1.2111287366372527, -0.8038245212319559, -0.22343524993084043, -2.4481908703374655, -1.0661063128366166, -1.5290257916232055, -0.006852953287006867, 0.5210263201109501, -0.25993668899795763, -0.2643753073557422, -0.37836849713586573, -2.2640503242703245, -0.4841137666275191, -0.5685071657086175, 0.6589093727612666, -0.5410426169562479, 0.5866683837427329, -2.5516347865313924, 1.5729462290583405, -1.9422081368888153, 0.9536273518488608, -0.004967291717677031, 2.5943932754837333, -1.7654818355094581, 0.9085190382386841, -0.0019162781284743752, 1.0573421320357548, -0.20731362573509823, 0.20344158828910114, -0.2885074186672904, 0.4582427184136893, 1.4915569071078352, 0.0063634779427487265, 0.2748683237066838, 1.729373370468395, -0.8737795358404329, -0.9070882133179735, 1.0206695217048747, 1.2663188551549607, 0.283438256726412, -1.9392661569691962, -0.6331289588457162, 0.8150368169101702, 0.24460372818551213, -0.04327435646196974, 0.8225617363886317, -1.7487643875077086, -0.8903032787696721, -0.031952653597376084, -1.1242429384897714, 0.6845396395557066, -0.2729479219613306, -1.334003713124223, -2.149841509440389, 1.3017550830969715, 0.8750757329014281, -1.4588523818879013, 0.7507576744720499, 0.19019999322555362, 0.3939164293327857, -1.0481215837578277, -1.225472879172537, -0.09940985689050982, -0.6227055570266027, 0.6203660068363035, -1.3564784074705623, 0.6399531369177386, 0.7846184484372791, -0.19813024405114008, -0.6259459242342111, 0.0717362756797703, 1.7320993155557598, 1.2891486097488662, -0.8170953304810529, 0.20827072453231363, -0.4255632800379949, 1.56857574386326, -0.6617741716687233, -0.24232127775983353, 0.2433338474147097, 0.5654608035535585, -0.8366176026326816, 1.121329799687493, -0.41603548911143196, -0.9371822043071845, 0.35674988825109716, 1.5214133994246153, -1.9904276187241556, -0.5630298851169848, -0.8759178333998818, -1.427556835066861, -0.580077277288386, -0.5848987195390856, -0.6622282736306294, 0.8667276616006659, 1.5641339929931335, -2.390901727230042, 0.5639464658346888, -0.5406822022930553, -0.459275034957332, 0.7230823897676915, -1.7982457094626871, 1.322786198277883, -0.613344027947215, 0.06087322582047382, 0.18388297983942187, -1.3283698716748398, -0.6452037598072827, -0.17865479732340406, 0.3782067819825752, -0.03160140122191277, -0.6628061680003955, -0.5411804254157402, 0.446988511333084, 0.05952026714973327, 0.6545161558360769, -0.657928629830497, 0.12924782797172343, -0.45152292340200134, 0.5782009719420117, -0.35548835231330095, -0.4216863407265567, -0.08842528155508791, -0.6379933255524802, 1.3232998873999162, -0.448033069566942, -0.31419284069708886, -1.8582827316772714, -0.19004844097703502, 0.766786871898511, -1.2161111018999624, 1.065842767175242, 1.2951372390429559, -1.609031202813198, -0.29802706368765014, 1.0291606397553712, -0.3875107131355091, 0.1404762040024594, 0.32760738104397613, 0.6803724856063531, 1.0791479802296875, 1.6681715860210244, -0.18827509104674126, -1.3978882938143802, 1.4500275266422893, -2.243920087218136, -0.4748693323458598, 0.9737139783069191, -1.0691645110829076, 1.135397623655488, -0.1968188533312088, 0.4784355014534448, 0.8536255692521283, -0.45530349827715166, 1.989415069462761, 0.7918083354082962, -1.5525725958266394, -1.3188313784863324, 1.099660259968992, 1.0178911070176098, -0.597318799638538, -0.20257378024958464, -0.08452261631639921, -1.6817928642565125, 1.6112141528655883, -0.6514089616009868, -0.771869049233009, 1.3165990878910463, -1.7706767105791217, -0.38082123918180194, 1.728430070337204, -1.0524524066320475, -0.10760164489501672, 1.9130107575192308, 0.1581210530971094, -0.3265515917013036, 0.9755890162962898, 0.6519671860147891, -0.4068347838658348, 0.32198063373384217, 0.49022897717773306, -0.041204706340610346, -1.240406401956312, 0.5104746486525444, -1.0461682500563876, -0.34880676381824366, 3.1904086901790105, 1.2490060085923411, 0.23012112547124874, -0.07848255964774897, -1.3942534690561017, 1.6152754947139767, 0.3010632483655478, -0.8382218559980228, -0.9359521638357589, 1.5826305636816786, 0.7971029966186014, 0.03274750823678003, 1.9924177256010571, 1.7618290051327699, -0.7358426265356702, 0.8724610879703525, 0.14376205356824912, -0.3607439904231535, 0.3619182230530351, 0.8485475290665714, -1.5726836697623476, -0.32910115494966713, -1.1215353508487087, 0.19156019460878854, -1.9184497833610457, 0.1649089014245878, 0.42978358810374834, -0.8422480625985161, 0.870963460510931, -0.5201175318271677, 1.2782716324954542, -0.00902255188181388, 1.7078445261737183, 0.8765004926235467, -0.12464719285480026, -1.6104305506803596, 0.5667398059081541, -0.32845507730391604, -1.3268705244552528, 0.8590318263787731, -0.07134180613587225, -0.718391862389722, 0.8777166180152061, -1.092775543045235, 0.001763752161835236, 1.2459103864638577, 0.4570880878832813, -0.05726368758105701, -0.14625906541729503, 1.0000542945281272, 0.23745787435280957, 0.21545967666959084, -0.39150034644796, 1.013424970725374, -0.5838316636572272, 1.106602063100767, 0.24774122239516677, -0.3022445393119596, -0.1565629922131622, 0.3261954792948338, 0.29962175267336805, 0.6608458576638793, 0.3502940932240666, 1.1421868779361215, 0.00822466332041806, -1.3201914872700224, -0.2630171586549412, 0.0636872931712519, 1.4177322324844872, -1.2380400833843352, 0.8346624758162601, -0.07237404751804158, 0.7355665424110454, -1.4247396677561892, -0.8954621358484796, 0.20497960406393406, 0.5852568105188419, -0.20878198757436628, -0.920652222242485, -0.18799336481941534, 3.143150005536133, -0.3878430015722619, 0.7212044243041097, -0.26633185493122924, -0.4566321240910287, 1.3800647696671646, 2.757299250116146, 0.3036290120866621, -0.651778219329196, 0.032299728420949615, 1.324735790319828, 0.45917939452582174, 0.28948819821837285, 0.017328668633187463, 1.2457521111229766, 0.630493352639222, 0.7581155060381831, -1.9556884462129565, -0.09311904029747874, 2.1937747937769267, 0.36224535682342307, 0.7303619922801752, -2.585198025366633, -1.116277688398632, 0.06927740888301961, 0.43974745513994, -1.4029294762513531, 0.004936147189780932, 1.8362400428161227, 0.09572417381031999, -1.3709529544831682, 1.164201752508629, 0.49110526597754717, 1.851515242389943, -1.207391530788873, 0.024445190231171747, -0.39043502161404386, 1.178115728203538, -0.9441974453715108, -0.33989511966636005, 0.1321122682060061, 0.07720866024044795, 0.49152324400109676, 0.4449899577381713, 2.2375340745203722, -2.816119637230392, -0.4117793044807424, -0.8905358696737675, 0.4268488722569591, 0.2312591398569946, -1.0269818959991068, -1.0180855200385044, -0.18005000164906484, -1.1246820603521657, 1.559112247999543, 1.1608763370014867, 0.6339366855193931, -0.5377458680244734, 1.1494923919008406, 0.9928440048998525, -1.4304146711767989, 0.9357410913791562, -1.195630976218889, 0.019466378983125695, -0.9107276572223628, 0.713286920274327, 0.7465801963331514, -0.08123627265372123, 0.2543645772735046, 0.31894638422614224, -1.2724236085134797, 0.287232652797602, -0.24825745308752142, 0.3657618645554871, 0.40110410957196935, 0.8463532378658416, 1.3769848138534335, -1.250903988769766, -1.0551194125157595, -0.23389013361379102, -0.17138398494314555, -0.5277131962000535, 1.895318615959176, 1.0894638088975592, -0.36311849956324826, -0.9439662554795166, -1.3783621566726083, -1.3350691952894933, 0.36868667436508346, -0.14634146842552098, 2.3754371119781656, -0.05559683150308124, 2.6171834834869045, 0.6514220628431734, -0.09154093562532019, -0.31011178946878, -0.957827768584098, 0.06802364835589389, -0.4341998585039579, -0.3945075129750483, -1.8004504039761808, 0.6626474182426882, -0.9591500076995146, 1.5267197409298978, -0.3125193381794475, 1.0527233876402429, 0.293003833175749, 0.372658071421396, 0.7982442697827796, 0.7969834333943763, -0.9244889510082054, -0.8920418978667077, 0.36601527516510274, -0.9297221178914338, -1.4076869718154612, 0.8062566243937881, -0.5554007814955177, 0.31010241753298506, 0.12780205805516306, 0.1478699689977128, -0.13770310406884345, -0.8653782748793208, -0.9697552581498096, -1.6870681216364036, -0.5435962038190464, -0.08407339749001512, -0.30756404420825223, -0.9755134329173674, 0.23765476600076296, 0.8828077540239272, 0.5729734676553103, 0.03650380046101807, 0.6710503407518251, -1.7111886122081095, 0.551267825619908, 0.7101877085568847, -0.4566876412346147, -0.5223059508934849, 0.10754771140792041, -0.7626444905808314, -1.5253684412327146, 0.8770034980107883, -0.06507211296846284, 1.2483764756680171, 1.7349502425440695, -0.7456843151805866, -0.0011351757311427763, 2.6172454908794816, 2.086314182994163, -1.2865277303030334, -0.5309482182866958, 1.3088408761349324, -0.8584968939756147, -0.022759006072086915, 1.0629065172950956, -0.6313173298195732, 1.3860083448288347, -0.16267422116972005, -2.0230185334069075, -1.2573380840707815, -0.061129032261304714, 1.5232989474270628, -2.03474432956869, -0.8580850150601884, -0.20337579889458837, 0.5615507332091877, 0.10586879048593678, -0.3827225479266354, -0.27410039829515337, 0.9797844193287083, 0.46978494066330745, -0.5386346410565606, 0.29106805907563943, -0.8922701851256158, -0.8087337846467666, -1.7756202332144577, 0.4599171400623525, -0.050526762859000034, 0.5499641632683666, -0.7960508009082329, -2.0826679443910403, -0.08586456973902035, 0.6331378685649415, -1.237059742347608, 0.6188033233981942, 0.6184704519458731, -0.5743255326661896, -0.6489133498021755, 0.44257762866551176, -0.05915514736451004, -0.330059282893161, -1.909828651378797, -0.5930080433761576, -1.0259649676168487, 1.748436926885632, -1.1389337356953462, -0.45116440636999366, -0.6777536153253468, 0.35399510478414037, -0.348619164029652, 0.39294310371010344, 1.4075637585699179, -0.04170472778839059, -0.6313756070792902, -1.0940822184560008, 2.636578294014463, 0.5737176720856693, -0.6783058555386965, 0.3696550731466659, 1.1764059251869317, -0.023415404026678452, 0.32901748748709964, 1.5163346041645462, 1.2160141864486849, -0.26414315467258986, -2.104418521910171, 0.16449580385972393, 0.7263705382576283, -0.9533778770948564, 1.272964006781486, 2.296654718937177, -1.919314781005769, 0.5110709035441738, -0.9288973041593074, 1.097396880857323, 1.1473971832663608, 1.1925538293245777, -0.8213404198406343, 1.4428429447080597, -2.088741963957054, -0.6238575685740251, 2.088744260578212, 0.17779996040434357, 1.8535890268733208, -1.6898058267878047, -1.0014676368585271, 0.6286422548053276, -2.221491778812614, 1.7207620971650592, -1.090846366480007, -0.12490618365510978, -0.2644005250453037, 0.4396158971736764, -0.5249860834329109, 0.041133500122206866, 0.3878399268476873, 1.0417224400628202, 0.23354879048749594, 1.2694111580990117, 1.3646840195446548, 0.4037505661210029, -0.01472651592512337, 1.4072499369296407, 0.735368674184381, 1.898014421938204, -2.4228435141018902, 0.30861576901286186, -1.1798738743932087, -0.5937297004027563, -1.4668774996411447, 0.13440471028752748, -0.9545044137472476, 1.0725941217972217, -2.028234253528119, 1.163022511329419, -0.9704231154326035, -0.395206039249165, -0.07288643613278961, 1.605566048660877, 0.5800380150854736, -0.4998147888092143, -0.7539469398585875, -0.19212591717403835, -0.6661435805622603, -0.621947834777373, 0.32087056737506625, -0.3040068833679217, 1.3349737842342253, 2.009820598677456, -0.2245042443540448, -0.9476599385265781, 0.23168164745988062, 0.2739820568386175, -0.11554139045003727, 1.2252454390472012, 0.9197911332311094, -1.959182953086935, 0.09854799863431299, -0.921256982404818, -0.7060706791113557, 0.6585114748873293, 0.8420307342813076, -0.12373657728041045, -0.029250723249917274, -1.591337695593643, 0.2607323717446096, 0.3078903406378692, -0.04272696742249595, 0.5430327215860957, -1.903795484171499, 0.7391157833567147, 0.1853362291059928, 0.27377672781514006, -0.2704109193306681, -1.456908418948705, -0.9753949645429726, 1.1461113448507767, 1.056723947218518, 0.12714013813283614, 0.3070576655264452, -1.5786002678853872, -1.3931275261410716, 0.47051086017577354, -0.3302603754479672, -1.8169387324815374, 0.47086332683685883, 0.6402261795771415, 0.6540737977618661, -2.140937354480226, 1.1691835136578315, -0.5793891057638387, 0.854115740762206, -0.20943081392626534, -0.976605443435104, -0.04982164904446619, -0.030661577950236767, 0.5192851974661918, 0.0891203015086752, 0.37967415231310214, 0.5087259233166929, 1.6591624898109325, -0.9330450139453098, -0.22409770152996195, 0.8027007584536976, 2.2265158365259925, 1.2015732506423238, 0.553585096066725, 0.1298157028502697, 1.367306209663617, -0.2045623806368827, 0.5386845786263867, -0.17454932259782077, -1.800853191054854, -0.7064694929994049, -1.1282930609365873, -0.9273139722474251, 2.0902194795618274, -1.2069028686736285, -0.04896975947403752, 0.16000112734060776, -0.6194138869056018, 0.3026775284972664, -0.6379705846786995, -1.2016797626053564, 0.28930881904925443, 0.08399436973086694, -0.2121946188168598, -0.45794148937227225, -0.19514011827886035, -1.0652995635926756, 2.071640972129585, 0.4573698696061723, -0.8560290958985018, -0.9803804514287263, -0.3868589322023283, 0.9024922399089618, 1.2995917094378309, 1.3167231553707404, -0.45056635889002156, -0.9436332906518254, -2.015098687797184, 1.1225035817847115, 1.0145450196129804, 0.2458513673149404, -1.0298484355677906, -0.07983795924107927, 0.40122008331975445, 0.4479798313344789, 0.5163669290411771, 1.6563875606819372, 0.6368806734669351, 1.159632530172874, -0.7664434353685323, 0.25086887874083297, 0.41999726310339175, -0.14346895626966247, -0.8693645170354655, 0.8980674210168367, -0.24546439328868375, 0.8737169665981289, -2.569076432459546, -0.584791836607657, -0.8367363958700018, 0.16998659177988287, -0.2627381443639437, 0.523781231203285, -0.1267657543956196, 0.47612186459860617, 0.06455785070418386, -1.2988321064771786, -1.5711073698253881, -0.7613715278422297, 1.5645553807885635, -1.429306814296358, -0.7533695669439848, 0.3309710689573724, 0.40101681129690553, -1.178569257474433, -0.0763608817386533, -0.1522652119515268, 0.46474657974451633, -0.37616876795359677, 1.2807880445183877, 0.7153368148503972, 0.19278110322846298, -0.7740451244911233, 0.281272451643506, -0.03984621876028303, -0.2938741049196813, 0.726315636785942, -0.3729168818114832, -1.496240983341129, 0.30257462531569496, 0.5008390917851087, 0.6820994740654988, 0.5953473630925701, -1.0031067547053965, -0.5718631212778124, -0.0019146041069400242, 0.20598082236721688, 0.9143578876777336, -0.5998579897479446, -1.045210865213729, -1.1601705940441798, -0.8374268169674647, 0.04072581453594356, -0.3027624789950584, 0.6656335451022461, -0.2389379506919752, -0.3146784310319103, 1.1292437800612949, -0.8558485902345816, -1.323527319352342, -0.4134215283242333, -1.0289361664110466, 1.3064455723767492, -1.8100199555924366, 0.19499831253701905, 0.8137271724184189, -0.7686256182175135, 0.3249308536595786, -1.4283878752562689, -0.5417827158237145, 0.9755168860002595, -0.6532294453470754, -0.6146359365334598, 0.4625085401367249, 1.2356698748912702, 0.5632521750192709, 0.27380950175230545, 0.03975749781546082, -0.13923487195345455, -0.47302290438465827, 2.079284550623296, -0.9594401690973435, -0.9071621669301302, 0.6362117151747717, 2.168195235407752, -0.4312833308866692, 1.129182087043222, 0.413522618969814, 2.2503191961264255, -1.5722409866393423, 0.8877791966570413, 0.3297814975173316, -2.655533445598829, -0.6735052140701255, -0.3085055320118407, -0.27114637964990945, -1.1541818530162242, -0.8163941303881427, -1.1340340547385916, 2.8901201766745004, 0.32050564650632435, 0.0031146763905490096, 1.3545894036075166, -0.15160527917110256, 0.599657304455542, 1.3577332810076035, -0.9047553867800293, -0.07889922557015813, -0.5410159088607386, -0.5120435827440872, 0.6855899860553558, 0.6173033924494808, 0.07489413724386114, 0.26628067482869944, -0.8627019133633327, -0.41597783640910696, -1.2950644616504263, -0.790081482781335, -1.7111503045537435, -1.0318297690992628, 0.4067282284534295, 0.11322762417891641, -0.08787540329409652, -0.4163171378631964, 0.8901793509744965, -0.1241684332782638, -0.24942322014508478, 1.4152369104314384, -0.5019210996061654, -0.23728855396489612, 0.9997031969191299, 1.2224025521920574, -2.4707601196857154, -0.1564959084358417, -1.278312565511295, 0.33951461197737226, 0.5920386306703505, 0.7672141697288724, 0.6244482990801429, -1.5023149878334072, -0.26385790179824, -0.5903556522395699, -0.28797607079821275, -1.0959431679601475, -0.20486084904343257, 0.8631436788878217, -0.2214496518068274, -1.0780596423784257, 0.1929936817078781, 1.1004036595533924, 1.5974229998221037, -0.04349834573060924, 0.5364966166237499, 1.0038661950366548, -0.11882466044686375, -1.748148781846931, 2.1325827806814677, 1.4945088575490184, -1.573279176782653, -1.3091896263300145, -0.2856478389005989, -0.29761580140606253, -0.6875941363706889, -0.8717192700367128, 0.2649240023413824, 0.38066312506992084, 0.5215836622231099, 0.7249759240918494, -1.1984385443348688, -0.4708261121231023, -1.0992150484710197, -1.4290425400904072, 0.01493962272851839, -1.4749677269867938, 0.39097788663120503, -0.536123348407276, 0.7172765065653764, 1.7137347420366502, 0.5517764965710058, 0.9484638079991959, 1.1010123888774501, 1.1291945295233872, 0.3263228219758472, 2.2654877293111557, -0.5703820471270815, -2.4369982585964647, 0.9972019155931944, -1.7847049457408848, -0.6632609031635792, 0.3606998032798493, 0.2943420713695921, 1.7138518724342044, -0.8084975651439181, -0.08942518604753225, 0.38158090942287415, 0.40308972974745116, 1.0552978715335224, -1.0801679822341883, -0.02114777896891608, -0.23459587442053884, -1.2148829168199726, -0.04177016042509006, 0.27229039697643914, -0.3694527770105287, -1.0684464185971398, -0.31109311418410407, -0.225207306711855, -0.33252642469229743, 0.8495614236096074, 0.9629013088979529, 0.09372840257709648, -0.010485019583635685, 0.14641488314094694, 1.869155054183179, 1.555417575410975, 0.4929326976120594, -0.7203570094380674, -0.9288513829962635, 0.1355268684301077, -0.31906357271965274, 0.09262943339435155, 0.1323768155157505, 1.8876218330073533, -1.001840374352846, -0.19069264677748268, -0.5884943854557529, 0.432988482978998, -0.5586337292568422, -1.331005555523169, -2.3500540072939153, -1.627973894161807, -1.0701726217791503, -0.46107018692922935, -0.5656214081641522, 0.3377242842122719, -0.26715725249540034, -0.44575468690677017, -0.11214038799009111, 0.7417297941465475, 0.24281122409933398, -0.3059341214461195, 0.17108704413173165, -1.1733386365465444, 0.6476209549216345, -0.6134461968673486, 0.5353401536589726, 0.24579295287077832, 1.5253643903392131, -0.08684337943389436, 0.19754302400780574, -1.0953947700090787, 0.626404172728966, -0.3181134472305175, -1.16223451458092, 0.04788146723302033, 0.5065780758650239, -1.1637788605416033, -0.2962403510546744, 1.7240041329655238, -0.9395295379243834, -0.6200396711526667, -1.732188320620501, 0.2015676747161532, 1.3356010210755496, 0.7132357504698196, -0.1938851239328564, -0.5127469313308147, 0.9241911344983205, -0.7712475292412589, 0.9139607140650827, 1.6860169268584417, 0.5723055477727378, 0.22847453642295648, 0.6893305746760653, -0.13427426577306179, 1.9365154818080326, 0.7948631526306732, -0.12123875612519164, 0.578446895433658, 1.8339083180661901, -0.036167321732451595, 0.4287455718569617, 1.4220732647836622, 1.1300988417704931, 1.0919429215052416, -0.5395919298212746, 1.9482936347789417, 0.1370727794722212, -1.0489220165142372, -0.4370207103908318, 0.22196418102418927, 1.7549026896724693, 0.5716723336451046, 0.4889089552433, -0.7054164754371809, 0.8967184477077549, 1.889801408452252, -1.3938983889369103, 1.3015028010351704, 0.06643987852435453, 0.31880827142471635, 2.0009557660253194, 0.011065394879593808, 0.3391109312787169, 1.0613898949717702, -0.3046717335041853, -0.5088505443508217, -1.0894484235444262, -1.606302676902655, -0.16677009972946663, 0.8018190771057628, 0.1523040027917154, 0.9902180693773601, -0.8906835944755987, -0.8687573006401627, 1.40933974003059, 1.1564547717035805, 1.4984317831870042, 0.3710121217894941, 0.058148825061213445, 0.10288958851603705, -1.1054665909740744, -1.4235393198438746, 2.4189104814509266, -1.017834621745576, 1.4006812798027566, 1.419573083714818, 1.6016687678164647, 0.05033786766569411, 0.3075088787040141, -0.19690474464534993, -0.5232177281528999, 0.514930827076087, -1.1904281562848227, -1.0956747949550676, -0.4807240214276019, 0.19906627390202, 0.2531702805240207, 0.6797075734262457, 1.4857531526512442, 0.46297441902835534, -1.0626715231155708, -0.36734878511756924, -0.5130266269778258, 0.3755019665818232, 0.06304647608982085, -1.2089005322319009, -0.3824450771401052, -0.955802654938952, 1.2635478075066053, 0.5055255820468816, -1.1586175249004995, -0.7769026023565017, 0.08142150862065614, -2.8478089835610536, -0.9707250062958699, 0.8607740634996957, 0.4585954019880739, 1.0019326049037254, 1.0622483957658972, 1.7854459093518047, -0.37795231947937846, 2.220845602009457, 0.18617181114884163, -2.0728045836809437, 0.345620839958235, -0.68789977857942, 0.25996133930191495, 0.6518750868292682, -1.9269187367815364, -0.07423974286917957, -0.5817195299295983, 1.256070145902852, 0.5041002402980712, 0.061386689557180595, -0.68119178880531, -1.5059067585315231, 1.166122110123598, -0.48316611585273594, -1.2559546652606048, -1.6336514343458408, -0.17563376859563337, 0.3582633572794705, 1.002862625458583, -1.380701510834153, -0.689056682212767, 0.035983078991996285, 0.5270280142836236, 1.9724291197175399, -0.01704270839677014, 0.03897781962399658, -0.09292522417730376, -0.07305191748893777, -1.044268860291582, -0.5164238829976129, -0.7696390572996815, -0.8269826363421678, 1.3707712619434707, 0.8647186473598377, -0.23109007059321918, -0.8256891376872137, -1.6291704031955727, 0.4543182222332743, -1.9869848560739223, -0.5475329288486686, 0.5722750115745129, -0.5220336962530392, 1.1300662002315554, -0.11851915646185426, -1.1923706342283236, -0.6382268708990853, 0.12716276393412632, 0.0007009608008919988, -0.8220295169411098, 1.9993798495670407, 0.04803091238300268, -0.20880656411454682, 1.0225611219414896, 0.4521354466532489, 0.3197604764615708, 0.7396387545917751, -0.18438799898739805, -0.6173307132934267, -0.26704004847328644, -0.7493359995749673, 1.4826187804217499, -0.311813136349267, 0.9968517427197948, 1.5280133343187132, 1.387176730452802, -0.7561645046758453, -1.7861225198742596, -0.2806908412226083, 1.0426466597507111, 1.9285501589862766, 0.08534556550947149, -0.4065939033473599, 0.20283038357694352, -1.2796412892971838, 1.5452926543934073, -0.538483780029372, -1.1107048533432942, -0.3375273852958516, -0.5295763755874934, -0.1955103419168921, 0.8569628641928179, 0.20510997647963247, 0.2092528341452851, -0.656770853752258, 0.7127786354387325, 2.153190785178595, -0.3091775746598958, 0.07127392271612858, -0.6694771114632153, 1.3102411262492792, -1.0223138454248206, 1.7701207760941196, -0.8524665495767855, -0.1636066812233249, 0.3324466728551566, 0.33316125921184203, -0.2491940246439516, 0.17578618859764095, -0.725408845596043, 0.9670614276499211, -0.5998081268860038, -0.3910229376640366, -0.5504905510274691, 1.4043169264831377, 1.9883422047576835, 0.8534505809824835, -0.5960298870623184, -1.1171370589479115, 0.892301114422901, 0.7049788807453157, 0.055765767234934774, -2.6278664247895898, -1.6160652843175594, -0.8663093935106391, 1.4648051953875965, 0.5750156261039643, 1.703790609091456, 1.3504139436775722, 0.1211161625966362, -0.2924825481736803, -0.3459046273202691, -1.71136331923754, -1.313474375478628, -0.011952161582211657, 0.5074525223623967, -0.2605813801523958, 0.26292774217674797, 0.6227364303086166, -0.20916504622720133, 1.1774851670488673, -0.942162121722264, 1.9022342804664374, -1.3471940357622192, -1.0311578176889336, -2.6597480904856243, 0.45114706129263815, 0.536870334232107, 1.4446105969738223, -0.8581208827792091, -1.1880837810799518, -1.84091494815086, 0.4162192694857008, 0.4246211263775081, -0.058054500536324695, 0.2685097896608539, -1.5300824987638606, -0.1889742589933346, 0.4307282616667531, 0.19979725833253525, -1.359486158815048, -1.5134864720629673, -1.1591793794016534, -1.211945532060817, -1.7826912116205325, 1.312835306426927, -0.675870229693202, 1.6396646649315494, -0.3697505510057709, -0.38860625802171483, 0.09347046148064124, 0.14674455950574053, 0.09009063242389077, -0.2214711213005851, -1.192274958762132, -1.265918517840419, 1.0165366392348445, 0.9909487669616108, -0.6560588520423996, 0.10167668675664729, 0.03413598633980024, -0.2985704330873819, 2.1061201907380487, 0.8940635158691004, 0.36353899673003826, 0.7156400874381873, -0.3239239306222768, 0.8393143551388459, -0.3795194945442724, -1.6165037128395299, 1.1147928344587656, 1.3099164332561113, -0.8860450581969286, 0.5611583790422449, -1.3046736914351376, -0.5916633628193784, -0.8511544334805435, 0.9158260326849607, -0.8610017005942394, -1.2004801935610028, 0.1130561260453454, -0.2521193211013997, -0.2649262224317486, -0.5958465131321861, -0.013064617682027352, 0.5735938095857909, -1.2808263907970403, 1.6525012353443078, -2.0604393203534985, -0.7634563425748299, 0.7664478112364158, -2.206289676907462, 1.6632200699152933, -0.5052492522249722, 0.6640267336945083, 0.9306276707749459, -0.2789193198574576, 2.1216067312920464, -1.1356751350871008, 0.3754031421748661, 0.9147134687930311, -0.7700726430858073, -0.12622591548654322, 1.9092567590473695, -1.4080231379982393, -1.6216648985621038, -1.4009056730111573, 1.0482057394413618, -0.7174827439349368, 0.377193749409115, -0.08067499796844517, 0.2738722292970518, 0.7164202367970224, 0.5056206849719039, 0.7623837266436413, 1.0531351350971727, 1.3667532724486788, 0.9716625614866969, -0.6880968945732278, 0.41954812758772775, -1.9964263695934021, -1.727735973247013, -0.20814851974296628, 1.0491608470468783, -0.5632595123964774, 1.6343411757850086, -0.22311476410757705, 1.058005755910051, -1.327101452498414, 0.26668455173353894, -0.20851017426440882, -0.33960555582001506, -0.32645034552285046, -0.7013585536303829, -1.1547621802636443, 0.20592842316868856, -1.3860532772242218, -0.5898055974600257, -0.3150196752271654, 1.0026391987620547, 1.5351003175056628, 1.0640414721179514, 0.10074255318125129, 0.22348667524088928, 1.144632674802604, -1.5490305065802967, 0.14892704150713057, -0.22017088201249269, 0.021880770537074094, -0.21873688989612355, 0.565240804234808, -0.9605343246979984, -1.000765371968638, 0.8323122157096677, -1.8450076931493127, -0.6993351733807134, 1.6944144533057346, 1.729181400867565, 1.9829235106875533, -0.9383745891192512, 0.14834279184229515, 0.8827548987153244, 0.8868998330285965, -0.4893207376267233, 1.8649996932074915, -0.2027764621482382, 0.7547670766750016, -1.7616047122457814, -0.11949531125531297, 1.5114579967674526, -0.15610091070233456, -1.3951191082018517, 0.7355005046699938, -0.672763691228542, 0.9034606442616815, -0.7129700633846312, -0.26797696760056544, 0.49509999502756236, -0.2895531581933479, -0.10193649324779727, 0.5936625166009144, 0.8512211898770042, 0.9333444640930822, -1.772309211679568, -2.2770998040486865, -0.38907601261998315, 0.5578056691323322, -0.5025313545169634, -1.843768507933646, -0.6816630144905013, 1.1432456630726326, 0.7267094871654028, -0.4839407418729869, -1.3831817579506769, 0.03664915977533424, 0.19072937423182473, 0.5750722311363166, 0.6582631947900985, -0.3948252104217282, -0.08362103478558124, -0.004891437038778645, 0.8148624798334014, 0.22555192268586208, -0.3347052329247866, -1.2746944558750735, 1.803080521017645, -0.8798637353511163, 0.6749922404506676, -1.007106043766729, 1.867953080483973, -0.9092517713990905, -0.6749120639476537, 1.9748967988041908, -0.21910116437854893, -0.40057536350879996, -0.04024737635686108, -0.34317227399317496, -0.8954712258299635, -0.9949085028760645, 0.1449612843286504, -0.033910910181559346, 1.2577227950295775, -1.7445422887669961, -0.7539647191847907, -0.6610045090725448, 0.3629440073665275, -0.644270432474001, -0.4136596623861283, 1.4661891978429362, 0.4354536458087946, -0.5294330974046784, 1.4730234214784896, -0.5871306081771589, 0.5529345179199006, 0.040108317299832684, -1.3048181563822994, -0.7250158158935478, -1.305602519527395, -0.34722542865318795, 0.6133687489636737, -0.3700480019387345, -1.1940391793141287, 0.8827596784279568, 0.3547225708098793, 0.16578482335443376, -0.33324822633488077, 0.4897470064668614, -1.1167881132955861, 1.0577857946884106, 2.2066073558176305, 0.015491276260266118, -1.307053478177022, -0.6006970908877678, 1.8974561107916217, -0.6568986008069381, 1.4561509740447214, 0.8163006485680606, 1.3833010765966838, -1.6206258788187273, 1.1148393023889063, 0.8998515451119549, 1.1306689967998167, -0.7646783354178582, 0.5525408054298723, -0.056440206810130115, -1.3286351036736535, 0.642147803710841, -0.4884183067458932, -0.20774425011078188, 0.04104729438733385, 1.967758074634256, -1.1814996172813763, 0.6808815534418289, 1.521687239681581, 0.4666548247137952, 0.18313012779025195, -0.5594769523618326, -1.018842815573286, -0.5541702691236584, 1.2825624071999973, 0.19302919873123747, -1.9594542271631334, -1.2834321651739082, 0.6488257220747791, 1.1008133421228945, 0.740653390313235, 0.24405801376991226, -0.2217922420296389, -0.08800341810358359, -0.2677024443169807, -0.05297618620603389, -0.22755209268816934, -0.0884388939784058, -0.8636077409166705, -0.35990113586543115, 0.9399452949960129, -2.383547553519161, 1.1048410810688896, 0.6383894494249379, -1.0294239799827842, 0.3895686563102448, -0.48156103663523553, -0.24691109394369215, 0.6641951261857574, -1.9320296251266513, 0.23126539184630163, -0.32318055933385137, 1.1574605657670147, 0.6844575908216186, -1.7878105853607704, 1.824071823975469, 0.17195074945459957, 1.481555046112998, -0.27237240946446245, 0.2901394135523438, 1.0068800602026546, 0.24077613644402732, 1.1115699579237353, 0.39477787278170307, 1.4656207035230182, -0.10650396136643966, 0.15640049387940702, -0.15300730014362243, -0.5499972837882776, 0.3069442173860159, -1.13014915110688, 0.07192480250831601, 0.6498792622633642, -0.5721394129298334, 1.1492500631728353, -0.6532731809208486, -1.1473140690801995, 0.39730467543604037, 0.2907654849776664, -0.1321497034053379, 0.6961112663475616, -0.32824697774885103, 1.147759304437655, 0.9734608089285275, 0.9252873274026682, 0.9619497526390086, -0.6244275015310096, -0.14553453510834427, 1.0613521581852798, -0.8136331022146083, 2.247527592225442, -0.26828397541093457, 0.450558034888599, 1.4867780120943064, 0.99926055308467, -0.232008142449557, 1.5396871117933677, -0.34846755888939024, 0.7428029147298364, 0.33163421376103597, -0.8590092905033903, -1.6192762968383292, 1.523984491376975, 0.5740656358160915, -2.2442664269253014, -0.06235919596401598, 0.07043237484939548, -0.5406204554259854, -0.2888693851361413, -0.36263229396566843, 1.3514981134956767, 0.23105423953274015, 1.2516102135244087, -0.8481817758791614, -0.8102606982665934, 1.65260413947226, 0.05929968070167042, 0.33295140075392016, -0.35165515058847857, -0.03340037822981657, -1.655436902358723, -0.09638920189557204, -0.20045897194163584, -0.8577199697677905, 1.761332414220901, -0.23667562131531578, -0.4049323729190388, 1.1119147134376617, 0.24080775381553723, -0.4826220390166243, -0.0035870655341660885, 0.6910534414456957, -0.16448907220667427, -0.17838555171494375, -0.06978289985805984, -0.5361782368873981, 0.11331635144823324, -0.6955496367334129, -1.4775370611225302, 0.05790524430625305, -1.012229802308626, 0.8053208315661877, -1.0626154543995239, -0.27582034563547897, 0.8939014994684645, 1.4718696280760823, -0.3213026386836034, -0.1602965749517826, 1.4465815554347632, -0.2833418121958856, -0.2111711948777654, -0.36708674039800254, 0.5406102436745056, 2.1219350080851664, -1.051552768199362, -2.0263044565724715, 0.7474498825614055, 0.8287927593430681, -0.4584747743207211, 0.6994309147462281, -0.5781385304250386, -1.2068507216523006, 0.8742669050199597, 0.44674830488839606, 0.4557869039561514, -1.7389314638117903, -0.04956190123801506, 1.0501733824973516, 0.21694376404640484, -0.6704119083099545, -0.10316754292678465, 0.5103472167009948, 0.5130659022548912, -0.7457258443583132, -0.7285656313562595, 0.5540033328420846, -2.03748866208879, 0.5836339172257707, 1.7219788898656478, 1.24917964996626, -0.4887815688756051, 0.6511021007301995, 2.095580896206079, 0.5454459432414541, -0.513959703085365, 0.6351704238766339, -0.14575043505376128, -0.11534224701140415, -1.4334418342790995, 0.5692014768470024, -0.3917609594079968, -0.3336633669364541, -0.5660041818883118, -1.079511730989142, 2.2157330469200205, -0.5635254427074322, -0.4080535992869353, -0.9137401454501264, 0.01512901958983321, 1.0046286799867004, 0.020781541943773824, 0.1255161332475561, 0.4850861825285735, 0.5830421546821676, -0.7197431097522439, 0.5905942542602943, -1.260891368967814, -0.36854870646724125, 0.006111974384879465, -0.3023157001781243, 0.0805441702014132, 0.6920854704735034, -1.2275614400594816, 0.625180814665894, 0.868585971809793, 0.5678185685177428, 0.8129072680850532, -2.36794914750814, -0.7775155843619891, -0.5199471685432123, -0.9238997601977147, 0.6013634597304918, -0.06023186486427617, -0.40279372260105145, -0.562889998256773, 1.8521421523512986, 0.4681853919057274, 0.5849227130620656, 0.04185373170242611, -1.1684522605317855, 0.7122529611389626, -1.1372209699585722, 1.9727464350170563, -0.6003409142701694, 1.603415773144687, 1.185850503589258, 2.51889768583815, -0.6151456657733434, 0.8156982189146916, -0.8621501132955904, 0.3367824274920986, -0.16493763339790363, 0.32964003934414, 0.019876701870873672, 1.9581723158117583, -1.403240644361192, 0.19365746274069207, 0.2968389202247262, 1.6361688395996883, -1.3199887588511088, -0.6789423341437647, -0.5646788210782311, 0.08373355115507627, -0.9954118200284113, -0.7711075884352734, -0.11997575377179255, -0.03981143665591175, -0.8376713540992505, 0.025310577326036844, -0.8699130512120677, -1.154151096648728, -0.41616135847101093, -0.5000032905123624, 0.2555853213242035, -0.7278022381140049, -1.5821338533417417, 0.13809352468092032, -1.2309158717563082, 0.9642779797492107, 0.025642601412250065, 0.592869143938591, 0.7224735079029199, -0.05396507720112906, 0.10181470713446025, 0.20945950880404574, -0.10640155175844881, 0.2614977921475838, 0.0967547497058215, 0.9394437711407064, -1.8435649399810317, -0.6069334403855982, 0.2226705774654193, -0.25228075023884955, 0.1609969728814738, 0.5991625537366451, -1.2862211039692593, 1.825443669302866, -0.9292696113214556, -0.597269781182049, -0.7091158723594556, 2.4762845058038505, 2.4174483100782624, -1.4951177940369107, -0.5672613057041931, 0.15829565675871374, 0.2595038332216697, -2.0856170634503504, -1.4749401958335717, 1.9745321829919904, 1.784062276010312, -1.0897560474483028, 0.10728176576730412, -0.2189156123371397, -1.3266032305764672, 0.8300225968343953, -0.1958041647659883, -0.06270862700002429, -1.337066919726893, -0.7471214550526205, 1.3177888570784586, -0.1424775771375451, -2.4417537703125345, -0.7479268857403796, 1.1787466330916048, 0.6221508576508911, 0.8765854583490887, 0.7086521637017333, 0.45274660705797765, -0.09672161516853607, 1.208535724857967, 1.5735212446760487, -0.7014471112425692, 1.588020609142175, 0.7903035063305427, -0.32416273511017996, 0.08911345805738671, 0.14440842725609357, 0.08361948355183499, -0.5080776241343113, -0.44843503803721074, 0.1878267554655356, 1.129697246232833, 0.3621934385521474, 0.2813734079812524, 0.4543893814296074, 0.26685344032213143, -1.9177512661211207, 0.7092255702598891, 0.32651854381222534, -0.21484899608787777, -1.3397444130020195, -0.6655824715584434, -0.7621214682556383, -0.7583826057405674, 0.3600109415126681, -0.027927195495272474, 2.022099481890308, 0.6337170569153051, 0.6544709083274634, 0.46459389959994624, 0.6560954128545733, 1.1732168359836874, -0.6154635666384303, -1.3270276490977455, 0.8232743342736543, -0.07223382893199795, -1.5801590467041682, -0.3495716989058829, -0.634339010009094, -0.4156302303437123, -1.377385106239274, -0.5891863978927521, 1.0487428471955111, 0.42126526153773036, -1.2320078963765901, -0.7009887479885498, 1.2641696964678477, -0.9212158416007246, 0.19994769318192246, 1.3589744308852953, -0.45801448367801034, 1.2848584107421763, 1.2707236798208872, -0.007596474829404465, -0.18801771006711696, 0.7208577311118719, -0.4714283030424712, -0.2576423232488314, 0.0011361285001229623, -0.05381260232389428, -0.26879342328240413, -2.0818778725457476, 0.2877306624121584, 0.17755286448315227, -0.35151653308880454, 0.21393398677456088, -0.765650646361252, -1.2653291152483226, -1.3516451607194473, 0.7749993007118727, -1.1409654901221984, 2.340117689116539, -0.40086139590840797, -0.048405035063309634, 0.6288144202241772, 0.3544619433175141, 0.06266741158728104, 0.6156906659649247, 1.2218978422528965, -0.7776408944020674, -0.24049486119345306, -0.014184841623652853, -0.7595115246138009, -0.8412451376502564, -0.26030241000969384, 0.9325791670923026, 0.16704728109157901, 1.149523324698107, 0.5132005031768808, 1.3625360873533208, 0.7890360558797088, 0.03226747961211765, -1.2138520800146184, 1.3849424220677593, 1.7305637934531657, -1.0478396426486225, 0.26258018788041415, 1.1715364814635134, 0.11913783370609463, -1.108307533042878, -1.1429316980963815, 1.1115863773573607, -0.7730815900039759, 2.025256934859732, 0.8700895147036454, -2.773051405602745, -0.7354053140174847, -0.7806044761860188, 2.2657883666028154, -0.619111669781337, -0.913703838950305, 1.1133658189878468, -2.5911560948915016, -0.5736480583298393, -0.38718560289050596, 0.7002028612168018, -0.40281773916123365, 0.5658200799037646, 0.25194322102149, -0.2852338127963938, -0.38792903100402687, 0.3446993100918985, 1.0673774429083005, -0.5323752895751676, 0.14091542891611705, 0.49583023397058307, 0.2681829322404027, 0.39489958570944517, -0.34131826624595035, -0.6499424151682458, -0.590974365674266, 0.157231594010923, -1.8373914732936896, 0.9912768335702119, 0.8288787317135284, 1.847968785066706, -0.8732941520476714, 0.6088481811741757, 0.7426178315517442, 0.2979955962155759, 0.2602682789509134, 0.3354788180786857, 0.8104109348952905, 0.6212275580568608, 0.7771901329281429, 0.7877677659283548, -1.3613083854226375, 1.9794132316596194, -1.3450853011713562, -0.3798953624112084, 0.3963939669909259, -1.9972772126759943, 0.04345834067111772, 1.2448163238670535, -2.163952872677791, 0.712034919489536, -0.2273825130100789, -1.1797853143569492, -0.6876954193547878, 0.939116812192339, -0.16995709839988854, -1.366212120052931, -1.1298236053021726, 0.8101814276485881, -0.363425890960098, -0.8653245676580463, -0.6351194043080189, -1.9192446534901153, 1.0625540724883558, 0.9786805518902965, 0.01948837722751879, 1.5013811991870838, -0.0009464456700366061, 0.10941325736536393, -1.1613713254588247, 0.9015873293694965, 0.9102756008915571, 0.7822607124678306, -0.0015227067874982309, 0.37748378198191773, 0.3876760350259638, 0.8319221788461315, -0.987088611921767, -0.6743112976373181, 0.4989281799710729, -1.595726086657125, -0.19866565512126128, 0.2339398946498163, -0.03088827479217055, 1.135068288728572, -1.2283404976803778, 1.4366191563198112, 0.3475994427738835, -1.178628900725431, 0.7345260041569527, 0.34967638200064133, -1.3653743423064972, 1.4551839651159342, -0.19338175674723154, -0.5415225981354248, -3.347815230558468, -0.9237175984026563, -0.35415885944518, -0.7096391705393411, -0.07859708151436363, -0.46225044627858075, -0.8979493205280485, 0.6123071296238431, -0.6717866445522375, -0.6413010773169368, 0.2630035419778639, -0.04702373494657725, 1.1693326237021888, -1.1355150513389425, 1.7034283173163558, 0.21366057177876832, 0.18612544536961914, -0.4176679399431276, 0.32768283084933686, -3.192937706302488, -0.6990022169482383, 0.17486447971172414, -0.7440798216269066, 0.3459107186389658, -0.3298669475929512, -0.5170554990705241, -0.9750965047278004, 0.6668681269666304, 0.18431835462060067, -1.1995460890740508, -0.02951503357186592, -0.5788854300105426, -0.4148566897134666, -1.1466821760669783, -0.7776897919659632, 0.5576566485540652, -0.7204195204704341, 0.004678312932134797, 0.6603266208529226, -0.04873636937517584, 1.4961082169674218, 0.026931656705182473, 2.3467863579647, -0.010220110278004027, 0.9380567414340935, -0.5206269716474896, 0.7701340606814888, 2.014093711918319, 0.06336995502288523, -0.48014008926376084, 0.8721053109304666, 2.2259581491298097, 0.2150395362145683, -0.8051346395154231, 0.6619893311371362, -0.3335237461212012, 1.0959310339636483, 1.1578962974027356, -0.8631875830955184, -0.37691939686256387, -0.9413253242677316, 1.5914045656319247, 0.039964690998958725, 0.25708052067252446, -0.22067652242493294, -0.9267150900182377, -1.4202529804883732, 1.3482114895440087, -0.3596858688379881, -0.16774214755504227, -0.010955473995115733, 0.48227790247173985, -0.17775645705869483, -1.120301455993187, -1.250865867557173, -0.9459396568893044, -1.0300157371098135, 1.1380541578910348, -1.197432862022628, 0.37262719999658966, -0.3307339066254415, -1.0729679756264359, -0.2315059286004017, 0.4702943704524538, 0.15511944451774673, -0.7755653141115745, -0.5632867858133708, -0.5030220104609843, -0.69659126700222, -0.09133049472911282, -0.22901814155923844, 0.09873810351722413, -0.12573027984279322, 0.7054029642488551, 0.06637044915002348, -1.0963690884189912, 1.7070255822131608, -0.024578210521359223, 0.31970375813291246, 1.3221103886058225, -0.6758277978769335, -0.6232339456498297, -1.2079436309762879, 0.4714190103681834, -0.17977182966674127, -0.9798971589281531, -2.9854729965675864, 0.3669977913553355, -1.7114930997698696, -0.07822594362088946, -1.1659232104802957, 0.6287635785398066, -0.8731177538592445, -0.19890165902941948, 1.3238325284264574, 0.2592627274419323, 1.1363106255389823, -0.6831496606483544, -0.8239766803780568, -0.12462706010401889, -0.23620442964706476, -0.23355631155734655, -1.2166020390633538, -0.9348252594786003, -0.8298121563126807, 1.1579027694234894, 1.5295851895388548, -0.18342432415576185, 1.4782840311775842, 0.49650822510847353, 0.5247724114698564, 0.29348544229560863, 0.009528688399896209, 0.39281163182181783, -1.9844153608252328, 0.8146692462081195, 1.0810783499315018, -0.37220990650401764, -1.8023875917502297, -0.5429900962537163, -0.41383809460488724, 0.4919334406441137, 0.7849141363422162, -0.08387880116055813, 0.3525906802595402, 0.7595226100786004, -1.5416602588267134, -1.8716986173510812, -0.4613574895897872, 0.37893871610953866, -0.40091465734306225, 0.33066177968294724, -0.42138431306400376, -1.1171018042355252, -1.0095685959455936, -0.5191119202968222, 1.3727473506065084, 0.05447044210928697, -0.41416674650728086, 0.18504456519106144, -0.5345121881567013, 0.729646277287317, 0.7114165342768419, 0.3135823684661895, 0.33833968620075605, -2.115874889904148, 0.7407908935645058, -0.7519012503052968, -0.7103650111419647, 0.9774734316509389, -0.5069339266463594, 0.5924882638116084, 0.3149479527960371, -0.6634132578140658, 0.019217877198403954, -0.27374974084794157, 0.09098994628062806, -2.0697647759938667, 0.34935133586881967, -0.964731180079675, 0.08821120644090961, -0.87053157303913, 0.34216456073064727, -1.250831227619238, -0.28185285126795356, 0.31536688574045685, -1.1032921359848447, 2.2561507530491585, -0.4769473703437851, 0.001011591968054314, 0.04438763198931875, 0.7415421118468223, 1.5434165730199871, -0.546868981941205, -1.122181969471006, 0.34230703681259117, 0.022327657212879964, 1.162419654928953, -0.357626362616132, 0.10224653584486658, -0.5700862623655013, -0.4375708548760858, 1.5420671969166952, -0.5785316630287665, -0.5316023897846454, 0.15500279568010214, -1.4858071299538325, 0.37035927698846743, -0.017285224327776873, 2.1218712256350845, -1.711486533796166, 0.7793554787199628, -0.5610174981234006, 1.1789218604687244, 0.0829851714363874, -1.2476989047344438, -0.35563575209703796, 1.012387557680133, 1.5995050128390185, -0.537072972330652, 1.9037289011070984, 0.11437121021331385, -1.9449048598380994, -0.46479976761335173, -0.15717571676294856, -1.7105200220417882, -0.12723392619640625, 0.7871566831616189, -1.0165813516925868, 0.44103488225240295, -1.0181689293723575, -0.6269140564465712, -0.7345470211209959, 0.18909449815251042, 0.38078218109947093, -1.4144510317970103, -0.8227064811188466, -0.148987275485712, -0.6613592004647662, 2.024841714519837, -0.39086980589970105, -1.2233514831212673, -0.860301218742033, -1.722617536251365, 2.352539663792144, -1.1247130226158892, 0.4535578189527868, -0.3043710885710168, -1.1501628457340298, 0.6512825058762939, 1.266375237894712, 1.2974142170227392, 1.9010615278898395, 0.6676958473935412, 1.7421616361775045, 0.15516939339295252, 0.11140333162696917, 1.5167073252546177, -0.2971552229906938, 1.4586257002298193, 0.4623609318442811, -1.2941835302450642, 0.4890918762666894, -0.9276522309881755, -1.3098882971314378, 1.0206587067363153, -1.5406704052794178, 1.123087537240568, -0.8559444561431558, -0.9642054421083877, -0.49505996000249114, 0.32066974912150337, -0.5375280656556927, -0.5483950586978306, 0.5293638427547366, -1.0318597868917265, -0.7883874566472165, -0.7146638755780493, 1.7209197403928604, -1.6465058509781825, -0.14696479644136715, -0.8285516817966924, -0.32833416693888084, -0.44572564659625735, -0.08175018345565535, 0.9470151234594744, -0.5679614574448368, -0.5619068503543594, 0.039966476990196884, 0.336148531720457, 1.3378088651396987, -0.7534927302351633, -1.0885261375431896, 1.0118959971543964, 0.080140065493791, -0.3723054398384173, 0.271231251631721, -0.26810545241024347, -0.5827624455863974, 0.347538589959822, -0.3631337168999838, 0.7454127304042886, 0.9222992607058407, 2.1887439827412534, -1.5758193484585878, 0.6001485066223631, -0.4949078374596215, 0.4165496572110466, 0.5113132179662138, 0.10575456813720707, 0.20230485427740347, 1.9621942057687867, 0.21938118069467175, -0.709843131978203, -0.7167676777171724, 1.1413264246737354, -0.14216326369264703, 0.7759824061215508, 0.7112649592627658, -1.5164651531647875, 0.651438889232032, 0.39423569047508095, 1.3524236781126155, 1.4844679040810318, 0.7268137445713428, -0.9996705230002848, -0.31998173816274034, -0.08261241441328823, -0.03996730451335758, -0.44950923962784245, -0.7281103730503292, 0.8781702858478584, 0.7600512470944083, 1.1570478984764405, 0.5808626038512241, 0.023373850832398763, -0.1322118046417516, -2.2161595841326434, 0.005069519185126514, 0.032482629634555414, -3.1725884484833555, -0.09529570995341739, 0.480425710710794, 0.9079656818101105, -0.6144336947554081, 1.3901367787517578, -0.4185796026344963, 0.9831234767397005, -1.045236129413773, 0.7677055207688293, -1.551434945208052, 0.9366019683831516, 1.9201139191541217, 1.5130497913539458, 1.5627685567828364, 0.47432283517441354, 0.48358507695012487, 0.6964753048606641, 1.8302454108394204, -0.47251412755247224, -1.9401480510134765, 0.18150542702315106, 0.3860624310103768, 0.2619263512540609, -1.9119504512819232, -0.19093967234322712, -0.18067503783298422, -0.16726496336173735, 0.4848621806298446, 0.8627633904088777, 1.1064026257130606, -1.3526088628231847, -0.6516962908295799, 1.9505082195139785, -1.8663351209681758, -0.23574858972055118, 0.09627194620265773, -1.289753690956747, 1.9511796830965804, -1.8319781719337624, -0.2702293218126245, -0.00028551316275986726, 1.229271853637673, 1.1635798053581865, -2.265801557081289, -0.3014161510262964, 0.01100076212308339, 0.30631611022632294, -0.952004435403365, -0.5124594228814994, 0.7961063907539525, -0.1077801523868365, -0.698483649018598, 1.3668812696865213, -1.46477580447283, -0.5530877743102774, 0.43303119693130515, -0.0418287978985381, 1.3850641884052302, 0.12891385363928026, -0.47031958095442605, -0.9426546163125344, 0.3820096416409717, -0.6663906429381711, -0.12707099767507768, 1.2615304345009697, -0.363623682163225, 0.8565903825624259, 0.4629618192500632, -0.9433227669383809, 1.3961247075979069, -0.8368479440164666, -0.7462953737455627, -0.12409957235284666, -0.848739607019611, -1.2595897543867236, -0.36557429395035834, -1.5404685606944135, -0.2435339977663877, 0.5606203777847749, -1.3912157896744095, -0.7111935213717345, -0.48428775900657806, -1.1941021953075386, 1.2381412692651919, -0.03414217046531526, 1.9194813565461284, 1.8632858085581385, 0.550318636543233, 1.5558012272830144, 1.3088964582075175, 1.2082953787638728, -1.656067789628844, -1.0639965044470365, 0.7411505686479312, -0.3046541995018728, -0.2378948518710014, -0.4260579099434823, 0.6606210565762737, 0.8666667500632634, -0.9716061126699297, -2.1653169133263845, 0.6218805161424666, 2.359088359970886, 0.7586216852651603, 0.15481188172994167, -1.6770960245494828, -0.5989001232470645, -1.7596139216800097, -1.819052210145997, -1.3222119928075402, -0.7562061803398746, -0.2462996982389057, -1.2439197500972927, -0.7557740375553924, -0.39502341831493915, -0.33408404639787137, -1.7130011070813602, -0.0929966326926111, 0.6724453991392608, -0.5329935245202095, 0.317120184732494, 0.18339291436796795, -1.813860802461878, -0.5776690095618935, -0.20892404084484878, -0.8609201169446625, -1.54505149603372, -1.4314659020035787, 0.5421104816624127, -2.273638905606306, 0.9576442412759522, 0.08362870037374064, 0.9991743327790548, 1.665502223435997, 0.3631582393912598, 0.06490204686162318, 0.4354724634963473, -0.09477320803604702, 0.34088038570267776, 0.03484029327826186, 1.9002120119328323, -1.0120588953472935, 1.0684592387327736, 1.1490538287016288, -0.31604377464928607, -1.3187882985677448, -0.38986073028652285, 0.8456359723212582, 0.8991624115246885, -2.6456090108593946, -0.7490305495146325, 0.8753013556183031, 0.18460280439649387, 0.07740698117663161, 0.7072726303887311, -1.268191997791336, -0.10134392488817492, 0.1134198646871826, 0.7488989515536479, 0.37657125570898137, -0.9674088541498673, 2.3267364236110133, 0.34114655359580026, 0.4962155897056349, -1.59930882276086, -0.7011606486288358, 0.01730557239690655, -0.05569530857769642, -0.33007904310632874, -2.617630777029092, 0.41940025873467346, 0.21878147651599894, -0.6594420907443185, 2.016217472231385, 0.9128359242514325, -0.06896887974785973, 0.07941021548604775, -1.158851516823058, 0.21011921148971557, -1.6504872977398901, 0.3588161666726176, 2.375325567606983, -0.6360642125004252, 1.2393452697623744, -0.7419193022156314, -1.2489395639793401, -0.7715260635171164, 0.48998542454026334, -0.01792591541592128, -1.056969034621401, -0.23709860606053515, 0.7088509991153519, 0.8174052760953899, 0.880479104057234, 0.8817624463366722, -1.4970194680500923, 0.7031853705285088, -1.6660762581031399, 1.1598122159141526, 1.03257319964071, -0.0010481413840396992, -0.6600349105448741, 1.200213023685614, -0.6409658360825409, -1.122530048514359, 0.08511001429742962, -0.41270405339410265, 0.6441902406269664, -0.21536833910635356, -0.5238397355981607, -1.6095867398512314, -0.344005671409205, 1.4784583619225073, 0.9839046343734217, 0.5520509605229417, 1.2991485666182536, -0.922700025986655, -0.32056468684564954, -0.08621949708642482, 0.06355741106403091, 0.01702855302528782, 0.061985023105687424, 0.8495715497408108, -0.4289824593537566, 1.0055386657440208, -0.9924223606683931, 1.4891115444346152, -0.46902819986521166, 1.4605734212091386, -0.35027981869792607, -0.2964075325495773, -0.9583339418754081, -1.7140568572964852, 0.321448177609616, 0.4207852440639182, 1.8030863125883898, 1.2922881302718614, -1.422100195395462, 0.864090408684506, -0.30270949295124033, 0.6498730066037376, 0.026492912069894056, 0.661562268587394, 0.724707074804334, 0.6697926936277436, 2.5166877961824343, 0.5730229975108437, -0.14491597383809732, -2.883844197728918, 0.4225527251957419, -2.1810934002432956, 0.04801636346515967, -0.6437945600649952, 0.03353952928377508, 0.2785059781771335, 0.7202952427690705, 1.2278869685187284, -1.3943485450671185, -0.009396650187721347, 0.04264545901121639, -0.05938812641114239, -0.33816738376991495, -0.546748323987241, -0.5357796123922648, -0.17221994285652445, -0.8238531116220821, -1.136694610394066, 1.315661947698957, 0.7425675958482313, 0.8543790200046802, -2.0088562130356555, 1.0598577215587281, 0.6177219628125104, -0.1219039144859729, -0.01227408692909572, 1.3639158559122684, -1.0996268321511675, -1.4104538682598782, -1.1562303749847265, 1.2404275024432192, -1.04840425328837, 1.636592659479225, -0.606411307404943, 1.1939697085479684, 0.6942361343480938, -0.3258812647063957, 0.336927103972193, -0.9913564058504741, -1.5743369850088968, -0.5229881856669172, -1.4978152764673478, 0.6892107907733582, 0.9935067828132448, -1.3226943646118356, 0.9779247910819461, -0.7079128417509037, -0.087659087830878, 1.1381752462374572, 0.8812705036449591, 0.2894461612754195, 0.5829347075172479, 0.0024352518142636875, -0.7481341783934953, 0.6535225603508359, -0.4089569769012163, -1.167938030068256, 1.5529019365036585, -0.0968157543576884, 1.2153200872038061, 0.7183049435269316, -0.09997620018319679, -0.2550827590538313, -0.392117521443525, 1.6789748123554888, 0.3236929616627263, -0.9094347719911786, -1.0131533660195755, 1.2597102152847872, 0.09732384695733291, -0.6695297284338321, -2.1832415468832713, -0.38746769531388864, 2.111301287385945, 0.052800253069262476, 0.7648664052815344, 0.39985166937583555, 0.5895132656600194, 0.3667252645266532, -0.593052420175309, -0.24103908200495436, 0.0563976357840948, 0.8210164243789492, 1.3417414706974213, 2.38782270112503, -0.787242541862641, -0.5285063030413749, -1.1850572890076392, -0.5847166320940289, -2.330673254516074, -1.0405037716066075, -0.1637417578074636, -1.237977527409273, -0.4716375031967138, -0.3659358854013784, 0.5750405398411009, 0.19006542647578265, -0.012343755161195845, -0.93613880643843, -0.9216032055755019, 2.082248751540266, 1.1856630260851668, 1.5412160549491154, 0.09327886617616041, 0.42124449609099607, -1.7832000535869106, -0.6577437922455421, -0.5591232667610251, 0.40964484723457734, -0.9648983711180191, -0.35598994479551954, -0.9865847267043716, -0.1602178824670129, 1.8214515121865593, 0.31829785068026223, -0.73434190572639, -1.1599653816520261, -1.427182002011978, -0.1715220497878355, 0.41754804031887377, -0.3506500763417923, 0.7086154027382173, -0.7308566897510977, 0.27241605822560266, 0.6071668852595672, 0.5139279857796147, 0.6321129739052743, -1.9692759749779551, 1.5726221559788707, -0.34596650725870953, 0.19497103678431832, -0.8509850074068183, 0.42558968641393385, 0.002637294369870931, -0.42058547600081303, -0.8029529251880897, -0.23902368807767, 0.25562475152739245, 0.5718020409660838, 0.4552163047104166, 1.44857497190394, 1.6294950301624886, 1.2963878699311473, 0.0749121739321576, -0.924361566813397, -1.856940883409455, 0.2673490232484114, -0.4994645342648279, 0.17497517029612877, 0.20384496788104464, 1.2404701472386745, -0.36189353339058433, 0.23789707071977287, 0.8338537472480841, -1.7285397225859487, -0.9923565437524413, -0.4019680214748147, -0.312441421177534, 0.8944338704774106, 0.036374184215679804, 0.68946790320689, 1.9095226326394277, -1.3338536337830194, -0.28175484939311835, -0.44859667560896355, 0.46954990063531454, 0.5679372089000398, -1.332116204653188, -1.4923030917950642, 1.276012597069413, 1.184843667554899, -0.16467764694640757, -0.7595941613776866, -1.0150635686874838, -0.1855186779596822, -1.2949864896390515, -0.8145842440350296, -0.4307935132092096, 1.3364310793988456, 0.18200445236199847, -1.4619375803304362, -1.0904374283211034, -0.6838982170501288, -0.16041546450786184, -0.4602492648367753, 0.34468305379619124, 1.35603431280443, -0.6898790959354921, 0.6983020965110891, 0.07907860986144392, -0.49629335648894696, -1.5819959790499847, 1.2444694655375228, -0.8009185024151675, 2.06627462094585, -0.9576235141073196, 0.9771003424995736, -1.1105566690026116, -0.6939438488080569, -1.235433602389198, -1.1257573508551242, 0.5511709771317646, -0.6651105780119246, -1.310539480110598, 0.15562063023868797, -0.9986418595605032, -0.3832886873359514, 0.0778587347747767, 0.6402113241255034, -1.6006209841639125, -1.0406228372264053, -1.7672066752397961, -3.0819834236756445, 0.4833164216927246, 1.2443593401167772, 0.4761277475440001, 0.48460791468288583, 0.5306680797730531, -0.5694329088182262, -0.5809084786324952, -0.015417601595706426, 1.1786531273323302, -0.9159468128203692, 0.2767803721622017, 0.10190479078898984, 0.8909820747400501, -1.1555997474923736, -0.0006508069589063831, -2.4819756883538844, -0.6373601870296525, 1.8135147145811708, -0.36115951520255013, -1.340325200428585, -0.6987517434919372, 1.3548652143951267, -0.943668769881035, 0.4191192365196881, -0.3736760872290304, -0.011286928060606218, -0.7236141556039368, 1.377857358595858, -0.3333412948905975, 0.696550926875922, -0.05359969392344159, -1.8078338046954605, -0.4199531474107622, -1.0581853315605863, -0.8591017440253591, -0.794500708661738, 0.4021266079644427, -1.8003751526784006, -0.4640509008567228, 1.133189354240698, 0.6803442379543719, -0.06580923484233261, 0.7168171130377972, 1.6118807183387223, -1.1769120042670909, 0.27816514329325104, -1.510479261632878, -0.1740468698611057, 0.7197530941389743, 1.254357204069447, 0.30701385060086855, 0.16903431333153157, 0.5120162299437462, 0.24527719140003693, -0.913529540322351, -0.13061153872880946, -0.5957923309170936, -0.07955751897570766, 1.6017505058522188, -0.46182955496616424, 0.21859054068677627, 1.5010979481883941, 0.34406593925071516, -1.15853767160289, -0.9999309141126832, 0.5075436778395831, 0.616086646161116, 0.6356396185588802, -1.2783097160944719, 0.44768402657777767, 0.45645141008043427, 0.7734492381574671, -1.093239835121315, -0.440713980813023, 1.0337034601440716, 0.35045559697958983, -2.092023933906538, 0.15763181214151153, 1.589542367077179, 0.6391369972833844, -0.14523130684439867, 0.5640950250851675, -0.9341174235361671, -0.7959422982933063, -2.0386520349107955, -0.09282319715163065, 1.0890397184517357, 0.15811942247385263, -0.7939845212482993, -0.09053399551709894, -2.285438235262133, 1.1831724442079987, 1.0848059008182924, 0.4175352677633182, -0.5021658269374356, 0.41986129261293365, 0.5928186254803639, -1.544419550926146, -0.5360362866350087, 1.0150721674872445, 0.6359326905657523, 0.13608977453787863, 2.085015172961212, -0.6351525505491359, -0.5510481271206645, 0.1912388351453315, 1.6145298848092522, 0.6348956706845639, 0.20932465123023053, -0.5248656960767057, 0.5362348707350116, -0.269514227556017, 0.6194597596579329, -1.701161494804363, 2.264252135608198, 1.4781328332465187, 1.5555522226865361, 0.24704975579468147, 1.4160511746768607, -0.21159466332937565, 0.8755092760950388, -0.031121752102906002, 0.723374513980013, -0.8530922208707195, 1.5468311690448262, -0.14605815938930483, -1.487588218346962, -1.073957861395329, -0.05295877589176789, -0.270632937107191, 1.2680114814396373, -0.940607480795413, 0.4634888261638773, 1.063598252462317, 0.12332913014055887, -0.3387348291290235, -0.2217629003249898, 1.4716225969794303, -1.321565044755976, 0.9431604770247664, -0.6221270888256194, 0.6237764676691795, -0.7274018637515971, 0.7597209415353322, -1.2928107056487266, -0.32688544195290653, 0.5527556651331388, -0.5299683458993545, -0.2960047421510747, -2.0321747812689503, 0.16638830086248807, -0.09936385203535603, -0.9313329273821331, -0.3965365481913517, 2.5236167523579285, -1.214256506661931, 0.9304308437780192, 0.1678284687936515, 2.7889227520654347, -0.5092550659934514, -0.2489576042225017, 1.4886918931396345, 0.46877265710625415, 0.748247243029263, 0.8241842550613382, 0.589995819911621, 0.7476853931974516, 1.4604299428436252, -0.7447047830892445, -0.06435620321596948, -0.7415891701228713, 0.6883917210235586, 0.7710542110182795, 0.13698371795091865, -0.6353620052623269, 0.12643954551938724, 1.841001352263485, 1.5218229202567237, 0.8674488470977924, 1.9940427910155976, -0.8878040852652431, 0.8805944345007213, 1.5003814449951391, 0.782237727963491, -0.1451862807527901, 0.860393911819284, 1.3414764534411057, -1.508239306819063, -0.5460273110532508, 0.6604537361744517, 0.5657777131681467, -1.7844391983031753, 0.025684168908717688, 0.4232159982373587, 1.8472732580055753, -0.36203616627588125, -0.7799090269375786, -0.11534165113897023, -0.22280646635599854, 1.2387306720923679, 0.6847289808623881, -1.4704591279608303, 0.7633230705057874, -0.42988754887124936, 1.0525914896280841, -0.04117877941942899, -0.3288749309135366, 0.11141221254397564, -0.6020131847456797, 0.5471664934399739, 0.37670936910489633, -1.1777949266254848, -0.44994040506447824, -1.0451393950628265, -1.3952158458316588, 1.5897515117123886, 0.9876965652128259, -0.3355020357066547, 0.9999320061089321, 1.5985900429215893, -1.623752855851504, 0.11226493632208483, 1.0915708407061844, -0.42593905363083406, 1.5075644071579357, 0.5637971209331827, 0.8817057078452265, -0.5935167314169655, -0.21201260907616173, -1.6073300658414806, -0.7268664874956242, -1.6776752298116357, -1.0658251684882163, 0.9279128737108793, 0.04832019627194902, 1.0561064120206198, 1.9672450361680718, 1.6699676245318005, 0.8700703100152929, -0.7203958550589554, 0.9672048093911673, -0.8874407896979665, 0.36965835601008634, 0.9397575793285454, 0.05568731962124062, -0.4119222433521829, 1.0048871710135803, 0.07495516664432487, -1.7279731790569748, -1.4884197304182867, -0.1179117169228577, 1.7931892199962713, -0.8946231209326603, 1.0020381787668988, -0.2713224834283074, -0.9369702962170807, 0.7861302337178113, -1.4217025634604163, -0.030624822868004067, 0.4606496783149052, -0.01754952217947893, 0.21160160771606196, -1.22961554025688, 1.0378883058227373, 0.8261531080359881, 0.4643454994328992, 0.1940671177036556, -1.0188467367132, -0.7753807783559871, 0.0744787148873275, -0.020952360518108847, -1.4008481365953795, 0.48247708256513205, 0.032456095218497245, 0.8167418896670955, -0.7205486714489551, 1.5393927276312491, -0.9528597835649721, 1.867075199717837, -0.3361149595587386, -0.2749960770660453, -1.2151734647712018, -1.5636347435638966, 1.1863081159375792, 0.3793577421589896, -0.004986522597245366, -1.0460780654743007, 0.20521334788474882, -0.3941476307295191, -0.06614459580142269, 0.3435397239746695, 0.43778701991893415, -0.29983074395725795, 0.6756208466221055, -0.9218957978590077, -0.19951696156296458, -0.22370956693613891, 0.2906407894860962, -0.5656830842049348, -0.29626493238682167, 0.985066559711751, 0.0675500768410377, 0.5506829513849355, -0.021058993342566723, -0.518546600792501, -0.26984491644836733, 1.0450815733100467, -0.4342016911242778, -0.3741755895638219, 0.43860181644985846, -1.6539495710283882, 0.5637103228291456, 0.48601929526095533, -0.2708883180584228, -0.5411105333699301, 0.928883190832976, -0.6861485898323049, -0.28048282529798585, 0.9603383652558731, -1.582253964371688, 1.3536063846605582, -0.6597479261737476, -2.139160182001052, 1.1049053341588606, -0.05350936238404776, -1.7187621509599038, -0.9188897740013781, 0.6607941160457032, -0.05078030124136955, 0.35410234697259696, -0.0754426062329169, 0.363440049490408, -1.0249396852584132, -2.1082766254244194, -0.8956872522319466, -0.09308674641682911, -0.4027163827293447, 2.3503644506464574, 0.5911481114376785, 0.790649212641418, -0.9569028676170194, -0.21225384868799524, 0.8673744046603123, -1.4131276757259568, 1.1926880467122352, -0.011620399617443529, 0.9225048483956682, -0.371188147600002, -0.4207907085173124, 0.28651604072261794, 0.06284543508234308, 1.2512386525557169, -0.24384513302797176, -0.0018318876677717313, 0.6045580596638239, -2.135091529991511, -1.3008915807710328, -0.027072445602741628, -1.9070443352872206, -0.630127448078529, 0.29407491111392037, -0.6489879078334503, -0.21897045668030637, 0.44517275643410525, 0.41377482661334397, 0.6694806117422897, -0.12180443905841358, -0.9341267485087923, -1.2354647553795794, 0.8253274668311079, 1.10421591410923, 0.9876326568874662, 0.6052073326185485, -1.2057915332134004, -0.33461947640102585, -0.9466509244610095, -0.1666399315888119, -0.5618466059765929, 0.1815179035845148, -0.6849604023552875, -0.4361186908399111, -0.20995223942392155, -0.3663692761071039, 0.05485934391826587, 1.0560858587905566, -1.2682274803304545, 0.20230460320731672, 1.1120956065844108, -0.6294365577088394, -1.3485639566458192, -0.9312721425715923, 0.3503032948359782, 0.4511447342908464, 1.5888779126066026, 1.986065234971128, 0.0940030256173315, 0.37629880579290137, -0.6682515028234374, -0.3475760272123322, -0.279205855336207, 1.5949890359978052, -1.3457001670037307, -2.2790602186487456, 1.6738886752657582, -0.6031903937093936, 0.2552323425923662, -0.9665925229975612, 0.6164911612805989, 0.2122147929704508, 0.008999413655495192, 0.2671449314866526, 0.2790806429138702, 0.30555193737288416, 1.122776703617858, -1.00774677092908, -2.0795625619692237, 1.0072464579369929, -0.4615218050913692, 1.2446291555798665, 0.25553949865752806, -1.7201820604576346, -1.4563613202771293, 3.0264402193972755, -0.1551133844764129, -0.617247835377318, 0.6861516835617439, 0.09144069164527964, 1.9843739240320475, 0.03301762468641362, -1.0149824128571574, -0.2622747403793719, 0.6175422249755935, -2.1463518951981424, -1.3360574987958944, -2.3169366461678065, -0.3060644034705214, -0.14794791847180536, 1.4219014587829355, 0.522468984537395, -0.5946381615276148, -1.3081736289243204, -0.4148125676939055, -2.2148490608869422, 0.3078994784509042, -0.4043256912980163, 0.14700095952598333, -0.7720591068263611, 0.981863707082753, 0.3140306338142133, -1.2485872735620804, 0.5269021200461567, -0.8519462077198738, -1.6148736474533794, -0.7653835702643358, 1.5179482711812593, 0.3082388034801953, -0.9687821925170045, -0.39870102410895875, 0.39184888246154914, -0.5915878905936728, 0.18406543288815924, -0.6591242830972553, 0.21827704975376372, -0.5348430346741372, -0.3453393346352809, 0.5134015888692869, 0.6426346172413302, -2.1171066409162944, 0.4395265421889397, -0.08984397285664414, -0.49245435850355324, -0.10829502647724243, 0.36319969520064477, -0.4368769113273438, -0.40776824758808694, -0.6618752426567882, 0.4993601047650383, 0.39187022971632895, 0.5368416444078475, 0.3303473591199995, 0.7380108029625291, -1.8806725753075224, 0.9747448579937246, 1.7777671145647211, 0.47329714461894395, 0.34203510883502103, -0.5291047667570502, -0.1397739865116585, -1.0609404154385924, 0.2372801629255151, -0.4344595233914579, -0.3661315784701266, 0.6127346128225964, 0.9122738909297564, -1.2034998429179304, 0.3074446006343402, 0.7822187908405894, 1.1744459109742906, -0.12554737722075784, -0.5713044961951262, 0.18449681100385992, -1.9500803354817051, -0.06711223050762603, 0.3868008746479562, 0.9563808238041942, 0.7994511412428694, -0.8436311262519204, 0.042767676987561856, -0.20593593412205835, -0.179557789271357, 0.44232212523569303, -0.24322753580534737, -1.1801207234884836, 1.2676379790548953, 1.348632337863342, 0.22823402538000767, 0.24395695737352363, 0.9970677977208661, -0.6172449703462615, 0.6046454702762941, 0.7277327379163593, 1.2595176115828188, -0.8721397239959003, 1.0080217088335048, -1.1714076756157423, 0.7019634737631333, -1.8447240622764105, -0.48429685291776736, -0.8999308985630834, 1.1000797602105556, -1.0546811133732954, 0.7221638601473305, -0.9460144164004208, 0.10116255755205873, -0.05630398342717982, -0.5030706734078952, 2.751329019729605, -1.0615406447420115, 0.4823552944213247, -2.2525549631065402, 0.5713208972703052, -0.35800527079702676, 1.3948133902248445, 0.707137512281074, -0.7144760086979869, 0.18516662304080023, -0.380685939827673, 1.5265024933751445, 1.5776256935369952, -0.37953715718439707, -0.8413276259443938, -1.3747393060405788, 0.8749056441314061, 0.9885133207079783, 0.8240157244117493, -0.5653462322832377, 0.24116212894190514, 0.6092948336827864, 1.662644250918182, 1.509636565130841, 1.0001284790795242, 0.38575688526077745, -1.2142675835935093, 0.728098377970981, 0.5512895085386794, 0.15315361593306812, 0.8509002236924118, -0.009211645609335505, 1.607633952058059, 1.0613113292361929, 0.5849704423056432, -0.005781965502054205, -0.3269172399344105, -0.20139252053286014, 1.8325585385439283, -0.20353908799012846, 0.7680923101774397, 0.11152809330923595, 1.5483224377217804, -1.5289064878981187, 0.5297735271691147, 1.1618114045759824, -1.4780389855161442, -0.43002533445327334, -1.4129052731940293, 2.147329783628397, -0.15803741130955853, -0.7991462322187111, 1.9283234195210994, 1.9071884300084843, -2.085480555635893, 0.9783003529899559, 0.42841272113272644, 0.027244705551935706, 1.4156985842816954, 0.7779892413722163, 0.1330178484902347, 1.0108173274388588, 1.9411219998695055, -0.5909802027679139, -0.6966476531063045, -0.28773990451435716, 1.128642786185998, 2.244296588856203, 0.5049300373066153, -0.793995642236114, -1.0786504021770795, -0.28714917666102496, 0.40727291775781344, -1.9308971548031773, 0.7687285997201357, -1.4374384225306382, 2.7120858768554204, -0.08087006400211663, -0.7149179853224507, -1.0690096147706438, -1.6648706518409748, 0.3319166208381494, 0.8965052998231093, 0.32570138769300405, 1.4143261228761046, -0.05449246471923966, 0.49936421316133517, -1.0861346270400298, 2.8000865035142612, -1.5099914150264129, 0.14479449316620388, -0.4388277881781287, 0.5030755154348426, 0.8016794709042182, -0.6890904811996006, 0.28581964241743824, -0.9872185516994778, 2.4609205297429746, -0.8095945703840189, -1.0539969634586666, 1.2651074443338606, -0.29430076915419834, 0.5943583581053223, -0.9014306947099975, -1.2377110337005874, 1.4642359536061857, -1.2245696787399813, 0.6455865805221914, -0.20932003033518426, -0.7469573583312036, -0.4465756151751375, 1.1715001727864016, 0.9409530411814103, -0.8192431404559719, -0.8796732204212679, 0.2655937602873019, 1.8017333344370783, -0.2344231518440891, 0.9693890507388652, 0.06878947218982641, -0.2326120547182109, -0.8070650346503172, -0.329806341360157, 1.8039910306820992, -0.28958018650208106, -0.7163044631076102, 0.32460892115366774, -0.6921183520512104, -1.925989368105112, 0.6015199306980351, 0.6759510874582234, -0.48228730904617756, -1.3212938729601862, -1.0423199842183488, 0.7933265584165927, 0.2882125358556704, 0.24195739163501126, 2.687099265693912, 1.1919198838852005, -0.6404629506131001, 0.48229071608212615, -0.13927062830822126, 0.12131950473530295, -0.07995476132068977, 2.0261861341825558, -0.2130033760337661, 1.4592777422809864, -0.8344931678273201, -1.5322632332879473, -0.8051111616360835, -0.11541733194635571, -0.63237299355107, -2.129231483347734, 0.25862236661870264, -0.8390671351235577, 0.19406176792300422, 1.4224905251582804, 1.539512042121461, -1.9671925363492686, 1.0229032141018946, -0.1380381244296352, 0.5864347062160218, -2.342692859232809, -1.5063744456557966, 1.1403890873633455, 0.3973172875365076, 1.8013014931683358, -1.6695280612996464, 0.024461736770016302, 1.7505915070476643, -0.04918649002706648, 0.33074571265493696, -1.8639750713733445, 0.7249965601208797, -1.5847979152032607, -0.7210864323170859, -0.3994083599802492, 0.012182663665153342, 1.6486091544182486, -0.6739595461168747, -0.5336131847252588, -0.5584655256348724, 1.6512187014061535, 0.2880959259703185, 0.4410464346385592, 0.67478453964764, 0.8184277193554984, 1.482840811377775, 0.789765075150611, -0.32166138522787774, 0.6212320303307638, -0.10771224360003971, -0.3936903010505111, 0.8585277899286782, -0.5325534508521305, 1.0037941568544089, -1.2547335156172812, -1.5898126841284506, 0.6820174473612229, -0.57368453470463, 0.3016395980418656, 0.775004264062137, 0.24216674288193232, 1.4772374697965753, 2.122823500496534, 2.254633237253461, -0.5375568325226354, -1.2780671872773042, 0.524540017846404, -2.2676627562298886, 1.7582120351774284, 1.0918408026218587, -1.1396472276039042, 1.289901183976524, -0.30010435963282195, -0.0636397870621207, -0.6122758551110009, 1.0899212974998966, -0.8087628680996173, 0.7697987959884837, -0.9071360812154491, 0.30540664032367254, 0.5830827327111385, -0.739525899455092, 0.8865967539657019, 0.3785867653044039, 1.0679274652685955, 0.5525245404320134, -1.5327184283612485, -0.09039892077412114, -1.5536466398748596, 0.9285927681367125, -0.19809143473298454, 0.6726957140661172, 1.7569038505753742, 2.16272015455545, 1.639354922776359, 0.44785938472691517, 0.00628418586742798, -0.07437407979694349, -0.9550185362532978, -1.0577133858919359, -0.014595912204267269, 1.8789873221754716, 0.9706969983194236, -0.9376557747951237, 0.9177714304296304, 0.17663354460757488, 0.25431509494572996, -0.4199724423749434, 0.4493166212276498, -2.3501309269543773, -1.226710971726678, -0.1370958610227444, 1.8257922009744856, 1.3354848524492478, -2.383671317191392, -1.6083378240473254, -0.23333154627294897, 0.2707732761812974, -1.5500785083185533, -2.0089663110613807, -0.12661697102606972, 0.842368148810708, 0.6259103144865903, -0.540739579686998, -1.9497587399492489, 0.8717067636664729, -0.45707835966211235, -0.7950781059957687, -0.6844176132883079, -0.9879497007823936, -1.9137876968166927, 0.6575465503631152, 0.12974776677639288, 0.4753234484618544, -0.1877461854915996, -1.5166021062136419, 2.5375688327299275, -1.2006815633137164, 2.0966772409551435, 1.2912266117823645, -1.0213064324720418, 0.8297815659847041, -0.18260633587805541, 0.2186312599805311, 2.663448505512336, -1.0048012976510956, -0.23569594476514585, 1.112540683333683, 2.263825670189614, 0.5016732428057776, -1.624155872402929, -0.020950142730253325, 1.3324910184617347, 1.4052393320096424, -0.18611997628331595, 0.8340737546775857, 0.34086213642635455, 0.452113018616145, -0.0843675499951119, 0.6810700857406197, -0.9248344840649221, -0.7409495012877132, -1.0298602607609444, 0.5530824824225914, 0.30221235879537894, -0.8825721684401268, -1.7088739136726412, -0.8960243058467147, 0.44984278922087, -1.3689778196005675, 0.8628654298727451, -1.7818178420037138, -1.1008282802642828, -0.5119729556937561, 0.6588976391991193, -0.6712940758026061, -0.30369300980365493, -0.12406337999220494, -0.5339340962748498, -1.2575144489053804, 0.17620814737677074, -0.1495622267936922, 0.40720003615682493, -0.3296423612966393, -0.7093863375399927, 0.48599719046940953, -0.23505773444862452, 1.406894933215097, -0.60099987797516, -0.18728531984659588, -0.026235718497389773, 1.756001929350567, -2.2543333336780624, 0.4905936211058346, 1.4356698479807053, 2.414229777402663, -0.4607393293995975, 1.7814052819435877, 0.20762909465736593, -0.16966623222844243, -1.7439661956751846, 0.42502657265308225, 0.8292055617739635, 1.5347702107213212, 0.10726940293008476, 1.2131399935835723, 0.5039889478108608, 0.03370687602517191, 0.4698585221745004, -1.6567282077610428, 1.4144384144250255, 0.351509555478527, -2.1638742496920376, 1.5257924862114678, -2.373307654714904, 1.621324359392255, 2.1327737523452597, -0.481189487971624, -0.34452577360801906, -0.4745270055050576, 0.9756359074411276, -1.285961359866701, 0.7653160826738424, -0.31984781488721137, -0.40375587320066264, -0.502739235912559, -0.0489064192402061, 0.12236526463787534, -0.7908423119491065, 0.7174692365287303, -2.2985250312364083, 1.107006427435485, 1.1788491683429536, 1.095879017531884, 0.8118206351911044, 0.322717193247763, 0.887792790612668, -0.6503691262643823, -0.47126621248777556, -0.20300239689855779, 0.485172752439788, 1.05202119649221, 0.18422585755906545, 1.7589399811539548, 0.7735573237291857, 1.370565168826669, 1.2586096089319345, -0.20324344303498532, -0.6679257452290507, 0.2992459268504343, 1.6487462228612269, 0.5785942078922401, -0.45739787289319966, 2.4099234314769764, 1.270242776356327, 0.4942692917185825, 1.3430959070202935, 1.184690405174236, 0.507076535540887, 1.2090944609673826, -1.9284346465361681, 0.30675674250843604, -0.7098941735835793, -0.01859108318374391, 0.04736317374182734, -1.0655245484301106, 0.4659863387516137, 0.24013044348780233, -0.34805650426920703, 0.19794417949797474, 1.0142840272311204, -0.3689019208746133, -0.7810942845835199, 0.06833132736761445, -0.9320937071909461, 0.3526916508512377, 1.4689398168887835, -0.5099540164112362, 0.2700701338610169, 0.07194964531334884, -0.7346083633771144, -0.8472781113949877, 0.1170330003592314, 0.5619886694037508, -0.6386517951308638, 0.4247555403736744, -0.5510601257925966, 1.569738108963985, -0.1810201317777472, 0.01576484170449058, -1.2746480052832947, 1.065592468417711, -1.0266166351410397, 0.18111396295750443, 1.090062945536702, 1.4567351842937628, -1.089329084566292, 0.6689865108438888, 0.3278075259276009, -0.4591137774411808, 0.2954412809322854, 1.4163317640364543, -1.2397152068931332, 1.9654621278063813, -1.0405828066183291, -0.624239496194462, 0.2673271907550249, -1.4144957750848905, 0.4141313014995488, -1.504057392644251, 1.0588957641642838, -0.640483925411505, 2.1293796015755886, -0.056895747015845, 1.2612648798774595, 0.7361462397623532, -0.36956069642589606, 1.3455247346890356, 1.1696690547775122, -0.7999991715377441, -1.465791131741511, 0.692650807311745, -0.0354186912059914, 0.41452298934808574, -0.5060888249188994, -1.0473107789313547, -1.253422490149046, 1.4897467711812724, -0.33961741388553723, -0.15260186922977345, -1.6074991212517018, -0.6794915756774673, -0.16490669860721022, -0.0494040423369543, 0.3551668266339682, -0.4951443770506228, -0.8754929855500029, -2.232346195388226, 0.8867444108970846, -1.371415890529587, -0.414802202250979, 1.0387438768553652, 1.0616157202486294, -0.6300735569744835, -0.9057917148216658, -1.467499910581845, -0.5125686851670491, -0.4422763137849567, -0.12997111154187996, 0.28428179217380806, -0.17848765628992147, -1.667647702344197, 0.6126450247659669, 0.545878651328181, 0.6200988680328883, 0.8895073401406851, -0.13366648217985447, 0.6145840497029129, -0.5615354556031216, 0.3673372607217218, -1.4332471420494834, -0.3457620909855556, 0.20436231718882564, -0.5218528539573953, 0.7488826650471824, -0.03751798414168752, 0.6707110457249698, -0.629303692473241, 0.02829564284482609, -0.505079768935918, -1.7713583384751317, -0.38938197711326533, 0.4822640239313644, 1.4585862558792608, -1.5919470806121212, -0.45971668960992695, -1.7974188819795345, 0.3564202731320425, -0.44322965122647223, 2.4939319104244815, 2.2482238339046887, 2.0576728538774596, -2.1090602473054547, 0.963118391517634, -1.806630333479027, -0.4919420239983765, 0.3195591659637585, 0.07133321412715186, -0.13905307793852104, -1.5210900519253994, -0.5553428795272736, -0.9697179170038263, 0.7579443282692121, 1.8586607959926966, -0.3246898618498572, -0.9155726924474488, -0.04358956771982576, 0.4527213234871505, -0.13269233631930277, -0.5414812172333726, 0.053281222653947996, 0.2330522030787242, -0.8217720583407958, -0.12109474233569924, -0.7475230240149456, 0.5603748286934236, 1.7407050646436624, -2.6477001298468, -1.10664279972478, 0.749448394807563, -1.5724830844827689, 0.14267721220785406, 1.1017856930301364, -2.385552378570701, 1.4075759477098275, 1.0504313086617167, -0.25119783593606443, -0.5481825473429264, 0.9365479455542589, 0.05689566471992699, 0.5794732778744465, 1.4058502434634148, -0.7683742956201679, 0.8637788430188379, 1.9793296673492704, 1.173944917964236, -0.13078054782517629, -0.6893503363804658, -2.879311793845648, -1.633392247205354, 1.61492685570742, -1.1076413247621248, 0.7536316024577823, 0.7416776864673568, 0.3891069038510346, -0.033550148594927366, -0.05131294835185158, -0.9312313627170791, 0.8143815666307872, 0.3644186706442099, -0.2906441073098824, 1.4068626384017195, 0.16599261329125717, 1.8678844829175791, -0.4742586297361994, 1.1159919249857424, 0.5192251393962662, -0.059646321089740634, -2.044599630637207, 0.9305512358948393, -0.3948883349799808, -0.47394301480676165, 1.3896444368469993, 1.3870828260756862, 1.089183243361009, 0.5178393049599556, 0.4228640806598892, 0.19881261211001494, -0.3176070433333101, -1.6967882326745087, -1.5025665968457576, -1.3979583506404847, -0.07770857325911802, -0.9804168124253392, 0.5581605910758349, 1.8081763352675289, 0.2596677487286265, 0.9095723077907969, 0.2169417463056208, -0.3884685915541922, 0.17786360725712425, 0.5010484453158736, 0.6779873051741341, 0.7280024689359689, -0.9390278855326802, -1.1746636703559772, -1.5475817868562387, -0.4384624040783446, 0.49302744397734527, 1.997499534210675, 1.3711075113004922, -1.4567740645579188, -0.3123973242848166, 0.907055950788384, -1.4734316256715092, -0.11284160599856453, -0.8139105543645033, 0.8025688921553208, -0.15464455438546135, 0.3993133754944058, 0.5060948401324787, -0.7305462643263942, -0.6346984222730038, -0.44787998554763947, 0.19111941201193408, 1.7931949779966379, -1.6837618753388615, 1.6570934631980043, 0.1943851332400553, 1.4002102187674763, 0.6068922604835342, -0.08993980581054795, -0.904101900581086, -0.6760729373824905, -0.03565363995961109, 0.2903603355065604, -0.4516542853895577, -0.32046729415371283, -0.9326455701026842, 1.0439595835784832, 0.2547451011193084, -0.6210812708638707, 0.8543219985119281, 0.38812194512194326, -0.16734025193739097, -1.131346717958364, 0.3420625465601672, -0.6273291765620758, -0.7045489595355554, -0.02946548771183726, -0.497324648067453, -0.4535714049517106, 0.1892625079575135, -0.3546569379569775, -0.592551888983676, -1.4911979583904864, 0.8283449555092123, 0.03961142260853152, 0.5664994104460083, -0.6130444087696079, 0.13026525363841823, -2.05076299468812, -1.5885957747467512, -0.0946036046281879, 1.1480021566765595, -0.7075520870883304, 0.411939694404494, 0.8941214568816268, -0.8141317861001649, -0.13870221561606108, -0.02356207740628592, -0.1864262598895966, -0.2923956846412161, 0.6016217610370981, -0.49745426534950415, -0.8787815470814412, 0.6748810014328143, -0.7107962534733887, -1.1045588309504566, -0.7054704776034424, 0.0440459747618395, 0.9282351938006707, 0.8273876174366971, 1.759180940996527, -0.7966372056365848, 1.0749175109183646, 0.4710349735400604, 1.4667125180134954, -0.4905297722470823, 0.8740596546567146, -0.7087688494283066, -0.3127339363473481, -0.19125861401062935, -2.0227951853339428, -0.3070754031223395, -0.46327928380736233, -0.34867434938942776, 1.0882871027088092, 2.1598241633412747, 0.025579858125336506, -1.9531263921103406, 0.6071115022670144, -1.5255783598015575, -0.3094413078277524, 0.7017561250350571, -1.5442817434558047, 0.8689886356967808, 0.35543206594601306, 0.4714143304989615, 0.6091176961611866, 0.1386109445206737, -1.1058185847924427, -0.1530600912517731, -0.7511875518950443, -0.4921481337280937, 1.0657394889225211, 0.34719974698649375, -0.39529005301897185, 0.09593327943797154, 1.70496288880729, -0.5053577968910016, 1.46619833595806, 0.6626583426885124, 0.08852060419295124, -0.45604641515795175, -0.9234722011751342, 0.9318906318454978, -0.034227330304786495, -0.5320953565073582, 0.5869238506821285, 0.3871591746858893, 1.3691504784294286, -0.11216399042446248, 1.3496016087090277, 0.08885176242850905, 0.8823624531376709, 1.2215249941209263, -0.01612953500385861, -0.824853821852855, -0.08252922532229358, 0.39367129311489696, -1.9829355433706102, 0.6740116950306803, -0.7853418225310785, -1.3416851319855108, -1.2696673524715225, -0.5716677166452447, -0.9340375610078113, -0.14601203135535362, 1.101569074226898, -0.1468563706263568, -0.47341217882272557, 0.22575862691950244, -0.9186069110602807, 0.731340093303147, 0.37142195123930255, -0.9332661259449038, 0.16006328231755815, 0.9346448374855792, 0.38891582402619307, -0.5154380416131034, 0.11644455115644092, -1.5316266395306242, -0.15527773361863725, -0.890964650280178, -1.0728825521342729, -0.8946483599660559, 1.4613807794571474, -1.190811180822754, 0.07061427511517346, 1.4008709591262303, -0.35776050933248293, -2.7100303224173015, 0.007591776410437925, 0.708188077456592, -0.45600978971127437, -0.0673387656060769, -0.18819421084798352, 0.1582919514924527, 0.6878097450062651, -1.6879957357007624, -1.7092169907313544, 1.549298006051382, -0.38760805909691964, 3.284143847302319, -1.596171482273641, 0.7415919110284833, 0.6603939019789246, -0.36048166595161424, -0.6005819831084829, -1.0860955050685717, 1.9102424502053834, 0.9483443084915995, -0.8322194851106072, 0.4974166819777636, -0.4768609060396594, 0.5620064228950622, 0.8241167873330016, 1.3926708921302635, 0.7370262755257144, 0.39180387456206167, -0.17808737525315413, -0.4342855834937614, -0.6639893714033037, 0.11370130609320635, -0.9586918874861982, 0.3417995487793804, 0.36323279182773105, 0.7186310681772216, -0.36030474472964374, -0.14886171376521357, -0.0442636322067003, -1.6630695776595026, -1.091660487161171, 0.30864301428760305, 0.7133500312817734, 1.5623004479137894, 0.25301509091045504, 1.4634379336168102, 0.25527179948646905, 0.8218661575987225, 1.5838311665534035, -1.186573402652756, 1.0437122013775844, 0.016606432698749413, -0.006325160952181103, -1.5793827914163423, -1.3177627652486812, -0.8993641582529276, -0.29928706054548937, 0.10038349776287589, 1.583141790210698, 0.810039168000543, -1.4483768861273687, -0.35647980720399736, -0.45270903056278733, 1.437439766674883, -0.43021064424682215, -0.24955011581335537, 0.0972659910188475, 1.8668934125836603, -0.5295713396662647, 0.7295018865817082, 0.2945835076011663, -0.3197059650987519, 0.8543972195346109, 0.5427367615360501, 0.9796333344174122, 0.3464139815321565, -0.42209014973411924, 0.19490477935917855, -0.6712228723657032, 1.6455753126168449, -0.360217952843562, -0.25970845057201913, -0.1547827730752784, 0.5959095489247778, -0.56356033494358, -0.37645191178199966, 0.9760586846353917, -0.7939864265352128, -0.8058962911457146, 0.26670664888577994, -0.7451435838912326, 1.6215373927949703, -0.39144353194395215, -0.44672758021402703, -1.3171866706377335, 2.448461403564429, 0.5734952489258642, -1.8074500973755339, 0.9559976320147013, -1.6821269502364582, -0.30785590824170384, -0.462710784923219, -1.8909358529260336, -0.48660775486546304, -1.0105207300319028, -0.7047092239018642, -1.7232310082673516, 2.360455626197204, -1.2978882655580364, -0.08089543748683083, 0.19044024974342413, -2.0471517903135985, -0.31699030564616165, -0.7897970738106501, 1.4428586022790237, 0.2694186695681437, -1.5099504942703539, 0.27085239253689464, -0.40639987935511585, -0.9899124613490309, -1.009460119594578, -0.8761693379270875, 0.18031857462661074, 0.6987865733889207, 0.15019673701267522, 0.4684488261406513, 0.4912133495722944, 1.0600529257439166, 1.5274727479100199, 0.5454815524503468, 0.5557393229087585, 0.20121334129907736, -0.6339123868410572, -0.15074632232287805, 0.2511639921231481, 0.04964011664406211, -0.7749253233869978, -1.3426559369381001, -0.2752321642801088, -1.1298340330552732, 1.4117186552983025, 0.8028630599166928, 1.2112512346378386, -0.4287594548902092, -0.4536961287409806, -0.9911086907871552, 0.257565845864379, -0.5396890521224831, -1.186089025550463, 1.8575340247448047, 0.33046593536530827, -1.2727152931267909, 2.297756899061501, -1.0827776980718495, -2.485682605798917, 1.3081651321406769, -0.05054940462081706, -0.7181194228913588, 0.3998701822420728, 0.39579034649889516, 0.13129449492169046, 0.3605261319566942, -0.5239553021824236, -0.8710883530736362, 1.3683080542699164, 1.247446894729228, -0.3039093371003148, -0.040268008540935, 0.4476853017359165, 1.7870045177489386, -1.094971526553126, 1.2682985319282998, 1.0085074621742647, 0.18877202684250946, 1.5341932002687462, -1.2292112276633618, -0.860784206639083, -0.16246520438729764, 0.14505787495708722, 0.6739246671338717, -0.5414678031833559, 0.024878370254555245, 0.9673516012907997, -0.7514949182790513, -0.014641456165251303, -1.1024055699749191, -1.3059984744873068, 0.7398959852892368, -0.8330047982323903, 1.95768458634458, 1.4446137445827296, -0.42261288150660864, -0.807646069724558, -1.4896099430377419, -0.29175315195579943, -1.4468265140957595, -1.544997060883041, -0.7554337311640871, -0.5337746121986398, -1.5787532853277515, -0.9983618398059974, 0.6310255470913261, -0.9425898441657901, -0.5511232862448036, -0.181798936293432, -0.3603551368325202, -1.51127655969037, 0.6553696496667368, -0.5759913083168147, 0.7431748746693287, -0.7064385356373405, 0.16340681376920332, -0.2717569700427284, -1.657725141775164, 1.050287421559514, 0.10083222204059908, 0.33926784629483075, 0.7895593401903341, 0.9499365372800269, 0.18343088058739662, 0.1639462534514921, 1.7646465641984572, 0.07158876099357095, -1.1599682336125081, -1.772593537474355, 0.8395083270567628, -0.42811057526963536, -0.5655730764845086, -1.8252515825969382, 1.0825979496453204, -0.2485733761248753, -0.6202268065260124, 0.6985240898085394, 0.3156245174162939, -0.18935128815571886, 1.4582660531698541, 0.46881556389101625, -0.21317754882221324, -0.8771899254339007, -0.20904267893139267, 0.051906923766299205, 0.004560114008975617, -0.376765069077928, -0.49984853081120095, -2.1686116211031012, -1.3266909537430893, 0.8208913351633584, 0.953448498143362, -0.7655535494810274, 1.136090622741486, -1.2760458629913463, 1.5168113317005587, 0.3822144469583322, -0.969227382089172, -2.641244324321478, -0.8775695342041734, 2.143897958661492, 1.05121005197256, 0.14507547974323082, 0.9742614352929966, -1.0194707962604106, 1.6561758774688042, 0.40940786481685376, -1.7176712325652261, -0.17468709640166877, -0.11378905133988598, 0.702032113161782, -0.8021510020148364, -0.7207953266461927, -2.2892763860648864, 0.05365394509108124, 0.3980789189907185, -0.3180739274987118, 0.45823741244914223, 0.49159041792611435, 0.2563757685803853, -0.06532671107068307, 0.7502127187747653, -0.18475895307065304, -0.2812431268355392, -0.5203942272683325, -1.1594281516505578, 0.7529905255948068, -0.9439232686173256, 0.6016686423130492, 0.20762037639564193, 0.14638489225021398, -0.8743161289085347, 0.8320205843788739, 1.384248345702337, 0.29038963241705323, -1.145392516195509, -0.9483022174944207, 1.6355733795923943, 0.23051782578840538, -1.3285501169611509, -0.7244744640235485, 1.0596204102550006, -1.0604456418798578, 0.6585189031495121, -0.020512566429044768, -0.7903858483751058, -0.47106559464684034, -1.4882942675324429, 1.3612699597210707, 0.8296881191673279, 1.0235997865061246, -0.15059831388008355, 1.1537262231443137, 0.10620593110785459, -0.8215905220232459, 0.6178241332316433, -2.298038869458486, -0.6049187702054903, 0.060619893790424866, -1.1046607945166549, -0.6605504048284849, 0.3157937211410459, -1.0031262754922836, -1.2518430324566998, 0.5297904129186152, -0.4769377578466545, 0.2587023617049533, 0.231994418245463, -0.9075787788871034, 0.7585414908773697, 0.7537683482995835, -0.354834862556566, -1.0349552667502895, -1.3706583783879513, -2.422625139093271, 0.8313365099815546, 0.9448627419713153, -0.4966200686825091, -0.0003352249446769663, 0.1592201082182479, 0.6135434030716119, -0.1416702907403348, -0.022822536447524765, 0.13485638704835945, -0.07919452391093813, -1.826072217733831, -1.1494870979069378, 0.4395010274808986, -0.3684025456460627, 0.035279437276768105, -1.2773787448884788, 0.5550026192236999, 1.1946152467784275, 1.161296974550325, -0.1428674385239457, 2.0190211974802024, -0.3582276074398309, -0.7602950937926732, 0.28524048761203374, 1.58334527255022, -0.2667262239167665, 0.1899302007403221, -0.4277370907724506, -0.8047377791861337, -1.7766791167824116, -0.6845438821913526, 0.3270012118703118, -0.7468991996665716, -1.1055468035466525, -0.2198589229223723, 0.4443021627372955, -1.1306215260034183, -0.3028372413062119, -1.623315911116209, -0.47529160656125785, -0.7411430548669785, 1.4327968542133431, -0.9144127303431103, -0.20260299962689687, 1.1652076331717611, -0.5835822109213539, -2.4515482473641605, -1.2711758586483992, 0.9524847736270422, 1.5038211837586373, 0.5867613030211246, -0.7244512279049189, -0.9454899942990808, -0.7369119881000062, -0.12353427659419212, -0.08262872600013212, -1.5805959222633688, 0.6670578908525465, -0.2652375211148355, -1.2253941305302891, -1.375652944163357, 0.424510964572696, 1.8987287603162224, 0.6675128668966676, 0.41845540110426266, 0.4223094363657774, -0.7191712481205146, -1.3294012713872767, -1.0900238292136255, -1.3419161257526573, 1.0241305246583887, 1.044809373450305, -0.0769798896248816, 0.22183161287686945, -0.5666642162612741, 0.06332095486594853, 0.10297502585656142, 0.3322869960163034, -1.129560756268458, -0.5082167463820789, 1.1096500643535359, -1.7069296686033892, 0.02402915301119717, 0.9945969365988702, -1.7510159816662034, 0.43262480514362256, -0.22302404208301552, -0.3156773845374676, 0.326178650366688, -3.6536929862512646, 1.4656173052891281, 0.2665236118354859, -0.9867592899532871, -0.7320184454500762, 2.4735431266317387, -0.0690481124000097, -1.3951763379135498, 1.0944824774790907, -2.1591819390483575, 0.878419821074355, 0.7042203045556948, 0.4539365366825438, -0.12864179514457427, -1.1325729038167838, 0.6219341989007046, 0.8789561013932194, -0.45841322125465417, 2.576048091288367, 0.6166073466293909, -0.7729447377216386, -1.6522933838071354, -0.5410513647716694, 0.11578563524649671, -0.12083117724566927, 0.46389187441074986, 0.7639225232438758, 0.8140538193138381, -1.999979317889917, 0.6732555967704813, 0.7895735040101372, -1.0566570651574236, -1.0444847492826235, -1.134054295229936, 0.7338769277175786, -1.1626439010525162, -0.535803570439892, -0.16896213309549302, -0.5380956113420728, -1.6857516061865694, 0.8026360973668214, -0.9768785820150562, -0.7341585347751108, -0.835057879633591, -0.044454910003393834, -0.2776209020091767, -0.6031639394962789, 1.101506258634113, 0.2807737079401527, -0.4750068088180359, -1.8650604442425587, 0.4822727170945055, 0.6894987323496405, -1.5715154256143176, 1.022240772169494, -0.42157708166899494, -0.3788712730526671, 1.1004183467713626, -0.152922551380979, 0.4375439262145009, 1.0097460016028468, 0.1275886150928221, 0.013753151934883322, -0.48111602307809215, 1.6778600942071606, 1.4300408789094596, -0.45604188355919806, -1.2631942087687915, 0.8081516279369297, 0.11636804778464706, -0.038971027535318614, -0.7701421889868233, -1.5959093455608608, 0.3275180438547317, 0.593483705833781, 0.1809606484278878, -0.6373767446334871, -1.3298705714694967, 0.2921326334200275, 0.3287859858063085, 0.6258370143642358, -0.6891920534490309, 0.06612729456017834, 0.17443801626519725, 1.8130500715106175, -0.853670416311092, 0.07310665881191653, 1.0678392092536566, 0.37090540895877416, 1.8661174061068442, 0.32663604948675384, 0.9811046926133653, -0.28197631743956453, 0.6115632222816118, -0.9813552362532301, 0.30137558603948794, -0.303206702690776, -1.3064506535940745, -0.1913291932386881, -1.0769889695968249, -0.1891624560662279, -0.7137205821529542, 0.35651599989102195, 0.4984726525318327, -0.887416479203239, -0.184315004966129, 1.667528154649726, -0.6829197109232249, -0.5113197874081156, -0.09966640630111498, -0.2843644625365997, 0.3579535048584098, -0.5044917687750512, 1.4642534527151547, -0.07318343032869161, -0.32104207424079834, -0.6516320691816629, 0.541318861001033, -0.41352360559552054, -0.24165794015968778, 0.6134865125336841, 2.223017117670738, 0.550404982852171, -0.0263718985483478, -0.6596718512619753, 0.22641158638834674, 1.4494751225526292, -0.6590585416879229, -0.8038710098052001, -1.134066110212648, -0.22538293810526672, -1.409628637178562, 0.09147357607919838, 0.9592945138173575, -0.4519570395371835, 1.3758454080774978, -0.19235939861319426, 0.20360989164331744, 1.3100203791156904, -1.1436623670628416, -0.7824893379394051, -1.4640577115358357, 1.0727156620776452, -0.22600969566815224, 2.3811118879085975, -0.13046195900718485, -0.21994863292033073, 0.5485797601659758, -0.6597440670682206, -0.40119079103221644, -1.9175315118854481, -1.0890989365685555, 0.9197624114483782, 0.2439191919272487, -0.3993365911917151, 0.033920195293091156, -0.27278408190215364, -0.5626187344139714, 1.012286897822649, -0.3376649797811636, -0.18241726289354465, 1.3337537697325736, -0.7935462089425955, -0.6899307663582992, 0.7721966292959419, 1.0321372445166976, -0.5278520383752585, -1.5987289227946462, 0.21626180892407654, -1.221291668038033, 0.5082393933859934, -1.084006286570917, 0.49335492312852813, -0.7247006518589681, -0.5079423214410194, 1.2822031440993455, 3.126618915353854, -1.5077889001790339, 1.0837445643568138, 0.5436837909236275, -0.3155087332645173, -0.2406263423413344, 1.0737318236165496, -0.7519068315137236, -0.8928620775674381, -1.2462396193902192, -0.21912603432080446, 0.18036331260589336, -0.21731903425198304, 0.11529298516637378, 0.12073289128626125, -0.3173675681372878, -0.4288218639237951, 0.6664251537715233, 0.5322759281551661, -0.06874796161285954, 1.0791253256300797, -0.7555025305596413, 0.06177854243593922, -0.7792929579591664, -0.3295330109339278, 1.5548581301095659, -1.3803601040390652, -0.49257308999284166, -1.2137995775871195, -0.501515462537099, -0.12272779892102051, 0.03066613667951613, -1.0877648603435355, -1.2673330763411152, -1.394259028231221, -0.15279101549600388, 1.115481474970537, -1.8200427738710303, -0.42332317107945433, 1.1644674122702132, 0.7294548655857108, 0.24567528582012352, 0.9913413569305122, -0.07768628961652449, 1.63886523135415, -0.1417656342177838, 0.8952851957467594, 0.26518658524318695, 1.1208992446606512, 0.5099031056553587, -0.08587306993607667, -0.5770525530740167, 2.0005485727531997, -0.9956294415145914, -0.32680440464177485, 0.0007790273616839296, 0.05518123301829215, -0.5934457413049099, 0.45207559979769013, -1.0056100794266776, -0.6349324594513633, -1.6085194724577732, -1.3924037862059586, 0.6262702365039696, -1.1593970446808006, -1.4024194645643977, 2.2734303317660913, -1.367779500009934, 1.5256427989048182, 0.22246229208787263, 0.8652738122120338, -2.056208245920672, -0.12655637215482263, 0.45345936357775296, -1.5963406776066436, -1.56631636298348, -0.9151723470668356, 0.09967151946485188, -0.7432034653079922, -0.1154890107981242, 1.553093919860451, -0.9290363665357221, 2.1917977075930413, 1.0859783088311685, -1.2225248530008128, -0.8017170696511691, -0.33482878921999526, -0.3996069669026836, -0.17129964108310194, -0.22784134641859705, 0.8505230387006415, 0.8729087741128427, 0.6660881911629896, 0.8917499358053698, 0.4983579865069006, 0.5216980789023985, -0.05074178859558177, 1.0387285094439522, -1.8615864570650922, 1.33816571691398, 0.39802588466226824, -1.130050702215719, 0.7467578767150611, -0.1086341098205342, -0.8878058795687778, -0.7364743366727939, 1.5797932922821512, 0.003567717171706503, -1.6754298231737708, 0.4095855871901067, -0.8340314391833502, -1.2906058629412192, -1.2249678842788874, -0.5997941046794572, 0.17173581794111933, -0.2117750511230597, -1.0027633227756751, -1.5861488268351636, 1.2485065737838044, -0.33394821529917756, -1.247519523021662, -1.484542040454047, -0.614351140267638, 0.7999990082534711, 0.427958288528066, 0.9028429456600072, 0.6299164707231337, 0.5710304324571982, -0.7618754435009711, -0.37352241077581105, -1.3508348524157137, 1.2145441437137356, 0.4430931214919916, -0.7020069852665518, 0.02487296405623902, -0.6356687941251555, -0.48261718128222525, 0.18690870687401162, 0.4909342913300535, 0.47358280974870814, -1.1922491047900816, 0.5766680952925616, 0.6231924214459883, 1.0867325468537496, 1.3581965291590195, -0.7546832318438828, -0.8899040530439709, -0.4458186276653409, 1.282952893665982, 0.1453375492614144, -0.1446325605062702, -0.8736992498633361, -0.7811346355525269, -0.022273100550680613, -0.06124102035570582, -0.8290085767194683, 0.3586865576680077, 0.23057321846504278, -0.08781598613719838, -0.954494473862666, 0.07840787352729436, 0.18289348561130286, -0.03767014348401069, -0.9006236134349261, -0.37535944269389077, -0.9138503525565752, 1.0514001096299532, -0.6059946135644003, -1.318568318663736, -0.7443098534661994, -1.8527919137905486, 0.6801978457012265, -1.4627762301464915, -1.1596988180786947, -1.254715762701612, -1.442142392546317, -0.5725898674564088, 1.6167113451421071, 1.651188245336344, -0.5104501951568453, -0.29117829201266016, 0.26151580986624656, -0.7556850435324498, 1.7148298947014184, 0.4645540982645222, -0.23789888693955547, -1.4632616732739077, -0.7692896524147489, -0.028049084180700175, 1.0258865752093376, 0.18512069478094617, -0.895034705614341, -0.27463560001088627, 0.1786608701855838, 0.22933220677398658, 0.21239374715909698, 1.1187167998263505, 0.3599913253739962, -0.22650593906810054, -1.8468394974538658, 1.7729288428223602, 0.040042307754251466, -0.3448143068069757, -0.5761530393238895, -0.3037660539185957, -1.1245114517113912, 0.8144939386985437, 0.6867061098581559, -0.04373055596428575, 1.056545988080501, -1.2437689915046437, 0.9318180397110303, 0.04356948611528171, -0.6293876259950296, -1.36004620808776, -0.7738727637594227, -0.3072216006175491, -0.1915389322644828, 0.6369181018304424, -1.7433892919344398, -0.7480556481780388, -0.9559588748555332, -1.6165034438154957, 1.6607884482979876, -1.2935733477217737, -0.6231691412875668, 0.32888990492185904, -0.21985050358397906, -0.49349309411324127, -0.23058741439011035, -1.1986650481387158, 0.486552114023902, -0.4299604196236807, 1.2086113436766186, 2.0763003740854145, 1.0998024772422554, -0.3277735261647068, 0.057332294943450414, -1.6858924189801425, 0.17238360267413635, 0.5101789661425536, 0.33652671632712977, -1.2361840179981993, 1.1594427877744276, -0.6635549863372415, -0.6273385329280384, 0.9897687404072668, 1.623922617853258, -0.035467339343289016, -0.43317788003107477, 0.7661502730954934, 0.13770311396003881, -0.7715561194840082, -1.2431670252106881, 0.6085423167396758, -0.5440194117774207, 1.6307616989686398, -0.4557919070179194, 0.7371480865709378, -1.6449564282855391, 0.24099161877069716, 1.0438066863262925, -1.0949474647579382, 0.3572171249391246, 1.0632332362760126, -0.4288163203697095, -0.0690580857654915, -0.3551856385324098, 0.5347183146928242, -0.22346206992333573, 0.16417888587615123, 0.6681050772144164, 0.4227772667078731, -1.4437556711381296, -0.10707785592518457, -0.7024317948879039, -0.5248445317759908, -0.22032902420067838, -0.2579201820123354, 0.49825755445016606, -0.9750126876309875, 1.1890587435006683, -0.8926496846877284, -0.11835588174083007, 0.20809566227088255, -1.291369445354561, -0.2714164574364309, 0.6658973235504203, -2.446592179578656, 0.5114982488866581, 0.2611276851936302, -0.2835591230979958, 0.9200976092570783, 0.420162682904551, -0.3988671089966437, -1.0109646696211994, 0.015503289130504517, 0.8832991351512692, -0.5015223738793054, 0.8170176045959913, -0.009042767099714565, -2.147621195102675, 0.6587966541630144, 0.7557499259062933, -1.246017772371101, 1.1087796315964262, -0.4244125571315701, 1.1806320750291428, -0.0438258073119686, -0.24777381995687284, -0.8242574513643321, 0.26631273371019853, -0.685584548033274, 0.22260196360451606, 0.4307171042277781, -0.8109850517060911, -1.418901191744358, 0.9757498472438259, -0.9285805551044224, 0.5997606488835027, -0.9527035865901925, 1.0511076399394137, -0.2851520908592475, 0.6590146916580042, -0.569950380355188, -0.011122494925296426, 1.224997138942368, 0.008982520838012174, -0.20919377862136268, 0.3124911243158787, 1.4904481102741671, -0.8766672677192698, 0.38219821131499204, 0.5179211271633923, -0.25575102339065403, -1.6285160830734513, -0.20951631715521363, -0.5160143677073572, -0.6765729364064138, -0.5476896397430023, -0.3713553710904219, -0.45220886854706915, 2.658384504973962, -2.342706007810456, 1.3592077953363275, -0.9474653789115425, -0.773441526931719, -0.40050847875462564, 0.9584890870675198, 0.13878083280437764, 0.5864548555606994, 0.5740581671353094, 0.7688153216533395, 0.09007692331664717, 2.098338037409626, -2.391844982937757, 1.1053897743063676, 0.9868289493095627, -1.0093714573058636, -0.7829880458519799, 0.8183315806704877, -0.26626542108534806, 1.6382622076908642, -1.7243126983492525, -0.09093396387801402, 0.26219563404388535, -0.9443480814520903, 0.11517398237455113, 1.5958522036891456, -0.2006911728202621, 0.6400252920461883, -0.5484813578633853, 1.4281622744283509, -0.7332576780227174, 0.04177689476888393, 1.219999002310573, 0.09231012349221879, -0.3338694496407913, 0.21794526610202483, 1.6513688111376343, -0.009674788167473, -0.20715814678998587, 0.2031162310810949, -1.3925245322361577, 0.18005839300064364, 1.1991317156130914, -0.42330403291549473, -0.7219435688686395, 0.029970086743795084, 1.344837381524321, -0.6222915062165063, -1.8564579024092145, -0.7726465269365594, -0.5189525070434895, -0.6206150141743558, 0.22581090698432552, -0.6837907698433853, -0.3471333048135543, 0.18160636980970873, -0.028505387062288792, 2.413927729202557, -0.03092741111233243, 1.2544544761165912, -0.8125667871223082, -1.2858774216532047, 0.04370988852630098, 0.7601289887874767, -0.671336004067987, 0.6780738146428772, 1.3819086981689768, -1.091508166838004, -1.2590544670865378, -0.9794614381222638, -0.14063553253623873, -0.8919095165937962, -1.450121691352366, -1.330618614224448, -0.7308988354117965, -1.9903017185937912, -1.6321626455997782, -0.7227086091898609, 0.8643020019853158, 0.817933997160316, 0.11894906368816674, -0.12266320502592308, -2.871925666542466, -0.5289006856140713, -0.7591840176983706, -0.05466566918771019, 0.2688525334584792, -0.8573928890647754, -2.618128661696131, -1.0961714881712095, 1.6286298346828818, -1.2202517621871771, 0.9888348645812948, -0.10082912837389363, 1.8963719830474517, -0.4580775628953423, -0.7810049350423797, -0.907918543178946, 1.5624966357495822, -0.7136035629772908, 0.6391835660905908, 0.426260257094823, 0.1785181048123247, -1.085086348027589, 2.2420358015179724, -0.36544852461429195, -0.769463748379429, 0.7949933611972533, 0.8054032556309735, -1.0647856337656616, -1.4032206818681976, -0.8753301636006965, -1.8031135078366765, -0.6659001724888498, 1.8059138276190272, -2.401107248412621, 0.8183210306392205, -0.37150968204751955, -1.3123346683707076, 0.4421633559265312, -1.787660321852837, 0.5157987109612, -0.10626435674841699, 1.3043866721950108, 0.9725097078196822, -1.1040667008785923, -1.00759114719181, 0.10599489928144, -0.9712089703404819, -0.5716776215530521, -1.4573397229454523, -0.2156930636164408, -0.8647546988295919, -0.8462978920555143, -2.571063926030387, 0.12352207299103739, 0.18845476299136918, -0.9233837749116476, -0.5165296988763773, 1.3681585073518674, -0.5483498377393092, -0.4840491437610657, 0.030556039096927244, -0.4416345640848908, -0.8443019075541319, -0.8148188195217254, 0.27920442240531884, -0.2616171641724405, -2.519230203851997, 1.6212639382301317, 0.6224435310809731, 0.35756162482767284, 0.9308499652977354, -1.0401992773689828, -0.2778234062460145, 1.439204692249377, -1.0848131240048386, -0.7783170487188633, 0.18157803265994016, -1.6542777693210966, -2.5889270549854193, 2.164306272299988, -0.36018198686179576, -1.6383291637683224, 0.9559672966644038, -0.3695361936248399, 0.7268938492058007, -0.5878134025396221, -0.4796363354789087, -1.8660015722680003, 0.3725896737449472, -0.08054111486415289, -0.01589884278577868, -1.351400792233416, -0.3589640348589844, -0.05047484007591854, -0.7923709211553251, 0.21819290727220483, 0.5101913079070546, 0.3622694225919078, 0.5792655032685531, -0.5356842690045209, -1.3133802210006407, -0.07107263895008287, 0.8950961025744063, -0.47657630217112396, -1.1342535975723216, 0.9659739591935843, 0.0034584549318094878, 0.5066741262439948, -1.3060371200852203, 2.373408476051156, 0.826775092320283, 0.4409444367349165, 0.47908621640580146, -0.4349696869046518, -0.7397696184304702, 0.012966106714009397, -1.1119706190648815, -0.8656810422071043, -0.39374450251766874, -0.4955407102103655, -0.5444575089239482, -0.5529792888003303, -2.130838138752238, -1.7969798075563086, -0.9201845523639213, -1.3582039610564642, -0.37536670118870585, 0.6666287708047118, -0.16809517198336027, -0.22920889804524344, -0.9117475619146459, 0.34368338063565496, -1.4005639286147697, 2.4171212737087266, 0.5677590533098754, -0.3685210440985468, -0.030948448368795674, 0.8511254163754545, -1.3591795178330497, 0.6119006276694623, -0.0975445697506647, 0.1054657857604988, 2.281471489837162, 0.22381747191898269, 0.2932466624562501, -0.5390578762806848, 1.0272838228847372, -0.8186000159639849, 1.6367513833503526, -0.49033599839264597, -0.9686546314268086, 0.7046906348019282, 0.29699630153612316, 0.5350430953015448, 0.570871050765749, 0.5630553574308903, 0.906904578314604, -0.5944187079115022, 0.5568649588157494, -1.3595872720923605, -0.6176442968280086, -1.0997825076308894, 0.9902131902208089, -2.6641115468497665, 1.9820349068972871, -0.5581704701893445, -0.8989162536176709, 0.2730134326455157, -0.8246497539554307, -0.047826604837029565, -0.17015220562550226, -1.3789043527097833, -1.2665748191655977, 0.3185376612926145, 0.12789466848003692, 0.10821788581230765, -1.129145042202254, 0.8982597720553808, -1.458086147512671, -0.7878388494222589, -0.6136537342244703, 0.293452790434, 0.9244187445224052, 0.8717210779209095, 0.10238916840842141, -0.17875133364430962, -2.115681489968644, -0.24367574235875275, 0.2397971524546029, 0.46812746723811466, -0.38979265020369175, -1.1307088127363056, -0.4177498153361695, -0.599876241104119, -0.37181603210861647, -0.8795249361412699, 1.272641982819962, -0.6824724845525243, 0.2868215445119078, -0.7766549729571862, 0.6640411278154407, 0.3135804377777337, 0.33338158104817434, -0.6212686979490781, -0.4491223401961355, 0.4866080211462478, -0.290886534532284, 1.0738519365158372, 0.6740806972973366, 0.2076641416893831, 0.20318382875856683, 0.5156420811596136, 0.9866421178299322, -0.5654942232825423, -0.787833710552923, -0.8239179072186259, 0.6269841734641359, -1.5448905178335328, 0.050747299542623865, -0.9858978552515395, 0.5237679219218251, -0.03684852920056094, 0.8268189280423963, -1.9960980596151194, 0.6483925787420372, 0.010339560947461525, -0.7818584351437043, -0.024724727546171457, -2.0680257588904585, 1.5733864171112215, 0.231347874103275, -1.535125053516016, -0.9427918260171854, 0.42255027332299816, -0.4626227824890974, 0.18700326684942886, 0.07032223412260788, 0.016984395207755996, 0.5895050457029188, -0.08420404328653049, 0.2603009714275563, 0.3854375415285907, -1.2081576920981636, -0.4406507242932398, 0.11220469108145666, 0.7232320749792173, 0.8621502508522224, 1.2774684944042252, -0.1486161598049157, 0.32120467769921174, -1.9751628934181396, 0.5369979221198996, 0.9129653176376843, 0.45830604529963503, 0.6366034922148933, 0.9137570923077959, 0.4600639337724098, -1.1700258252609528, 0.637618701381326, -0.6243749698798654, 0.3933233502118804, -0.3727503028204906, -0.05476086797753582, -0.26805737181800576, 0.6186237871868914, -0.5595401692829162, 0.16099830619323527, -0.9468321813340814, 0.13216694305511953, 0.42409900195567235, -0.4393618901833027, -0.3559180908595425, -0.8010352217900792, 0.05570851724137045, 1.6658903394787148, 1.8027829894022676, -1.4552868222525013, 0.15697426903478232, 0.13278831336166902, -1.3049853496765091, -2.234548096245371, -0.7931304602422846, 1.2887224587667532, 0.9310369795107882, -1.1824189654156072, -0.08254741597189749, 0.07911523589230293, 0.2995453908364365, 1.225524209234247, -1.434930727638926, 0.10559941168416559, 1.6537945548714152, -0.8055679507806911, 0.6152723361013782, -1.4699986047934304, -1.8332648166368142, 0.782420980161391, -0.9458578346559465, -0.6761912786413844, 1.7857423847231182, 1.3361152940436454, -0.5030389841892209, -1.8474809759003907, 0.25930235209229974, 0.7575002949202827, -1.845909067301595, -0.8442589722959357, 1.2033598150827298, -0.680433070956198, 2.4864848412742426, 0.8994481750612026, 0.3561527520974074, -0.5898644274574729, 1.3349006109059967, 1.1033692503002774, -0.6987641474652239, -0.9719298797221173, 0.21982570660850692, 0.4736833028834094, -0.8418878431374899, 0.8484229135389556, 0.19735070401335864, -2.5224344307738606, 0.19159205809202617, 1.055300057555737, 0.9982998005780322, -0.6132950452722936, -1.141867099291168, -0.8530541959538693, 0.3895966133751735, -0.12811094281632196, 2.9016737587016443, 0.3292504748207468, -0.884659788629983, 0.1811865812934212, 1.0970878738750933, -1.6342317212885147, 1.2235631512584972, 0.07830430007197775, 0.29502808306131006, -0.5269290935040863, -0.6037081700160729, 0.31352849451138354, 0.10337340864587283, 0.21692512415672113, -0.44110891829341004, 0.32008332510760584, 1.8588876039197637, -0.9118937855854347, 2.8212058868303873, -0.3780078478078526, 0.15389175152993653, -1.177305915552494, -1.253470113730302, 0.9624320953171139, -1.717967262737452, 0.4005054164122213, -0.47026562872359956, 0.8376828511946021, -0.824636979027151, 0.057104980057835236, 0.6392873880552912, -0.6531066580841386, -2.0507474993077173, 1.3312778825422316, -0.8925077980063725, 0.5939514626448726, 1.8130709875555346, 0.8614401379257266, -0.5668918202877464, -0.6896805766316114, 0.3138891400485744, -0.47874293407730767, -0.9669785304900392, -0.2423259241599647, 0.49190237791054986, 0.739021189387235, -1.2633412575760405, 1.0638173250434009, -0.34446369681847716, -1.660874574650242, -0.42753569468274405, -0.1418258447285958, -1.2622337915752417, 1.0465901569923064, -0.776139911941265, -1.4042153608342116, -0.9217574153387986, -0.20439638626155973, -1.3862205019191831, -1.5337543630379242, 1.26067012306311, 0.4670973909755117, -1.1421724538883162, 1.5195414222965842, 1.4043585200783646, 0.12825040014821237, -1.1103254392860733, -2.218503868935582, -0.018619827018197598, 0.28956887851190033, -1.6755375582343441, -0.763684577185747, -0.2188568644114772, -1.3161218298915909, -0.9214377044967513, -1.0212681565859885, -0.6731518688995404, -0.3830699323780989, -0.12750550655189857, -0.7446126046691385, -0.958702227281317, 0.928781085301898, 2.7077663406578774, -0.9449303293582973, -0.8002347457604038, -0.002593990005643892, 0.5340832052965458, 1.5804278263719953, 1.4144708385678484, 0.6154262471188188, -0.22159340262848418, 0.47604824376001287, 0.28229185681281005, 0.01836345372755416, -0.6749963988254202, -0.5012101646214742, -0.009762372867744562, -0.08992347012974142, -1.104226611333912, 1.2412567996144155, 0.4919566247087384, -0.07644454612842737, -0.8211787991774865, 1.289055580558986, 0.94238182215756, -1.3556815832164146, 0.2174606211729936, -0.33150678557580077, 0.04830493031253746, 0.7175654808123275, -0.36075451133383535, 0.21217993183474687, 0.23980035598115956, -1.5582698665239292, -1.179992539218215, -0.5986145221863274, 0.27698769299158366, 1.9716133581576143, 0.3491290553468484, 1.55980361135701, 1.5787720864021555, 1.0297274531895189, -0.2141122282433358, -0.0671264524500491, -0.484310850035965, -1.4056550155749206, -0.12588301793931053, -0.6931798312271699, -0.6004987036889348, 0.7490959437778947, -1.3301618869780354, 0.9299676303133898, 1.2209360770546571, -0.1473778298639845, 0.06654609477551438, -0.7753750632827017, -1.0315176938390966, -0.2918983760605798, 0.3341855829079216, 1.1844381111897369, 0.5204660075257583, 0.5696154993465219, -0.09262450735799302, 0.04436489608020981, 1.0784828340805697, 1.2343918740508992, -1.2851003463544173, 1.1468453030759214, -0.7707443520554066, 1.0247942089871411, -1.445346851773233, 0.8286609988993187, 0.6266719528872737, 0.4553125638315139, -0.9056754650406604, -1.47052816565459, 2.8132315504541543, 0.13395993108331997, 0.725925406066009, -0.20972225982000114, 0.9519461225190015, -0.23035756404035895, -0.4239901324495967, 0.850016462684692, -1.0089150924963166, 0.29727173957998965, 1.5848428526032088, -0.37030832072530423, 0.3590872926715268, -0.3471307763194244, -0.573726681951528, 1.0350368582018203, 1.3522547730678396, -0.11867417106047172, -0.8161550390473695, 0.9874062676139688, -1.1110632878494728, -1.451260726245181, -0.6711796112562387, 1.701706669198543, -0.07660191484932494, -0.04755321057200525, 0.37497360486496606, -1.2339266746774409, -1.1447253184297577, -1.0375412347142168, -0.6947295787577596, -0.03551468318771951, 0.3618373717172258, 1.2627125078013135, -1.1135801161484091, 0.9116482064250484, 1.1906896141436507, -0.6291378102192763, 0.7898397378787754, -0.7648621186056704, -1.1848864931080678, -0.10547667618615514, -0.19433214646058725, 0.49993337768599694, -0.660801167088968, 1.265356284185987, 0.8967368217733338, -0.6900307539934035, 0.9651994043025854, -1.5251416025626876, 1.721827796599288, -0.060742765204143144, -0.14858290094767865, -0.33003355023269954, 0.31156512879365666, -0.6351761934643144, -0.5388061170972834, 0.5465918909090843, 0.29223305570402863, 1.0652237971716272, 1.8301835671383428, -1.0408451937097412, -0.7399210665741691, -0.46305030780042916, -2.1456747452537486, -1.4274441682710532, -0.7058445717008921, 0.7852234538446173, 0.9948519354452524, -2.3186322178513423, 0.7877341533970211, 0.11599200971775309, 0.4038646892612136, 0.4948677778643518, -0.8568637093949486, 1.3022266691023618, -0.8660734605252572, -0.01884262127297565, -0.36125730299352243, -1.6611391557581525, 0.9214916555440248, 1.4634758504829806, -0.3138806685078501, 0.6205645193778786, 0.43781372260632795, 0.31577803162696794, 0.6974478105887534, -0.5665351789408738, -0.5270047659997561, -1.9652892510091193, -0.44769096085207905, 2.261835316131083, 0.21249458391521572, 1.1225702714944328, 1.0114954512293546, -0.02127049250934347, -1.8058934094619246, -0.10873740940041245, -1.2957914410112927, 0.7005611575189936, -1.3644279813268663, -1.482182722421253, 1.0890839303333548, -0.28065959156616344, -0.37417730810913724, -0.08913903295724308, -0.11227824205370082, -0.5370071879147168, 0.45512204575698256, 2.284763979152871, -0.9754570473249458, 1.7454253599330496, -1.8840832489384427, -0.018612914873213593, 0.6171793816989372, 0.22063113305573293, -0.16231956864400682, 0.8759066435059888, -1.3537866052469527, -1.462467913937197, 0.32103572553918297, 1.4681778970472683, -1.8815648862441627, 0.17780110885402287, 0.5386932853054512, -0.018320185705059954, 0.11463910669655998, 1.1718284768656348, -1.071275927655188, -0.43622047156182625, 0.14591570174658186, -2.2918815624075464, 0.8475343028280032, 0.5119820867954656, -0.03258750320348049, 0.19934940388045252, -0.6445593167745591, 0.1485880595642067, 0.38631987756489555, 1.7796021113818314, 1.5519394954965289, -1.7292348717030996, -1.7849432423587206, 1.0508467656308786, -0.21726012956271398, 0.45776619645137884, -1.5707397293275682, 0.7763937123111974, -1.414404975819217, 0.8412744008758989, 1.0943989007309762, 1.2237679460191113, -0.24801850463923536, 1.295276673499414, -1.9691399936502783, 0.35466997041816345, -1.5034826979760945, -0.41687585908875735, 0.08884231847694173, -1.6083722969627725, -0.8485835708287811, 0.2243254127502505, -0.6219098492929317, -1.11854990377565, 0.11344787197368966, 1.449577073581982, -0.7839395722957286, 0.2686143971637759, -1.575004150979293, 0.18966454041261577, -0.2961156315624318, 0.9409301545755544, 0.41526592403348533, -0.6823598341058787, -0.15552926231396075, 0.03999773844856344, 0.49546747012755277, 0.3419342004836089, -0.438699373107004, 0.17884708481302855, 0.16654395897467583, 0.6273749268039833, -1.9999158569025437, -0.19746179124089555, 0.6911608592925017, -0.07992474896814275, -0.05533836318348746, 0.3308009857944606, -0.717634909165917, -0.3358429206127961, -0.479406985165133, 2.001668797692963, 0.5949982569226993, -0.5845867554669836, 0.8712154682024242, 0.38394080415246207, 0.2343265702253116, 0.3775593866698252, 0.4603416047859616, -0.2858793775067683, 0.2979949659535837, -0.7223973304238728, -1.4673470040225403, -0.2601736410392173, 0.9944840513286394, -0.6345646738426359, 0.6569305307711694, 0.9109388775923261, 0.7920303428056217, 0.7447668348493031, -0.0815498639159027, 2.272046591198804, 0.17549409078872832, 0.6465034911858769, -0.4264858264968385, 1.0291263114392313, -0.6003946553115307, 0.47455461300747914, -0.534833141108641, -0.3961664272378607, -1.3595259525282888, -0.8978095701248868, 0.4093690295777602, -0.5908369251843463, -0.5408921925631456, -0.8489921754064118, 0.5228773105441974, 0.9594575697226667, -1.585747288137006, -0.2283816174119921, -0.6607486166221318, 1.1448960065847726, -1.0773190899060359, -1.0679836480728473, -0.26136704359506413, 0.8746805801728343, -1.1049140013033731, -0.7986410176708116, 1.1950263655692412, 0.7204460378972988, 0.4322157121740001, 2.9186966487633192, -1.3927928202962512, -1.0434993904589493, -1.5199442392596678, 0.6209645573865544, 1.6554450612114586, -1.1061881126792028, -0.9526663885472823, 0.02714984840225597, 0.5798072477000831, 0.07445646904973639, -1.8238336777691184, 0.3584479716598749, 0.573071248022274, 0.3236203347288577, -0.40168218762135977, -0.8570506193492188, -1.295458717257346, -1.6735242309025697, 0.3354976915127518, 1.7766826131072284, 1.4322793965774625, -2.2757971014814364, 0.6822535329153103, -0.7486599655502693, 0.786581962789677, 0.22564305223364287, 0.6582847250236774, -1.2362785446387416, 0.36388118273941805, 1.4848537211729391, 2.1808670358574265, -1.1733040715018912, -1.1676040131649372, -1.320520855039632, -0.632524673306084, -0.7896039093428813, -0.5852672610727525, 0.42769947075362974, -0.5833576669259333, 0.49346774280815087, -1.3077805002200196, 0.8337921914525342, -0.08703993490322846, -0.24460749647890626, 0.2598214782200908, -0.7638223190788759, -0.6965658453520219, -0.306976859689565, 0.8168221630448425, 1.3904213242743237, 0.873452636226362, -0.6529798168199107, 0.6653492702165187, -1.1861173290191425, -1.3033315267957992, 1.391174834018286, -0.8071173123012959, 0.3739839495606726, -1.8703437822601365, 0.47301093428321744, -0.42652130037443015, 1.9976737467352854, 0.7613696639568598, -0.8909488053219078, -0.13618642939968129, 0.796643617207206, 0.777575838338188, -0.9370123725374566, 0.5107983995781175, 1.2566000252122305, -0.41761516856782943, -1.4982795408503953, 0.3419222216230828, -0.1804444309889985, 1.216561321894663, 1.3110248492494967, 0.7997984680622474, 0.08620916503131594, -0.4017484058803415, -3.351509847782022, -2.239293430076267, -0.9170315016005571, -1.2340618992821715, -1.2030630568015905, 1.066190969949546, 2.1009909797447466, -0.4596015848140918, -0.3197549125882123, 0.19197502276482883, -0.3344048359008918, -0.23868480634521633, -0.8621113533693984, -0.7515163948311022, 0.7691493391680414, 0.5733384265779169, 0.312315536582846, 0.7741134671470625, -1.903351691028963, 0.5222125975655378, 1.246225868593425, 0.9305208344775209, -0.34871471919332453, 0.3060284827835252, 0.8169481292398645, 0.4717995334140622, 0.23718695249213217, -1.8107346209486501, 0.09584054820789244, -1.2385791837647677, 0.12706100655176808, 0.7269617560358203, 0.015785881907040215, 0.16990030400288486, 0.7745076010618372, -0.29773333263295415, 2.262737519422062, -0.7108914673948613, -2.060516655132675, -1.4372028606491818, -1.4502702455682432, 0.18921795184910034, -1.1897256402079068, -0.6955257434262516, 0.06668985847329381, -0.2017143419606698, -0.3363320059197786, 2.444198394086213, 1.6376099082736806, -1.034089891644495, 0.09971541872454855, 0.7773067600602632, -2.115966286517585, -0.452522506345382, 0.5206586551920441, -1.9609500178695916, -1.650327119249658, 0.1771143819800945, 0.8209477253121976, 0.10629855641702222, 0.7950764313274599, -0.008797133815945131, -0.3288901968497107, -0.7804258049155713, 0.468239785858999, 2.024606167866405, 0.10293987886454306, 0.20441685581064056, 0.8306164748276144, -0.14163182875312805, -0.47958190103919973, -1.2130511603716256, -0.934257813214831, 1.1813183555015356, -0.9765259203486646, 0.6019187337970093, 1.8153125561195944, 0.7600540204800961, -1.4681755124700253, 0.33256157440608874, 1.7508468792390381, -0.011542946429345825, 0.028755227483662774, -1.1446625426462946, 0.4975386391824024, 1.8740316095293423, -0.5195024254934922, 0.7515637738686743, 0.44844945034764283, 0.07315460041505721, -0.8923609603942875, -0.49383962818709454, 0.6385314847099844, 0.5214003344414561, -1.1625095522777231, 2.1823196485591883, 1.0810018167128983, -1.1471950754607165, 1.2452003119584947, -1.0879390965612794, -1.0791811083398115, -1.0770851607321625, -0.3578496081543502, -0.8153102455698253, 0.25541288806551654, 0.6967232870593885, 1.166644086754667, -0.5152906900895118, -0.27035718862966107, 1.1420260373261297, 0.45365186772917426, 0.9227016310867637, 1.0617570090225628, 1.4056892462346444, -0.11845264333471664, 2.835333766522132, -0.596998783133567, -1.779513338432531, 2.0972623043279945, -1.6669589927504302, 0.24043348121129404, 0.4851819653748504, 2.82213488924744, 0.45422363048055014, -1.4232783310384218, -0.6692673089457176, 0.5472246168077286, 0.5649216150309716, -0.6241632892244059, 0.4460939089483129, 0.24380882553705935, 0.042462215099425625, 0.7184042183076061, 0.5467031988606673, 0.018492672023647887, -0.67201134377616, -2.1188448562531064, 0.08259381399571435, 1.1303737384871144, -0.8158874445554233, -0.261690546860799, -1.5371664716493234, -0.8033769117993521, -0.8592784540010855, 0.26708386830309105, -0.6395931147341756, -0.06344924913187724, -1.7003561244628949, -1.0878379222585608, -1.9679858913898267, -2.2536779396426168, 1.4665304393041754, -0.09078947784846914, -0.018375263103000226, -0.35722226965803555, 0.7524695973778073, -1.165468446005324, -1.5912985744152353, 1.4864736839480583, -0.24709832488832598, 0.9758822872354246, -0.676439717698543, 0.5100021298397462, 0.010117529579026547, 1.6413239581488885, -0.6931241726313596, 1.0336689762950695, 0.5663183497401333, 0.5500582279412148, 0.6562653808782026, -0.43055105631754914, -2.5627136990921953, 0.21999772358354536, 1.0266654490268003, -1.959801343699533, -0.5159118906520463, 0.48351253446146575, 1.9635051911829582, 0.9491741191221925, 0.4715570587813087, -0.6670789010687834, 0.6788748494584237, 0.12667079918265328, 1.546175606843893, -0.09718419996375184, -0.016764571453237013, -0.23006358043206682, -0.11073713095606631, -0.6337165020428189, 1.4383980757403967, -0.11318096654494032, -0.33173858340407764, 1.443388495252058, -2.933777014947139, -1.8516526999494132, 0.1749821690675601, 0.8981729387260471, 1.181583501054717, -2.00378000994132, 0.2035569877163796, -0.3832103005225006, -1.1333955765589607, 0.7192588230603808, -0.47395338603563086, 0.3052762456552377, 1.1481959008145872, -0.8419288859000618, -1.5194552342275551, -0.4819021281613771, -0.7831418451753153, -1.5286415227806163, 0.1349714109703473, -0.4596468774617385, 0.542879669977323, -0.48024724406692015, 0.834266628790866, 1.9825486558437755, 1.613663593163119, -0.871004592917077, 1.6493744419223209, -1.7248070337491508, -0.9310029644349843, -0.10853176796136159, 1.6103070853407153, -0.42207142330986175, -1.8142786060928011, -0.3062276129338309, 0.5223731291588795, -0.2465536987261863, -0.8547682047295515, -0.7375324794088657, -1.0669212855234478, -0.09896800780711155, 0.6608063663411168, 1.3559832773159797, 0.23445929419042827, -0.7781290205584247, -0.4786182800943221, -0.6534455636247337, 0.4668524057360484, 0.6723860161614972, -0.5113211710240403, -0.08694565385219051, 0.13474641183851435, -0.05417201742769349, -0.8492141887681216, -0.5911382644526686, 0.2518963739888174, -0.10447539468033808, -0.3868934704907449, -0.23012174646062852, 0.356697966286476, 0.008549894950880894, -1.041136926210739, -0.040851850741285285, -0.8226290087817403, 1.0410513184663088, -0.24568382952820877, 0.04858748213571746, -0.9082564075557216, 0.3027835153272699, 0.42307997159795335, 0.3194452425840931, 3.4799422067802337, 0.3051785194132809, -0.6068232620093117, 0.7483343507744092, -0.2156446547994448, -0.8396941721782625, -0.8500435411444146, 0.3213405145939773, 0.7694449781401301, -0.7054910854906024, -1.3847918458480895, -1.0481317643347268, -1.7064414738587999, 1.285481362847813, -1.4551080511666679, -0.03700167744809564, -0.5156228719085159, 0.7168091203483747, 1.4065047649494866, 0.10161703874293279, 0.16930008843457106, 0.12108425761541855, -0.3352045704135147, 0.05805374415648144, 1.044677672059947, 0.8482547849759283, 0.08256861057526302, -0.12899917293532412, 1.2544429207959649, 0.7394766109917553, 0.0666492575145975, -1.0380918843811069, 1.8387551172718237, 0.7462260885202776, 0.5051378743767, 0.30556678533764464, 1.5687664840032216, 1.822784381095367, 0.5173320918508221, -0.5451866591795752, 0.7641804456674587, -1.3188828313286902, -0.32271579290350233, -1.5342569578370813, -0.8785281267325459, 0.9888666571462824, 1.4310015355044432, 0.09589328563075791, 0.35832121929638977, -0.0027825934297777675, -0.7274381609871238, 0.1959412435648591, -0.1358122333600425, -0.3976165552261077, 0.8332449888418614, -0.003961431846513308, -0.22315353553570272, -0.08028942708953407, 0.7555595905854219, 0.2845344772035254, -0.6593232981534245, -1.7368372515705837, -0.2546157147758048, 0.5531570764803772, -0.8932550411884941, 0.45268424263644425, 0.6132027189393837, 0.868800659621791, 0.2433800904414557, -1.1963380104033527, 0.8896567282637602, -0.43577478108859585, -0.5252796320138094, -0.4519176815643699, 1.173641926208408, 0.720037569340357, 1.2902866126450572, 0.5714157355668642, -0.8320878723500329, 0.16312267361751115, 0.542055478037538, 0.31667614906782904, -0.3104015820358658, 0.3214271869198217, 0.09964581726120639, 1.1842119427430247, 0.6788737296077842, 0.27734706709992585, 1.9095259552616408, -0.49084114770413667, -1.297895548840651, 0.814078786841574, -0.10762610503454517, -0.48930210720516415, 2.0379384045811486, 0.23752455444238613, 0.5887092082575861, -0.848336323454369, -0.7207120177138767, 0.42643690221959984, -0.4321224449449371, -1.105749884358297, -0.3455044576497279, -2.3999355429452778, -1.9103684430705574, 1.335047196014262, 0.9065310507132212, 0.20234590928380017, -1.4105517736219546, -0.7581598082602756, -0.09478816798175438, -0.9168145757943221, 0.15644304417513288, 0.833189636154554, 1.4771235505027147, 1.1906281196520168, 0.8214150168805523, -0.9760932902239832, 0.8772637587910697, -0.7141890574526687, -0.620682586251838, 0.11475833608472057, -0.13600245725494886, -0.46253721112537616, -1.1106948815348485, -0.28395852478934497, -0.282280074906779, -0.6600866522864998, -0.2175084401897389, 0.885578263587704, -1.002742509897788, 1.492725793667326, 0.09691106362016091, -1.0440084518482071, -0.03518213428979928, 1.7615456271523344, 0.12232169606428511, 2.3805036497852834, -0.49916391545205546, 2.0923032945886098, -0.4369788722981227, 1.80929184742604, -0.13969325783890688, -1.189413747602231, -1.3701688120290365, 1.9475632627921122, -1.1461156699101074, 1.6756684751391837, 0.8423902903540412, 1.3062059312062873, 1.2190523769757522, 0.23062315239839343, -0.8229102470703091, -0.8252045353333434, -0.3512205830917699, 0.7487905207431407, -0.7940186474598153, -0.5899596205580871, -1.0450567783447013, -0.9247150088898103, -0.3248224564653272, -0.7725999875142767, -0.3373371066817474, -1.933958154726039, -0.37264102875155564, 0.002125480826732195, -2.017394731820254, -1.3678305196691514, -0.2692114879870076, 1.1901052740413463, -1.043792444084029, -0.3532356082877711, 0.796701738586294, 0.8030131246938476, 0.49538562154691623, 0.21113382130443648, -0.22704183162726735, 1.4207587148682617, 1.0161984964083512, 1.760578717046104, 0.4188973700962528, 0.9026045944261777, 0.14540452107195348, -0.46021605849745656, 0.1295249107231785, 0.9950506183264738, 0.5430863701625781, -0.22715416555690537, -0.4363229065960705, 0.047128467256308, 0.2429057479775621, 0.2355998098291975, -0.8960521402868976, -2.251204783887475, -0.39763993425826605, -0.32724179774837603, -0.7624913304112221, -1.4124159577637796, 0.1184706794217374, 0.6105024414984004, 0.5079529607688407, -0.2522349944354864, -0.12784713268345857, 0.49246349246159477, -1.4524303879206264, 0.8859591173248299, -1.040870384633933, -0.19987616716166703, 0.39611243323615697, 0.6043367113934195, -1.2597521975986574, -1.7965758735115422, -1.141345466174436, -0.48737165476281685, 0.5266695273395542, -0.06627270532537748, -0.827440113278476, -1.974753904160636, -1.1958890985481432, 1.4547511907985147, 0.07864294152628618, -0.18866590062129782, 0.5688914471811574, 2.0161143498850698, 0.24831266199244023, 0.9494517164892335, 0.5731039510468896, -0.8450688758582728, -0.7952946506551409, 0.40391177433474723, -0.5163750509803062, 0.9051532746710295, -0.8369482679188825, 0.1295314620790106, -1.2252922160711566, 1.0073255510712213, -1.5595828590564365, -0.694776430908882, 1.3469298289363945, 0.4400872679826916, 0.9031106194243352, 0.5454910655668002, -0.5246649639021876, 0.6936031440105616, -0.15040592803751707, -1.1134308624968854, 1.292074485084396, -2.410395390704154, -1.3148172537354934, 0.6946753109607476, -0.12257216795559352, -2.0768132881013726, -0.4958024247242825, 0.8017115969816209, 0.4741566224807022, 0.9396343712133883, 0.9991166215808632, 1.9756101705505456, 0.3857346109308807, -0.6835036957135088, -0.055017886032873956, -0.40693025564786045, 2.263146096929997, -2.402144643827975, -0.5879499859375422, -1.1147168967116858, -1.2916041513580727, -1.352385674709324, 0.8274901105188942, -0.7157393858744306, 0.9781287880159062, 0.104931899926825, -1.0340854069068657, -0.19795941387895197, 0.6008152453797796, 0.35880308620336343, -0.5298539261927521, -1.8706389515065418, 2.601313458596461, -0.8345252197078503, -1.1789126226879978, -0.03934909957061438, -0.8793647354041438, 1.1206444063439622, -1.295939447481271, -1.086013544415413, 1.3547720676446955, 0.34447310679315934, -0.07979079038618377, 0.36174036705390433, -0.460199626171175, -1.4237752286814442, -1.1021260696810349, -0.33676343970885997, -0.3861974809880583, 0.8189743963304901, -0.7696201991370917, 0.942009601134051, 0.9125620970314189, -1.2441690879965037, 1.3547080784508951, -0.7871766768209418, 0.6538429190906335, -0.8472927604869785, 1.1674972139547195, 1.6560877161092842, 0.3705621052182845, 0.1487753393331928, 1.233532092472248, -0.3516734927756613, 1.6218208960444096, -0.33478832090223326, -0.39493710492909545, -1.3877773674598397, 1.3677557117595185, -0.8045845415095063, -0.11009676643315307, 1.2569661185830847, 0.9291917320206438, -0.2312049709948853, -0.8628372569980012, -0.6718745324168357, -2.8587882456791287, 0.764098366140482, 0.4659844025086793, -0.4205673363168716, -0.17732214680969124, -3.5074104490565206, -0.8301161801836754, -0.5729330246011166, -0.31500382632705454, 1.4430460687122033, -1.1474163308077752, 0.5525266717429635, 0.7122588855513645, -0.6793197661303743, 1.3343863496511097, 2.551783772070213, 0.025567811539236002, 1.4168785838528464, -0.09815395682436451, -0.31541390913263234, -1.3449729191215736, -0.5577586323439726, 0.05237431131820803, 0.45666082577468975, 0.1134090526155886, 1.197285583197028, -0.43050465496122614, -0.09286402346979912, 0.6508129325109201, 0.09300615775311194, 1.2298598846129927, 0.8198020212635844, 2.554623024229236, 0.018840029346023253, 1.8099529185510277, 0.16424420798077569, 0.05164588142644524, -0.5439337465379408, -0.902661243667329, -1.679340280676518, -0.19953556240027448, -0.7836242101684394, 1.283029077275003, -0.6828304161849041, 0.6287024707917069, -0.02743873367677797, -1.4766928498215133, 0.4955632672759949, 0.9593046018248568, -1.1264007329421721, 0.0634340227475881, -1.165911661424364, 0.8999705193875759, 0.055548011746931705, -0.7324456065933548, 1.616121391182286, -0.4383879397885922, -1.3265131970724202, 0.11937777956023873, 0.654232480758966, 0.25260242943449446, -2.4830642333035415, 0.3665764225784125, 0.5648088338947344, -0.7099678201187841, 0.7908096989488259, 1.7721204850624876, -0.4075418255451866, 1.2614431868251084, -0.412158258117076, -1.189070777441993, 1.6274324632765513, -0.10359199673352552, 0.47372980623976574, 0.8156725581212282, 0.7808259728033167, 0.23570057776476994, -1.4091551542355176, 0.37036137598444147, 0.39878581875187274, 0.4608034791580884, 0.42389737144026646, -1.5833071406705992, 0.3193111489479239, 0.7083454903779398, 0.39498280940859304, 0.1631154444291681, -0.26236380025819495, -0.08469623686293254, -0.7592100382016914, -0.35914317891716546, 0.9060299013930143, 0.4966709705889792, 0.8938172260567487, 2.9056615734178424, 0.726362203112491, -0.19384515966614174, -1.793972090415039, 1.5422503918567387, -0.9716445218905088, 0.4203721249396758, -0.02235630300319763, 0.9606679870898334, -1.1980695749842436, 0.7853631476968561, -0.9268445389050833, -1.4108848329964583, 0.834840725124635, -0.6732074473306362, 0.909818113681445, 1.3343197858650298, -0.30257968413840014, 0.27334576916814846, -1.3968243956247701, 1.2412334491644745, 1.2758577911118107, 1.4436249457198984, 2.576060525867317, -0.5720414100757534, 0.5692216125466641, -0.3778742073883209, 0.5937223667584567, 1.8618609463446107, 0.0805435466227549, -0.5854818396633212, -0.8765133477935882, -0.24877538317282322, -0.5170051662214791, -1.10963616046374, 0.9213016105301025, 1.6611315884084599, -3.050983361998515, -0.38262750008161645, 2.188687328681889, 1.5199271408998623, -0.19517665269243623, 0.5558610447938009, -0.39412969965998995, 0.6811244903455939, -0.3419483821611325, 0.4144537101146318, 0.05749257714026122, 0.8052062008068078, -0.5476910659698903, -0.42720232394016017, 1.892374799317906, -1.487820351133683, -0.9357589193866618, 0.3665843103129823, -0.01601255090635775, 0.36987938681697935, -0.4143078600071769, -0.6160413611753784, -0.8613780022055991, -0.1637259291708115, -0.41665146587104446, 2.789090517852396, -0.45471992468843214, -0.8128435199878836, -2.287973357561631, 0.3436318228659151, -1.5088143188608485, 0.21145822130595002, -0.3401859277172338, -0.2888579317781714, 0.9604796362856256, -0.3467566893916918, 1.7729827332063324, 0.6158410204330039, 1.8928844900472293, 0.3584372662748985, 1.1828951426052323, 0.19538375754314458, -0.1328327933647178, 0.27126680451062735, 1.1702286895174563, -1.6814933899071807, 0.26188957886409464, -1.209733725944778, -2.5432024321142928, 0.7332642510672055, -0.29358225312043945, 0.16794704571407645, 0.3830271412917893, -0.02893115476196577, 1.3627116084247548, -1.100643869111936, 0.7987987480119761, 0.688561694898023, -0.5502063784379746, -0.3221333451057435, 0.1877416046030256, 1.0011354985189698, -1.278751146240244, 1.8451890893331526, 0.03068541367801561, 0.29429041343413137, -0.5485918956159348, -0.6883262728603236, -2.3362036693418555, -1.6210533186082543, -0.40436322828385457, -0.31227906480639267, 1.688974061740785, -1.6875531449142396, 0.053120143712391155, -1.0922440244631635, -0.2031386452028875, -0.6510213110640986, -1.6394095389730687, -1.5069509966559076, -0.14427172603065047, 2.2455820100344805, -0.043445032919645424, -0.6344654911870159, -0.8421135513556719, -1.0779268672942783, -0.1412982995202091, 0.04949831965833467, -0.2997511693197542, 0.6585802029695144, 0.20657470974337058, -0.4107520565540538, 0.8488369237434067, 0.8864688000163191, -0.8047906014147265, -0.23023122848778282, -1.2033727569231594, 0.22481954638192045, -0.9169244412049466, 0.8834273568668076, 1.036116039327955, -0.27447378252706006, 0.894023538196825, -0.8297352000414914, 0.5526911165351743, 0.22666140678044674, -0.45963575153062963, 0.11812423340177211, -1.4890845197370886, -1.4986197412354672, -0.8110515023482869, -0.8192740594862283, 2.0470528906790153, -0.23227783636622643, 0.31628490887217336, 0.699286813354282, 0.03723004477460812, 0.7427781775639335, -0.2577811530162353, -0.8504896513205971, -0.11211767538514068, 1.0352616389142832, 0.32704539764114143, 0.6746985791446726, -0.09154284141783893, -1.264833050084346, 0.5387564907477682, -1.1683691070968654, -0.8684596442339616, -0.5537345303940385, -0.835300525378937, 0.2096247584002943, 0.0693106718659883, 1.1098367517683396, -0.10466555096153139, 0.21226176952971718, 0.3335679932568716, -2.872936413148563, 0.28831501740522675, 0.023323409770148486, -0.21737886997070477, 0.12028283672854123, 0.28474849083952836, -1.1536042614569788, -1.2682728054802688, 0.7187865330088454, 0.06992833779572315, 0.1526882433699327, -1.3345485817916358, -0.784439426926123, -1.3106969837640314, -0.6517815428230023, -1.5174527822002681, -0.15525935118042078, -0.18454804715597928, -1.0339373415967348, 1.1296748190479844, 0.9109511629134504, -0.6026668923596781, -0.9456050433499879, -1.848542966664238, 0.6527870540700548, -0.6164921116617252, -0.9391174347023205, 0.38574081260010007, -1.2309024470911243, 0.14825574538748595, -0.2332960331970209, 1.2934126383873932, 0.8828461428911385, 0.7678801280576466, -0.684659133891983, 0.5441393934812055, 0.8856776066518874, -0.187158610120637, -1.3422069698388297, 1.0776268714736363, 1.2422297335216244, -0.012019565439861239, -0.02967229504885889, -1.595997461789897, 0.3251821179201468, -1.5482172945352595, -0.9302591386717329, 0.14276120183640822, 0.7405649477861792, 0.8427738266363294, -0.24464525340257476, 0.8363433957854722, -0.9795377862892857, -0.5698631180579965, 0.08658067206488362, -0.370161309682046, -0.3354268842190346, -0.9703178735877752, 0.026017273775023244, 0.5231747011652371, 0.46533637940733286, 0.011070438841185061, -0.1742650033170912, 0.2973770979399153, 1.5331374709482573, 0.14996232747819233, 0.770517996541298, 0.45421094938233814, 0.6742919155459542, -0.7459942914394718, 0.08162095652478668, 0.8624762595876849, 1.8315139842068515, -0.4779866021637331, -0.3071180868937307, 0.8242277416874793, 0.8127483241796812, 0.9410129543103838, 0.8812439939657274, -0.4389705667871812, 1.0688657900370206, 0.6330839329242354, 1.35428529487582, -1.0361198728828518, 1.408022283940493, 0.7600383644898795, 1.8176923173596327, 1.1428782605809957, 0.10196118937485041, -0.8097672025072983, -0.5085585878292826, 0.3252181501220872, 1.1452063093116227, 0.26918161423759784, -0.062066748469878676, 0.9527873717093212, -0.2348162731063037, 0.9178142593490894, 1.4141341412641089, 0.7193650184123248, 0.10351822818580028, 1.1530868985035283, 0.22057973279850335, -0.0812039404986512, 2.351739401963802, 1.5527204589443655, 0.6592140368001823, 0.795783483406085, 0.5614241680516124, 1.6373646915120843, -0.002665806106078903, -0.3445731993188577, -1.4472642997991185, -0.10246622716019431, 1.877986481486932, -0.4618895621024146, 1.3010185299742456, -0.12195191747863955, 0.6538882705664883, -0.4176205904673351, 1.58813855247143, -0.380568972209629, -0.5722110646855871, -0.6272014393179443, 1.294446543878712, 1.225363736020448, 1.1242225711063953, 0.4245044444955725, 0.7909803067911103, -1.2081568771539417, -1.1893916817175048, 1.1723369825028647, 1.1461932819410314, -1.9768313409039677, 0.21735189477089972, 0.6573919946824106, -0.6440504904041162, 0.018247501098815073, -0.4403195731228856, 1.7311299286591886, 1.2171721732578176, -0.7605175195963176, -0.741532751148041, -0.6813106487475676, 1.806585638073474, -0.698836406648531, -0.1847780793545008, -1.640024894619229, 1.494679421967653, -0.1780279369279813, 0.31854892746592695, 0.2094074977236129, -0.2478972963524991, 0.5750015523105666, -0.015114997205439478, 1.6427865467634808, -1.3818100738438284, -0.10462993472505965, 2.09327743621949, 0.39344433675898544, 0.5213103781392022, -0.2804487575808816, -0.8695735083506496, -0.02430577424336601, -0.44887564811441566, 0.2223474503976582, 0.6144165171537781, 0.3929722494888485, -1.0616059762830985, 0.059261693181093665, 1.827988634378322, -0.2647017755964713, 1.938251921736047, -0.9105947074739562, -1.2856220705144359, -1.1028079526367922, -0.31930122281103984, 0.45594010564127874, 0.11071515366355994, -0.6283197560718071, -0.6152493648997494, -0.3174227193538491, 0.33582808863199853, 0.9858188495076662, -0.9186584961288784, -0.09147810050454731, 0.8626343500286484, 0.6442845160892848, 0.7735126984012489, -0.3535892384676529, 0.6879162969783007, -0.7244717896003793, -0.2625806117791723, 1.155574074432076, 0.622039930008896, -0.6465695504547868, -1.0983284613633038, -0.17903024094870124, -0.45405616203280613, -0.6221707863890396, 1.1354760011869796, -0.8980904821083132, -1.1780879610010029, 0.4432658248356476, 1.6115592524692897, 0.506040150214621, 0.3029284166987423, -0.8261907893865065, 1.6592268663873582, -1.2131101839640304, -0.22240904052581195, 0.4620021380631267, -0.3131709042684193, -0.6489905271263756, -0.37217719992194603, 0.10978427441717185, 1.1361963498035452, -2.239702800711801, 0.43831054684845605, -0.5542182524551089, 1.4568252497212488, -0.8217778917969453, 0.523889113109009, 1.0911620630007681, 0.8288444152819554, 2.0088727548175536, -0.17424530225557083, -0.6853311764348946, 0.5953099680881139, 1.7508725291268132, -1.089806448547784, 0.19561939798622932, 0.8794885146396669, -0.19961895790079587, -1.218723707784668, -1.2168702911752933, -1.2766923195802262, -0.5872570416424555, -0.80027278170399, -1.0019801092948744, 1.621790359925099, -2.111234783557977, 1.5362665195384901, 0.4884383438757202, -0.14331012670586157, 0.6292886014322955, 2.0179922270510193, 0.3382979802556972, 0.6053444363699277, -0.26909604114403346, 1.2454492637749415, 0.5599788061977223, -1.0916411025783215, -1.0268706362198095, 1.01118130008099, 0.41488214599917933, 0.9971914156787208, -0.31083702339767527, 1.3293555300927526, 1.7307686812672896, -0.7487733485237016, 1.3674389583325894, 0.10094511682190462, 1.2015616209293003, 1.7899501973565286, -1.320406646999153, -0.40006232785557805, 0.23702497949844112, -1.0637690245334914, 0.17715781653472396, -0.4500860793282635, 0.771537477632033, 0.975267069478045, -0.4722115984240336, -0.038235552031697644, 1.214015077304504, -0.65351632663077, -0.8009497445376608, 0.06516910302765301, -0.2938031124575246, 0.08881372581709333, 0.47054927131191304, -0.6887128951486333, -0.36363170729354155, 1.1404528986549658, 0.9469996327536865, 0.6116630751119789, 0.35074732165678757, -1.1874964251303566, -0.7483799749967152, -0.3312011794859183, -1.6651008639683669, 0.3940210943377829, 0.005940059225242884, -0.060738157679949556, 0.32348960727661924, 1.4626137205868055, -0.30913195419263595, -1.710162304192649, -0.7843352804037625, -0.1983352653633525, 1.8292785883498806, 1.0728268782150339, -0.9749616136278914, -0.5363829034949288, 0.18064901903946587, 2.0559728492409626, -0.6314500758298827, 0.5584042487993864, -0.47094119003170165, -0.14856426127038, -0.3945621899098432, 0.1343191856545351, -1.5404360656295406, -0.8950821141815322, -0.40251926560554185, 0.8174059067075026, -0.13667101849162963, 0.7066541414986243, -0.8373671896926074, -0.12675306625851435, -0.2180614351856477, -0.13117737244629155, 0.4761091074080667, 0.24900238441359315, -1.7859276313969246, 1.027958300354329, -0.6167194974913304, 0.008027217742187285, -0.007572248368020205, 0.5507363673472224, 0.01794482730334538, -1.0571770660467867, 0.21473989677653468, -1.5082899876820712, -0.14206849476494282, -0.7005183519686897, 0.7840154496585308, -0.4035416401384882, 0.1452197154175422, 0.39512140138225293, -0.45159424881602056, 1.6698029661783544, -0.26882429317823403, -1.1170204752935469, 0.08909163004259082, -0.8157102514993769, 0.6982424208611333, 1.5735772477788008, 0.5114098912487657, -1.3672835909898748, -0.029348717649348696, -0.1815857933357974, 0.2720088535251601, -1.6186290356883344, 1.0143254517457023, 0.9196396896158986, 2.8180238989442064, -1.7804922207601555, -0.4827152181874075, -1.0432849815384753, -0.2866829157863214, -1.2890985693619572, -0.9634431860371487, 0.4863821066008496, 1.1479626487762944, 0.8496660857450029, 0.8521314865414964, -0.3752721056535267, -0.20726253283881554, 0.4026839295629042, 0.9151601260293319, 1.0233460903697669, -0.044474772572497205, 0.4615549596910571, 0.23027940390184048, 0.11205902224306602, -0.6596008625091432, 0.651202508358426, 0.6994857026396438, 0.9178351267726182, -2.712163639738108, 1.4446868074514487, -1.1388399470161321, 0.49928726685708424, -0.1447314639849833, -1.1129147081870208, 1.9082650469596416, 0.5376384689986797, 0.12916420161579678, -0.9570989169680252, -0.5015423856463586, 0.5778218403685955, 0.688398200420693, 0.8598270296572448, -0.33101293108333485, -0.9903667103572072, -0.3653384717593986, 0.3971804567747837, -0.2967683847189602, 1.2440253338154905, -0.3389689687116628, 0.4412766809080811, 0.7502551094583325, 0.10127318926779907, 0.8725788839846698, 0.6605747917020796, 0.3057927783062706, 0.6226177346992018, 0.43973713027168254, -0.135430208024138, -1.716411790953458, 1.7458122874076625, -0.9837653755870117, 0.11339372981675098, -0.39271447453644887, -1.131701835833801, -0.57176213673294, 0.3537524983120317, -0.5600853868400237, 0.2940305018785029, 0.321208828847149, -0.6153786902613265, -0.09002457136425418, -0.6235926469796307, -1.1933581487609566, -0.5310961671760396, 0.4979758848269763, -1.7827272324201329, -0.5462216781287152, 1.0392953058998045, 0.37637920447785816, 1.685382067131743, -0.4600554080144929, 0.7995048004967877, -2.1886478882294242, -1.8945977523328388, -1.1834965045789785, -1.1361934652749648, -0.32994198347895604, 0.18139292933940543, 1.0600843863056766, 0.07895739570144591, 0.90717796906786, -2.263371565312691, 0.2553771807138088, 1.5244577718714925, -0.5971392190026723, 0.5610952415510435, -0.6176522731993463, 1.6439754791704577, 0.11498927802301931, -0.32870062059197025, -0.18319014891682067, 0.9020717674848759, 0.4526162612168507, 0.6238285751589772, -2.2545615971590984, 0.3785794889054498, -0.4505625473966728, 0.455461344978297, 1.0456863497677595, -0.7252262332530179, -1.7239306756464075, 0.34249438406153543, -1.3582348351833538, 0.2920112988406262, 1.888048807680127, 1.7140822908133218, -0.5865542878591486, -0.13760601903834568, 0.1614352007013285, 0.4166213564571759, -0.35425539502953585, -1.1905578927041824, 0.23912470601772182, 1.3122415930741127, -0.46215585699283857, 0.19151314269323605, 1.3701151186303, -0.7367505264375253, -0.6861253989829914, -0.06541497740672593, 0.1410421447639683, -0.27504475044472587, -1.4632186511646528, 0.5508924933466083, 0.8036048493813853, 0.9602394125487517, -0.026979525629139137, 0.4649812836682141, -1.4560396387282544, 0.9410204515273597, -1.05397029459352, 1.795220452542978, -0.37935382192824385, -0.8274670149936761, -0.8000737627894756, -1.410120302895029, 0.5302932076912423, 1.2507229908860595, -0.7705260861423869, 1.3520041276794927, -0.8569053015363328, -0.6992672696942855, -0.7467462313776008, 0.040289965222460464, -0.1141010156104357, 0.016833790721607175, 0.7549025596542365, -0.09671641550207866, -0.1487715791148769, -0.4799250384574663, -0.2812565272566664, -0.8104692538210855, -0.3467964342492036, -0.19705898996646673, -1.3303394109154734, 0.21305091329661954, 0.6769811187041596, -1.5426276519359894, -0.36330477095240993, -0.5168798241601021, 0.2543813757603082, 0.762172508164054, -0.23342529422312214, 0.2000788975850426, 0.9239199971947167, -0.7253502218523041, -0.6612781487202687, -0.47979517298790975, 0.41983357461542137, 0.0809583197231891, -0.538317454019647, 0.4880822126077238, 0.27788006020800676, 0.20600427158786114, 0.9394229036192197, -0.4128972006755646, -1.0818361289015859, 1.0850873126384337, -0.8024930046424169, -1.0260197655542282, -1.6190168477359341, -0.6793887171657992, -0.7821426922798284, 0.32623405531448735, -0.1690765499769032, 1.584763623636502, 0.14182293606499155, -0.15832247709308175, 1.0263155706507503, -1.2212677433282377, 0.939271980971174, 0.30030950256286293, -0.5135564724307735, -0.9222503520447602, 0.3482464752189341, -0.9656546194919374, -0.3170777658380151, 1.3270182720684758, -0.7241237311294804, -0.4170051671706273, 0.5165139110080716, -0.025362055775748907, 1.0699072725371033, 2.335932704096393, -0.07996546154076997, -1.0782063954434535, 0.35087320359309954, -0.04819762671952673, -0.760779352661984, -0.7752242051814974, -0.28445274916734975, -0.8675033433671937, 0.781481713079478, 0.5916415928059217, -1.3994050011662194, 1.1794131162051262, 1.8338529088350883, 1.3330372776774988, 2.7086753787537763, -1.443157264408005, -1.2745602661393012, -0.4103499463152799, -0.25758091202131556, -0.37533932658388813, -0.17763069159168182, -0.09303789009026617, -0.518141220754675, -1.2878726723691731, 0.7873489157659217, 1.9678113744262413, -0.05536985014182578, -1.4388318457169793, 1.417250557628411, -0.26552050690285756, -1.4218338625234164, 0.17692518435172902, -0.7630436734924728, 0.917286820194531, 1.6526127687162242, -1.5649374363228747, -0.686595632949914, -1.1495607660985787, -0.5950774978164086, 0.4524347209753186, 0.18687512328468878, 0.6378604982305798, -0.41859275735450235, -0.099776215531889, 0.8370771954543075, -1.1392873799684247, 0.6277741653032356, 0.8121723440701378, 0.24460481027507924, 1.033418775113089, 0.9545879408218783, 1.5956493362568112, -1.2808299487693486, 1.2682854819512435, -0.10764989800182219, 1.2469109295754572, 0.745630983691479, -0.4634200004343811, 0.5618424302268404, -1.470353908246031, 1.7891312902023357, -0.19880115605929194, -0.8101647030572057, 1.7551156746562584, -1.199842959254035, 1.0081571007143957, 0.7459146915647289, 0.1900853460421336, -0.11083017622246318, -1.0879694612179382, -0.23921322605600284, -1.288238985523338, -0.26231244886010224, -0.3357580280785107, -1.5874451422249176, 0.12601790446547828, 0.5144354780791798, 0.5479349273849724, 0.618643742400826, -1.1395316482447713, -0.8043137059471787, 0.46631227611917, -0.35553039581279783, 0.3944246844721104, -0.9885618884385763, -1.6993118131355587, 1.4494218191373158, -1.6378252213725915, -0.49307469052623976, 1.5813918084706189, -0.19580161851597055, 0.8338519330700229, 0.03433612951857667, -0.8803902974710707, 0.7900419980281342, -1.8379699302401704, -0.21572170628816278, 0.6129689604214302, -1.893467616163374, -1.775456386336518, -2.0139084530045226, 0.4685965035799731, 0.3844236664942331, 0.26352440209547295, -0.7364788035065635, 0.1357657377523466, 0.30189031678933964, 0.5948191916313925, -1.369488331232958, -0.8171262320066498, -0.20107958808241422, -0.4983805782031662, 0.35996566461821417, 1.7527117200691416, -1.3607111276746202, 0.5200912172449204, 0.5309904840740609, -0.7630919257280384, 1.2912278731296276, 0.8427822290802403, -0.825950435639513, -1.1849770273991869, -0.6968945429464272, -1.1397924124495957, 0.40001794799071216, 0.609241582390213, -0.19464287432983077, 0.7394572791246066, -0.33600244631688364, -1.0756126739658682, -0.015095084739934726, 0.804841893341825, -2.0392918130211077, 0.39983456207554346, 0.896229358118575, -0.08755821277069821, -0.7627262727283772, 0.43639236347602445, -1.217162326120035, 0.3821885452363066, 1.1638406509049983, 0.05485983507273452, 0.7564434203054557, 0.9760005965133197, 0.9123758442284303, 0.3221896951481612, 1.047763270636172, 1.1832183657051838, 0.8362979869682842, 0.1777288776796283, 1.1454838296284169, 1.7352810616560632, -0.37801564915429214, 0.9267124826423625, 1.2775560311594807, 0.5475186125568187, 3.0924528492476924, -0.34453642246675437, 0.6817944136338917, 1.4698160348490592, -0.17276989661306597, -0.12302014938775262, 0.09664551834862051, 0.04622354471119622, 0.7840300306332052, 0.7819833884866042, 0.5070211067515887, 1.7084601186691097, 1.3090333767589284, -2.477702888279884, 1.8234569104145428, -0.9385888503406044, 2.1729494579755935, 0.4774661298106167, 0.15430253501377056, -0.030820574892722327, -0.5786978635240828, 0.6559704401318842, 0.32056074444260313, -0.6767612588278245, 0.07773512198141093, -0.09265451192803152, 1.115150024441092, 0.666166020819815, -0.3093069235158465, 1.6454334223181173, 0.1666926184001474, 1.5869171517078118, -1.8656389475928652, 0.32475392453266494, -0.41501708356426137, -0.09130923438873689, 0.5598683281135364, -1.2809958412186253, -0.9895711876682397, 1.5164156491225083, -1.0344843274914575, -1.233741597590886, 0.8168381096072374, -0.23828345634631767, 0.2965495673899213, 0.9579550683586341, 0.23840951514383082, 0.23681976808392424, -0.434247661231181, 1.1672108387475197, 0.41087073763876564, -0.5281934105549502, 0.9024850629856204, -0.7801093391729089, -0.39582209126492324, 1.8045941139030073, 0.7421215345637467, 1.7653917510125212, -1.9666192309076027, 1.6743645423158093, 0.606408682439714, -1.5123431270123844, -0.9735308127862342, 1.1692282402474505, 0.758332752240553, 0.5255438191852635, -1.295343362355283, 0.7138899276604398, -1.2097907568787678, -0.8056480885149638, -1.528733657837562, 0.5226748947858622, -1.0291696212965729, 0.4188802885054645, 0.11136290192563807, 0.7709800108254243, 1.1083160196454125, -1.2235737959247153, 1.4168640978558567, 0.8482941541253658, 0.3800105438449109, 0.7215894009998491, -0.6037785422753202, 0.23495609701105627, -0.131140316617505, 0.6476741757153718, -0.6937494688780785, 0.24702919915451296, 2.0356678308793477, 0.16788469067861092, 0.41762729197430065, -0.9486532385437945, -1.5786983570983093, 0.5656847257186063, -0.6080826010824362, -0.26646459211433043, 0.8882812728547201, -0.09100738795802281, 1.2185289227420046, 0.215561165772176, 0.6168877018001919, 1.3998913748385198, -1.8538191268642874, 1.243310682181705, 1.38014329958156, 0.7317702911752008, 0.6544530692252643, -0.9159200251936107, -0.35326906545762227, -0.14944299072346579, 0.31874081649858366, -0.8237080356996148, 1.130445146339329, -0.391100810635703, 0.5434765903499071, 1.5862951778887524, 0.5390334387453573, 0.14711390165297783, -0.29674082204709895, -0.8219672201520581, -1.7861475689784145, 0.7935351048901508, -0.061379367118883345, 1.3612311879993653, 0.21366090693502587, 0.21829318909546822, -1.0418527945581457, 0.6163868617217364, 0.10560580965804864, 1.6697847287037477, 0.3888380988965272, -0.06960815851577878, -0.09834657753074463, -1.2869453850688233, -2.7789208244848815, 0.4431360806403994, -0.07011897956945706, 0.8068165427325733, -0.32606600998474444, -0.7667921880623214, -0.1823416298867043, -0.36281595186976906, 0.09762958933807656, -1.414436902681568, 1.1402890004571269, 0.46023756299726754, -1.255476364845864, -1.3692409151984835, -0.2371986176725451, -0.25654551494849714, -0.20294851553008952, -0.178899625168084, 0.2908686473507891, -0.02903982334090083, 0.015167630599711875, 0.07025018958336009, 0.42996935300713135, -0.6901986689689839, -1.4601061307690042, -0.9600470424090999, 1.0796187926579213, 0.7576973787451615, 0.5059087805591541, -0.11529411540749847, -0.2879817328757012, 1.7794406393520064, -0.7781679195596448, 0.9962975830548007, -0.3640148722400847, 2.3684217176061635, 1.019139351084253, -0.26226367996313227, 0.3294342711535623, 0.4031825311183856, 0.11867964977943092, 0.9941074549610628, -1.7507023579166965, -2.3366161843028923, -1.0476896327383514, -0.5633236552860034, 0.12995056229878604, 2.5144578523295866, -1.388657100004014, -0.4502123013742515, 0.9190439494410777, 1.0523807198550135, -2.561421575118906, -0.9005924875624646, 1.0963119181990515, -0.13782120215488675, -1.2872840150134985, 0.12971640351828492, -0.5828814281374971, 0.5977272547420049, -0.8110968053315336, -0.500078739551588, -1.3318509078816354, -0.1882651493773633, 0.2654960203604047, 2.1546937004747044, 1.464578496006775, 1.0062229923878907, 0.33303112755345304, -2.1689161219396875, -0.6957498369299114, 0.2423384407753318, -2.1285259252125237, 0.7751010299884658, 0.39071815431770124, 0.6922659946728815, 0.01859488449664421, -0.1755145221476972, -0.38643809657427747, -1.087189531810217, -0.6444422004914638, 0.7514261235979766, 0.3278441297173851, 0.5143337311872276, -0.0874684794784206, -0.31454246826938764, -1.009817989078699, -0.9508780669800125, 0.7135637513479148, -2.366262865223552, 0.024043009294488004, 0.4433843040251649, 0.9517864419404998, 0.09499125473612097, -0.46763324807108064, 1.6014301827708823, -1.572287016694798, -1.3933440459319753, 0.09200880269037065, -0.0924413772902351, -1.9735582139620507, 0.7490799172781573, -0.9855524568758213, 0.6911539463168276, 1.502939173774624, -1.1657668523032412, 1.4113374785118045, 2.089048680515345, -0.7820199545215853, -0.7201176855516291, 0.47443805085721896, -0.850842083491389, 0.6411781881231493, -2.044482349088887, 0.5288966965572516, 0.46695936527222215, -0.6179161663249146, 0.10197793185597533, 0.4097713265654306, -0.10759342060647174, -0.6835497742317507, 0.004204996274681715, 0.7993594511337856, -1.0336516229932158, -1.5160235890983695, 0.08416430303547057, -0.13638139828573548, 0.8755287029834028, 1.6901307709441318, 0.8831269266545996, -0.2862339467148337, 1.7277209932230893, 0.5999745899841663, 0.7115431016404394, 0.6883085578583543, -1.8362463038706063, 0.882560757726857, 0.492464912731497, -0.9887679371081051, -1.7068728222122556, 1.909041930700284, -1.5888783137812512, -0.7110500684924663, 0.4058822821647223, 0.29426593127280615, 0.3446905982957194, 1.2853039989680186, -1.008053181893821, 1.6812683754448796, 1.4583302470838024, -0.24119613245755295, 0.283817198611627, 0.9093699762371855, 0.23472666737760692, 1.0715142672589923, -0.07360034863266103, -0.5792905440074734, -0.5454529221727863, 1.9416108518941904, 0.4498073360701691, 0.3810167414532779, -1.7419365835269678, 0.17716823482096458, 0.17046782489018533, -0.5358823160579006, -0.44869814820128534, 0.8500618051175772, -0.6939185535402576, 0.21187843501658862, 0.6649666983608968, 0.6371880319483204, 0.4576230202590003, 0.5678358893147908, -0.24261394713821044, -0.4294847488837534, -0.7061557561695652, -0.1188099978698483, 1.298682783811117, -1.0117275272363837, 0.3796535585301575, 0.0888070358332284, -0.6779359391821171, -0.5198536128244512, 0.7278226981337078, 0.4052365148824288, -0.20887018024173767, 0.9432660974271485, 1.1812594765855002, 1.0358192621410802, -0.8873460954136942, -0.941570052376415, 0.4054459465759999, 0.8785527001283178, 2.8209963599463332, 1.3095497443493074, -0.10748149910934976, -1.5445657635081593, -0.12204031598005652, -0.27952271550722885, 0.7760324760938865, 1.6777225174395671, -0.3203406172104712, 0.6066547848420519, -0.4967963400895111, -0.44240813101670234, 0.6283898280820565, -0.21181150490389208, 0.16137802637960327, -0.34114986625495014, -0.9153032811545703, -0.44135452772451084, 0.2799951420552744, -0.18208531633304875, -0.9113698907287336, 0.3440927897492056, 1.391404584617204, 0.4885717541637867, 1.6734854666167662, -0.35450107490653987, 0.8196321753378553, 0.16031397362979957, -0.4866292766450501, -1.2979453912590961, 0.6987363328144807, -1.0504572836948638, 1.1777909261189217, 1.3529357818569823, -1.169919962867249, 1.024771806162581, -0.042326763433222586, 0.8171840780176431, -0.741368803644573, -0.13809764233667773, -0.25266272182876665, 0.5463560271019922, -1.1724308153516712, 0.4034044407041897, -1.5798444192200285, -0.39436839982904404, 1.4690102297219338, -0.5428814846656947, 0.42564798107550966, -1.1679605390803154, 0.35901986427864246, -0.7563363650743393, 0.14373669665988686, -1.8734535568362325, -0.7276755292386144, 2.290544269711698, -0.7988689851138371, -0.8903763910834783, 0.19747927373260632, 0.11618170072301061, 0.037011180584030565, 0.6700232850360471, 0.8325460241029705, 0.4972466548956914, -2.550379292325499, -0.013237000334634099, 1.2446286452941344, -0.017697447864700146, -1.3242382570069895, -0.39636259254091494, 1.4877629308609428, -0.8427948999860091, 0.04255983409761443, 0.8934299037370976, 0.5296587157939481, -0.8073752044750758, 0.4536958979564324, 0.24402263938487545, -1.27759368650533, 0.47529609732538736, -0.16281135143375197, 0.7173272329404494, -0.20590163320238677, 1.3982545119395087, -0.7607392523004662, -0.654840465197809, -0.5526662483666568, -0.9228345674747986, 0.6085780810697738, -0.8451565463392439, -1.8194463987643221, -0.19388154595478282, 1.3358778721275484, 0.8335959345109736, -1.8718810121677354, 0.769143691054517, 1.1551548591981775, 1.1307962496383737, 0.06609445905294743, -1.1872426759568766, 0.7524727662674912, 0.28818483677991197, 0.774102172104987, 0.25071658283548076, 2.3297947783870656, 0.9276390209751111, 0.3537849437218411, 1.0657007864254833, 0.9580748355844719, 0.608493121686869, 1.6795687430794566, 0.9173668677607698, -0.8389986122450703, -0.43561940172362656, 0.8666576944810471, -1.1527271808495616, -0.03364929150733517, 0.9324135200283531, 1.5647373509355214, -0.010764165608800658, -0.9752232442919847, 0.6435603317389866, -0.46238969107811667, -0.3183929660384992, 0.6978124354254328, -0.1863777829559033, -0.39962146791830433, -0.46762133734598355, -0.05473478681144772, 1.8942028407810074, -1.1116675487238223, -1.004014543855112, -0.0026298840559941437, 0.8831512643816577, 0.3743498972876534, -0.3191004638070308, 1.1755276874729212, -1.1975085853479126, -0.4431798121925027, -0.6587006447814256, -0.5306856945316005, -0.2742079764332274, 0.10346387887082045, 0.5726589808599855, -2.337282412453507, -0.26048882667267237, 0.7975415455049454, -2.431550570056551, 0.8136518336211456, 1.1851294933724121, -0.22781612147815503, 0.8080813671657882, 0.8269990454004104, 0.7447814110878371, -0.7276082604562859, 2.262458222513728, -0.6753738674384959, 0.6569583343767554, -0.5493092700967108, 0.0007500402734332859, 1.151941294107861, 0.9218428333792255, -0.3780622251778185, 0.13154169589934286, 0.5153149556870441, -0.7554660421929098, 1.1437904048070209, -1.4060136104876304, -0.6875650848630769, -0.6786660925215451, 0.2983553668644428, 0.8458615485470647, 0.3636394461917983, -0.05900371926639763, -0.9119399740163401, -0.9737616243901738, -1.0248356911712462, 0.13089740251306828, -1.7027938300606755, -0.7257791900680371, 0.09006858776219619, -0.3426608324195027, 1.1634766717536487, 0.8214642215035934, -0.14523757667841966, 1.3627115893163555, -1.1552130782118872, 1.9323310710744055, 0.5821503749753678, -1.2410026135882153, 1.8330924449961552, -0.23601802410040792, 0.14405536066374103, 0.4949807115106051, -0.6476504702097453, -0.22266029406813048, -0.5836400957039057, 0.2564650409690204, -0.11925279428829302, 0.10513654181536043, -0.5681396846497796, 1.1143375698614388, -0.24529649111757498, -0.31181662766726426, 0.5344930482231488, -0.18281445181067893, 0.020902945563980622, -1.2676387821888755, 1.3568028393601632, -0.06838473245203606, 2.1238621132596966, -1.079421721203953, 0.7798311212520082, 1.1926072483379149, -0.3116204822203424, 1.1730565498837442, -0.2271774678361618, 1.5159377833479817, -1.1719374934662539, -0.5472357598231821, 0.8529369731527227, -0.7325886858123632, -0.4965046415211823, -1.0708005185278735, -0.8896096969637504, -0.9705583823008307, -1.9709866550426831, -0.3317719225276861, -0.5714181654114667, 0.31576449754978403, 1.1766847783349192, -0.3985527026815372, 1.120938405454522, 1.0051095643839736, 0.4578531551797369, 1.7393676145367074, -1.2960452420695694, -0.5834869633593766, 0.11800971534510746, 1.2678168747971836, 0.3610536496923858, 1.1177412105117337, 0.7457034695949646, -0.5198980163245958, 0.14181130863212255, -0.21593268623932604, -2.1477569329426336, -0.470124602406115, 0.3577096013073485, 1.449983905876291, 2.0976561920099535, 0.7296789554938456, -1.3006361827966835, 0.847242850278312, 0.7817474737170184, 0.24807264205940774, -0.37979056141340317, 0.3984370411028126, -1.1874935053901503, -0.5840146754729434, 0.22815420564942504, 1.0375571607404177, 0.3538327934475238, -0.7430420822597095, 1.3249967529011808, -0.5869076445696034, -1.2096746668785399, -0.36742381701113463, -1.073396060227516, 0.17213368322952352, -0.21061667612244148, -0.6604610312174891, -2.183416175560607, -0.18067385379735657, 1.0956476973618923, 1.2339940759592154, 1.1334168529833193, -0.37938966557689197, -0.6174284097895306, 0.5353461648958111, 2.049802532695268, 0.92128661041928, -0.31309227026346403, -0.7385511104477253, 0.2785929649352184, 1.0199123539814277, -0.7369400753938903, 0.7019898776522091, 1.6438635770393761, -0.2873469467537925, -1.0615658102526997, 1.1951529623741994, 1.4707387952404534, 0.041264708320899506, -0.1518247333776957, -0.5119652797067535, -0.20574780584246372, -1.1562989331158506, -0.24695380116889012, -0.09913712311958599, -0.1927713420324438, 0.2846739363748953, 0.40027326521364537, 2.4736351852340093, 0.12194235191629899, 1.0850271611279507, 1.295137702249295, -2.0741098203974455, -0.27649121599353194, -0.9358583253569217, 0.20659208057801476, 0.8633591454690501, 1.0630671567274514, 0.3372398811948509, -2.432535000629131, -1.2605489519653037, -0.3360810539734549, 0.035352909416379814, 0.6294359969424573, 1.3740116574355734, -1.9352637264630117, 0.6401690633808673, 0.13063688086778383, -0.2919888353198052, 0.21026654757458868, -1.5030093216931548, 0.5054967548955471, 0.7398171923648574, -0.8141443516426896, 0.10505411605394739, -1.7765558690521879, -0.5153418099801857, 1.6130566730059535, -0.041648264533671896, -2.184786850924105, -0.04828678894003395, 0.5331520041024107, -0.019255991629549836, 1.4346243029735823, 0.22032765463272555, -0.6863827891078003, 0.27335675957032135, -0.6081040693538521, -2.329416743285831, 2.021812051026109, -1.0044452124219592, -1.2033520594968414, -0.34521554069527616, 0.3407552118087484, -1.2254657621430929, -1.3373711714670604, -0.2515660098883291, 0.9593792271827372, 0.1905376999205637, -0.9822547061449968, 0.17624007836225314, -1.7955727155082257, -0.5962202531910546, 0.9772855818463917, 1.1236825981823095, 1.0178439542261255, 0.46722877331537266, 0.24885728663389303, -1.0892519788531063, -0.631119373038681, 0.9862276697758943, 1.5354436428321923, 0.5698230938529859, -0.36564602095035703, 0.6181373760227817, -0.7633463982951243, 0.6961870936037382, 0.3646803202009996, 0.38598508603537657, 1.2625153795883186, -0.7558612581913197, 0.5042046014702686, -0.5369328907268672, 1.1122591134277424, 0.13597283250221798, -1.6906794793421995, 1.359270253363471, 0.18281699611266716, -0.9996244238424169, -1.7761512330264548, 0.07300676226866491, 0.7267824581548354, -0.9824144993434075, -0.2694424846058119, 0.24308726087872307, -0.46427651415564297, -0.640877697645336, 0.30999693952671975, -1.3226020599608188, -0.12544421040012355, -0.03821708993626105, 0.12024814249730696, -2.687742381331823, -0.14058312689899363, -0.8081312101946805, 1.678077971715011, 0.25627042539775313, -1.0130897639903063, 1.0345168212588125, -0.2828563021838672, -2.0740174808491187, 1.1150117323561655, 1.4150202683435995, 1.4719976574773086, -0.5263174686759141, -0.20879737559376796, -0.7424740955507914, 1.0290794093063629, 0.7410448271909632, -1.2654418367556215, 0.9086961126785944, 1.4312437272190843, -0.23051671601042922, 1.5897422008765323, -1.2582256954577966, 0.2992524260187279, -0.57732574254757, -0.23870174867917135, 0.6378363369585411, -1.0477153237689643, 1.186722872572735, 1.3682885271994396, -0.5573215321797843, 0.7899347933455206, -1.6468572372672388, -0.5148056981564909, -0.7595911237904864, 0.2986363106187798, 1.359629065498213, 0.8794352211232064, 0.07069318191279589, 1.526595861239061, 0.6947252018993876, 1.907355130409864, -0.9779777543277227, -0.13750627660822082, 0.5015022828575656, -0.20048474526459384, 0.13268893962011793, 1.8097020879501011, 1.346680490926954, -0.7780457206435757, 1.4514431224908995, 0.24785992490297148, -0.26030474189456243, 2.1369494728440843, -0.4245572368817784, -1.8611790927397358, 0.12571878533079311, 1.1282043779292492, 0.6828083525199595, 1.9687848534017995, 0.6380607368444835, -0.44476924697057696, -0.7868551076084122, 0.9393134745821727, -1.0495431760268683, 0.476288326983552, 0.47165437219498435, 0.90023452694371, 0.8208666261456237, -1.5017191561240544, -0.31613677535979945, 0.48197207276189, 0.529391959030928, -0.5319419175686009, 1.59329943684596, 0.6491707543832073, 0.6749862950551978, -0.716522358772099, 1.1146351004768007, 0.4344099802974601, -0.9499862768557829, 0.1404162110669591, -0.4718953387413643, 1.4472813474702972, 0.9242819872892177, 0.685998221856572, 0.7944444373387249, 2.6084143593548133, -1.6823166490050714, -0.45869385984179095, 0.9333737986530208, -0.996540937133804, -0.3946556735046432, 1.8177954313733165, 0.7369331671381232, -0.6888507387012865, 1.2754541558241077, 0.06403581057854452, -0.08833963300320581, -1.232006290991265, 0.5683768096240638, -0.47323533823610087, -1.1166974093495474, 0.9795803783890027, 1.1699207717598867, -0.9151610922039081, 0.17117018606404516, -1.6950102866681167, -0.7122831958545736, -0.4041784430378961, -0.46263114179174913, 0.30383645660777836, -0.8577050407284651, -0.4964683402763963, -0.4618737257435316, 2.304658756711892, -0.8825536962324757, 0.9765401141610276, -1.7101848470551728, 0.4621929702627254, 1.471691915022883, 0.1774963706640875, 0.8293007572308358, -0.14597468495393934, 1.800007472552409, 2.456775544451475, -0.49724153130831955, -0.3496982251629301, 0.20617417324294915, 1.315496193376194, 0.3890123628921243, -2.5199253563839616, 0.7219067538559464, -0.5857520909637044, -0.3555227264566189, 0.1921216686306744, -0.31011724834168036, -0.32862370546341285, 1.454128870063361, 1.3379175202429079, 2.2591329273082748, 0.29784182345873733, 1.5473451527481195, 0.9178537595296873, 0.4675125503859818, 1.2321432719301288, -0.390630459155784, -1.3904447694499387, -0.562112549337675, -0.13060811615976275, -0.2991561751352171, 0.11112980875454379, -0.41110445622955605, -0.5843003570686005, 0.3309436044967765, -0.3025549496157181, -0.31432488427115135, -0.2905027609838484, -0.11563476806448271, -0.09818529282576689, -1.1182315849944597, 2.306171003818198, 1.5847432604726646, 0.9667384626299947, 0.038444037002389596, 0.1733101429396856, 0.5999946396802437, -0.003358907197165587, -1.2701331029958236, 0.705101204505341, -1.2100346394720218, -0.7924953029171442, -2.1086274985217606, 0.3975089624445272, 0.9659541659864119, 0.38666367256566764, -1.4569909583372331, 1.194747384572383, -0.5754963183113522, -0.710438358509432, -0.42714167173547823, 0.9575741151280964, 0.5924852227807702, 0.7103452817523289, 0.45169990551743133, -1.6455625665823277, -0.018344883911754116, -1.0583036801252979, 0.5113724362483174, 0.4595659479688696, -0.6393603401669282, 2.503150299285529, -0.23493520277450522, -0.6125203045962339, 1.046128950280276, -1.1456290506200717, -0.8018774260976242, 0.6789294910377484, 0.667470539381966, 0.6695317546981833, -1.2769658063854556, 1.4547425414572497, -1.5070436790919153, 1.0848650207397956, -0.5199488232957195, -1.4384615085005348, 0.7780276645816508, 0.03986805574664544, 0.519446165875142, -0.9115934870577165, 0.6479394111455894, 0.9114565290055724, 0.3157142157338712, -2.585605508715282, 0.3497384629232143, 0.31709239514581755, 0.5314661387498875, -1.604244889619195, 1.4963601894596925, 0.6888910278665579, -0.8077681297439863, -1.2465453374078326, 0.4120038979801771, 1.2683808415365718, 0.5355315827216047, -0.5124232863173671, -2.163362553760215, 2.2644881209831746, 0.4965411970451382, 2.0530408071555684, 0.8959155696000658, 0.48526708236111377, -0.5155500571459155, 0.6977984077630838, -0.33635996928126805, 0.3844342374886036, -0.8343645494719546, 0.07911004923647597, -0.01481507361254133, 0.12123599907790068, -0.16343359417226946, 1.678554579427711, -0.65171267771933, 1.4729226639779898, -1.1033432975562723, 0.27335442450044073, -0.8815364599944966, -0.5048099072399145, -0.06074860356129232, 0.27527711004603056, 0.5929368790371585, 1.030092194683464, -0.7833052272959568, -0.0756707178828827, -0.03677232856005676, -0.3103363580650802, -1.0614499766922125, 0.9915095166379243, 0.5076533443352534, -0.6003547475001229, -0.19356182537480118, -1.1172516831782717, 1.2617864023891938, 0.25807458968432184, -0.1922280154775364, -0.1458643765420679, -0.2079530523460729, 0.2976818126685658, 0.0868172371079953, -0.7820788008780659, 1.1393463334089327, 1.369614596687248, 1.7472570108639889, -0.6435546300237043, -2.1074034069817422, -2.399777410987924, -1.1270332314548828, -1.7669193667702978, -1.3167496941092014, -0.9969852714027326, 0.6555380776084742, 1.593324123045275, -1.0968930715393361, 0.47622794767121834, -0.38853304502589164, -1.886499148288719, -0.14479990730349798, 0.36379297308197106, 0.375359018015918, -1.0914236376359114, -2.083292207310444, -0.48157138197039256, 1.3608150633415044, 1.2739372973746534, -0.2518469758628296, 1.490105816712679, 0.19760773935012277, -0.45454062643563253, 0.922890841432172, -0.2549435460386802, 1.489854135873057, -1.1774727519516899, 0.626194574681034, 1.413486546829205, -0.3131528675389037, 0.43442879716192945, 2.02614159414341, -0.3220789296043573, -0.5243180077108319, 1.4477004028696252, 1.6705105086212266, -0.48801817519631047, 1.337384692493065, 0.7502402016291871, 0.8163848834333789, -1.2771797390931343, 0.9791987445544247, -0.34475626945915006, -0.11998531740127777, 1.0265258736112535, -0.9675080133637584, 0.5344324418525997, -1.4548111097329273, -0.9768003702512871, -0.7084791646168007, 0.0531489578366625, -0.8029153994234866, 0.8304277687964281, 1.7265867725625819, -1.351811774108124, 0.96175724153367, 1.1760866136227703, -0.5345408736487325, 0.5273744992907459, -0.333965933506284, 0.6493820544015388, 0.21654133362178085, -0.9951307822287675, 1.4403273985687177, 1.555708443706322, 1.4388583307582978, 0.8167534705738567, -0.8659034308550854, -1.3662193962994116, -2.493019448553134, 0.0848193983152787, 1.4232351950974622, 1.713734217753753, -1.4616710233777541, -0.4032191574019857, 0.7832884668421813, -1.7622375891556101, -0.2628564313135622, 1.5559946081832459, -0.2500998683669978, 0.09442769178272675, -1.1237282925484104, 0.6779700193992029, -1.1493829018305999, 0.3773619994192692, -1.0107409846572082, -0.48735284927787603, 0.8217236887131383, -0.4922147451127172, 2.210679255856, -0.23473583463432465, -1.7814389811749292, -0.49766285568642865, -0.3674921865823857, 0.2831967577842451, 0.04072849351190294, -1.303175501181971, 0.5142662095087855, 0.6820606493431135, 0.8429317624901199, 1.232786378732784, 1.2335078820805783, 0.44824581845964045, 0.47335595957630006, -1.0951735871282484, 1.433208688427807, 0.000306924072714007, -0.6604213427588432, -0.8180565705946545, -0.6227022263294189, -0.06525144991405124, -0.8143050656576628, 0.46547289625925947, -1.3844002554017676, -1.2072903529565517, 0.0829389450767894, -2.76098873187937, -0.9497091093392267, 1.2541352867502784, -0.5377959132361066, -2.4452011922275747, -0.8067760669570938, 1.3144258559900408, -0.17570459295599286, 0.24142688548874847, 1.026288403904623, -1.321765053113155, 2.1705398952527157, -0.2751979986530691, -0.788305193908372, -1.2709690736364716, -0.7191155382851513, 0.0668390169274115, 0.6411320538596522, 1.3906408725307509, 0.21544954560031943, 0.47994381831764493, -0.9412165949147316, -0.8617418874213284, -0.5084905650708391, 0.7645221822974951, 0.40518554755714237, -0.4068264245987894, -0.28462258827708964, 0.727553008156953, 0.10081581561436787, 0.4086913167119912, 0.07605688486845054, -0.41619846803088567, 0.48695139224936446, -1.0403628250862158, 0.0033419869112896483, -1.5647563798898396, -1.287779767296043, -0.1945086081218507, 0.44779367112358986, 0.7188638088328438, 0.049510128675247435, 1.2744678331448411, -0.924696699608276, 0.34981519278739354, -0.36878807983822587, -0.7570129469576287, -2.2126978730171167, -1.1362050332716715, -1.6812246192323452, -0.044382137572406624, -0.9616621468249841, -1.316292432635039, -1.0344198519897583, -0.22205599843377427, 1.5447433299618691, -0.22611566741278288, -0.6018920488786993, -0.1655437373737223, -0.6843855421881753, 0.15795961211948553, -2.184834686200544, -1.2764014939750303, -0.7968755629539894, -1.7784166766398875, 0.4978351445902137, 0.24096715761643003, 1.2449359645082105, -1.5389119450600035, -0.23256353109127736, -0.9116472918085471, 1.3661432328404386, -0.9370325431151835, -3.4292482990902076, -0.7279618974078799, 0.34904037509624025, 1.5240219544360534, -0.7338173631485473, 1.060070131113723, 1.5750223856580017, 0.5772301996221187, -0.3620934074072297, -2.2144484636013906, -1.6389366968202144, -0.3446885392488342, -0.1963845625845039, 0.4284147508777519, -0.9670045016951344, -1.9001620099911478, 0.8553921936723861, 1.167227464310925, -1.3870080978098183, 1.8746887008043869, -1.0858327973465778, 0.5166416823772526, -1.82735873877076, -0.13304519358127362, 0.025172217732798874, 1.161530560122264, 1.186543721005893, -0.5401362297197784, -0.9126851718944464, -2.3557667079607163, -0.8825601486406276, -0.14694992424174258, 0.9304870496524306, -0.11165301842650142, -1.3066677271739429, 0.34269452640031794, 0.4026019826446842, 1.5196923147020305, -0.11640009072538825, 1.0665974541965682, -0.1392655499142995, -0.824326065369531, 1.0309774888939471, -0.19365223648370453, 0.027140191127089392, -0.5634300918300748, -0.0015102682376879357, -1.4809783905359766, 1.3502031224958693, -0.9158347972220785, 1.247988609521643, 0.8731763550230345, -0.44167868666251325, 1.2257392012779709, 0.5828013200818709, -0.18049144073195472, 0.35204337925597146, 0.32525746554364116, -0.404052378318367, 1.5658224516610604, 0.670135753178401, -2.0993018005742097, 1.0310665738630034, -0.4345524048848942, -0.12738268063195798, 0.7179988340887684, -0.24180480367599488, -0.911495557277296, 0.418404447883782, -1.4647783664794558, 0.07583262145532751, 1.2034176279037214, 0.6007470755902055, -0.28733209360970174, -0.2610069367315042, -0.6452671161554361, 0.2692574907406026, -0.41788801583382645, 0.29893028128523325, 0.7743065228008402, 1.2773783029373922, -0.20539157303667852, -1.2654353410650632, -0.10535267142274478, 0.1676042501965834, 2.6110586673236313, -1.05085356166307, 0.010371597447633319, 0.46826041874247515, 1.6836103531574265, -0.8807231619929777, -0.4587979198910373, -1.9056210577930943, 0.6601353233021757, -0.5951666905063363, 0.954219156649167, 0.11611135681674502, 1.219362028243746, 1.357466087124574, -0.5299181818062345, 0.2193753327825126, 0.9733305859487871, -0.9324172317135405, 0.8976535520878678, 1.0661899258937968, -0.21916090038319153, -0.5312342790162417, 0.3582117194054208, 0.4159563959412564, -0.07850470379490548, 1.0460475323180227, -0.6144794867783672, 1.7677964095329148, 2.229995867825878, -0.5464454026789084, -0.012358707343663457, 0.5275796965513446, -0.4944493667444638, 0.18138887542045778, 0.24469752452674987, -0.6148346365678569, -0.7350100396475425, -1.2333449822056848, 0.8432772460580356, 1.254528130359842, -0.3726648378676161, 0.24206109743804666, 0.4072042990422265, 0.12855319211642108, 0.5967046994686367, -3.933594133206571, 0.1942167476594976, -0.02298652264219343, -0.4569075505194582, 0.47897205668667403, -0.5993113487383651, -1.790774619825625, -1.6337211022483848, 1.104597257425346, 0.6560617259479994, -1.933801207407759, 1.6746420478184476, 1.7014276955446717, 0.033197963562733954, -1.0274502884563501, 0.09698078523488764, 0.3775225371829917, -0.39683954622162143, 1.5318145273796238, -0.06585541485511649, -0.00021237059152630518, 0.09625062854410918, 0.8054991374592947, 0.32449399047024835, 2.32127337233149, -0.6695190882586964, -1.0266995472101628, -1.1075928978144862, -2.4664388843243654, -0.6200001562610626, -0.27741183714021883, -1.0077116112314477, 1.4052567370977014, 0.22753465061603362, -0.3007446147107562, -2.140496137380862, -0.620351150408751, 0.8878078409906927, -0.03791442595514824, 1.4483281870707048, 0.10791020660487986, 0.3061617570630756, 0.7652815821348599, -0.9269914559538681, -0.369174854868066, -0.5494258030142932, -0.5188016584822082, 0.6826449821440299, 0.13148293957583787, 0.7981911630724993, -1.0852505469794516, -0.9232183850599671, -1.290486345733694, -0.4454005549968373, 0.467641863963935, 1.610817234911089, 0.32164461093707597, 0.49962679796060855, -0.22385935142858415, -1.2849794357796087, -2.6478084525489756, -0.5833902213631432, -1.2628175841869425, -0.7586914987316259, 0.8024537391395662, -2.124999201310168, -1.4700191091712584, -0.09926450140846556, -0.8098722649475416, 1.1024215938453854, 0.16021297135407536, 0.08516061677208928, -0.0868671216941199, 0.38138506311004455, -0.7571698119262524, 0.7984836038086649, 0.32544306941926887, -2.279512960584773, 0.06999439413782148, -0.8472060777774941, 2.3326504852070307, -1.5115592777640243, -0.0018124773303179887, -0.5230564382851047, 0.3390001484543975, -1.6652501450508623, -0.0757835051461457, -0.7486964738300825, -0.21389916567662162, -0.046769795526161166, 0.05052289328723613, -1.0824097178170575, 0.19230459866148175, -1.6428260322587176, -0.10503510285175269, -0.2110968154861069, 0.49215598585917447, 0.7902367377992083, -0.5693115399739679, 0.7506498997802789, -1.8604043492934506, -0.7471106881810665, -1.4169385892561233, -1.80236127384788, 0.7060650596862109, 0.5571916531133438, -0.9086928660558622, 2.77494194186431, 0.3879405352778624, -1.7551956009242287, 0.7482023334972352, 0.6574270565133741, -1.561330093551013, 0.13654157314119128, -0.5855533860386254, -0.04321303755583151, -0.09240603036413848, -1.0092760836089663, 0.33568602664933583, -1.5476489417710428, 0.8468608590593901, -2.684787946392247, -0.8771554921549899, 0.9880492160103641, 0.7087418512575565, -1.7065624957106655, -1.5813756124201581, 0.7734188263248791, -0.6502154756468818, -0.8556020480522156, -0.5826590839462461, -0.18388906296799015, 0.08789391857340066, 0.06048196285571237, 1.458274548855975, -0.3088242151474168, -0.18204497109080447, -0.6679289745335408, 0.7505920662389275, 0.15353416902626307, -0.6883809154697479, -0.5853503133557898, 0.8900234723311156, -2.0405872101202744, -0.270273670984538, 0.5337307092349938, -0.02193657683905067, -0.03352399901562031, -1.1217252389162515, 1.6433664561636079, -0.3935272181670599, -2.1597195029794705, -0.7352817554353908, -0.03835620041934928, -0.6905018297574319, 0.20745638374427722, 0.7343585508264867, 0.906682517026275, 1.0628959050153663, -0.8316387358236558, 0.11202132921016879, -0.22411739360430585, -1.5230560873898769, -0.6233105526113984, -2.157358878162638, -0.15412080713833895, -1.3283999736179004, 0.9675985644587599, -1.7972439399679638, 1.132515715906801, 3.084732737887721, 0.6317338718172194, 1.3180063745031991, 0.8192049411222256, 0.02921956116971483, -1.5668514217181957, 0.2738722005827513, 1.2638032641126435, 1.8760420853255406, -0.7416779657750764, -1.0505935096791421, -1.9785361874129113, -0.352976084206871, 0.26152757427925594, -1.4489050435044084, 1.9543145245398674, -0.17104937664800562, -0.3543504052736365, 0.8337503341683198, 0.9809016570309542, -1.4532218514176771, 2.2927405104754297, -0.08447914467348061, -0.03657661117054567, 0.40988501215008355, -1.109397107242062, 0.45840265005909503, 0.3438016291347328, 0.38160849507903644, 0.46208274829196433, 1.9394784590090386, 0.30282559462223735, -0.752975934131988, 0.23968214410050268, 0.260793248959883, 1.1692135753052737, 0.03083351063718463, 0.9597987754383691, 1.7447945037244978, -0.3477510941457088, -1.187908672154404, -0.18610833887484654, 0.5289307467490855, 0.8686109324241359, -0.8449600587903746, 0.336552752936857, -0.6941772495352916, -0.02110110353475099, 2.0019040858103194, -0.041028136861700766, 2.17249208455938, 1.6498312354793057, -0.36007504956340475, 0.1824548888630865, 0.7617614506001559, -0.4097139053701133, 2.8376513740214264, -1.3253020451648532, -0.38875603076220355, 1.392510519005516, -0.6342718605516472, -0.8711559008937013, -0.14088444643876216, 0.4963944041746415, -0.7115750241839834, 1.6747748467847852, -1.1375813357539255, 1.8556052762420243, -1.2314565220904288, 0.6429614013749626, 0.8604712880387725, -1.058344225205266, 0.7465416016680815, -0.9973784739892495, 0.4234028489605048, 0.9867142215735784, -1.311478680624607, -0.40564894142648567, -2.959734012961747, 0.07537877265672939, 0.9590197215761964, 0.11393708398117615, 1.470387216039687, 0.3938373505981844, 0.6851749511636696, -0.7798968598952396, -0.22362054272064374, -1.888051307424707, -0.6312350304680845, 0.4366915653777473, 0.5542939283987834, -0.9115336889324305, 0.5131885026541049, 1.0840774438010081, 0.8177071079837777, 0.4661097214863012, 1.3313364693129552, -0.2678424624508723, -0.5410770884210792, 1.5918756538050558, 0.33645479875209383, 1.214844179113712, 0.27912677791269275, -1.6249079261781603, -0.881526126529279, -0.3963730627607158, -0.029740660781398896, -0.1257306550794556, -2.0257887259711556, 0.653419814608595, -1.694465871071317, 0.20809616993484154, -0.5522929217870612, 0.13607223865988988, 0.9601304843154077, 0.3095401412976815, -0.799404988756135, -0.5691383733974168, 0.034614128925010514, -0.6312087767492269, -1.0680473636076855, 0.39043231880526513, 0.050554091261180004, -1.0711272256990325, 0.1847572759277648, -1.566322467111719, 2.1156208600697037, -1.9911665673692058, -0.8509989408141388, 1.2973314971521386, 0.7726774967592522, 0.7197536209784546, -0.5219830926643649, 0.321071450030295, 2.597214986942627, -0.7572819076550951, -0.7899669083637919, 1.4639690023918663, 0.6852824767317179, -0.4666712265584296, 1.1285851407348495, -1.0467678792289543, 1.318186070908205, -0.8845146406203215, -0.6203333484092753, 0.7203564802409704, 0.6571009084583781, 0.24377744836985618, -0.5974979119855689, 0.9001146828687082, -0.782897310292545, 0.6360357590471678, -0.7981378633822013, 1.9426740098310282, -0.22640032325420495, -1.2281778323965997, 0.5253635534060458, -0.6442460549205749, 0.6566216790542979, 1.163475812774208, -0.24218936543188213, 1.1503115195174747, 0.2862692422827152, -0.7829190156456779, 0.6517895354620403, -0.6191967037561299, -0.22618852361078878, 1.0806526764994235, -0.8441941564884735, 0.9525561347327032, -0.7070843637324189, 1.8286348009625346, -1.7282701500589375, -0.479039767195695, -0.4623725317392405, -1.4544033731965111, -1.4888318825988565, -0.6368297891288206, -1.0785165563849461, -2.5962464467479593, 1.312359175154747, -1.8657795630524339, 1.5319353864780851, 2.1551155218880216, -1.3073152429137502, -0.012709076578322888, 0.360937227283581, 0.5840893830211779, -0.9198679245792736, -1.915680372341267, 0.523407527956594, -2.274874479240516, 1.4103009191115705, 0.0013735353928854537, -0.01283310818336807, 0.3926753234156201, -1.339294645190297, 0.5704168355537637, -0.19288268337321748, 0.3435920053489673, -0.3831738832182579, 0.7846156495661045, -0.9034622361236976, -0.8572010214152525, -0.96288649472201, 0.22628937892805143, 0.7340100090267095, 0.18319756381417607, -1.8664419316717453, -1.948418489198991, 0.1906408921363677, 0.05190845310300665, -1.9352159652040668, -1.2629638422969833, 0.38001400942614344, 0.6081589907930534, -0.42427900734649654, 0.4757645570442972, -1.7066605301425728, -2.6141484870916853, 0.7713433877942083, -1.8807374864899047, 0.8658210337681829, 0.028311618625828084, 0.15307749830618905, 0.2512406489751972, 1.2921488566308577, 0.91726169886786, 1.246142814119764, 1.4479698689077816, -0.2648862439904657, -0.0007452724426867137, 1.3483914825750094, -1.1321085614117858, 0.5012797283301046, 2.9179467729856925, 1.1675366979363633, -0.17840216555708013, -0.8390547488203113, -0.22284523004920126, -0.4904181020550337, 1.951532304104188, 0.3972994558552394, 0.15058982551995173, -0.4855059335736031, 0.11166502658477544, -1.0518302739451955, -1.1241144700014132, 0.8573403565350608, -0.3767017035291785, -0.07551635625442547, 1.88297917111113, 0.3124794342627784, -0.7961243811929378, -1.928166587946247, 1.0557555508484202, 1.00056263791232, -0.7929188863389527, 0.3063570202929871, -0.8059477463088066, -1.0553329086403673, -1.2600422335988808, 0.8922837702662837, -1.4885182243810335, -0.12599514381267163, -1.3334062684560508, 0.12805220303739903, 0.5040856779259765, -0.38864353041105804, 1.6788330172922337, -0.8176044593100371, -0.02623718786293707, -0.3681799280768276, 0.6818665790275861, 0.4632783382887841, -0.9282127401480537, 0.6625923308275021, -0.25298589788389136, 1.2330094284613096, -0.5908263404002264, -2.1195601457169504, 0.7355822888150292, 0.8133271908229975, -1.7046707426421936, -0.21218266322182405, 0.2648175167796812, -0.2507517549365135, -0.2694184927366017, 0.21901377810408226, 0.9387248523919312, 0.14015559727860238, 0.19213955404606883, 1.1087992674012257, -0.14648699673957724, 0.2507748170355845, -0.23185565865588048, 0.13883403716078607, -1.6163381577885834, 1.0646569144945812, -1.2359027560736762, -0.42529496163223746, -0.7604388208815396, 1.624278462748651, -0.6987774896509991, -0.26245687705833604, -0.04706547659367552, -0.3332003251045391, -0.38385146612807847, -0.5618942307823462, 2.0288818595571576, 0.3860173378043751, -1.4930636989384238, -0.6906642349179432, 0.27077248072721705, -0.16778138141114277, -0.36076412857379786, 2.153466553708944, 0.345406063932395, -1.3359480453611123, 0.47449411794271285, -1.578441069469913, 0.40545575331958666, 1.481523098635552, 0.8711793598528442, 0.8897432384063061, 1.8729046472791544, -0.42172747829225976, 1.4470869076350055, -1.1221672243739207, -0.38225128156434923, -0.7104460803774381, 2.4462035224385374, -0.5396620602825946, -0.8433066371309318, 0.10759533250066332, -0.7819969800032129, 0.7535483753430163, 0.707928711689814, -1.327644160234003, -0.6975309410520042, 0.044686352198926735, -0.5833308084764363, 1.5368129244480337, -0.15795052736679727, -0.22404243259917034, 2.525317044950722, 1.710952000572218, -0.6077305901953344, 1.9485332555021742, 1.1243789332825642, -0.7385881098933925, -1.4691035772418166, 0.3763491708041428, -0.20971699691001341, -0.05290719756745799, 0.5750692189856217, 1.196364306746073, 0.2909933003514554, 0.23154344002056032, -1.3052684797585037, 0.053173933671724745, 0.7917042951905877, 0.2856726592892354, -0.5686067747938872, 0.5579958638558661, 0.9901587829197573, -0.5757613843463817, 0.22279455251786964, 1.7563955370714797, 0.14823174743150377, 0.4398097395945005, -1.6501941477451971, 1.4421048063666417, -0.42058251606286845, 0.5352343901430479, -0.703383283283869, -1.9547025611219098, 0.48633668685281184, -0.4601224754476096, -0.6691627146222437, 0.505143247402907, 0.5702088300200367, 0.719946893290851, 0.6379129870068804, -0.7069062817262407, -0.29651055841938023, -0.000977498341507986, 0.7396685628565524, 2.540833769837066, 0.5524889009895511, -1.2491855569369745, -1.3945148125541165, 0.5966010541794261, 0.3939632603385588, -1.9254903798475447, -0.7625199171449988, 0.043076404978092744, -0.3809344723675221, 0.813272255477678, 1.6073180166492842, -1.4834232125651676, 0.1283727537205925, -1.0397443919819847, 0.9116107609074459, 1.4830485895074998, 0.8214025384039609, 0.10562689204440524, -0.6850094375915305, 0.9298047792792812, -1.997018200990641, -1.1322890213781036, 0.21973248932069747, 1.0612547400740218, -0.24744735327922912, -2.055144191627328, -0.9271252934636325, -2.275986620733146, 0.12874330796765904, 0.29266707550245896, 0.6500581954898357, 0.8114744082652136, -0.7619823780449648, 1.2134980442374699, -0.10876663646647675, -0.11672094889849594, 0.22437658530477955, -1.3704170079145694, 0.7670443934757175, -1.5186246743127512, -0.38439754588030917, -0.2148334526706306, 0.2013210468580096, -0.8230346504453361, -1.8747531175981142, 0.16397293434811533, -0.9187661845798726, -2.6479042371132415, -1.8300320259533565, 2.4510550712556434, 2.507940359202562, 0.8627733139979709, 0.33447889008620657, -0.4643808032085439, -1.2097890640814832, -1.6867577312644326, -1.4680093202687399, 1.2182082442534747, -0.7382158785678746, 1.0256208014332384, -2.099655876542908, -0.6145286494766861, -0.9623497762433832, 0.11893179091878697, 1.0921533731818893, 0.7489517827314042, -1.591068242492282, -0.11335456866945397, 1.1976068974096703, 0.70695796036873, -0.8534989336962892, 1.7169565388652255, -0.1222828410923174, 3.1958867607393717, 0.5876895701259778, -0.4150283944321777, 0.24665002377854048, 0.9914308450364384, 0.010140558599117276, -0.4196037686302085, -0.44037588974244257, -0.0399137260042413, 1.0375019284833598, -0.3003881143877397, -1.0138112901394223, 0.48937702516396375, -0.3515796877055295, -0.9373651440966466, -0.6150683680976429, -0.7970158992178239, -0.5617331531110829, -0.636263908613919, 0.12652409032519343, -0.42118411172211995, -0.734218819670996, -0.20838542177185623, 0.04996512069634397, -2.0799923231215636, -1.0548450209720608, 1.0573455301485966, 1.1427308241278953, 0.8282415573574872, -0.4224082491523196, -0.33402084058918435, -1.1375597109552666, 0.9792702562779096, 0.09900836442697736, -0.6812543500066142, -0.882529945633593, -0.12700112491814505, -0.8439396643148637, -0.7296782266611773, -0.2776900799082343, -0.4438331903022364, 0.8649422496195724, 1.0454785756543532, -1.1100533135439234, -0.3356466261901225, 1.3857044884564786, 0.7042061437883036, 0.08147624900472955, -0.9805912307756506, 0.3647936365681322, 0.39326717406989853, 0.34685805403852965, 0.029997766374225042, 0.06154644138640542, 0.17465464980482995, -0.3741826899952916, -1.7514106468230792, 0.9257733026194552, 0.08768539744208198, 1.2958680470555874, -0.35346846949137145, -2.8131825316902215, 0.15929159628760278, -1.0357204333914976, -0.1482765305853141, 0.025615034308642436, -1.5858289591140475, -0.4245163215001071, -0.07090156910668806, 0.9383912326423365, 0.056089405415768, -1.0284098277788734, 1.0404428136089527, -0.9217083014940843, -0.3543355083119089, -0.9165577384604252, -1.0624500613202226, 0.9603626362345622, -0.3015796596064187, 0.783472256461917, 1.6194585145031946, 1.203353842528237, 0.2855171779376787, 0.7700836593308459, 1.336260928404086, 1.2641448343053043, -0.2478833701748943, 1.2434894229899787, 0.3278874139004098, -1.2121723868957908, -0.45916469002769844, 0.052893194740983966, -0.035547771725365426, -0.7964861046156252, 0.43493427865996565, 1.6460519234524036, 1.4086953524985926, -0.6360198704997787, -0.40932018603897213, 1.1865327566378971, -0.5802902864197951, 1.0915668846603352, 1.0182378881702947, -0.5216381925816276, 2.20433554125281, -0.1210563970688996, 1.6079983760825238, -0.32912036053386967, 0.055469463883609516, -1.5183274367162967, 3.4161428265465394, 0.3673267619945329, -0.6979533064888339, 1.5297279266303117, -1.061177007326602, 1.500738953725378, 0.9649585359553868, 0.531373449973959, -0.21168033832399605, 0.6378948493691119, 1.1204220182083595, -0.22324361137910811, 0.10855643598068787, -1.143951886773594, 1.6961529937036908, 1.241403294022261, -0.24059853542414125, 0.2480668415860108, -0.5901218652949839, -0.2681894227371235, -2.3856937343796423, 0.4442794622020085, -0.3748001265930104, 0.49987811534870363, 0.5491360386550512, -2.472254632287921, 1.0987201182081872, 0.9170153575685758, -0.7324803396496962, -0.5804111909886924, -0.1067643932637352, -2.0415193012203825, 1.2704179022886772, -0.4408671202763861, 0.36731173378856263, -0.9395647489311096, -1.3936443025512724, 0.10349913129495276, 0.12069388154264807, 0.9879939265952693, -0.9815614236139177, 0.40615517662163786, 0.6609881481312544, 0.6859266425985169, -0.47910727369626205, -0.9150042156531348, -0.6415283581685701, 0.23358092103130007, 0.24011374337138852, 2.3480271925267324, 1.729461799399924, 1.5570776103335056, 0.08676041794532734, -0.9962417145724635, 0.8794474612594747, -0.6785449538391966, -0.5516467298930376, -0.5235919437162695, -0.02471600312884478, 1.2342842764138893, 0.7828673623221416, -0.20320391445918612, -0.7737823918045378, -0.451791336568572, -1.9935681674317391, 0.7099756073328529, 1.0255990523128062, -0.9620704203153359, 1.3411115649118632, 0.32773969916603857, 0.8173157469444341, 0.3198607510671248, -0.07725273114737106, 1.8484692729755194, -0.2397239803341601, 0.06049906947731089, 0.22772612139487441, -0.7619790817211347, -1.6168414578476493, 2.702190987685084, -0.34230363127719443, -0.08370938441711757, 0.10923999343411904, 0.9049644896972123, 0.9591852669079939, -0.6897347743882449, -1.2340749615737272, 0.8058489641768387, -0.14772779236198544, 2.378607564549049, 2.6918355250061397, -1.1774498711446295, -0.9785446751490979, -0.766339849739251, -0.6207275011093308, 0.6155592825690989, 0.10132156377511205, -0.20031405938360805, -0.6860641157480508, -0.8566324696142772, -0.5283304340044443, -0.1127668595318962, -0.34172064540289193, 1.0134989410997735, 0.7574763102133808, -1.5323597082728817, -1.2303717194081312, 0.500879909340921, 0.19171693379576332, 1.2569518666414599, -0.5471423420674089, 1.5560271011178115, 0.3924614416421848, 1.0194623145282409, 0.22620670804244766, -0.3204545426239683, -1.5071282458355522, 0.2431049532938787, -0.9422334010261186, -0.9248142483383175, -0.35898107623513487, -0.1313454286961335, -1.8306266493711274, 0.5444084488108861, -1.288693566894692, 0.5299901415150968, 0.6903255168277191, 1.0373657318289429, -0.4772541563090712, -0.24924311183520922, -1.0412450160873525, 2.6622757207372607, -0.22960047447304824, 1.3525329463076778, 0.20988367502523414, 0.2807748304931025, 0.09166508390026279, -0.2092876243204883, 0.3748578579548395, -1.989095611832071, 0.41743540400424084, -0.3493048625502645, 0.4424115952030809, 2.153839257579138, 1.3014937663028667, 1.6037368003215673, -1.2136866393237062, 1.3263998363720906, -1.464359352411176, 2.0329215743298525, 0.3153707160387245, 0.05517122772819569, 0.5343785397802082, -0.5564741664210728, -1.2059969347460537, 0.3116249684739956, 0.14153729337734983, -0.3769675288513521, 1.6252523776081294, -0.17703617548461106, -2.0223923734327225, 1.0652886674420068, -0.9039869910588881, -1.655414205415343, -0.8391366631981086, 1.347776671446271, 1.117941479469876, -0.8756612984169464, 0.42109964836870606, 1.9207746569648148, -0.4312966663383539, -0.09645548319054033, -0.68052228979152, 0.22030869346170537, 0.7873789229333761, -0.9176848505417057, 1.3241988642984677, 0.2241370291595876, -1.3219107897676936, -0.88164334020532, -1.06988895651827, 0.7472204567382136, 1.2235200322274715, -1.2400603993816597, -0.722424157241034, 0.020693030201146875, -1.0244254598398772, 0.7846113319883558, 0.5128167044816809, -1.723652235260439, -0.012743437190293413, 1.3103815756320298, 0.7315342122345455, 0.5230732102088954, -0.37189562394454556, -0.16507714301002024, 1.1677605042075208, -0.4680505168410787, -0.12158660537940898, 0.3744439380001219, 1.1934350397593767, 1.0839391843127166, -0.631780844692105, -0.4045762486574719, 2.05411037959489, 0.5005461358867751, -0.36473453063501104, -0.712549514198528, 0.5621964295779049, -0.7951662944777403, -0.3373738772673534, 0.43548002459804475, -0.533588276280383, 0.8122448166338524, -0.43931716622358924, 0.35731607427958584, 0.6024976337558524, -0.10599568675636535, -0.6042138412765312, 0.5556556089612755, 0.23075732221945564, -0.021963981901271103, -0.04105558080312806, -0.7700022092477641, 0.20704175652961654, 1.0225826528476385, -0.7160429066508807, 1.0617134205674899, -1.2613476097774223, 1.037068420011844, -1.460631107632304, -0.8317677066315466, -0.5506336128929356, -0.41759936808368475, -0.084870100100145, 0.01755131416869232, -1.034317735346495, -1.1784323819205988, -1.102455544619772, 0.49723517510919074, -1.08554641642841, -2.2158818968407696, 0.9544615255462362, -0.7151711798255722, -0.3285682854175515, -1.2148388580685574, -0.5164117829580878, -0.5881129627937441, 0.02466732283920309, -0.884820512200239, 0.24626831956084536, 1.4310441803010059, -1.0324330593329527, 0.5034546712085807, 1.2167908027253287, -0.1359500360135099, -2.2037623937756146, -0.03801937319813583, 0.30435576785218166, -1.629898997838848, -0.7683186770613752, 0.010044109017543525, -0.02306263091830167, 0.3751241954867358, 0.04281501849502774, -1.9410418490537293, 2.058276410917469, 1.0829028032287618, 1.7138733747261137, 0.2781601598459796, 1.2654190120608024, 0.6314928956975292, -1.9905429869680296, 0.1971444951853485, -1.0573123753451499, -0.49296977720828616, 0.3527641859284232, -0.5271645036080251, -0.43618842895857396, -1.1871572809026325, -0.9943485909311985, 0.151141954886364, -0.09333156118111677, 1.2775914503249268, 1.1522556928239642, 0.21450594776003692, 1.556202661683016, 0.49320332949964324, 0.8908150536807935, -1.3340933509793298, 1.1683628435069533, 0.7946867547413541, 1.7262201485278459, 2.279352519899746, -0.46314765861320417, -0.15730562409484394, 0.6372623025196804, 0.8624344673468357, 1.2789569118441373, 0.12839576051297352, 0.6809032833855128, 0.04260693982116525, -0.3589413987520056, -0.3880204896748169, -0.3954269251435301, 1.2274637720837578, 0.794968130258118, 0.015095982368991902, -0.10245815110543344, -0.7108046995920517, -1.033919634499804, 0.8437957304630973, -1.1455706446983274, 0.3824346289174464, 1.8002017799232457, -0.33948018229875127, -0.2500230604110697, 0.5920796472009385, -1.0934468843601226, -1.2455708336034899, -0.2783770648503404, 0.008278619621237125, -0.14539817080389827, 0.4119185911824442, -0.49846522420569334, 0.9338531816161809, -0.4678317871219678, 1.5998767916984058, -1.3840090813867665, -0.6145671248612072, 0.6186467183658396, 1.1749171899364617, -0.12338519083199762, 0.6845787523644631, 0.27921783016995844, -0.579018481765745, 0.1737781113351521, -0.8312229214118025, -0.5499511308340771, 0.4085603151827585, -0.8607758263584449, 2.039534465500818, 1.8920487689547651, -1.1908868731112974, -0.19532917053276852, -0.19468163573631408, -1.8323694697916315, -0.7620877173753673, -0.7044689340669739, 0.9105334192850754, -0.9348550824915848, -0.10511582293506087, 0.5522966413958285, -0.1459979185093863, 0.2436445451382109, 0.42479755267728564, 1.0702273019665351, 1.2782763759713738, 0.5882053709848416, 0.2521809009416676, 0.418175833515136, 0.8317082468074167, -1.1478640095159298, -0.209549993249702, 0.4764941290187083, 0.7424144932519514, -0.02928528255449256, 0.7043913501825027, -2.1807568063594753, -0.6786558247670259, 0.4628636361497278, 0.6808937735666571, 0.4644352445698435, -1.2300504588009291, -0.4165690845026859, 0.015913109569554166, -0.13261962061594398, -0.45140304785395624, -0.025332255178486297, -0.8477318825015079, 0.6938468758389901, 1.3177443978986365, -1.4075385555175814, 0.49261735018453867, -1.1306909702508694, -1.0319805575998118, 0.647574465959523, -1.1648216948154626, 0.49305103682996737, 0.7139788665845259, 0.5499173589235169, -0.3166322899062841, 0.49705393983436563, 1.4556500978754159, -1.09688591062658, 0.14698915100762905, -0.9245267768238385, -0.5251581599120864, -1.027532509373634, 1.5700296117875974, 1.7397682126440268, -0.7807805791810961, 0.34287602580110327, 1.381571778665096, -0.3545805126215342, -0.6297706083357513, 0.25484200698621856, 1.9509890846082751, 1.3347021396956216, 1.387944309487852, 0.3096128272572965, 0.7727316005504278, -0.3819080414023453, -0.022353039413599434, 0.14638389461778256, -0.4194514664374549, -0.7337453218909153, 0.2932067990495306, 0.5753515286394415, -1.6861151470259284, 0.16938586892612037, -1.1313644402713914, -0.2068413178333907, 0.008344002923902619, 1.3657276858632041, -0.3771934470374299, 0.5337373286712394, 1.4180368144641116, -1.265984093135035, 0.27125224456330044, -0.37982225870108266, -0.2231382400735071, 0.13840829597978682, 0.5432961647264184, -0.44787894584764254, -0.4525783122520173, -1.0070210139107125, 0.4955019090312794, -0.3979362201326619, -0.05894675415132527, -1.6493744908094248, -0.5138890020410755, -1.201612694695717, -1.0675092096247478, -0.5529553895457565, -0.23557894439606822, 0.567555586073042, 0.016660098343770472, 0.3722113384824544, -1.0721808145157328, 1.6772203541306812, 0.6092570962993256, 0.19372556143156094, 0.7223396864304277, -0.7960788933927473, 0.0544032780263423, -0.6453519877369214, 0.6325312495135474, -1.8569819304071074, -0.462470070855476, 0.4029133669300079, 0.007152010991704002, -1.422016749878381, -0.320288297293768, 0.06671775724941867, 0.6769169979378111, -1.102679358677273, 0.2319263076725264, 0.7615228927294925, 0.5253154184696933, -0.7465565633385882, 0.011130564072966174, -0.12262168452295238, 0.12066265951400186, -0.8995862236025539, -1.2070036993875974, 1.2333213074358356, -0.2298158264228205, 1.2742623221487586, 0.2868478541206268, 1.1505200348820623, -0.31226108370908, -1.747675254981609, 0.11829774830417719, -0.3182289048279826, 0.6001963319949675, -0.6977512201078867, 0.23384337366607105, 1.279154143268263, -0.8090071393155894, 0.9280056055768613, 0.34297458823828475, -0.5015839165858935, -0.20926097098390883, 0.16875496963781753, 0.21672497975560268, -0.27297719361170414, 0.45555805674270294, -1.8124862242162045, 0.8452344695399199, -0.0980877966566034, 0.2860910107516675, -1.1261102159497334, 0.4007652142492192, 1.5943918873465877, -0.3604662959630309, -0.0992942977815769, -1.3427419722619425, 2.101288202206061, 0.04355603738640416, 0.7766188021349656, -0.06840897016890457, 0.884189151123098, -1.1495375357931108, -0.6658151554325469, 0.4779286146173508, -1.3692581113106934, 0.4383404870958323, -0.02926558869726452, -0.47536923471199843, -0.3684293585394648, 0.14166249325986896, -0.46388045127618593, 0.9870376753503856, 0.15060279878087243, 0.22710708120004275, 0.10196639429063087, 0.10736959935915555, 0.44576380135939164, -1.8896598046453994, -0.48491563150642497, 0.1835788701065372, 0.582186775414957, -0.7553322580765487, -1.5273951592258739, 0.1531391285004203, 1.7358885307777046, 2.05225275954315, 1.1334792621008223, 0.15803866315121995, 1.4720355627084358, -0.65828269175409, -0.4905580072065979, 0.16340368800170532, 0.6408782690968722, -1.3064940935709541, 0.9633023779092295, -0.2026248772900736, -0.628293376961283, -0.29004727464484165, -0.9700404427674177, -0.6645898793235909, -0.6637486363079644, -1.0441510910735436, -0.5200910513582383, -0.8638198812264246, -0.651404445156985, 1.1424036670166648, 0.8302943481509493, 0.06410050389824376, 0.013890126013382438, 1.6792664073649575, 0.20815477403392307, -0.08394005279426758, 1.5344695649765487, -0.9634476722748757, 0.8125768493630765, -0.3398711035883117, -0.6197790812000269, 0.030203785245093925, 0.24649546241267423, 0.23003048081991048, -0.8512957342067502, 1.9770196636612676, -1.581728909031437, -1.1148269882212427, -0.3609244057377624, -0.8316216076013219, -0.335919227419698, -1.2049817021766542, 0.5461257165414087, 1.7868640933060935, -0.4844147888800831, -0.6569000686370019, -1.7341939924981893, 0.7819798995042404, 0.4959164185614025, 1.228717349091048, -0.8084865080835854, -0.9083394528551443, -0.16401355571940315, -0.025844774800139438, -1.208961762315652, -0.9150326808865439, 0.14641320900846824, 0.11831962470482979, -0.21886804001559904, -0.1935655369578942, 0.7832631804463254, -0.6819347064573231, -1.2109853691289076, 1.2555519731805915, 0.3474384303781555, -0.053177546951068355, -0.18191237889290482, 0.4082386210481497, -0.2597556842029136, -0.8397658872687167, -1.7387059236481872, -0.09397857836821562, 1.4862424972148378, 1.1034408658233257, 0.06772131944507691, 1.4745962315101877, -0.07555219560507852, 0.3431948869164265, 0.4229213380404568, -0.9815611334154896, 0.8727728762057859, -0.01595030097805615, -0.8845643926192186, -1.6433642494409921, 0.1194166413204995, -0.7054942648790292, 0.545972073493028, 0.7414386178452222, 0.3947144864922325, 0.6714285597286186, 0.40535890560477805, -0.5770835833363738, -0.36972894284335656, -3.223670421571579, 0.5206417634640951, 0.5334861220709574, 0.37255341800538094, 0.4960359225091669, -0.7208385635607598, 0.26513430908637936, -0.19306704768579033, -0.30394163952695047, 0.5409579158633531, 0.04077994699791529, -0.6808787611095446, -0.21983109752205693, -0.8856984213795103, 0.08708474170010476, -1.467737701520266, 0.11647618985023872, 0.08153451564979304, 0.9120307878247682, 0.19388787464418392, 0.3082999723782585, -0.8236785402450543, 1.0340360241126632, -1.241095241142109, -1.4383379519390114, 0.9546360408394226, -0.1850051233985465, 0.41042843929592826, 1.2197677282043273, 1.7568733970792096, -0.24968898365069178, 0.18967676901507538, -0.9788189478184484, -0.7490684219104936, 2.2124977172719102, -0.09807235008909489, 0.06708587427435495, 0.6106879865418608, -0.2923400602680741, 0.8830333072940778, 1.3600364413489099, -1.6241407941693788, 0.34105590219797666, 0.20822961617050448, 0.7574619379788279, -0.7555660683591082, -0.9422775050620825, -0.8304411133939145, -0.8933459123369, -1.1468983810418232, -0.09716150288655362, 1.832920917325424, -2.1002506718937286, -0.11288218265864455, 0.7891636626192208, -0.5928522875635283, -1.5042660348325985, -1.1371883215717389, 0.33611602312224553, -0.3031054916717276, -1.8404652616846677, 0.06243015812559675, -1.4647479600608067, 1.2284186427430246, 0.28214559576902015, -0.7652004592744904, 1.4602218665939162, 0.21592374707354312, -0.7433670979141864, -0.6125540338339106, -0.013021858336585061, -0.4632011783183308, -0.3834098986727808, 1.4839677296047715, 0.8095881587030659, 0.28387460765350636, 1.367617982392914, -0.1980952945942278, -0.6959195481392316, 0.5190081311635816, -0.2906482618437907, 0.2528023721872558, 0.7750252019692802, -1.5969414628298837, 0.5715345024722027, 1.840669019599636, -0.3808947907055146, -1.6925619048229337, -0.4151786995970114, -1.077534360452584, -0.3253854803522126, -0.5473247494879357, -1.0148510778441955, 0.5807936845478049, 1.4188270423571532, -0.42913209406393665, -1.9280253287105502, -0.6373091321561077, -1.1984737215687102, -0.5227828442297008, 0.8115353224902578, 0.8330855537676659, -2.128893512060696, -0.6132474192342916, -0.5283421311729809, -1.2647229701790812, -0.0040478597644486745, 0.6027023186843017, -1.1263757011170843, -0.7246748913526829, -0.9845261875021319, -0.8420478576875561, 0.07928360017224584, -0.2460839205643463, -0.4106943948709493, -0.6202186305418378, 1.4156819007035346, -0.8993808117557401, -1.0342035673356529, -0.8425905015196906, -1.173723598422002, -0.38914476686956384, 1.2434331939258545, 2.0449947981992183, -0.7759954316923381, 0.28784974389608026, -1.042020137053991, -0.5634562603244763, 0.14063909061969926, -0.5461889551821691, -0.46699035972877384, 0.5064290919350128, -0.41732990315277047, -1.80406125126958, -1.509898828072197, 0.7380748940153421, -1.6217376586289185, -0.9473619945009293, -0.5983954303420651, 0.09991669388408903, -0.5593115354135116, -0.5899467019865037, 1.8591177633014202, 0.5046241674625143, 0.15833423530284435, 0.2770149707349902, -1.203930602034183, -0.6049511002181718, -1.5154184151341736, -0.7671243573651289, 1.0893416416403874, -0.2751760058110301, 1.0199904761874368, 1.6201641395633377, 0.7934960955808935, -0.4557992629326642, -1.7594646390301365, 0.7095070966942318, 0.8161360056359255, 0.056984271291648944, -1.1341169563912414, -0.9949483128362828, 2.753625891749023, -0.1557214790227331, 0.5838104846430162, 1.0318819423326289, 1.4228639136777852, -1.759098063889217, 0.5241240905193018, 0.21029634419983567, -0.3586315043896655, -1.5602963722174208, 0.48977770111830493, 0.6367925408458174, 1.435181294923192, 0.6222413646005007, -0.8697572031007433, -0.04700113611406782, 0.48840976388729107, 1.1769530206046244, 0.3216273075056712, 0.8531041189733557, 0.1358459623262001, -0.6261485008540247, 0.6902206160421575, 0.24096861053774213, -1.6058739996049916, -0.8180830798851955, -0.7405049797858476, 0.5038430656262782, -0.6183911695287052, 0.6742306596878732, 0.7971592698144964, -1.1492893860917157, 1.2869251324253017, -0.9559392684152139, -0.4636103935673524, 0.44053310838501974, -1.6276874087383586, 0.8882817869391774, -0.12354906083329521, -0.31433769108843307, 0.7800299908116611, 0.44256835732909466, 1.119833263137541, 2.387772997145105, 1.8913440757032662, -0.08469524723408615, -0.6780562810723062, -0.8426349535428, -1.5658711389015734, 0.928609433539406, -0.19893510318972354, -0.7638678852810825, -0.8453031595215622, -0.4540224387812664, 0.33143867522265175, 1.010227826686049, -0.06372339083075136, -0.8680538129848216, -1.1511401930010248, 0.2836983516339838, 1.200869192443458, 0.7356397440493744, -0.16947279118700695, 0.04074233506663594, -0.1842823354258228, -0.8186136097130037, 1.7813397517983616, -0.0724234949633769, 1.3854544182423791, -0.7385271852077289, -1.9534185315894312, 1.676100312692191, 0.25959044269548137, 0.8791457396509046, 0.34370512593377095, 0.41153650881109777, -0.4872910267561369, -0.42338979673975335, 1.1414061339187098, -1.8039949236717672, 0.18259467102740382, 0.4166733272402746, 0.9066535966592146, -0.0935596560128009, 2.245402877374465, 0.4189992679462892, -0.46537426832593926, 0.3080502567793204, 0.03821267151485505, -0.007284027730148483, -1.01915860790047, 0.8001480094500767, -0.666838556555173, -0.10836985849306117, 0.18107044356892135, -0.15931170698828165, 0.9463762681240379, -0.4725127205580137, 0.5945735997144431, -1.3489202249511791, -0.793034675749401, 0.1703721190234033, -0.2032125959272321, -1.7009336065544418, -0.2781978469935938, 1.3067503750459388, -0.4593429331143532, -0.48902005715895497, 0.3932682746187995, -0.4568989639580821, -1.9561311050168924, 0.05979421677478267, 0.6194210645147439, -0.26106164385238917, 0.547855010847545, 2.016572965712493, 1.4184160833795485, -1.048740594681653, 0.10324707579665439, -0.7278503553301325, 0.5181914101971764, -1.071621072222472, -1.080121631722257, 1.4180908336365639, 1.8279301252824194, 0.4890440928411968, -1.1844808002356604, -1.036969087234881, 0.5047558658609043, -0.4666183914186206, -0.6593078769215523, -0.8285683631433772, 0.5631377507571653, -1.0836018838806403, 1.4612004422638334, 0.43424894635253714, 0.4469001594189141, -1.076030627446577, -0.07084707966694415, 0.39949134450623175, -0.14329146385446176, 1.55032046457304, -0.592806175383633, -2.408066105652652, 0.7433821279473788, 1.0994913331368021, 2.2736243238271503, 0.3254815050556844, -0.8524381122151468, 1.648218009046178, 0.6642332436921852, 1.0478520673188159, 1.4640913411708327, -2.9399905549459393, 0.7367538363459407, 0.6031163246645006, -0.20123728863828885, 0.1828799855844864, -0.8323209729262803, -1.7826928835913678, 0.8826765768992312, 0.5647354159914104, 0.04047474433811769, -0.39938272277379244, -1.3808659903889444, 0.8063835008642614, 0.2395971126460921, 1.9628786827933442, 0.29849390436424456, -1.2704903086163724, -0.9777446548617638, -1.396586053665041, 0.5214110219499795, -0.7623932555790202, -1.5813491087203309, 0.2038478438039716, -0.44596141610964757, 0.36677324830099245, -1.9257575915216314, -0.3859307879052101, -0.5887155526114045, 0.7271301599739735, -0.8167099074986338, 0.0061118828495725286, 0.9539240986479091, -0.6634414405974086, 0.12154577023983522, 0.45226399740391837, -1.7001573184021883, 0.47151090416151076, 0.3304925273457104, -0.9989184572230306, 1.4435851424849697, -1.022111200466627, 0.05173377297536209, -0.38977556552685344, -0.5121884215577979, 2.0906800541730255, -0.5116753811510978, -1.2161578318256536, -1.102071931092185, -0.4105284370757561, 0.7245939153683983, 0.18881397428798954, -0.0925202330145313, -0.3865737011138067, -0.7102491114415265, 0.28149955627790935, -0.15457296347659388, -1.558179382155726, 1.3988690857065318, 1.1005006164695919, -1.3482730017705815, 0.31335209132668906, -0.05491149589739798, -2.7554128421159416, 0.9591708871372037, -0.7687369264623781, 0.8001441546813448, 1.4948607449881315, 0.7569250905871078, -0.3368537208139521, 1.1188277340898016, 0.2308528249344034, 0.8102286861996649, 0.48758695236763433, -1.2006657546432533, -0.018328483078256998, -0.8961678097975985, -1.492021998430111, -0.13084380254836092, -0.368390425071302, 0.36539371594715825, -1.0414155072742335, -0.2618531010959618, 1.0517072881449778, -0.13660060594085, -1.8054378008784153, -2.66731326680321, -0.22470779346135514, -1.127299765999491, 1.8509321185713132, -0.06414764938143094, 1.3598006622015106, -0.21790380874256662, -0.38372631198468543, 0.12086856158822526, 1.9228417567751948, 1.4602923718808587, -0.9416121771782409, 0.6420085996282642, -0.7075545572006845, 1.2366241140292134, -2.9200638225756927, -1.4835575825014773, -0.7660249804347895, 0.8065422631495834, 0.2433270716055773, 0.722906961021923, 0.5765861881671129, -0.3687184430353961, -0.7566994516127858, 0.4163489622258087, -0.024224843646604162, -1.222691485802071, 1.3739415906375272, 0.9250406053279946, 1.0439618684848275, 0.26897580752624617, 0.6801751396513591, -1.2880409920678524, -1.3212044561721827, -0.682613417096174, 2.8685465051693773, -0.5375724228371516, -0.3912480740339429, -0.04331496117175422, -0.21796229131224734, 0.19966468795063827, -0.18813736694062205, -0.18176704448740547, 1.102970336169319, -0.6960801423663627, -0.6482383643214751, -1.151198330234091, -0.3073815425968403, -1.0145309580193007, -0.6520893826235168, -1.796978075423719, -1.0815065566411741, 1.025625618944691, 1.526018131984592, 0.27253702810515384, -0.46291303473722595, -0.4568490914538585, -0.6354065829230358, 0.6418042587625123, -1.0343003041407093, -0.5329541670359154, 2.3921474690729423, 1.4623814162796323, 0.5380272836206089, -0.10137382840039082, -0.784517103351694, -0.6985095480686996, -0.5119204824587458, -0.04596123975125759, -0.8854723093817032, -1.513326414617864, 0.3953524886112775, 0.49189110524519164, -0.32555746682904235, -1.0961515005421993, 0.32722294720999096, 2.117793859689432, 0.995225670413227, -0.34956277104478933, -0.205407419758576, 0.7233181719448026, 1.5135690578310597, 0.8036457787693498, 0.8076199794686463, -1.5431733504321197, -0.5518462885459765, 0.6550479961591774, -0.7478339614675586, 0.3812176101918478, -0.6997470698099868, 0.6931988366533687, 1.0328081009760568, -1.3984664421044237, -0.5969028154918938, -0.3464064542707108, 0.510508194959907, -0.7005334974934923, 1.4306112195699794, 0.8200419278399665, 0.2952979981031681, -1.4402663220126992, -0.3591362261981959, -0.8565399302899722, 0.9701457828064564, -0.7927481917827479, -1.4356110206668604, -0.07336473810211176, 0.7861982829455105, 0.7201881967153597, -2.490189811352794, 0.8625093900083408, -0.9493998840807781, -0.9305201024852267, 0.16629726643483866, 0.018603976954314184, 0.4928860016796843, 1.4038540580453536, -1.2341724094601376, -0.9403747730863027, -1.3165923247126234, -0.5715836727732575, -0.036638942390730574, -0.02762265260089211, 0.4962569626264635, 1.2134166481804092, 1.292361967999863, -1.7065967287429182, 1.2475575461978208, -0.39381758221570323, -0.5483383804984105, -0.09780323817594017, 0.6290334226108716, 0.34440329014053117, -2.5995339816706364, 0.31923127303494603, 0.6410314233148497, 1.5612842778826674, 0.30719468971963965, -1.1419992630599207, -0.5315643145057867, 0.2335616104923547, -1.4434126313511675, -0.03934962670582366, -0.14518261792248724, -0.12697469044672463, -0.4013243438072929, 1.453789799351154, 1.5724724494048596, -0.20291049888966917, -1.1710080079955887, -0.931369205316808, 0.2965251625492694, -1.4607176462595846, -0.6126366336755649, 0.47687850425186995, -0.6342619796153989, -2.0828766157009437, 1.632535527104793, 0.9792429077738505, 1.1212496850152378, -0.14647517179302377, -0.9700067460148397, -0.5989751094662152, 0.3436122914244146, 0.1615997641602426, -0.9066077167406125, -0.022760687747280985, -0.47155345336092197, 1.8391391811958189, 1.8155107905971708, 0.4484131458751848, -1.203983872368891, 0.7361644763919745, 0.7457473275724321, -0.16405979317228653, 0.9486054063998125, 0.15381722978771906, 0.11957521881665698, 0.08289536054472862, 0.4975274526564369, -1.2784843623536641, 2.321235316095977, -1.9807084198052534, -0.48292389447333617, 0.633768588050518, -0.041884924080296704, 1.4233064012529624, -0.37680944171185127, -0.9958433729815109, 0.01112200142630008, -1.3095329343357403, 0.42765166939713395, 1.5126957849402736, 1.062980563007128, -0.022732063383232602, 0.3845063545553617, -0.15110875068562843, -0.5195410325195191, -0.3331300627018945, -1.6197733478160734, -1.025896895077269, 0.31951608019970046, 1.6492269454362367, 0.059826552598518, 0.5999397057063098, -0.775383407188724, 0.9843870133830003, -0.6055101627793613, -1.135080954229588, -1.6750412313421144, -0.42985641584527595, -0.7784870869194075, 1.0032373495129616, 0.05071542347191877, 2.5135096819509406, 0.817517847234236, -0.07142163941130678, -1.4808991217959517, -1.405090338433299, 1.5715706616403744, 1.2046546293162628, 0.6658039527855808, 0.18609968192603107, -1.4191882729643857, 0.8713797504379952, 1.6194360529006415, 1.328754058527644, 0.49441519798139827, 1.1140680133672376, -0.37998184489355924, -0.6540705038379099, -1.858731245861639, -1.9665519575497075, -0.12384961571787256, 1.7271184219373685, 0.908307629971194, -0.03168310583281753, 1.2183524693935988, -0.5609052562620868, -0.4328458735842595, 0.9423736157630763, -0.4711267026824644, -0.03628034039284862, 1.847827952919973, 0.6331544916661946, 1.341252294930929, 0.16987920617862676, 0.8881310840265595, -0.47815746713661156, 0.11667369742523179, -0.7144693869673434, -0.12703291812267006, 0.05225936331778489, 1.2052662939038632, 0.5594550448006032, 1.4669402636098257, -1.8309006316625616, -0.3429444021118215, -0.4499234457418908, -1.066589637062036, 2.222598262214778, 1.491854138579607, 0.5922590833493787, -0.28044291381227615, 0.25621728446624564, 0.30297208416633753, 0.8441483047453774, 0.6320439472752585, -1.6661314011706134, -0.13208970042558976, -0.6649181930647022, 0.799001124813957, 1.9708307255650115, 0.8965194670077166, -1.07206194950826, -1.590514288213846, -1.6019490135375705, -0.27280989616787565, 0.34795380109603885, 0.24045551303666876, 1.4783862163347061, 1.3195588908544815, 0.5433224632364976, 0.4090471302033528, 1.7110246960683504, 0.816455827575288, 0.18787469513587554, 0.9740359559679531, -0.6095733313881223, 1.3389495327923935, -0.6474474643010488, -1.6730100966453105, -0.34488355379546215, -1.425659546857075, -0.8294764800923422, -0.2741686519654575, 0.28567846021407867, -0.06557242180421056, 1.4727986182776702, 0.3108448051663151, -0.14614255069209237, -0.8501240771380035, 0.5410100422837315, 0.9495402046144787, -1.4445001643008326, -1.4876125237342588, 0.09244775395356572, -0.38007901504511815, -0.6968755552352722, -0.057878366350608695, 0.5453102491085964, -1.3618353519982873, 0.9454346494725858, 0.3976555002046977, -0.2878348986865366, -0.7503211569510755, -0.40767920310360095, -0.5636850324371969, 1.5694654762605498, 0.45809145094635817, 0.9313091254556324, -1.7289782856620204, 1.2206217127784416, 1.0461818078310596, 0.7726710430467495, 0.7295052407203471, -1.8747131993323976, -0.32057268512402587, 0.778139819715444, 0.6095359769196901, -0.18699668462863323, 1.3240240052393486, -0.3543187037778792, 1.5123944843563282, -0.5368257437181789, 2.5181125119089143, 0.46171931676745165, 0.5795867590826067, -0.6668847172035685, -0.15174717519404948, 2.266634322048175, -0.1815815043241815, -0.4667108170086091, 1.4055820920764595, 2.031501858555156, -0.6397999893992192, -1.0749068639764028, 1.4298436192551942, -0.15903463109972688, 0.22828960019289668, -1.5083564180995088, 0.09156731369352761, 1.069365413762679, 0.5980969503452623, 0.30985434829871095, -0.3973758586571876, -1.7564686620506074, -1.5832890730757463, -0.749102131124378, -1.0898106510350316, -0.4482613701125439, 1.5820474752727107, -0.19615117599461973, -0.7101948145250406, -0.6696223148026699, 0.2633553903465858, -0.6570308252077487, 1.5217668094141388, -0.06646619168377102, -1.7714090936852587, 1.037142762293089, -0.9022633457630215, 1.5143318463731616, -0.005431619822853402, -0.1100460430658093, 0.3306150599641155, -0.5658959963504038, -0.7954104648718267, -1.8556838796370343, -0.931635788179982, -0.5044847720403903, 0.024833954441027616, -2.664633703109121, -0.4543473890757266, -0.019363548068812537, -0.10360913494782309, -1.6352231824294738, 0.6300940261958222, 1.2368598365411012, -0.2415111600663751, -0.25825532308213967, -0.541423042641239, 0.42149555403863825, -0.4398194053021439, 1.245616606279525, 0.015516931490340707, -1.3390441569840719, -2.2054932997529173, 1.2710613596150508, -0.4365291373973302, -0.5156578883485186, -1.1240903547792247, -1.1323883250673854, -1.76053305689146, 0.24110218679345546, -1.7933797023112805, -0.2976429030598752, 0.5883503580029683, 0.7039118502118912, 1.3152097832918308, 0.8015052536444085, 0.037501170498564364, -0.9309139579584419, -1.6920770605898061, -0.15513099111911033, -0.08346526499004842, -0.662879336125702, 1.1104144540128376, -0.3452363300362388, 1.6798388927944812, 0.16790741678345272, -0.620587521146957, 1.4456613910118932, -0.4369234183786283, 0.9431653453760431, 0.28237428008423, 0.9957953685059815, 0.14330790908675173, -0.4330431265462315, -1.767282774485102, -1.1807386535067443, 1.2007021846320818, 0.5265877187708051, -1.6404834507617028, -2.329462931500211, 0.41390272330185357, 0.44705761169589253, 0.43423741226677287, 0.4626897408503038, -1.1656357274717264, -1.4506347865072884, 0.5458788354561802, 1.005431073792432, 0.3989456347696058, 0.9487157491686268, 0.5654416372586962, -0.5276868536114812, 1.825274979366556, -0.5916276220134284, -0.5567203881768601, -0.19042999845966324, -1.4413405257570666, 0.7765741119686856, -1.3191382591298935, -1.2266723136334274, 0.19724817313219548, 1.0639407953665774, -1.181064680425487, 2.3746412191552215, -0.09329393911994675, 0.619481564269676, -2.0174349379145458, 1.8384575816586852, 0.494296580922859, -0.1465978390694345, 0.023946277703242747, -1.8828651752370877, -0.3002988903720984, 1.0224210101488649, -0.7387987733299269, 0.1317632883646881, 0.6486149931991839, 1.4431262743922413, 0.5586568416615323, 0.59677412851129, 0.2697676806232568, 0.6307047956121424, -0.5974817816797047, 0.41000526540996574, 1.5329314827645637, 1.166163589026483, -0.13734100341227837, 0.5508779640005983, 0.14871130533978916, -0.8594028191207284, 2.090036933217946, 0.10268351118832135, -1.692089015964136, -0.39088513152615123, 0.11746977757354309, 2.0853587833713503, 0.24284783119095976, 1.103079532045557, -1.2133852303781618, -2.8055518798517025, 1.332141410120297, 2.7274179609747167, -0.030014556652457877, -0.7045043173515291, -1.8013909514264799, -0.21292819986893893, -1.2708093908334162, 0.6167351326324403, -1.6235996901992549, -0.393754539987097, -0.4994451627471303, 0.011091021366360997, 0.17085961246827178, 1.4099603579538311, 0.8233908227752962, -0.11221615321561046, -0.9916541015294997, -0.47981865055668743, -0.26629436901250414, -1.120960415808434, 0.25163243380435696, -0.015224287203208862, -0.8813108344948081, -0.5141046030876255, 0.049643919835358874, 1.0411150819914639, 0.18616398813958862, -1.8647226233006162, -0.38884671543666866, 1.2843996300931226, 1.6000833254283813, -0.878667406102645, 0.7686803813212288, 1.0498579351370567, 0.1629822297900654, 0.740458428096365, -0.9286372949238557, 1.0488549507368314, -0.319740295034463, 0.09951600290054975, -0.3029342087996784, 1.808566906710591, -0.6788999888593854, -1.9174912053650324, -0.007589558817745688, -0.6219936664139214, 0.4140037795966609, 2.0130253755046175, 0.6108211942362742, 1.1123516817499899, -0.29204608929780873, 0.4071131790609894, -0.6499694486998623, -0.39128626761166196, 0.8043008406618766, -0.840385749929717, 1.1809562068051476, 0.8807911629388949, 0.35334345685708224, -3.0011617909169157, 0.5734542489297837, 0.36883585792964674, 0.6371514795544861, -1.803342381358572, -1.5174283892766651, -0.16655673084020456, 0.2217616323258926, -0.1785464101383453, -0.32741817173234067, 0.9206058642401822, -1.2303157504075646, 0.07588676567992936, 1.680878157266127, 1.1804632530451256, -1.0686963398653646, 0.016940242253570877, -0.5826283657504966, 0.6198977879592661, -0.6845295992340609, -0.21608699354532246, -1.5141619103929618, -0.6073869020064306, 1.1403664574809118, 0.4561638660115331, -1.2190003083091068, -1.417653228342602, 0.8192227443176027, -1.7473754174015113, 1.7241420311156643, -0.7431982808293427, -0.14998947073011853, 0.16524749534829208, -0.8663430971909648, -0.5137801946160899, -2.205174880679221, 0.9274727412740393, 1.8345906206749076, 0.06593545790032952, 0.38786429120139815, -0.10265436973063925, -0.13964441817615783, 0.8276708998373699, 0.6037461424746101, 0.5751533920265738, -0.7233210024574035, 0.7133870585383072, -0.13503931556395496, 0.7176537101918326, -1.2380161149164444, -0.30600583424203504, -1.230501898224894, -0.4824827738838865, -0.38168780313181977, 0.13642434080157484, 0.08929154928091089, -0.962287935147084, 0.24554482916899034, 0.7263357558116725, 0.90615256209052, 0.11186139516740509, -0.3989224584623616, 1.0527301898194734, -1.6015366078496058, 2.3448880089476454, -0.6451385716204007, -0.4561475172918879, 1.4096165233808367, -0.10390638001359165, 0.6605910459341915, 0.1342115882629335, 0.707244527369883, 0.7916628072891883, -0.012721671794283466, -0.6015244964584849, 0.7506463300671425, -0.5907163414136196, -0.7518817298221849, 0.6156625258095478, 1.2765116333244428, 0.6844573944378549, -0.8063742159217705, -1.792277274310997, -0.8033819928801965, 0.5144529114589552, 0.8610472404605451, -1.3060061792210191, 1.5860539435671348, 1.018822752496049, 1.110931479573665, 0.3607382793563107, 0.6281741533547326, -0.7928539106171963, -0.6282826297247152, 0.600145748180304, -0.849591293925252, 0.16179752090216443, 0.44835882516628295, 1.0969961688010679, -0.3121698882074714, -1.2296687801795452, 0.7575101521838226, -0.162020540508364, 1.9901927871458778, 0.13852221987277663, -0.18763688760593641, -0.6520951003366747, 1.0573423773238757, 1.3598720118844707, -1.4011947730085, -0.5146390482251092, -0.14194378515605566, 1.8839826580745578, -0.14629258753666186, 2.092063984569299, -0.5820438646952539, 1.7430631925265565, 0.47912170160387957, -0.35819872374457074, -0.8889046572664602, 1.8009677452178843, -0.967041143406829, -0.17509622761569574, -0.1049226668854739, 0.10144748524269788, 0.11682064260162603, 0.020914105043542068, 0.48594198894385227, -1.4353157729483472, -1.2167001746586779, 0.5885061817158413, 0.11637223468490114, -0.3567084615440641, 0.5344310009787309, 0.4599564625941386, 0.7300087488646156, -0.8989126175713604, 0.7218108616634569, 2.3937369258391747, 0.3939909022644942, -1.746257278393054, 0.286698183981847, 1.3600606584605477, -0.46264726272710677, -0.8465145568245879, 1.0909394907215648, 2.070907150177598, -0.06949512870129344, -1.8756967687113144, 0.823564848811763, -1.0727295329977904, -0.8266253262765121, -2.093043757273694, 1.2423831542878996, -1.14477542770149, 0.354409691129303, 1.4195431323094907, 0.9129034090587803, 2.4299034747929102, 2.1536630998003545, 0.034179238826564366, -1.4350631135268497, 0.15292310155582786, 0.21712033080744514, 1.3014622385470986, -0.42403200706389366, 1.1450161455443515, 0.48096503005060526, -0.8109294013310949, 0.56093306220275, -1.714417491411322, -1.0933126174175425, -0.20299257930703796, 0.22444813773687877, -0.07068352540391315, -0.7991601607338066, 0.8482677457479806, -2.0006814042727736, -0.39738680220314304, 0.7498733071848234, -0.19041687343534938, -1.433216500250764, 0.14403127904946592, 0.020703894645634376, -0.8453330753448666, 0.20041300001059995, -0.41792688257046173, -0.4117871751428472, 0.5657929060024846, 0.3615416167656668, -1.4364717456287395, 1.161071522210618, 1.8707700870977564, -0.17738420699168225, 0.5320964342869865, -0.2999084334520471, 0.022324301476911425, -0.05626283688390617, -0.8997352233155751, 0.45327562005417904, -1.4709550525226596, -0.7583741637909368, -0.4097711838460564, 0.4064660019488226, -0.049963180317987105, -1.2719116608795393, -1.6148446132629648, 0.053580208852822435, 1.1883381866458094, 0.13688319368658539, -1.9468690132251858, -0.6255443950493486, 0.6956614139427093, 0.2664426859321012, 0.25318803228950487, -0.28603930478502604, 1.357094353368338, -0.04227508327079017, 0.10116439764197965, 0.41913391425301205, 1.2324013368596065, 0.6963550280708385, 0.8004724893933821, 2.047722848903133, 0.6214814579813367, 0.683498650091574, 0.005819984088564564, 0.6033672726388697, 0.003480065662119581, 0.17020060626111405, 0.6252392728314352, -1.653202994507543, -0.013993846250606548, -0.05568951400529052, 0.1449267302267551, 0.7207986336098271, -1.780532788394011, -1.866778259342477, -0.22932513773458965, 1.386627748274789, -0.286716560384825, -1.226320031732529, -3.150308729868784, 0.9462445759371283, -1.3606117409143588, 0.5417294632712492, 0.5338102354028372, -0.007677701769596601, -0.9218166224625689, -0.4484930295582716, -0.39514100898672516, 1.8309364900776166, -0.3288366973223573, -0.2856849796066447, -2.718636181331735, -1.6900050576343855, 0.10815274852959238, -1.012672671208503, 0.6406936870466932, -0.39680175321266375, 0.04030466829540466, -1.5780985624768507, 2.9096673959100823, -1.4953339072745537, -1.3337522500382497, 0.9897202577349228, -1.4644961032829065, -1.7983593561297047, -1.3127300381154026, 1.045766449075109, -0.32687340509777285, -0.7659867838184847, -0.7936418181611444, -0.9691204336276494, -0.4486012815204749, -1.3144718930012502, 0.8304291242994324, -0.7956612156930222, -1.5885498167174512, 0.24226127729812522, -0.47716919925268736, 0.5388653632800099, -0.7151347209406045, 1.2787590907843465, -0.8830058814397705, 0.5894868957316999, -0.9958119365686653, 0.9822001912479668, 0.07648954802474532, -0.5672315651204436, -0.5227172284121585, 0.29865333819186696, 0.20379565428702276, -0.38769371650647577, -1.0035968256865007, -1.3923136426980145, 1.0799853963311872, 0.5324283685007335, 0.40775059639040245, 0.9402489792314861, 0.7529218930519317, 0.03417586101337969, 1.0721987439610403, 0.6296975840874754, 0.029778049283594947, -1.7846778616700865, -0.39983044976750065, -1.698897740771879, 1.7148351932126846, 0.29516754782125404, 0.8389218009599549, -1.2708398271459738, -0.6248904096587511, -0.3733201681483394, -0.4043870294265869, 0.7757683055976954, -0.8457218887761686, 2.685159613908922, 0.22465075298047424, -0.9001045233468118, 0.2278078815955259, -1.5254933637545842, 0.5500427393495988, 0.19464690902137272, -0.5252685796494453, 1.8420911928163979, -0.10162569574566245, 0.2206474227511174, 1.4068633471104524, -0.17362779345276494, 0.022229927684641115, -0.6018026272359271, -0.8163995715631954, -0.011681139848974703, 0.04761710998842421, -1.9717629386188724, -0.6786110135189296, -0.8693566831245542, 0.624165952466827, 0.3699853450916513, 0.29616016298587666, -1.1879950485891888, -0.31653925285413237, 1.0329429415420797, -0.31676672897193575, 0.10464897631298883, -0.8636298312908882, 1.5444929020013847, 1.4327542441833765, -1.315309092794339, 0.25262947819912096, -0.8925411851188735, -0.3256796814136725, 0.10287143809698793, -1.2772260375288724, 1.4513873829096475, -1.6921305803490483, 0.26047733579565296, -1.2017645050376535, -0.112677144122178, -0.36339038855045963, -0.30258989811275344, -0.9602096664817457, 0.39376053581469417, -0.2653684538113316, -1.2142347247301022, 0.2290633879170383, -0.701822888278777, 0.06391023669748522, 1.1994392827602867, -0.19700900852390882, 0.5736975716245222, 1.236457962637543, 0.6924402135517281, -0.31052500966201124, 0.06381316253078491, -0.4897391359065313, 0.6578213588198453, -1.2061020721033988, 0.731598968021233, -1.5197301704758046, -0.2755416819288007, 0.31705062164594294, 0.5305957117187132, 0.20722904156465194, -0.49294710447794904, -0.41391458807054143, -0.03044548027494564, 0.28880619153384907, 1.428149803267743, 1.2674052436162564, 0.4273285740686145, 0.311279330140618, -1.3970435280331894, 0.16219009554576846, 0.5595629260487739, 0.21005379203798788, -0.7685746450706085, -0.11036154067995005, -0.30373619639999944, -1.4410070348079256, -0.1663504785849798, -0.6745690259105769, 0.45293035421098604, 1.4172064809456357, -0.39126445192963627, 0.6842799883402856, 0.39130462034455143, -0.3071911299521795, -1.3255571625043139, 0.3020309845551011, 0.4031776773154996, -1.7556004855634988, -1.9237694162716192, 0.0913550545810419, -0.39146390122912134, 0.8560063070636166, 0.6328261834496892, 0.17212407957419903, -0.2724491823679626, -0.9210273286210351, 1.5380936634417084, 1.0743167984930415, -1.3991324590410334, -0.1522537756570578, 0.3977206753436915, -0.0017549097424502788, -0.598184120378459, -0.04748263954997868, -0.7418851706340399, -0.33043235452344705, -1.4157550974598847, -0.11465619497017274, -0.22025331831069347, 0.9950555768932123, -0.8525429015378873, 1.623316965139944, -1.1334706333559423, 1.774929229752936, 1.8041958454391984, 1.308889320458691, -0.6154099515132735, -0.2501116043674461, -0.8490141228757239, -0.8925842977593776, 0.05744176493806885, 1.604882804314051, 0.24899448432460533, -2.1485619373840152, -0.44718831932988934, -1.0114135708611693, 1.1881554323989407, 0.30809562840055893, 1.1911436251529883, -0.5069293310054038, -0.6940210322816831, -1.4392470949751441, -0.7448671513207039, 1.4181053949316518, -1.086047665492319, 1.6206809894112422, -0.02026216613761466, 0.03586141195458309, -0.4022867210138532, -0.8341860681298816, 0.05678442271656239, 0.537021503182125, -0.1253709566307463, -0.2681434542565817, -0.5569037710362036, 0.46377259822406347, 0.4371657096710149, 1.614627879344236, 0.5688732369706784, -0.8455601947312258, -0.6732510598886231, -0.47019048126385204, -1.1894402409878015, 0.05988296178548287, 0.5730461674159758, -0.24428151710469664, 0.3666092468206277, -0.23898431762627081, 0.056549977278387314, 0.4133979734548416, 0.04658844454637518, -0.7703623050132916, -1.779008082254888, 1.2499863773463127, -0.26977159489578034, 0.03356704614194525, 0.5879654205308755, -0.015092817665372748, 0.3183482613829142, 0.3154065780406787, -0.1055649157579918, 0.7808351236739033, -1.1324342317654343, -0.5320681938950274, 0.7505106436582056, -0.18052097703086095, -0.7333646619011486, 0.5739497157222256, 2.7286732017597157, -0.46935148275650795, -0.3723823852255654, -2.299736353959046, -1.5564459722838933, -0.18967821100062252, 0.06116603765569998, 1.4610551630296944, -0.4755555735140293, 1.2930673093370766, 0.5409154935795877, -0.6113453303185912, 0.20983458468457664, -0.9352600734300578, -2.3403596360131753, 0.6651072801761493, 1.0602195224486022, 1.0485372386854348, 1.0538984256921997, 0.9243328517131206, -2.0920002514301226, -1.546738522518146, 0.6860954847935427, 1.1692158129636938, 1.1316954777539214, -1.1400924609000107, -0.31815495849641756, 0.40135127658696534, 0.5671262855311553, 0.15996215668109254, 2.1575557203406177, 2.4165628132782335, 0.6359390665184279, 1.0252394653020698, -1.0798115220901539, 0.9392860660608261, 0.028543462569871423, -1.0697541176272483, 0.6706093153372054, -0.02007995068105624, -0.4790132586496005, -1.6766656903422157, -0.5989404234705222, 0.08273936026232867, 0.718325310596474, 0.3596838906156375, -1.623106405425768, 1.3061439208717671, 1.098911458917398, 1.9205853764184397, -0.09721636710881315, -0.2595771033661322, 1.8152475898981195, 0.14914881835091667, -0.1610610885364774, 0.15828836682034952, -0.8085626573017053, 0.35951994221028477, -0.3064715902724863, 0.38560461221502473, -1.00146070492508, -0.9575072319430545, -0.3588654193768104, -1.911489520006461, 0.0769640351001144, -0.977912366434502, -0.1444080759425521, -2.3971180467089774, 1.6214053469919945, -0.3002645861177507, -0.8201348187167344, 1.781875963351447, -2.0461323457182514, -0.6357690220811216, 0.881390726623478, -0.589764806188708, -0.6022743814074875, -0.6568800626474485, -0.40658359188585175, 0.13297488535868104, 0.8911588997604312, -0.5523280443980922, -1.3930648099472873, 1.3050452353276618, 0.7984057355077919, 0.09709900913843043, 0.6380787417704818, -0.6028491947945929, -1.6301557842734715, 0.7902222951485527, -1.1024998391231298, 1.3814175911554165, -1.073270737858302, -0.5495552509897049, -1.4390441092451363, -0.01659036278662611, 0.976847535877711, -0.665306012075556, -0.1552974118498915, 0.29843545554374185, -0.7415817972483154, -1.6501609852390147, 2.1347842143156948, -0.16263162030471354, 0.32840151442768584, 0.8985597887067011, -0.8785882126517821, -0.18105038042661864, -1.3874082262304568, -0.1844998698343713, -0.027063903407240592, -0.4087835322987234, -0.4689921548254418, -1.966591813869192, 0.2531740116514195, -0.17556473263743508, 0.5523268802745646, 0.8584804770477267, 0.4016730270392023, -0.3594069317225287, -0.12810354737307747, 0.8303646335671463, 1.0196024574048819, -0.18881565007259138, -0.4486423085163297, 1.3366459769655339, 0.4895816539217431, -1.3274068539813184, -0.24767626911312665, -1.8750736952666889, 0.34574528787181463, 0.47644753075454904, 0.13885297221826842, -0.0837069459573268, -0.021766177608051242, 0.9678547938150086, 0.3726161525197536, 0.7964646779044159, 0.23980134595979088, 0.46921183815471096, 0.9817668075959723, 0.4763968784411146, 0.02010093561978075, -0.7570128647455628, -1.6310700226244779, 0.6884023881440977, 0.9530989468758967, -0.42914755171189706, 0.8090484925803192, -2.622474452903511, -0.19593424730629333, -2.84688382376934, -0.09944415747313394, 0.052408679017262295, -0.7348014355262718, -1.1817598595855263, -1.2032748047624202, 0.6486851418588007, -0.06454418646882289, -0.1618297493225327, -0.21058342800696236, 0.20825184537237004, -0.7970467750481611, -0.5791519028398767, -1.052726836420402, 0.14727719554348476, 0.9688082631908909, 1.8181240582019154, 0.7050724429842885, -1.1170230064550066, 0.4374601387886857, -1.6873193957131094, -0.463316909362176, 0.12354252317523928, -0.6871614762531036, -0.10947993741327132, 0.4670764576309136, -1.8758932778212423, 0.8658254162814961, -1.1279148450874288, -0.525146336122315, -0.3498965393124805, 1.00114338934433, -0.243070226454799, -0.8106452700280454, -0.7861137087679303, 0.32565393908676676, 0.37464843834951994, -0.38116229568852167, -0.5652021903124731, 0.007543589715577611, -1.8024902956973012, 0.48472186691805336, -0.3130299339184345, 1.3280138843123765, -0.4904436528996755, 0.6570167271770415, 0.033309417942263324, 0.45587182336440557, -0.8250088516996644, 1.0499765709676963, -1.7322321147209534, -1.169074859175494, 0.5148013026075716, -0.10777801598801062, 1.5938556349359392, -0.01702977766014416, -0.30750488075907856, -0.9311535279785631, 0.8648294391548298, 0.09769261919522033, -0.6846728586577305, 0.25532345444639054, -0.3176424149668523, -1.720807386392569, 0.048108773413694815, 0.34458386653400325, -0.8266826247050786, 0.8589525640910145, 0.05405116547300013, 0.5508676209921791, 1.0171237648851632, -0.6433711968310359, 1.3339838868510592, -0.8696042318845549, 1.2218098213673205, 0.2476293176904639, 1.800895850975019, -1.3226371531478878, 0.3243749676431118, -0.5653883874625457, 0.5149585866311289, 0.47022839775663355, -0.23859856096293516, 1.4643055008149293, -0.32222418877067016, 0.7795869666301269, -1.5160369646643026, 0.6630717620978578, 0.7466207771564055, 1.4045392599282478, 0.24636629474576818, 1.2564597371076904, -1.2092110228499922, 1.4815218825566903, -1.5724183027549914, 0.8398097863372972, -1.27612242954155, -0.03814607875213928, 1.6379887424911512, 0.15877076389593248, -0.3220210476963784, 1.1672095030243819, 0.7262669821360275, 0.01080783295582759, 1.2678096211634349, 0.6049535693970968, -0.22576155899877262, 1.0574808392612223, -0.4850816728020317, -0.2687787629957019, 0.372940468762553, 0.553959398958978, -0.03196355304144421, -2.1185308466903496, -2.0171995379028793, -0.10639885091853535, 1.705372563984218, 0.13369292732788077, -0.4624839466039276, 0.6839026454290295, 0.3208682552865532, 1.902315735167914, -1.9132877647133941, -1.7241670930538635, 2.4700969523215925, -0.21142743114664173, -2.4037062804286387, 1.2689664828697087, 1.2017378078214842, -0.42044983161299354, -0.4954679372145918, 0.06498009920318733, 0.06814692726628718, 1.0421867017940398, -0.3516972402900027, 0.5078023193616283, -0.509473761070028, -1.0435590298547912, -0.0005219417396068718, -1.7293282538765065, -0.8640900520776408, 1.3135177004439131, -0.6950442287907254, 1.228870753332533, -1.9071283877544523, 0.09048883194716735, -0.038148578557924584, 0.7139825195203158, 0.5355859043419301, 0.6196627352981106, 0.11822882832014231, -0.38861150980148906, 0.016185182963424555, 0.7558206043381656, -0.5833344568699719, 1.2655050642742571, 0.1381255257226344, -0.27046399749066974, -0.6752878038526839, 0.2067791927837309, -1.1332324127904998, 2.549338469601241, -0.22560377057813935, 0.5822557633497805, 0.3542166166548452, 0.20991013994332694, 0.9840434400745511, 0.15444626918749094, -0.9408605552545218, 0.9027848567297564, -0.8467839915704657, 0.60631301148791, -0.22370312510131404, 1.9256610119679314, 1.0853484370680104, 1.9013830006359866, 0.41885978961487874, -0.4675977583862374, 1.543010792342849, -0.2522844236242759, -1.6298224160357946, -0.7661427064220421, -2.055102744058984, -1.5065701008653443, -0.3405951713160716, -1.0764140053251166, 1.7938534364063914, -1.8261427043578737, -0.4824096211925103, 1.013428821531669, -0.13519885128362946, 0.9779606836274688, -0.3002583174686587, 0.6749185850666659, -0.2887539146542863, 0.46308546165865466, 0.2241875344656426, -0.4260973448492693, 0.5098514280052637, -0.89969341301989, 1.012427551780154, 0.8837859825223515, 1.1023548056639347, 0.7740418434951029, -1.0537709721330224, 0.38273779741616354, 0.2667904273962574, -2.0080202472300734, 0.6717251007361733, -0.5406067648220632, 2.1554856218773977, -0.44311750746515177, 1.3649257332408073, -0.7611578453307771, -0.9142925814443169, -1.861902753340241, -0.7356171476540293, 1.0491116623347743, -1.8891648613175713, -0.1479409625984698, 0.6486199721005742, -1.7544144099867502, 0.6655203921683918, -0.032352162540424924, 0.01348049411999075, 1.0807974604059674, -1.2783283888985455, 0.6019814541592163, -0.048592413713287465, -0.9872884165753724, 1.6185183869161637, -0.28427196936306426, 0.16494100368596426, -1.38893014516999, -2.379550423320671, 1.1640709054967808, -0.6894896342045573, 0.3654043875978206, 1.62778656893117, -0.9601851217639804, -0.27051438674472067, 1.42702377701285, 1.2564236671564664, 1.24938823945836, 0.7860318455749, 0.3202224249214586, -0.4584181582807582, 1.5749164120067276, -0.2279212312789153, 1.3255593778437882, -0.6770894924769587, -0.8211649858239266, 0.02306723444435896, 0.6593744476626284, -0.5587474031648205, 0.14235605596838427, -1.2338740491833298, 0.8028956786807168, -0.8547390518371677, 0.34093360067240897, 0.009528518460979211, 0.24286507090826376, -0.9530089403283665, 1.413205104723578, 0.728029271901905, -0.5491840559551715, -0.3184505634442742, -1.4826361006704367, 0.30539577168522114, -0.4497247986486119, -1.2009256594663644, 0.694747512704429, 0.6936295650703059, -1.577367340763883, -0.40156459188189325, -0.8945114268153004, 0.26721010167794373, 1.3082028118665643, 0.4584237684842582, -1.3533566806356014, -0.48557185339457876, -0.6936887624146987, 1.0424271741122635, 0.4183285138016047, 0.6729403987327988, 0.23407481722216908, -0.16070363681685437, 0.5089065424325174, 1.816024102441303, 0.39905726651593243, 0.6175682979752731, 0.1177227491413396, -0.8538028602135155, 0.7808087606810162, -0.36515735698103635, -0.7164821790173939, -0.2512625135250256, -0.4385259014776827, 0.08064331495578973, -0.06438356379622193, -1.2928498202384993, 1.03554116125267, 0.5907068632847082, 0.7657111672764709, -0.6187225117675992, 0.20869517606732194, 1.371312894422693, -1.6091795315616675, -2.0388580245782695, -0.3561332681888512, -1.3876658725405724, 1.2264658690482972, -1.987190594707079, -0.3381095820846209, -0.07727703203627168, 1.395305836338028, 0.4123151228479698, 1.0709439167646326, 1.1480527020028406, 1.243584534220943, 0.6428878302970328, -1.127012024151441, -0.6734051656458058, -0.5472968111556815, -0.15426592446447474, -1.2881624127771167, -2.243857140881594, -0.45980777697967606, 0.9384176270355182, 0.50341717352339, 1.2774324823358227, -1.7219227868549407, -0.4166329090242485, -2.178126271796257, -0.701143086427483, 0.6383259866381278, 0.13977256216636993, 0.11002527097000926, 1.2965440861786592, -0.2669311829024305, -0.7598686382053166, -0.016628938043305695, 0.7029752646365098, 2.5201540358061294, -0.27331696647493303, 3.465610775792434, 0.8768285426196787, -0.4339489498484464, 0.17772587393910821, -0.8847979083463353, 0.15471676270868895, -0.7507999050980547, -0.5359742505486975, 0.5802154176354865, 1.2992819861662126, 0.7891347737022352, 1.423349522010605, -0.9908185505065672, 0.08456753645797181, -1.7075115882509668, 0.1787242142331575, -1.076801984432268, 0.20434351955024163, -1.3300107097963523, 0.06973607813732463, 0.7742454433667578, 0.03794277351773851, -0.752760825493372, -1.6443396784701718, -0.10908762803602656, 0.3862246678190598, -0.2103483734008905, 0.0875579592332047, -0.7388308766589747, -0.49637641901420376, 0.7811392398295296, 1.114500153152695, 0.13125988710935657, -0.22887799320122318, 0.6684497648822472, -1.0659569831862914, -1.1689419187705796, -0.928658488562659, -1.229025046817551, 0.20286667589202825, -0.06501272719384021, 2.169805779937599, 1.3594456780402746, -0.9631888819352721, 1.6942343408219243, -0.23847384700078167, -0.2456007085745729, 0.9918069847568792, -0.9600221784150943, -1.7687330002646064, -1.104633046430639, -0.5869462604633419, -0.5451834306509125, 1.1128697596484103, 0.16440196333766185, 0.6204733481214905, -0.8596770036240432, -0.3967587652297842, 1.9299693704843455, -1.066314276624301, -1.2225236455948203, 0.12241990011502671, 0.49540184948516996, -0.18473966696996272, -0.6689994215674484, -0.7645917435392969, -1.1339284581209088, 0.31935350942940377, -1.609023002964582, 1.3375321169192755, 0.1359263709429517, -1.3789855082926912, -0.20021073458291294, 0.8071347446167784, 0.6457722303736363, -0.5510958244213248, -0.6818128640880637, -1.5699360374355926, 0.030006475406361713, -0.7151217882898865, 0.25502737705000705, 1.0457348890202078, 1.0859163587151224, -0.01189171468681915, 0.2872372558322437, 0.7984922467176907, 1.5133301903625629, -0.4990043495138505, 0.3476201880557197, 0.8865713668026427, 1.3960548288603047, 0.8224842739830901, -0.6706211250139436, -0.22612107316774926, -0.33651444291099775, 0.13540363709878997, 1.2393240868015218, 2.0356591804086044, -1.3151473418749693, 0.39308403639281, 0.7532386156981864, -0.33446831783447317, -1.2286649114460855, 0.04834323789465474, -1.7705121548402656, 1.1653529811943564, -0.13231624661946476, 0.3713696688468591, -1.0329855943297814, 0.3903364091635189, -1.3467636543135328, 0.24095198714479735, -0.5766761257492499, 0.7191366404563876, -1.343789087986844, 1.5807972651291826, -0.49600334742226543, -0.7947809721464977, -2.0107655798561095, -0.4063207622213567, -0.4153149954883352, -0.8428343328996196, 0.2735369537111634, 0.08005841747523426, 0.09311307914505183, -0.5998351827333183, -0.8212234895365235, -0.006218625930136367, -1.1009074066861422, -1.3753022894896538, 1.685867316783997, -1.0784314352517468, 1.8259895141429947, -0.1020492920524814, 1.3842318880517457, -1.192525518866377, -1.0492246533473435, -1.6864805810147736, 0.7557030852949633, -1.4129773393070968, 1.5776286059973426, -0.4821070999271053, 0.1012249576001508, 0.7995986312504839, 1.0441180583349754, 0.798741912531493, -2.0129544990816943, -0.703275649161627, 0.469704104492138, -0.5818843946025678, -0.5024162893979811, -0.8529308691685737, 0.9869101873612874, -0.3816089298320262, 0.15080605398736777, -0.787773727930747, -0.16905666182983134, -0.3345604955338476, -2.446564923732479, 0.9340008047128392, -0.5243672164773236, -0.22039730425514445, -0.5930598950847641, -0.5782334747573815, 0.8649864538794806, -1.201748466184808, -0.6295503610875083, 0.6269749714278278, -0.08655690565255117, 0.13534279350481, 1.782385804696092, -0.24992349209475062, 0.13434103686653387, -1.4760413785110922, -1.319961182285362, 1.197525285819029, 1.4287842133158757, 1.0496504963848738, 0.2898511763809121, 0.37035737891483395, -0.08301074710362469, -0.15158977836361645, -0.27647633029284135, 0.048183922305671464, -0.1860546349716902, -1.3695100133503666, 0.30035334679255205, 1.1420959904941668, -0.784678505230806, -0.29054439337885307, -0.758668500522506, 0.14655863716201606, 0.10283518758655415, 0.703764644233734, 0.45049947529535767, 1.3534373935825645, 0.3595851131894232, 0.5171852547560302, -0.28874954648758944, 0.12359834662548283, -0.665718525050167, -0.31150416792158353, -0.008194868242307137, -0.788680304691445, -1.1887574257553177, -0.5493646377710516, -0.03843327009528267, 1.3052732412524592, 1.3464888015179155, -1.1556642756873936, -0.6843085469436426, 1.3144147928422032, 0.9755269974009989, 1.8124109733424834, 0.7517457747626008, 0.25725546190867843, -0.031573342656751185, 0.9848685753623164, -0.6749277015604739, -1.1146252356637625, 0.1604735544230876, -1.0274953434196863, 0.47030619506531424, 0.8211383243152917, 0.7655231368576386, -1.198635983032487, -1.0418462747622963, 1.1210826928334467, -0.016489569014662767, 0.7042816418330793, 0.5798043413517816, 0.7591120596775881, 0.13258855253631535, 0.22158460932915963, 2.0641561795107317, 0.39270053742332184, 0.6412706185509626, -1.0889710886656434, 0.5321994245737988, -0.10687108684432488, -0.8133119641698966, -1.553648724170827, -1.066810114559896, 0.6825075241760323, 0.4373106094302871, -0.15607114867048394, -1.0324998965094923, -0.3767756049772661, 0.3745926305297617, 0.6740441229827342, 0.6103944670347139, -0.25225159609255, -0.5146105667721279, -0.931652062106193, 1.3879671501965498, 0.13337778451864304, 0.7896209427544375, 0.7891963664348256, -1.3474648605872257, 1.5569005589087532, -1.8583310512557505, 0.38206585563104695, -2.0985119125986493, -0.6283557262411134, -0.934038402698513, -0.09698709387335419, -1.1491294086865729, 1.0168698968514422, 1.2372308327442303, 2.051901696108666, 1.1888031407469037, 1.141856978806301, 1.324885180637802, 1.2812623307179627, 0.16224292777150337, 0.37702825521403, 1.2421396660671287, -0.5912554981280468, 0.8444727959499638, 1.3652275022990745, -1.2389923783663135, 0.14301591101218816, -1.731728100235859, -0.9650467360358606, 0.5496923806884104, 0.19882144236361185, -0.1344128609477543, 0.7538588900458395, -2.5087262700372945, -3.6372093153883003, -0.568979969789387, 0.23243154303678049, 0.33161025918140796, 0.1120928479690954, 0.5812717505018031, 0.19772382705087407, -0.6694040749764966, 0.5338478462699208, -0.6713052887157489, 0.10089872411477877, -2.5865787675064404, 0.257361501137865, -1.2522145962019358, 2.7081446684364607, -0.9436158589054772, 1.2015999217337403, -0.22421178808944725, -2.097830799481833, -0.9045254918510283, 0.34422695629154904, -0.9854328104563058, -0.9104072612963338, -1.4119970053846442, 0.6705806195147704, -0.20689703017238928, -0.8746765669032736, -0.713247850823167, -0.5200758566983354, 0.4134011587614612, 0.8520067079240132, -0.4156802931903063, -0.48618459717942086, -0.7277233904361378, 0.4183064404862555, -1.250593797963498, -0.8597757976411025, -1.1034533487036187, 0.124162265276676, -1.0132998437436227, 0.4163686422984923, -0.14165422810551662, 0.971432809397156, 1.069977064427072, 0.9291405706094048, -1.1012952726265968, 0.8049640256987952, 1.4678755163226118, -0.20518478121961797, 0.0965894494258275, -0.4611114841897531, -1.4463300843177536, 0.8041362439589249, 0.5518652165143925, -0.6249888922916477, -0.1251938675368642, -0.10749998030341917, -0.5919707021338274, -0.43261904932130274, -0.7621580094408231, -0.7604331439969895, 0.1180481365944868, 0.28598830846488404, -0.4700411953646512, 0.5951422462160926, 0.1528848913952399, 0.5212275204683117, -0.033495810174455236, 0.5224755821235594, -0.0632908767545391, 0.9105007237560119, -0.16306794721302115, 0.16605433820427698, -0.2264053608400767, -0.32019688698405424, 0.25480731236446313, 1.1414558730985767, 0.3244941375979493, -0.9460151250624452, -0.3172314507864252, -0.6349083751072043, 1.253169778715751, 1.0842418741917128, -0.4216093498398711, 0.4654121465878896, -1.0459282458098471, -0.2305676086756553, -0.8600756438956696, -2.112620928659149, 1.558604037090356, -0.32079186429728623, -0.12994985589946378, -0.36152604019120443, -0.27586497265793236, 0.9091333501096989, -0.6917396925591807, -0.7658727297266192, -0.28255251737553505, 0.8922816796379031, -1.576219598944974, -0.13329629152875994, -0.0030534703105413517, -0.9944063116746411, 1.9305318232109843, 0.6224019341705389, 0.03895111207833267, -0.5541561271730285, -1.1255366783968297, 0.07389320603529569, -0.1374796262940238, 0.766036450305526, 0.41283228398642574, -0.42160681246669485, -0.014959464916545798, -0.21871493117137367, 0.4981047885866357, 1.449881887201515, -0.1724867931109568, 0.12765303341962397, -1.1809080677693382, 0.6048261383149467, -1.5544138335662174, -0.1250332748767939, 0.0887785418735886, -0.5398482954142962, -1.7677561061547629, -0.8853179427867434, -0.6599445949613735, -0.08764138666248633, 0.8103113421086184, 0.16822013956138337, 0.130999632580667, 1.2636982760519244, 1.1164867365832998, 1.7183038349185356, -0.36274944711608326, 1.4284758819856034, -0.24995131274522447, -1.4133058476140583, 0.2719880910236073, -0.5215620351200432, -0.2488276344192755, 0.6258974286972723, -0.9591218351511815, 1.7622854056953567, -0.4093173020136248, -0.07397232482654378, 0.7369468751346074, -2.3040409484318105, -2.2617403053536393, -0.6951680427823831, -2.0482472096162363, -0.4848059748478423, 0.1272087566222819, -0.38821213538687677, 1.113883225221925, -0.3745437251638913, 0.3958162318892296, 1.2639072276450147, 0.9529538982567715, -0.42807221179111365, -1.1428300805065679, -0.49003046090295116, -1.1387442273117092, -0.9356399824852466, -0.19909018640855378, 1.5161130066792505, -1.2224824074871716, -1.545934802899326, 2.2865220826013437, 0.7274886600757451, -0.24448180931743047, -1.8522500507390212, -1.6242188058028293, 0.6235479496031476, -0.6657876428905514, -0.7834521877665807, 1.2142545721236235, 0.23858531546756703, -3.2064267079517235, 1.0564682899413453, 0.940236738036328, -0.733867809555492, 1.102645720793811, 0.17528670091431964, -0.07300608274957844, 0.5273749829260075, 0.5484737677485285, 0.575732021280294, 0.3844466176800177, 1.6472780629455546, -1.6648192483425297, -0.9660310172577716, -0.26766733098158557, -0.7490325944751549, -0.11533020767079315, -1.327735009541518, -1.8040725652516463, -0.92243678703938, -1.9739119646866319, -2.2178144197719414, -0.9571840697105864, 1.018418360117778, 0.3376193560246592, -0.4121953070901231, 1.6516415627194814, 0.055299500997670614, 0.9816543950284283, -0.0495364126227333, 1.4754603245098008, -0.517750739443889, 2.9208482998771057, -1.2692622507421047, -0.2489461337473454, 0.044563985506571334, 1.0637142760614808, 1.3006061109614535, 0.4412932755828808, 1.5416152114079809, -1.048178118657137, -0.3732256322587019, -1.149442021611534, -0.6347185559365369, 1.011700784214212, -1.1414976331999138, 0.658547437475663, -0.6054677677181739, 0.6300055827882697, 0.6482888603758574, -1.2325808966708633, 1.4246662043912994, 0.05381471552823115, 1.1681090900881894, -1.245764212993351, 0.6507832182995138, -1.3824674007532718, -0.9907935134456072, 2.078858255590586, 1.413326053100626, -0.3385464245832491, 2.2714714560150844, 0.9165233887267722, 0.6441915257825199, -0.3601554471772999, 0.3745586678766252, -0.4042586336487513, 0.9349702329076747, -1.4237965547014737, 0.9777121843625293, -0.2717978204858782, -0.6626184271504312, 1.9759779231331, 1.3235126223527827, -0.10643650753878835, 0.44627517778385223, 1.329425717646469, 0.8410741462612459, 0.7545013676876263, -0.9964110320864119, -1.0907308766843207, -0.24615298702901217, 0.19233123563067708, -1.121302396533715, -1.3070101092959965, 1.448041664464303, 1.148562179406626, 1.6375564214808627, -2.0911644614875438, -0.3504784377655725, 0.11741994981728288, -1.022196176730753, -0.04041344827078369, -0.10817206947102861, -1.1803964355174488, 0.698323599065944, -0.1395084567026023, -0.23090321972595249, 1.2698991752646627, -0.23954949461827355, 0.6039566842379415, -0.2026491639379545, 2.360105544033134, 0.43549228083882063, -0.9544692942315247, 0.7836761498369478, -0.49064251616011134, 0.28666809025586804, 0.35876892459850745, -0.10197239655796335, -1.089950581163654, 1.6782271441438854, 0.0005033076349277162, 0.234123659272824, -1.2622446318404483, 0.4576608035110448, 0.03387517845885063, 0.11400921071694199, -0.7674250779630821, -1.5736735897476426, 1.642153228483105, -0.8754207176464259, -0.04618440639625925, -0.2836779986231078, -0.11685291546289701, 1.5913030722927632, 0.688146405793987, 1.5856487973503992, -1.1475710852585466, 0.506465773873376, -0.39970131675755777, 0.31204468877215696, 1.008189545648485, -0.8622446104763949, -0.7018429651742062, 0.07508370689434328, 0.3945317098497972, 0.2463116400642802, -0.5292326353111092, 0.04777491014213324, 1.0668598904233397, -0.3357893493886898, 0.2792063097725926, 1.964769601267429, 0.6706263123004261, 0.36092686939864194, 1.5200796764146842, 0.6222517843852928, 1.770879739727797, 0.3354671702416256, 0.041261426942519774, 0.643873276667252, 0.047664348052519984, -0.5774748222103055, -0.687126499417348, -0.6141319025262628, -1.247218148984428, -0.8670456119559141, 2.001063577701363, -0.7060796880831518, 0.6402213171489198, 0.5277760308859, -0.39356575046620185, -0.41001147775569896, -1.0150091381517377, -1.2724833628326049, -1.1512054666456724, 2.4792050333772626, 0.5205026676051063, -1.1050880429863186, -0.4202176565529775, 0.0643730554826634, 0.4778889974192536, 1.2612888549991175, 0.40775342523958263, -0.36524730712251613, 0.5285858896413557, 1.4186257030180849, 0.017105286093066684, 0.32432756468592583, -0.5016172893199894, -1.5180853544956827, 0.15054982307975365, -0.35870034543173884, 1.6589741869470116, 0.6433829019951953, -1.348383036318936, -1.0922236402241052, -1.319237806125811, 1.4597017399903212, -2.469481212245683, -1.1755118073138324, 0.3921453631779302, 1.4891979158370057, 0.9455869459008955, 2.3890989203824993, -0.8012551707766596, -2.388525218414715, 0.5659951500632221, 1.0086746196429164, -0.6923219193746998, 0.16453128270771253, -0.1787888264159697, 0.28988079652672016, -0.6164553036006092, -0.8670437589336638, -0.7403027517051958, 0.4050623487718073, 2.3873305673660075, 0.243695049069981, -0.5003751007000574, -1.3287860408783658, 1.1682159809236592, -0.9979717992885115, -0.6432232919066403, 2.122550009057694, 0.6983053639522663, -1.441980717876134, -0.09948345614913441, 0.14074132251088994, 2.1468894877632523, 0.1896163699741853, 1.5832188819788313, -2.3805528781191527, -1.8496043908104622, 0.3810767412957261, 0.7929191095246738, -1.7679088850505071, -0.4404793807560692, 1.4494393685799458, -1.5752892860868881, -2.1687363687941774, -0.9070657944374091, -0.8498665185668206, 2.368833146226179, -0.9042814611038621, 1.3532694759482888, 1.1806374852644048, -0.6594782568849659, 0.14158053944841456, 0.7125719113312305, -1.1215130693229263, -1.2155934834951914, 0.43161641776813986, -0.376606231511085, 1.022264842159261, 0.09420329734253054, -0.47176435162671926, 0.23361860361881434, 1.1982810844106693, -0.2260819597098308, -9.304661456490728e-05, -1.0783384915864866, 0.6894372055716884, -0.056745956417520865, -0.398601503279041, -0.20493746183785105, -0.0485436973746389, 1.9546846925384584, -0.8420009247693663, 1.9172634850929338, 0.7784538565088519, 1.5974800824121493, 1.371366880162479, 0.9034107951401463, -1.0384267346944778, -0.6968534672850825, -0.9754371190907609, 0.7054209872578565, 0.22325638082878993, 0.5955831717849543, 1.2905566377111652, 1.48355197569434, -2.2106243517929682, 0.8615802434774487, -1.0007070906098192, -1.159769435593615, -0.9939217095031613, 0.7301523302997324, -1.0687326044843695, 0.18010714510893464, 1.0772759351317334, 0.9037990067788116, -0.4355725891010151, 1.0332634450143001, -1.8151709599993637, -0.1640287345895746, 2.7930078336060604, 1.0525733383344222, 0.48769279925652426, 0.5307659784933059, 0.914836985934471, -0.43706010728523886, 0.20017203939382547, -1.1341690235958264, -0.49954267493004, -0.2663917168016691, -1.0922300105792508, -0.10592504386801917, 0.22532619559296324, -2.583029815320912, 0.8086183340210009, 0.6223792859642455, -0.45643337549703067, -0.2381076747540683, -1.374771468725306, -0.855768781249656, 2.048223394573607, -1.0994127299356977, 0.32044205876244863, -0.6222219450551063, -0.22907803785607245, 0.21251527744794263, 1.3386852955729656, -1.0411850037836752, 0.17388552489008277, 0.19997738752861496, 0.7942490289926196, 0.09512023521141413, -0.7208147642006929, -0.19567080359165576, -0.013334591918099076, -0.43529838992246056, 0.1405085079174185, 0.7481007401926727, -1.3425421559966912, -0.47912741044060786, 0.5689030659052409, 0.6878411260482208, 0.6399225248667239, 0.3972228347834727, -0.17022736662283897, 0.7261941979996307, -0.31026286319910207, -0.689408431910955, -0.044742242253123114, 1.2323577034493698, 1.5239803290444982, -0.07950466649589151, 0.0024236231484260737, 0.09369899644799766, -2.3360116679383225, 0.8898085382528274, -1.6094517559728243, -0.2654431316536365, -0.18702187236192447, -0.17713086302528544, -0.6255344527081894, -0.866874494195625, -0.17697918340061616, -1.5949502814556065, -0.6623111311337904, 0.4811094234326513, 0.0650439013996757, -1.6715752440705223, 1.5064885422244572, 0.9984607790701279, 1.8666255594908316, 0.7862644963380085, 0.7737075047848379, -0.16721315442618648, -0.4451337081807925, -0.22600286156593533, -1.496429284178233, -2.08366806795187, -0.4634632478759749, 0.7078763208412104, 0.8637564610181033, -0.41448909157937197, -0.45020916982237486, 0.4217287665665183, 0.844789738553951, 0.021495467907192044, 1.0483628902445465, 0.8332319499556333, 0.4276731865407836, 1.2164855003070278, -0.6710624693420915, -0.3417486304079619, 0.10927428564217309, 0.1978107540593856, -1.2020840634940104, 0.7390287387373332, -1.0444572222650117, -1.0342638782794855, 0.8029288771064822, 0.7847400898922939, 0.8194082030632776, -0.4142502676064277, -0.5346578080020042, -1.5038582357891193, 0.02348347817676077, -0.8222102881638119, 0.8421704582369018, -1.1794299614699948, 0.454183665938342, 0.24258437079357398, 0.642969823612403, -0.1489798779999013, -1.5900519612830386, 0.3329402291731859, 0.6247721701758189, 0.05840755152864576, 0.26735574019251707, -0.7625222381814354, 0.7988761230425362, 0.8652722041570302, 0.8052159858111343, 0.1287522067849412, 0.3125712379826466, 0.9204643789038962, 0.4764766262450277, -0.0999337771967653, -0.8833336557000986, 0.8361550588179701, -1.0388372025126333, 0.07656270282327932, 0.4062266587639719, -0.8653965998673814, 1.1137385631115502, 0.5152984335485818, 1.7896565771466666, -1.95400309985627, 2.0152105360063097, -0.24205316411413735, 1.2476311495866939, 0.923999614057424, 0.3037675979542209, -1.5587192372850707, -0.7108920907200917, 0.4115267036549053, 0.3637598567141955, 0.313967479292695, 1.8291233325493057, -0.6410149010117061, 0.11750067720737903, 0.4270658865482018, -0.1817078857104935, 0.5169521802523458, -0.17303112678446897, 0.49769422776646527, 0.2370698490857676, -0.09661759648675022, 2.5549635596750853, 0.6112378280853131, 0.18528590884089788, 0.4078507203472056, 0.20978905179153742, 0.2982203456125808, 0.17016830814114753, 1.1701183763031664, -0.1411000373437828, 1.6954239861774245, 1.4243502939974113, -1.9480463729582738, -1.886918184373908, 0.5678292745238076, 2.156994040975455, -0.26858348737364257, 0.7433138357606442, -0.7441641734457591, -0.047879592277486956, -0.7330785847505398, -0.70675779117792, 0.09338303364618554, -0.6826304219883351, 0.9245215673688191, -0.37391487520834304, -0.5819469553551048, 0.22188314209532373, 0.06579479185976134, 0.46009527888146873, 1.3447014164912587, 0.46835122185030764, -1.4341655569136067, 2.3304831478610426, -1.2706405337400912, 1.2688244153041195, 0.9620892865142244, 0.1304074657783178, -0.7199250980856858, 0.37980438875738115, 0.5613563466556071, 0.062045677189936005, -0.9088941339727318, -0.2750389910079356, 1.9496661921454894, 1.3253703376572379, 0.5804776165988794, 2.076117485792409, 0.22503226652709668, 0.06969021724903493, 2.0914683586231377, 0.37061712158473187, 0.5453861196249665, 0.8090421727553738, -2.2123571725804503, -2.7803750219773105, 1.2331997462305577, -0.3965617603476896, 2.0362888728921904, -1.6845579924800365, 0.1814068558088375, 1.2979546611151007, -0.5079497110431431, 1.8444877255894563, -0.2872193003695202, -0.8809877054884642, -1.110783444775544, 0.06103857571303047, 0.18180359955211584, -1.1410161318400756, -1.0354359939132867, 0.8586467704834998, 1.3556168204703947, -1.2632893865566754, -1.4396576443012417, -1.1084031329452158, -0.7720095483589748, -2.1134466723411673, -2.231318669533106, -0.8283703170585927, -0.34664329159557644, 0.8532310813960876, -0.42056837498558114, -0.299061913838691, 0.5423863751269462, 0.47109530651175946, -0.07603651380080255, -1.9362447621250198, 0.08880540798848031, -1.4545027715986218, 0.5394834126843017, -0.5092120195565618, 1.8522887026369141, 1.1146817266277198, -0.8519925174504938, 1.024527045843023, -0.3531795267962912, 1.154815383703234, 0.2045801791751101, 0.43083095102355684, -0.7412873125847323, -1.6424914712660565, -1.4046300209385572, 1.2459803731305015, 0.13209350646340887, -0.621738143377321, -1.1006657732591976, 0.05269648350204325, -1.8884710721169917, -0.8118478210737036, -0.5731366362024357, 1.4280454139642282, -0.012722931848463298, -1.7656087421186697, -0.5707883230187405, -0.19014799864099993, 1.4462515578954334, -0.8013676709300548, -0.8369701606290724, 0.5101417649155779, 0.420354674125872, -0.6068669676079658, -0.897299621192975, -0.5721968607489916, 0.08859820368303778, 0.4064231167823424, 0.014904172893231633, -0.056297338879148846, -0.20353199082856363, -0.6259058979282687, -1.1127743697805828, -0.9321899393635324, -0.8742376423213571, 0.24303365955738365, 0.6467644385995613, 0.5205206673517409, 0.2711733367932555, -0.8680671901041543, 0.9750505299518015, 1.3833583291531437, 1.7159656718808556, 0.9401261949241357, 0.5667900795673952, -0.25781228641813647, -0.10086105108366943, -0.015129718808596251, 2.1097570948398787, 1.0175697275017834, -1.5213710503807052, -0.16144216432413613, 0.6269589417638111, -0.5407315990349426, -1.1549307903208479, -1.5087945855888019, 1.1544513162245027, -0.7508791585625713, 0.22291085479384087, -0.43696385488754874, -1.3463639951706352, -1.9671293797621652, 0.6452403292723148, 0.25111656939804533, 0.26105314231673843, -0.5312092740954698, 1.889401064552464, 0.4440624379261484, -0.010108948242470179, 0.9507124124904963, -0.8892725539463274, -2.1890851035480687, 1.6562095215973662, 0.9022065411384181, 0.5867573578687493, -1.130405719057898, -0.9691258186173765, 0.8760629169488204, 1.634253475316665, -1.4215635865028817, -1.723664328782463, 1.533794877018031, 1.997930251829979, 0.14496727674689022, 0.1274521943847483, -0.6853015565865858, 1.5276943596804022, 0.3011813322268105, -0.2576303764414043, -0.6075801907879523, 1.8163111349024625, 0.06592655680269081, -1.354573664283491, 2.723434317650141, 0.12787875979371852, 1.9836669853987938, 0.04236358645206266, 0.05175585054805666, -0.9180812747403819, 0.030574450051578692, -0.0376310177024529, 0.13591662772090451, 0.6884683908465302, -0.2399555251452645, 0.6050617949265478, -0.5750856414262809, 2.4650473611499457, 0.37568338392768363, 0.024929701289521294, 1.3746732504454349, -0.15618110430934992, -0.24286348354453333, -1.3213595479271218, 0.6077172879250592, 0.5869117039608684, -1.7756702259223578, -0.4823942976641434, 0.5734267407157057, 0.9407183901643157, -0.10321771002643318, -0.393641048411154, 0.2775698672268877, 0.12407075125366347, -0.12214269254950944, -1.5757148552850808, 0.4768892565021923, -0.9414525271012872, 1.2845180948691945, -0.2744902783524342, -0.45907903976385234, 1.1032959938958493, -0.19425110958055813, -0.5373265514624541, -0.06147675499236567, 0.0782902095845064, 0.7495229746114003, 1.0036232051940541, -0.2897252562659435, 0.4098784397970208, -1.8385441280823434, 0.14712647010487398, -0.22323163026237566, 1.2662605906220197, -1.6165079238597782, 0.4422465254686984, 0.2028622719207512, -0.32458748684240607, 0.607681129386035, 0.28969386687237264, 0.5513948560697312, 1.2415486943592144, -0.5611264166304263, -1.8524200438760348, 0.5043320886874643, 2.788631693441186, -0.6754215724131442, 0.14007488711455815, 1.0825293742623774, 0.3831141933725935, 1.9407279328307505, 2.6516803017329287, 1.0071297539611457, -1.0260282691721587, 0.10861432282679129, -0.3961341529998967, -0.48254064305823907, -1.0989971160806347, -1.172986604857274, 1.1886202857094588, -0.6306930792409033, 1.1567018900042765, -2.281520679742403, -0.34857614215242955, 0.5665058773686631, -0.2183439376766908, -0.5548471266060565, 0.7605275749451272, 0.6699348010502916, -1.9438304471362815, -1.2439164840288697, -1.6288232816421626, -0.046733459230017434, -0.3014170130649927, -1.0852276528549882, 0.8993555777598041, -0.7806213081640488, -0.4938179484336628, -2.160637819289497, 0.030972274637505928, -0.8300905467377885, -0.8606463775440267, -0.5107498576010278, 0.19091238130861746, 2.090680016462572, 0.4515161896486545, -1.3168143776669856, -0.38120689827296356, -0.6959939419056349, -0.49950909300172774, -0.14080393757246806, 0.3716867341819063, -1.6522416595964253, -0.643393174962111, -0.3737023710798124, 0.7653143328324825, 0.502188693873043, -0.23746083047395375, -0.8396177419542776, -1.3481318982176878, 0.22874827229418593, -0.5665561225040466, 0.10817775649061057, -0.6482850918768501, -0.4690047539546587, 0.012680192369574723, 0.4304040478749057, 1.7743100829486165, -0.8645606839987129, 0.11901451696576971, 1.4988734614221606, 0.23174775219171248, -0.764215914409596, 1.58989042994325, -0.08439539757798789, 1.0117771108274598, -0.28407168559047546, -0.5624072708347588, -0.3805707058612866, 0.01898777273867846, -2.3643389551396647, -1.0869388505897521, -1.0198806527594135, 1.1120142038691352, 1.7312801682506942, 0.27327819366332123, -1.753399444883046, -1.1628686692519639, 0.10644244327118452, -0.3518427897153365, 1.354709432782902, 2.348571678826702, 1.0724794701383513, -0.014670176645042866, 1.1511899717767506, 1.396591100959735, -0.09075657083039745, 0.7762441756480337, -0.774222140944922, 1.2651152024788037, -0.37262670399656594, 0.3954455902641536, -0.7030718081908728, 0.681269951520561, -0.9829227954260067, 1.0682327849764393, 0.32106627838387364, 0.15272533495020169, -0.6660448229450038, 0.1560212847558402, -0.7139192747692443, -1.2115935551309425, -1.0273390069964792, 1.9151448205033252, -0.45506070029914847, 0.5057797571933841, 0.8256724720776578, -1.1700957111005477, -0.22176680478611155, -0.42703234019124975, -1.5390393766373454, -1.4445535643884286, 1.0258699743798687, 0.10149786851915092, -1.7611102153351137, 1.7431094981359196, -0.05620241772520197, 1.050712733339804, -0.07735028727542405, -1.9278766088860664, -0.29612792169514246, 0.29974365408615794, -1.0132862725893221, -1.0308912401082824, -1.1823788925847274, -0.4174926942177698, 0.2199663623827542, -2.954212906782976, -1.6546384311798115, 0.7531343026408689, -0.8607430163280387, -0.3755336670044208, 1.3654073568479912, 0.08029717950998759, -1.2916902563289543, 0.2946474470820429, -0.4937046832233579, 0.31705139846849667, -0.743580052122639, -0.7920165302994109, 0.8485883278213555, 3.1013113908166, 0.4982159408067732, -0.1930489000930649, -0.17285318444773062, -0.4183582007660258, 0.2662899008132991, 0.7809815264597343, 1.0440720291010108, 0.4503804496811951, 2.4737135106022135, -0.38578831524172363, 0.8291156301938404, -0.7818664033868498, -0.4948784809631446, -0.44984547957705806, -0.0362463680629407, -0.5853599335333294, 0.37506835461061855, 0.5341924887203297, 0.972429001325299, 0.4718951020001598, 0.9297323479621699, 2.434967767010463, 0.46189847558971053, 2.166487683734129, 0.4224105858432772, -0.9074447342334252, -1.5993507831957692, 2.160217672735416, -0.23845888822690287, -0.08399170313897604, -0.15200794383696037, -1.3555401985298774, 0.5449963846232747, 1.1392650255216876, -0.6227624628552831, -2.373038235558487, 0.8740370809002804, 0.5105879462036884, -0.8995485164507592, 0.23025843549789066, 0.44839236657538656, 1.0538322422044768, 0.6171705271116081, 1.0123867961960904, 1.7250544702644224, -0.47275627984844915, 0.9806290752608173, -1.0365530127218308, -1.6367191159518573, 0.1322220139757874, 0.6704777917368254, 0.37719691379879194, 0.2661365545922578, -0.6506594563134124, -0.9210065810309482, -0.0918231517552883, -1.825218194616202, 1.0803977523118882, -0.8089537695173623, 2.0043056788494398, 2.8285374001304313, 1.9927329403905925, 1.1177141499843444, -1.3367324058230092, 1.0001375815231106, -0.7553300829386058, -2.608521494728817, 1.1410914696846632, 1.0059528884826496, -0.3042838970241447, 1.066842986103253, -0.4627390361520734, -0.18054667504894628, -1.368737942203808, 1.223506948551109, 0.2580153546116466, 0.7689974360945867, 2.7072699622205016, 0.3570067754673734, 0.13700617313492697, 0.25341829719998504, 2.072213329124323, 1.194507488990482, -0.6021739996962122, 0.44795177626469157, 0.7603755902744695, -1.0664181604839478, 0.23786619471000967, -0.010060181798188357, 0.8166424542856018, -1.5737131732972995, -0.3717088514366756, -0.7560469813628504, 0.01289859346813017, 0.3616567342680114, 0.1272672391638764, -0.8499641503710973, 0.45928753707532605, 0.30048094261968655, 0.6679565996826635, -0.1751275066590596, 0.23704022172409556, -0.20024216785278437, -1.0753248132025446, -0.10733380129059839, -0.4106790756334046, 0.7271113046576682, -0.33178552366426245, -1.0155790254819648, 0.27322718204465163, -1.471794480798757, 0.9344953370959195, -0.08446699174484949, -0.9525978328082493, -2.491713696785767, -0.3788918207492339, 0.0019380954138133917, -1.10668340402957, 0.20711636102637496, -0.07349589380695175, 1.5097283336085436, 0.9392375217071469, 0.6780906960202268, 0.7207124329610006, -0.3218736710625824, -0.7048573245202335, -0.9753752480295964, 0.3662128087388411, -1.0397564582742929, -0.539620690137598, -0.3106722860845758, 0.41715552231233505, -1.0997161678130194, 0.10593659161581977, 0.48547043782806915, -2.0863054934246232, 0.3927473379962295, 1.2598833583091797, -0.7618024142890977, 0.49539899363578654, -1.0802160737755766, -0.37078720011900707, -0.25978707083242353, 1.1589539565043754, 1.468934421137439, -0.13324549244122483, -1.5329272666896017, 1.0379227449501993, 0.338214504782952, 0.22421650017377276, 0.5137373313474789, 1.1798257433913728, 0.8560620877236351, -0.03534619422569436, -1.084047040275536, -0.9775382693086982, 0.0229093028796936, 0.4195234924455585, -2.0688645949063273, 0.7950203771799002, -0.0037704160062007035, 0.8730491158267777, -2.0121455429263944, 1.151469897227906, 0.3811461474743495, 0.9946226986512622, 1.9394435792392581, 0.5903322268615723, 0.7837586292898794, 0.9475492323972449, 0.5920949907683964, 0.2372866204601288, -0.6324984823343544, -0.9799709784673909, -0.6994976010618477, -2.021865789606424, 1.213270360448634, 0.5090471924670705, 0.4694940554110135, 2.0581294896843207, -0.7740079984883356, 0.12827955228508495, 0.4808092639980698, 0.889251795438849, 1.0110675122375763, -0.6359023521930047, 1.1631240674022116, 1.4385042740171816, 1.1110514756971674, 0.43434564272995385, 0.722151896240709, -0.007970657766057121, 1.2431452532996772, 0.049424875437389035, -0.6366919369341358, 1.0877609725172763, -0.45737125170123794, -1.3504760337100439, -0.6365919420767902, -0.7787528863795294, 0.16080893192333656, 0.7934352653257757, -0.8055609892174662, -0.4922961131610938, -2.6086127011556233, 0.8356251099012206, 0.4905427050322602, -1.8350606221721706, -2.3494453701047293, -0.22919396333557776, 0.6926814875561151, -1.4890037006464458, -0.21086659556655035, -1.4214217641943097, 0.830973873471439, -1.2685078653441375, -1.036627584216871, 1.2130383577720618, 1.5395341817440593, -0.4787698660242646, -0.07723828303108977, 0.5958212321418414, 0.2012729846640756, 0.5703366264160113, -1.2334282284933862, 0.22638074862962831, 0.7211874308456602, -1.6415747707943065, -0.25833154019037646, 0.019039840673637225, -1.3557619332393895, -0.12674982883178496, -0.42333640789805904, -0.0479064626218785, -0.57503234424054, -1.0052067910798086, -0.11106084061904674, -0.489726539125023, 0.9033068467372191, 1.2325553873954054, 0.331209636911181, -0.19660283530765463, -1.007304697937529, -1.340792182334012, -2.9888794967219297, 2.035583552276536, 0.2605043709206112, 1.0799856209739023, 1.6373021479151704, 0.21923531456697185, -0.5014886949694816, 0.7470326417368484, -0.49223986986600893, -0.24735774185691026, 0.39705583116081006, 1.305459301624024, 0.5364978570774147, 0.891660647600439, -0.4491226038646531, -1.2090443336353924, 0.9895845163869648, 0.4407813033001303, 0.022535622119769578, -1.4143039900462384, -1.0778303097914177, 0.5056339194291132, 0.801407570575107, -1.29918543681723, -1.4114129513591522, -0.20984713730993812, -0.6729119747675129, -1.1228817620774703, 1.2556317364579235, -0.6059710213592991, 0.6633775228339962, 1.3995060729612037, 2.9776118607267805, -1.158401220840647, -0.7640014658632144, -1.8532291985097191, 0.3753755464324002, 1.3436821775682177, -1.218424804624124, -0.4874008375870128, -7.04004499465425e-05, -2.530265400892455, 1.6767175840673356, 0.5531386250465282, 2.111720228147597, 0.8906944692112214, -2.2222433237900336, 0.5155801210671314, -0.20748299445294704, 1.4330752253002006, 0.49092438112200726, -0.37990312584841435, 1.5777771321739489, 0.1836465262924738, 1.004443665561838, -0.15341605669119426, 0.06815455805797802, 0.5847145438850865, 0.859872683465448, -1.774981084841227, 0.968245547999531, 0.9461040682182873, -0.24917345934277083, 0.6321037636958761, -0.48743349620763626, -0.06034422495555481, 1.3433006123293934, -0.8464296672700762, 0.6348734981985488, -0.47656971861290537, 0.07275197947471927, 1.0716919873620245, -1.772912261680429, 0.06458683562605633, 0.8541866709052129, -1.7279095845203802, 0.36332816257679723, 0.6278365844518522, -0.7574529297884411, -1.7860396321556338, 1.978331547634282, -1.7532703248973234, -0.16559994871717795, -0.6486718857710784, -1.8989093905956016, -0.7085768748329019, -0.403058540569289, -3.4018531879749236, -0.7918031154351546, 0.671058318059908, 0.6617497263277083, -1.5432937847270132, -0.6748406812615811, -0.24547141383290663, 0.5113055217838315, 0.30677079985164973, -1.4987050840325822, -0.4595405864146977, 0.9892431016548893, 1.566420001912105, -1.9546722530237235, 0.2859181133706575, 1.0482771812067397, -0.426484638978329, -0.8465235554586145, -0.9008196730125095, -1.229890420960719, 0.9844931232812478, 0.024171547640790336, 0.056136575043503965, 1.1539942641163465, 1.2837249708243734, -0.6795413382868843, -0.26735138848746604, 1.2193134480910863, 1.4849324170839258, -1.1891067235063144, -0.043737171436854426, -0.5252926301429389, -1.1867746461564006, 1.9470502244545902, -1.0541348945096343, -1.6948812114990968, 1.0492417428915348, 0.029618101545128343, 0.7812497706502727, 0.6680120646312914, 1.2611514902265268, 0.9160052833403644, 0.0025560101952064773, -1.4224806516854382, -0.17185672980803518, 0.6710582346162929, -0.11012917342778619, 0.30934285965870617, -1.0747989928170734, 1.3780846876097472, -1.9393567567175134, 0.574811124069178, 1.314225644889618, -0.5734537277041827, 1.1988216137314964, -1.0892027273376326, 0.5434392412606501, -1.482234503062976, 0.7499659342794702, 1.3042396869756552, -0.10785872582357024, -0.8055521065835443, 1.4585892653899102, 0.1521517331795107, -0.6320268508910961, 1.6095504148726019, -0.6817842843976363, -1.8007161002947396, 0.26521368933965445, 2.2720052721362514, -1.5091666242949375, -0.38525227304037646, 1.1223346974401462, 0.584195841504387, 1.240343366655989, 0.3779278078345186, 1.6900749934819184, -1.503160883378763, 0.6619487656737529, 0.08630440260701729, -0.795287069163202, 0.28237659274602794, 0.1314188292634228, -0.3078448340481857, 0.8219013156419746, -0.5781234676674042, -1.129153793701501, -0.1267119187469414, 2.2506342005659836, -2.057421915252316, 0.9160806688137502, -0.9538626296366749, -1.4525503928107126, 0.7233349295592881, -0.1836297259114899, 0.18055610334058458, -0.106825517518001, -1.743803923390956, 0.19324889436976744, 1.210925455195739, 1.5690720903556112, -0.020885478273950722, 0.9207937243764444, -0.08276364108049777, -0.9653514081776529, -1.6708950446039177, 0.7445951220331094, 1.1667728506113244, 0.5192887367804794, -0.14451252135737472, 1.2690209363052711, 2.1516206715179345, 0.4407817110840292, -0.3902446312059055, 0.23013593218016973, 0.14738274552001032, -0.931751939434807, -1.6012109725039538, 0.5648423764076742, 1.0556547453753553, -0.21755183906803358, 0.6452907244741404, -0.5987037327862171, -0.6756033983705774, 1.6424711525335352, 0.41695850288502967, -0.6614576182724452, 0.9007222169691802, 0.5807968241753949, 0.5874073369405857, -0.21941220151556964, 0.4694906268786075, -0.2134302792343524, 0.7861636317397219, 0.485458625870214, -0.605726606930387, -0.4724489671688931, 1.0711002634349358, -0.3913903929149128, -0.6369128240213769, -1.3856032664891478, 0.3779123833593897, 1.066630645910561, 0.0717236621125385, 1.1824181815713375, -0.17046333412080275, 1.103339746300803, -0.28625900126155135, -0.3570887877073004, 1.8745205892160546, 1.199196443793877, -0.5518971601697173, -1.5125561079500423, -0.7428169444998579, -0.2909386025344739, 0.5581919408428504, -0.7322921914211309, -0.21917998344762507, 0.502650714210963, 0.4079967102271751, -1.014246493185238, -0.9006363155590441, -0.19815618351759012, 1.3410774043429843, 0.9191124948325187, -0.29469398923990214, -1.2119721082787762, 0.17744489136448538, -0.27035439838443104, -0.9480918068206674, -1.1376126519177534, -0.3249696062248879, 0.12989411825007036, 0.38345780610117525, 0.007283157013412487, 2.5127892623018346, -1.0734955930204362, -1.046970478630977, -1.7702540883953979, -0.7848036198351097, -1.9245315174872635, 0.6075875235002991, 1.5109730033577204, 0.038166980188586684, 2.375695229271417, -0.08408723172541661, -0.20531259201102225, 0.17544811630161497, 0.6424081089100674, 0.2631747327284271, 0.2658385137752975, 0.06032363353028867, 1.305054651967087, 0.6504498332287195, 0.36560475159438904, -0.5008148883810816, 1.495148925676, 0.06440207309016063, 1.215371381509413, -0.5207462670529831, 1.4368975757024085, -0.08702386579813998, -0.8498156062008617, 0.8667435252695764, 1.2913697667356652, -0.5608640029533875, 1.2089017602822398, 0.05042187131129324, -2.374239388918333, -1.486326785713186, 1.0777212625029478, -0.353255957862002, 0.4507459273003514, -0.29770690329197225, 0.39070938031375213, -0.08400477313643914, -1.9762598315262523, 0.4247218628723763, 0.9853044670153291, 1.9780798579266692, -1.3821240106610726, -1.667434772315347, -0.6219325547404938, 0.37731619300632174, 0.7271726490141137, 0.8149045976686686, 0.4672392491341915, -0.04017328291862224, 0.7562623278919002, 0.2190258253848596, -0.022625991637740425, 1.2082696690917716, 0.2864784566161553, -0.4458071103092253, -0.5247551973122672, -0.011171372880591201, -0.0960710564366822, -0.28797039734295526, 0.10757258420070959, -0.1070072924012373, 0.23925026927714002, -0.8416388677490474, -1.8556336862617187, 0.7010976794570645, 0.9380661795653311, 0.13874544088166926, -0.6966236290290821, -0.23333461364952643, -0.132860257007201, -0.6234120634923466, -0.3191352072176088, -1.307476807477734, -0.1054672073698943, -0.22399913546233202, -0.4809152430309314, -1.6069537978583786, 1.7690948607608448, -0.5706648212742435, 1.2357122981339848, -0.4676071257998999, -1.3063708009469488, -0.015802485506200368, 0.29426625774567144, 0.039195327674235426, 1.760411898662284, 1.3875961480080767, -1.3050183942568796, 1.5813299884413858, -1.525205022439344, 0.7604940565121251, 0.03789671359067541, 0.5726234875653, -0.9973243718888457, 0.7120426239726033, -1.336985057152127, -0.5440295188251859, 1.1938291466059907, -0.4738357839804846, -0.3120925063385705, -0.9587051431580961, 0.18740101737411835, -1.383129128773953, 0.1932125318224142, -1.9952023135875954, 0.02211262620688924, -1.0009130269477902, 0.47453750387375915, -0.3866387969911584, -0.6842069094220089, 0.6693341534609601, 0.7049956429378316, 0.49735540884402285, -0.05465633589181217, 0.46038061769475047, -0.5524693952108038, 2.850068224819134, 1.5993314193360988, 0.056550836202467335, -0.4823069481279466, 0.4330940223659206, 0.0990673396210618, -1.0899644296992304, 0.1427854107546079, -0.2915634086330726, -0.6904293822135933, -0.7791230911356717, -2.522824213927967, 0.09523217954097882, 0.25584863112978595, 0.26271300631488076, -0.2164307211695591, 1.8189679437081534, -0.7710460338220548, 1.922968150108994, -1.3690461493447157, -0.9666281268038432, -1.2271676165052137, 0.9194640626903761, 2.0282367607530873, 0.456434989520419, -1.37186198385889, -0.42707477991005316, -0.7077113441841403, 0.037870497527932104, 0.21839831725635972, -0.8350405940956255, 0.3841797255167785, -0.440512546007297, -0.5273958485749392, 0.7818632630510737, -0.6113524320894376, 0.2793663221174808, -0.14119658317746378, 0.04374419176836532, -0.19845550682700053, -0.2392105468404667, 1.3918371321066623, -3.021766312062131, -0.10539541966605541, -0.2831667720423376, 1.3807063758011708, -0.7258530776190687, 0.34840109070522046, 0.11496095438704043, 0.17412675884140588, -1.4632565729226052, -1.5732111800793522, 0.8111106623123908, -0.4007083859591867, 0.3058292837716815, -1.018176701712643, 0.771883341461111, -1.7864342662028236, -1.3231309292273028, -1.3476158539564782, -0.6799662484251546, 0.8172946594543592, -1.681151890592647, 0.25264900929678286, 0.6598404324356582, -1.0512147577193809, 0.15470321265196027, -0.26066444601101013, -1.1092764770020542, 0.2893555035050219, -0.043076450802983765, -0.6677853252895398, 0.05023800135620806, -0.3740334751069368, -0.6763376074946673, -1.201258342847645, -0.7663788033167444, 0.6187506555791662, -0.2717293650095656, -1.6897746358772503, -0.4835781044614777, -0.40285579616558403, 0.15006245021567535, -1.3847733101807798, 0.10292372898805083, 0.5950281404978075, 0.8142906322522355, 0.0782957494874176, 0.5020863662126446, -1.4001953311116508, -1.0733222376832738, -1.0738984411481671, 1.8320421992314926, -0.6463282291256064, -2.204945560988243, 0.33409445298391066, 0.6987655946315723, 0.5373725668344167, 0.2407048892328314, -0.3698593933044897, 2.374321955320883, 0.10409384367789652, 0.3443833545601227, 2.0385858305229236, 1.7002911136149907, -1.0758091103720502, -1.4011439208609937, 1.5219548445424247, -1.0613996327913517, 0.33701578521926756, 1.4066288877042212, -0.3885913670094795, 1.0738688829659337, -0.9671965124381219, 0.03794645444845425, -0.4678140934231526, -0.5084479272100055, 2.2617317166518642, -0.3822884043805427, 0.7275170436980553, -0.20341672682027534, 0.12948287903323413, 0.720330667091349, -0.6891409512926385, -0.8993318553045468, -0.422186609510616, 1.0463139042466254, -1.5261958372600914, -1.3152688019252885, -1.6475978849416038, 0.22991838215016477, -0.10902246490551964, 0.19890211033900995, -0.9970449384457984, 0.012166258711717313, -0.5048116613929929, 1.6867021597401954, 1.7625994345531353, 0.9191242932421948, 0.7765704351041366, 0.09926405722252113, -0.49822088900152955, -0.14465662464891962, -1.316176496918122, 0.22531870363920692, 1.9688360064013333, 1.5223365654726522, -0.3229014966895001, 0.9847457034823919, -0.41037808233409917, -0.04852182486113804, 0.1203073530738329, 1.7987842544033417, 0.48558455986459814, -0.6624900099691727, -1.8864643585326373, 0.37582139208569604, -0.4334083496280957, -0.6191633114041684, 1.585993357474881, 1.2899233143797992, 1.0683340024709505, -1.7213124447099009, 1.057586252952495, -0.11748579610912852, 0.5648506800313313, 0.4417297048170418, -0.29443100029702324, -1.0008109412069697, -0.052911662669819566, 1.1720189331052562, 1.2673529334347957, -0.6526329568162268, 1.0300224020086117, 1.0315764732614954, 1.12612673004115, 0.14265733934401165, -0.6947712580223957, 1.1662284512529546, 0.1209054234273654, 1.1271386783980304, 0.6155769999927979, 0.6352929424305315, -0.10505660475568411, -0.17401186205677507, -0.34310842301042255, 0.8218564985488669, -0.6451682279140705, 0.8214957743667536, 0.19547170426466987, 0.4627165636445806, -0.5036937983478633, -0.1042333528841317, -1.416430422036311, 0.43112782981121034, -1.1809347080026877, 1.1599906744693493, 1.3689810746891244, -0.07953098195178364, -1.5700025548862073, -0.18802265294657008, -1.101079956324169, 0.39013661498490376, 0.6471292771511037, 1.960469002403423, 0.13623768317180507, 0.8765288198770494, -0.14243743474537351, -1.253584188608765, 1.2068421241175746, -0.45605003626644874, -0.8171642898396905, 1.3801170931140405, -0.33449731776038216, -0.07911072493474398, -0.2178167797957628, -0.4847316542215681, -1.8854098309259872, 0.9783239389745247, -0.4788617444033397, -1.664801399342532, -1.6955622826242815, -1.7113552764472337, -0.1813624282780659, 0.43278156146213137, -0.1734234371776523, 0.7688771798742304, -1.8535050989815922, -0.2862157061615021, 0.5970811962247027, -0.9399609832314842, 0.3163606852913715, -0.7825458625211229, 1.6539676226101512, 0.5999963109712019, -0.9077219174810383, -0.6354032266333969, -1.8083895992853227, 0.07887699270500806, -0.06452993876562253, 0.5796520741072658, 0.5347255421363271, 0.13905016388582708, -0.33663621520173337, 0.09418037138265753, 0.44943453642636794, 0.7230648047962372, -0.004061911797689092, 1.2415346095797346, -0.5293013121617511, 0.18782604545231654, -0.302549465634965, -0.7663345852847966, 2.3283015998232157, 1.476982641219811, -0.381396839704028, 0.23893117352383234, 0.9115804429882688, 0.973122619447444, 0.7150032147760709, -0.2924634703122743, -0.5277942442964871, 0.6412057522078185, -1.7608526326115312, -0.43079351690214496, -0.4579497742892155, 0.9164326222797538, -0.07773780833377399, -0.2733605990642298, 0.880709371070341, 0.43112980445923493, 1.6471730328106007, -0.46509816908852325, 0.7270936926527224, 0.0618200032932151, 1.9183234408463483, -0.9375902609758525, -1.258368851553185, -0.15178729031437918, 0.6953137628993328, 0.4737637879431969, 2.2667047965961498, -0.30334131879941617, -0.6499389124477899, -0.3578896096105329, -0.17953888107387764, 0.588812880193291, 2.3645732367465895, 0.4925889232361743, -0.7467338002378139, 0.21752091802650877, -1.0611194646365736, 1.8745981317614913, -1.1806510439559375, -0.21208775888331935, 1.0353743617816802, -0.4494986685734009, -1.6595151877450933, -0.12260826052552128, 1.362024505259897, 0.20282143655155754, -0.6584790827965167, 0.540888304233539, -0.5459523223709581, 1.3120566569090784, 1.51917572884165, 0.23922364295198015, 0.564572319556473, -0.0235174560682526, -0.4689813683093646, 0.5277996111964479, 0.9338943275335487, 0.41555993694111554, 0.3069289759807405, -0.15572027925583096, 0.5454683495229327, -1.6765000531467014, 1.3177614826159139, 0.4216686968699785, 0.17572463940736607, -0.8916727817284945, 0.1288022837204681, 1.9540192067945645, 1.288056980437113, 1.0856955374414414, -0.7320431355033176, -0.6335898322371987, -0.17930147517500955, -0.2830706972982179, -0.6812656285689295, -0.5421831617563124, 0.27682750993486954, -2.0963785718683288, 0.7549713000944241, -1.3173163415960594, -0.1002581919612155, 0.8012063458520399, -1.2402593903462222, -1.0769445056626716, 0.3277750159708375, -0.6425717370555428, -0.46188079363832263, 2.0136470879907877, -0.8173372777018176, 0.9599103259810611, -0.6492756762094182, -0.04910107587396979, -0.9109972764877167, -0.25551368528280016, -1.639811204450774, 1.3543941093985261, 1.1183689599766458, -1.4137164699927163, -0.4995661855231383, 0.5329015916575235, 0.9207774790032464, -0.44861463699686394, 0.12813213066733614, 0.46893232389641376, -0.4377059251157831, 0.43491637292732027, -1.2251510803880348, 0.05646852733095827, 1.1104914361792395, 0.7981505600084673, 0.5676325932890833, 0.8558184104722243, 0.5497117227090631, 1.2121270694873436, -0.05440681398427042, -0.3120545027328571, -0.37724609728368463, -1.1665228457087229, 0.7357729616302436, 1.1719235103926278, 2.1415880025399407, 0.3516932194849229, -1.0064904932875063, -0.802298281585354, 0.21859745116128587, -0.7964451869571371, -1.3230859087732125, 0.7015407906743358, 1.453437359014724, 0.4589429392805514, -1.7654245618813131, 1.0503539840963627, 0.5412779735903356, 1.2248538797473119, 0.14568923667202008, 0.1452373213352766, -1.2646911028098458, 0.21665184734224882, 1.4658282788671535, 0.36657356906161326, -0.3405415376398612, 1.9890543884530048, 0.011942792281966274, -1.4206488588032906, 0.1453646403065638, 2.295653417862582, -0.05284706076526841, 0.7928862239218893, 0.45672684788441165, -1.0625591448753413, -0.6439849571558869, 0.2663862015537779, 1.9374191739029782, -1.1513781646929677, -0.3054734959174627, -0.325237626826062, 0.5978961208312653, -0.4686970455804075, 1.066082640738147, 0.38249346300039777, 1.3206681813926302, -0.2516278444916893, 0.4301087661146571, 1.133430715634532, -1.5934752448717568, 0.7985788392632902, 0.6687298606473242, -0.6136887284848123, 0.9786621515526855, 0.05767825900093705, 0.4648579865154962, 0.9340689983693993, 0.16300526244110694, -1.686124901532169, -0.42544657823938314, 0.36838578506053277, 0.7137789142248556, 1.9329382008143865, -1.276149304694914, 0.6715987896089911, -0.8188441509530816, -1.7359950136878024, -0.6318648557718235, 1.7944980999113616, 0.3670418762014104, 2.081400888536659, -0.3961941315874443, 0.4810330707288572, 0.9572960269875831, 0.7206034941870203, -0.3443994707849017, -0.3281639837152708, 0.37427942829581873, -0.5163596111225459, 0.6673945441355367, 0.3004498598519758, 0.3505893746777139, -0.12278262772039823, -0.329634743256038, 0.5310979267836745, -0.5300948656232102, 1.3993097183684238, 0.5077451994140818, -0.6040594822319078, 1.0303586488381098, -0.33910640587489094, 0.003949884192644071, -1.4237226713370035, -0.5260995670955352, 2.202889360920912, 1.7827436290855434, -1.5121971356883135, 1.528735568130452, 0.5805237381201862, 0.24342523694118565, 0.3754197095747093, -1.0256729130766933, 0.9532465656015796, 0.4360880719200923, 0.4407416724053295, 0.24587260950543008, 0.46542380024844116, -0.1124841142679642, 0.6818102567429344, 0.126742818554065, -0.40185329141688214, 0.19881368576322997, -1.1981210758211598, 0.03064095232441269, 0.3864314024510693, 1.672144309856504, 0.44490582553651276, 0.46459294258478456, 0.5706006288491554, 2.2505662482810527, 0.5888011932567694, 0.4253990083213925, 1.0003556390119757, 0.926838721751373, 1.2908058512556935, 0.4651359732166726, -0.31375059123367033, -0.34934781231889994, -0.5815396199806433, 0.5674905401494708, -0.9694383920383315, 0.39878773961245323, 0.3326469603911191, -0.262160103962422, 2.106695341448771, 3.3799659733269665, 0.4529596264741263, -1.9925288237531922, 0.031266277349481994, 0.6074563477656145, 1.2721845460967378, 0.803578688618741, -0.6351727995175304, -0.8778146351323604, 1.9337434079530431, -0.7199614779466598, 1.5780466312503432, 0.30798039660750337, 1.769741070912097, 1.5583319227280183, 1.7818723039675068, -0.13478719259022823, 0.7345433152829075, 0.513292577587601, 1.0130684170739583, -0.3304758476856689, -0.39549033190137095, -0.2730607276434524, -0.8298528559052722, 1.586541392615623, 0.0013264643085725298, -0.023151636071587503, -1.1869820589679188, -0.03977345834583598, 0.9305802318696809, -0.6602607456135547, -0.6360643398540329, -0.8926435900626628, -0.09510918998138927, 0.7465553427989583, 0.05056098363771427, -0.7887609044312587, -0.894159789029328, 0.4976146552780872, -1.4119129992207649, 0.12874180802953125, 0.9496578486839496, 1.5863272958162538, -1.7761093065069402, -1.2535053971200578, 1.418212526890945, -2.507451079338539, 0.764756048096045, 0.17289996890217968, 0.14299890818340413, -0.25474647304507775, -0.47363897654337017, 1.4271380475383804, -0.2380849703699123, 1.2885306595971235, 1.824734898199119, -1.104176993920565, -0.11867199015175824, -1.3973908161874233, -0.10169768129682137, 0.5283213241391261, -0.1197030556515523, -0.13271851187274672, 0.3582230376347082, 0.66460072555346, 0.3549792706742614, -1.0108984546320134, 0.6692643049936329, -0.998647623992719, -0.19984249030940054, -1.1834151374008643, -0.11262297533189947, -1.4855513265394447, -0.3982158769138185, -0.4021938920984485, -0.6077757501949382, -0.2943735106850893, -1.8298169125648998, -0.9082885954771444, 0.34607411572050717, -0.2678545183576252, -0.7634069829806499, -0.5459748512415473, -0.43622957885925395, -1.6651283501207161, -0.7153891759474899, -0.2133715716088209, -0.6771737357744829, 1.2222941615891405, 0.26938074696695563, -0.3354493677737843, -1.0079926493457037, -0.49586393938929, -0.5895273206202437, -0.2504575690913811, -1.3244985259494082, 1.3979808488082122, 1.3558048808009113, -0.060099143667959806, 2.869504440704472, -0.8002619552687843, 1.6354090074266951, -0.4033832650217729, -0.7337273727480895, -0.06084489339315029, 2.590091385734423, 0.5340029030818718, -0.07409860282106391, -0.020952862436566466, -1.4664756460853587, 1.7427694714326685, 1.6364836614648834, 0.715429640641853, -1.7521350328048413, 0.02323236916011237, 0.3583211859980855, 2.0277826848995053, -1.7168617329455214, 1.795320737344107, 0.3893444872993696, 0.9710263199171555, -0.6277725059611179, 0.6822182280338138, 0.32067325653313905, -0.23286789487549825, 0.941609935963012, 0.0974381957769383, -0.1736913978078557, 1.9379102902591887, 0.834968618520572, 1.7770901801416072, -1.4555404428337169, 0.9258658795053107, -0.36857883477249853, 0.586706433263654, -1.743951224132712, -0.2592087027447276, -1.4322672284369042, -0.2928979547652161, -1.5255984983966164, 1.2379924179256274, -0.5826750722027021, 0.708604966508564, 2.195607135556467, 0.7067037567529512, 0.27165463777649157, -0.9785285805032363, 1.4877587711789508, 0.15292618981406264, -0.24603319291084075, -1.1436543285627345, -2.8144708015168396, 0.8655438350604546, 0.6809080482964426, 0.23730289447302325, 1.4714504522677843, 0.16817780708363478, -1.095687286530888, 0.802893987586843, 1.2119999735834666, 0.8694642666128704, -0.8469084666836407, -1.1958018570630138, 1.4728679183403917, 0.2902027668372768, -0.8206700115016374, 0.34953335912109906, 0.23715263848333654, 0.9425603916983346, 0.03379281929769007, 0.26368913441603625, 0.6787706682418173, -0.17823540659732004, -2.1232307893573847, -2.519826175243944, 0.32385603269233, -1.8340332061799587, 0.3219890107107945, -1.7322922249353685, -0.5643958924781901, 0.7654019428343195, 1.381030115844874, -0.9320967368912387, 1.881124086273519, -0.5414685324506765, -0.32631081841247955, 1.7242108079526857, 1.527599012848301, 0.2098669080268127, 0.88122344637431, 0.9787910340267976, -0.35004557242128304, 1.7929026327466364, 0.9963395326639429, -2.219919185096668, 0.35701355491017667, 1.199645799242136, 1.530639289319788, -0.8466487616497228, -3.14690901021461, 1.0766167227229608, 0.8065492170552653, 1.5771275899020976, 0.3105177700237187, 0.11520859343666577, 0.9618199523053834, 0.6588221642599041, -1.4242237367672894, -2.285597097513694, -1.0570688717447794, -0.6660293902951027, -0.5943929838518542, 1.3894774125745646, 0.5907342780707716, 0.8131681033739722, 1.7970189120882412, 0.858066559540823, 0.8400683787066888, 0.030581407656322154, -0.2897259071660042, -0.3663802670129802, 0.7788996448641067, -1.0972036745486886, -0.3226599679998058, -0.3738886127202433, -0.9556919758567864, 0.23986026522859033, -0.34759226132155346, 1.0211678512404734, 1.2934182064729214, -0.0065116497592115005, -1.9747212210543483, 0.7778957774541653, 0.23488793138524594, -1.08770733085338, 0.091293755038473, -0.15812167071650057, -0.4823457198554836, -0.6707335074902661, -0.571768365892867, -0.20993744368201495, -0.3739765110589882, -0.1377081892322415, -1.885913327917227, -0.23670778770349518, 0.7270141403289107, 0.48446401827819424, -0.34030117306751384, 0.8225245117707315, -0.9681578916335496, 0.34567043819210247, -0.47037713762407457, 1.8149688787051061, 1.8504741081637468, -0.981185239675366, 0.4265817014845749, 1.954913151570728, 0.09696729777763541, -0.45522566688246746, -1.0594579512233, 0.6335839139668198, -0.35752538007015416, 1.395914547547343, 1.2071160402587686, 1.3501762902367775, 0.18287169098081088, -1.3523758501985945, 0.6986767955849876, -0.9088429795985896, 0.2691414718121792, -0.2634673384194102, -0.6790224020604425, -0.6767109079723314, 0.4525362781170851, 0.3952307984315052, -0.33502448128447737, 0.7771796527431974, -0.713978080213088, 0.8003400384222791, -0.5480294519097182, -2.187064931343782, -0.6590312344221956, 0.35300432911974633, 0.7354347869728021, 1.2054963371970713, -0.577864036086437, -0.026279799668137527, -1.3970989377150285, 0.9810268075991757, -0.24427175418986322, 0.5899739838809525, 1.4047726895351709, 0.8358515940870914, 0.5828636327176315, -1.0845628221744952, 1.3998845761234822, 0.8712693666371223, 0.12525935286751516, 0.656330259632435, 0.08697272151595442, -0.16013308855167477, 1.2199486414868286, 1.0743581808420255, -1.5920110499692666, 0.30566328607293825, 0.3478991682692986, 0.03208701521638864, -1.14359673342904, 0.043284482807020755, -1.506705822099116, 1.0434268129652922, 0.8246360113762411, -0.11021657160446088, 0.28301822257438564, -0.14255491198480563, -0.39548522516833395, 0.6732624300272079, -0.3965970322886614, -0.23747242988758843, -0.373425086626969, -0.010231907622557965, -0.3152442425427189, 0.5645957327516452, 1.8553735848350124, -0.8360345976672228, 0.6419826082218401, 1.1532294153177778, -0.5026558905247559, 1.1594484576689261, 1.1891273802420017, -0.6301221208756201, 0.039496711408296574, -2.9241219691749087, 0.7321138007709483, -0.7958957749223368, 2.9038435049286617, 0.6483629484793593, -0.6597538299627694, -1.3069342663767929, 1.4449149058238382, -0.3486358321921756, 0.44880439311264864, -0.3493181857070308, 0.05157981101932124, 0.8064776207026431, -0.10424129599200482, -0.28504152059226906, -0.29694435229232585, 1.3458957071109339, 0.27359717802288724, -0.3871743994768461, -1.235613555073246, 0.18390695295521833, 0.6355677662919235, 0.30846599010953296, 0.8487207020509868, -0.22034373781439995, 0.3828450910141006, 0.256309322182237, 1.9413425788977503, 0.34053432596989164, 0.9392454874013754, 1.8472743338166664, -0.8557907279844461, 0.3741639764413276, -1.3164055628178029, -1.8050221165162779, 0.4091255584125502, 1.2126309098434827, -0.7097253435128861, -0.8314655724980522, 0.2496237511126718, -3.4160541744848603, 0.43464974746640883, 1.2220978964211264, 0.5382131882584809, -0.47558266650923714, 0.47738542629587, 0.057370040239228814, 0.7817557230552895, 0.2845195551144189, -0.5699387089093731, -1.4961220446389465, 0.9564982289528082, -0.3153396937043581, 1.4875566485853324, -0.8216601969125897, -1.0789819456718217, 0.10962508213604825, -1.0572648473257331, -0.9792911643649937, -0.5370997150379344, -0.35108129095872337, -0.9620010992829959, -0.03538968083523708, -0.7525317713758342, 0.31790852276013, 0.5065280355426254, 0.6938763508159652, 0.5231801777298395, 0.8401731251319656, 1.255087843433437, -1.2647207124319617, 0.03568692088927614, -0.9449035672231925, -0.9802364572215168, -1.7069903388524847, -1.4559635293317081, 1.2536159541113532, 0.6238220651356172, -0.8253451203713906, -1.5126684454979316, -0.6076032663730787, -0.20640212639659977, 0.2187071321512859, -1.1739520630927236, 2.2936194913609635, 2.42361670875876, -1.3671098087060796, 0.016327674634558146, -0.026751480953702313, 1.5423890933175808, -1.0507698903049862, 1.2991164565664914, -0.2634292330766352, 0.17806750887280448, -0.3645093596674158, -2.0029903934361424, 1.0230910399963733, -0.164476268974696, -0.0640623761082947, 0.25774787495804075, 0.5431735197154816, -0.26457223506437516, 0.21890857296984145, 0.33274208350558193, -0.017168245656940792, -0.8561835241968179, -1.1566742703381907, -1.7923864232684588, 0.44883477658545834, -2.356639446169023, 0.6298316093890629, 0.7017567838184969, 0.6129448990496629, -1.1123474412696839, -1.510738730373368, 0.875394656188047, -0.7672499262321295, -0.7857067716331555, -0.760711918572234, 0.9992407378536431, 0.13422348841319792, -1.1137146111802172, -1.3359310873129178, 3.427169854782302, 0.5628421459164623, -0.7563046367576162, -0.0539424080929766, 1.2868419995682934, 1.7352177275613287, -0.384586128527583, 0.8697260657700219, -0.41470022213456886, -1.0304330857194608, 0.08818299276890693, -0.16683316821808417, -0.6711114593580431, -0.6926216123991726, 0.042449887138640334, -0.026100390578485563, -0.19091404789146169, 1.4796694194658908, -0.16213299119149222, 1.096308083302271, -0.05157704057548796, -1.0189698572668615, -0.22224562584378907, -0.5424748229265056, 0.7755202723654206, -0.5964622156983096, 1.1170754408095158, -1.1915042926942456, 0.23170808116914204, 0.5487237505736369, 1.2225779599775028, 0.13004298998527963, 0.11545339192504406, 0.5300202766752256, 0.4617316278937322, -0.4346962117639833, -0.027845380275299383, -0.9271368039565526, 0.9972415174629293, 0.43370492340774014, 1.6149666886675818, 0.6983578225314108, 0.40469747006295953, 0.12381715491027445, 1.9853419463083837, -1.013832841109864, 1.5780579453632648, -1.7928544889970204, -0.9830504028232582, 1.1524180910634205, -0.9158928937830719, -0.03423184020682911, -0.7267004461637125, -1.7715682935183614, -0.9384382815143375, -0.2848338211345021, 0.07239940531362174, 1.471437051116664, 0.21687590184280972, 0.0228861123610407, 0.6527237664674208, 0.6732767026977594, -1.4056292484413113, 0.09967170792555864, -1.497503936207491, -0.423794255396855, 0.9591582327080881, -1.4528639534222263, 1.9072582401416838, -1.0477188032057057, 2.3792967186658607, 0.6047957072709421, 0.16568850637894414, -1.8526738442214266, -0.08870566693059273, 0.9319285494310764, -0.0736417807565598, 0.3760631344472809, -1.8803570698761125, -0.25465146993146515, 1.1252489057600117, -0.1895779824361303, 1.8804331342871203, -0.5088829274870651, -1.136749014206202, 0.7885408076171594, 0.42528876476279975, 1.193552634695458, -0.172530108722096, 0.28263328828564277, 0.45040856415766856, -1.5443882095451138, 0.11368548447701954, -0.7524651240416428, 0.19289426412693852, 0.6119390481743777, -0.2581841849127746, -0.40869500706120154, -1.6902732927720034, -0.5277676312046612, -0.7172213916473924, -1.0257992233573672, 0.853431782775547, -0.6112728822511208, -0.3608356736243428, 0.4201655410280659, 1.0883359197100564, 1.896509006075691, 2.4079546388953377, 0.09863543708920745, 1.821662704211334, 0.3960715439085977, -2.310417914891191, 0.053379534059668714, 0.1830215570389291, 0.10182154971125199, 0.27432695631804715, 0.113534878391677, 0.312717260756408, 0.8368360631793837, 1.7315211264883186, 0.26133783335279864, 0.5212031327474663, -1.6525425319903388, 1.1116649363977953, -0.8679593149565059, 0.07169835186669209, 0.548387761210989, -1.6016039979756058, 0.17714078323969681, 0.2667881960615157, -0.4075181179551239, -1.00242794465834, 0.9273266937792051, -1.783792340116769, -0.99425892585637, 0.2726853277171517, -1.2539315980002013, -0.03700063036128916, -0.7411870184354797, -0.8273182715714694, -0.05937569741299875, 0.1572879365502921, 1.3667568406844155, -0.023431059995369364, 0.4888981360212257, -0.6540197386119571, -0.9447575977753754, -0.07948034232108558, 0.1567725843606254, 0.5570477409530337, -0.7758142404787735, -1.8860218937287503, -1.1427924981213549, 0.7595325303616657, -0.18185837401051141, 0.247629563300984, 0.66844753141392, 0.3681454962559492, 1.0639045317517553, 1.7371494163179717, -0.7107156553033718, -0.4990449422211054, 0.0759113047963516, 0.23289539097034184, 0.9052689469186396, -1.7665229080571783, -0.0744349484550435, 1.557943674541565, 0.7381583621471373, 1.06762730647476, 0.22764295689356231, 0.8738225897357599, 1.898367708843404, -0.27906209175160207, 0.17154745554591222, -0.20347008280519638, 1.4210069102777412, -0.1869458613984776, 1.6540805235091576, -1.8335443261636135, -0.7817640154813141, -2.1548613186710814, 0.811421530781301, 1.5570385206785038, 0.6981037074368103, 0.052194329181575135, -0.4495433737726703, -0.8527092904433078, 0.8347155244627774, -0.8006537425425106, -0.670990668301248, -2.5005887097153354, 1.2406152459353799, 0.3594571938330541, 0.36840631394732193, 1.1026200757432514, 0.9385875925543102, -0.25633456171874736, -1.3375220443961033, -0.873687629167985, 0.9466074007795731, 0.03239614545329948, -0.5876100240973935, -0.4803712904391316, -0.24211745782584612, 1.3141316742567348, 0.11615098058330568, 0.10468004779817143, -2.4741044438402096, -0.22517077589269524, -0.7826066712212436, 0.4795130292005602, -1.3284524530423127, 0.5188321023199292, 0.10257117576791352, -0.44132053249554554, -1.0328395653948252, -1.1647746797607326, -1.3440983213338922, -0.41908930825716656, -1.3602528485592638, 0.8842093121341777, 0.4089537756270757, 1.3257896401725195, 0.6165401773054007, 1.0401343328025685, -0.5296711319893043, 0.8348552236453886, 0.04173454601452433, 0.2377889952374514, 1.8929281544507723, -0.5915890532987991, 0.16127597563480447, 0.25513594814211416, -0.23216896002305148, 0.09229004657835424, -1.1721487854363257, 0.6240841606086347, 0.48720452631750316, -0.9048009028334072, 0.33939498371373683, 0.7297913120731119, -0.2876913301646777, 1.190779820206274, -0.07571856632438101, 0.7491521862022802, -0.24669608041133215, -0.8934401630862111, 1.654004674454817, 0.16115488193219127, 0.31361417652669266, -1.6773446910498528, -0.641588706786911, 0.4678831686193231, -0.9828242882805998, 0.6193022648775147, 0.7191740605158039, -1.7089702314353707, -0.0990011381349552, 0.9649034417067606, -0.8788527215274092, 1.7336718927368397, 0.5495549291942474, -0.7070289637573819, -0.5454121401643927, -0.6617490128317535, -0.3851163462146052, -0.40916053131837377, -1.438230222856659, 1.3466506511641585, -0.24338126619710967, -1.2066321811827558, -0.15745927452507805, 0.10528853386373627, -0.343413385856779, 0.497774284634027, 1.141675100810018, 0.2719117959693717, -1.037283266753525, 0.8296020697956077, 1.2678575568732569, 0.7643720832667927, 0.12413930644638208, -0.3338917521495698, -1.022098287672078, 1.2501606565964285, -1.2908913537999527, -0.27676674357946374, 0.03980400007283926, 1.5999607460131866, 0.24592778402464954, 0.41701855504897606, -0.38474118071327756, -1.0726326824521428, -0.5741244814435222, -1.438428069232717, -0.3150508648023488, -0.3542468346183149, 1.6676592838768372, -0.11429414126120725, 2.231049195630544, 0.5375814566955346, -0.4260693460601721, 1.0861986234995047, -0.5208445610136894, -0.24199807438399185, 0.15700005355115823, 1.035237246112569, 0.4444165723492687, 0.058516226063835705, -1.2577642409668082, 0.6106958584959961, 1.3912524121397771, 0.6672087631559351, 1.5515094824379205, -0.41120193487456497, -0.740665076010141, -0.2202110790964695, -0.2102437245694616, -0.6002202384945311, -0.790215252377321, -0.8363737667676184, -0.030605340252360124, -0.23978336436455078, -0.16316584234196094, 0.16537183770242794, -0.06887836454133983, -1.3384199685759848, 0.21757257921208292, -1.0513036783569913, -0.2435359522519217, 2.2895955457271433, -2.0740439621648123, -0.19164111220950658, -1.1577848173206235, 0.7194226208901404, -1.2108910403992759, -0.5246985733220173, -1.211576552590942, 0.49334025267245035, 0.2236346127261793, 1.9079919914966645, 0.19691242132297831, 0.05766129401579577, -0.4968602012859927, -0.7667230871879523, 0.3019885940231961, 0.22891824948400655, -1.3419914524046412, 1.9246501478888085, 0.21288978609401055, -0.5240894634251919, 0.2134936825321967, 1.6076526717393802, 2.7033248299223205, 0.8440818334150261, -0.16546613980048522, 1.0526439837711414, 0.2684563196078891, 0.7301218979345259, 0.07163425795869997, 1.023948922867786, 1.066663400348315, -0.3787663080540311, -1.7923387234588335, -0.6852257182532828, -0.621117992512728, 0.04246648481622675, -0.008713784715856192, -0.5877761372339463, -0.37166062235682706, -0.8482332018216091, -0.7383535998522888, 2.121365864683692, 0.9467215000329718, -1.7488966324362754, 1.3498109918094732, 0.4199014655964798, 0.8018881419812242, 0.30174976942748205, -0.7094805649034348, -1.089137213443145, 0.8277750618263525, -0.9934017095717215, 1.0192316741713505, -0.49199424245048573, 0.019922115277753102, -0.04212906545876515, 0.733094998624984, 0.6292008194782193, -0.7679040952770848, 1.4721902923657217, -0.6838903858332501, -0.8918623047067769, 0.22363774486715088, 0.768873576945439, -0.018973671374533804, -1.9728939864286263, 2.299068614884322, -1.2923185318841304, 0.697308787623341, -0.08522929989765207, -0.351284949076553, -1.8121031897679896, 0.42952799868927616, 1.0666895674438264, -0.5715085679137232, 0.9409938817090615, -1.2202161144385535, 0.15723594541384908, -0.3875421709946996, 0.8088169038560777, -0.882216061327058, 1.5687484467889032, 0.814959734697747, -0.35514254680945295, 0.7083437368023349, -1.2658528878409852, 1.0247828233206233, -0.9358604315092027, -0.6407597021007934, 0.5578048320268137, -0.3277919606049231, 0.5594218173966555, 0.9889208822463617, 0.24206901369277345, 0.07724289018803498, -1.8125186441766128, -0.31764218878417266, -1.8165038748423827, 0.7156884495508424, 0.040837524856086244, 1.4157691881743804, 1.8916286125386954, 0.8354182611450888, -0.06913003651900829, 0.016707171277959343, 0.11308604335225053, -0.36487029933071496, 1.135883448036776, -1.5005154798495202, -0.45924598408988654, 0.14925407876287283, 0.2766074319524814, 0.33279498456281387, -1.320501805695339, -0.3990806714813979, -0.10885986412902453, 0.770684415379113, -0.575390747807625, -0.39063013691653764, 0.854750855874172, -0.3592612526319994, -0.38477188371593096, 0.1464769484931451, -0.46692531803049225, 1.3594299393142464, 0.43087670846064646, 0.7342210194145863, -0.41751967404249074, -2.0389514331304017, 0.9447294199455271, -0.3419690876083375, -1.0260530238382823, 1.171098807256718, -0.3140672826611906, 1.1602683967256464, 0.17218142212964554, -0.2986650441456514, 0.11594072653568031, 0.24619401747012085, -4.049296637256767, -1.906789305108697, -1.3351820611967655, 1.3268372933458827, 1.9048254156186435, 0.4188937613067039, 0.5102267465260051, 0.24501549770950642, -0.22878145580376721, -0.3182948321739036, -1.9522825573114775, 0.9774039586464689, 0.40629397058818467, 0.5456897938053996, -0.3210692427284758, 0.36353676311427, -0.7721162666269313, -0.4104416063754837, 0.28973556702539993, 0.6379328815669238, -1.6516951014515582, 0.9636260349162031, -0.1688520764268293, -2.4421770880654012, -0.8613931675331793, 1.3894823427768004, -0.44121415508246786, 0.3033350572129726, -1.3409959918632923, -0.6341567627440118, 0.10727851074337603, 0.192674451656445, -0.7499375053500503, -2.0395269698958507, 1.7054586166316166, -0.13697042070133772, 0.6170889818422819, 1.6291606254180433, 0.4801508683351498, -2.3731970549803236, 1.0045876320644045, 0.12689395636745684, -0.7116449856053629, -0.3486447163007468, -0.03617803967325481, -0.08719183696530602, -1.564956055799732, -0.35007716757767826, 2.060535759479538, -0.8465400403349721, 0.9024580628262993, 0.08605678372049494, -0.5850159931302704, 0.0709513803119533, 0.44116510520395164, 1.2667677103437724, 1.0776493538223781, -0.22964989430173424, -0.5649928205919168, -1.6524414753176278, 0.014578244382040641, -0.6421317433783581, 0.5559371193462205, 1.7234341457868296, 0.3476271752304233, 0.7522185744932565, -2.3803365403638708, 0.39792299667592823, 1.3748295498888976, 0.22645659776272162, -0.22230358840873735, 0.8890414685347496, 1.0755839198851063, 0.32403217997278533, -0.6069937784764126, 0.5711775579647114, -0.6398012278690199, 0.17351082528217185, 0.5867931426874724, 1.4114263007150754, -0.17811210631676339, 0.23520291429598733, 0.23191342393084857, -0.573543057209578, -0.8431879795477915, 0.4729343880517432, -2.6012777236392464, 0.524038330634027, -0.19888060296298782, -0.7721035551995695, 0.6431892221291009, -2.0262436823690773, 0.09189005020143383, 2.3729872396586877, 1.679793389586202, 0.04614705817427899, 1.4546541031837805, 0.5422533573513667, -0.5340671479244837, 0.9410896621475392, 1.1938581326762818, 1.900472732917365, 0.32197544479654083, 1.413168156215951, -0.9924930635459729, -0.35195323676732265, -0.11096798681108004, -0.9805835404611916, -1.5818389061603035, 0.5655058873413544, -1.5775489798258944, -0.3265797171556011, -0.650726785521759, 0.8079970561670634, -0.2066848714426668, 0.21327627201351115, 0.669195467024569, 2.705630268299336, 1.845947637356754, -1.1549282591326773, 0.20224899978481417, -0.4018475192446957, 0.7355899100839668, -0.8195789832202981, -0.7885951224158944, -1.8341938826107391, 0.6983769103912885, 0.91253716219031, -1.7032159111922818, 1.5768613892224004, 1.492881828481201, 0.6922922244132628, -1.2841883276289197, -2.1908738719064034, 1.9988195261182593, -0.01027802309676535, 0.9929886807327772, -0.3946774021388397, 0.8492052687483386, -0.3061139747473086, 1.0310546934273879, -0.07629361425037356, 0.193390154960285, -0.04406694160507487, 0.005879222246212876, 2.748818406238698, -0.45929114456793363, 0.8112035027266133, 1.5114830467956175, 0.22954769038035358, -1.4271577781801015, -0.41739095004722765, -0.5208758469782768, -0.5971764427169891, 0.236897850924888, -1.5826157747687601, -2.6021582982370974, 0.11774383454545442, 2.051740082726482, -0.05480946100062821, -0.9736240772167437, 0.8538783294556378, -0.6377994234271929, -0.37043741898024296, -0.06107258312702416, -0.7243511683874823, 1.2198284648372368, 1.207455018217009, -0.8823331780167777, -0.7289767616366893, -1.399493708757346, 0.8552732802843839, 0.6648485221741327, 0.5486347388060571, -0.5342179623847177, 1.402215513577907, -0.22281847681838807, 0.10206272380447379, -1.9930879343172068, -0.374024763893983, -2.0927495752652616, -0.06088136902854937, -1.684424238271492, -0.2736020697073243, -0.5009960443530493, -0.10603334394201566, -1.9899324996687324, 0.19772519477328945, -0.9270592202915159, 0.052703400325425004, -0.6880474515331552, -0.9916051091652817, 0.448851190608953, -0.37494908988453113, 0.34310104356547544, 0.48848744330569166, -1.8739340741639163, -0.5875039172435124, 0.07688347263573515, 0.16606651890875693, -0.4242076013221519, 0.42560925558393886, 0.22402481159636506, -2.4837988396189523, -1.7922375284591137, -0.7870128776733912, -0.43968221147189784, -1.0381401552605545, 0.17210391877520048, -0.6800548592450443, 1.330863417816183, 0.7676699239601148, -0.10690961311017567, -0.20296862716467295, 0.6659920798796535, -1.4078556695405426, 0.5553808612688375, -0.7459931562855804, -0.3896136363443453, 0.7325540392086856, -0.12801684511557027, 0.7883417305247741, 1.9253487107299798, 0.3963600069513438, 0.2599691779698697, 0.04265711727247787, 0.5961436650989272, 1.1215291396283602, 0.7283704449046863, 0.37231013578255395, -0.403470425578889, -0.026351807085460487, 0.7700319840273606, 0.4032615181537267, 1.667416953874423, -0.13426061219996013, 0.03612400337819114, -0.49011012834420675, -1.8653892789725053, -0.9095512353218772, 1.557098084370742, 1.0633660489184062, -0.23014963098818889, -0.3194804085519092, -0.47400492726371823, 2.6051086393219225, -1.9023080426785037, -1.5550943389216298, 0.35214472759818416, 0.5873915514298951, -2.3738695582688916, -0.5541339355651658, 0.2822625181265981, -0.45370492979479005, -1.3294122178267194, -0.9823112654594556, -1.9768855369726872, -0.06271110065085221, -0.2276365995274829, 0.3850304714034891, 0.5505999338702735, 0.3596650069822835, -0.5288206698060174, -0.4305991425024855, -0.4905878441870795, -0.426107305018531, -1.496310575741671, -1.1215875226230643, -0.012726644892344112, -0.5296744119432573, 0.6678590985338151, 0.7009782809210452, -1.7092173262271528, -0.3337596658558743, 0.13908550447816825, -0.4494136147779734, -1.4266967446783132, 0.2277551288230418, -0.6770090383145115, -1.121969148176978, -0.7758858384730478, -0.8943184376014373, 0.13249891998298988, 1.0965322587975599, -0.3475007346360516, -0.5192119213936851, -0.7711585925848924, 0.40531170527000515, 0.7240667917525901, 0.8840702218869749, 0.0730847647302381, 0.7868247179736594, -0.4315362818055695, 0.31660751918412317, -0.8140488036698917, 1.1196727232697947, 0.47575847228555546, -0.6631184930519816, -0.10533982958229478, -0.862312795139494, 1.9050357485876925, 1.1401029181822473, 0.6028710538213506, -1.864884618939587, 0.7195865584351603, 1.100737958528631, 1.279013250561893, -0.8515103611838092, -0.37644935549052383, -0.12364354036477465, -2.0610588518408988, 0.23421753152358907, 1.7328962638099854, -1.454388397814785, -0.8674475810392126, 0.5643874776480163, 1.1926632205341108, 3.027496983410721, -1.4303235054421317, -1.4427972883436748, -1.3971471415000307, -0.8800764367986831, 1.1664020957679109, 0.4334023007931421, 0.42430545446097373, 0.9696475820263554, 1.388478819182045, 0.9557456374951956, 0.724454604065764, 0.09174530978942459, 1.6855168432726149, 2.1074757454836575, -0.3296432509806522, -0.9828205787523092, 2.3074635071993663, 0.7883939198726746, -0.6464233070177356, -1.200053455572835, -1.2808709812325205, -0.8815651445272688, -2.7089320245618898, 0.39565617211632387, -1.9186494192563246, -0.5164880937916813, -0.566698666926346, -0.4096105658603793, -1.9029806336434483, 0.1242285911195381, 0.05757478103448081, 0.2651874538396717, 1.5567318706972786, 0.3765675302465909, -0.9243407091599722, 0.7746157268065396, -0.5707261443714894, 1.1905688380976454, -0.30279576882825826, -0.09509305849995338, -1.296122402612257, -0.4327859729947921, -0.012531297025050557, -0.35146869982207485, 0.15532775724392114, 0.7564212930680134, -0.8936439774506356, -0.8067322338134219, 2.8378675259105988, -1.5588920305796692, -0.08419896364009764, 0.915964163210747, 1.9454385404972772, 0.0002965376715391089, -0.384979768384597, 0.1598730116266435, -0.5226106094691176, 1.6124467921257224, -0.9015740843264182, -1.799731984582887, -0.7140024096187053, -1.3407339305301007, 2.0028278937037487, -0.4276274982279362, -1.5303426295152318, -2.342244122519663, 0.4334344878950178, -0.49885361533036465, 0.9395838624222481, 0.4402924177402564, 0.27780317364553353, -0.4150625745657126, -0.10898249854164817, -0.06600633014851383, 0.1387343765137426, 1.4990487835699555, 1.0034194606170455, 0.4511374663739279, -0.3645511627004281, -2.2109957361943815, 1.6094294844375232, -0.3222696764588474, 0.678730706012621, 0.24238742063023566, 1.620309375835001, 0.7765336728517477, -1.3101313249135929, -0.9848552950478467, 0.9310498445027571, -0.22851710492794708, -2.2709759180485998, -0.5634925010738157, 0.9220255056763366, 0.5695380996690056, -0.870093940356401, -1.4122860213441568, -0.5274535980624887, 0.5151519733793404, 1.138661490160091, 1.4512344303840998, 0.524106974964673, -1.0519082830016397, 1.1606457217878106, 0.6275306812941484, -0.42530826964220986, -0.27108577743957374, -1.3904256380842543, -3.045554368801117, -1.109938532708033, 0.37608249609907796, -1.5238522241282833, -1.4022957613042664, 0.4803634863168463, 0.7144831451944329, 0.7259058363490867, -0.49427131947225744, 0.2632318739291222, -1.4069110186742912, -0.3326820482805736, -0.9376062148031762, -2.743553664411934, -0.468253715076424, -0.285877311925413, 1.73679788122855, 0.9577645578401883, -0.6784726188940102, 0.336496683620441, -0.3548809807784525, -0.4168654583039418, 0.23868506365455106, -0.5926517538606959, 0.1022468032311494, 0.667658305562431, -1.092998867320882, -0.18430050843743348, 0.10008492127420142, -0.8263446164529096, 1.5075605561814278, 0.43825706090695093, -1.0232332772360577, -0.6157304092431791, 0.25596186347945626, -1.5305474854317473, 0.11754615975453903, 2.5097578380770504, -1.4054113427223296, 0.6429837129476719, 0.40271952832469904, -0.5029179953582527, -0.39289620024952965, -0.5138522759085916, -1.1305898852297895, 0.724098330443506, 0.32195964055473236, 2.022420965940868, -2.405426801391854, 0.33215458279071536, -0.9062646431270447, 0.8027598828043825, -0.8966308602716704, -0.012184086603732354, -0.20752612598539094, -0.3140515871244398, 0.8925771346798558, 0.24650440516498723, -0.22240459456955236, 1.0087594606470531, 1.5556368599823438, 0.13026474862564036, 0.3508165084316208, 1.605313782021212, -0.8603323901244307, 1.6662585922639486, -0.38114074117704877, 0.2092597114141247, -1.7998608731486343, -1.6929832425596565, 1.6576570699666604, 0.5652477341772785, 0.5137674565722942, 0.9362205933152736, 0.3506926321643942, -0.7615391727206738, 1.126484238295538, -0.04541268131618341, -1.1442283136558562, 1.057821481953343, -0.4768442334041939, 1.232339675970304, 2.0706498617189077, 0.6839385886320748, -1.190847009999024, 1.5104847811290831, -0.3763016276831825, -0.5089251331251056, -0.8277901938704436, 0.6524692286911357, -1.2389814243600183, -0.788366590727158, -1.4575185457079145, 1.1019968909212516, -0.5099948855280103, -1.5965158755703954, -1.1130728195764055, -0.04482495286584056, 0.321815408976315, -0.24640404349219092, 1.0351112393865736, -0.44545961631051045, -0.28073204434175786, -1.9664808098176945, 2.2300780903510597, 0.7362028845350491, 0.04533266312384505, 0.2455945944419008, -2.1574351364055717, 1.6206717292904411, 2.3414427251911345, 0.06605555419084498, -0.1703816992806846, 0.44370367271588623, 0.903887693961059, -0.44276411840482693, -1.51688953880429, 1.1677411712216403, 2.3750436294494843, 0.019393420800412276, 0.5535592203517806, 1.1164179354976558, 1.3300578522595603, -0.7704576853926888, -1.06256728646204, -0.4250454844693546, -0.8094607871650847, 2.0165555875061485, 0.9548374849625539, 1.213054786904052, 0.1678271210584961, 0.5671262797746921, 0.7800799184634386, -0.26277064041977594, -0.9572325797595085, -0.4401426219990399, 1.0416784479402557, 0.21738118556109, -1.7820835534126154, 0.19808799187251225, -1.308360394746274, -0.14447786044098507, 0.20553389245620857, 0.49362430116305406, 1.0008587542035423, -1.711693738546022, 1.0909531651134485, -0.4848376260077789, -1.0477107295932413, 1.5008855301500477, 0.7640315435783747, -1.0504357241287041, 1.4367072803545464, 1.996396810299412, -0.1881378332047484, 0.25466277234708995, -0.06802610033925421, -0.3973112301706658, -0.04549155722286701, 2.2446938463621455, -0.6656216432108424, 0.5677601156787476, -1.1687317666592305, 0.39251554938062283, 0.30411429661954265, 1.3786517873900157, 1.614633795986649, 1.5341250739444263, -0.6249447951474697, 0.7587087631326441, -2.168847398945081, 1.0301315248917866, 0.656316632185773, 0.04163073946018839, 0.09380815371207517, -1.0914972435439647, 0.5176272976283499, 1.0712226344124725, -0.14997080401411478, -1.211884362517558, -2.4919778698451798, -0.15433264446511996, -1.3257768931253968, -0.1200472156445024, 1.4048681852101115, 0.21058848214945222, -0.8962839475165163, -0.7350904270649046, 1.3074982227863523, 0.603615948430808, -0.7284889805230913, -0.13453372117305681, -0.4374958021306016, 1.2592433055741166, 0.2831235550642131, 0.6463661892914183, 0.08183089321023038, 0.5068919011738072, -0.5143061573312243, -1.5236317436976632, -0.9480899550835539, -0.518817852720669, -0.16533478935782928, -0.6875714758404438, 0.14884861760727963, -0.8320066972585262, -0.08807885832534869, 0.5526881294700191, 0.2785328952706203, 2.2948597583991637, -0.6107336116387716, -1.5512087848144176, -1.6064438037016149, 1.7655602230090488, 2.2150517102596274, 0.5916306135506768, 0.2565862999646196, 0.3111024377356666, -1.7938960253448748, -0.051916626684194965, 1.157730575651503, -0.6387612815928807, -0.4264673233384777, -0.009003074221278528, 1.0082451232723686, 0.6120519860066755, -0.3243671011195977, 1.4176539279563016, 0.10954055608103448, 0.3271462314095021, -0.04499410218884307, -1.0839910645168576, 0.3556053990065715, -0.8952633064748675, 0.05729193401851302, 0.9960214730944633, 0.4363883836430173, 0.8890219677145557, -0.06712373268538478, -0.8831698396974881, -0.7717961518248039, -1.1018247321495946, -0.2076856113057832, -0.49598671249084453, 1.2906623623815818, 0.5022559900803099, 0.945809432212523, -0.7111747681529259, 0.08435812696128298, -0.424891757473795, 0.30201142281877147, 0.2964591972301143, 0.8855059564621663, -0.29657209337272744, -0.013496707571044894, 0.85888978563718, -0.26240923470278665, -0.6548547210446415, 0.19388814171204996, 1.0667704035488499, 0.831525287870524, -0.8249479420645232, -0.49446880850246616, -0.2756394723687791, 0.9136303402349376, 1.5941643122345752, 1.3520599056724885, -0.43852324568255624, -0.061693580136867696, 0.4621806687444306, 0.6495796344877149, 0.05152129850154696, -0.25399002765219936, 1.3456118435102356, -0.2958925128161654, 1.3893798386408964, 1.1698688886229098, 1.116117181261626, -0.334891290455503, 1.6116828755514405, -0.49150251423286967, 0.4310520354260491, -0.24299445124711663, 0.6215408138792948, -1.307537593843805, 0.39013020790301384, 0.06311236444751633, -0.5341571557682278, -1.651422966000351, -0.2682890322412107, 0.10123556486857298, -0.1936399830271464, -0.23102236255506645, 0.833166174138857, 0.8401571027662973, -0.9593261816418355, 0.048000550105695435, -1.059144936436197, -0.8732646370834568, 0.6897106630069118, 0.6684357893993101, -3.1462096013872656, 0.7514589830599484, -1.009848489495003, 0.8463747722276894, 0.07564466612664646, -1.2163945153454134, 2.1004233003802026, 0.6538947206905681, 2.0759068678890973, -0.6922261553549448, 0.8896874188485362, 1.1192432025979113, -0.8510677044329883, 0.47353927336143103, -0.765902293658567, 3.3185598395857685, -0.5846370060480822, 0.5248065582355926, -0.6442980616103409, 2.784731826539021, 0.7949603090971269, 1.9164410684675506, 0.8997620119069739, -0.6451768147973856, 1.191785269235329, 1.006352968605564, -0.34942821988304085, -1.1112128287521632, -0.3522701264322829, -0.28215739971969783, 0.654846600053316, 0.8366279712322872, -0.14704977390390014, 1.7317423658815876, 0.888128329912912, 1.1994049809856606, -0.46322451041403245, 2.666245055785264, 1.0665667946828339, -0.13274645954990819, -0.5250936602145769, 1.2673298466479594, 0.5905647353210381, -0.3748771623501856, -0.3767303093804121, 0.5451794721828724, -1.1669226085976596, -0.1839950869645872, -0.15775677160947385, 0.273793660925781, -0.872263504322528, 0.8203973030249413, -1.1842027711214607, -0.13193935352359343, -1.4296560836568473, -0.9432975585514208, -0.8116208773006647, 1.6737497456753736, -0.8979098348262927, -0.19784566717195096, -0.05446564632115989, 0.833068049086501, 0.1983595636479962, -0.8778171736087041, 1.3732961287586714, -1.8828568415711477, -0.10291410709951021, -0.3353569924652415, -0.3098983395044146, -0.19946514971756468, 0.479740808630359, -0.5752115518805738, 0.9155653481287017, 0.4594529097686722, 0.4047870809366653, 0.3744163610734235, 0.791465608830575, -0.11124406892424238, -0.5197103046458251, -0.4045246126074423, 0.22225331996910885, 0.06808678035839644, 1.226979308189147, -1.6977110506271849, 0.44537013956317123, -1.0214441246834085, -0.8466957187758958, 0.14957776722279945, -0.3088981766742787, 1.496758881111317, 0.48008919169646486, 0.8059139678667079, 0.9807803232312959, -0.3931581644296709, 0.07778081833107656, -0.1817338187178812, 0.007589833540938231, -0.7049503002637083, 0.17300632987580117, 0.27488834535094553, -0.0739172097413885, -0.4483166031279712, 1.2533387832318459, 0.38949654786295024, -0.3091517705431171, 0.035218333509921484, -0.2275804599283418, 1.0846281662005814, -0.5892084545665348, -0.17867864478374518, -1.0630766132844114, -0.26284544862231757, 1.210263124485681, -0.7887188150939123, 1.079065196515148, -0.1131363512254788, 1.158195740012234, -0.5727022727513513, 0.5358493944492053, -0.6730180443418047, 0.9443424826724637, 0.4732370657893235, 1.290833811536442, 1.250530048402512, -1.3606339642760281, -0.03941518310184645, -0.33188505764965276, -0.09958488385430254, -1.0364024324748755, -0.033617546573239315, 2.123933350366138, -0.8745605364552912, -0.5112648379157049, -0.015898625875840705, 0.8529603944343862, 0.9377483304562951, 0.3472621050339124, 1.30966022011779, 0.19430974490305178, 0.6279195217569141, -0.5636748574558571, -0.6289471748736236, 0.7013210615502339, 0.10838187203317855, -1.154985706226985, -0.23707453756187719, 0.39939776217110334, -0.13201368400971641, 0.7833271673651162, -0.022056462941183155, 2.3801568667320803, 1.8767507306025681, -0.02270582061132177, 1.4203017572147563, -0.40497759983722215, -0.8687682524212869, -0.5691734190277306, -2.6860455373532433, -0.4978119305302014, 0.18193435408705236, 1.985294108571953, -0.5575660439590076, -0.3978495604878999, 0.4303671371744208, 0.3630533842402254, -0.1348248112610115, 0.047758209103453415, -0.3569455518474997, -0.6855668996257835, 1.3054538269399172, -0.8940983031858387, 2.5079582681064427, -0.46707097559954963, -1.679756388038206, -0.5720962029693142, -1.2049533450579992, 0.059089508589254575, 0.03647035956548444, -2.0649517473670187, 0.9790673518608126, 0.7115210136873128, 0.12092139164333617, 1.5663653893463536, 0.24443496948857685, 1.1474674783812167, 0.7243973819728478, -0.3842593521053332, -0.14024968831242554, -1.2810110584779066, -0.4587124584223433, 0.3627906207399356, 0.37948783274508385, 0.2530252071058123, -0.2249771415814947, 0.5030580597270224, 0.5102851056631272, 0.8772048982973313, 1.2698192215593267, -0.4225658282634498, 0.7579317877937709, 0.17873264276025141, -0.5919098815578941, -0.8134567273882355, -0.1214678475418491, -0.5082648932870494, -0.6711896835480723, -0.6667116096559038, 0.2531471001813962, 0.522565743430405, -0.25711901029499123, -0.8265126915462324, 0.16419406203749728, 0.1696511852133477, 0.313752156592862, 0.7913449579871764, -0.4195959654062052, -1.9128965649991894, 0.5333464449776257, -1.2719884682278364, 0.40800600946847676, -0.5370168044614623, 0.45533691087389866, -0.12074116436911962, 0.1881666019160117, 0.22889703254522664, 0.857060780032258, 0.4722442004837724, -0.331656036236668, -0.18167855520329373, 1.5049483772815966, 0.6104509640236611, -0.5291547698391349, 0.4674696521291048, 0.04774803981105142, 1.4994064065381558, -1.203646058684717, -0.23893061028874504, -1.2636413446433696, 0.9283179695850905, 0.17063975684377022, 0.6275451307519624, -0.7460625820534382, 0.23172142601194748, 0.09147432467059359, 0.30386536414978726, 0.4828960271179455, 1.36123679055996, 0.33566782269360523, 0.07934323584539689, -1.1332126175332156, -1.7959000877398075, -0.15239278814710006, 1.2462601745741226, 1.0646583575156117, 1.210062826410793, -0.29637478191132516, -0.9222809619045259, -0.3559234768811279, 0.19492881776949061, 0.7480007805779394, -0.5828641942487524, -0.6948182481504209, 0.18210179399191162, 1.8580098041358781, 2.7292164709434124, 0.8447613175931171, -1.2982037279233507, -0.8298490863159868, -0.8938688484251803, -1.0836767235057716, -0.7340055376380308, -0.9554375945080842, -0.3627703220519733, -2.0042954527077903, -1.060898048877831, -1.8643251101423974, -0.7404402998033963, 1.3284231719845732, 0.46108294338343364, -0.8494981417402004, -2.333775956179338, -0.6114622191984008, 0.8317407915167193, -0.0674046140275296, -0.4364108706122674, 1.3320924497311277, -0.27340841808798166, 0.1364702795799166, -0.43853146905151097, -0.08450611735449991, -1.0485510180777557, -2.1972801891583362, 1.2147449181176588, -0.4659880503467573, -1.1994646250066012, -0.10268544514137072, -1.2451293238257093, -0.23965508949409117, -0.009444468913598294, 0.6778680848581994, 1.261205925288006, 0.956528254372469, -0.7488360798715533, -0.23099300106939502, -1.3906228985844924, 0.21043712306307147, -1.2583962085575566, -1.2831409881396676, -0.42653776103472973, -0.11793036483659321, -0.962448801997947, -0.7780299547063264, -0.2719492952965901, -1.2495029089110317, 1.1217973678437745, 2.1542543365964337, -0.017809351275545084, 0.023777660567278903, -1.687280329219374, -0.4766955416454262, 0.885062242350826, -0.6717660268730818, -0.37761169075640805, 1.4102310102097473, 0.05881071409729816, -1.202591661012532, -1.14683406612602, -1.101949700576662, 0.4717630882932364, -1.2489683949038193, 1.2262425515220807, 0.1674234181528745, 0.46732970485689734, 0.7534801743400752, 1.2654711119735798, -1.1536982461046459, 1.438458748092683, -1.7055731904219837, -1.4712466470890648, -0.8074510883830891, -0.31737799320397775, -0.512971390912733, -0.10178299510641377, 0.1303816058490801, 0.18066701605896554, -0.17021384607643683, 0.0192951473819601, 0.587380251051186, -0.23974047221585437, 0.07798240623639882, -0.500728210969312, -1.4376952748714364, -0.02193944776975522, 0.1731012652235595, 0.3854882745902507, 0.1458324401824036, -1.3369675134033787, 0.2959804010464832, 0.3191413011331685, 0.01536230548061912, -1.5487650725395166, 0.06287895330829109, -0.17161458211348013, -0.38091720108707006, -0.5363034460332813, 0.8813727674613362, -1.842294774843024, -0.5843938109946849, 0.03466353410665782, 1.0245873376689347, 0.8918625008935859, 0.8311272869198608, -0.6124092503874318, -1.1012542450425362, 0.8608320186596904, 0.7321793534863295, 0.5729510217936937, -1.204394445036792, 1.1631979190449129, -0.18559018906188415, 1.104815619684322, -0.1623060195023642, -1.5336799880456133, 0.5603266770927056, -0.45901676947785197, 0.09996141330163015, 0.13245556648195306, -1.95634747769639, -0.8784745151342939, -0.6013024386472722, 0.2206763936129337, -0.21976736039301664, 0.0020574182319100564, 1.339354878211313, 0.06050697862652609, -0.34077323214998534, -0.8878539101418778, -0.4033244401616886, 0.4200187635988277, 1.5986814848312063, 2.118235090256359, -1.5288642117027789, 1.4084977125627385, 1.0444972435881301, -0.004058069389427186, -0.5738770775000499, -2.1220183835101474, -0.15944026200103828, -0.038076949991220216, -0.37608183151597413, -1.6093519683387136, -1.133087556884562, -0.6847607210325196, -0.36817504128337675, 0.9195073461577301, 0.8606928170482914, -1.3410410186733352, -1.5687381686897632, 1.6660400789890162, 1.2800537973024901, 0.8516248690171924, 0.3662266217736957, 1.008764101398687, 0.21906875835159684, -0.6141364627007719, -0.4358449875906103, -0.1817559678825296, -0.5346412309734625, 1.7921745887181428, 0.09783742772007176, -0.9228020309759957, -0.8326079137329829, 0.5454430990908333, -0.24106599378476049, -0.9148382057445684, -0.7489454334796629, -1.0530344510975667, -2.674061322549755, 0.46901572661322005, 0.9006539974948196, -0.07473720169635716, 0.6436749083372233, 1.7481270506984712, 0.9288112696089031, 0.38860609565248555, -1.4217707436779252, 0.5001910639778183, -1.1273464273967198, -0.27987759550999924, -0.5711345723547449, -1.1235450228563206, -0.4931138007634631, -0.5064768986623287, -1.1855947128104647, 2.1893221487534382, 0.4704236238154683, -0.4242327511858831, 0.17004779612809032, 0.7303080942507774, 0.0826127463540211, 0.6983515888484467, 1.6808632259842637, -0.5106484744421418, 1.1099576855093936, 0.978178692147097, -0.3341656734052484, 0.0840218256334489, 0.2809099825610781, -0.8371225530866102, 0.9050396977306633, 0.7728360459598225, 0.626649934517492, 0.11581880405880021, -0.4290164351689017, -0.3748638460002872, 1.3741357445939804, 0.659975118623091, 0.29646958459685013, -0.48821059336164635, -1.0943242948801224, 0.9511594500305647, 2.1514492487916583, 0.3022967169122932, -0.08774764714941435, -1.4691965387759442, -0.5663030192757597, 1.8880030056735453, -0.324674795933586, 0.4839752903189736, -0.05179646851081091, -0.2435180802541364, -0.6500381945745402, 0.015286566957281398, -0.36125288984081577, 1.8771820808227426, -0.2665597862395024, -2.0006020872107513, 0.27531333861570545, 1.2861297701683585, -0.37781158405979703, 0.005030918817482798, 0.760818725434159, -0.8166229438239361, -1.0357495487138337, 0.12901338541651924, -0.48040412837224766, 0.4743510553581979, -0.1031014068697937, 0.5813897471207998, -0.22895327503720864, 1.606038572937273, -1.4446762227785763, 0.12939804822440487, -0.9990202755491168, 1.319768171045181, -0.10905292578120347, -1.1244714550662593, 0.6407694891331998, -0.42170752341964596, -1.0147154282541762, -0.7811230339639008, 0.8152501308763355, 1.1905938328574168, -0.46396978686143053, 0.058678770170693666, -1.1041301434630086, 0.2342687107881034, 0.7690713428515166, -0.04146533861200343, -1.0099743642150567, -1.141826486551301, 0.47378153165647746, 0.9397158827029648, 0.044154299811301825, -0.8481875856891884, 0.018890446567983638, -0.7535838178677173, 1.6239196664863713, 1.2869118049740949, -1.6861102192287731, -0.4381383136004561, -0.7226035998635439, -0.15889388950656294, 0.18977278098759084, 0.9018464065242866, 0.7297410755985075, 0.4067074550853988, -0.28490926408750306, -0.4163356494274026, -0.7936045658389341, -0.7782522645692226, 0.8039794933708486, -0.7762555932350912, -0.6988818509981409, 1.1718722270936812, -0.796659591410654, -0.2967170295327197, 1.3796809321685914, -0.9533170383612422, -0.08936534062746836, -0.253972784524572, 0.304513661370464, 0.791070339050195, 0.5703420491571028, 1.5224052169290283, -0.909056652278084, 0.43860862925688754, 1.9026803876901022, 0.07724653497529499, -1.97312932959586, 1.6825306587806745, 0.8838630004763508, -0.5410164924997899, -0.7258996978560418, 0.6567220289440328, 0.7086754382241024, 0.6054700248686238, -0.4359489930856392, -1.4813155816130765, -0.3842052924574131, 0.494861876511826, 0.4847511480725863, -0.670818353437032, -1.002735356414574, 1.2559609934516882, -2.0808072486274463, -0.057967783711120824, -1.300636061017699, 1.0308485609041709, 1.4520073290710136, -0.377989994628548, 0.7766904549219534, 0.7260662414261614, -0.42877363504933874, 1.0287165262984699, 0.19569303154816217, 0.9172310542418272, 0.30673879779167074, -0.10160908720110029, 0.6603053571751336, 0.594670209409345, 0.40839543149678514, 0.6482539816316971, 1.593822509557387, 0.34786747959465447, -0.4059054189325043, -2.1731128690489805, -0.19803577594029884, 1.8827573775579567, -2.3942402773725875, 0.10982154243546488, 0.20235945582227005, -2.1500578120767058, 0.48235559437903175, 0.5140239193240138, 0.4376012162034968, 0.40458759120156396, 0.7653024982753186, 0.8263744067965553, -0.5691570588374352, -0.26762914763469464, -1.6075129068941043, -0.27713841696404073, 0.021108320729474155, -0.27480505232193586, 1.6853943080139344, -1.2652096080090038, -1.8461659757177487, -0.19127780469399955, 0.6935125229081439, -0.47667336087211853, 0.8368176970861304, 0.45573403877959184, 1.0176019809617072, 1.2499931468694758, -0.7390508901003487, 0.4261292016774209, 1.902371066066976, 0.8936173632136973, -0.026642476842592095, 0.9156652225520925, 0.9097651047653785, -0.829065320220915, 1.3304165347515846, 0.5303016993233253, -0.5299386193608386, 0.45691572538846753, 1.184608803290601, -0.7330737584515701, -0.0001462462061423669, 0.3549096366617547, -2.776082345573465, -0.09904801950198819, -0.01759073731997961, 0.434557922928209, 0.298144499811438, -0.3203658737583584, -0.237366656860812, 1.5131626193568992, 1.2319426210834195, 0.18400200944465867, 0.43274337144974645, 1.2386292094640459, -0.9047174414218824, -1.0028561683911845, -2.099764767617264, 0.8400581738593043, -0.7944150452200756, 0.00018431856060424886, -0.9151071853052796, 0.04659912037882729, -1.3391245434911063, -1.2748713717601956, -0.4612676695664609, -1.6963391473187561, -0.19139586999616576, 1.291482725480907, -0.39204712482222054, -0.246567014420788, 0.5853516624787106, -0.5332043074577797, -1.0777055467558354, -0.6739900663644375, -0.6604103914927985, 1.0502631860275113, -0.5871435524333237, 0.7777313209830491, -1.2622366074199405, -0.16103680841878942, 0.30666028717986155, 1.1011108388950925, -0.3773129624537605, -2.732693382721111, -1.2327450597616734, -1.1160121305419926, -1.0198983862068711, -1.5080595510491772, 1.2165961202466602, -1.0725102593527847, -0.593441985683297, -1.1811100984227145, 0.4440231536741005, 2.1023659112323747, 1.1705362218272233, -1.7493137541299626, -1.8070523465319164, 0.02502381710546605, 0.7408212359969267, -0.33235691282399005, 1.2355771835056912, -1.2058153442499333, -0.5377886007689391, -0.1595864461783663, 0.44706633513093896, -0.709156457919995, -1.6357425290295604, 0.7489329715815924, -2.156836936227476, -0.5062658643228768, -1.1018330186020455, -0.5620280724885334, -1.4559615324063881, -1.422416249931909, 1.1440265751946015, 0.9030794947165403, 1.5791958055208848, -0.25233393120850756, -1.1971906138873658, -0.07589854459272068, -0.4576554464435483, 0.6717178826430658, 1.651927385216912, -0.9441089054743657, 0.43183965186975615, 1.3439433669251324, -1.4077026624512037, 0.5197341836980119, -1.1270769968217278, -1.3274576523908173, 0.7854238576248721, -0.4973066015127579, -1.6311783993937607, 2.046406158427978, 1.3300322323355078, -0.8662457342152114, 1.4837997590171026, -1.7732454317026325, -2.2111976207873645, -1.4596367162634678, 0.42506513472608737, -1.3708773706528627, -0.10767408599113315, 1.246065437234336, -0.25977914160327564, 0.1323892219801353, -0.21577074030672486, 0.7202407303836174, -0.044129504266429115, 0.7075777137384825, -1.501596162316272, 0.5627749941438669, -0.12737079335836307, 2.9946350529528583, -0.8024134513172643, 1.2239014298207542, -0.6713730011940203, -0.020490142919097513, 0.2994146074035523, -0.21732699619018486, 1.1250331196023855, 0.744352886267759, -1.6388899507388284, -0.4331941030036109, 0.6582472105375604, 0.12605790198377023, -1.1258297076555435, -0.5619334728268683, 0.6232432081131182, 0.4062456660029076, -0.9781166080422969, -0.35272942797901086, -0.17092342402746852, 0.6104115545749829, -1.6001396457679316, -1.549776312230527, 2.087831121127352, -0.10564473461810026, 0.6733422337661139, 1.3051597394102796, 0.17896660559705152, 0.1584083115562458, -0.29204917178301065, 2.46787065982015, 0.49755322222931175, -1.5186712324880207, -0.9017537787868226, -0.20023111757661072, 1.093468590395658, 0.4953509380088752, -0.9640307265244096, -1.3569166068822418, -1.4643695456887382, 1.6216467701176667, 0.29978286697696566, -1.7218012197236068, -0.3829337197181461, -2.1629841735984927, 0.04046549886756459, 0.3676797820181914, 0.6502102134165889, -0.07311349848766603, 1.1983174227017719, 0.4241448665531386, -0.478415679907248, -0.3900742424949416, -0.9397611680566297, 0.3251103138734123, -0.10226376708683228, -1.2857845174147635, -0.391783663652113, -0.2928221290674781, 0.9469006932154767, 1.3593634533557075, -1.3306600763676142, -0.7621085666691932, 0.9816794537976868, -0.11517015606979955, -1.1121830617287156, 1.2996117413875683, 0.038860595631247545, 1.14275068563636, 0.9813198461140934, 0.24890880397522946, -0.3035415214369734, -1.4379578090992022, -0.037122159361401647, -0.9608216859110749, -0.8413865063724396, -2.100160523187716, -1.6225517247080623, 1.891705466847611, -0.3467916502003131, -0.8511201445335779, 0.10534642475244566, -1.0712883784882872, 0.35269934148477866, 1.053726252540469, -0.33169621539623834, -1.171018795506323, -0.34443819101422635, 0.9648942766353388, -1.128536917219988, -1.3221115076661656, 2.2349190214131682, 0.7289051506650658, -0.5538744459324728, -0.008581038868920804, 1.6428777925929525, 1.715326703371534, 1.358597141496028, 0.5388764665411616, -0.3612146053112276, -0.34957015193348084, -0.17827312245570312, 0.06019568298329911, 0.43850905597382306, -1.0132848428569285, -0.555254574066883, -0.4742131052787511, 0.6496027340963499, -0.6448165600231585, -0.27799612094456805, -1.740320908303812, 0.5205312152012808, 0.8349456816936791, 0.6765689112180486, -0.34196472851716864, -1.388998001315754, -1.9335158142877673, 0.5467812271199233, -1.9354253546626847, 1.7811335156694594, -0.21168666169795866, 2.0580651078585173, -0.6779551291646259, 0.9854477581495037, 0.4805813465630364, 0.4522869944088665, 1.2339986814075024, 1.0774560536707416, 0.11415416956732587, 0.3499642405005787, 0.36196450061029134, 0.6045556944049194, -0.09227563921723134, -0.9329375514707019, 2.1890880384423537, 0.137876135653969, -1.5679461405215147, 0.796967936675018, 0.7197360399784993, 0.9427914000033509, -0.07703924746485086, 0.9065800264112424, -0.041470348689910896, -0.8892574066566996, 0.44683111235734285, 0.8162694050358577, 0.3819852904726548, -0.04069315101568229, 0.06330532663205203, 0.5376866686222914, 0.5867479221025175, 1.0612070570206484, -1.0876411215097084, -0.6859651065279234, -0.33088652103855015, -2.631961580135438, -0.9025629954636233, -0.936355617915602, 0.6134046099439601, -1.8300113544877683, -0.4563550480637, -1.2797558840680248, 0.31530921693241964, 0.17265962516169645, 1.3615840684137275, 0.9440282162348619, -0.5653957107678386, -0.9300812814364625, 1.2997208139043255, -0.4555354903375002, -1.4535591627113182, 0.05940976540519228, 1.2137135718867162, -0.7419704896605802, -0.23218945945859756, -1.653371718200886, 0.19609176801826197, -0.4437693932599904, 0.480063553949959, 1.043697222357456, 2.6720403460580315, -0.22411369486912167, -2.6047033988985886, 0.4472309669525269, -0.5395194350340685, 0.745330051389881, 0.803564731454364, 0.8230637900152488, 1.024969408231979, 0.5457159853373017, -0.8984434623437598, 0.06096058896844, 1.523975397450888, 1.104568561405362, 1.3266356860618262, 1.0794791147703398, -0.18460881348983066, -0.13236914036005096, 0.34547749933584254, 0.5058585102445584, 1.0703541758086272, -0.5283634279506202, -0.5879787871999884, -0.232911338694124, -0.1751877957401897, 0.5029518826351531, -0.42645408071441987, 0.5832034134257705, 1.4710251919741362, 0.09041020715710328, -0.4200943941685729, -0.04701504600058357, 0.1486986373695111, 0.5310174988455026, -1.0384703148872954, -0.5893196761156418, 1.3382997766204343, -0.8296873721482261, -0.9822415723182819, 0.46866357155237154, -0.48573592246561625, 1.4006847245947474, -0.13574681143428105, 1.0761289920983852, -1.1379892439545727, 1.6929825483722691, 0.07638404251111751, 0.27848936978794697, -0.15724732951987688, -0.5570524740318024, -0.1633126268966448, -1.0971791633088503, -0.48693080415625933, 0.6137400386003775, 0.9157231994440977, -0.7975916259844091, -0.7144321105169494, -0.26396720658691086, 0.3971023846943454, -2.28815244556158, -1.6546491924216933, -1.009754064505343, 1.0411423539549398, -1.2751166412199708, -0.042543214935524, 0.152482638683233, -0.8062117837098861, -0.8312837556289288, 0.11655972046178247, -0.10769547330434806, -0.10539803043361726, -0.26204394077779114, 0.8225690814152993, -0.09341973068100133, 0.907918858868003, 0.21937088500956836, -1.4175116342940153, -2.6871708764262388, -1.8178456617831078, -0.46648842820154407, -1.2508523690230302, -0.20939593912347643, 0.09275006403928084, 0.8141222568520392, 1.2951225315905583, -0.528045587454564, -1.869248802050358, 0.07489765698915096, 0.9559516576250019, 0.4585473349330683, -0.4196461835276637, 1.1153850234779124, -0.1647760322416604, 0.30328745518747346, -2.40179600100362, -0.07010124337899513, 1.5477595376570952, -1.7952851271246113, 0.5530988369792462, 0.7582919168611275, 0.639920747222, -0.7525234565152209, 1.6337296958787657, -0.4407389013193396, -0.4804320212705937, -1.602701126440514, -0.9112719412912995, 3.7778213281791975, 0.15964131408277013, 0.27177447663632304, -0.17269844682330482, 0.8229721121315, -0.43281421807949416, -0.7542541257397068, -0.12340578451318658, 0.37379543091461015, 0.21473770772024986, -0.14609071329675394, -0.2543575306315861, -1.2581751802363526, -0.8374104313051595, -1.412427364612261, -0.2614279253691704, -1.61998664778547, 0.18093608946599016, -1.0469596834479216, 0.5820076920615328, 0.08577006447996195, -1.226612209563885, -1.1140368416855735, 1.8987837156508283, -0.5377170355593786, -0.6665227430361379, -0.356800512137701, 0.4735850497106619, 0.6012331465593591, -0.17890446509032612, 0.8338317827398701, 1.0191884030669784, -0.047004221237059204, 1.6155040732499082, -0.16812858344060086, 1.0456741810465806, -0.12103000955501365, -0.4869127749514122, -0.5376719394260872, 1.2180493803115253, -0.19940147621016824, -0.9577158733540623, 0.6509635984019568, -2.357020242800198, 0.5387497843409341, 1.1983329567011807, 0.2803528221930437, -3.5570961405835035, 0.34830037634597666, 0.9204293542276959, -0.5921921417243293, 0.9892363106074042, 0.6689137393183274, -1.042603347740498, -0.01796543021807538, 2.1390637653685234, -0.4244282781288859, -0.35194410006614807, 1.571106605355014, 1.118377956212319, 0.297949954690424, -0.07338629212505561, 0.3741754006455119, 1.7634985413490947, -0.5922495422524763, -0.38446097638649185, -0.1194009196556567, -0.3200165026124778, -0.5495673401872033, 0.4573749506050321, -0.7533672112986742, 0.9069447245486366, 0.9572742407609692, -1.5271379087519927, 0.13202885311350632, -0.046444776948749794, -0.9096873768511408, 0.281089567453592, 1.5448504390143172, -0.10613626888221202, -1.0842130913302261, 2.380477213332298, 1.7279413746092822, -0.433950613420936, -0.47862569015161993, -0.6614051088504843, 0.5659122436806864, 0.3455287311429687, 0.6489319740339495, 0.1862364302476263, 1.4571380936570046, 2.142146019789903, 0.222714250736247, 1.3255029931432551, 1.2811902794664018, 1.7131931699507013, 1.1388263149281024, 0.0019905116229070614, 0.8886004402807619, -0.2930279921378867, 0.32375128293119104, -0.1380839945885275, 0.2877926795760793, -0.6509540090897662, 1.9882509867329423, -1.9350460764250337, -0.29251265022150996, -0.49986924437467856, 0.3913548231486652, 0.4670939145939459, 1.7906661977930192, 0.2888689801017404, -1.7933749107815196, -0.7999179050689869, 1.3556834620543476, -1.009679953022126, 0.27162225957564035, -2.3385474595506004, 0.8550159930475286, -0.6977563217209496, 0.3252578283234634, -0.9092416724008126, 0.12470755446485186, 0.7355795305624039, 0.9911916297169718, 1.0317446322610593, -0.4702967207147771, 1.1869165358384315, 0.07905936947637933, 0.3797533076828133, -0.41431329270401557, 0.7128526001801522, 1.1039256880113733, 1.939405649252773, 0.6970075616139676, -2.336029360806185, 0.3532771770258634, 1.1675505733753513, -0.5510946759588604, 2.1401481473779254, 0.6756329120059436, -1.2635601941015866, 0.8482377824702345, 1.660905186289271, 0.5066196811506537, -0.9741897722036991, 1.1914700159978653, 0.6277093969427818, 0.9942724627838139, 0.3242965701407056, -1.016957544522191, 0.0806584494765542, 0.6482536102287791, -0.547562207871941, -0.49508865890537623, 1.6266188254905847, 0.11515589478968924, -1.8660977829890402, -1.1798259387055703, 1.3201407546072552, -0.9141840393254657, 0.847536469597822, -1.941806458912648, -0.7475892737908587, 1.2038786040868366, -0.32996575940992373, -0.6385657161236324, -0.389977768998244, -2.832951362468583, -1.9422099977755385, -1.4410430354313677, -0.7557945955521147, 0.4133269361708755, -0.4977510080071393, 1.254611433426083, 0.4119953051277975, -0.6873972910761575, 1.213702326176439, -0.7758121327452622, 0.7059081050202847, 1.4707942062630892, 0.0244641621364984, -1.6264621693080832, 1.2647670032965848, 0.15086834866592685, 1.4448883595427413, 1.7542274769800934, 0.42480759885768127, -1.1974597212583338, -1.5094537672195305, -1.455194893537952, -0.021969010207516758, -0.5388190052898808, 0.004954979622467176, -1.5633246924366755, 1.343007431842172, 0.391119639558278, 1.1657769765077, 1.8260318735762406, 0.13841229592158666, 1.2329072831448822, 0.5035828311687457, 0.5744856072835739, 0.9598856996975934, 1.239525883605648, 0.3487237558797524, -0.005253191849039535, -0.8258418834600018, -0.5443927197358805, 1.1553958284709007, 0.12200868826862862, 1.5357355369252468, -0.8141498290143862, 0.5408678336846882, -1.0518720402800426, 1.1157580314508813, -1.5679453169327953, 0.6087868351336124, -0.6100545598442865, -0.5520856128443463, -0.1767922830327805, -1.059705277619716, 0.42907926571528937, 0.915373188046355, 1.4962266018624109, -1.7757511190992477, -0.06646091951088219, 0.9624384130805872, 1.2677390646826527, -1.4536721629199978, 0.9349877402532426, -0.6281409790787661, -0.4915391206051256, -2.1615256974771055, 0.10170346010427903, 0.3910666469284066, -0.42609040162160117, -1.2047185356879768, -1.6162824609916253, -0.25899418588568773, 0.5530067643360277, 1.2102080953986885, -0.35507502606151486, 0.029254228894089695, 0.13876006931247767, 0.7399770614701945, -0.8367587400642725, 0.3386545565907166, 1.251592303581202, -1.3663896170349317, 0.10498780012301204, 0.2951134232425044, -1.4578838311193207, 0.13157080212148872, 1.6000529487809991, -1.9108981449996796, -0.17180891449063848, 0.6173746515859269, 0.7437436859374436, 1.136716062111786, 1.7706557457150927, -1.4409767135487572, -0.24799852469261552, -0.025900287075086452, -0.10342539911129381, -0.1793264121908975, 1.319390386928869, -1.004981408690432, -1.1306759327729186, 0.06715417153326687, -0.3579692235680393, -0.3007909874015923, -1.12077333486155, -0.011164229412617594, -1.8058239373634786, 1.1142429790136537, 0.3517219278469237, -0.34349112644306307, -0.37574824938427775, 0.10723286549085095, -0.4901796343212768, 1.7219666663826403, -0.5124828506095646, 0.16500775149368346, 2.034632415400023, -0.2180737867721536, -1.0602782803347885, -1.7059810173429155, 0.9929519110201601, 0.2753054798914525, -0.8632566931209523, 0.06732146561631334, -1.221295416751802, 0.9150951737273898, -0.3228372613995357, 0.6014705013926502, 0.5012803861308104, -0.1036297997087989, 0.7606068627007017, 0.6573661098559255, -0.2531386789197349, -0.24778216188747218, 0.5380072371248479, -0.9408751403583838, 0.20410243984501134, -0.1573109542814823, 0.749215178046306, -0.2964212024430894, 0.02363088430341682, 1.3531658627718657, 1.196452330502622, 1.554302325253045, -0.28787580647909616, -1.8767477820276184, 0.2993936337266189, 1.3377837391125895, 1.0334233333733633, -0.48807448366478273, -1.54477821691524, 0.073607962745136, -1.0218980168004075, -0.9549221995917113, 0.9988334309897893, -0.35467605939772295, 1.447141600383929, -0.2561272644843322, -1.0672293183385035, -0.5880627203239442, -0.15704399560573715, 2.340795066283793, 0.7549961433628991, -0.195003329060216, -0.8594519481388653, -0.5196200316192888, 1.0030976535753646, 0.07563575756558671, -0.7178217604250902, 0.013513490609848952, -0.2593978070771882, 1.3977277205664063, 0.09838029576220068, -0.3464239931773464, -0.7566431186260936, 0.8765249511737777, -0.3414325945727864, 2.274127770945173, -0.3989401934889917, 0.5471194310513274, 0.8478220983424667, 1.0375886305711275, -0.09186627696908829, -0.006593063054981354, -0.10142684728570989, -1.5932689523580754, -2.0730379850938285, 1.2899334903858426, -0.540457258777051, 0.9097361436219007, -0.3328799034347252, -0.02553796315539401, -1.0356759069124757, 0.16101952285017837, 0.3743727587339015, 0.6652902130821485, -0.9754499527810535, 0.7173168987920695, 1.3090249273018504, 1.1694463344879134, -1.3639032861188405, -1.6389217211371185, -0.24316132186226894, -0.01335964546347869, 0.18572472967642573, 1.5389220079035446, -0.5957516561696102, 0.9870325173522903, -0.1940153647595714, -0.2707902544296163, -1.3875145105094218, 0.6451837311087143, 0.7353248730673213, -2.6183752726932, -0.237763034193805, -0.3148140194376756, -1.1111050137949092, 0.7022477348110596, 0.30438416641594507, -1.3875356100423752, 0.8161830268849514, -0.10318176742080429, -1.555436923644578, 0.7553455623505166, 0.5753997177947987, -0.6942369207726244, 0.3234487600686357, -0.6113289869970916, -1.022930659237438, 0.388967088143873, 2.8000408042407607, -0.9283376374472652, 1.068534705026114, 0.5099059633238179, 0.8609830110874253, 2.003851072554862, -0.41330825258679776, 0.05136100191561567, -0.7153779818777599, -0.06389984022727883, -0.659629495430547, -1.2992695833894088, -1.7955705374335118, -0.6463121165940198, -1.161442214088915, 1.9954001555377885, 0.7489308428742434, -0.5838080957775195, 0.9226036937669777, -0.9434826144522777, 1.0228517938876358, 1.2934293393894105, 0.6574964749096537, 0.8895024319712755, -0.7209468607515708, 0.673584799720352, -2.647946007381637, 1.3688734425297024, -0.61239979521912, 0.41143193747696083, 1.602930857597863, 0.05237274869194931, 0.26062944786517456, -1.1346289422873266, -0.9453043562546849, -0.36300129482720106, -0.22990204655003135, -0.48936495674003255, -2.1038833962307923, 0.4288862525959314, -0.6509173059681486, -2.2915224601290993, -0.055409690222572625, -1.2053388398908285, 0.1452344084220559, 0.56434017959887, -0.954993446585123, 1.2634387396343563, -0.7533607492098129, -1.515288533010675, 0.7396652553681221, 1.3204506345545162, -0.36101336397129763, 0.1441865749542046, 0.34699523847317154, -1.0869864192566898, 2.057586549337857, -1.351199587900359, 0.7273135819109222, -2.6201369339239657, -1.2763429020122983, 1.799464915175699, 0.5012590976723559, 0.05770172342310544, -0.1895005441560402, 0.8984596367741622, 1.9102659383736609, -1.991940978764905, 1.8265246981810788, -0.13935102647269418, 0.32276990544596706, 0.9879307588543027, 0.16486888651600068, -0.5879138762884336, -0.7975768147363925, -0.5311236381531721, 0.11127401862487309, 2.069731371429987, -0.27727655728995454, 0.35166447528047434, -0.9372405701207298, 1.3809419329749129, 0.2165268271038257, 0.35487341551509, 0.3111692356494577, 0.8478221152510595, -0.7985632725393734, -0.20264411020475198, -0.8042923968333181, -2.912614668595558, 1.2800893268011784, 0.09972017996142495, 0.9089899326571935, -1.2137648830750092, -0.08817644011864838, 0.5294451513654241, -0.9157345557753098, 0.6177192259426177, -0.9348223298870357, 0.7566077944512931, -1.2181361516459006, 0.9763646580316501, -0.05121656001978634, -0.1262631988125876, -1.718427128010421, 0.0842913877504952, 1.3722469834232969, -0.5439272217096766, -0.7347851370254396, 0.8623549408736543, -1.4933817329926542, 0.4040524607109215, -1.125171802053251, 0.3498874890055656, 0.2120496176258444, -0.4147342282525049, -0.09685018746957617, -0.3464960734953876, -1.4538940067910733, -0.41104017024324613, -0.4146376550397463, 1.8114752104941967, 1.2847819921194035, -0.22602395375088408, 1.5599157295042771, 0.11080927749424588, -0.4521117976297929, -0.16455685345629956, -0.7687527383775593, 0.7754975929387795, -1.3401095418526625, -0.16175878083989212, 0.22641640498138318, 0.10993107311609042, 0.7270034645635277, -0.4119912506956925, 1.880256021695682, -0.15279013607194966, -0.16171813877520078, -0.43360494525452103, -0.5642579085635718, 0.5853733943159618, -1.9809946950421964, -3.1876515108157224, -0.3406137836063119, 0.5146898219568224, 0.47508935318079026, 1.2317477777926125, -0.07762891811856173, -1.2216662701766443, 0.0061895484650794684, -1.1398921744524975, 0.5680259845505067, 0.9706374150483407, 0.9677938633872737, -0.9583764477135066, 2.1293673772919313, 1.1197558737494258, 0.1533463205539311, 1.1092733075387962, 0.88140469857141, 0.5557655011202546, -0.5110654313696767, 0.17627609533599797, 0.8668168536938461, 0.9705334005764258, 0.5634165558306722, -0.24021454569548908, 0.3083074822242066, -1.9532704154866911, 1.4836472352722216, -0.38260282351781544, -1.4037513376205109, 0.38508095090637134, -0.5623838377594359, 0.20028823753497824, 0.1719110562124321, -0.6217165816189971, 0.14729414644638192, -0.17489795065278593, 0.7254941399567338, 0.7961000620062448, -2.1954598939272802, -0.24127042424716677, 0.43561596149611687, 0.07217166002564881, -0.9429098629376399, -0.31689428351129834, 0.3027332552667179, 0.19132773479857282, -1.2700632295416079, 0.10619987065469419, 0.0684480658072424, -0.48847306890771713, 0.6790964985546167, 0.20207167833123624, 0.5293044644274171, 0.49865018265257355, -0.19011603849566377, -0.44661498337053757, 0.42960696030638407, 0.21167199431245345, -0.5953078585442795, 0.3934798939007836, 0.7165992626892854, -0.37607289053847087, -1.2856149685608627, 0.24291725316465448, 0.08722165157770415, -0.25846556350819083, -1.22184674862456, 0.2532438426710674, -0.09294308940031126, 0.11462365062444316, 0.0004017243889926825, -0.2586146956886751, -0.33236309232543937, 0.629777567527438, -0.6149899118391272, 0.3145675113237355, 0.39523904964159684, -0.1743375200308344, 0.13113453264436487, 0.6141144301140274, 0.5175013808686555, -0.7767179189735844, 1.1321037084075716, 0.3371188806343507, -0.9299612137476311, -0.07511199396495069, 0.7196093872249241, 0.6508615379881497, -1.058787245474016, -1.2087199716032608, -0.8168871214695591, 0.15093048692780606, -1.1923244746071326, -0.33964688223685363, -1.0072247139320052, -0.9925982306181772, -0.668947547212129, -1.1045456969433982, 0.8121096696108923, 0.6399059817228122, 1.0241387840620932, 0.13686311599193635, -0.8573395380200591, -0.04468323077737009, 0.8314337026507849, 0.7840220865289449, 0.4742185003722366, -1.2903974958406204, -0.09031614660562431, -1.1572024444189462, 0.48159565603634913, -0.6369853767675863, 2.6739926757475425, -1.3041472684299273, 1.0673736842112078, 0.39053689161980093, 0.02827586415804056, 1.050219795868224, -0.5210135544209008, 2.125086680435289, 0.4288277920297713, 1.9088215359393441, -2.1134429037257756, -0.060305247742494836, -0.7463147239881304, -2.2040204609473935, -0.5779110518439478, 0.14304458197148848, -0.6505687850079362, -0.07170049351560583, 0.7204970742982915, 0.0058761628334087004, 1.6742786237447396, -2.1300393044083537, 0.20799583483137707, 0.3154555296442623, 0.5271999661027398, -0.09344792673722331, -1.2683554439605118, -0.686542880793723, 0.17744218061145783, -0.7925262579206807, 0.9521886806772862, 0.9284363890813694, -0.22925765264186987, -1.2744994245679258, -0.49452204225840435, 0.7022734011928441, 1.3821066344052464, 0.28304475620210706, 1.2330866577999477, 0.08334301214931152, 0.19308742043979862, -0.20609730493440398, 1.6692965864553535, 0.5319326843404368, -0.6570123232481377, 1.2227943551579976, 1.0798894868458742, 0.30754617725876704, -0.8031117621470932, 0.8055856562088792, -0.4043291611313011, -1.6565519319764939, -0.7213945809463217, 0.07789856089598649, -0.26818935833882723, 1.15936958537769, 1.5350018198135384, -0.3152424329268584, 0.6569213196578861, 0.280406086192547, -1.0339877904287818, -0.16587682819681132, -1.1793372620519562, -0.11956194263172289, 0.33759266029832674, -1.4608336143528826, 0.8353914060685339, -0.316676403894321, -0.15731322614149115, -0.20674754291870104, -0.053273814079951604, 0.3327635998682367, 0.8761594109733732, -0.5494870253280262, -0.44555113796622364, 1.1742839591198673, 0.11449945297366436, -0.33558098962823113, -0.27206636173727416, 0.9979678118307498, 0.9201254138864716, -0.5968027306747208, 0.5543325172785816, -0.23147924005549583, -0.4460334146412186, 1.1671659580773965, -1.63800069943741, 0.16269490799236055, 0.264579146749239, -1.3073917876918513, 0.8957460551427884, 1.4479227963762125, 0.7326470114186862, 1.1936163647524256, -0.03510550779242662, 0.12923759479455052, 0.8559500354650559, -1.5032988727692207, 0.027585487737907685, 0.7403156533079053, 0.08165370395964792, -0.06743545864008632, -0.994001528782005, 0.3663026804525401, -0.1613018340664427, -0.7132867034866144, -0.4510188946702175, -2.458471798304177, 2.372166617768153, 0.6945820898379227, 1.8396170492469894, -0.8103790390488994, -0.8229142583976311, 0.12652237153727786, -1.033781442634672, 0.4357585447470121, -0.43016789493451674, 1.0687608340786456, 0.2022109307904308, -1.957680877824284, -0.738596478385509, 0.8665616873093878, -0.271530473393431, 0.6801051944104176, 0.6290890285284209, -1.7577684206869357, 2.503348151538787, -0.34098782427987256, 0.5305800421125977, 0.9018670502922477, 0.933801726497086, -0.31041188332042324, -0.7449539563459883, -0.41218581696248674, 0.7938044283449024, -0.7974053316233376, 0.9993117842301938, 0.7000005744873865, -1.8389393289190443, 0.7995874280890679, -0.6464123517466333, 0.7921895305669653, -1.1371726003159832, -0.28206887255064506, -0.24135179417424776, -0.8179890024117957, -1.1807778419422477, -1.4911934861985223, 1.005758817318596, -2.311807249026015, -1.3874559035006357, -0.7277132199827099, -0.19573392060983566, 0.5055347937665525, -0.6221461333230037, 0.931300389406561, -0.44095282968396543, 0.34958628496935235, -0.5354003607757474, 0.627289080123586, 0.6622535960724371, 1.2830518390332923, -0.025567455840756405, 1.3019345423004478, 0.508789365446577, -0.03058833998454055, 0.0687261875691401, 0.34636342033526707, -0.6205775307620497, -0.06452668333338461, -1.1313014592303656, -0.5925965586827925, -0.08662051528785032, 0.7788851291370218, -0.991560889666241, 1.2982462343511698, 0.5513164250398381, -1.78623764098915, -0.9042508572353705, 0.2047481548183729, -0.4460421845970417, 0.09675337492333858, -0.889986949209949, 0.014149210603993502, 0.12740206033396478, -1.3297386119929893, -0.5565542325966993, 0.3034149663349302, -1.037674919574047, -0.17885044443048484, -1.4760269187337596, 2.016965638025831, -0.19058878294098713, 1.4061312466867055, -2.7673995623809695, 0.9116935358762449, -0.8262189388061827, -0.17936298586315524, 0.2743132037661514, 0.11699167990054536, -1.586228263961717, 0.8701013147673059, 0.10583603814836193, 0.6506214080738474, -0.2580368414245483, -1.6437119397785367, 0.5075187841317181, 1.9726890968492652, -2.221461986688791, 1.413181064194164, -0.3215361229687489, -0.1544040821655463, 1.9460447893476474, 1.5826786958096124, -0.6778084013622772, -1.637804093668976, 0.58302142703055, -0.013232221487194952, 0.204517165306565, -1.7807422871458436, 0.9857376803455945, 1.484979177382335, -0.16272972272763456, -0.7695354069500678, -1.095570914228247, 0.543418586140648, -0.55036569397443, 1.8850827595220234, -0.184216874557359, -2.7728275858754765, -0.3129706732113938, -1.9108402509533138, 2.0875902310986816, 0.3169008257460843, 0.8863477505825809, 0.1572704792286046, -0.842197198299679, 1.5469256450047137, 1.3263686376625605, 1.702641229710466, 0.5437818885907659, -0.6975397035390044, -1.6803591733013854, -0.009664698781886921, 0.04510029644628371, 1.4407016276408358, -0.4665261991366704, -1.8810693689909168, -0.7207781192966894, 0.23606641047861904, -0.6975712848381455, -0.1475530261957105, 1.030871415075224, -1.5249325331697856, 0.29013676714356584, -2.429568126038126, 1.1718431365491768, -0.16319220405150134, -0.8098830906706526, 0.5855688676172576, 0.3834610893428658, 2.193582949575427, -1.3410826331372552, 0.7365213830592303, -1.4943572873369582, 0.46550432025697286, 0.16008176441496574, 0.06586530453833182, 1.1646855970575334, 0.6910663599949604, 0.6880788204994267, 0.2554691008423561, 0.21618875594349332, -0.6478121494084338, -1.135032431236157, -0.9508654408413724, -1.7347701690565647, -1.07611982695141, 0.24025576001569834, 0.9586402429525046, -0.7794208533785156, -1.0572491894377896, 0.6887154677436708, -0.8634524155529374, 0.4277823269637108, 0.5136229574389887, 0.17431733613614708, -0.37207789707209266, 2.3116697519339637, 0.21425456563728437, 1.8394285960419337, -0.5711553705718843, -0.23179162680502224, 1.074097561554943, 0.1596453535855944, 0.45863866262612707, 0.0985433631045397, 0.48426486076448777, -0.6941797869000345, -1.1964916156275494, -0.21413568701084798, -1.1985579158046251, 0.3434853018486572, 0.34393980662727713, -0.06476425736899946, -1.1453451311593486, 0.6738684912584836, 0.25806606395168663, -0.1860710504918871, -0.6084718289514054, -0.08421543174504392, -0.09604392571293247, 1.1062734691645808, -0.4025165233307038, -0.7465122184950292, 0.3666712870028105, 1.1965134888828746, 0.23319574167423193, -0.9563711361861721, 0.7095142768171121, -0.22206827795549014, -1.7501461161977503, 1.328856552727919, -0.46055337865725077, -1.1107844925148271, -0.6546698862201276, -1.358994791457713, 1.1746469542100488, -0.36342062736700276, 0.10596744742117734, -0.39058190763145656, 1.8662582404848387, -1.2169480406575761, -1.4112980535331974, -0.23436824217643973, 0.3115402357641976, 0.2562717059314373, 2.5594079597604145, 1.1215300947946443, -1.5192371151052924, 0.3619428345536669, -1.1819570177246166, 0.14305398408870973, 0.05286455319144855, 0.7168638278071838, 1.0649008190470224, 0.7380764022598029, -2.4078623574786797, 0.5823198510015479, 0.5868688163946343, -0.14449277789446008, 0.774394328829187, 0.9183101151216672, -0.021028758636927113, -2.584073189520113, 0.8651852136685593, -0.4093106768759775, 1.3640444121353135, 0.6537614954782724, -0.2984306412819293, -1.7921320772893836, -0.38566840071869996, -0.5078604693209922, 0.15349404600727937, -0.024455223497647997, -0.37105486007624006, 0.8375536879680593, 0.010839475742411887, 0.40337190688131735, -1.533097236350848, -0.3719098028918846, -1.0576978818855591, -2.704399940253993, -0.289892802858417, -0.7366186941700773, -0.20261768667929417, -2.7684174811686355, -1.0778570999283947, -2.0393698672006293, 1.0667018282542189, 0.42672856362070993, -0.2153393607961014, -0.3541815326485034, -0.4408564813090334, -1.227302002373006, 1.5748464487094456, 1.3314130376067808, -1.662067133754934, 1.354123040651978, 0.9373808972203129, -1.1836851396884984, -0.7933436775243505, -0.4916374217717579, 0.946717018804587, 0.7104309112229675, -1.6088472709622919, 2.532183219938929, 1.2002530475459683, -0.27933605154942026, 1.8080513862986094, -0.5371063956986989, -1.042730870524838, -0.1609726470122291, 1.4029424819714904, -0.05107749918771536, -1.750776030258548, 0.20761905951739837, 0.6644992393607463, 1.6079430440783054, -0.40214689087119226, 0.0623901867305428, -0.507586438232471, 0.10835462013786656, 0.45147074557421957, 0.3868974537825443, 0.607052285824232, -0.038234847947656664, 0.8548367954714184, -0.714023710179007, 1.5801931171983192, 0.7855111882065138, 0.0948968196519897, 1.8179477186110329, -0.54782056607008, -0.8527590252892289, -0.3776548244058901, -0.8459870665738083, -0.743460166662111, 1.3346868805855068, -0.020601773307331876, -0.7021669302516244, -0.525264025032791, 1.2384724364371273, -1.8080162926334153, -0.1310972196389581, 0.38671163970140865, 0.4594677835486332, -0.4996327509820233, 0.6676449744591991, 0.032253615884213126, 0.5505186753844932, -0.773329391951865, -0.31734446619172274, 0.2004606069129595, -0.9442451356402222, -0.3526803736069211, -1.3424000341744795, 0.435486089057388, 0.03937274610995647, -0.6728038515509868, 0.7257489530645385, -0.4676635246161996, -2.306990090015761, -0.6589172793235515, -0.4134834087750822, -0.47677905885966454, -0.41855588746555106, -0.3110537538340125, 0.47093419764392985, 0.8440443597235711, 0.3680689861388637, 2.1164953540668545, 1.984756393892544, -0.12929298853898305, 0.14113326663735612, -1.056827834165801, 1.410175299327218, 1.2633337936611142, -0.6257368651267596, 0.5458044801561451, 0.15713352659467236, 0.9435947307934559, -1.9412659554386757, -0.8481599903648647, -1.6623685916199582, -2.351394730847795, 0.1241557132616921, 0.04485029895637067, -0.16068448972775717, -0.6707905231958172, 2.3387185273293416, -1.1924801918394328, -0.3226829348010964, 0.8888510654642907, -1.041556473007023, -0.8750437149859364, -0.7033162186898491, -0.06563846686817361, -0.600208034357728, 1.0901198816958209, 1.464176841458734, -0.6989607068499661, 0.21559259819314494, -0.7023654990162772, -0.5153373965826599, 0.5438092777565788, -0.44376915847207515, 2.4781985028158764, -2.358366831123441, -0.0758398095442574, 1.761207301822636, 1.2668474883737941, -0.4817920152022503, -0.4060256367870939, -1.3177065671032335, -0.6966131234177405, -0.31814766909878023, 1.0407356722205017, 0.22378543838613163, 1.6846339888924564, -0.11527520998235179, -0.36016750856567104, -0.12093636646486683, -0.9098367003859674, 0.1377200547360513, 2.2447450908582116, -0.46591285732444876, -1.247928153921264, 0.7817592006712507, 0.02479412300754833, -0.44450678869787075, -0.23192107259517322, -0.77229894267796, -0.7420150903559667, -0.7383650920244416, 1.586814622005821, 0.7913005066311033, 0.983034653499219, 1.8468538585447263, -1.481360009399392, -0.0060361874460442356, -0.9253515918554578, 1.023537948131495, -0.8895473619307399, -0.19230776098025354, 0.19865231249346252, 0.4913146637812278, 2.684932981153547, -1.6653682445960174, -0.7952312217588018, 1.4896421751508513, 0.8578265866398604, 0.26371217829732263, 1.7794596468459183, -1.4461681682008005, 0.2091990180439619, -0.7983921140465166, 1.1571546357772073, 0.6975863266396193, 0.33105700572808205, -1.8313985789892495, 0.12921913837114063, 1.2044602175426102, 0.1449413068188439, 0.2001051506198657, 0.6629613345816718, -0.2011085924514777, -0.4328309835757154, 0.13205768128129655, 0.795994527485026, 0.8014581307405078, -0.38445722792538506, -0.36585018876341274, -1.4681334825691024, -1.4558595518785766, -0.18627017343955232, -0.6134882900249162, 0.4594514826923306, -0.39105402972193165, 0.353117416633217, -1.0724025912447572, -0.6962376276975399, -2.251915563556767, 0.5506352921206522, -1.3611730171432626, -0.11091344824770417, 1.427823662702021, -0.891478658538703, 1.9075181656304234, -0.8505172596355236, 0.621128724715266, -1.7442186714847103, -0.8123322717331127, 0.016178430006987373, 0.9474750601386389, -0.31749693815236285, -1.102842292744774, -1.0515104189943594, 1.739650808087202, 0.7876121057668793, -0.537261094855323, 0.4856122485499411, 0.2815668031606416, 0.2703695832042865, -1.8830223630684306, -0.5609121285876421, -0.02952836894363221, 0.46378318876145597, -0.5477389721229455, -0.8433543098150618, 3.2349450729885176, 1.3864620885206633, 1.3319243361747912, 0.1857294680095975, -0.13090395936469618, 2.3921580458108562, 0.9834358228426316, -0.7224232334607227, -0.3726707892299737, 0.15352280428122408, -0.11456098884553093, 0.8395963189872185, -0.7506556825099381, -1.8632533923117578, 2.443802969593258, 0.16244776356376014, -1.013838719001252, -0.8364573247936977, 0.09319274498372662, -0.9621820783309952, 1.4136534403001129, 0.3496010994705, -0.4319430325752559, 0.15002936323220453, -0.8170008475628132, 1.0633730077246735, -0.7380506416081005, -0.7334493934507467, 0.5885205192854428, 0.8274754527462422, -0.6856537277716763, 1.0743175504737634, 0.5795497107750748, -1.7464865444454767, 0.5316995361148721, 0.9956213028660093, -0.8390496481304043, -0.19715948599558694, 0.14913420474478656, 1.4003392115127757, 0.34950353019119446, -0.14837208402747382, 0.5802988208819361, 1.1944266554970293, -1.9116086088968756, 0.8555686016156855, -0.9324984292457615, 0.731777229411872, -1.7323054388341106, -1.162159984754359, -0.5910276954071965, 2.539190545524387, -0.2846501758106931, 0.8788025376882412, -0.32402110929911404, -0.6334724459270086, 0.016531159771087565, -1.690977768724271, 0.3418630276662363, -2.187433567998241, -2.2022583401921314, -0.8548032435714911, -2.1087598938609555, -0.5311727119393318, -0.817936994313876, -2.501608161964931, 0.6359258072498503, 0.32382291505346655, -1.5905402371405832, -0.7587449335193889, 0.06326891493940555, -1.488955738877552, -0.9263873806815066, -0.4620532520453454, 1.1191171277399912, -0.1241704818882819, -0.7012066044071986, -0.7331592051999035, 0.8064384723653778, -0.2107463648841713, 1.2266373070855938, -0.15981375422919253, 0.32932592715623255, 0.4043816669073365, 2.24739907048172, 0.9190778967521525, 0.49978687626997687, -0.7608025680479242, 0.9147922490378836, 0.09740807892252223, -0.7237933863919717, 0.8964494197315873, 2.064856358652408, -2.195799646924424, 0.3805145006769072, -0.3677109515016606, 2.0874722265179684, 1.0343809237243213, -1.0066329304444706, 0.5148692487857686, 1.6687450786130946, 0.14024433574536804, 0.7480525472131103, 1.121667343881718, -0.3326877003549712, -0.5230914548306144, -1.3003515493007998, -0.9157108158092195, 1.013061434994539, -0.979249908897663, -0.8507757479224521, -0.2829264448593303, -1.0539016396004361, 0.9480037938639572, 0.35992524537313486, 0.32513314707044344, -0.7306988504552246, 0.9472508832741433, -1.270833905666208, 0.4443707810151444, -0.4397777654173702, -1.5123306941104306, -0.35269412245789666, -0.9702132772935331, -0.16662429695994138, 0.1367011123709642, -0.9727418515718638, 1.034777224020554, -0.21880161658345795, 0.2842069171743686, -0.5320770847890148, -0.7372113410075009, -0.4297271615004977, -1.550988814653935, 0.3396069731157295, -0.29209449782247804, -0.993537963779201, 0.735834247799981, -0.142014871303631, -1.0502997738118995, -1.5289715559076487, -0.43481451499409507, 0.5476707366095809, -1.6375233625062702, 1.0533191460930222, -1.8353701882677798, 0.4015257121865728, 0.10088012137384464, -0.3957775538108143, 1.9112057195176184, 0.41148728666829604, 1.5751507195315075, 1.6229071187122484, -1.642261987658722, -0.8722535195224529, 0.11695603800176711, 1.5765835804822745, -1.4242525956743517, 0.6362994024490806, 0.7906099732053049, 1.6200713165581038, -1.793016952976427, -0.10193028881060644, 0.7804694330404767, 2.6634692437761545, -1.141556557427024, -0.38488991707488035, -1.1227856114958088, -0.958018675427311, 1.1648421547328724, 1.929113483288878, 0.1837323799821736, 0.6319774464998422, -1.0344646264899975, -1.6651292163733367, -0.6627964003563975, 1.9668725660799926, 0.1598738713551442, 1.078039896391389, -0.10579583425881856, -1.381031724234875, -0.20527932767759305, 0.5910378654627324, -0.8551065318547515, -0.7819741532979072, 1.287626008513436, -0.5100229952381451, 0.1284343232235897, -0.2042896731447139, 0.7573924361010002, -0.4020324190801383, -1.1517536244506021, -1.0224159154788968, -1.1317202645819275, -0.5232517031186112, -0.012707866262019186, -0.3234096047366486, -0.1324617903771034, 0.2986302342338872, 0.9702442588085775, -1.3375158217222707, -0.8834147911342786, 0.3967925465479028, -0.40817663988706876, -0.19715428699124496, -1.9326552940535096, 1.5159874757250569, -0.9073299371877624, -1.1641241473771353, -0.10382855145049, -0.3042720035622105, 0.18311944980761086, -0.675148946001866, 1.1547076893142758, 0.30628750602297566, 1.8872213227207042, 0.4511831826765553, 1.259861992267885, -0.4353962713758508, 0.9603368762228524, 0.3560067972679395, 0.7675415504754021, -0.38216073418670615, 0.11013335939613927, 0.38836401367810847, 1.3091128268445145, 0.9737556292779886, -0.5141568333834904, -0.06138039019201899, 0.4887004937206116, -1.3416784884737694, 0.4174550196593899, 1.036690454791641, -0.18562067187682987, 3.1737654712489762, 0.018619550232007627, 0.07004986092852274, -1.6604446178866092, -1.350981365139282, 1.2996655393561782, 0.3202203582782196, -0.13631555258676106, -0.7114467941589283, 0.6286495138576061, 0.4003424497115302, 0.0015245985571190573, -0.6116974114526885, -0.12741988326520032, -1.0895197204725662, 0.9967323813481869, 0.7589842617144601, 1.2851074913739142, -0.08747746245654275, -1.6364334749227178, -0.12384563726047947, 1.7070457037641193, -0.05755507889687455, 1.456737767964973, 0.4942442447493598, -1.1651309962679604, 0.3823914138534265, 0.13542911727484871, -0.19705026186034705, 0.13324100762546928, 0.02635064075591636, -0.2607991810906568, 1.0348801106791017, 0.13503026487892006, 0.36132737710646573, -0.1990963871202933, -1.717535792250673, -0.07376001207706799, -0.9145174480820374, -1.0847966434584486, -1.0699311011721477, -0.02299250923952244, -0.11223082711763656, -1.966959725855549, 0.24744450727015785, -0.13033121510744405, 0.1886048946446188, 0.007247855045484353, -1.1814792583741553, 0.3752436245871218, -1.5878150612191402, -0.8465273742797803, -1.8540606804518152, 1.679860794640231, -0.3222273526376367, -1.5341845216568504, 0.8534035547475672, -1.0207996350955089, -0.6809601893093986, -1.017082712625199, 0.33879018717675097, -0.7391696500885757, -0.3121731536857007, -0.973728817322921, -0.20437226805647532, 1.7298662397028772, 1.6487375045083337, -0.025525090210912614, -0.209139676575565, 0.5529909233554535, 1.6620384131418493, -0.14577538026319892, -0.5468670265430543, -1.6683034207467602, -0.4763436851634907, -0.8417173702855272, -0.5913402535007384, -0.9614799676139567, 0.48609128219100606, -0.2677523513215945, -2.322520592690062, -0.7087769232459706, -1.852520918405741, 0.19468047111466136, -0.5800484183057054, -0.29756443684793343, 0.36692166862029646, -2.143674646078173, 1.0768026040714476, 0.3514859137215988, -0.01260725304480245, -0.284742740664726, -0.7502415743141257, 0.02999747950227934, -0.696159889233107, -0.8877915960686763, 0.3017143041220421, 0.2200633341042294, 0.04313591787643985, -0.8069192648097072, -0.696845073664086, 0.042666652503311975, 0.8806064599734917, -1.0343124069717895, 0.1646746354974414, -1.4487862348260785, -0.20866201343004134, -0.6693017000422578, -1.1128174230259165, -0.5487981534122952, 1.8142578517342216, -0.5607128292140915, 0.8338657404724049, -1.2112931458424498, 2.4367745459089, -0.20155322230006387, 0.8633526866099618, 0.09512707630040466, 1.9008718512633938, 1.2309597190142827, -0.26652579771418233, -0.555380655893961, -1.36320826993299, 0.608639547577018, 0.18323955571818992, -0.7207374249389887, -0.25706390768174414, 0.7492430918399394, -1.532866701308296, -1.1420565211616156, 0.7974764599099063, -1.500005389103682, 0.5203578513199844, 0.07023225413968243, -2.2706260763187402, 0.7658508453611409, 1.592232087276213, -0.177290440290446, -0.0361141579701848, -0.06807343067396344, 0.471256198859151, -0.5613911593882381, -0.9796380174176824, -2.854343254808646, -0.25314613435286765, 1.5382514360658448, 0.01469732471572013, -0.6976172106727196, -0.6397276723770492, -0.8584015150324742, -0.1288315592389489, -1.1603706920272325, -0.23219609096936758, -0.650854091218102, -0.25166952701428574, -2.0739539820630495, 0.4678205096630859, -0.76642866246844, -0.2348771883607764, -0.19494589380261065, 0.6006812626161071, 0.3089294814500071, 0.7800530547179889, -0.27968320057566604, 1.1771599429727246, 2.006731909836498, 0.36463615646298936, -0.0014673517245029932, -0.6286668277990335, -0.06691877799279441, -1.302281425890567, 0.7527468016469421, 1.1415234919464567, 0.5486672299281072, 0.7110292740823154, 2.4939541397858993, 1.1766624691475995, 0.20185141459857495, 2.4648816765025754, 1.6809055553030778, 0.8271698714862304, -1.70624525580758, -0.34833970050253177, -0.10097776949496673, 1.2495816568522482, 0.6630337333205667, -1.060688523155862, 2.5445145969541154, -0.14685184399696954, 2.291953964738384, 0.44352579242364853, 0.9034351645761722, 0.6675104808786212, -0.7848065008353363, -1.4008168860601828, 1.7203257727256074, -0.03279387963626527, -0.19440669417147607, -0.22961483345237715, 1.286938450792552, -0.21827410042643283, -2.8799642696076653, -0.9237968915161044, -0.18463788267543407, 0.5831121295530219, 0.2286415085549169, 0.25906329655767885, 0.22699909459757012, 0.8627971131909394, -0.48346576263753077, -0.47793338455939155, -0.6297965349185832, -0.2905736822768384, -0.8467767836768291, 0.005532149323033851, 0.46416234738148826, 0.9316867991140064, 1.320678159431492, -1.5291020271669535, 0.41518873480555457, 1.2633869620976534, -2.5677258720372427, 0.14990592245912993, -0.26774674660423764, -1.1578875295304316, -0.7398219490425644, 0.9141342023366442, 1.053963050199423, 0.8969667204716412, 0.980278213355225, 0.4902097157169282, -0.5219703210083461, -1.2439907461710231, 0.3006384475441492, 0.8225951389310399, -0.8945970357847673, -0.8280437688467103, 0.13777099534808573, -0.2525179110152889, -0.9878250710183681, 1.8136144335688724, -0.05571816688706623, 0.29773117848877634, 0.35269533254244895, 0.7633834213968173, -3.0776847891742807, 2.446371324969443, -1.7287243874316627, 1.135226081324026, -1.099005087649053, -0.4398116760300726, -0.24914310280960333, 0.22580045455044812, 2.3015895103524975, -0.8925891476905012, -1.1208752429317166, -0.3424725706074898, -0.5002051821719953, -0.9375488267215503, 0.3574045211488613, -1.5611758554260495, 1.704077178547806, -1.183878799080638, 0.9481037566887786, 0.34694803572283267, 0.11802775225311053, 0.1594762480742255, -0.5981884867845684, 1.204908765321813, -0.5708450464607855, -0.6837531458292492, -0.6861274607305314, -0.6339029912649503, -0.18864415699432857, 0.2283644871406007, -0.3850083588161547, 0.31224298086025487, 1.2322583817802433, -0.8686082964387211, -0.2277907299943038, -0.1656812206822506, 0.28670028532759606, 0.9647903112401602, 0.07091723372278415, -0.3052074267432407, -0.33819045806239145, -1.2587697926883716, -0.30415345564746676, -0.7578828179293048, 0.29923574537180564, -0.7816691696568626, 0.618529259103, 1.109812744096553, -0.4827811830206491, 0.10461202109968246, -1.104667776180322, -1.0675643023398764, 0.0863005527102086, -0.8060158362519925, -2.016462125039376, -0.5782825604918658, 0.6845654554903606, -0.2682303392271301, 0.021664492965897564, 1.2284649353324757, 0.38611949559128694, -0.33809931110367025, 1.3694696520121985, 0.8696673410830471, 1.633317970156107, -0.44493364950979686, 2.0191761887382524, 0.2925342865648204, -0.003951721068093229, -1.2249541600489493, 0.3280338178865769, -0.28546966683539693, 2.691681389207035, 0.4863669617485134, -0.38350765256722374, -0.5110870881595879, 0.31968001563448006, 1.2014833054128342, -0.38031318187955465, -0.7308379158608652, -1.6879567244370788, 1.0025811817604853, -0.5737908403808734, 0.2704646506596758, -0.8969109615071292, -0.4524473155709459, -0.042276043826170326, 0.594272095396778, 0.2435884579954771, 0.3605041373994997, 1.8401729270539582, 0.19155683617260105, -0.8366215913756272, 1.4286431750222182, 1.3659461305909357, 1.1575827034599044, -0.5091705285775029, -0.5035746539999423, 2.2404858122655114, -0.854081806034372, -2.3049022823180567, -0.5755432672948905, -0.2842262032380937, 0.9055729202247551, -0.7899634124456941, -1.0569611139321604, 0.19457432373610214, 0.1604779232545958, -1.6636660045544145, 0.9348944292575605, 0.646420156256745, -0.10992987207797743, -0.7246929101788745, -0.14099003946607616, -1.3070404132377291, 1.3329507562844491, 0.26249359140276063, 0.5879438683777154, 0.6697516582640616, -0.012030591954612964, 0.5761703784612946, 0.0140140219835403, -0.43051474398713413, 0.48448155139667254, -0.16797414243699457, 2.3487150337840053, -1.5643169162472943, -1.3338699528577846, -0.9838932681337491, -0.9269979501196116, 0.6464600588603492, 0.3771853370286996, -0.2298980680695497, -1.0235142641401065, -1.536486557126494, -1.4937975648643957, -0.9985457762604126, -0.06424218622790992, -0.2928233963029364, 0.7084350966765903, 0.2725433136405607, 2.9882490373167534, 1.7390268956925867, -0.28844137153580524, 0.9154476531756464, 0.29365698609607455, 1.1451536184730673, -1.2710139713056132, 1.256582002552864, -1.9880969352533582, 0.7601513335266481, 0.3953241836211728, 1.5254834199516054, 0.6994358889352782, -0.14426363495719588, 0.49044148018599754, 0.6867377805267572, -0.8512922102339497, -0.0617992239355298, -1.835047288211515, -0.17000840373643927, 0.8144261609757913, 0.8841654824948594, 1.0186157032884016, -0.89416300520173, -0.39827773591638327, 0.013722427306908709, 1.1422066690661608, 0.3182238955125379, 1.2112631163831202, 0.9647791966721793, 0.10775229943034356, 1.7708139588415805, -0.6469387331671279, -0.39420940217950606, 0.37726030128705285, -0.027173509494775153, 0.17602511340999133, 0.43402055228983694, -0.9620846311504081, -1.036503551853572, -1.6488818908744245, 0.26903381545351124, 0.0850998447764447, 0.579410772764581, -1.0038194049672957, 0.9122498826637454, 0.6229931371807713, 0.00048703767569504045, -0.30087850963132945, 2.267986707960992, 0.3538933517289057, -1.078869057332597, 0.3255346111006871, 1.4311763893238412, -0.19088917727650576, 0.09488047290110442, 1.1907482460514525, 0.1765210959584893, 0.21794664188714444, -0.9272578654227683, -0.04833586337265987, 0.38772709680143014, -1.47368500888587, 0.09501448994382593, 1.1631039286276872, 0.13852391785593, 1.584607790265183, 1.2870017470885429, 0.018320046107923427, -0.259310340799, -0.770803956405664, 0.2618802267822903, -0.7542512222558974, 0.5494177748455797, -0.9774284574479485, -0.895963235089083, 1.3025412432248409, 1.6328686723088126, 0.7933075723687607, 1.8979734990361996, 0.017521943655430305, -1.7054749307208361, -0.3919170317581037, -1.052294457829802, 1.5560971031899207, -0.8342124704215687, -0.965065676002228, 1.7377438396739884, -0.30126868420678665, -2.1762181804605167, -0.34744131507252124, -0.5651133017594766, -0.09767921899733563, -0.8286876641335514, 1.0373678066165524, 0.2251866007270479, -0.32005022048634785, 1.406013072690716, -0.4789971128391296, 0.24932085812642504, -1.2025767307835291, 0.5642390770190217, 0.00200397690342123, -0.9020217991289465, -0.5648979395953256, -0.6042129467754092, -0.9702122753464678, 0.7580755179499935, 0.7095932091867585, -0.8751187940550399, -1.3682705854174093, -0.17892160899855075, 0.47374335245412624, 0.42263744290190886, 0.29881384975648606, 0.6710172039246995, -0.7762042635661602, 0.3503691008054235, -0.277819600476102, 0.3430375795185273, 1.508052400148618, 0.2733606228342076, -0.6338940577027151, 0.335607196198728, 0.8336590076960466, 0.1641608681464606, -1.6126606385242943, 0.21403680915823525, -0.16807272888645686, -1.146602068336471, -1.2522460815649261, -0.555984958587192, -0.3356725611257119, -0.6425271141080616, -0.679965710715557, 1.6259116440280412, -0.5692525577842397, 0.5132521314551068, 1.0279582636398947, -0.7244518197469562, -0.18058492858092115, 1.9418176155390412, 1.4392652393375336, 0.5428305985506813, 0.7649856647892412, 1.1296759036285344, 0.600042913279546, -0.39223170018645814, -0.4728752675686901, -1.3875879941757003, 1.1062580362905885, 1.0666298763542679, -0.17751206055633367, 1.0810874280160332, -1.1438270185209654, 0.4240893324926184, -1.016575122894766, 0.5490034464347675, 0.6824484446670179, 0.820814768432603, -0.24843311661823855, -0.22834519569576778, 0.18335233780756513, -0.6546660973121652, 0.5048028001863601, -0.20935851335751063, -0.37079221826871833, -0.16687770952659498, 1.9170257249139462, 1.4669194962790792, -0.24179493006777847, 0.511049442690844, -0.5714163455467306, -1.2009436190650178, 0.07278636166784858, -0.026423404765828596, -1.0816721092691841, -0.29640802536895083, 0.5991636064767041, -0.9725961438197815, -0.5452615690331424, 0.2011259846025273, -1.5122589016077128, -1.553106329910547, 0.031266528873611164, 0.09681736551356449, 1.945426237909128, 1.0376014871307446, -0.858451831923742, -1.02121258688182, 0.07502943620615464, -0.08219832337936889, 1.0547332026241525, 0.23386899326719895, 0.816845198984302, -0.4667598206866952, 1.5559165397655037, 0.3501818576739248, 0.7335994681580317, 0.8940613587183881, 0.5636028017404853, -0.2597166081561636, 1.5396960279980934, -0.03880088583749723, 0.630354507438453, -0.13459485994596546, 0.6487576821876281, 0.6452970912475582, -1.4035853646293976, -1.6115010123972764, 2.012157515611946, -0.5276250397692122, -0.5625176233831528, -1.1392449040699295, -0.7846242985082094, 1.551396700235322, -0.24547725794432398, 0.6923871418378726, 0.2535405233426876, 0.36463894106699934, -1.2483573127676861, 0.35973789404619283, 1.395223074730857, 1.162522493943337, -0.5504285854804069, 0.11763635535323935, -0.9011811342684726, -1.4240472156896393, -0.32763239322324667, 0.8051160618679278, -0.21496412075826632, -1.1696935966533886, -0.45411537501595, 1.103724281143731, 1.2869532337504974, -1.192717188674359, 0.39646740864706914, -0.32262778373589374, 0.11128303346780215, 1.965202758009176, 0.8628438010755514, 0.04676815888279071, 0.8052021493704451, -0.8312909636314749, 0.001976742289126383, 1.0204611447938805, -0.8135816018844041, -0.2325441434099349, 0.2477809794676146, -1.193785498439318, 0.8268719965634039, 0.596865827712373, -0.1933315440467317, -0.39331895120449994, 1.0022560337767557, 0.6467907433251462, -0.048126623141221965, 0.41996943671863807, 0.7204365212070886, -0.9908316228443043, -0.31763586721173515, 0.30497259852595915, -0.021613380805657258, -0.23551865125559066, -0.19860741684478886, 1.522656649674848, 0.25521553522639917, 0.06216663048051886, -0.06064732066335787, 1.0274431057909046, 1.110876669945593, -1.0020780402674756, -1.5734114527484935, -0.4555435491439901, 1.750640326722421, 0.1668572921928729, 0.23856332197430832, -0.28277925582546215, 0.43219455116884187, -1.4557435178353217, 2.420110119655456, 0.13851430560696254, 0.825659839590168, 0.09764815908778918, 1.5176309058115247, 0.45751959289197347, 1.3624270872570525, -1.249498934113444, 0.4934801655807674, -0.20679421662185302, -0.5784701577885063, -0.8330296933908031, -1.1024827072893286, 0.47214447094303236, 0.6673469493092499, 3.070672117491693, 1.7946298597792285, 1.7243600888497583, -0.19152634032681182, -0.029797505213692496, -1.329663551834984, 1.1454745239390787, 1.4187564930648529, 0.3837616189698551, 0.4189540514459319, 0.5339850402457522, -2.2480702898218135, 0.3008145391889545, 0.9801391911293668, 0.2094461753031601, 0.35987818839509844, -0.4235898414650654, 0.20492721103536582, -1.7946526756506556, -0.6380237228624557, 1.9530821460900962, 0.4782510134884855, 0.7025760403540499, 1.5529543611815397, -0.3828186397621982, -0.8030265316726095, -1.220541603195213, 0.513030948755175, -0.9746719704449069, -2.6862427420217063, 0.6314411361531728, 1.1922124806433056, 0.8516536329170367, 0.6352758301914166, 0.6582614150256869, -1.1443931118531148, 0.8459577215377715, 1.3199640825305825, -1.9833941825642434, -0.5006372298703505, 2.058083617933565, -1.2407956495649435, -0.2391961342247752, 0.6484942684902124, -0.22793529933108703, 1.3448838625734754, -0.3461376702201951, -0.05447530978473247, -0.20275109653464402, 0.1989444890321096, -1.2654614578157128, -0.6527262097827264, 0.09444150604208601, 0.7175137444734527, -0.24383132630234414, -0.26536634900930794, 0.9498373315814271, 1.5894987437969843, 1.7737662710414053, -1.9112572594834174, -0.3096033161466665, -0.48802624204337364, 0.8253165972437502, 1.4997350340203257, 0.7137476169759766, 0.08336893854668888, -0.21096853509480884, -1.3992221251400248, 0.5370109410720728, 0.7965774701259001, 0.7621039934462545, 0.3155686732635035, 1.406095068015783, 0.8768591865780713, -1.7731584483003806, 0.7278678708651202, 1.1403812766958374, 0.8318949970846731, -0.7845629067211081, 1.0954275164050153, 0.8089285394714144, 1.116675410500535, -1.140322239364975, 0.27947217452729123, -0.7466534545425402, -0.4687974173344269, -0.5596899548305688, -0.15819643391504817, 1.3523889978342811, 1.6085792758739477, -0.04761744826899744, -0.1958470191459734, -0.393065042214445, -0.046833715458067894, -0.028445720856814016, -0.28354431311289063, -1.34196967982302, 0.39832952414323514, 1.69457875674475, 1.430399530047021, -0.42427709030332533, -0.2712084123002353, 0.43671877099284057, -0.7273847671510899, -0.28127718492661336, 2.0697601881892935, 0.4434270803445514, -0.3434155206499317, 1.0168808864472507, 1.8099606935005965, 0.944279340674162, 0.2597791793193658, -0.30138591739897086, -0.15961444441276332, 0.5408669652042736, 0.3054566299060687, 0.43312387627759363, -0.45969634020402855, -0.2670173306451959, -1.9356290771222864, -1.2576073798208347, 0.8354580165091097, 0.13559353875876623, 0.07765911355071854, -0.398251485652358, 0.1315793634221152, -0.4105040599506797, -2.0474572363964585, -1.7117171285139228, 0.16665782378171284, 0.097455418771332, -0.2089153186714119, 0.8690981482645239, -0.21522491949844808, -0.857141108380967, -0.8031538283202881, 2.572096713119938, -1.3951045909761726, -0.6003930075016835, -0.7549920118543342, 0.4234843817691844, 0.3077564147297329, -1.7431731311467378, 1.390924550261297, -0.17672198698188168, -0.20599086271093656, 1.2688261525051365, 0.16383441344714667, -0.4553981514017246, -0.4141361315960237, -1.1993876359506823, 1.339607100640611, -1.9760015732480698, 0.29498443396717555, 1.8293355788995924, -1.4749500134457814, -1.841351854567841, 0.9134663477165087, -0.044003004482465004, -0.9918315546362959, 0.7822005746942117, 0.9451191672710901, -1.5524074382501063, 0.15151585449968724, 0.8193220834598065, -1.1116772205577428, 0.06780097823086675, -0.2639327764014908, 1.7121548426008057, 0.2949014266413572, 0.561402878923869, -0.08684769003404301, 0.172564631300393, -1.5083996183556008, -2.1494593560264468, -1.3371728114594232, -1.5779128225445214, 0.7292007957315206, 0.8856913651735241, 2.392609060574253, 0.6111600922538909, 0.733322699531412, -0.4938641586024356, 0.17424594117295358, 1.9209101227109022, 1.0179147100057564, 0.5383932825238852, 0.8407753844506516, 0.3299650403242688, 0.8338012027490004, 1.012860547769979, 2.07898705209641, -1.707229198541161, -0.598286788049057, 0.08752330732274281, -0.8889145826181977, 0.861293807585173, -0.18760920411981458, -1.5340450002600803, -0.33512891764527347, -0.44786734146266155, -0.10230111053065828, 0.2856465571838218, -0.875689021610313, 0.4790936059552048, 2.2215577813773684, -0.09947304626251864, -1.3948304183094677, 0.5839676596925238, 1.9791696356472777, 1.4289520128816948, 0.4671927478386397, -1.2705752663522063, 1.430416210270965, 0.3505459242810434, 0.16371364567527144, 0.39384206141743067, 0.6614625348896203, 1.4821834446291229, -0.20223779382775955, -1.6823603527946267, 0.35265398627033034, 1.5665474107120274, 0.10310812748081398, -0.4941360340680548, -1.5675551228797262, -0.6083400856183869, -1.724780408162358, -0.5317140979668368, -0.1828325733179621, 0.13332438021990548, -0.7481291089233048, 1.5676455296214686, 0.06953162947846935, -2.6501785234193607, 0.4524634943659003, -0.31205809763800146, 1.6082026004949685, 0.8478518034405315, -0.41336033774717146, 0.6229941343550792, -0.28241779788448473, -0.7174134903199729, -0.4869024599631875, 0.1657457785750565, -1.997885025646826, 0.4868172926082228, -0.2105001503242106, -0.37388396563247733, -1.405985906285945, -0.8024153643383141, -1.28853593229415, 1.9555629402748627, 0.48691014460830573, 0.7546950026830902, -0.9028422052760697, -0.7333542525205266, -0.6777948387827012, 0.07790969208834617, -1.8020405341132355, 0.3971952199465532, -0.18847993240798958, -0.24788100745707653, -1.1209712212229066, 0.005553658462866457, 0.8463914896431739, -0.7281507350367012, -0.5786848980294793, 1.1019944560124062, 0.7082190414818036, 1.4490677277215167, -1.1090363679328838, 1.6699832782057464, -0.8131391786998874, 1.9489911792684602, 0.5004591268924504, -0.363864268594406, 0.012384354126126765, 2.2719401151769203, -0.03890987618198144, -1.2528338824595413, -0.39524188544803024, -1.2225147529908222, -1.7539275710534865, -1.1301980258471915, -0.3170737552515519, -1.2894079181307423, -1.3357146148712353, -0.4038112399734173, -0.843227371287689, 0.5784061610502225, 0.8738087386906309, 0.28779147861883825, -1.0838162111190848, 0.46412968040901187, 0.7408758514800206, 0.3643290144421948, -0.04708289998257847, -0.7830215641152677, 0.38825193165614896, 0.31475669600207334, -1.1428242658831225, -1.2919510952451836, -0.9965811833833603, 0.40616319933378503, -3.2326109813081603, 2.174326710367161, 0.010719618264394224, -0.7578302598864222, 1.0084981884287063, 0.5893463153269903, -1.7757252417802867, 0.3064455428892683, 0.266352444176425, 1.1448497093410681, 0.7381576416886054, -0.5539907449791467, 2.0378946491801595, 3.602731851138616, 0.6502845976271259, 1.4486409123523787, -0.03709328252319324, -1.8326229600623825, 0.08023492877082812, -0.3058915265097439, -0.38391094119517216, -1.0366444160118393, -0.627510112334249, 0.06637568630648952, 1.840433068779817, 2.9113203007172213, -0.33416456907124475, 1.6269699804899034, 0.8912686479483873, 0.5163969237739988, 0.7944517903816944, -0.8663252198996314, 0.712614366838397, -1.5978385685944563, -0.278934948089101, -1.1296829964880322, 1.0299172094112712, -1.1496425255138434, -0.17704795335584064, -0.7700430845474115, -0.11416315640141145, 0.5673977785978531, -0.5775485309152614, 0.5249198937130799, 0.70825936525797, 1.1721419110550289, -1.401933872129663, -0.9550285766299174, 1.502950981679575, -0.7136734688079719, -1.0069695813281292, -0.05519871509040473, 0.5679330362887421, -0.08342378631380074, 0.219565078224288, 0.4414576840229189, 0.02772705770992117, -0.41144146440399554, -0.8797833673960684, 1.0049990282739278, -1.4171167258764985, -0.7707359374016385, -1.2498726723411722, -0.3880010488072677, -0.8066420917312442, 1.5483385266104157, -0.9583520916647296, 1.0698965501779454, 0.07417597736634278, 0.43773364799524545, 0.18064538208990272, -0.07868996824177467, -0.5653214554050402, -0.28949749976227956, 3.4365172687766496, 0.8581757895181688, 1.774941389659002, -1.4143254940441825, -1.1180239018301503, -1.499890455639641, -0.8774767578408066, -0.7337800571410713, 0.7391995738160414, -0.25906929416302327, 1.5984669074424365, 0.04511048654510874, -0.20485510418887415, -0.2635909709487596, 0.4675581793659194, 0.1255646594371379, -0.4732099156871497, -0.05272444092971467, -0.28597513632788923, -1.209568238788431, -0.08984122323350449, 1.1628622951456362, 1.9839462882603007, -0.0012006030781542983, 0.19466559148781046, 0.07807249729251663, -0.29011522018913427, 0.16637760619643985, -0.17324602185726545, 0.1939763087402923, -0.6753369984487818, -1.5413818740195382, 0.037633886489428836, -1.1332884127871536, 2.2151541329939923, 1.237479147973035, 0.4859043789650043, -0.22424752499015088, -0.27848500232443796, 0.07656101225650858, 0.14163130111091005, 1.579228277418151, -0.25463768890124744, 0.7063752539356968, -0.32500965230472467, 0.1783284756002761, 0.32857137957269267, -0.07507705862178113, 1.549883671857908, 0.8471368119314694, -0.18432503680643908, -0.5257306580617152, 2.0744225410330337, -0.19416275369706454, 0.8488001599657395, -0.7549726016679472, -2.841112261080204, -0.27056997241981345, 0.07481400639437129, -0.9447125245103043, -0.5989607050187933, 0.38018644266396684, -0.6056962664267699, 0.4741969556465008, 1.2659833826274753, 0.20009243278811106, -0.1621857639344741, 0.25764698080456866, 1.8735956046075677, -0.35485367553472236, 1.4937373696748835, 1.0712375650753923, 1.8256639490116415, -1.050909654536126, 0.4845408135533622, 0.27448725989541284, 0.045653208370301755, 0.5590658182095251, -0.9108103038525306, 1.6888328610433845, 0.08912071195711112, 0.2965919096919244, 0.7591224522769461, -1.1284878846398438, 0.41066409267360776, 0.4201566890805911, -2.298380811644804, -0.40108541927695923, -1.2509787098278569, 0.4512771573493231, 0.7952415072735112, -0.6389088857325572, -0.48361484596022447, -0.3270871857447501, -0.3415628458920804, -0.5268321366818558, -2.6969874115468864, -0.7551326516344591, 0.6639276838474858, 1.4403516480653902, -0.3145924848796247, -0.52891337603479, -2.0606996936712845, -2.3433363249050103, 0.534745495575315, -0.7547462696186739, 0.17523408806425297, -0.763990136433525, 0.05880458783366742, 0.2770091836171755, 0.8767048232497695, 0.1960547754089898, 0.7973748673078072, 0.3971618464777286, -0.4395729798618474, 0.07218819552226624, -1.0329125100665848, 0.3567544337518311, 0.5857222356244093, 0.46688109362777097, 0.46166735699123507, 0.7025496120020035, 0.2668700164552662, -0.14638191290329897, 0.1443053095788181, 0.46065827408873466, -1.0094659407725557, 1.1540001909042124, -0.8598151519160279, 0.7231113445620987, -0.17343852706399657, -0.5359986054268369, -0.2524202517273394, 0.8237081881612176, 0.9058561745251896, -0.22157106454652434, -0.3021684337863354, -0.23601642101545933, 0.6913954944368927, 1.549769002647447, 0.491065946539306, -0.6967855453003727, 1.1412653050677166, -1.0143122117856858, 0.8951281297215486, -1.3732207248749637, 0.7536717148217817, 0.34701571893238675, 0.39125464571859986, -0.7318901402632483, -0.02491120249339655, -0.30689857058934067, 0.6538574692158973, 0.965883633005024, -1.8566899277367224, 0.6507261888188128, 1.2272129320410547, -0.8099335571884619, 1.8933177988776002, -1.292594121342301, 1.62651534471808, 0.3501637515608337, 0.891314013369198, 0.36270822728987867, -2.029066937240191, -0.6631597141997266, -0.02401204181157732, 0.2442507182490499, 0.12418987831279815, -0.24487140760035092, -0.49344426407926806, 0.5084845160117395, 2.0864741313077246, -2.2758066370085963, -0.16033811322966485, -0.25734061741201875, 0.5950532065605125, -0.19119785160973712, -0.7747066860816579, 0.71858473750802, 1.2135321755464297, 0.059731181772993136, 0.5763884859271781, 1.183860596259095, -2.644127710572517, -1.187651928436668, 0.37815156866049404, 0.5767688158315681, -0.8496580844667431, -1.030507020261497, -0.21926957780244993, -0.055550120539172194, -0.2596922011625993, 0.9700857460228985, 0.21377512852371755, 1.0136657841283072, -1.5721343326042168, 0.5825379108414026, 0.22685632659282629, -0.515329089903063, -0.2708441327089357, -0.7065221180954632, -2.0348557536944365, -1.1432585491559342, -0.10178204556975849, 0.9745196464790189, -0.6787914067303167, -0.3109465885433904, 1.7860073308276772, -0.9559805019370562, -0.9305183316620682, -1.5518384540302692, 1.883463087932041, -1.4372329277727616, -0.3567250341631624, 1.3494937897952342, 2.670959582473505, -1.184931298407452, 0.12540552636516583, -0.16022837105147916, -0.3030388168712248, -0.27495462952197486, 1.2657357215865725, 0.5202497969285236, -0.28802781398800154, 1.1385955044980238, -1.5096509684340358, 0.7175174198771753, -1.6433008859422307, 0.7750775400105759, -0.04724192337246718, -1.134660969733184, -0.836656400023546, 0.30025929732348733, -1.2325258311603222, 0.1161007495290325, -0.8802718639976608, 2.129594599672752, -1.283173561320715, 1.3261355380042006, -1.0824795057283938, 0.6373911099035732, -0.9005473474612516, -1.1808724207996126, 0.14106101559575918, -0.22287582626023072, -1.7140588401884962, 0.37418320123125864, -1.1850646580282458, -0.06426523370113116, 0.632866038195878, -2.313585486555584, -0.508319597071753, -1.8808343585132294, -0.4760373256323316, 0.9121698030435079, 0.43528216547659904, 0.08847921851739078, 0.6007143804659852, 0.22828765529924394, 0.02766008601510393, 0.926536127414365, 0.3153214504506394, 0.11789553351935558, -2.9503067991997267, 1.5651413003257904, -1.7366928821662229, -0.2930689273852244, 0.647381814307128, 0.7268369417110778, -0.2988888147614063, -1.0861963131724734, 1.9492050093663882, -1.0483334955146062, 0.5522861101935703, 0.8406839262905494, -1.9250159867126908, 0.5231388516356038, 0.4365032338263917, 1.3363079626841823, -1.1450172510653516, 0.6311285817886506, 0.5635676551647362, 0.9679198399027932, 2.4672003262958273, -0.7254356273843868, -0.7401892964687261, -0.47937398601131415, 1.5740653342117605, 0.8317178218324204, 0.7896648214360186, -1.1745771123610602, 0.011207244357782337, -0.9210647196365189, -0.009045220539700284, 0.754658753559975, 1.5865382550230307, 0.22874175953717701, 2.9058363315716567, -1.3038193014439527, -0.08540582560144418, 0.15243490699651738, -0.1598407410011667, -1.2163238543850148, -0.2205014358276121, 0.5111451003198768, -1.057196792736433, -0.4651155949862116, 0.7673680697826691, 0.2570865904483032, -0.19817711100595295, -0.4091844858566491, 0.33612581888718973, -0.5251150799212696, -0.5523654435554108, 0.9266366471429582, -0.6641351695225679, -1.484688971450167, -0.7836506339871417, 1.0539005310373215, -0.54946930792163, 0.18178134728090914, 0.4578362359615152, -1.1483202304528368, -0.6186776720968697, -0.5519632453131268, 1.034150285385379, -0.846762807991622, 0.7635407643619296, -1.6960439973642032, 0.4403878273752839, -0.18830084666809938, 0.974800180876983, -0.032147703337501644, -0.6126709192013591, 0.3259265954965906, 0.5657344770092247, -0.3747129434244352, -0.21315911444556224, 0.2463002444292946, -0.2978787821599012, -1.131987249848047, -0.38227361743883975, -1.300179955782219, -0.08210077541583145, -1.2323742539256923, 1.6521595121192625, 0.7200210094017067, 1.132395039298834, -2.116563720424477, -0.01831219000564039, -2.094647784065565, -1.0836266505194745, -0.8307141105765282, 1.1046897292718891, 0.20150864184421222, -0.22179651616442025, 0.8489780528716209, -0.44922778905119887, -1.3371971197992172, -0.34019122519337436, -0.78830452120751, 0.6237814098927593, -1.3607446613686456, 0.1946943878705592, 1.2804857842082038, -0.5213431256597687, -1.942725133845063, 1.4120212786100672, 2.6003009303991536, -0.08028114128068337, 0.5988202062696584, -0.47994230358054935, 0.5542495581886624, -1.4718783210681847, 0.08925535428702742, -0.15446254008655808, 0.7819396067990156, 0.689912622596929, -0.8119886480856738, 0.7028468011655719, -1.853274123548822, 1.3941771407545738, 0.4444127716409785, -0.6252769492728849, 0.500387292015743, -0.6540575604787287, 0.4718253531085036, 0.005087388012674689, -0.6784568964270054, -1.388828322700047, -0.502609620938735, 0.9491116958276585, 1.256581802405568, -0.38518795900519065, 0.13349486266708632, 1.1034685792509749, 0.350520619578167, -0.7691686845898491, -0.4813994184025713, 0.15189788654537908, 0.8156206703179699, -1.030142724856292, 2.0871234743468365, -0.5548451838481676, 0.07763437137289177, 0.3029294690314384, -0.02871592609899407, 1.6892561316954016, -0.33215906473452544, -0.5751011534986222, 0.4948376225044044, -0.21708579658013785, -0.5683729501872622, 0.8736337575477775, 0.7328908575459753, -1.232545070463054, -0.10931111377555981, -0.2787643602543884, 0.8040577529680698, -0.945556658549976, -0.42187360855067685, 0.18904394343359118, 1.0545623262612756, -0.20456225845936718, 1.3069195485893703, 0.3565260311409759, 0.8833927207963884, 0.6079220574370184, -0.6592599605163875, -0.7609414395270002, -1.5329654546610467, -0.9635683232802601, 0.6548126074574897, -0.3175570017844069, 0.2305504129674926, 1.617721071603571, -0.5449712177343539, -1.2165858968654928, -0.18632006232815787, 0.08220230039183568, -0.4563432895159393, 0.5572670468227761, 0.3238966876539812, -0.20530748724458323, 1.840748457612527, -1.6961542957548534, -0.8094566484060186, 0.880465474174965, -1.9249814300645849, 0.5656691433290412, 0.11045265161420977, 1.9334276950188174, -0.9026410522107352, 0.4443741684350458, 1.5999868035188676, -0.05328094139905036, -0.0928819858524368, 0.43865074215791605, -0.5404948303607828, 0.8331691900923603, -0.012266238322081315, -0.3458637250706288, -1.2676791456361227, -2.090535430677916, -1.8077215320483022, 1.7426389649713976, 1.3615284722750154, 0.7132097239132108, -0.8593211570985914, 0.8092799268277534, -0.5164413868005915, -1.5180064450966322, -0.4252643932384261, 1.293947796926692, 0.07830410267640334, 0.8989372671258873, -0.20824448870385912, -0.9160015319356319, 0.05324943579903171, 1.7598640222848474, -0.008199977405867288, -0.09161629254371174, 1.78080366035256, 0.581695391644171, 0.7134603492827744, -0.7286915686635351, 0.9960859683157869, -0.4704823496670343, 1.4903923618627666, 0.9411975392727483, 1.072333602089662, 1.4556290361918145, -0.3112371514971704, 1.4460482068865628, -0.5496309574247783, 0.7762132181960626, -1.8936085269717815, -0.47228350328202606, 1.0518084348282686, 0.8589175839156838, 0.9610026322679097, -0.5203965969838443, -1.0931917878350956, -1.4792338921686774, -0.46740160524921776, 3.059081034293137, -0.5944711092407443, -0.22635131535548342, -2.0362691295089133, 0.6547907575922871, -1.1441880052108713, -0.8439250627292557, 1.044996304159367, 0.7919860157576368, 0.04178080677728141, 0.7300062005196322, 2.631713234770423, 0.8164602620594572, 0.39083880010574723, -1.0793635694723795, 0.057572150421272096, -0.15182356109272727, 0.13637249978492832, -0.1670465873743694, -0.7920650283779282, -1.4604474315371154, -1.633051861707614, 1.846959561130133, 0.4475190579980511, 0.019054128836008332, -0.22854269349356057, -1.711034100662226, 0.4733860586612702, 0.36393692929623483, -0.6105256923377955, -0.6686068716936007, -0.05825085054561267, -0.20090533271051733, -0.7507885812740706, 0.16958180999122238, -0.8671710092233683, 0.41767331514685285, 0.7413142485205126, 0.328424040073978, 0.5654497413937657, -1.5957593234782308, 1.1849427026514296, 0.40274482249183735, 0.45172614341816986, -0.401682695798313, 0.0870505323052514, 1.1322494189454917, -2.15286433172381, -0.47040683607400624, -1.2230603126973283, -0.05329751610343127, -1.8377828424331264, 0.061297137392799426, 0.2161638668354769, -0.8715729642948983, -1.110854693721452, -1.1942430311067076, 0.3572290633927168, -0.04414780223975828, 1.8442111702575124, -1.071397645073342, -0.533780049107231, -1.0196400578411189, -0.38323495234178395, 0.3318021186407764, -0.6625409427658691, -1.7535325469491143, -1.0409007422104184, 0.12122878226387583, 0.5830303809452878, -0.4972554584069262, 0.7446302089642874, -1.1142197488957128, -1.07999824212166, 0.30136744380582764, 0.8436886214797995, 0.6124293737638088, 0.007922111200939816, 1.2855336620086653, 1.1053485333879522, -0.35483366215586504, 0.4335831616393906, 0.16101958836829514, 0.061738993597494664, -0.5720727129571094, -2.228954209588958, -0.9469131524336829, -0.3929362137949543, 1.6939798548689087, 1.4504327449882928, -0.6984918943854811, 0.9614623783139937, 0.30889147593806854, 0.06894621979562288, 0.4915160296178023, 0.4719470343709824, -1.9741042985383908, 0.1091248419325986, -0.055997254656080235, 0.0026241780106432107, 0.8786478036328109, 1.3517186085680895, -0.35849547533549486, 0.47127329416021785, -1.9153691454259587, 0.28568994048274143, 2.184255485208884, -0.00966792653851587, -0.11800489884775371, -1.532079754555402, -1.483415730723492, -0.13537783208564486, -0.5344377855250593, -0.5197328393056575, -1.723525585955027, 0.7268553427920765, -1.0475333727540779, -0.2492386807153821, 0.29041241864919204, 1.1811590477585843, 0.5265010771174933, 0.8481296475312707, 0.7076466900331309, -0.826460830754253, -1.4904557023416773, 1.091294351235197, 2.323517308025595, -0.6936294218971224, -0.18502216109955638, -1.0069826725665068, 1.0677592063042844, -0.15063395827910508, -0.9277143540326547, 1.0494023101371635, 0.1025258854065511, 0.575424489358363, 2.6637289907273516, -0.4305116282340299, 0.3672987374672777, 2.46209143754475, -1.948404448187156, -0.6585330645112956, -0.24812064909522638, 0.1742481652364759, -1.1086292963094775, -0.46579222101123136, -1.5251664347818013, -1.2750017319152827, 0.13989695930475915, 1.3747609746214626, 0.23412827727267582, 1.1726542353393485, -1.208819021209695, 1.158895030977537, 1.0827877762099671, -0.980004023173097, 0.49585506414610947, -0.8072305062300478, 1.093257778759602, -0.7706203557989035, -1.0718407988797631, -0.677125467903574, -0.012007821507882195, 2.105226803255587, 2.2832910857429805, -1.6898285048021453, 0.04850880778182721, 1.0750998211723555, 0.6417813180853226, -0.2132383449810948, 1.0191132228573465, -0.4343603261376161, -1.397001271653599, -0.9713407447551311, -1.276475647048941, -0.13813972386528517, -0.2748716273114677, 0.6971127268162716, 0.13873147675133968, -0.9480307791264729, -1.2213699290766467, -1.1310074011734887, -0.05966272750076824, 1.1572545653630855, 0.4817221113080244, -0.6708038862233946, -0.1908539700437356, -0.15261515118775182, 0.8395895302789388, -1.2803360150531065, -0.24871006371384083, -1.0850986285139432, 1.32561504492365, -1.6427856005745736, -0.5801723643713317, -2.372873384318643, -1.0089033323562195, -1.1505678650302462, 0.6548087417310019, -0.7284141517231439, -1.7693229951915113, -0.9257588759222719, 1.0243046824909523, 1.537518920798709, 0.3451620533749951, 0.026578818276718975, -0.31604552265002556, 0.2758924318218453, -0.6744569511139888, 0.7968831681464617, 0.5260112359101494, 0.19742735151821064, 0.6200942741509178, 0.8277493255053452, -0.1053363825295525, -1.4176655556445126, -0.44695160284796587, 0.5646276243101497, -0.45208330139276687, 0.8525269290666603, -0.1739490175927494, 1.0321872309889277, 0.8674491763136656, -0.9778379762283657, -0.8370173696565565, 1.0494138551158996, 0.2896624237651363, 0.6061657116718324, 0.2686442788272623, 1.844598458612689, -1.2963073984979905, -1.045794456391525, 0.3129364240827222, -0.6334548562583842, -0.7477343785964682, -1.4998581600085945, 0.46053070307389826, -1.4835022284865231, 0.21105543490279097, 0.22812560280697075, 1.5055549447923116, 0.9442005762733182, 0.12383155608406464, -0.9778343636545322, 0.5687023338119714, 2.032834869969627, -0.12818677645568008, 0.14452449106263127, 0.6852984303983142, -0.12702037436173072, -0.19988269670095052, 0.7475529764808972, 1.056503181306139, 1.7226297070783727, -0.9386534985703899, -1.3974018570930664, -0.3749143356422615, 1.0184778725150132, -1.0780910568043893, 1.3894185443109743, 0.3733764788145616, -2.1705476712373852, -1.3370407336522512, -0.21967654305964884, 0.7371236887263157, -1.0393551113743986, -0.07938363671838998, 2.248886854137663, 0.20306360491654216, 0.32227788433218857, 1.0304504490349569, 1.6134007137402082, 0.08640277637374219, -0.26930653396907056, -0.17866097345892867, -0.19618084160558102, 0.5651647198275247, -0.3922788590846925, 0.7376808199347132, -0.24628803294597826, -0.7796744425589285, 0.0032827757657874104, 0.1783033693301627, -2.0362891257316424, 1.2837531065239525, -1.2402233590205989, -0.9279446111926238, -0.6148276632819862, 1.003027491539939, 1.5914977802628745, -1.5392857246008063, -0.42697323727587405, -0.5604153344877477, 0.4945772147581216, 0.6501289979567, -0.4536396062098241, -1.074969787278763, 0.4789026512728747, -0.27872600765361066, -0.5095963236232418, 0.6554773494660501, 0.37898333461587635, 0.928690038267191, 0.49174647936009824, -1.0982576647782742, 0.684585479453907, 0.5148321606751813, 0.341415819395766, 1.0922134068988514, -1.7432970823558551, 2.0459297874349285, 0.05773135105913158, -0.10819000022390303, 1.1583498553211726, 0.22964617626875997, 0.15622372726835065, 0.21591458394347232, 1.136234183883209, -0.10947306851412163, 2.4259546928854125, 1.2504609636881026, -0.12802963269752046, 2.0702596870542616, 1.1346711604509567, 0.08352073650423594, -0.0966221730384877, 1.5943154453309698, 0.7900706655702032, 0.8969512017323384, -0.312479367469986, -0.5481433084090095, -0.09090762640404428, -1.004754699361886, 0.4647095931134543, 0.03559862679221577, 1.3095124768272481, -1.3253452789048534, -1.280911537878147, 0.8593823119005896, -1.2846207277763046, 0.9605446705993111, -1.4706202453575974, -0.24209970509567652, 1.1747173116089076, -0.6525874651340379, -0.08700978708275225, -0.42454900849246396, -1.3078525627553033, 0.9735803060101473, -0.46096912271710655, -0.45066531984751224, 0.05939066341907462, 0.04947841308555233, -0.8509451499871933, 0.7006515434628695, 0.4865608231786459, -0.8002308160976538, 0.9055104871642631, -0.35841991574309456, 1.4934665627815142, 0.015040283600789774, 0.6209073401820051, 0.28446962184525576, -1.0080558169635405, -0.47671993893497666, -0.6780145764702393, 0.6472256733517985, 2.174645917400314, -1.8729310100249041, 0.344139407359067, 0.7946002422372063, 0.8784047643759297, -0.4150798896190504, 0.4948046281083922, -1.331814640941439, 0.6056925727081662, 0.22902863420230157, -0.7285933692667153, -1.7163073417298633, 0.3404445208357662, -1.0421229024263359, 0.6271847678940597, 0.45464837473108227, -0.3176097007074765, 0.11765567320501223, 0.5014142196236518, 0.22184759388661263, 0.8008505004985668, -0.5516465597502106, 0.25880232100758954, 0.17146799627457227, 0.15210774307428743, 0.4372153911406859, -0.8893732067719665, 1.1175881934560221, -0.3283499059567344, 1.7637249549146594, 0.3704894936338509, 2.793016556345094, -0.43587497398115477, 0.16938326241933052, -0.5140318824287007, 0.662402505870598, -1.3756483902671566, -1.13371297867089, -1.0348615015881693, -0.8702245841121018, 0.9738791824726067, -1.4071531050212793, 0.29579371344002703, -2.19125042477596, -1.30516196930884, -0.40369698573048945, 0.03245957494176654, 0.412386137069758, 0.22953854276079133, 0.1202841892726795, -0.12255682885481646, -1.313538738130767, -1.4834420614222847, 1.3299917883994985, -0.37481767855748216, 0.22425138512823536, -0.9160222178458524, -0.08117395941758196, -0.6143308426251941, -2.1324238652586534, 1.34200058863085, 0.2008788711854328, 1.6170972334011062, -0.45408776033701603, 0.5448348130620764, 0.2691074178100737, 0.3483154305729445, -0.09645346621736334, 0.07012562830462829, -1.2741282069651754, 2.290791320510384, 1.5368414467700295, 0.8357591274888554, -1.7752361454990155, -0.42300601550325106, 0.7483088519777917, -1.243143288833705, 1.9003685211138075, 0.6903735075290736, -0.38261346138237157, 0.7284864649569678, 0.6122468663978636, 0.7324215710729137, -0.6256363828337409, -0.7955910396797816, -1.3418253252449086, -0.6850664972936922, -1.9393479560669524, 0.6196181292176092, 0.6646174904602998, 0.290310401101895, 0.9895110477421407, -0.4097648745881963, -2.256335885741086, 2.2037826760070764, -1.4775888516832276, 0.05687229399788876, -0.05286846143498841, -0.25135276120833744, -0.4926055840393674, 0.5150796523662292, -0.03529196018910586, 0.6702509764356842, -1.1532786681471943, -0.6696896797464366, -0.8264528438511274, -1.1098331088370843, -0.013890930170469195, 0.2843896596733437, 1.5651714025075614, -0.1749086172786075, 0.22705611447189356, 1.6858169615097456, -1.440205424791289, -0.658248008580113, -0.4240146128713567, -0.28467114074253463, 1.5207744250309083, -0.8389990530732157, 1.6738514192480385, -0.7375549402237555, 1.3327107709330324, -1.046698352021127, -0.00018657284842148173, 1.5979657911849345, 1.2574742159865453, -0.09778774218903288, 1.0136414505855782, -0.408663784472141, -0.9412672710120661, -1.2256105860445519, 0.7213435800102644, -0.3143321613665641, -0.5708629246223753, -1.0684860123141682, -0.4766630400239268, -0.8345098139170315, -1.1928765570469337, -0.33681097630250234, 0.11337871698596695, 0.6125871757949188, 1.532496258372403, 1.2015616255106405, -2.2339964641671477, 0.5824913951076331, -0.4006517934569982, -2.3677134299550477, 0.25706456056429644, 0.5432621728051465, 0.223289757427335, -0.48659286892062037, -1.5287963254273034, 1.5926944911761227, -2.420338099784077, -0.9917655567591719, 0.6015798683068395, 0.7775651448737876, -0.2564335987601242, -0.24693693773325637, -1.1238426495888276, 0.8491957918554823, 1.0221087698684, 0.7143663620793231, -0.2177038017994031, 0.8558071753548356, 0.4958125479105681, -1.765073366041987, 0.5871664132807032, -0.2351533686340111, -0.8901629274333063, -0.9217135436004892, -1.2225218520241818, -1.8142837921562256, -2.206142238341617, -1.070222185695364, -0.1286180830173093, -0.8382733266542473, 1.4418076546511733, 0.6457041520102026, 0.6226837316264768, 0.45628947621849125, 0.8640827751945448, 0.4334358523349535, 1.0189932726248747, -0.4298042014325327, 0.31269316833819255, -0.9703619273611481, 0.893350404215891, 0.7393715820404269, -0.7443246633907923, -0.9808663118570524, 0.4682825323954677, 0.5927031812534833, 0.027519689571566818, 1.786172797549491, -1.3504579179440541, 0.05261061023135578, 0.10167109692086178, -0.186574847295416, 1.0936202691183647, 0.18522771229908258, -1.1946643807907458, -0.8190814038761398, -0.7119056702907687, 0.3273207506815476, 1.449026993945095, -0.6607678199912377, -1.0546079120250063, 0.49017339674957033, -0.9780805338160627, -1.5409505040969924, -0.18326490422548072, 0.07294159267402126, 0.4758382441439775, -0.8377960180351727, 0.1395279917804945, 0.4139144619029648, -1.161107730519188, -0.4794598029782186, 1.8092020290665962, -0.43440859181517855, -0.4355151781877681, 0.06373560937116968, -0.5829927935010262, 2.222206080757542, -0.062047353948679634, -0.818641521761432, -1.5857272038996428, 0.3107688123667635, -0.2022996893321647, -0.318724948564787, 0.933077547366923, -0.8328668070235054, 0.6762044878581196, 1.0558207831533255, 0.699635754798284, -0.3843034277834569, -1.2397430096075914, 0.2852953837439873, 0.27533859105789993, -1.1520605288893357, -0.3093754407713569, 0.67029066703515, 0.7155820968002197, -0.9701637184611097, 1.234316689566739, 1.0819477359743694, -0.5242648855902783, 0.4183208428173658, -0.01960341011541325, -0.34108259397643076, -0.9940811264974833, 1.0915775196441835, 0.7524052530385049, -1.4895064562733693, -0.31895321855620895, -0.8248262687703203, -0.3285926719917019, 1.002326538919176, -0.6313619510168664, -1.9673440551300052, -0.48288866323676954, -2.0416643459397004, -1.7761733906973503, 0.31651680686158, -1.0476935656931525, -2.190708814443983, 0.29285573038093066, -2.2457448952793087, 0.11080526365295089, 0.929554276006385, 1.614732739294652, 1.368191152974497, 1.0810354059597036, 0.19401058695572754, 1.0701590297727308, -0.9315364622592114, -1.4416744083868498, -0.26411879341473005, -0.3779076295434642, -0.06976705907682154, -2.668582743247127, 0.9424517903897329, 0.9567250297664153, -1.7853500004110279, -0.8094196456901769, 1.0000869093421432, 1.9646071608241182, 0.5823730453555769, -0.3434670643175209, 0.3391763313077997, -1.186208231551057, 1.566759544195126, 0.5684626670496757, -0.4007446543114712, -1.3748949594922366, 0.32360587010232156, 1.469790180820824, 0.6755854515534688, 0.22883501869912545, 1.7401932998285914, 0.5195583034585772, -1.6138387414974993, -0.0050215082717325775, -2.3178168819400145, -0.7498072476920538, 0.7790121704918663, 0.6125229000041423, -1.6523869181190123, -0.9321944851270811, 0.3917438029239647, 1.4167450761076612, 0.4704078520430993, 0.5263650566619817, -1.8406237333081699, 0.32513022233781963, -1.8867863572736914, 0.41353534623279886, -1.0261527827260406, -1.7948491870272885, 0.09396262972849669, 0.13022188626262007, -0.18207126582324465, -0.7740154353052602, -0.8112664090718319, 0.30814045031262616, -0.2926076020065443, -0.22909816899218433, 0.2775866869008428, -0.5171889606170623, 1.0226136875238336, -0.9653167838025394, 0.7805018540800011, -0.8884615295422932, -0.35806688507479556, 0.6896754291314663, -0.5470721905587747, 0.8501283224030685, -0.18952702449434683, 1.4604509160271715, -0.5526389012815853, 0.2582027096439304, 0.19571291138837682, 0.4970928154587813, -0.19896289111879373, -0.39660802047370186, 0.4800578795539299, 0.44439060753687437, -0.4785207436784548, 0.4150190789848973, -0.7202583831221282, -1.2367369707363343, -0.8283068318663365, 0.17800452181253273, -0.6022032492446956, -0.3849454143014897, -0.2394903269416203, 0.43222127192546866, 0.561772701569331, -0.9507345367775074, -0.3793283995786656, 0.7052937691944853, 0.0013547484712829645, -0.046198887690842794, 1.2643036091058089, -0.6263078603772313, -0.4337983828099811, -0.0009938382534339324, -2.138103052217803, 1.938432483884262, -1.6902003769764904, -0.301435285090137, 1.312246279053718, -1.0118356672076745, 0.7030653291612344, -0.5947027315761058, -0.1918761065016037, 0.7914881473733342, -0.0032227002407523267, 1.0150278815078115, 0.10784191454841748, 2.4522213098985954, -1.3466807823705236, 0.7809485846762115, -0.3171841856811555, 1.2504209166168154, 0.27014975134444197, -1.0767865770172589, -0.6194089709903242, -0.3186178282923183, -0.7223376981042134, 0.663194968060882, 0.048351744334576695, 1.386866710815687, -1.788140198859476, 0.35939018860390987, 0.15588061182089905, 1.882061943120058, 1.5838571980600649, -0.1228862646103543, -1.2763254696694957, 0.8410445199308033, -0.2639495337642512, -1.1637237238896974, 0.5689790636691232, -0.25071917685416745, 0.6112308387366451, -1.0654809896990445, 0.5544980740363795, 0.16940610246577592, -0.6562840566185149, 0.5368666005195255, -0.7664987949382767, 1.4826623798316538, 1.7136627053566742, 0.8942767079938853, 1.417338449663433, 1.4016344147119253, -0.0932724187181555, -1.6212536920287601, -1.5057872491946285, -1.745731498912635, 0.046323018334409695, -0.8329497693334647, -0.32166321483449956, -0.7882068637915364, -0.6945790815608652, 0.6560694071029094, -0.45558016718347266, -1.149293704893863, -0.7116048723029366, 0.2474638768187151, 0.4842307719848145, -0.8495134647583512, -0.5525102690966092, 1.052062795408097, 0.43179332027545875, 0.9338010883734308, -0.4563429621779838, -0.8709309253767765, -0.19859500331778213, -1.1202860223452906, -0.5725299035574176, 0.3830539716640265, -0.18592406436950779, 0.1380832357753401, -0.9430651967881539, -1.1152714213538932, 2.0961548018677316, -0.5830077119116565, -0.0456894251083051, -0.5886996938969169, -0.040443926598053556, -1.0866133808762062, -0.36619141629700863, -0.4199355774076613, -0.25229029153959037, 0.13022303808133195, -0.5571079951256077, -0.670853343017037, -0.62401239617063, -0.10327322905115408, 0.06166137634811651, 0.8034907781791278, 0.4712336970771344, 1.0228997076977984, -1.2305867321774462, 1.539771956100879, 0.6313452874808125, 0.2263035465929232, 1.062089838222533, -0.3171348368873103, 0.20362977696498233, -0.043251301913618354, -0.918233343630473, 0.3385557905684288, -0.48962113037053095, 0.9959369431101218, -0.3695976724959964, -1.5371088810451095, 0.3554165252818677, -1.5976251525731138, 0.2765410227655504, -0.6178730002787887, -0.21744297868008244, -1.265866366118787, 1.8243706466871352, 1.6883071937847638, 0.28785769304559305, -0.875991318174538, 0.10420311338921573, 2.1166637523971796, -2.104871329664063, 1.2806719957377704, 0.49696291541311416, 1.2581881233066812, -0.3582645315239271, 1.7497700686835809, -1.3772758744577789, -0.8259948263791458, -0.7825816920465314, 0.39547112978811066, 0.6646667421815581, 1.5086207244384744, -0.35883729522029195, -1.6929156556594152, 0.02621454952218337, 1.6566619127026974, 0.5161519313396559, -0.8832025376335407, 0.23680689842836605, 0.7131446228964964, 1.0305700476310742, 0.1675685037977057, 0.1295328812299051, 0.3692241754015111, 0.17862851264777585, -2.21883147672075, -1.2142081724007945, 0.05738109630684349, -1.481299130461004, 0.16331940150789132, 0.6658459844903201, -0.49563940020239733, -1.2193262723447607, -1.1390140660288972, 0.28857288560917266, -0.3733000736804947, -0.23155253685860144, 2.917819202399223, -0.5439868033912554, -0.8414690483000906, -1.2508528059894324, 1.2145012764409586, 0.8238562579854616, -1.150222966382141, -0.019222801180942748, 0.7292789053641788, -1.537014623264112, -0.01512334239745452, -0.38654783342882465, 0.3142348469819273, 0.3739240064071918, 1.312120826197007, -0.4853292417877552, -1.2161704933845705, -0.8503956854507769, 0.27426956590793916, -0.5459093387299317, -0.3952314392925589, -0.25604816787334733, -1.3521212206307562, 0.082547538637035, 0.8786843025712701, 1.911256875135924, -0.5367520468266972, 1.4618008360721724, 0.7856738043654645, 2.2739416605639264, -0.13241991430060504, 0.44898355847868104, -1.2302097176641285, 0.7931906660401079, -0.9842154739892023, -0.6169155396819039, 0.3335486151946286, -0.6485075009630485, -0.5822990827598302, -0.15307287969713493, -1.8073229858557625, 1.5496960359547696, 0.37028348562505864, -1.977715701472641, 1.6528235146794235, 1.0117493112026112, -0.3369049215027834, -0.5972227020361626, 0.9593078190587301, 1.067434222241124, 0.14707349947563395, -0.13575621537553967, 1.100744117526777, -0.6751268573048483, -1.0813704413772467, -0.20358407291108263, 0.3362534619692908, -0.43309308078458875, 1.0041182255700336, -0.8336014739650274, 0.6543881636554736, -0.05300928337450014, -0.39647679255216295, 1.3896668183156242, 1.1948425889867182, -0.07655985218474706, 0.5237654212776651, -0.863677198154558, -0.8998764688834703, -2.206682738410261, 0.09362922020094845, 0.31153693965934676, 0.875567996300439, 0.057273469334202985, 0.17090165640378818, -1.508583460539391, 0.7911842132733886, -1.9280587842791623, -0.30082312057698796, -1.093006349251661, 1.0470421853189245, 0.4375043746914199, -1.3057862656126147, 0.19425297115380033, -1.4716420908886223, -0.553087759093513, 0.03153985966785027, 0.5311649419295391, -1.428311141676051, 0.38571562289692246, -0.490872072985722, -0.08778927615581074, -0.30913507362079445, 2.2625203348102416, 0.8493820466386227, -1.062526625981798, 0.5452231151944601, -0.48869203471364986, 0.8823824459830124, 2.397024236076918, 0.6827529889927517, 1.3200860320473093, -0.603836745577993, 0.47962942966686545, -2.3899266568671647, -0.25593976623658793, 0.8427988215164086, -1.8146851673111992, -1.332002756907377, 0.4540035817411222, 0.5833168448700495, 0.880604481641099, 0.7912898770808108, 2.028687872196733, 0.006804586650743749, -0.5146871530466425, -2.405491203223249, 1.686332386581603, -0.05350479287473862, -0.38942776249916267, -0.15412758088937425, 0.1287226228437487, 0.15191784572889772, 1.1497011466583293, 0.6337616517640239, 0.2170872078108333, -2.1090202051072895, -1.1815955668022333, -0.8365177187656117, -0.15315899673453504, -0.7478104970135265, -0.06984042113669613, 0.20945688760320336, 0.02143882101580853, 1.3707811084755435, 0.7291338204331884, 0.6402592241830657, -0.6473149592285773, 1.1530190626048062, -0.4064151562254939, -1.3707830581986624, 0.025025473278043588, 0.3800563828275442, -0.0892821176343023, 0.17860902583214308, 1.1549870472881223, 0.897479972423735, -1.5407938921486382, 1.7974874997770995, -0.07967835042748712, -0.15429419837529224, 1.5981275013921978, -0.8857393566560056, 0.31965665308867536, -0.08326392833788504, 0.49611514672571666, -1.7294638264939124, -1.2533223566785698, 0.7671391504274742, -0.28162729326810887, 2.419423705014576, 0.6637479770983924, -0.980602971249453, 0.552376125634429, -0.8299500212112257, 2.1192645531469303, -0.7279045815563889, -1.6598677831557394, 0.06882128944992078, -1.8276382426055353, -1.1437576361761317, -0.23260438537143716, -0.7950834345495589, -0.5869972995655451, 0.8048574355607974, 0.8032452764667649, -0.48030319965790924, -0.6396812260924092, 1.0947401994035768, -0.48937062797156883, 1.073930599458293, 1.861922621020292, 1.4049934626967444, -1.9367773036122906, 0.11604725254776456, 1.059558219261512, -1.4754299642205588, -2.109912640883029, -0.8184868406250616, -0.04940551915705156, -0.5634843641710943, 1.3072121043271856, -0.042806714845702684, -1.420339442437645, 2.7713870726191856, 0.7305050915109171, -0.39023345261091724, -0.485695131141133, 0.7168634795435672, 1.6328800061203967, -0.04570663954760569, 0.0037196177272335994, -0.15477325042117485, 1.0025212303361448, 0.9946236769218483, 1.6365670282636846, 2.566357414142998, -0.19328927447366648, -1.0922854377019833, 0.41973885854823223, 0.0337029864044968, 0.18512990233280507, 0.2614452298228223, -2.4999506406848155, 2.174687121063728, -1.7559720936001935, 1.3046197442125773, 0.36212532723409085, 0.37329322294206047, -1.4581805746400756, 0.1895773154668989, -0.27600808273121397, 0.06588075949913583, 0.03356946969886548, 0.9529014894482156, -1.8816196004222945, -1.5394718881310943, 2.9091006790469365, -0.308745154312186, 0.49195772381246006, -0.27297916799355604, 0.14964418366657503, -0.8597520948296384, -0.5045782478813193, 1.916232760678654, 0.12289641813098015, -0.32928621211788656, -0.17040494415083918, -1.0065638387106348, -0.14578251935833111, 0.36675663832165695, -1.0432542976903365, -1.0766542807224246, -0.8414901466442559, 0.9087723483922476, 0.27746268800908086, 1.3658433839048125, 1.3557418586980372, -0.48335834483489526, 0.7933675870658761, 1.3890254171161984, 0.8985639920716674, 1.08615796826484, -0.9991755498384143, 1.313094839806375, 0.714578026523763, 1.0309673541795474, -0.37679567529150076, 0.1728223498458547, 0.9404254088858819, -2.2444448458023163, -0.9569412561680187, -0.12289066528786638, -0.10652074495225636, -1.1303761635123433, -0.2157966874105977, -0.43540707697818315, -0.14399233073015985, -0.3183753041312898, -0.04656499845089743, 0.7696173826805034, 1.4587545165402938, 0.15134051417910271, 1.1193675487269548, -0.8251308211433661, -0.35196225099691725, 1.0527070648559564, 0.3231833902567982, 0.17026753367126882, 0.9967506647051778, -0.5786789790679047, 0.04301974199066891, -0.04370923063871963, -0.5245502790645823, 0.7190326469489415, 1.0031059377319396, 1.1452769748203873, -0.36037904920770153, 0.3961283691422185, 0.6267652849219004, -0.39880491088302816, -0.9373043543672139, 0.1876396107447231, 0.648039890214198, -0.6394556324452331, -0.13091766805112343, 0.9592594821733877, -0.22584634779823912, 0.6199825393878876, 0.6151315772673216, 0.1327032349218876, -0.15347653499721647, -0.32310997140334885, -1.3463988473659323, 0.08359296446342335, 1.8509106424897883, -0.632308117402485, 0.7485591960527799, -0.3737555155353643, 0.276039787540116, 2.339682790989946, 0.3641728149567038, 0.084859582074814, 0.9954768756370385, 0.878089910037335, 2.1444465267981174, -1.9244713200701156, 0.4080025094448466, -0.7277221624848097, -0.003363665022557833, -0.3043490158667335, 0.4548749435084088, 0.3730325344807608, -0.09726947806765701, 0.45547032882850785, -1.3422722844131634, -1.2216615756663447, -0.4562458150067783, 1.6400918880337334, 0.4038706406631242, -0.04934472715649682, -0.4001738656729662, 0.6130587792118789, -0.422765582258104, 1.532139459021251, -1.1122027393996017, 1.259130390839346, -0.3279602482137484, -0.3114528533212208, 0.5658648215682168, 1.4023311710115087, 0.6889243254589702, 2.1251128106256187, 0.40771794998802446, -0.8354396171770275, 1.120203356711314, -0.44562525979966205, 1.9580584851792227, -1.7423473006801045, 2.4735783009195584, -1.108959997241962, 0.43607064072996105, -0.25118543173613034, -1.8677175406823874, 0.8058553979147342, 0.21009072176761048, -0.48112033304964186, 0.03729177805440182, -0.5659717169351911, 0.7625803404535586, -0.8224493022620157, 0.4277042269882045, 0.5366029124677557, -0.9071200640161414, 0.9098662504749081, 1.7337083697973399, -0.4772615971482834, -1.8673283294015448, 0.41446060012849895, -0.8491191318527499, 0.5362046391414684, 1.5323876250641528, -0.1620643397742494, -0.8524086379532831, 0.5520807041238148, 0.010009397061278168, 0.1229979638470393, 0.18142007603419563, 0.288787118714202, -1.6277633632319617, -1.3701190603237472, -1.4085871881470355, -0.9008587094026274, 1.4779230200465048, 0.490532238659545, -0.9383064376353502, -0.6502742054928249, -0.9393546437319579, 0.21865595200196378, -1.5389235029801338, -0.19561496335140327, -0.003374770751660112, 1.2514963178534284, -0.818843109281464, 0.6272969269811003, -1.5604757901428095, -0.16527307071171496, 1.2973565180022808, -0.876996175018141, 0.6580412871329635, 0.6079388719386346, 1.8839065827152717, -1.7366557650767105, 0.9814031301597355, 0.28433290512019943, -1.3739405279564825, -0.5077525266917279, -0.37318993547091206, 0.90407661093073, -0.599437692534677, -0.318144415806834, 0.22361423606945272, -1.470577251265272, -0.5972276305617893, 0.07451893980971212, -1.0556880788101997, -1.0029965221321322, -0.5144473073756684, -1.769767568688798, -2.4515490382439467, 0.5545877665691841, 0.42918230988122946, -1.1699571074202113, -1.1962199890679255, 0.28310326937243446, 1.7807101488619652, 1.0922106613224565, -1.5080253544866675, 0.8331504391589418, -0.1006718896633693, 1.1461966179158083, -2.1101118203007663, 0.26077189022180614, 1.7146196728211518, 1.573559065185917, -0.4920727693992, -2.096340952131701, -1.4050692408450682, 0.2757019700170734, 3.583021769012504, 0.2091961494462621, -0.1701328238846153, 0.43823944116055563, -1.830686806354352, -1.6544787557145, 2.238355754508112, 1.0676242978106316, -0.01421889399694894, -0.7275059446232247, 1.2307278536207846, -0.5389119186165322, 0.33802979551689916, -0.6355202225278801, -1.0238468477269118, 0.7333997373371158, 0.6106579572136863, 1.333731334956806, -1.036001421376311, -0.13244590030252856, 1.0348343958435609, -1.0291468632579304, -0.43302212957875164, 1.460150487071021, -1.3477695720590122, 0.24574423202523693, 0.060789479656760625, 0.8323660336841541, -1.215711845023752, 2.1326403227341912, 0.7984273458462747, 0.5073136151630934, 0.15403445828166124, 0.2773258608546117, 1.9268386288026198, -0.5239054252650531, 0.9041442207813551, 0.6214311798153156, -0.2556128385860761, -0.30076549981524925, -0.959585566855768, -0.16591980874672857, 2.2358587709641675, 0.580933048382559, 0.5556570247556379, 1.1576021134445347, -0.9688951166004578, -0.8310760774417486, -0.2987867645593186, 1.8011896937279803, 0.0063211857497301, -0.7536372538301719, 0.20063575739031878, -0.17453669522149604, 0.020543474591086356, 1.3748708811879815, -0.14114704946624332, -0.18006648112985246, -2.248871566347497, -0.10872090371537767, -0.29080019755472586, 0.6558683994436371, -1.0036034083340726, 1.285595403567059, -0.8256777588905346, -0.7711641467258447, -0.06453361856008416, 0.4738166810731043, 1.2415858026706745, -1.7553676281571042, -1.7113595446135004, -1.5071948755672275, -1.3879224182693477, -0.35292153420434963, -0.8739200829259275, 1.3815524952850038, 0.08241400059928407, 0.32813598066408917, -1.111537889652075, 0.30828343384368584, -0.45380767830296015, 2.0224716350934506, -1.4493208064026653, -1.373523016467918, 0.27714040973479104, -1.8132827144695034, 0.1849643886240361, -1.4359924379965943, -0.3464613990051342, 0.8073501477967506, -0.20469938375679278, 0.356049196338303, -0.3099242310415104, -1.6853852283609498, -2.1764723018367627, 0.035249973480021034, -0.31250126323009636, -0.0748957039505305, 1.962257454841942, 1.2038624675277976, -1.7942571406724992, -1.5738164994502648, -1.4835713271713677, 0.210916742056505, -1.2219956211938818, -0.2887499428304498, 0.35320205307633695, 0.3009824658337099, -0.9679774056426187, -0.9162347862487894, 0.3213054680076977, -1.2162359193065648, 0.4646408318125354, 0.301757197582767, 2.4910709525877963, 1.2262990546696675, 1.9671890532625176, -0.554806956711832, 0.9172831422639631, -1.4514336725485637, 1.151690251811396, -2.106468007719593, -0.23220044734646036, -0.4768638949564197, 0.4089411470185658, -0.5557928601575945, -0.6649880669653898, -0.7100937726203239, -1.4998782447429877, 1.4791019245347345, -0.8055384816126823, 0.1748089823580317, -1.8250536294896174, -0.6655816538159005, -0.5857934333552017, 2.2209916772607023, -1.2254262888663596, -0.3847488076148961, -0.3156761760347077, -1.6984183024294106, 0.17955191328176945, -1.8555046091231493, 0.7134053739426893, 0.5179936347576302, 0.052627600414584814, -0.2836472611737289, -0.08810858173513075, -0.4344138177819198, 0.4075810544822683, -0.0299077261492473, 0.12200121913639748, -1.4555236050779654, 0.6104935341030021, -1.3462698156316713, -0.6262067413845004, -1.9551036388749465, -1.0089544265336636, -1.2740469112722688, 1.928841634289186, 1.1173617178247652, 0.16788199942893664, 0.4629636612692411, -0.319571344521938, 1.3571781654709145, -1.5177902909467529, 0.6532185781878975, -0.03380440251044633, -0.06882902572322491, -0.27055617600196563, -0.5180165011120864, -0.6627961123613104, 1.0257872358409237, 0.26939942145194967, 1.3900357789502942, -0.0047202951149874104, -1.4268497548559036, -1.298269174934415, -0.3605981762071167, -0.5492918537831829, 0.8858342825485336, -0.8617267340195615, 0.7950337102189131, -1.7686558129288354, -1.85846309623977, 0.5323410146905079, -0.0013792895463537102, 2.113909032793156, -0.5779155746832086, -0.8240804395873093, -0.053241844888908235, -0.1616742866473221, 0.2647286131842134, 0.7430601981140688, -0.33229495996235875, -0.4797078623225741, -0.317038666248733, -0.10961828850085725, 0.2171672184148285, -0.0497105241955982, 1.289008021975731, -0.3610428005887263, 2.3656571509101, -0.018340327219546294, -1.4111306942006336, -0.5576627271404937, -1.1936746024876606, -0.30379969392398826, 1.3120262984559758, 0.17905477497302616, 0.8530178778649717, 0.18138009386270446, 0.3883767163652277, -0.5743930251214265, 0.9368297207368933, -1.6345265705727121, -1.453591161821748, -0.6182277135464777, -1.0165960323077587, -2.0495529278968148, -0.3981310735966353, 1.675540935479116, 0.6974748148651351, -0.7338150516210991, 0.7728986868262779, 0.41024658981978424, 1.8333318869896604, 0.9863212064430735, -0.861894666935523, -0.1733045026444156, 1.314917857937508, 0.3645376123344156, -0.029429950660201095, -0.4176391934394058, -0.7455151293471632, -0.18441631879567513, -0.63095333583416, -1.5980523258087234, -0.9759229209731103, -0.2798101651132719, 0.6417697282510987, 0.3462869336773341, -0.9688743924390387, 0.597722990561969, -0.8014503251735445, -2.914679368367431, 0.5973157072358629, 0.49806701195735187, -0.03987670851491779, -1.0804682652929312, -0.3289825933529786, 2.259250045241852, -0.07160886303660753, -1.1450951730380954, 0.5432606490193564, -0.46845900415649966, -0.83437691557861, -1.7851423127091466, 0.9092776344857912, -1.2229658293076229, -0.03864336633260817, -0.423003460138474, 0.41148340090261626, 0.7096473112328712, -0.6471759741221776, -0.5449568714372028, 0.7255568760485005, -1.355246945760122, 2.1577126040963703, 2.262526901371138, -1.9616229447147635, 0.40824363470724395, -0.9512748400292473, 0.9326031022676615, 0.7040788985235867, 0.451625494736349, 1.0653548353919011, 1.623644986959902, 0.07639487546147511, -0.46778791015640464, 0.8177422579520989, 0.9265686396589984, -0.12040372001282595, 1.1123961387193633, -1.1205068070375686, -1.596554191274549, 1.3489456046035384, -0.9121426637625619, 0.8628258018853113, -1.7733731481059627, 0.05327173376701223, -1.1506801787380492, -0.6435969024022484, -0.3130311421222276, -0.8752935394279051, -1.765605436059182, 1.292995067840068, 1.6350176839022965, -1.1084838734779343, -0.3284002579473223, 0.3588063877188138, 0.564088549227175, 1.0052174254099513, 1.1527173835497837, 0.9151347650697478, -1.0382325218248085, -0.7428709254003194, -0.2755413530736585, -0.5176580871910574, -1.658411223704012, 1.298433530557325, -0.10669693120529136, -0.14245814743458904, 0.46548658841313323, 0.9550704945755667, 0.08706667262380575, -0.06997331551758079, 1.57471160103386, -1.8995070638114044, -0.15782433458842104, 1.034055272547576, -0.3082218750850209, -0.8052016363354665, 1.162382382526495, 1.1051499903792583, -1.11911596159447, 0.2421901765978927, 0.6720331110824802, 0.07675954549203758, -1.421840832743747, -0.044206344391960646, -0.05759062008435236, -0.5399293995894553, 0.04488400124726098, 1.2654471360503026, -0.7198719061448482, 0.0673642314883485, 0.6737643941645719, 1.2141021824497082, -1.8514400403819402, 0.3743641347210083, 0.11071136104695317, 1.2905846785266497, -0.9530230866991503, 0.09251889134084366, 2.0231691310896625, -0.0019898599763556093, -1.1142875406865707, -0.032016105417748394, -0.35356115351154116, -0.7597617466301672, 0.3047390533789381, -1.0137895761811102, -0.42226696913624356, 1.3930133534095077, 2.0294647299598205, -0.8665797861803799, -1.768824334788817, 0.6378581404488006, -0.7762327754527084, -0.02958273148364813, -0.16118337114077266, 0.5615078778223739, -0.1493565458720931, -1.1294308616024435, -0.5176980458450687, -2.0293915505408613, -0.4372519990468124, 0.342075364429231, -0.18493121772414975, 1.4276573675662634, 0.8135370904058311, 0.7736065922484882, 1.3953967762459945, 0.9628415791007935, -0.9369901423670932, 0.2426372577506194, -0.5804987948961299, -0.24872381362110624, 0.1637211626684824, 0.42853185066846816, 0.7839959160252645, 0.6667944349842455, -0.20464729021584643, 0.5462313379671796, 0.2613831100187535, -0.6826411282793454, 0.07107262808976775, -2.074440756324835, -0.38624610614575655, -0.12730814264913198, 0.35112944798715245, 0.3059142503129798, 0.7245088262503013, -2.2504226238396883, 0.4000129552569446, 0.668918796571617, 0.8553145492349978, 1.317869667344416, -0.8704262884392892, -0.4749344754021891, 0.7305845162864892, -1.6111453323475997, 0.6233519103196543, 0.9287433144780662, 0.1359978849038411, 1.129950392994044, -0.3240877934766492, 0.26470587130263007, 1.198877653407874, -0.21002263218999973, -1.50760806988705, -0.6866731677129186, 1.250222716041038, 0.24689495078788662, 1.3255784544688376, 2.280817987147819, -1.4093005251429465, -1.1766519211606443, -0.4965961894464369, -2.4660350222093164, 0.5148288594758069, 2.1706541886467314, -0.4819407675931031, 0.5554694907772693, 0.57763313798464, -0.5362906270305177, 1.4765144059413924, 0.0031048741687288266, 0.3686371631410706, 1.205128544255925, -0.38851820055496267, -0.7289606646560749, -0.17128039849857227, -0.12031528390605088, -0.12614945914559925, -0.6904656475044404, -0.9073585981351296, -0.8939083599136612, -1.0756059604866395, -0.0860948404811479, -0.5597428478054147, -0.9158645755220021, -0.4484463232569688, -0.16084862004471406, 1.595765774906575, 1.6453287643207635, 1.7887644916923058, 1.130925620147161, -0.7695422435853293, -0.8316766421504497, 0.032970405020285164, 0.7128046950244036, 0.8460804396550414, 1.2359662124000903, -0.30906454852572685, 0.12292422718119869, -1.6525125750030736, -0.8555914899808065, 0.899865890352569, -0.6956909931692571, -0.39809640741047186, 0.05538122587796648, 0.05770225638047906, -1.3030562463549598, 0.4501976999061084, -0.027677247803878653, -1.1767429343584703, 0.7173440195353944, 1.5458129614486888, 1.9447542387159167, -0.6857387785606149, -0.5740841085805395, 0.00025373774692618965, -1.2589602178848656, 0.8381180607751978, -0.3396609086848041, -1.0100909700935246, 0.019688630702104762, -0.78852382854642, 1.1113569080873784, -0.40870255332956223, -0.23695271178902458, -0.7995186159297506, 0.13557991463716804, -1.9274835027346657, 0.002325611627412661, 1.6643165266784292, 1.0411577125241258, -0.5206346599139761, 0.21042476649132508, 0.08365995644868396, -1.1327783232484807, -1.3582863482734668, -0.9440357778560177, -1.49831597290105, 0.781538597051008, -0.17483448452074693, 0.130671548286761, 0.36115431627211864, 0.7891245188150249, -2.247187375635888, -0.2965876581014567, -0.6034219610448627, -0.6229662256032397, 0.9289497557827854, -0.3135013763284158, 1.6284450149859835, 1.2294466752085356, 1.0183606206540585, -0.7955309621310969, 0.8793013024892659, 0.3772469622826779, -0.7437184359692615, 0.609487334884176, 0.14803994424679445, -1.4121484624666658, 0.358694471389231, 2.3608136687683094, 0.2586890779902804, 0.5226054529170805, -0.7391337466470549, -0.8735540186996628, 1.6104998657787464, -1.1426491024585999, 0.7420816753530651, -1.6427776514555101, 1.6858206641566138, 0.7824132195839517, -0.5895738364167722, -0.1152966573794229, 0.25735111059127463, 1.0514800465029621, 2.1608016078571413, 1.2926578407616482, -0.5956722206013834, -0.3248495600489219, -0.7948657709289818, 0.7451331239985548, -0.7622647478034996, -0.618521352653823, 0.38044799188491796, -0.4258522460929527, 0.35775796821607325, -1.154913813137696, -0.7355096003038507, 1.2681265874530296, -2.035483468917094, -0.8248180489128055, -0.22592595694306822, 0.38509937773873354, 0.46542905490318937, -2.7019787304681246, -0.36091413003294587, -0.38515805431774003, -0.8622490211974848, 1.8387498786783434, -1.253510372437443, -0.023952009269485965, -0.15898828909642151, -0.8585585650868479, -1.5304689690993574, 0.19765383142320705, 0.6559967860074426, 3.4603945212929195, -0.2061019351223586, -0.6292101660568247, -0.8038524756029658, -1.012742172311345, -0.4802605438636508, 1.3925080697035943, -0.4876665296922834, -0.15900257634677062, 1.2772496677978427, 1.118277432457789, 0.2869511517878918, -1.6331134200431003, 0.18921644611783983, 1.603876632005842, 0.4776047487824332, -0.03828368683690384, -0.35994621687794875, 1.3384667277481572, 0.15824038560249956, 0.090681651455871, -0.7946362409607092, -0.3241254389376911, 0.31135803425026604, -0.8781241018480116, 0.1730114944455003, 0.41024970618887885, -0.3499024482061548, 0.6131982687738521, -0.04651508974462043, -0.4441537092226623, -0.6749094777465381, -1.269747651553929, -0.04939960234423816, 0.5618409893778789, -0.2758496905430906, 0.6936008405409879, 0.4893026928541049, 1.5361053321678813, 1.9345754546440286, 1.7519140826667436, -0.7894672902416224, 0.5690333198307537, 0.5005280604135077, -1.08258075173333, -1.2063984921298112, 0.7688615537999482, 0.24803724983222483, 2.2175613333400763, -1.376307324074036, 2.6337453727186513, 0.4362710717242549, -1.4146234003408007, -0.43805830891510333, 0.26683037211900473, 1.4879663717150633, -0.7803090676847234, 1.6461227202946196, -0.03687376470519139, 0.001609372135900125, -0.02727541936627455, 1.7318052867388432, -0.32610271273853536, 0.08133561498287141, 1.4607531673734073, -1.282355557052055, -0.04885837512032398, -0.9224949983646055, 0.5347199811167362, -1.7846397433616452, -0.5845525706627541, -0.6002105416390164, -2.0188560593209, -0.9880594498782395, -1.1956034593673266, -1.7077513550217458, -1.2000808080525334, 1.2294459868975331, 0.8392195107172914, 0.3105466646825499, 0.5454434894806468, 0.3942233214314187, 1.29850739644228, -1.2211945534291346, 0.2506125412896658, -1.835053426574941, 2.360639180764027, -1.1649614037955955, 0.6077091270215549, -0.18695610066856372, 1.97705772247416, 2.450589137277413, 0.5643926916749743, -0.7193872310333841, -1.1471371475696184, -0.5008020939456022, 0.19190220678135908, -0.5788333788829929, 0.5107186003362105, 0.899513341472528, 0.4541620751700502, -0.23947347151170148, -1.3488104221884032, -1.6416004429303175, 0.3108752424793703, -1.0654136118677864, -2.5121930204442147, 0.157104324429724, -1.4623780959666246, 1.2621769858802234, 2.160167493943998, -0.10833759186751975, -0.23447046073151556, -1.2872582426351034, -1.0784981205423856, -0.32079339903431253, 0.07955088624175213, 0.6316788865830046, -0.16362848030801394, 0.9735203588462031, -0.23621782999289448, -0.7200967381079759, 0.6329702380074871, 0.050526899879559946, -1.701409350315305, -0.7624612800941047, -0.9658457574954674, -0.5211250650586057, -0.8424323582498994, -1.4863996878134818, 0.19552672791010725, 1.0508526626235626, 0.13583379635386586, -0.030801671068574496, -1.3172453711941476, 0.14122268480031439, 0.706195011696566, 1.824455976037646, 1.0031073467419487, 0.3730988041626866, 1.291331500833281, 0.26547225593007473, 1.1931226371724317, 0.5698939411607014, 0.39917114339359255, 0.927357976391091, 1.8538728914534603, -0.6277833322387633, 0.8890128232505613, -0.7645630852569448, -0.6068399397265485, -0.5311633695861014, -0.4293318747078694, -1.5838105411455976, -0.6107804116513392, 0.09888942729669589, -0.5437032193746074, -0.2260811046077162, 0.273822197106406, -1.196751282792453, -1.2876783382150638, -0.6710006741231078, 1.3035458542972445, -0.6466912790327134, -0.7081559664248406, 0.39485576673055484, 1.8928685811612274, 0.8286249027633181, -0.39246389720156133, 0.253124279366045, 1.4945124655888355, 0.057114344591825794, -1.0679701516627513, -0.2142326817028601, 2.0546662742820487, 0.3758962860246396, -0.8473830986895173, 0.9549120795598298, 0.16922408355650329, -0.1853318154677262, 1.3270566034537579, 0.2328765147617636, -0.9226546811137606, -0.25114344934152255, -0.5691230409584245, 1.8605768632278277, 2.3220279084958118, -0.6367545845436813, 0.31172314627332093, -1.6823478757225652, 1.1065885309148775, 1.3078072174494715, -0.5092986947848342, -0.6275786272713603, 1.5200909315478623, 0.9464458982674581, 1.2656274206426315, 0.18705276614651198, -1.5636105868058003, 0.08388927948843056, -0.03267138751133455, 1.0024116943778871, 0.13471644786797568, 1.0340915488404903, -0.5793315757627681, -0.3766054133518407, -0.575272976519115, -0.4180815399380673, 0.4930558475956687, 0.4116243437412228, -1.369662736963724, 0.853402254367119, -1.2265374932602895, -1.1934935044015555, -0.04159170282858814, -0.45505806663690007, 0.5575560592088245, 0.6805408382278243, -0.45885232347649596, 0.4365155582314323, -0.38220675633740697, -1.2339003321957462, -0.5034321926661627, 1.2563921805631721, 1.0201631303228709, -0.4001868284919948, 1.5390015388790435, 0.9067735564406468, 0.9261467422542464, -0.6259272264694126, 1.2441423933930338, -3.1720770389306, 1.650361023979172, -0.49332006589775146, -0.1706899949042881, -0.19869373126669376, -1.019277327071512, 0.7434141107571792, -0.4168732767101894, -1.9068527827598307, -0.9648257524048472, 0.9021321968107169, -0.4391930103361886, -0.5356456169074706, -1.67515956981343, 0.04478116152389344, 1.6258407754994066, -0.38215620581638254, 0.18144740931717226, 0.47270643141421115, 0.8588030803084282, 0.08529504456433595, -0.2516636566481725, 0.9233290955657836, 0.2433819890299995, -1.1839070975405075, -0.024250818917603965, 1.199294360153415, 2.314829697934557, 0.4504291009728829, -0.5452431788433625, 1.6972320133082472, 0.13002478154927563, -0.26766822867071827, -0.0123727615089745, 0.36707182322676823, 0.6290005819929946, -1.2871137376879214, 1.0943787739045698, 0.21095848725597713, 1.9848464582001288, -0.8852341953051366, -1.4045446678093174, 1.1768379689761006, 0.9066806507807602, 0.7469467033968954, -0.05385118349485363, -0.099196474854069, -0.5339696358335604, 0.3325333450944267, -0.1356640931629697, 0.3162151983867736, -0.9716433216261721, 0.5799769067574759, 0.2665720547835916, 1.5847333078393706, 1.5654080252884985, -0.19084201002096618, 0.14772787124791711, 0.5699303077900891, 1.8378596655963284, 0.6358315231546874, -0.4582547864573253, -0.18125537378058978, -0.7323570904092702, -0.44220405882019154, -0.22239343192811686, 2.2155050032634525, 0.014190456005316723, 0.6945461951826806, -0.5406786355463781, 1.6322568362018448, 0.6254809225694605, 1.1486846822550003, -0.5855387782237904, -0.4793351293839223, 0.7289204176459043, -0.5939976541321381, -0.7962517120944429, 0.17874205948114677, 1.294669919006294, 1.4583524196816475, -1.7009932128172882, -0.5821846733436329, -1.2694365763828848, 0.46924474423434165, 1.063067306055737, 1.2813252757108444, -0.765738560661879, -1.386314144111791, -0.3807197883300467, 0.6087652144102614, -0.9830696553177419, 0.004271184229884496, 0.9248719118428784, -0.5587394092371015, 0.5136302653299275, -0.08326208480952359, -2.0346211014782356, 1.9470411267334455, 1.5213636787750473, -0.8447244972753968, 0.6052562841661195, -0.7472305140905016, -0.6229396955526169, -1.3775425743285172, 1.09464675620558, 0.842157084052387, 1.8055488385426177, 0.6021043576433937, -0.8841351475938243, -0.8910594371136765, 0.2678244744226849, -0.016146674838714722, -0.6517489949702494, 1.4380526018536084, -0.6054581576083218, -0.5584042551965147, 0.18356892762257548, -0.5630909432962028, 1.3937656201393596, 1.0216657692003452, 0.7514658205323078, 0.17520363571886435, -1.2603228072006998, 0.035324000827554845, -0.6147530784579432, -1.111101471297701, -0.00048291264795048775, -0.15927012036371221, 1.0695122101323886, -1.6738841072053543, 1.5863437901900013, -0.4359139593680969, 0.8035857761807771, -0.6989118737699195, 1.3181525242052852, -1.0885805684538434, 0.6778197843899931, -0.6060309074317038, -0.7256459824263608, 1.483289932012045, 0.1292876319745392, -0.16165469696353707, -0.866573713111171, -1.492038258064789, 0.07985249848163223, 0.079777026286239, 0.779211525083565, 1.1691352558887202, -1.3070174863800363, -0.7470203977358606, -0.2855056726097059, 0.9345124345672239, 0.26240609997201325, -0.7552235204495366, 0.9896781770590005, -0.2573577694681544, 0.7203687882247506, -1.4642160118826586, 0.9485468751217574, -0.7234320275249398, 1.309089408944987, -0.8923769773039386, -2.300494610981987, -1.2302112422856513, 0.3221365535804465, -1.074227824892087, -0.003247321103392, -1.425421770737473, -0.5574705137852395, 0.740048714059407, -1.1739007768685605, 0.5335626621961951, 1.3350957148187923, -2.5712965154432124, -0.6007140377355349, -1.4733895247091817, -0.2127403912401887, 0.94870894547904, 0.276398306205605, 0.6633433627322476, 1.819685285029721, 0.6937787514186596, -0.3796232735686734, 0.4319746874842423, 0.47797747403073115, 0.09185165638682012, -0.7300560381242035, 1.539317471310727, -0.4054484546168261, -0.5574903635521926, 0.6797574777659424, -0.026509031621207425, 3.1010209670147404, 0.13953963447731224, -1.4144608886571692, -1.529745455775633, 0.5301805190773992, 1.674162340993219, 1.3885452039029544, -2.2553555830285754, 0.30605600995570237, 0.207893859295624, 1.4491166809187466, -0.578877277010671, -0.6219475187089255, -0.3094464103428508, -0.15152734545335553, -0.6183362846501071, -0.9339122888802548, -0.15317279929809613, -0.3055922014168255, 0.03498136599789454, -0.13644289840610813, 1.3113421602433617, 0.5117939320116732, -0.884702316815365, 0.4591063944992299, -0.7723069362751128, -1.8661942065257717, 0.6920613918713872, -0.6132316825639821, -0.373492476987542, 0.1865968591952926, -1.454850154589307, -1.2493792029788005, 1.1940679505747909, 0.026098251262138748, -0.3056410143163698, -0.06932456921607329, -1.1058370605725305, 1.7871909628208562, 0.292545155067604, -0.822609751246887, -0.7144803344081319, -0.45869077956344384, -0.23758940195173972, 1.006525595491628, 1.7070740086191607, 0.5436836000587522, -1.7198768808040983, 1.0961236298395152, -0.17897753922176762, -0.8089056057852505, 1.2782393061439836, -0.5822274637327782, 0.45556329334858714, -2.0642949250708433, -1.1344092900297458, -1.6468590585051621, -1.1076716184712365, -0.4647929305576785, 1.8622487041940492, -1.2912145517133375, 1.0570148946225892, 0.33298640277921543, 1.9016243173125105, -1.6067115074723444, 0.544101544410264, 0.0687645687875725, -1.1208600161271047, 1.3299709514139693, 0.8972000790380553, 0.003518263108586718, -0.5197816804188276, 0.8880460390061022, 0.774074913460145, -0.5811776576916111, 1.7506646360911131, 1.0543294883494152, -0.03344292704356557, 1.4905629946155539, 0.1432351989741392, -0.2200855589311283, 0.6808994600413358, -1.8096154030502807, -1.4803840220661497, 1.5221447284141398, 0.8467868574128433, 0.43593376902777614, -0.6496674134950075, 1.2390701089657346, 0.2639509148045411, 0.5081193192903358, -0.7130469638415379, -0.7837601848316507, -0.6525309200314976, -0.9680077964204876, 0.4332203983052132, 1.310727789119013, -0.6195910621893699, -1.6566645859888347, -0.7988572473850891, 1.2796009193172047, 1.3307083154971473, -0.2097417747959604, -0.714373390202854, 0.25825935312194875, 0.11641168496728799, -0.36589629226487996, -0.6015148582301045, -0.7030046702363895, -0.656473916020489, 0.24300181818928265, 0.9641419479099702, -0.43840331530819254, -0.4388562633878538, -1.6795205967175202, 1.6910832108024159, -1.2528159269051182, -0.024310289218656356, 1.403522710393145, -0.5730751898650499, -0.1875660268635861, 1.3867890167583463, -1.8256194624669797, -0.4830641111625787, 0.12517285168908054, 0.276929852817257, -0.5979349949417798, -0.029566250927764645, -2.6221875789049394, -1.2008475162359862, 1.057539523845324, 1.3900084360395648, 0.043530579690201354, -0.7621585827071059, 0.34790529677318194, -0.18456116223474303, 0.898816225612321, -0.2566986183123857, 0.41380680697133027, -0.9468330935347397, 0.7097183216611949, -0.37737854034311813, 0.7258622516974332, 0.5770137344453994, 0.63661632886844, 1.0451974475185735, 1.1585028360155634, -0.752471315450146, 0.009497242867056246, 0.4582206586557753, -0.296000006618718, -0.7535152837542403, 0.46348376665635793, -1.157853891602588, -0.24013893511524992, 0.21656975444070645, -1.2296074234025502, 0.21102266344448406, 2.2198785390851006, -0.5815894921381433, 0.7379747499032886, 0.20933655392101105, 1.7104075995224095, -0.7757757863918586, 1.8437755481952045, -1.4793257934689683, 0.8618270400965873, 0.08694283601647224, 0.4122459792740455, 0.14778778609645127, -0.4954487816015518, 1.6805214924717728, 0.13371012872314, 0.11134533043633855, -1.500371373842152, -0.5990338462232861, 1.4279286420669695, 0.9800910569724697, 0.6150769787954458, 1.391202685535325, 0.24037372685298475, 0.6219548776209736, -0.09092599121452744, -0.17525436220414878, -0.4594052900791455, 0.5668689813441941, -0.3261143975031814, 0.1867161880328638, -0.056965736737292154, 0.9328758569216515, -0.38254010480393696, 1.1424746395459549, -0.943851756387521, -1.4072963013751192, -0.07525160249572728, -0.11578155699751942, -0.35977550979758105, 1.7147242091370205, 1.762167157151005, -0.8157548520981633, 1.0346235317317587, -0.8648879018631745, -1.5451310051021592, 0.8200950004617504, 0.03205906493693032, -0.8497023823620848, 0.7840957148108433, 2.112074615206789, -0.5101517861300424, -0.19102205193956953, 0.2607773238774486, 0.12667354605931483, -0.28883966574775644, -1.1143238615445732, 0.389239311861335, 0.24264735846998764, -1.2592450497567653, -0.7164383530651612, 0.16071541357638208, 1.16255023274805, -0.12899159797633608, 1.3991114414670733, -0.15450937816353497, -1.0462617171535213, 0.22287017485190658, 1.2570539578400528, 0.32090536723709895, 1.0812721633726612, -0.6517530361619291, -0.9774326032426544, 0.39605821879708547, -0.2504750831205542, -1.1012712009911647, 0.3140317051379933, 0.7126786399931251, 0.5935595335730135, -1.474669020112816, 0.4494815155788518, -0.9625183213605581, 0.66097177454515, 0.8508389030475568, -0.30063751607910766, 0.24803457015637034, 0.136393167108963, -0.5452727596754731, -1.256025287764254, -0.302973008622909, -0.8173792258160986, -1.4307696066902587, 0.060176764500894236, 0.05888923745410555, -0.15166468272089711, -1.6738619070189402, -0.02028888196486238, -0.8545931953334502, -0.04775782467908888, -0.24063070874653644, 0.8254785077429699, -0.14885797351835853, -1.2233861349830575, 0.33805166675360343, -0.09229450610740744, 0.035764478604359703, -0.5296057112465102, 1.742141597368942, 0.8287826858218368, 1.198641723805264, 0.3826363634697971, -0.2522370495506739, 1.26328001560203, -2.447553022047635, 0.5148559839833086, -0.6881001672251223, -0.5039219701347133, 0.768532402193565, 0.4151626584007255, -0.48179365604793684, 0.4762213580714399, -0.19310376313762848, -1.7851061522605953, -2.0763053343779796, 0.8668209498103133, 1.6221549103158424, 0.08480218989394957, 1.6457869775025857, 0.8351663435172987, 1.5850243954998178, 0.3586236312880144, 1.2287717780926046, -2.665537588575175, 1.3643569294373348, 0.1578844105630408, 0.16518616717850163, 0.47727764778626103, -1.7376223980130263, 0.1856634948079299, -1.4304712802867179, 0.41086799474322255, 0.3241450574048855, 0.5631633995943961, -0.654206126171117, -1.2987884772925156, 0.2623950079387085, 1.240729199572723, -0.5975220309673352, 1.4021795692224677, -0.9561707130684053, -1.3226485022227361, -1.5952767987335488, 0.969904620861893, -0.24940399726370993, 0.8332891548145893, 0.2475248363639355, 0.6284982562890938, -0.5134758420967683, 0.9694747719084817, -1.3637753057579705, 0.29704508351972014, 1.5021279505625091, -0.41560857468279033, -2.4158512591911525, 2.134457388682664, -0.3890464253025866, -0.13019129335419252, -2.11424298413917, -0.3302516692497354, -2.0627587467207658, -0.6623073051769962, -2.3982139505444575, 0.2069547949424048, -1.110376029064701, -1.2228460818722662, -0.8070937561152334, 0.2085613220131777, 0.5806160726313935, -0.15832679794028862, -2.8918828423933474, -0.7450754953734603, 0.14522770385184922, 0.4759435179466452, -1.3948571950278867, 0.6842776621394809, -0.07780463592997874, 2.4869418151275577, -1.158869307937449, -0.5742066768563441, 1.6343389604484932, 0.6352295003335294, -0.6030197640852716, 1.0608178903864658, 0.14457865458616137, 0.41033884787718794, 0.9488094366543861, 0.8125726606804199, 0.5566094433095874, 0.0009750067939059652, -1.6756151081729302, 0.9717603285922037, -0.13827866397979813, -0.2952306500921933, 1.9786235981357365, -1.1170193199809715, 0.1818813995542341, 0.9805849734512981, -0.11549642763636428, 0.08425388217119786, -0.3449544632707064, -0.1436568778030294, -0.5044297806426185, -1.219451895302378, 0.32236558255709286, -0.5260265985859991, -1.572677829754598, 0.30184533239171935, -0.8802342938343396, 0.6103323924139004, 0.3060423022099646, -0.081767736958947, 0.38928253537444035, 1.2211863504935132, 0.2294687933156752, 0.2962040784466435, -0.5194767628508778, -0.6529920021070118, 1.036978115656203, 0.38084520882120454, -0.5379273768690611, -1.1955348412667932, 0.27321101440525997, -0.7313302771759945, -1.6450863710569554, 0.7673150328677726, -0.3082018029493958, -0.1358898658066093, -0.8310702516462123, 1.544715492607815, 0.2614719826777482, -0.5431715477045941, -0.2358407065732325, -0.35289358060394327, 2.046540020653805, 1.2444342799822576, 1.0799225349638903, 0.6836120798734288, -0.05372368300113151, -1.215951585606142, -0.559131392665559, 1.2602582487429481, 1.5316333819272512, 1.3384774344521624, 0.19822389478326877, 0.5818817852550688, -0.26556057362148944, 0.08757403768974267, -0.4403129062875924, -1.289134246455466, -1.361083821128877, 0.9340835975734851, 0.5403098942143091, -0.5471048579826935, 0.8787577613816495, 1.878374157162931, 0.40556572270535035, 0.8506405010293431, 0.7877768406121948, 0.3580797193714367, 0.07274376561875698, 0.12138923511493323, 1.143553624167042, -1.8167327429229774, 0.29993278771837806, -1.8839146801335231, -0.23910030442993938, 0.29204482447070385, 0.7717737233282317, 0.6593412927168602, -1.5544054251175836, 0.1686955070621542, 0.9628374753172958, -0.3271233746160363, -0.8025742466447852, -1.9234970411054577, 0.7786359587886169, -0.06977426386625873, 0.3355950977432349, -0.4225019017617805, -0.16505933245532628, -1.1792833393496442, -0.5771164774917166, -0.15747277445618016, -1.2437897810834238, -1.8723355687433028, 1.072516855473206, 0.22755116227100738, 2.5774578067638334, -1.720182591251256, 0.7085023623920526, -1.2872080161752335, -1.0861306808961433, 0.304603227383723, 0.8054860443469882, -0.3308150704182304, -1.5660000801518674, 0.39148006358066323, 0.4022163202003577, 0.31234701846821655, 1.4076100938973888, 0.4047613977337534, 1.4241950076185967, -0.11616774113491204, 1.2308806660449128, 1.02587920464693, 1.2982579548227269, 0.17350667721669394, 0.5034086560390019, 0.015300955422565758, 1.2495371568219944, -0.04459536854901915, -0.13372827784062635, -1.4443468900648406, -1.421199100033403, 0.6029265546164798, 0.8739619878410461, -0.460705063162476, -1.2682104413935595, -1.518384683021085, 1.6255028138087841, -0.3909120996673568, -0.7311845110118714, 0.11191779527744632, 1.0807824838896394, -0.9355608979369974, 2.412948126842561, -1.6250739840350792, -1.4391103464659352, 0.8565039767259117, 0.4823621012311433, 1.479541344552686, 2.145065773884963, -0.3114915934286494, 0.06153704621585637, -0.7399734324030988, 0.210815979040061, -1.1020032427338122, -0.07247850519639389, 0.3871826881889626, -0.6033502950468148, 1.7041826051226905, -1.950620154795066, 1.191819944230384, 0.44871512870619884, 0.9801557120532964, 1.4668229538431805, 0.9446833559540029, -1.207644748075546, 2.035814207678926, -0.5217483603124324, -1.5185122456661173, -0.12578982803404792, -0.7674713776201311, -0.1768801883986113, -1.060727258572943, -0.1770695619173122, 0.9910593101216675, -1.3406728783791764, -0.16809609818549542, -0.8190378084767932, 0.40260252333990293, -1.1308692877784774, 0.002694138370475363, -0.6935149129682002, 1.7782572434082864, -1.4022029868218309, -0.5561458527319928, -0.20335257392953737, 2.1292647500049258, -0.1378443034161197, -1.2598807761130186, 0.68156193169539, 0.42630204480072265, 0.7397988816779674, 0.058371417440246154, -0.13104286863681436, -0.723107589649542, 0.6419722478133548, 0.27952051366089575, -0.31472081522561135, -0.04405606392934535, -0.1917001448487231, -0.25320911236868016, 0.48015932800963784, -0.7326867444187775, -1.1406347388997076, 0.7887065850054406, -1.7591355126054289, 0.3395311933659692, 1.0215898361505626, 0.6585997426426903, 0.3349484169740169, 0.9763803221564237, -1.0818603597830199, -1.0057761152000408, 0.7632914975658349, 2.3786526008149496, -1.7062015029228776, -3.3085397704703796, -0.35821908854291734, 0.9014001408613228, 2.1043166049486715, 0.5881776097219102, 0.986095953874324, -1.1947138918144222, -0.09028751338523344, -0.04916154642825912, -2.089767963621887, -0.10183496894265628, 2.5703075510314823, 0.3937320524339687, -0.8894986612594405, 1.0058068966128706, -0.18901836471960118, -1.3924776706370816, -0.3217425836439402, 0.6153557781902107, -0.36573038906639577, -0.08274172247499069, -0.8248013145835894, -0.6901865511440776, -0.5596815448868478, -1.3690388544157188, 0.7686854415975486, 0.6195589166211531, -0.16912439784294384, -0.27232078906731316, 0.37939308170119146, 0.4279215578421368, 0.8521826875025562, -1.2426544214334418, 1.1959606636076519, 0.49240302762373744, -0.6838681466909998, 1.0997419320678792, 0.6467301079718769, 1.4971608022026384, 0.44193222565155865, -0.1570787231223781, -1.3302307399442397, -0.6847449507622235, 0.9392608311111693, -0.3507212283999203, -0.873500349524035, -0.09677808656914987, 0.338470429352028, 0.8608181804302959, -1.0084613330618672, -1.4801074057756605, 0.5822848697822249, 0.13300480432190495, -0.29676596765688484, -0.13388341559806663, 0.30444729492956624, 0.21367633013736057, -0.029859680955355176, 0.5470763727316799, 0.03355866468176714, 1.7792276679376364, -1.0481150710005693, -0.010724611994038864, 1.3118565925696206, -1.5857607068271513, 0.5363542104147871, -1.8523699957460882, -1.520859217300704, 0.1814310755134059, 1.2018481484441441, -0.24025492498067602, 0.6038612950732899, -0.7053519054230896, -0.5010568113488475, 1.7677708564422572, 0.7583986128472299, 0.4463033024402469, 0.41225782129756217, -0.41443560364046117, 0.16320532586151767, -1.2829898230560943, -1.1298825997313817, -0.6134139051522036, -1.8042977598926662, -1.3370928943408, 0.3656217433278447, -0.5689065704232481, -1.2794210962365529, 0.6304008546135357, -0.5896802463976747, 0.6937918455888858, 0.30196203661232474, -0.3842142572256918, 0.15806313711289763, 0.03086342675097242, -0.11964893842677515, 0.9233854725412869, -1.796340241569569, -0.9719462408274882, 1.3606003162093023, -1.851349075856006, -1.625788438475822, 0.7233839228517664, 0.23713468329337647, -0.7868440337072479, 0.07555054869063117, -1.016903169902034, -0.9797944268676407, 1.5787084196382728, 1.7224238022148366, 1.6556572945121641, 0.557116150293565, -0.4036083312033311, 0.03897938326253651, -0.6856539705986018, -0.6821562400076663, -1.0979989464860394, 0.7597317038826661, -0.13741105716815405, -0.5129172916911208, 0.15859631908815056, -0.005374379931769543, -0.2556978937587552, 0.25993483763704883, 0.2710294371669872, 0.6853156206122426, 1.009460257932188, 0.8335679557356701, -0.6391110405760375, 0.29734629576478094, -0.6293814908317489, 0.24626233033300096, 0.15652965738932528, 1.4823887550188182, -0.8481362754283979, -0.032799664800825926, 2.135914795843383, 1.4129458006206284, -0.4647402283461909, -0.26236987881702384, -0.4635773084387205, 0.636867766495859, 2.2557899718209433, 0.7036307337537844, 0.015144541066527946, -0.9367278171945059, 0.4215371572011861, 0.6307021719775642, 0.4706111904396095, 1.706618181367977, 0.8493215154086742, 0.11464810610579655, 0.6919171959399221, -1.5942557311014074, 0.061892129134896647, 0.031362603958173065, -0.41530298518127157, 0.4496933832264801, -1.0373912284002975, 2.3786660306006415, -0.09222689162601004, -0.26812082468893067, 0.34667334531312827, 0.09201123801046761, -0.7701570790287655, -1.666343653414039, -0.3365195580152452, -0.002818961034654857, -1.239268352228906, -0.09106859314720564, -0.6546608754450908, -0.3869575035983454, 0.03799291877452119, -0.7596040201670741, 0.9348744965747429, 1.6331647546381194, -0.47566690214403723, 0.649079974859316, 0.978230244032738, -0.5328257718177754, 0.33660534988127033, -0.5650772564090975, -1.1156307001257264, 1.7560726355157166, -0.16260486840164565, 1.201433934341173, -1.5626490540868438, -2.9457870389713365, 2.6456214989097364, 0.9368489783698016, 1.1145369921738388, -0.4338520154023468, -0.8409210037971141, -1.606038081565011, 0.7229475296312862, 1.313926542057136, 0.024605151344550012, -0.2921179991024846, 0.47810461032819007, 0.8327937389626368, -0.060882713998146286, -1.4124940657016845, 2.9977424591055466, -0.07203962897888704, 0.6527938691644279, -0.3181548450928797, -0.5099768944436592, 0.15901011297907586, -0.956639489064084, -0.6323309365319323, -1.3403369510666057, 0.6341388943227771, -0.3149611712910678, 0.6480554928990994, 0.4413893905713399, 1.139101272361632, -1.4695083751957214, 0.32932223986510173, -0.9578585935134575, 0.011440153243063507, 0.10674949875293935, -0.16510909829778367, -0.22968310679828782, 0.38973212022772236, 1.768658857191544, -0.35937015293089813, 0.45622467383720405, 0.7011801031115494, 0.05400113537404009, -2.1810110890708305, -2.1069990241026373, -0.1524515181762071, 0.9434880593613577, -1.0247356296838452, 1.0029680227557434, -0.5587821958705391, 0.1148225340690497, 1.0529926384197061, 0.9192021690264113, 1.0618898568294362, -0.17356337361024823, -0.5906834167723886, 0.5903479992885572, 1.2617886783083794, -1.4845454188815461, -1.0216988650461964, 0.6845633678428816, -0.7030438602402455, 1.0819797274742136, 1.33541539731865, 0.6590157099555679, 0.18908185057530288, 0.3140396389563366, 1.5749868242861178, -0.8031350730188297, 0.1956836938145473, 0.5696359854137752, -1.6148045607903236, 0.49203687593797313, -0.2891896075285217, 0.31798442245706043, 0.5590422595377983, 0.876211816182216, -0.2505775125776961, 2.632521424557459, -0.17051888099143472, 0.8408546105448376, -0.7760787169080816, -0.20133902392208153, -0.7963773533010382, -0.3629976114867597, 0.018648991934481676, -1.2613454800547457, 1.7387959208124624, 0.07584689985850261, -0.05978599440027638, 0.851488797282061, -0.5397790128631466, 0.0020243507786462203, -0.8954032679573551, -0.5716181305108209, -0.4891495253954444, -0.08221418853614162, -1.7191390023955586, 2.033952970161222, 0.22670571430136335, -0.6103799168542977, -0.8522586787617825, -0.23885125802886759, 0.14320222328077062, -0.34764775375081486, 0.6569483373136521, 0.6214857611401441, 1.1927665535253096, -1.971359280844319, -0.31272590548072016, -0.03524025082122867, -0.8189435120607488, -0.31251401591770633, -0.23613867190846471, -0.8806637447990824, 1.1266466270804945, 0.01650030430280465, -0.29811945433609766, -1.0709630951225038, -0.29567350139306486, -0.27643121516737706, 0.6114043244788342, -0.6295089218958443, -0.7389235703521163, -0.07522631760884971, -0.26277763702614826, -0.2266028767165759, -2.2646607405841532, -1.1985552617900503, 1.718215941266302, 1.0379836828589442, 1.14819106872348, 1.5785460911840354, -0.5738044786947238, 0.7611135419519476, 0.4285352566126303, 1.3279148242705212, 0.648014954539633, -0.47081414313897413, -0.0951492243323979, -0.7959785766466939, 0.486835208390682, -1.0189391925412181, 0.9761711127033426, -0.47113344712443816, 1.6199660905036766, 0.7099778504580845, 0.4791006783560062, -1.9566095007760067, -0.5731407227889909, 0.29258301534401776, 0.037173429868670595, 0.44993341232265205, -0.3171396850380019, -0.287273045247299, -1.6487330614743287, -1.6600286575422531, -0.839667370171921, 1.3208211601412079, 1.2878431762709335, 0.04666336568017037, -0.6713853368231798, 1.3153973807635957, 1.171624120645816, 1.2431522426039998, -0.9173810088497976, 0.5071242458924891, -0.2516443630090968, -0.28439143620373347, -0.07591325369853683, 1.9771398893819312, -0.7065425623282071, 0.5590545858013933, 1.3528726017740855, -1.2772533024534074, 2.6979240053150897, -1.1553708444589705, 0.2353812733900344, -1.781919606893376, 0.6239439403171632, 1.76299257117726, 0.8855947951509838, 0.3860564964557076, -0.9384188289127943, -1.9842616951641023, 0.534267109269568, -0.4781389133105018, 0.9506175566195052, 2.2057350047233815, -2.2749590975107945, 0.266474672727209, -0.4182216567470112, 0.7618328884340324, -0.8121516292578703, -0.42460893549700685, -0.4367015666023718, -0.66607712723361, 0.24514013296681356, -0.05746127432882284, 0.6688774798925383, 0.5322702232366042, -1.068478179041805, 2.686558497061286, 0.5951789277470502, 0.4141400263019561, 0.2666215033081592, 0.3722765978788103, -0.3150346432262223, 0.0019350518304554005, 1.7388890872729414, 0.17245692201792395, -0.4065468250170794, 1.2091319931289528, -0.8617118247178072, 2.520181052360211, -1.3069082286042035, -0.4829866646500342, 0.5202592232801703, 0.040846128421259925, -1.486573733183948, -0.5072494460670308, 0.7017966012811117, 1.4573957380491076, 1.0172194208636856, 2.1395217748842876, -0.7179306015041337, 0.8418052360452435, -1.2553229468555893, 0.9774294594732013, 0.800680996848415, 0.3657307888738368, -2.6636819946604122, -0.38470745465581224, -0.2288893036397934, 0.02983931313886084, -0.5829352411090563, 1.7409157213396653, -0.5681785656639206, -0.4137625263268741, -0.9910931066092822, -0.3999938358782929, 1.39888232271949, -0.3310418957069036, -0.8044494596709112, -0.8842230717644735, 1.401038352068801, 2.126632916968572, 0.629093319302332, 0.18456602124189725, -0.630268332141134, 1.250815634400683, 0.14032460783441542, 1.509264329290131, 2.9917239064692893, -0.2154892695774576, 0.3132053266683388, -1.255937426829315, -0.3365268374307293, 0.8832009749454078, 1.5700772928886606, -0.4019816534131152, 0.2550515516058737, 0.09826938758176021, -0.7991336781425319, -0.48119498773834357, 0.8350855737453324, 0.6624667132758296, -1.3531775692173504, -0.746697665763051, -1.3754278961901005, -1.0240246468713456, 1.7561799671864484, -0.6145104770471436, 0.09545335900999873, -0.16281884570132996, 0.5720176820818046, -0.085026781256946, 0.08654494633848504, 2.018062233993486, -1.048417639022576, -3.1591933852996044, -1.3427538705954603, -0.5299454578382513, 1.454777699355684, 0.8904072678020346, 1.8006894164910685, 0.687923533411154, -0.10670561076908161, -0.023271591093035247, -1.3026158324291242, -0.9693385250224473, -0.016848073450058995, -0.3205070866136721, 0.05640861022846317, -0.5396074540021969, 0.3726555090342544, 1.2958868046434981, 0.03168351999506835, 0.8066281034106363, -0.5024795403599701, -0.7321780427916639, -0.08993453954227383, 0.19191561953797062, 0.9676735611757059, -0.32725312334722734, 0.890310289290643, 0.729884969670663, 1.1802141078775314, -2.1190171223455163, -0.24913441448008003, -0.48029117493337803, 0.5888471141473325, -0.5390435642405309, 0.3196793561789048, -0.42904898644422057, 0.27959055387813136, -1.029261261543512, -1.3318942024742557, 2.216419233380188, 0.09718477238908196, -0.6286772955723431, 0.6986711466490112, -0.07018657722847325, 0.8578703828031026, -0.20032961316739847, 0.7418715842584629, -2.9008493152713872, 1.6186748568102942, 0.8647301358958773, 0.02695772274051294, 1.5913170269469048, -1.2618187416216278, -0.11145211673571337, -1.1376653563314534, -1.6708155064583752, -1.7780217502807074, -1.0209176669354658, -0.4948625239820189, 0.581405425498521, -1.6719311487983701, -1.9372987127677121, -0.2556974308095278, -0.025715188076102714, -0.20491697473680562, -0.5272150061085917, 0.06913596626535176, 0.5027722933796637, -0.5760514197858067, -1.6592455160885402, 1.448487899327698, -0.5579709878270215, -0.07536210728045509, -0.12034048460682059, 0.14655614915923515, 1.5232961086410732, 1.3539447383763263, 0.731732143607197, 0.0995057291451916, -0.3408249425492018, -1.3609726582306536, -1.9075597774409774, -1.7796119312180374, 1.1492011479490567, -0.25607421084588006, 1.5867349917905265, 1.089849553308416, -1.036371189380631, -0.8884109204687007, 0.7990386404549649, 1.915387981959087, 0.0163419068725068, -0.03830077827898038, 0.7885212085014934, -1.781613600779572, 0.4447675540468908, 1.0752549622118766, 1.280263650648447, -0.20726560662973187, 1.2146496927298946, 0.6733081843863216, 0.289154824966292, 1.3411549144873167, -0.15917852799811438, -0.5479451949440052, 0.1663169483277506, -0.19763160201709945, -1.8232749339601357, 1.1949952651205658, 1.1349308201151291, -0.6319462089172716, 0.039142598955693594, -0.018599891057608973, 0.010787065724779039, 0.5549032378105676, 0.08413167185214249, -0.1741364248748008, 0.4228804180677024, -2.1368456885492835, -3.0640299653271086, -0.035903978588892146, 0.3836019734389255, -0.12893326846274122, -1.0441244806973258, -1.475738502084304, 0.5227974485372867, 0.9120227769632442, 1.931115225944372, -0.23387327756238097, -0.9442453397063592, 0.824058520448704, 0.5145142977562386, -0.9703006095422947, 1.4536063547858908, 0.2599879636698581, 1.240674131501126, 0.47857951608033733, -0.0350120184265784, 0.35206630514870835, 1.3128101824297809, -0.038794728846521125, 0.9759547018645311, 1.249143091312804, 0.18995170348326498, 0.18884990946157107, -0.4857393278403691, -1.8608914205658624, -1.1680251175517893, 1.2418763851505528, -0.3809527289605729, 1.6903665810555146, 0.6941134313183652, 0.012274308813637017, -0.439898179738726, 0.6975953650505448, -0.07905981833560712, 0.7399560539239174, -0.9525673775560372, -1.5666744786049074, 0.4445858922302053, -1.3954869972130832, -1.2301516613884873, 0.9503606019104311, 0.8628700625421983, 0.9543894626399987, 0.5778560221553191, 0.9964041898946351, -0.03012307173330173, -1.0224689370129665, -0.9110634117430942, 1.4476226711446472, -1.480791147520049, -0.40022968253237373, 0.5685378705979369, -0.37714147392854275, -0.6408487685712426, 0.931408818899819, 0.27544157915097833, 1.2383479150245174, -0.7006941432108947, 0.7413290371110784, -1.2730139590126437, 0.3552058988754201, 0.8762491501046248, -0.8353715674942479, -0.039598466331960076, -0.4744642514578089, 0.6138875621169599, -0.440028935470637, 0.29098597411604055, 0.30811989828385306, -0.026589191634436935, -2.2825627934540575, -0.5601754483106554, -0.7109754803304543, -1.611793348973604, 0.5284186098735312, -0.11213320554609221, -0.5362022923774807, 0.5218624743824715, -0.23010917093211336, -0.13953508145367677, -2.4409414181209144, 0.5365904758273381, -0.7843710369578376, 0.85876360586062, -0.4597834928526459, -0.16728211717737637, 0.6348982432269118, 0.05189627947154159, 0.29724735873980623, 1.1825045440428328, -0.5030831932331806, -0.10875207814563671, 0.12185750993538451, -0.9025530347477194, -0.47779754214681763, -0.7164524008301328, 0.799133162884924, -0.07183350224641046, -0.7783242518509939, -0.8869164605255786, -0.6668109778046674, -0.7754437846878471, 0.6821442250491371, 0.15082105923811448, -0.6154883344485228, 1.6859730313611885, 1.0950116158505527, -0.6857534791932957, 1.4988987416491124, 0.14062286513510658, 1.075503516478231, 0.5623718068899872, -1.266726754553772, 0.3840017309042077, -0.8812639146176904, -1.0005750126613708, 0.4318800716985067, -1.6353330812889613, -0.9414514916154294, 0.36821132097250525, 0.6166906325336343, -0.5250870404673488, 0.20253546621487603, -0.8541352625201061, -0.29218265516148323, 0.13226706115362993, -0.4919807348266171, -0.30245947011647484, -2.132221299864751, 0.8336668844439827, 1.4372527843175436, -0.39678234927126904, 0.01990926454769861, 0.46651255893672317, 0.4259081511090817, -0.7491191402771613, 0.4087795320464301, -1.1315199444385489, 0.9303455800845539, -0.5226966092964711, 0.012143626415136147, 0.6785489843360307, -0.09849646363851622, -0.11706659310647843, 0.5440024143090009, -0.7924531547055095, -0.2832640093178498, -0.5453121745225562, 1.7348731390692502, 0.06768481755775452, -0.18225632805376973, 0.9542809323214023, 0.45545719852821925, 0.42221484446726143, -0.266227544740277, 1.0744514908208855, 1.0665193882393202, -0.3138066822240808, 0.6102499147072438, 0.84649350125437, 0.11692931481182957, 1.2125600447904596, 1.1214630467389544, 1.2210095510260415, 0.48879388479991265, -0.10955279879781311, -0.18285198946218542, -0.26639691689212025, 0.10158638363152256, 0.7247619410542342, 0.1347784529355578, -1.3408997447923088, -1.0441151849675443, 0.8219745703341971, 0.41984238903548526, 1.2892782112859102, 0.07253355917954987, -1.5194195551001355, -1.3531453094853327, 1.1774771226248586, 1.4212967048855598, 2.8608888560375116, 0.760549301003083, -0.4695411517819534, -0.6014345462559839, -1.414232555251349, 0.7138759741836648, -1.0683254571785006, -0.76246604820682, -0.5446654964438264, 0.9025499898893613, 1.9048478205740065, 1.1971792666312944, 1.329741968023437, -0.5598563075620306, 0.3820042620608636, 0.18302714671076137, 0.03828072082501871, 0.480357775951532, -0.7780285367948254, 0.575959203043968, 1.0739493973971175, -0.3348256439545214, 0.3906355082250093, -0.6548529766396257, -0.09446177922612592, -1.7133920051770508, -0.707625606805171, -1.3372053323474056, -2.021396481232433, 0.2086270706169402, -0.12448169287881765, 0.39237067277917687, -0.2367166738673968, 0.9531927605562496, -1.28715759183692, 0.09614162287863562, -0.02256510059036034, -1.3741204680296455, 0.10939685438193698, -0.7412607338599256, -1.2435378893488618, -0.21484510026812426, -0.0011068098143477139, 1.8029218960540958, 2.6146069912457106, 0.02126371152999164, 1.6799810929451984, 1.0280405547140241, 1.8132387811272421, -0.6605180049148761, -0.7616712023180584, -0.12340255054790979, -0.11786542836220244, 0.11602985378799822, -0.5229724557653207, -0.07906237321453324, -0.15628373140569543, -0.7937019617833174, -0.23538918876585838, 0.01921931128131251, -0.2294366213573791, -1.4530434712146354, -0.2532246860356259, -0.2061482838491822, 1.1110457221076437, -0.2951588644868905, 0.8459733650453909, 1.3001540959021598, -0.5351754208582477, 0.30327343346077945, -1.1627707014128155, 0.22501735986614718, -0.39379954279251445, 2.181050332579768, 0.18309285517150334, 0.8909801285187885, 0.4047592079570857, -0.598271451895599, 0.6266773005456675, -0.018472240283144405, 0.4139335590517103, 1.5083404333076535, -0.8585233191058358, 0.6372498743389946, -0.06911552208786911, -1.0412605269242776, 0.13567963251670617, 0.9395478470218052, -0.8630155806948537, -0.26128273832910537, -0.21318722888850603, -0.30862384739302995, 1.5344594867463863, -2.2434434149769262, 0.21414104803927173, -0.5025898944555208, -0.29363759041558407, 1.2363033837511088, 1.3546335577189186, -1.0567440371505248, -0.02576825107031138, 0.4773455351075291, -1.2087587360177547, -0.20328069682324987, -1.095095446988869, 1.1452388670652756, 0.6214804491662543, 0.4490645558968941, 0.28451183594938656, 1.5048512224726778, -1.387198601440889, 0.7596076269253699, -2.637767940796516, -0.5752335092271539, -0.09552288947291825, 0.8699586079837001, -0.08675552807073184, 1.2324352341304798, 0.6872776185543816, 1.5898823670164306, -0.4004576414076361, 0.06392247178956266, 0.29310911319411387, 0.23529392013803196, 0.7729209633792355, -0.831160017802148, -0.6905109993681701, -1.7382092972258674, -0.6467299306999049, -2.4452918146676677, -0.7629342923221444, -0.3030574328352306, 0.48905256804592584, 1.254807749741889, 2.119352455981416, -1.7915498220041624, 0.18411074493705945, 0.43461462360105363, -0.5908785823211963, 0.8073144968726518, -0.4685818747642373, -0.5639410992711891, 1.4492055951933278, 1.4856282132037386, 0.7070763768210634, -0.0971443006199541, -0.6818148769015366, 0.27364250882994606, -0.49271479692193215, 0.8683414140021203, 1.9314599695400578, 1.1409576698106658, -0.46106635037318583, -1.5962895765507914, -1.2626626399385432, 0.18958332783692128, 0.3095019454109149, -1.6165211063178935, 0.3923419397390747, -0.053746583450784834, -1.3907161698985178, 0.7755913400069764, 2.663747285043697, -1.820003648600963, 2.0618348060894363, -0.07623626442891757, 0.42777939394193143, 0.7054028150934772, 0.8427237954551774, 0.8874294504060609, -0.18576775150157054, -0.13825431759060905, -0.8532643401328346, 1.5122521660014012, 0.580757448291213, -0.9709522249923782, -2.3466110362049735, -0.6989452445759248, -0.8827440719947769, 1.002683134089396, -1.2311995205223114, 0.14787432342205303, 0.1914351008798101, -0.7142300546692113, 1.4791691105343592, -0.39275842769841324, -1.1604812306836094, -0.24789210878065113, -0.9181436115875543, 1.0468877029318764, -1.3347934471640186, -2.239226825013231, -0.18672933593835842, 1.6317658459842372, 1.0258313653188023, -2.2392860573672104, -0.29920150555277814, -0.2956167610737463, -0.48649147676617893, -0.8280815419300673, 0.07856312096115882, 1.3323569395664239, 0.1279625522229895, -2.7072399139494574, -0.13269473922203265, -0.9894644702755878, 0.011044094223794985, 0.7090103125324007, 0.0059443312286764595, 0.1995618478612059, -0.3756730669760496, -0.4677994252328928, -0.7672165896727065, 1.0105761599103829, -0.15015963582928707, 0.9714723670718385, -0.5370047955244572, -0.43533072662470873, 0.540609365307292, 0.15538791257742895, 1.0430144037243376, 2.4382299359179496, -2.343725231605679, -0.6047978963434307, -0.4794721322469128, 1.1905748251197639, 0.32774670595230365, -0.10466867749663603, 1.2061654589355895, 1.112708938267284, -1.0774472291323498, -0.38266598972190285, 0.918737701579036, -0.336009160583606, 1.06966307234743, 1.10603741839511, 0.4247495141402371, 0.6780357720114532, 0.1421982367707117, -0.026463458213570847, -0.10808134442468965, 1.069442907322781, -0.09317389285378529, 0.01777271930800786, 1.5550362110429388, -1.3940857547596945, -1.198345269417261, -1.8793835848373108, 0.5148398977181166, 1.0162506493416466, 0.41300861103754655, -2.0764958916817347, 1.577800888042418, 0.6229173931676034, -0.38500155230587163, -2.7157276096105103, -0.7678724857510411, -1.0362799026240044, -0.5786161709928384, 0.17266252696629786, -0.8657396454428944, -0.29954018557306417, 1.5339356789227723, 0.43662005800027465, -2.1986423932950463, -0.20840330392093556, -0.4916298228380113, -0.050682035668749056, 0.8726317673639067, -1.1193512405567225, -0.9384431040305544, 2.3029051954514514, -0.17547128030662884, -0.8310827585718586, -1.4554182028698428, 0.9980578553897523, 0.35203652803640895, -0.2595832858708699, 0.5157811014419093, -0.905322232299663, -0.5085902285478984, 0.0061415232292196436, 1.6670087658399833, 0.3644275082694833, -0.3239058687041506, -1.1842230302602026, 0.868460621494792, 1.6010639022969246, 0.24470187353181272, 0.6931947655340768, -0.983740817039316, -0.14065017327110788, 1.325525601513814, -1.2192741205805817, 0.8027052874405675, -0.6339043175628791, 0.5370447987191823, 0.9452827163883243, 1.1737197532841939, 1.5828487867728673, -1.952508674914249, 0.7814198944750369, 0.8353830952899175, 0.008868272467122258, -0.6579283268623705, 1.228866166124053, -0.425678233134442, -1.1392261813272593, 0.8036908165536294, -1.6577405059585362, -1.1723194042095526, 0.7218140675981252, 0.9847668558161677, -0.9127120075471687, 0.6026072052902565, 1.294768107518862, -0.3209215446334671, 1.4864006461846482, 1.056991038539095, 0.027669701878195584, -0.3821693094340271, 0.059570599917274175, 1.353922386263903, 0.04024607250740449, 0.5152534473315203, 0.15059734057866328, 0.600807701242804, -0.45857660750886375, -1.9167621189860757, 0.2916859178901242, 0.699918399535655, -0.7185775650360847, 1.0341168043640756, -1.2457971732370565, -0.4216413665598742, -0.5975375046523873, -1.4137970545017657, -0.9821875302291659, -0.25304421289004636, -0.9439833162680911, -0.22885557174147195, 0.5253077208425344, -0.0370856900477043, 0.43733594833463585, -1.753410715028101, 0.9121621070263789, -1.078077163836882, -0.3950275589612128, -0.4269646673453387, 0.0019035181846439565, 0.25341692179741804, -0.41574210048502286, 0.1530324943758331, -0.7199937906619508, -0.8351004361509335, 0.3559180334723299, -0.24590238880214493, -1.5368462393911722, 1.4100963423584154, 0.30864445749582065, 0.18941378645535087, -0.37907889192607913, 0.6806582065862274, -0.3635968833988479, 0.3847753621287319, 2.1808939440400685, -0.11728085782685163, 0.5422891208702533, 2.3822223153026028, -0.9027598286635051, -0.19291329738389806, -0.6148415042678207, -0.031742719261806676, -0.2906960884573809, -1.1355888544025994, 0.25980641205996874, -1.3457453432866513, 0.6291569228285785, 0.7720977630563934, 0.4164927117471356, 0.1532529062142469, -1.946597727404642, 0.6663766787868095, 0.9084799768762085, -0.476538139124887, 1.7896894293952121, -0.06775063803594024, -0.6442396381974898, -1.0422634039871808, -0.9313913097742685, -0.03865915810556337, -1.557130900020639, -1.0390611286860902, 1.1535560608169777, -0.5907401913142819, 2.05177561408202, 0.4579196222272579, 0.8545790624172973, -0.7542031290261286, -1.0279754024342014, 0.3001153119945116, -1.3598927398497684, -0.1617003467292587, 1.294434872646139, -2.3026109090250295, -0.6624236493807586, -0.4059793732631249, -0.004380901443260928, -2.0558759845925016, -0.1705135096741563, -0.4993796550420324, -0.9029643433152659, 0.47090780836558327, 0.13667314704227645, 0.9395342672141623, 1.1931179952115898, 0.14611704489244048, -1.1704337712580186, 1.7031235740718385, 0.9419144559723824, 0.20379692741077748, 0.845348112475404, -0.40721792802863704, 0.25151439364320255, 2.3068940544641348, 1.331118054423376, 0.30482728408993404, -0.7691426427475136, 1.3415670250059784, -0.5442388815159603, -2.2285288776389236, 0.5863179709876848, 1.6259721004675742, 0.09887817624651118, 0.7353777095877224, -1.0527600890567912, -0.7016744472193552, 0.4833227147817869, -0.22764495528947035, 1.199793078266304, 0.25579399134614855, -0.6010812293974581, -0.7041801039959924, -0.2429524032361627, -1.3995536688845225, 1.6283368278664556, -0.8892275321224652, 1.0590059025428868, -1.2018535762236209, -1.0793044565355727, 2.8132150934729014, -1.0901318558800468, 0.3210121609192197, 0.08125205839714655, 0.4856240544790158, -0.05565231656932594, -0.3388922939681528, -0.2083697082131279, 2.4780170405677544, 0.27376713979458095, -2.7259995920485736, 1.2786313501961377, 2.443431484855086, -0.7251402010798186, 0.14426094304820541, -0.13977567732987656, -0.061773348408805794, -0.41955564688287267, 0.5673451437227928, -0.041486664315503234, 0.32541798497787977, -0.6407830652257007, -1.9343256914250448, -1.7158356926580325, -1.2651325930305966, 1.175690605237783, 0.42856223230231766, 0.7779599263948562, 0.5339470602902481, 1.366792324442254, -1.3101621146939826, -2.051287649695329, -0.7437762065832813, 0.27200242902411337, -1.427285407655476, 0.05878560041198071, -0.8123730006020502, 0.1107013277692792, -0.7363519586483193, -0.2152440704461132, -0.11456648834663148, 0.7629686031296924, 0.744182124746481, -0.8075750151328644, -0.8331186688340957, -0.2550384288709119, -0.6884761887477233, -0.6852650867702339, -0.6434542472857335, -0.14874282370482333, 0.4512768049151799, 1.263751710441649, 0.49036628844129015, -0.6556355397015943, -0.33143463563978176, 1.4807618517999412, -1.1373426779797378, -1.353082923031231, -2.0947308021494466, -0.8508903807291222, -0.22191945383592931, 0.3418191158498985, 0.8047784257928465, -0.04046167357144349, 2.1310275753213785, -0.23880257144756237, 1.8372925411728893, 0.46288573107454617, -1.2186085772639874, -0.07521819071598601, 0.6602086533364796, -0.08294584700080222, 0.42192179124385765, -0.19027032174028405, -0.4516831311263318, -1.1689872593836321, -0.8565007419030419, -1.2782204783009519, -1.1896925642920813, -1.1875415175633963, -0.7178416699679807, 1.734831055766497, -1.3707822354069905, 0.7995490816022964, -0.7599325984625409, -1.023243542933034, -2.2615016343428516, 0.5621914055350838, 1.3787144403921774, -0.7158020121898139, 0.002196343394332209, 1.0099546383625344, 0.48366918705287065, -0.45635556825577245, -0.06097037641663266, 0.34535859567211913, 0.33872145442346097, 0.84945257465414, -0.039474293179531265, 1.1067463405336349, 1.7422176294590381, -0.2517672795558958, 0.6662488786775109, -0.5268738930955443, 0.2904030018582156, 1.4966274295436122, 0.7223118042408536, 0.8290866556047017, -0.8675617380304211, 3.275628911617537, -0.2574520795446507, -1.4182227381975525, 1.0954848192049425, 1.1465136858800347, -0.5649289671642628, 0.7080160361472667, 0.8837950228307087, -2.130759803420062, 0.11937255065882085, -1.1687695658510784, 0.17858500859165563, 0.47644591075052634, 1.2250849894812836, -1.2492350925589297, 1.110702623866736, -0.7721616672863162, -1.4667874948502497, 0.16461068464856085, 0.34071003474989786, 0.321227306988385, 0.7939881233823486, -1.1289429181290087, 0.401154655262247, -0.6760147167589846, 1.5012187863366069, -0.4443990003386384, -0.3352425096948968, -1.1361549560809423, -0.4409712292289615, 1.0760461636434946, -0.8184205435683575, 1.5816207656383483, 0.6169573832345195, 0.9915391453804984, 1.3565115077944625, -0.9971128962691219, -1.8902722436370112, -0.5189275180556975, -0.842153733294299, -0.1285795018660222, -0.3568618910110174, 0.7566771372385638, 0.6814075389855158, -0.8925625928103743, -0.31451559988956534, 1.007138622609824, -0.6899228580570698, 0.26456310075717226, -0.9888203590905775, -1.1928250217316703, -0.5291850204756822, 1.1937840534789557, -0.4174711909248478, 1.872925022991249, 0.3708306620378748, 0.01726423653596054, 0.127769468098773, -0.9088704386388397, -0.7992174924300648, 0.48170140511766185, 0.0300755984354873, 0.49417759149041435, 1.0701214207277558, -1.0273215431048566, -1.877865315650033, 0.09965494521650148, -0.347906418726226, 0.5737780295623885, 0.08346027981662993, -0.8273390134446911, -0.12583876598566401, -1.170161929447017, -0.6846592110900616, -0.682166787654303, -1.5457607224134136, -0.1458771721663274, -0.225614968810926, 0.4739792292707944, -0.17612660291165264, -1.0172339766700256, -0.3695911377343843, -0.21052733869214355, -0.8909862496857747, -1.3393307614527714, -0.6194321725343708, -1.9001134308973793, -0.29505877823608717, 0.1960862345646627, -2.424912008484371, 0.5813804175507851, -0.9447007948618501, -0.9786733845857024, 0.2842153989866914, -0.21936788203335564, 0.14246105713892063, -0.20886033139255877, 0.6333454197124547, -0.06121717775508627, 0.08337656097829618, -0.7068411311566564, 0.750652480404651, 0.22096038335589574, 1.1293401451839231, -0.749467803202189, -0.42919395971207364, 0.3030103845185907, -1.6851577727443354, -0.4581329904708902, -0.0773503678762579, -1.1296766346568974, -0.30078934173603283, 0.26190668602800704, 0.3566192877699278, -1.1828244712936575, -1.839578923312329, -0.8820930485690954, 0.5318644316308895, 0.3439428162022397, 0.4736905533720844, -1.276034090947795, 0.12373374235037009, -0.07623711763428394, 0.7028821337757372, -0.3076051886480848, 0.010087164363753936, 0.07839644675233291, -0.3505337182374187, -0.18798938093604203, -0.6218537192118231, 0.3461776689615843, -0.6649066909344561, 1.7485529364948422, -1.6296929336773227, -0.5827059740674826, 1.7006519455859068, -0.05472442851642449, -0.2904656352775225, -0.6050860071406361, 1.0471999100115676, -1.8360453561977852, 0.5867052687547298, 0.657143202531205, 0.25651249058299863, -0.13155331304504042, 0.6113825818408409, -0.3331345076711262, -0.36431661221026695, 0.7345690676811351, 0.719605617409196, 1.6143819525778993, -1.644141829725272, 0.5960506055247912, -0.10732400516413244, -1.0399014381889424, -0.37857900466509403, 1.6949696503380978, 0.612587019210684, 3.1598985967956414, -0.7442391417196665, 0.7177774753556081, -0.7460905883222214, -2.2095312502663496, 0.06895317432269273, -1.7707952399187072, 0.22568311203349234, 0.6872722271949255, -0.10906429063278628, 1.3099762400827515, 1.0168714821808258, -1.216068222992701, 0.7593220286608138, 0.38099685842628284, -0.3767928824936479, -1.068482507223505, -0.4166971491624389, -1.2731995899807376, 0.7878930936424263, -0.784635127962103, -1.2131903068289336, 2.154284242121385, -0.44330245598625967, 0.8705463228449446, 0.3719245851584468, 2.208471926747169, -0.9849268611367423, -0.42157907021186963, -1.2145620927485643, -0.7672908128700786, 0.99456360433865, 1.9056257690951781, 0.044293579998129266, 1.2939022879397017, 0.3994222876220866, 0.19986582690015559, -1.251038219555171, -0.452643532360118, -2.1641659988547968, -0.0068804200210502466, -0.41578679070628166, 0.4736090769223564, 0.1403798718376519, 2.011193341808825, 1.7513475294373229, 0.0660127696716418, -0.096662072939807, -0.20663227457962977, -1.4414742262080276, 0.3341270776659842, -0.15405731254992036, -1.0660150595686104, -0.8057561883695286, -0.8284845037999267, -0.16602329238487035, -0.14768512752974217, 0.44761448130586945, 0.2525566120967738, 0.2215995813027099, 0.21042387143222052, 0.7323280274456176, 0.4274546355382238, -2.7259384298784646, 0.01747260315686777, -2.5607721140694295, -1.0782405546241607, 0.7132355895606173, -1.2357963229900535, -0.16901595951745269, 1.2440453819264046, 0.37846411866653457, 0.08787243937875534, 1.0668854405856623, 0.6388194367088871, -0.12330881399852012, -1.6616368390857943, -0.25404919804275006, -0.3702914870285885, -0.2697139991477531, -0.058677092639891675, 1.6026536704556607, 1.0002996798484705, -0.7858882838239074, -1.1618613112652543, 0.3122944567890163, -0.6892257730023711, -0.49910445902975187, -0.03826885659146768, -1.7408015207154455, 0.8010035535183075, -0.20523974737696224, 0.5364519150547226, -0.7170116648437213, -0.8785578132787294, 0.524685612498491, 0.2722581209030346, 1.5369250593248291, 0.6815636730002325, 0.9229841212520318, 0.2749803568411994, -1.1596604275297404, -0.4522040997199018, -0.5198410672385654, -0.38542095859574843, -2.7289329080928586, 0.6956269724175786, -1.0863283157021297, 1.8333138032814238, 0.05679814705788765, 1.1479060331739057, 0.5819416375823169, 1.526408592127824, 1.4042490907664873, 0.4120569376592371, 0.18156974678109924, -2.812588447940928, 0.20282556651527978, 0.31832301223383525, -0.10536770226641351, -0.25375798493190127, -1.412418203469723, 0.8584526983539923, 0.2882787765785819, -0.675317314653919, 1.1603829914895267, 2.235583956916833, 0.8860508924153792, 0.1754900050742973, -0.5608536725996812, -0.022046937621544974, 0.6499075572836465, -0.25163350922044275, -0.9699227477493237, 0.5634177765001509, 1.3798630162692205, -2.293049936633997, -0.20884025851793508, 0.10681632933455311, -1.7618112508066988, -0.7036934549283079, -1.858766439646859, -0.09455269978340165, -0.7355286300152735, 0.38607106267619357, 0.5909499617684528, -0.6137514821405361, 1.611415499658203, 1.355842309473941, 0.38585124345560906, -1.8889088571812311, -0.5171306133349513, 1.954815886385793, 0.45337715343125634, 0.9612379289083163, 0.5213447041765067, -0.8349421270428573, -0.8494399103301353, -0.4512009281583937, 0.35101351403110437, 1.5360777143160589, -0.9335468771563334, 0.36850510269509423, 0.4032992093684249, 0.18127078174847353, -0.0801791116308658, 1.4725371773872131, 0.4370197754433601, -1.363884773464019, 0.6910262896959191, 1.4585763068449435, 1.2797908385232797, 2.223624700636483, -0.493211927479912, 0.07168607512482146, 1.8948249548407188, -1.1051095373021445, -0.6264497582066454, 1.2096686138491832, -0.26149999145455605, -0.19459954238101448, -0.09777462917750487, 0.34313305108390246, 0.6142353328230562, -0.9724018428771124, -0.8877708416971021, 0.33066005495527173, -1.0585037997162277, -0.7576213460714273, 0.7260963539372507, 0.6582169291625719, -0.9488126393498428, 1.5585969286688144, -0.7398489746717853, -0.24531541136755197, 0.3572154127857517, 0.11420818931469762, -0.10474310421634585, 0.10855261980981804, -0.851993112599358, 0.5879036589069266, 0.5398648858372326, -1.110871153721248, -0.5616271581231344, -0.18517751212468597, 1.9884982981548824, 0.4390571962527613, -0.44192217884796164, 0.2765676490322849, -0.6315133320955347, -0.5473045529699415, -0.9518025564984147, 0.1607599634565622, 0.9501936680675578, -0.71579000048257, 1.0210347115299405, -0.6759720242951274, -0.41512220937376354, -0.25011628034717165, 0.32068188598033137, -1.0723148039446395, -0.4196030332995071, 0.4544291728569824, 0.37959832544013605, -0.18244076146937235, -0.3587116798740727, 0.7004886915154619, -0.5219273193299955, -0.09959099089938421, 0.15380613242479146, -0.760011044439188, -0.5390066925365419, -1.169023794862899, 0.8406274534155119, 0.617682840266211, -0.9597320731716983, 0.6207101477863306, -0.8758819806068324, -0.19287808849883228, -0.05545794193602252, 0.2780114430928688, -0.8290748897085057, 0.19367063256902897, -0.7097891528927961, -0.6598441564272192, 1.2753335033383124, -0.2790896609523001, 0.5695653624571737, 0.821392600557273, 0.6018934520335212, -0.4306591429384354, -0.9219222294329521, 1.1279786626914774, -0.12347382610042618, 0.8351751618846528, 1.1303477549227743, 0.4470299678844758, -0.2653868920604723, 0.6199758803285232, 1.3740720545529947, 0.38467910450418247, -0.15318748502395563, -0.22759993136485746, 0.36500776247947364, 1.3439424861329934, -0.7850914065403349, -0.572362174660522, 0.8679341820174798, -0.05670998952201617, -0.23180626457764092, 1.7948688283436935, 0.05534445688275571, 0.5027115124188468, 1.2204358389306302, 1.6661305989346455, 1.203795775928792, 0.34455796010074535, 1.2966846422001796, -1.8107336840957604, -0.7510185565878553, 0.6750868899786688, -0.18484530088331108, -1.2549346845988993, -0.18128350267162263, -0.9945817724414555, -0.3276226631205051, -0.08800491777426575, -0.7111405971450157, -0.6393497058442357, -0.3646791016608585, -0.27726215276948596, -0.1250159911473024, -1.290298175917332, -0.2735440631639648, -1.5275285782146661, 0.4259187810681487, -0.1312871843000786, -2.625441030421858, -2.039556521995014, -1.548376372636736, 0.2763255714242145, 0.20017505477305447, -0.49144545724366956, 0.6902197226167262, -1.0273967420467671, -0.5409919742957049, 0.548528244936927, -0.41601253986953207, 0.4678106953898199, -1.0080985330454644, -1.179722819911917, -2.1406250353611047, 1.5115331425365863, 0.42940659785694707, 1.3946750226550702, -0.4037861067718697, 1.451232142041133, 0.575819127174953, -1.552205579204893, -0.11250785702464809, -1.2944702726691715, 1.7199457349538914, 0.3896077887400869, 0.558147312658406, 0.9324025764359787, -1.0605092884530216, -1.218405890714159, 0.07431866329742792, -0.4314442666981064, 0.3610131271872821, -0.37613128863408646, -0.31221808123248396, 0.06539717606023329, 0.738450790916472, -2.25153986014696, -0.4954974233042666, -0.19919629403196554, 0.1843716260003425, 2.1423135949688206, 0.1888101634184561, -0.867685538170353, -0.13993761643047908, -0.8323486143335554, -1.798770583538516, 0.6128544223187311, 0.7929763546149038, 1.1280220041249172, -1.4197271533729436, 1.5773075206127012, 0.16276723144004554, 0.45395531986068266, 0.29429542738548725, -0.16071921062963596, -0.4639609082251861, -0.5465723264373441, -1.2087651443506062, 1.1161741981904334, 1.557715076193544, 0.7471446058546984, 0.7687307324700299, -1.3801790105593597, -1.2594260213432984, 1.363977923407046, -0.32421608215910663, 0.5462439304679486, 0.46420404362613565, -0.6599023956100495, -0.016647618821497574, 1.2114807215723153, -0.006736748766513809, -0.056106495183745664, 0.4368976210168857, 0.9032893770620147, 0.9596717148749542, 0.4661949480139949, 0.6496189235631632, -0.6831463131444003, 1.3557469750896276, -0.5613564572953224, 0.7204316541703368, -0.2545882533972174, -1.0173794233551994, -0.6827941712930726, 1.7525468736463146, -0.672425668849731, -1.5017289742114186, 1.0851410626801679, 0.6473983468170671, -0.7748131147123581, -0.7831596349550948, 1.138891831496701, -1.4143051800365811, 1.1034289425211186, 0.26796321186840966, 1.9787214274429157, -0.12342267089108878, -0.3891169248273196, 0.3493581562398234, -2.6818983109614845, -0.033497204350880744, -0.5253377008288362, 1.1392147101659837, 2.2847946742891896, 0.26048023512083834, -1.1237465349657552, -0.49667233577259234, 0.643235794113051, -0.7431186641480616, -0.7895223358276617, -0.37788256475585125, 0.7489541307185001, 0.07129240042336583, 0.4931241944890444, -1.2330099156845615, 1.0922001674701527, -0.9705058868908338, 0.015810087338398608, -0.43728470170283423, -0.6153012066132016, -1.2176363236981071, -0.9059850033079331, -0.4222290743309429, -0.021641336435415107, 0.35579196342510716, 0.309942752666857, -0.34024750459140934, -1.5637838971157658, 0.05927047886103852, 0.5074480950203519, -0.26581507295028056, -0.9486718808568789, -0.19862563946397993, 2.092773029800442, -1.2651566237487972, 1.3791660960159093, 0.6986269824319925, 0.9794097322142646, -0.2893343421526381, 0.6292877316373109, -0.6748853884031518, -0.2814650773233726, -0.1409015321526226, -0.45068258672474454, 0.4937029625544748, -0.1326602830858077, 0.9576720797514974, 1.0621514700363692, -2.6165705142323863, -0.5966083130942015, 0.23343739955353257, 0.6012455403112706, -0.16113710730203962, 2.494623756994715, -0.5660006891908783, 1.666429474750854, -0.43255625249344987, -0.26374957654087056, -1.9926741083465362, -0.4644561876834272, 1.5086724996537448, 0.8567472104662572, -0.39156650697341694, 0.21401728966820002, -0.7322831512558994, 1.4034517242172304, -0.8162707263850452, -0.281283033489545, -1.3587288227788221, -0.39820664169062525, -2.1842538105056706, 0.7126494502184915, -0.25262343433240275, 1.3507238982080303, -0.032990768118147926, 0.5227858578898087, 0.4507418519660013, 0.004427138699666893, 0.26728479736104344, -1.2829969685228904, -0.15114266884491914, -0.2638496143352843, 0.05026208827126223, -0.4377867962477693, 0.2596095651789888, -0.12939699404743665, -0.8550311101635497, 0.48424583281379985, 1.121257393243892, 0.9535211025505229, -0.7172494371296546, 0.6379181436538693, -0.9992726389787236, -0.5069778063553755, -0.2713892452487017, -0.6106366639906198, 0.6002527203402503, -0.12541309710225498, 0.27886998031575005, 0.2409290432499232, -0.5519540842401621, 0.3744264966431667, -0.4829987667212183, -1.9295592353526851, 0.25835252827664823, 0.7599324925214401, 1.3028511633849356, 1.5130621051714033, -0.9303779221086632, -0.7991441083137889, 0.24677238765377796, 0.4695888857252792, -0.8701492238464078, -0.40342363019317984, -1.8590334702282363, 0.3539218025653089, -1.0276129327149335, 0.3201344280401008, -1.6084246869409553, -0.7311918399050602, -0.6334828280011853, -1.296587666175815, 1.0501456995148597, -0.307984320493804, -1.4286792312723118, -0.3992103182686908, 0.024841362136485173, -0.48599171803963365, 0.5313630499360249, 0.5883002854713517, -0.8589784917966199, 1.663974758386669, 1.0114653833954912, 0.4035798947301487, 0.922903025992393, -1.5690454816826789, 0.6491673783688512, -0.07796075592877115, 0.265836865890819, -0.2472347226977709, 1.5462680497029377, 1.079319299813074, 0.33872907916365325, -1.583689498809005, 0.8719797355654494, 0.1089073066138824, -0.23992429121019174, 0.7785397741911481, -0.01601078509813848, -0.05569229778279595, 0.9515170979212877, -1.6306072175059203, 0.5914962924670666, -0.8537265912954485, 0.19729961617081185, -0.3411607705965838, 1.0831511409697796, 0.8862972368969159, 1.3677665703658513, -1.1353548527240764, -1.3088971045787434, 0.20850126612960596, -0.862360697459086, 0.1943137453656126, 0.007958191294507108, -0.3515012947780949, -0.061460401880518316, 0.45255585800806986, 3.301255639001435, -1.7925667655881874, -0.6562753800526446, 1.4923517565151678, 0.5594637296747177, 0.4481276433120399, -0.5831601053912837, 1.0277647068119464, 0.33781961420275514, -0.4906389861178525, -0.08901183392894745, -1.2251993953696632, -0.7835478226695776, -2.0620925144646085, -1.071082303006672, -0.12323647959404624, 1.1411621799617406, 0.9049172416608249, -3.3570779914067677, -1.089023205381987, 0.5857139984736829, 0.24130056891256102, 0.35759369271878966, -0.8626075893914232, -0.6381721566556227, -1.631788318903062, 0.11295006146663764, 1.227596743592517, -0.1894472612027351, -2.1510778367068695, 1.532527871548182, 0.8274521270749973, -1.0537052370240285, -0.5123414427804014, 1.778915105169452, 2.002152794861123, -0.15436388042781995, -0.6432265013083269, -0.15339633382457893, 1.1015443972402161, 0.5741065829076931, 1.2093984768413015, 1.007223255782661, -1.0846717923269256, 1.0920506038465994, 0.33973789934903265, -1.864322046480295, 0.9418732536830617, -0.05378075624649622, 1.8261516672420486, -1.2975076569840764, -0.691102747832079, -1.7543784234043043, 0.5182911624305734, -1.6256621943116207, -0.6132415459368057, 0.5885281769653035, 1.0908713860481338, -0.0908748092707891, -1.2727282599608576, -0.3341783957414949, -0.8795575366315449, 0.9546540523421901, -0.10676375224312515, -0.15700949189101365, -1.2632226350774387, 2.45555455808037, -0.37575877259693724, 0.06968333647249852, -0.17240738783720908, -1.0248354359387315, -0.26445930523906713, -0.9497978191923996, -0.12186122216167651, 0.44530016673809564, -0.15643218733930367, -0.5200259515771722, -0.38017947577673883, 0.07516223195475612, 0.1615506302309935, 0.8986835657614003, -0.553798310278763, -0.4377988822473211, -1.3255918998924603, 1.8196628382849167, 0.32107788208867605, 0.287870307869259, 0.5463312393683635, -0.5196732145647612, -0.7405864111633282, -0.5432887664847497, -1.1228657946508807, 1.3086027771847264, 1.5811807089358723, 0.27945340002233915, 0.21911448457882887, 1.718729918560231, 0.3935889634141561, 0.7464189282669541, 1.5494676404109478, 0.6290352254947482, 1.4637845863179115, -0.781293657693559, -0.47078620670580074, 0.8423408614792156, -1.2509333220471917, 0.36577816724555495, -0.36472377751688184, 0.38491879727468353, -0.2730631669571027, 0.1797827744642902, 1.07865096753406, -0.9209460916819455, 0.5893720015325934, -1.3509238975703852, -2.4646568263892235, 0.47818831138204704, -0.2194359871802387, 0.4690979463547241, -1.5936995275824088, 1.9555006778323014, 0.6663850689148024, 0.363690726672914, 0.40949706784844864, 1.0402821478656377, 0.22380206674191028, -0.05691584295047477, -0.4275853738167116, 1.3713671234315425, 2.1566288771101996, 0.051955994138013044, -0.08750580662854719, 0.8990821847636988, -0.34081878610341193, -1.2768583974145717, -0.333571824299655, -1.3579109712869126, 1.1767614696886293, 0.5480167345047987, -1.6878733523976004, 0.7339419003658694, 0.5822041821020901, -1.8752608461129325, -0.48824212409310114, 0.127531510929811, 0.6969076422988165, -0.3707799485403182, -0.13866349119601523, 1.53357381908753, 0.860860386322516, -0.6481055800573203, 0.7930938376365337, -0.185019802954068, 0.32151192411979895, 0.29313272866901996, 0.9961342647112895, 0.5549504513722804, -0.4372851447046673, -0.533800212462023, -0.525449398066415, -0.7628861868923856, -1.0084040189612105, -1.122802321046541, 0.1297480958545119, -1.1904498174395293, -0.05653128063839271, -0.36416466850513285, -0.14607045476900637, -0.37700137545572887, 0.26247606668606654, -1.0545334952467211, 1.2526362739794823, 0.5921010325274597, 0.2992871006125638, 0.9846692466180879, -0.9079869182452911, -0.3007322654583844, -0.9561306223871949, 1.583780430120785, 0.4308796126788844, -0.5557827436970709, -1.5013162427313091, 0.961008880862151, -0.13512799726275054, 0.08411844411350797, -1.277089345828838, 0.47326704151938115, 0.09504218363856792, 0.666128182598308, 0.8277070709714919, 1.1352563295298321, 0.6837639851571897, 0.1851913290452333, 1.5568431797049087, 0.23666689660591367, -1.3213680051646222, -0.9531330267029265, 0.18453600373219403, 0.27116288217889134, -0.8805345467809017, -2.446740527886268, 0.34906534435531117, 0.6722309507964178, -1.315576298036982, 0.3115952642559266, 0.3469394690530549, 1.8199525225806061, -1.903851291554657, 0.1398735481664342, 0.7767363988674378, -0.8433413301427016, 0.9549846252473556, 0.9427229550507384, 0.061493367116398516, 0.012305638369372707, 1.0974253871497113, -0.2563948186775093, 0.4493058740819211, 1.7422413313689413, -1.128192182522197, 0.8435963237938446, 0.4330621154352132, 0.37550102449247275, 0.603587514187099, 0.1532497263088061, 1.840528525920373, 0.02845311680653587, 0.6468347079738122, 0.8640839268245449, 0.27962070442243314, 1.536440380843701, -0.4704463599373506, 0.39238256309591435, 1.0353374430090663, -0.27410992289545827, 0.7588831930232377, -1.4092886281473997, 0.5323596126168445, 0.23006983102032255, 1.9618419468309218, -2.3071807949449754, 0.003830891730910488, 0.35449179638808714, -1.9252013977981175, 1.9558262974373684, 1.6675441793262071, 0.04297814854238189, 0.3965263347135463, -0.1564792059426558, -1.4448244337885965, 0.5845643978452973, 0.5861685610664208, -0.19258339901679986, 0.01674473477064197, 0.6813021268524065, -0.3980358679941675, -0.34926549253919364, 1.0688022958955632, -0.16188165630474322, 0.10671435965161032, -0.11574637850763005, 0.7239547734789515, -0.8280986310674023, 1.37284721199913, 2.4532880766061136, 0.7024126912053424, 0.6097494651414193, -0.3944095335896519, 0.7229307756604519, 0.7152515549990843, -0.28234706486756395, 0.6360387825895653, -1.6826482714960607, 1.1562940786414189, 0.2455537190735466, -0.9109185709539949, -0.9548511375968509, 2.4642949961868226, 0.07479807314103509, -0.513818947436791, -2.389486793876979, 0.20779684294954853, 1.4076392704268683, 0.5957326208762718, -1.5963860765064222, 0.5095994716415889, 0.2886520968028907, 0.47001570655946084, 0.9381113082160009, 0.5844845147956085, -0.18576502875318376, -1.248575827311698, 0.005171609909047257, -0.3008950905253369, 1.012879953894416, -0.2429005169815813, -0.49032173789230554, 1.1023895710331464, 1.5079206188638357, 0.5855940427060276, -0.42688964378645655, -1.2820267440904598, -1.3947150955166276, -1.683386161137139, -1.2851490966257395, -1.3419940465169826, 0.9447452736642913, 2.3794794040309992, 0.8392134382871489, 0.7597512498227107, -0.6753357376337283, 0.7461190796002931, -0.8860992444122405, -0.1959008049913965, 0.3049214780722764, -1.3870233229147426, -0.4724899988981945, -1.0715514175119214, -0.9110258232197832, -1.9016791600411405, 0.5675656032447433, -2.2050141019773974, -1.112520136329398, 0.01582982042340039, -0.19597921507514257, -0.3874405737075546, -0.43972706751788637, -2.42574325520407, -0.2819524504913854, -0.18575744271636288, -0.1554133825332774, 0.7061301541419046, -0.3417379835359512, -1.3560624982981389, -0.042476076694294006, 0.6667178337455053, -0.33838730268022954, 0.5209908842945105, 0.44599241306841686, 0.9918033206575884, -1.3563016890422035, 0.5195030283169836, -1.1206778992676236, 1.7675083309952144, 0.06069174887700758, -1.25616232179746, 0.8704054782638979, 1.0359131223787803, -2.242749370435503, -1.6347555872268251, 0.7289643709562096, -0.4686003759744581, 0.7068431820186445, 1.3346287385486924, -0.03701022729544776, 0.28753298190646, -0.22044863933402253, -0.05074176321286474, -1.0619475178340907, 0.24070072272016751, -0.10475596360307744, 0.5031344423709044, 0.7008157809153621, 0.4053342544607289, -2.4032795774077798, 1.204361566785285, 0.1855135603781546, -0.8656980508832145, 0.49003593757208275, 0.8255085006989704, 0.39147883309384734, -3.194131757289251, 0.8818835714414104, 0.7199700134590811, 1.3249038506456847, -1.6676031994340457, 1.6742239351918953, 0.10289965027377415, 1.0532827503152766, -0.347720720657321, -0.10476905313325359, 1.2126718819589277, -1.016497241526854, -0.09281475702051564, 0.5665507262062054, -0.4198594567327543, 0.39957514262820737, 1.3421077037840337, 0.09826018314031201, -0.4361880815807303, 1.0331048788800579, -0.5462990054169742, 1.4551683961021924, -0.65284808639636, -1.3107476042413209, -1.580791455076519, -2.4010335151020823, -0.0082744653642947, 0.47302661259333395, -1.9921213054904057, 1.175288817545486, 0.821239933943691, -0.1802112763124917, 0.3851103832609465, 0.32160975367415817, -0.8802601041873354, -0.09500909076903082, -0.8579302348042591, 1.2152733995115108, -1.643648635888376, 1.5795196582433773, -0.3729434853172949, 0.22319953808378454, -1.3302187701411088, 1.0204969867457239, -1.6661864875030596, 1.1180973646303656, -0.5207793944807154, -0.5457658690362479, -1.9599061317162556, 1.1361647681383427, -0.43103775287593277, -0.6695372975536997, 0.9686359989654048, -1.2119630700190793, -0.19036905128373405, -0.3076870543146629, -2.5608887202410955, 0.20292016774212798, -0.5752189384638798, 0.20455709093246655, 0.31867417761186906, 0.06987715575050858, -1.7191071931321358, -1.1417420465006418, 1.097116496321535, -0.30226079985652554, 0.5680078276564935, -0.6626240665322511, 0.9360617397467305, -1.2813216988490663, 0.9865390661584432, -1.9910289089397084, 0.0274934629399519, -0.3923658764686565, -1.0508970012796681, -0.4709434136710815, -0.5400479525341196, -0.06498142042162311, 1.3484589851939142, 1.3632412394400863, 0.2714375711364846, 0.480705689409191, -0.7276712493663283, -2.9221732282456174, -0.18611742700082132, 0.02280883456208772, -0.17607629718228915, 1.0575292517974617, 0.4366623302641161, -0.02893052846817567, 0.556806876906085, 1.1809241320622323, 0.4155092105219756, 0.9952318655271226, -2.2853781516798137, 0.8690607040752922, 2.131053290115784, -0.7709220639491661, 0.649157343583684, -0.7341472203183752, 0.9637016261229651, -1.842129353920998, -0.8006323595088516, -0.1243837357979384, 0.8703100731693794, -0.8034804475126569, -1.4370575295979118, 0.47138807193405846, 0.19051174288258335, 1.484764285379843, 0.6072715425012005, 0.9156777897702056, -0.9434052238303589, -0.886225725417024, -0.5138121971262576, 0.46625240548365127, 0.21489837768961978, -1.3477188470752575, -0.4205301847119103, 1.0373932344270154, 1.0404606056382157, 0.0371063183839875, -0.41999592755555404, -1.208758659420867, -0.9524515611226668, 0.21521524748852236, -1.3082823959190863, -0.8025511650445938, 0.3739249330367682, 0.5696390692055381, -0.8149654193380793, 0.0951647680997528, 0.4032456049176727, 0.3315401603975645, 0.32747725131477096, 0.7059830385641344, 0.5908404549777363, 0.22476617513559674, 1.5479824308877925, 0.018730042091231035, 1.2231773689166072, -0.1454599601074117, 0.2659691785205875, -0.21097390405898434, 0.14621741143792533, -1.0438231473512345, 0.47575026940606713, -0.5941807928593535, 1.0558413527436707, -0.05373676826956666, -0.8495756950902381, 1.8779787230669718, -0.28117526154046785, -0.44917572055916205, 1.4864416127782585, -0.7549907258595414, 2.219686173142064, -0.01644248310532096, 0.6895989523756897, -0.11038363242275459, 0.5597711107399183, -0.438733760993994, -0.05709689951116481, 0.6972295163514117, -0.24268936404332075, 0.24023423851321773, 1.2329044408204515, -1.5117140846695154, 1.4109208498826808, -1.3456046057437323, 0.36618073763692804, 1.227265026491256, -0.19917301750996882, 0.6847157958736054, 0.8531932772907127, -0.7301749412655064, -0.6235291922109981, 1.1696630701299089, 0.4378086998486281, -0.3207117937508937, -0.14425131103205996, -0.7058058240661282, -0.7371127380766116, -1.0422927346718656, -1.2117366535518992, 2.2489478480466567, -0.02151872322496499, -0.9226519098955351, -1.7339999334782101, 1.1670115327682473, -0.26924607118003085, 0.12947329827380688, -0.6317161334567876, -2.9669006518863457, 0.9941052469608533, 0.37473176340553155, 0.04725324286614971, -2.57694967518699, 0.04224347923990757, 2.5030909408679207, 1.123891608069121, -0.970495196633562, -0.00559402918725892, -0.31588613919259606, 0.2880835183873298, 0.715651925988168, -1.4811726560823486, 0.41314880353864286, -0.8520133794609781, -0.3982476169267731, -0.595942400220836, -1.9911204555839719, 0.5807623984526409, -0.2506908307653331, -0.4988724885172327, 0.4009203110527133, 0.6373756663562242, -0.07449338695682528, 1.3325251705818835, -0.2148757760532078, -0.0726287497452955, -0.3678179052301199, -0.9805219921793406, 0.25444662641983196, 1.285956410600944, -0.40399655900340153, 1.0083547401178226, -1.1459770553596864, -1.2277636731579813, -0.47416287704806503, 0.194370757382102, 0.5319182966396497, 0.745539302402189, 0.8886256016574212, 0.3536044628059908, -0.8080288573190206, -0.431017555105675, 0.05980681397822396, -0.8743318918712931, -1.6077857061633247, 0.25512677629750163, 0.7101786757855572, 0.6282322873498509, -0.4575007648200789, 0.12296125887211869, -0.6268443154976375, -0.1103867656887881, 0.613796545300336, 0.14470117722257791, 0.4734643935260585, 0.4813485026395916, 0.398706675171433, 0.8302289739590418, -1.25994033746609, 0.7306808006104925, -1.1992492607301022, -1.7949048024723613, 1.9244458422076736, 1.347639535099775, 0.1996612318492235, -0.16281043653303706, 0.5358559089760494, 1.362416916170289, 0.8517963841652544, -1.0232547501393097, -0.19843202839559076, 0.5362590710883935, 0.36577331694869386, -0.7784976121949267, -2.0908837472125006, -0.31089140657037995, -0.5809986356333403, -1.2151250700832927, 0.5038856540559749, 0.8603286851898139, 0.8497086042737207, 0.3123062124925845, 1.070591616714768, -0.450065015239358, -1.1039491814852618, 1.9223237488376799, -1.356909098531767, 1.3510996153921824, -1.0282166049985828, 0.33432358945937823, -0.23694603144670132, 0.7366073328542118, 1.0215760235768612, -0.4699466438242889, 0.9252070934993087, -0.2932960953890598, -0.8815165554764788, -1.0587156507257272, -0.9202545478255382, -1.246897325544462, -0.27553769481189544, 0.9920528554180131, 1.2936781754336955, 1.1436386735857602, 2.2214751154972943, 0.3322032684735098, -1.5304520521043112, 1.2584224014600907, 0.6796886999939983, -0.00427951597863363, 1.872074598324639, -0.9891429574517384, 0.24858195020095775, -1.8674104027567682, 0.04581700347018951, -0.863644021878139, -0.17887699076437688, 0.8188641533280113, 0.7890930248873108, 0.339683419688089, -1.3041646878168982, 0.7336239162582285, -0.06739614934092027, -0.847895256952223, -1.1791909774930995, -1.2363104343201214, 1.1441331518373155, 1.0050298018317347, 0.5221067460140472, 0.48320560399922835, -1.1706419360175053, 0.7153221219031594, 0.016191153401905575, 1.6854150058543553, 1.7768034779183814, -0.461068474398967, 1.0752925838814595, -1.1905739268373716, -0.010491730598459427, -1.4181858191389471, 0.4066432522737729, -0.17862467297019963, -0.830619649926509, 1.4848867592097599, -0.1908150353287162, 0.32524833422786825, 0.041714435162259346, -0.4507767081950281, -0.7863965523477412, -2.225419103237283, 1.2372822310472225, -0.6366231882761823, 0.77913735034534, -0.5843362622017813, -1.3090211910495293, -0.2209205080254383, -0.24750499024736836, -0.9743838730262557, 0.9726332947364468, 0.5514597748522315, -1.4767278349648951, -0.623098508194124, 1.304882253231127, -0.6890643290752239, -0.41171141838783676, -2.1116909813422517, -1.3538843686385693, 0.33427723700270556, -0.643926142300943, -0.7052641451280595, 0.39207330428625164, -1.342433108332193, 0.0009995954522424323, -1.0432035208466939, -0.02656115124465131, -0.07629828068714217, 0.1701330907871238, -0.3257299147486654, -1.3673258951544325, 1.4880152105044073, 1.7932515331980647, -2.0737077500924017, 2.000139960209564, 1.7813577640211795, 0.49730645937125867, -0.7821151641406145, 0.21928096144408962, 0.2675323458346863, -1.2939037059511604, 1.2780137995476468, 1.1546540251990824, -0.9196186400666254, -0.6957366864284407, 1.3034823016905337, -0.299629366212458, 0.49480563448874787, 1.543488800263045, 0.8982181304574995, 0.8270362292285858, 2.2070906198232367, -0.16882065230474785, 1.2127243070445528, -2.497703362266952, 0.6361964875528424, -0.4836617982726475, -0.2537286429537885, 0.9747505474537764, -0.16364187600149693, -0.7043316829042587, -0.7956217604039678, -0.4397695322729727, -1.6483793378978597, -0.5390233455477431, -0.6202053848398591, 1.914882074645129, 0.8638028044012487, 2.0491731262987027, 1.3841991436957515, 0.1534539270743173, -0.04421811311891914, 1.637687599502254, 1.9112114915073848, -0.6162053238820678, 0.6673980003923884, 1.0037430781712378, 0.8010230858157502, -1.0787993696773435, -0.6339352619596568, 0.7343889934484833, 0.9712967431977542, -1.8774166089778843, -0.44007100308739866, -0.7729687601389413, 0.3748453924818068, -0.2834948464366785, -1.0546539568512225, -0.886352735816779, 0.791345295317718, -1.6214265046219922, 0.1623653854783598, 1.6229326125739507, -1.011563524956222, -0.188666477526185, -0.1824550881446461, 0.6266998617574544, 0.2430222326160926, -0.6072495967341303, -1.092930109318781, 1.04363358542158, -0.4728904468610146, 1.0668297146711638, 0.2556849054151237, -0.48198865332321794, -1.9204380511385828, 0.12681710389700418, 1.2039876441315527, -0.0028705428254932833, 0.7717322620456014, 2.2290368535389637, -0.5137430009731224, -2.1359218979256682, -0.4142234313606651, 0.36177763530156876, -0.622551592729188, -0.2771952930200513, -0.08646281731775063, 1.128353171346567, -1.0206392188422635, 0.49323530153805517, 0.7726013882381768, 0.26591011156811517, 0.5283624539360768, -0.38717327357471526, -1.2755042646233292, 0.07630522767363766, -0.8776618404920374, -1.0699905873845754, -0.13139868638459262, -0.22509861315705362, 0.09490472096006333, -1.65210972811201, -1.2056570100743305, -0.7796035212250518, -0.08444970439210361, 0.28793576332617915, 0.12410099428188409, -0.3093790673595938, -0.2954032900500268, -0.9127977824183537, 0.13083262239846624, 0.1740056671058176, -0.42366833737299703, -1.2625064497330054, 0.7764679528919625, -0.12579417980817262, 0.058096430781260304, -0.42799512462950057, -0.363336227531631, 0.7748291720409499, 0.48343758317091584, 0.41445292537759787, -0.1495804529096588, 0.1335320184487476, -0.36872364797043616, 1.3202227620311635, 0.819892771366543, -0.956828998442618, 1.2638852963216538, 1.2630855986527374, 0.11314337766017812, 0.06120283027184689, -0.26117647464421817, 0.9662758471737847, 0.9938309927930835, 0.5920088763695631, 1.9695790647419475, -0.4653787207372206, 1.1112585903178245, -1.2565950736823943, 0.2808602468305288, 1.9622091920955618, -0.6919766367485931, 0.6958314538541693, -1.426817751846344, -0.39531006951172654, -0.05664311400517873, 1.2315202618620567, 1.3653484814543104, -0.8691919838397181, 1.230495410684194, -1.2771064526484035, 1.2390109334487043, -0.6273845510156106, 0.0030314879402074716, -0.3371850252574875, 0.5791879909937097, 0.13822482210187223, -1.2877437173058284, 0.3660126636268598, 0.6652148910015403, -0.2737680798092783, 0.7697624568207894, -0.8812155671836499, 0.7982940768795346, 0.3885269625770489, -1.6989104769078625, 1.2470484446304835, -0.8447216286139034, 0.8490318399356754, -0.5759790746633653, 0.6427891619138453, 1.1093322935597736, 0.9493810466194219, 0.03345952361000629, -1.03547293468688, -1.8599747048917077, 1.865280788972131, -0.7645469967284744, -2.0555328514774684, 0.091646259835145, -2.5493646652808533, -0.02348676805469877, 1.2833410293710341, -0.6457268438445973, -0.24082984512043362, 0.8247365419918407, -0.5670827621544638, 0.8886510359417985, 1.7520557717568928, -0.5770432398085719, -0.5319161063838866, 0.5394659195919146, 0.8581395751249902, 0.798665248433729, -0.7610932203778602, -1.4293310833236132, -0.10701346276362268, -2.1657476438089303, 0.14218237387026259, -1.6062035643269061, -0.39863617728031614, 0.19517568727278048, -1.6201549294102682, -0.3216584125237923, -0.05657697247205684, 0.6723718995456537, 0.6385458731183756, 1.214278111678389, -0.41055202603270435, -0.6958510677997559, -0.3519449826627494, -0.16888149192275279, 0.7265837148939326, 0.3239570880575123, 0.1200768115167913, -1.163132093795529, 0.29901863064615186, 0.8810463074115074, 1.0492866288935134, 0.1183881663753377, 0.08751000905644982, -1.4422653218725683, -0.16942101229478287, 0.30021088453029493, 0.4217997822886336, 0.8813939176977111, 1.6464695690228317, 1.3552187125723452, -1.5199899422159648, 0.35145730151082627, -0.9474866068161829, 0.5631931460690897, 1.1750762938470134, 1.3710100946915131, -1.440824876491893, -0.13657752860706118, 1.6678302368128906, 1.4667368641959861, 0.5814399216338602, -0.7046212277605521, 0.8465217659704977, -1.028254112342314, 0.20726917969487305, -1.6401494926651172, -0.5023537551803515, -0.41636987133551495, 0.42241916370253896, 1.915705109799832, 0.9653749999145089, -0.8181445399301157, -1.007458052981352, -1.1343202439979472, -0.7182029253004049, -0.36147351842782594, -2.026668492856054, -0.1391687402833618, 2.18041738337055, -1.3430938147305267, -0.07310595440517191, -0.3794188297322162, 0.03040251424352826, -0.7067354622041753, 1.9504295061730665, 1.026053983640782, 0.8099727529655825, 0.44384866272228957, -0.7144642255566719, -1.4245834618735733, 0.8056414044077744, -1.7902282485706669, -0.7932652428740361, 1.0831174603747094, -0.29918076885829736, 0.18227512018676392, -0.5529435293403218, 0.19193442376601644, 0.13208620041399624, -0.15502742980837525, -1.681089159155237, 0.7106763784610021, -0.2408967926015257, -0.06440686641447002, -0.1318959619027462, 0.43720928791123254, -1.3971191592386358, 0.7566582056547986, 0.020853170778608533, 0.20456337347474737, 0.07638562095866983, -0.42506452542864587, 0.0014771899066359534, -0.3206469389179916, 0.8366879257646197, 1.003391976612731, 1.2377448362335663, 0.3255993501772664, -0.8253711593248432, -0.08682425394791791, 0.39561074018464387, -0.4601540883593164, -1.9086408458704156, -0.030827124721466828, 0.06296840309864629, -0.10158675065502468, 0.7464145509740255, 0.9430629785211978, -1.592621700511649, -1.1336445245947255, -1.3369017630431934, -0.1605400643552205, 0.5357780557876186, -1.0216317918070945, 0.6459643759679526, 0.3411797484355136, 1.5564092753474765, -0.463310679754099, 0.8206468887767886, 0.9105463238520781, 0.11526768039323783, -0.5240532797388698, -0.622504586056587, 0.7037768069107081, 0.34185253766818086, 2.4569744629025037, -1.8726527673398237, -0.39296813374452, 1.2546235439039892, -1.866282653190214, -0.7959791458602024, 1.3448998895948558, -0.035267123232368545, -1.3771206615636522, -1.4785657398175978, -0.24630200952605733, -0.5718431619726856, 1.284080183266621, 0.2407882335685856, 0.7722383174330764, -0.14598148125333094, 0.5672369340845133, 0.027033935630182644, -1.179637060271895, -0.39695856574643457, 1.372664385624058, -0.4372740358972601, -0.5062330856616524, 1.256636747275316, 0.08783462846544343, -1.9161813094296207, 0.7236177472350449, -0.451808870323723, 0.36140761326996523, 1.0508516585075593, 1.0614647485353854, 0.7988426488777839, 0.8869747753672386, -0.10540380842792482, 0.47462726168595565, -0.6759224724889148, 1.8364458975214404, 1.1276755359107318, -0.6021411130677271, -0.07867612467397431, -0.4648380940558995, 0.7779542426677098, 0.6134007855813867, 1.6071503388094845, 0.8279436041977809, -0.403562737651804, -0.245917866795937, 1.8157867184424676, -2.011497928372927, 1.127373089954267, -0.3166982806102638, 0.6699303664716374, 0.2778983714355886, -0.2988041613955684, 0.2265582759507385, -0.8117582565491565, -1.0158588610090276, 1.5625132581504384, 0.7382890414588785, 0.39999522736629, 0.7294375866430162, -0.7573885713997478, 1.2984760097021597, -1.1894263974523562, -1.8271837690179087, -1.3954993316406838, -0.4628769936353399, 0.5963261380567026, 0.0758291576980262, -0.7108711490398378, 1.2987547132453168, -0.25417474129830425, 0.28626954463864135, 0.4611805866532772, 0.9839289463763006, -1.4848037137384849, -0.39456129370719467, 0.5095354326904503, -0.43820949259629877, 0.23641790482849365, 0.9859447096201067, -1.1136405252786779, 0.33733289867734784, 0.34949018060786213, 0.9735183346877324, -0.5540515752409271, 0.4796187472547049, -0.775247969111574, -0.2966736005720888, 0.5749787804685693, 0.05633571022787934, 1.5297130473005112, -0.25306136929218476, 1.4748221658802958, 1.1008660174750864, -0.28168154783801397, -1.788855544486722, 1.1241094148686017, 0.7631636617701789, -0.6920393260520386, 2.5962924742309683, 0.42868682944038494, -0.2477400413733111, -0.6358602891273265, -0.3488754839409702, 0.1350800282605298, 1.0119833282997381, 0.32626176244768873, 0.37584011064773937, -0.06771753297984022, 1.1029754849494648, -1.8732253758688509, -0.03881552708283302, 0.2568204120725705, -1.2941863991656517, 1.2374694333939191, -0.18471745094865724, -0.7621128691377628, -0.7038262531031496, 0.005182219189090338, 0.14076352453653065, -0.25379094346729153, -0.2651814877954252, 0.8321580403848627, -0.3626746733334586, -0.39083633812501883, 0.7290084346315802, 0.6712714636852252, 0.187200964435965, 0.847534762757731, 1.3674546452591474, -0.8654582056587022, -1.2238333053719648, 1.5526035651673769, 2.199195366271726, 1.5217068307586705, 0.8147525594346076, 2.5776636297094644, -2.3334039865527108, -1.9146957424223605, 0.7857766642468828, -0.4082285210111112, 1.2194889093786003, -0.2906833215244107, -0.6057492034780615, -0.7991171515088161, -1.3014116067328356, 0.777815927195985, -0.055308349165129424, -0.024346877447246375, 1.3814153239226368, 1.2142862224408322, 0.6782840127632473, -1.0749503887670089, -0.43821856421175065, -0.6122343859611541, -1.26032622627668, -2.383323722736737, -0.6431032639191685, -0.3610765468776501, -0.9837359609457673, 1.0792994622584122, -0.0870828161083221, 0.3072919560406135, 0.7043562082472136, 0.7003992941513413, 1.1699045137257882, 1.2152699113949021, -0.6106212039582192, 0.14514212648877142, 1.8057496559026656, 0.2952069579490337, 0.7393955354083714, 0.3246560940967241, 0.6711060996987754, -1.7678845850852478, 0.8890520035769668, -0.03378147651159084, -0.24503932187386773, -0.8153844333153549, -0.45513518443316986, -0.2490896913484443, -0.7619389626000536, -0.7595862790433187, 0.004119197252796543, 1.7233248367146536, -1.7647102193488569, -0.9363281158336499, 0.5036789095932063, -0.23025230832965132, -0.667711089443517, -0.6776252031902408, 1.1052547289315098, 1.1805866042240434, -0.92898616511878, 1.4174520644245745, 0.019200526406690704, 0.21023555347418668, 0.08648684241170287, -0.3957949302510422, 0.3313042290741665, -0.8145033285566836, 0.4700007813030556, 1.3226040264026935, -0.13285737234100506, -0.8893499621235562, 0.46491363703308275, 1.4632122381089498, -0.2424747264140767, 0.18780974137542203, 0.6490827936844984, 0.23132901968667513, 0.36966806086648296, -0.6221661732064107, 0.5660253991261932, 0.4382451091787388, 0.9897345383048911, 0.8150049906873026, 2.5466495944106304, 0.8915490745768172, -0.47770271655979224, 1.7835765911396886, -0.48561223366020906, -0.28234313815890194, -0.1493897251965707, -0.06064635908830271, -0.40649487664803224, -1.5683711808373526, 1.8337523184710038, 0.4185014619808958, -2.155526066814359, -0.5084818276686381, -0.5613966234540257, -0.13101623344583005, -0.48458611323532547, 0.6025305268027116, -0.18091045329748248, 1.4169476966877996, -0.11624602869673901, 0.14363970008206461, 0.0648004365237339, 1.0342428616744161, -0.5145847719469359, 0.1274965475163512, 0.8225052226677544, 0.753017754710213, -1.3654100461599998, -0.8541497131031127, -0.8108007007162046, 1.4994805303075764, 1.1820284800223158, 0.6449565748038595, -0.36976409161914264, 0.022124165320584668, 0.5476468865153475, -0.6897807692053979, -1.2374626449737378, -1.0401603001428568, 0.5298958395243192, 0.6136346457861528, -2.783590626603992, 0.2653020099225227, -1.3208695541871995, 0.4891256951886628, -0.23392040668018074, -0.17137921067761036, -0.8896660134114043, 0.09426493599502458, 0.37905497801797755, 0.30003178264065533, 0.51954082106992, 2.101917576630417, 0.520369716384841, 0.3001656934604693, -0.1316440062049708, -0.5031848781011683, 0.44201275689858016, -1.911241410334461, -0.21074490917057975, -0.7605995263969672, 0.3579959771265404, -2.467701101855755, 0.6459845294648813, 1.4457453316835196, -0.38058878987733896, 0.41708023626808605, 0.6833671482278594, -1.1135395210296284, -0.39835353696645787, 1.6206879902097326, -0.9876563237047478, 0.8254325618664323, -0.690842684041644, -0.3273536579326832, 0.0428120272627562, 0.19789397919908888, 2.0366223457379817, -1.1186076421510631, 0.6900464266780052, 1.179509957907267, -0.2979072170418028, -0.5405508164001726, 0.2600823043224119, -0.6978149880827659, 2.182075603758974, 0.7588511786576368, -1.3534067508428254, -0.3384312499906687, -0.06535807959122437, -1.8369558949907168, 0.29595840311951405, 1.1382779989595775, 0.23205118726271237, 0.5896160475133373, -1.7502304472334564, -0.9000517607927226, -0.1342946033246302, 1.2934793416851722, -0.8053255563207196, -1.7908466347428442, -1.07344159655794, -1.0492284218247283, -0.7778742489270712, -1.904646669341614, 0.11856740497694594, 1.9682605828947426, 0.8243493618833179, -0.4904692141692771, 0.026361385595530397, 0.05503550609744169, -0.3740858732966463, -0.018206249374346627, 0.5769733145913415, -0.13801900524860397, -0.6319499323059335, -1.431680432686139, -0.8695126710781119, -0.06377811215693771, 0.9007949629351684, -0.014776611031602271, -0.8128493898791168, 1.1815311959758055, 1.3031548202726824, -0.27202672008496054, 0.6219645960548718, -0.7738718226127181, -1.0366372751937525, 1.9150589949893095, 0.1278478484499862, 1.1145680235437225, 2.1596450813400456, -0.17193373027244824, -0.7433388782781555, 1.4641491806752636, -0.47931461509500883, 0.2698403028155164, -0.33792700194886655, -0.7600861710724944, -0.10233411514060609, -1.9541415213824174, 0.2926168224639525, -0.5111664627229284, 1.773637836258004, 2.2228054552761267, 1.6026592087019067, -1.199906505072406, -0.39056843735492974, 0.3959488010056577, 0.8903887722903062, -1.484117351071692, -0.6442761746405969, 1.7557831607615986, -1.573723039744386, 1.2040756859176234, -0.8786885491031978, 1.8231792346212579, 0.6264533749799622, 0.24039169424987536, 0.47454579082792964, 1.3570943768986379, 0.003237520711140074, -1.1017406698338583, -2.0088840773534167, -0.21182171934324628, -0.5604208051231451, -0.36075719527078115, 0.8748366382365157, -1.161973143428359, -0.8308920430627144, 0.07866833643550779, 0.6041911903338196, 2.3103043123054845, -1.5636075097121827, -1.6905526396557415, 0.29576487618338676, -0.9175704978985777, -0.49331883816460975, -0.7215362675952515, 0.7121992020135908, -1.3879162031076855, 1.1665568317487816, -0.31409459845255683, 0.7942172032868121, 0.6609008694945733, -0.8359850539742832, 1.0958855863221177, -0.5088418136673315, -0.19620846081216953, 0.3783263891256506, 0.15622132343522327, -0.8302433831454911, 0.24477443244275693, -1.48380549664707, 1.1154111310989074, 0.5507980614688806, 0.3989506479779851, 0.7658468563580744, 1.1736577278388878, -0.677179137859319, -0.3907269952163999, 0.9244425680258183, -0.6719712907987557, 1.1705486912419538, 0.5487309639166477, -1.3149186808421285, -0.6209460482919047, -0.6972500132063831, 1.4030669331439853, -1.0509661474149385, 0.03205842927078416, -0.0908379019511605, 0.43820619413276374, -0.049208499915902024, -0.6404970783289375, -0.8152548604233895, -2.6019553589373583, -0.21137679596394124, -0.6632493354443307, -0.3593388074337192, 1.8992336956930136, 0.5613666881592511, 1.5729323202992511, 1.0575708307225085, 0.39927494256464713, -1.2068748983633957, 1.7995876157615083, 0.07547244520885067, 0.6323201323041603, 0.011950025799903126, -2.8898701773089273, 1.187022709193084, -0.40504758347418296, -0.3095333628374785, 0.8310784448910822, 0.17386928822899506, -0.17184798700350223, 0.25866367036779375, 0.14939207579527236, -0.11563108021645317, -0.48586137740311414, 0.19407094704640784, 0.9062837411128731, -1.6173024551385216, 0.7958017768716986, 1.3106269396198682, -0.4172238510738441, -0.8920806440636144, -0.7470788841425786, -2.0196717282482117, 0.010595821613910166, 0.48043057223148533, -1.1473527392836986, 1.2437676634079178, -0.743898568154497, -0.2179933846627143, -0.43280930154677966, -0.3693052296714617, -1.2477868704384598, 1.0754692514668691, -1.2694048330294831, 0.6462699918123311, -0.021267783192196115, -1.2985926026664645, 0.9073482973741578, -0.20534295939180383, -0.6967099273577391, -1.0022444482663435, -2.025833673680474, 0.9628317657856885, -0.4248531799785688, 1.4189357200985038, 1.674292389751506, -0.6091208502609922, -0.22784572401990563, -1.7535850358576777, -0.8693726983955519, -0.41994631890992556, 1.6543303613823963, 0.3545203119424165, 0.8677262340008618, -0.3814438927344373, -1.0482807167509025, -1.8005526345081606, -0.0975066422628812, -2.3766904143437912, -0.1963918451745381, -0.597333792442078, 0.38200238977444523, -0.2921926493202677, -0.5200019366822513, -1.6992224579278374, -2.067911723330946, -0.017763777606841197, -0.9478125466358195, 0.15943586810232507, 0.6324710602284038, 0.8106236043358601, -1.5276217063549868, 2.506272940743524, 1.131531699985795, -1.008239824432816, -0.6118424130420252, 0.7055354390800589, 0.6487799821590826, -0.49591577170688883, -0.5391460003377885, -1.3415748881251925, 1.0240345080284496, 2.060738138887625, 1.095854131971454, 1.8591193362901999, -0.5148758412300332, -0.8111705523785357, -0.03847384373358673, -0.27498361628278134, 1.1949277424452012, -0.0655117089694656, 1.0312544452074568, 0.49174292425844707, 0.3197189751465544, -0.9076869590682939, -0.07049872513751705, -0.05882522860421168, 0.5546821112975916, -1.7406657979762472, -0.6962550224391426, -0.9439062082636888, 0.9124324690351688, -0.6360439171829698, 0.46571046368359775, -0.06048443459828597, -1.3144321486487445, 0.6932065525639799, -0.3922438944852128, -0.8360846253435797, -0.3056850269653014, 1.2712275070173336, 1.3271349291263592, -0.23818532339651471, -2.8279486885447476, -0.6875558716776764, -1.227285675512566, -1.4640421535925543, -1.7114762931377943, -0.7582728793457773, 1.1578090133384957, -1.1858211944235337, -0.8685012588714164, 0.001174803785214855, 1.1499733745631082, -0.9959478700781411, 1.176263419338786, -1.2262320373392175, 1.2283186026941264, 0.4357177853093361, -0.7040428848843889, 3.2560379930388272, -0.9712355302405513, -0.01346143414621319, 1.7469933618668676, 1.4546719507714716, 1.7847380780659325, 0.5367556399142426, 0.989402347828045, 0.8698016510135232, 0.9279399048399225, 0.13230647342014545, -2.017585208877281, 2.7008753482479015, 0.2690315094266108, -0.8212375822889928, -0.7916366177289426, -0.9854690040972326, -0.12601074819889319, 0.5024391090993228, -0.9185315074933922, -0.6974014265579523, -1.3502382371403892, 0.4290676965558057, 1.4049541585225989, -1.278596894838802, 0.4936290083647317, -1.2307609250716935, -0.9379786792999099, -0.4529094006485252, -0.5538674690176923, -1.2868135888015308, -0.7834830247472552, 1.1445926881406066, 0.9255446441127236, 1.4051266388222232, -0.03087063377501111, 0.4253719006787021, -1.0703831643874866, 1.8756446508841564, -0.0650221714487723, -0.03425124799613143, -0.02687460798810086, 0.980744262223304, -1.0232259074133547, 0.29015898474674207, -0.3890682365493031, -0.763514700678873, -0.8170426836220167, -0.22794470545090034, -1.1370422602119956, -1.8580457251084133, 1.5220855885438866, 0.6631544897365393, 0.6145894888442107, 0.5814286565195929, -0.1182411287745406, -0.3095740877241717, 0.2359813881101459, 0.7953987170942803, -0.22993336153952398, 1.0509136260224645, 1.2021086733988977, 0.19716638667082584, -0.597649160885766, 0.8524609431099226, -0.33052148499262135, -0.35962416159835825, 0.5567413505855756, 1.080972494881604, 0.8730968758330049, -1.2460682130115126, -0.027360073965570757, 0.6222484142989461, -0.16935687402405694, 0.19294116349218846, -0.5600970693700381, -2.433955513904413, -0.1511344519389855, -0.48637221975893785, -1.4811684922543034, 0.763600749999758, -1.394634492123409, 1.141691380610149, 1.2224228888059145, 0.720074781550888, 0.8643943170646066, 0.8183356255140923, -0.40310739072723106, 1.7823302082553842, 2.366860788635963, -0.17255526812586164, -0.04504927927272007, -0.5615683119055519, 0.9202437002933895, -1.2149274303141422, 0.09519587848694447, -0.9534655458362796, 0.7766461706870263, 2.058481331509802, -1.1482136585938258, 0.8561355388418876, -1.1948928065551268, -1.0646995531642525, 1.3514050181398327, -1.0724780167784214, -0.5397564617279649, 0.6295940956736915, -1.0440203794041478, 0.11933918047488316, -1.1574325096458622, -1.4543324744840453, -1.5932856112779046, -0.44161700933669756, -0.3356224683055289, -0.7906994485451072, 1.002676475951216, 0.9093652301700378, -0.5494979465563515, 1.2323029981117515, 0.8032045883781755, 1.734713409932156, 0.24843498359212254, -0.37741675155633786, -0.2776172743651853, 1.1584141926317908, -0.3362373728121599, 0.7238791393977236, -1.6120258352617454, 1.252658101686646, 0.052838870875347235, -1.9458170578656773, -1.8244723418242736, -0.19908395628317319, 1.2198541535761824, -0.046789359824536796, 1.233184245239404, 0.006908332898066083, -0.5469463086688232, 0.07957398122052646, -2.472925931973677, -0.9397891221959934, -0.5613098392018816, 0.6062987420383104, 1.8945467270646834, 0.1918643846573769, -0.44565417134375435, 0.7297746929799837, 0.197490806528193, 1.3650034157663395, -1.2022744123471172, -0.9941991514422124, -0.539780674196912, 0.7220577421343103, -1.5659137430649124, 0.1856553856099298, 1.6577799412599208, -0.8485875021883541, 1.8293388084251792, 1.350521643389427, -0.493264836855258, 0.7805974063880331, -0.4811514914946726, -1.13789993904405, 0.5562603441780336, 0.44180219237856205, 0.9183697947620489, 1.2523108874126514, 1.176595758930225, -0.17258097822293159, 0.15442377466504767, 0.33450719937423584, -0.11701436378373492, -0.07483106540344282, -0.38332707062763716, -0.866358774083601, 1.2368896208780564, -0.6886382395722446, 0.526397273382302, -1.5664412413399726, -0.6745664367205426, -0.16893163332218297, -0.7485991322731843, 0.18989773448244912, -0.9848748624102739, -0.9049436215626468, 0.6780340749506668, 0.9959805101938511, 0.3799763463970996, -0.02833958492880915, 1.0382995059772562, -1.0962155259356854, 1.020408399921198, -0.3933762251905852, 0.3760254226317077, 0.7689346749346159, 0.4612428889771005, 0.16524301670780592, 0.32997808297443065, 0.38308919920355805, -0.0013484938558563668, 0.4111449745286164, 1.3140951894046762, 0.34938399384588187, 0.5450285894915293, 0.37519825839084153, -0.11219914734411343, 0.5153222416333098, -2.3497832127622993, -1.5454894508331414, -0.6392809557021061, 0.4374002692114817, -2.680851812353181, -1.7651989997024968, 0.43652126158004206, 0.8401647881317088, -0.6557539991333704, -1.0448777534338738, 1.0493787028682977, -0.8606337281330555, 1.1377295997384012, -2.16502487234607, -0.3279536873510442, 0.7348626422703572, -0.34783643062084324, 1.143321768842314, -0.12010061873257828, 0.47354113264907344, 2.0334341153549795, -0.7083218004465851, 0.35490919609183647, 0.3509119234341978, 0.41980249375009715, 1.735933510343021, -0.41773252671059424, -0.636652059806753, 0.4624177770446698, -0.514268902346031, 1.4795882946063936, -0.2937166823829161, -1.5964110141030803, 0.5917528067470695, 0.5728115727159853, -1.1210965874971814, -1.8934554508765304, 0.05826712629183525, -2.634513710240922, -1.5509476415685093, 1.9497995680833788, -0.13226513630298742, 0.4730379697365988, 0.6524294014334515, -0.004368202703881449, -0.6225081472717885, -0.4210577387929048, -1.142955331654326, 0.9553479530490088, -1.4224726095068536, -0.6373602253152107, -0.42658797462693593, -0.4856077211962768, 0.43945338625043967, -0.9267714099321915, -0.6779892171624682, -0.6029479407354006, 0.2508830672349197, 1.0920208308587867, -0.5271190725418545, -0.4955262382114943, 1.0926914299846502, 0.8217453529784441, 0.12026490490602762, -1.4608032593363918, 0.25102412712723327, -0.6361795276523997, -1.43570191129468, -1.8148139260425167, -0.8366131128644434, 0.6172644456812273, -1.3747459322041709, -1.2049428612691582, -0.48010259797092036, 2.828187743981663, -0.050739234622486334, -1.5916905412899942, 0.6117223366974959, -0.7059049373124651, -0.38461746214742787, -1.1670510552904734, -1.4516793531088892, 1.5291919110579926, -0.7011748275379558, -1.0337613678081496, -0.25459805895328486, -0.7927008768263782, -0.5793463324475706, 1.69097233031606, 1.0357968573706664, 0.937646736431308, 0.10967779229703199, 0.40057209355355317, 0.07316189451444846, -0.4223431468465649, -0.06358686937338333, -0.6233527655341697, -1.063103722844287, 0.031645145350930305, -0.32106525224237, 0.06122323492716131, 0.5387879317498518, 0.3887315978524427, -0.8446630977124227, 0.14930893283469562, 0.5831004737983937, -1.2078448770458037, 1.0956523493536905, -0.33414263825438645, 2.289898790700948, -1.9610835262286594, -0.6283326602351336, 0.6707944025807152, 0.9657289994255962, -0.35875542908565405, 0.17937222258665902, -0.34254141980292213, 1.2436875602147264, -0.27335028892506785, 0.9426089337585928, -1.2165560420782753, 0.4842741899390071, 0.9198104934366715, -1.7468646145990991, -1.6535830057346101, 0.4158077112870707, 0.03114457727587881, -1.5299070739655456, 1.6816250713148053, -1.4948392108899604, 0.29078017671792494, -0.5260908555144702, -1.7330398241650005, -0.21358750066778773, -1.6229967013183522, 1.5542175686045785, 0.30381466077449515, 1.4035075343124246, 1.3545075939703282, 2.3669157449674776, 0.3439468491941176, 0.2660671658849041, 2.664765265149129, 1.3817487681592173, 0.6061909217781069, 1.023971275512589, 0.14922614169210277, -2.153519029395598, 0.1580094824281127, -0.7108637721366081, -0.38359118398297964, 0.6270911297989529, 0.2529680586762802, 0.5669834566634242, 0.01370908393230348, 0.8650089435782743, -1.1610682217394794, -0.5458968509779172, -0.14968762918056128, -0.6425987379461752, -2.296498924033541, -0.497710516409475, -2.1370507870350566, -0.013924391179035125, -0.49828600231698955, 0.19379783216720026, -0.6850911746247041, 0.25122109203816023, 0.3884353231398141, -0.06432792665757259, 1.3229070449352236, -0.8942524962531724, -0.4050189919961588, 1.0855282792076943, 1.838647527551427, 0.36219099870689836, 1.354714093710834, 0.3267995974549263, -0.6222864340163693, 0.13510191596202323, 0.2437015715870188, -0.12408612624859111, -0.5281355958967802, 1.5307339139704927, 1.308014741351047, -0.7313367423605835, 0.49482062077571903, 0.5238332823404407, -1.0163218847818558, -0.7098072279582888, -1.7482534191250028, -0.43778145282256536, -0.9370744011087969, -0.3066534652537815, -0.30306506542072725, 1.1274478435797948, -1.5864794671961895, -1.0882195250533586, -0.15562634172003983, 0.9520807069688344, -2.0433621544211378, 0.10171560076673988, 1.852401169160254, -0.12540900069816832, 0.23423308432606926, 0.12880873939845408, -0.5445683522206751, -0.43257429999484015, 0.1390831036500193, -1.5289517810827624, 0.056208696537557966, -1.7938266321870826, 1.3180930802326962, -0.2769674479209104, -0.5091108415155293, 1.1687376574377668, -0.45623867024519527, 0.5862990204196065, -0.3527237677102385, -1.1171190762982754, -0.44860159947784356, 1.465053819577036, 1.8499444983914608, 2.2236479405581497, -1.8775443372632818, -0.10762205542865888, 0.3185905115491684, 0.9788692201789023, -0.6807648268685066, -0.12951017228032413, 0.578577835037588, -2.040352170834075, -2.722995573234091, -1.2008864731647877, -1.2780818236468474, -0.3830126811996412, -2.0577383997770355, -1.5119887144381394, -2.2137829911785505, -0.10259210876837256, -1.3077998291001975, 0.7418146216088978, 0.8857412676583885, 1.624488193207599, 0.6669914666569858, 0.6978130868175091, -2.9128447015706564, 0.31012019557943915, 1.094737756992125, 0.3941932080797532, -0.1880839223186407, 0.298660742149417, -0.1974978074382295, 1.2683326647217013, 0.600264264634112, 1.4652998408697944, -1.1847975976364309, -2.1393513020044965, -0.7126443715891696, -0.35811757125217725, 1.4822814648986744, -1.3379802769317861, -0.12110910335027224, -0.21846861503671697, 1.2467347736235206, -0.11342105207316604, -0.8154856749399185, 0.6540465786304751, -0.14883479231114358, 0.6520544154952606, -1.172723014074166, 0.7249532024344998, -1.0980596043401718, -0.08171094159819449, 0.5155765643198935, -1.5874378605068549, 0.18746122473827742, -0.4724474340665687, 1.9518845597193197, 0.09842588494360559, 1.0670148567459645, -0.3167088463470487, -0.7953847178980337, 0.3994190875282641, -0.6323562682716295, -1.540602197493591, -0.8755264616777261, 1.2390553383997371, 0.16576426429853405, -0.353842623460329, -1.094542846952287, -1.380451000381889, 2.5836963523304943, 1.386689161596169, 2.29486401987342, 0.6036062032551394, 0.8647989327481024, -0.7560004039508489, 0.7347532329900234, -1.5857145537670574, -0.1945252882943693, -0.293644995707192, 0.6563405077273747, -0.38236253534349407, 0.36297582137019857, 1.2414983570253273, 0.7824822471320123, -0.22249079798990426, 1.2260039636950983, -1.7345166112755979, 0.1466265758720625, 0.8338007176451907, 0.6463766615336077, -1.2960716377721073, 1.3895245056316232, -0.42036509331710264, 0.5680128187026977, 2.2264508903959173, -2.054091396715645, 0.33240838833615055, -0.0026484060519317574, 0.3791109932956536, 1.3836240947245706, -2.7072019241961414, -0.33786055291031186, 2.224159225492719, -0.2564999722769635, 0.12408076827319948, -1.5093386304811167, 1.2679759523673708, 0.2036078999611303, 0.1195882325060127, 0.6655952632675727, 0.17836210386655893, -0.47228668626546394, 0.7979700881703904, 1.2148797027102831, -0.7327537307528671, -0.28875491464812325, -1.6702170025661758, -0.4204733156662656, 0.7519692175367532, 0.26569932111825706, -0.07557836554456636, 0.3481031675549123, -1.7672376020408522, -1.4037155932380856, -0.13390400389664453, -0.406902625547383, -2.0510854417550797, 0.3870307720766083, -0.2922264284379117, 0.24378432719168877, -1.0929876532748426, 0.44995460895277706, -0.005408730437706115, 0.3702897660869052, 0.8695839509636716, 0.18550379844670248, 0.27060074489619756, -0.05088903293879991, 0.8056485966063244, -1.5481794711325803, 0.31649050029831116, -0.5117352062394919, -2.3689647144728316, -0.894213810185169, -0.5672789443044052, 0.7451361675839984, -0.2231234416740912, 1.1223405778975684, -0.7492214548408227, 1.2669404164995373, 0.40441889212594584, 0.8883551353020591, 2.4706704603792145, 1.6302783358160569, -0.6404255141019621, 0.437648620638396, -1.516894560902383, -0.6391601188049483, 0.07777089998880514, -0.4554175902244277, -1.453680651555903, 1.6096919094403, 1.2789911470459474, -0.11521072657348413, 1.8426848458408085, -0.21944500105161777, 0.5196881160448337, -0.11661586156018881, -1.3240490822181739, -0.9169628034231606, -0.310255436731855, 0.1432195799339035, 0.35072260342824707, 0.23457181306134312, 0.3063603480853386, -0.2400988461336132, 0.11849702118843522, -1.6561578356421045, 0.8204840308455833, 0.6090929628529322, 1.347514154838585, 0.04585227129288868, -0.8842130845331484, 0.6340514414646814, 0.7531479573100313, -0.14022726869187674, 0.006181220108578562, -0.03287150512196303, -1.6018300836210253, -1.2770631279406233, -0.5439913317591629, -0.22684389395026744, 0.47964616003769117, 0.5795663659983864, 1.508768902901549, -2.159518618060116, -0.2518144960000857, -0.8881759740324382, 0.4577307508812731, -0.4328469291984352, 0.8139966968156275, 0.7499697040115665, -0.568385299568586, 0.022296340401422074, -0.9187565254662851, -1.6507334498887893, 2.5652173936957134, -0.5800122021259552, -0.33560777333315084, 0.4975948638935196, -2.5167568282095325, -0.3200691163882072, 0.2718519650239846, -0.0006890007489532668, 0.44782239477208236, -0.7172181957482764, 0.8934187736133097, 0.5364413617279691, 0.6128826957754897, 1.2067373154554375, 1.6815356047838064, 1.110231283601386, -1.6465422331431903, 0.5178279893878658, -1.5984506540082297, 1.1031784737871193, 1.3854292497584273, 0.7789909883298756, -1.0441805338450763, 1.42933099337092, -0.7326603308925915, -0.25944099899833484, -0.03122242994994554, 0.3162322851385954, -0.3416070895263467, 0.14446726851168115, -0.13460717172425365, -3.167514132025204, 0.013753057693803571, 1.5765222522273232, -0.6550679622169111, 1.319429405986993, 0.8579646124885889, 0.7151750601859832, 1.3853613286496655, 0.056238310926494034, 0.3307540353920187, 1.6854758082562264, 0.4917166621252806, -0.7301951510474154, 1.570343846918384, 0.6011382677503927, 0.3433973602556951, 1.8633743913170067, -1.706118739953715, -1.2416153419688587, -1.8155216860797327, -0.1860574645153341, 1.5789750531394362, 0.18211006889584191, -0.14793057662754153, 0.9458242679975994, -1.7412610219326747, -0.5464303715025833, -0.8534234218118475, -0.35177002643296934, 0.6337950270127396, 0.434569664873244, 1.2398458007298316, -1.130383954810197, 0.6267659091811446, -0.27668104028933244, -0.4337246950049677, 0.7836271164858789, -2.5979046402593107, -1.3238586551214222, 0.6526061745351818, 1.3962811287757322, 0.3306179331491227, 0.4373546147233335, -1.7696113440343229, 0.611078729317736, 0.6676752734251574, -1.7433552284480198, -0.774763233749201, -0.1698534179064534, -0.5131540224863708, -0.7174081055209801, 1.0575524430235905, -0.9539063150036707, 2.493897284911698, -0.08395738337393215, 1.0351207350016782, 3.0655212662352636, -0.25255114544657786, -0.24704688535271352, -0.7805776433442367, 0.3980956929774223, -0.6985198382556386, 0.10715045046955704, 1.9937961232774064, 0.8066931933359179, 0.4608536517382276, -0.3697213287590845, 1.4280551105938044, 0.6302923720189088, -1.4335823134123982, -0.5564224921231009, -0.7025247183780918, 1.4513885409416838, -1.6192619603545406, -1.2457795271274417, 0.8004865518491613, -0.04514273483022929, 2.3073816734271446, -1.857902573315061, 0.09405678752354596, 0.5066433865579965, -1.2329043969351903, -0.4021550282167362, -0.4613566880241079, -0.2522996723201819, -1.3938569165450088, -0.5673805828398274, 0.861998560922634, 0.400456205369442, 2.6401478292127627, 1.3616905301851585, -0.2808247481377144, -2.0194943174888635, -0.0817376131935158, -0.4021631865097672, -0.7296097662970973, -0.8775703690975074, 0.30945933337659265, 1.4454949169556375, -1.607538089362256, -0.8486167146260195, -0.016167376386945143, 1.095579179094977, -1.260843663144032, -1.0677173305334544, -0.9012378758460625, 0.28236105352722835, -1.8344877738098866, 1.5236838156795265, -0.6863354547916881, 1.278175654034644, -0.21025543490562082, 1.975659982902883, 0.18865935164773168, 0.10077622484308775, 0.5987986547961744, 0.6049446394616257, -0.8461170878765497, 0.15688010848143832, -1.2775810134146302, 0.8346844069719433, -0.8650190500058583, -0.0507714038217589, -1.8470973939355468, 1.290431038338752, 0.9642560818657158, 1.9267058967572368, -1.1579721727401715, 0.3124164164773217, -0.36623218307593486, -1.9137070535258769, -0.8632207878600654, -1.5930303812393207, 0.06241022256886587, 0.7966628897854738, 0.06441351916971143, 0.2351756291578583, -0.4290479380397819, 0.36942168155926336, -0.4222432971195155, 1.0173545312607313, -0.5676519110751717, -0.34215134076973147, -0.45605150143123113, -1.318249782893078, 1.1437740264790428, 0.2850971393198073, 1.0231653019301203, -0.9066847337801893, 0.8635726798594487, 1.2805401815375004, -0.6234646695160132, -2.0618281697395444, -0.5522608677258574, 1.8901827436294338, 0.41311892342703016, -0.7721742668703465, -0.5170217974598674, -1.3595793511995766, -1.159781026254417, 0.4143782576499513, -0.7693388503053964, -1.1072878892275373, -0.12792780051706584, -0.8873106068751447, -1.0921961952144708, 1.323996471631629, 0.14496701640224952, 0.07074303017590555, -0.4365365315162014, -0.008560907656620338, -0.8396119934687438, -0.2952784170360934, 1.080286895660204, -1.125483575358016, 0.32636817164389526, 0.5555428714176196, -0.5646699030697971, 0.3363286903085342, 0.1277129936949492, -0.7736578317543382, 0.11226095125120734, -1.2073906670803032, -0.050394718577753864, -0.9647230687937084, 1.172584284172667, -0.18145097736097007, -0.3490749793777011, -0.49469637655963544, 0.8934271507989431, 1.503624108911992, 1.4127697985959644, 0.530556752173668, -0.24676008295813087, 0.06985707531157563, 0.020623289239501196, -2.079420784779037, 0.7192064905456302, -0.9903158825093469, 0.0889988843172523, -1.6074828385555875, 0.7317585104766666, 0.11071956178500875, 2.0756489701214025, 0.5020490255883912, 1.3190579576954358, 0.3624125116470327, -0.8144788885280163, 0.31785962409300994, -2.1988895036111207, 0.6534344488774848, -1.6206882206224686, 0.12163739058050985, -1.8991575166859178, 0.1322616238982432, -0.43213934967071344, -0.5779324030587293, -1.1351011020514228, 0.23951984555868588, -1.209020672241172, 1.0512343744707637, -0.3029977486829345, 0.8643978014339586, -0.9483282730779149, 0.18476380003191994, 1.126963343038315, -0.602496642618677, -0.9796244062712905, 0.30002574698594964, 0.7293936833977198, 1.0569160048744437, -0.02127436558825389, -0.019880778124317357, -0.7148790428106062, -1.6270847559326533, 1.109717298709673, 1.185383503289421, 0.5525708612488838, -1.7785305298308154, -0.0012442485039112071, -0.389166564953333, -0.30843190520260383, -0.03450474315313829, -0.19029555864128528, -0.2909800751951506, 1.3116538974841248, 0.5654970572452995, -0.12679704791857974, 1.0435513706526323, -0.9205216946474669, 0.16467833622086758, 1.8276587098670578, -0.2423786198552728, -1.3495293948806346, -0.27688330152305746, -0.34609184186014175, 0.7178787625465811, 1.311504131766325, 1.3925392212044534, -1.8911842401253403, 1.47466258352723, 0.5246573469314565, 0.4118709867479759, -1.738826139696987, -0.14080124076539002, -0.24650338024234872, 0.8337425133256642, 0.29136300138240323, 0.32197318901232014, -0.652989485589739, 0.3880255701659391, 0.02896013800535197, 0.6140162519592973, -2.0523791357029526, -1.3541160845541178, 0.6478062403724578, 0.3728480606114572, -1.1833297162362582, 0.24042084642061387, 0.07088067936510987, -0.5593614570060866, 0.8171074945188473, 0.10787397941522864, -0.3950109507510035, -0.9125073785371257, 0.1763340723943321, -1.3972514150592072, 1.1042651635109257, 0.2184556725729353, 0.16431596271779006, 0.8375589889933442, 0.5910419621910233, 0.05003833225238718, 0.30966667032321443, -0.656899825694581, 0.34776154739967025, -1.0047761552575218, -0.7229854138541983, 2.1948046486558455, -0.36987578918922837, -0.7213294297315036, 0.3190827729543918, 2.0267620781826268, 0.6074643868680496, 0.2905580447552737, 0.5657876929648753, -0.14129769747279322, 1.864095789185866, -3.462658333796856, -0.813291716546125, -0.9210036557203058, 0.5299767921947252, -0.5246475161732324, 0.09431287066255521, 0.8359209822296957, -0.17756044070072105, -1.5206381830409645, -0.2996293892966439, 0.16622178464824144, -0.10769569433648271, 0.9093505528292449, -0.3069148030203192, -0.22662456027910488, 1.33435114070671, 0.160351887030318, -0.3837983626251895, -0.15972366152729764, 1.1378670721295585, -1.030748894407504, 0.8686842048107422, -1.983961879826232, 0.3283128709383829, -1.8090421367215006, 1.0022759831012584, 1.502082162297114, 0.14693522119137, -1.752555000686138, 0.9435764320983476, 0.2338130875572368, -0.4691948126095992, -0.14228476494421222, -0.09175963892997742, 0.04699347978475135, 0.39818468516476, 1.9526106720508538, -0.09262496385310875, -0.26207754303297787, 0.8606270260704356, 0.6853813921147349, -0.9387069033988258, -0.07405221988943016, -1.7915885830638876, -2.4534744916578246, 0.18967218699104546, 0.9138417596395884, -0.8695267744078881, 0.06721498271764709, -0.056873386126995794, 1.6564441549966278, -0.6010462207289969, 1.1039111568366937, 1.215547341449378, -0.6157138209654068, -0.6070595886798738, -1.0826116523105624, -0.4697498118237199, -1.081294609172168, 0.8007372535546357, -0.8813778522401948, 0.6075550718970164, -0.9682449691882383, -0.5826528702472636, 0.027828375711492975, -0.045376611511094934, -0.23862295584888957, -1.5300631991181146, 0.5590911353780462, 0.1728910807976856, -1.0926579376831704, -1.302594882159231, 1.9347667609254688, 0.4941214855322834, 0.2952362703212753, 0.6708402891356755, -1.0451749422024088, 0.1581311815571041, -1.6523525109409845, 0.08886983235663727, 0.27912595138363305, -0.3643916464604533, -0.10634005559039297, 0.5610367378619234, -0.8919662550247777, -0.9783891930229668, -0.2572591739776294, 0.6965640187164861, 0.2844946076143119, -0.2617709158482903, -0.378837499500958, 0.6489125515181452, 2.699220264424751, -0.9199573661681145, 0.37824798744452437, -0.07263330129033273, 0.8837410035032035, -0.7159269532778375, 0.51886857134522, -0.11109031189964881, 0.7475662957406362, 0.5873066953605532, 1.0895362923331287, 0.5179021914371496, -0.6131349771671705, -0.6374676447777782, 0.07372312780616862, -0.9882252009706937, -0.16104725785594204, -1.5332413049171965, 0.6109414928362651, 0.6350205565441361, -0.04681638549870541, 1.0273438350020108, -0.8430027307691499, -0.20432779888511232, -1.3143109689231303, -0.770774941294741, -0.6744236135383437, 0.8609110895044275, 1.174143098730175, 0.5083358839521921, -0.570113179750761, 0.6408624678866248, -0.35638844387000146, -0.31080132361431034, -1.6669359364123315, -0.5859543335497878, 0.584651547961451, -2.436497526212044, -1.357572978869983, 0.40621453400826524, 0.571066274351999, -0.7862445777045358, 0.01576729165509028, 1.4831111486058026, 0.41034445450050366, -0.4056931715303888, 0.752945280220772, 0.12195868112455246, 0.16241666948713965, 0.8473368251743233, 0.6495595959289477, 1.5426510861223026, 0.2746512048038985, 1.2819550431024982, 0.03499088819379029, -0.04641934620697634, 0.4766849024815352, -1.0908984808541988, 0.6980144700569857, 0.0877759896916543, -2.5650406706637834, -1.3938606109974567, -1.723921998204677, -0.6684527687579094, -1.0380322449742758, 1.1752700996473044, 2.2296445718584774, 0.28107567971110287, -1.7265071963292773, -1.547990504616068, -0.427024783653095, -0.7179332800654575, -0.09398122529245083, -1.1760268605081996, -1.8005867324233609, -1.350431977307345, -1.3961412445226422, 0.7040822528329065, -2.2438185989287724, 0.49371297197916725, -0.1452462172068431, 0.4215947682025613, -0.16006784764582613, 2.463422370858755, 0.47520008577885114, -0.1784403873066351, 1.6652626639837302, -0.5174491451778258, -0.46524614658304625, 1.7228510442255325, 0.9212935603418987, 2.3427347762894866, 0.9617481363927617, 0.5819162285009909, -1.4020862578378095, -0.15631839792017713, -0.6636685088336055, 0.5538787469043976, -0.19815860715964526, 0.7876595910817785, 0.7504047590283582, 0.40100950308549727, -0.13107158506428845, 1.0279134345123353, 0.25096097248974975, -0.43117321052218877, 0.2809567007094453, 0.5703860541884256, -0.09439615646043675, -0.22624180752858522, 0.4550254538563477, -1.1438733860853467, -0.6221420809131741, 1.7306698019608593, 0.5529622201344306, -0.40192802226222935, -0.582396540745238, 0.04494903619014117, 2.087850419011889, 0.041861944968848035, -0.14942974996437886, -0.9940075408042932, -0.44226178470939304, 1.5180555468070778, -0.014779400051856448, -1.8921098495247124, 0.7782505807298697, 3.5086921768591557, -0.021963192950907973, -0.5558244499033621, -0.31901363544548106, -1.394349448093148, -1.2431122848618863, 0.523154633225732, -1.4171034912573008, 2.9552086535283797, -0.8847099036928938, -0.2417971994334151, -1.577906520887374, -0.38006483360219395, -0.4325079246771697, -0.8459766723321431, -1.0413253606372455, 1.4611154267069828, -0.2975280703609125, 0.5091858286803645, -1.177615867919527, 2.1160924744968286, 0.5703915064010222, -0.028381235726506034, 1.0681306832564381, 0.7817202257125476, -0.5549661824719597, 0.3798695326345558, 0.03923012910063945, -1.250843861092315, -0.19859897925312422, 0.3343798876734129, 1.2810387985728233, -2.5486967024051275, -0.5992910096352322, -1.361386073925332, 0.6499045100465521, -0.5515086439718446, 0.17440759713770493, -0.8167526824625447, 0.9627898299234493, -0.392677692561892, 0.09977118773115919, -1.4845735712482955, 2.7200305807829293, -0.7759522705573852, -1.5190570930830132, -0.4322154717841995, -0.09567241807931862, -0.13775375910384904, -0.19552275465515662, -1.8253467242530355, 1.7126838790806425, -1.2424475193649727, -1.0719839590679507, -0.3933393135222477, -0.3536116068219385, -0.6510198464049475, 0.18089452250192378, 0.3940005348653723, 1.2376537716276217, -1.0570771112960335, -0.8019863946353247, 1.8683605185078482, -0.09792154620047096, -1.2157364634588312, -0.0926883343466152, 0.7861039544204931, -0.5450555558348027, 1.792129532658187, -0.4561327973739799, 1.2644236059660543, -0.05219333911370829, -0.4110194895389197, 1.1293201636730659, -0.3579221007953069, -0.32797037238426985, -0.9578851204035521, -0.10792909012476049, 0.1852298992799191, -1.7177635701687164, -0.014258363594805024, -0.9267776423966719, -0.46283969505912165, 1.7297721695729487, 1.2275678073801457, 0.14857146949504857, -0.4193751838008281, -1.6745231910854317, -0.867122734202112, 0.13557416563639837, 0.23462066126134754, -0.7393017765270405, 0.10610242128095908, 0.3654495359186728, 0.5709836344927894, -0.07253110313808354, -0.8792034816995843, 0.699371667816992, -1.0675833633140592, 1.0034995971883673, 0.9003164967123544, 2.6199616804339065, -0.034334260809156844, -0.24498194569085457, -0.4435139249823638, 2.5016391375475893, -0.48207669584057783, 0.7067536402589207, -0.17536722839980018, -0.5521536915492847, -0.43282946570562725, 0.4607588891531835, -0.5764570261984807, -0.9568736959959458, 0.42292391441955235, 0.3222935477749318, 0.6089648758246474, 0.6228116724096895, 0.655721061333971, 1.0102515205532305, 0.22563139846211838, -0.05601934191845452, -1.605352213770299, 1.2953608793510536, -0.4681730021935723, 0.7062501506963423, 0.9307477424120895, -1.682952207112921, 0.7714694619154264, 0.8640563447634381, -1.9523451969023218, -1.2499877952066856, 0.7057110708300004, 0.12465441025021479, 0.2776277594487364, -0.7459685796320041, 1.3928425410275203, -1.3102259840813397, 0.8376802010493898, -0.4448110481696652, 0.7872758616006796, -0.7040091266066896, 0.12056040798691926, 1.6469030633280959, 1.253422808752594, 0.48701954942452896, 0.08294819805218483, -0.6613452692759757, -0.14562713058972776, 1.2387272228388582, -1.669404176413726, 2.553754913894918, -0.7010925700696214, -0.017808818951747817, -0.10995306963068317, 1.1212782420650753, 1.604406192652123, 0.21617309656966496, -0.8910620954536592, -2.327261682436595, -0.6425358047775358, -0.30902639994431913, -0.5910075629506765, 0.3468579107532167, -0.09365887998077407, -0.13101308838685052, 0.3182329522746773, 0.24575258284978066, 0.649248789291029, -0.5702569488667815, -0.37932286969887763, 1.3449319762128094, -0.8435397181815871, 1.7250773496219123, -0.5351930276542912, -1.776954069872545, -0.2998450088281389, 0.3894949049385846, -0.6231456366324521, -0.08409833999906138, 0.014651444402795035, -1.0101467964314987, -0.20569964854131867, -0.18029520855254705, 1.1067798351545008, 0.633654891851892, 1.806058037618188, 0.14354893395910479, 0.39319660271831963, -0.1474604908724809, -0.23594475867439244, -0.03953298991704531, 1.4444499310284582, -0.13345067524774964, -0.5074466229478497, 0.8267637709799146, 0.2652947841469066, 1.8730013153955922, -0.6814374691153836, 1.3868021470619143, 0.2583228304990061, 2.162990897333985, -0.11470018127631981, -0.13408480591801175, -0.043952650052902865, -1.1320466368685949, 0.4797490514937782, -0.7694398419919046, 1.5946877674449358, 0.22221613733564355, 0.2758078080574755, -0.48956611828264773, -0.5643666422456145, 1.1228390450181034, 1.1311674187915344, 0.8428698657221971, 0.21740284793020703, -0.342320824826562, -1.0972154051191574, -0.826337029140145, -0.064861041254995, 1.542615148304074, -0.46318758224109174, 0.3813942728672257, 0.11162327618887896, -0.7588119930026422, 0.1681965584242646, -0.1719475450167142, -1.1217817523979623, -0.03150143521299331, -2.057812586583208, -2.2389968863486933, -0.08094781790508529, -0.3578770244451939, 0.47406335225818524, 0.7924107212972069, -0.2476986920871903, 0.3918850400362132, -1.6190710051848667, 0.26737831562291736, 0.7146322469539264, 0.08362620422500545, -1.1194494914136393, 0.011915446613648269, 1.515224999700514, 0.9619463017935006, -1.1275742070775512, 1.1703290306665302, 0.9580048098080269, -0.46997545109904715, -0.2551582552889926, 0.5776550042265622, -0.5430226828209952, 0.015724837413828515, 1.1986915986426163, -0.16543866877961008, -1.2394144718958853, -0.9563979876915502, 0.7693462946614693, -1.4243791812615951, -0.34066806945587746, 0.17087260451556205, -0.8690731974750212, 0.3690078512126865, 0.25549828661332397, -0.6510965414182117, -0.029286971083813645, 0.6526273420853289, -0.9209144547573898, -0.6675060186492988, -0.19281846214076162, -1.026561356412484, 0.66400347080493, -0.3051611845699344, -0.5620722616614425, -0.4489405510917286, -0.3800579103336877, -1.5013697433137332, 0.8750316247208751, -0.3394827599737581, 0.10838832463021983, -0.8033047808729525, 1.3373179917649503, 0.5213830617789151, 0.471696058584887, -0.3868205867643538, 0.33159176064996143, -0.36979122177520013, 0.2114150202921759, -1.008424513087727, -0.809708873500107, -0.280377415187457, -0.2906883623026372, -1.742016773573944, -0.3339648501658952, -1.5226147555487286, 0.719106074495883, -0.17322846615711, -0.2841435563803826, -0.25574919158254394, -1.2015232812441061, -0.02832408495445785, -0.37687191866289355, -1.7556538871130745, 0.43025492343920685, 0.7945674693891512, 1.3117252798983325, -1.176080600464487, -0.6341253545020404, 0.7823558115993002, -0.06799691196006186, -1.15684338482886, 1.0526724163814238, 0.8575597234031573, 1.4280987084535615, -0.8205902033063208, -0.9855153152957165, -2.1387128888335756, 1.6600877258539102, -0.1686424460545325, 1.6348616758209822, -0.9679839030020645, 0.591467362655683, 1.5531858973099038, 0.8400830060101283, 1.7955203909041422, 0.8839526452763341, 0.26300010088708614, -0.73336305379083, -0.49327094586068415, -0.8837270339570364, -0.4413064025421014, -0.18078182370931423, -1.5085044276462578, -0.1635278989493528, 1.1271536695780926, 0.8070820279921356, 1.173647631513646, 1.6395033076896615, 0.45776494963259784, 0.6328293670339755, 0.8316577504006402, -0.24040122832861732, 0.20890361234877663, 1.3031397811744445, -0.42673263978871706, -0.778801629689425, 1.2040515120538575, -0.1494032339392664, 0.3489307481240541, 0.11078404196130748, 0.34081456331197607, 0.013298853009917667, -2.06457022424094, 3.063884461965595, 0.9249802333556966, 0.7090837403243654, 1.4475074897587263, 1.0681765516444224, 3.8554266713899117, 1.093015599842257, 0.5203517599388355, 0.025070348702904845, 1.1247829547736539, -0.3267372777810805, -0.8860968211744782, 0.46219249156160774, 0.6632376477202417, -0.6627791620693579, -0.009388243327852666, -0.6763279125837763, 1.1198122793227385, 0.43617529308765346, -1.1116153653593355, -0.15850320837127932, -1.7946816834747135, 0.6901890275594103, -0.32574910903944443, -1.3032579190178926, 0.047390846940453625, 2.0145552935568904, -1.77512571619166, 1.605634750774549, -0.3754676382413019, -1.9020788312838868, 1.1368895810547424, -1.071735113416742, 1.0644251972614454, -0.5489964211271025, 1.4052500278174378, -1.3937210046952815, -0.894742978220064, 1.6831760531140365, 1.091269484716927, -0.3426755790395969, 1.6695490571301723, 1.5022186753776097, 0.350119886570902, 0.5227868116334461, 1.1233238928546503, 0.5959425411082835, 1.0726591898377578, -0.6785736060756447, 0.9386504909482547, -1.0457408342279373, -0.4998851315080299, -0.6620851613847254, 0.6988817715991907, 1.0629707181167223, -0.8755424103728076, 0.23456094930948182, -0.2547937396383608, 1.7538370683461353, 1.1189729778378228, 2.1777631331673297, 1.0093716682352747, 0.40776665820556, -0.04404140971123713, -0.6039015963504352, -1.2337315971584242, -1.799344118865829, 0.2405644970977695, 0.6423017941727341, -0.6525593438241173, -1.1273657483176902, 0.7398525106569247, 1.256882139175625, 0.1444879235650454, -1.0907393635487659, -0.6767424132576142, 1.8735343267753928, 0.24789041495551747, 0.461678410938447, -0.907848371116866, -1.7580135879554126, -0.1771699060844068, -0.005247783940994425, 0.012950124034338597, -0.7246882226120154, -0.9062547893467231, -1.0705230109281896, 1.7565191541775687, 0.7293496155553557, -0.7932032588842497, 0.682628262404339, -0.7347280997875736, -1.139890810744257, 1.5212332499664838, 3.5065485975902293, -0.03558363517653132, -0.5100251952358265, 0.9052566226076225, 1.0751870176649692, -0.5589700856165796, -1.456275883745389, -0.5605657462962016, 0.7733476898068924, 0.011817331376462422, 0.5287248520921587, -1.2970128626786006, 0.5858609051757727, 0.993631539373138, -0.3463844644611265, 0.3203897427967697, 1.194636833656951, 0.7991513491025225, -1.1482653828798677, 0.6868520405058348, 0.20653194512773435, -0.17477894353708534, 2.0983087064249015, -0.17725552244204268, 1.2620803728957077, 0.16591037860172772, -1.047643347358865, -0.006138118624532751, -0.05158121879242881, 0.28907745368140403, 0.05937197454183694, 0.9446340810725771, -1.5696558350282055, -1.0097195697169308, -1.3264918077913008, -0.396151628577529, -0.6451014317086116, 0.5933964199085373, -0.8709532581240642, -1.7781893252898093, -0.026600960647510545, -1.3509904634394003, 0.20548783980310376, -1.9413082951018803, -0.6280168686542512, -0.1649141799744679, 1.0495226104503934, 0.9890501749375799, 1.081474222001069, 1.5854903853414888, 0.7849792999001654, 1.083635474206705, -1.1229779449118686, 2.515850606547324, -1.0214862234386497, 0.1218256000201464, -1.0020356477971224, 0.6374963439228093, -1.7272441808936585, -0.6866148775671128, 1.7205673484290458, -0.6825109026449118, -0.2164396196154251, -1.4808948731676443, -0.5478759060863673, 1.3227165630360511, -0.21586706859551866, -0.7373328084226212, 2.2902412730818633, -0.31894518719588677, 0.9374735822988054, -0.09625840150960445, 1.4594530187638453, 0.6048333279265741, 1.8161825089286907, -0.6781785205854964, -0.3310808104266945, 0.7305813639628761, 1.5191902301254068, -0.0886643720269741, 0.5637839611946547, -0.2599256826606129, -0.3735817555463002, 0.25519152586626065, -0.6367633366345287, 0.7274346626795204, -0.2314271853508246, 0.26160772698382767, 0.09421947974207705, -0.8560048533100163, -0.13679747516485188, 0.2211958809383885, 0.6300451810996538, -0.39993799749613534, -0.7188693792592266, -1.420963886368334, -0.7113516109468214, -0.38789877370538106, 0.41543121478592593, -1.576880406979639, 1.4859547290626653, -0.07434239550717407, 0.09710975716927399, -0.7697513920564414, 2.2242749837322484, 0.9870210161184204, 0.1623599740284301, -1.162714452638745, 0.5755052761524843, -0.9169149939093185, 1.162468528984702, -1.3820077234722752, 1.5665592431463737, 0.7872338120399712, 2.567550660408626, -0.7976542005629134, -0.588344184119201, 0.2616128799077987, -0.9434329918123612, -0.5088337019243566, -1.206103937708248, -0.3106703080279782, 0.30775617511937287, -0.1364916933653268, 0.9533151440846663, -0.7577044268888887, 0.48913707169002857, -0.7332372060628931, 1.1065413301846556, 0.3530896221474136, 0.21112730516591074, -0.6112648651697365, 0.4250204781276586, 0.45642866544684135, -1.7165236904462502, 1.04061592070448, 0.29036004169310137, 0.6123025019610905, 1.3910949689868477, -1.3436394378422656, 0.09978368461687377, -0.22221186654700006, 0.7969435465883672, -1.5562666920569828, -1.2938751464773257, 0.5054677677246389, 0.5670368494753831, 0.6127070256699211, -2.0253606144283287, 2.0760383453232536, -0.974306811977709, 0.5261349508169781, -1.1661602877921522, 0.5031130317950065, -0.31108077376705173, -1.691224848566205, 0.3509965725184654, -0.28245599827491313, 0.15127067690425378, -1.054209707706916, -0.4706140061158434, -0.40538779460681373, 1.0791629748373113, -0.23949346472916636, 1.3958121909195327, 2.0484015280570502, -1.8005424778116705, -0.9611024721494773, -1.0010833074179333, -1.0180384093893686, 0.05870905951084104, -0.5297604453149931, 0.599150565481012, -0.25385932081815693, -0.6633382846177283, 0.9916946914075131, -0.9392200204365302, 0.4459954824414887, 0.4432238478272265, -0.3192918992871848, -0.4728423625433521, 1.287915938689121, -0.5540418091802123, -0.01397299586670478, 0.954690885093653, -0.25650391811526824, -0.33980825894787975, -1.247570008726654, -0.3722817030589708, -0.6424198448355386, -1.335001217807559, -1.4191871170895038, 1.251379516071747, -1.5221254469227596, 0.6707022950251232, 0.7463739143740229, -0.5422614190243207, -0.4788852585195582, -0.856868730471391, -0.4499982775036579, 0.7102125269225482, 1.6353548998547174, -0.20727104877411823, 2.269448125904205, -1.6288912051014655, 0.5473291441779466, -0.9206497065082974, -1.7639381798274374, -0.36668808205598163, 0.0028545477501654495, -0.7403697845245795, 0.22050532306006956, 0.468650206925247, -1.4696658644408305, -0.6086218949985709, -0.33411893172854706, -1.3294270425024508, 0.0895037684148676, 0.8011743873411132, 0.24164633331134924, -1.402218907831969, -0.004436303581409432, 1.30818341307619, -0.44160985071343123, -0.28160609362762584, -0.01519979737006979, 2.155799884960448, -2.048212718529808, 1.175405473912447, 0.8124325367846931, -0.25669768605633253, 0.01366383948979106, 2.1473996727467752, 0.020576426498770426, -0.138782001870491, 0.1819639228367234, 0.12370545948322405, 0.6697914640078724, 0.6124579676890194, 0.36554273893921535, -0.5418380796386171, -0.560703824108079, 0.8425165509332676, -0.785083693927861, 0.14862499254784675, 0.025734790966951755, 2.569321845526731, -0.25886192039687533, -1.6079841901613234, -0.7082391835562366, 0.06451004654309743, 0.6269932045666893, 1.0607504706671265, 0.14392641796561306, -2.1944977818749423, 0.1380844801006375, 1.1377164272080564, -0.014258456041667764, -1.0609614051030225, 1.4543323059202935, 1.0854047184731253, 0.2930660171030355, 0.9076324783595723, 0.027477298872403647, -0.06935788526081532, 1.5222864470262603, -2.2052267911711416, 0.5572934303202616, 1.0554220958287313, -0.4777845317783943, 0.9044958801017152, -0.41830347239585275, 0.9333188492648105, -0.909320649892363, 0.3883025235099484, 0.03750419102040933, 0.3764542632223448, -1.3705943298983023, 1.278527806789202, -0.6899601126970256, -0.4629567315745908, -0.31971707402349125, -0.7425058846268416, 0.42133922119592754, 1.214166973726318, -0.5594933298624487, 2.4932180555311456, 0.3447800958906304, 0.27243416874582554, -0.38228668786215736, 0.7555319127586214, -0.7349450932863107, -0.41399969165379097, -0.18292972487803758, 1.8287289017391195, -1.4545686175075467, 0.7036594476161884, 0.2817261475724894, -0.49445062601983425, 0.19480933623978902, 0.775469917229545, -0.019211722858696104, -1.1586646379765908, 0.21358507462043372, 0.6256428897085945, 1.6101398103616857, -0.026413098270536898, 0.9244597894912322, 0.5132454763888203, -0.1607227649346911, -0.7194305012928222, -1.570831189450025, 0.27884231195595705, 0.57367935002892, -2.2280909302277774, 1.0411670469936658, -1.2341468697527114, -0.0140905421401899, 2.0916598110910827, 1.8772476224354782, -0.9678132357059623, 0.15482310929868168, 0.11049970909284139, 0.5186696945904649, -0.7523361767040424, 0.8039196926921501, 1.5311641294322849, -1.3283484962262715, -1.6529635885761897, 0.9376512821661367, -0.161329693946033, 0.4027701785018725, -0.4530593463300566, 0.15848343717167984, 1.5326111032919318, -0.24382027599525471, 1.33997725321091, 0.4727868696487549, 0.1754059820229884, -1.1824949984293023, 0.6039004795509676, -0.20175035505050273, -0.9299033228851666, 0.8465271063826181, -2.717669633916152, 1.1094554120284612, 1.1433518799451485, 0.7990625477432406, 0.7534669581162383, 0.6849617304652491, 0.44247106074283016, 0.7769201397182667, -0.7465516606138027, -0.08518404936580751, 0.35639198286705126, 1.092177089961038, 1.43269271861808, -0.564412579242111, -0.2114292228374438, -0.035213817810543106, 1.014159396948344, -0.768015419552197, -0.2067666777296311, 1.1309945455968102, 1.5481489227935494, 0.474793478689685, -1.0924004012480977, -0.22144979392065195, 0.41145430079557915, -0.8537375102585713, -0.6783208545087063, -1.1839433726816808, -0.18063703418624855, -0.32060241488540103, -1.1257052862746413, 0.3999832353186943, -0.7242367377029049, -2.538152575011544, -0.53901908172394, 1.0451270928942857, 1.0239351261199714, -0.7118264088653057, -0.16309990196299656, 0.2228416565744822, 0.37060941959073374, -1.6731617875277718, -0.6629459811425222, -0.3315569270334714, -1.78465822614049, -0.49856052283924907, -0.2268836517067422, 0.7908986656567436, 0.5783348134790978, -0.7465385049351487, 0.36217507153534645, 0.5975379442657928, 0.9705795907338081, 1.1977266417360652, 0.9342726126689944, -1.1601838028660663, -0.7038936433436044, 0.9579429704975634, -1.0126210861805514, -0.5610080475756011, -0.5974697973569716, 1.375981665051526, -0.1937504615103164, 1.1184613994455694, 0.8377738879844494, 0.27269585380363204, -0.8071205091345691, 0.2801704725319518, -0.5975171435562302, 1.1322055701077338, -2.771896031437666, 0.015915122817608256, -0.43746011183642963, 0.566515167041265, -0.5186736119526613, -0.7725969740108882, -0.10408214825119395, 1.580569217588491, 0.5404808497439568, -0.5754651237332673, -0.44824964627044694, 1.900247417498532, -0.2349480865249712, 0.43732546525597665, 0.34080108890312016, -0.4060269541970999, -1.0413091382767266, -0.6329722868011661, -0.5918646074842326, -1.2838130654807687, 0.3021046502131013, 1.6268923617374609, -1.6284270040273077, 0.15491195878956623, 0.3419175068904008, 0.6663470687726056, 0.17578700576328485, 0.41392590284746994, 0.7412839088769172, -1.4449893194731391, 0.09505498660471652, -2.3145096958805884, 0.8012999979964347, -0.1434723250749108, -0.03642593992003711, 0.16135457864909775, 0.9856930760595184, 2.179775303722469, 2.194788701620084, -0.09439780380503304, 0.12225816470441546, 0.5406866512124688, -1.7223479297128232, -1.6653986661446518, 0.03230401725327114, 0.8220474662870293, -0.16077544883728723, 0.021515875749901464, -1.6283728363694183, -0.15024478430316646, 0.6166799238095174, -0.4237082588581059, 0.3716074772694921, 1.253925394143584, -0.9018943043221815, -0.6417333390064542, -0.04357151265586378, 0.33481799815129004, 0.9472251543295487, 0.5439739954267881, -0.6681768430388146, -0.3535772945361076, -0.7775607186317401, -0.05147611957075367, -0.14053455645622334, 1.746843277353374, 1.7452320735876274, -0.3428219867968043, 0.19882023036425944, 0.27402577012181273, -0.9639648446243116, -1.6049769599464694, 0.5269060314577536, 0.9867233622160136, -0.006894119091072589, 0.044660391605836645, -1.281384844207924, 1.2901062195262374, -0.2222360382188529, 0.6842517186484461, -0.37414189924964275, 0.9395066771605043, -0.44632058559407334, 0.8230580124794769, 0.9165618026861226, 1.5787789906340808, 0.3944419447225533, 0.6646806579357987, -0.06514169650960058, -0.5946561138153657, 0.7697609977247281, 1.3878519946917043, 0.31438717877515093, 2.184706209800565, 0.7144456276917868, 0.5073392506444129, -0.532105740829312, 0.5401993441181894, 2.13113907669476, -0.06736273458461677, -0.4376217094132273, 2.0209360147772903, -0.8686348491406586, -0.5959549181532089, -0.07368461391702791, -0.6239631785616986, 0.7773866927941798, 0.11011748990809683, -1.2536898867765167, -1.2624605851623882, -0.36794564056415646, 0.09051522851912584, 1.2525539751550618, 1.1275489048651324, 1.1511287731200077, 0.3626134005593916, 0.3036796205237949, 0.5498158374797496, -2.5757166319272637, 0.03258826564951455, 0.7244624543191436, -0.9657852487852534, 1.6167742546210673, 0.9262406969828091, -0.26251442860739543, -0.8526911345858897, -3.276293585027624, -0.08979644944614103, 0.19750787179269813, -1.9782339477067203, -0.38173195557222467, 0.7103545160999787, -0.10087087895843042, 2.6005917933214717, 1.1258430113666353, -1.0251554541628438, -1.1038363586892754, 0.15814646978352065, -0.22280315643361745, -0.7250925683793146, -1.3974832254610434, 0.16371710350460583, -1.0080616128842728, -0.4341416653585909, -1.4567154479275508, -1.638878933563385, 0.6522625093453028, -0.3735759710032237, -0.5500433958049216, -0.048520453446403856, -0.3967779974163525, -0.010947241255059045, -1.6873853451080398, -0.7712218801577373, 0.2215299369646929, 0.1661444753701254, -1.2316597208268931, -1.766034261980828, 0.9372928112210054, -0.6214489561414415, -0.4177238847783714, -0.5947148477506854, 0.206061746009629, -0.9856388513851787, -1.9359241892449242, -0.7056587975305956, -1.160089391316127, 0.30021550839904315, -0.8054305534007157, 1.434110032223023, 0.6862674536818665, 0.1732875572623742, 0.28709671476360044, 0.11689116409787939, -0.10465417894462913, 0.15509974644532812, -1.8247887355366135, 1.9095327553184813, 0.6672620806721932, -0.4776845264353834, -0.11323754906981288, -0.1402700610750517, 0.6899539053041142, -0.4364238800341683, -2.2408973063884563, 0.5992972385059014, -0.10700424335736392, 0.3830451982648973, 0.7334744834652819, -1.302594940301976, -0.24430930103947432, 1.401061854471046, -0.49381473066609255, -0.06165532725705632, 0.13714417755340755, -0.9959785874599244, 1.358280696511377, 2.049248884011195, 0.21260604530084198, -1.286449221370142, -0.10999940082913157, 0.2776988988054581, -1.7890335248308216, 0.5011131442287516, -0.45773132422801543, 0.28801369063486343, -2.6214048694197536, -0.7318606310926702, 0.7753055271812491, -1.244965953638917, 0.43233656346726934, -0.38644444150468726, -0.5395665184205852, -0.4650688061774596, 0.6594931647422573, 0.48655826616357983, 0.6757071641327597, -1.0956988451146625, -0.051824983098859564, -0.6663237127427617, 1.2147760186661318, -0.8748926336286857, 2.0412629007071423, -0.10889710349218534, 0.4632538646717684, 0.8289471178326889, -0.8893846741506304, 0.2714716391018295, 1.4368673337221247, 0.4607861317428441, -0.7419172555075848, 0.49068334217096615, 0.1317803078804538, 1.8536492613900242, -2.5891023598159735, -0.6128761582120106, -0.7690390976485804, -1.5133962590333243, -0.5547580138068551, -0.19434837568366506, 0.7227451802283806, -0.8117266394282131, 0.5641816863834903, 0.7936477406762706, -0.7895127552333454, -1.3283490912547902, 1.0418138392751675, -0.45909774932826375, -0.4024788058714157, -0.3396871707340301, -0.08003733963291147, -0.9030601425553598, 0.6011713512787626, 0.8432372781893436, 1.1568661575409687, 0.5857833916173736, 1.3090086176641134, -0.26270039378241355, -0.3090162519053921, 0.12364024011959993, -1.353591174470215, -0.72718486984368, -1.679652607144814, -1.5350757359269964, 1.1717669483013808, 0.5047208398715904, 1.312730480072686, -0.20466988350654483, 0.7427250181121409, 0.5854357902363128, 1.1364106350914325, -0.21305415495137714, 1.3911564126797114, -0.5381303407896321, 0.2677276668487068, -0.0207488173255577, 0.551265668503944, 0.5822609397000083, -0.7024846414178811, 0.4496219664638158, -0.6569409039697979, 0.00014749046284635988, -0.21810807945179397, 0.9895204624203713, -0.3878109508789135, 0.15660448470397437, 0.6334358917511236, -0.6843137012589415, -0.7880945156221516, 0.6739752688519025, 1.1498320740789822, -0.8310066614571393, -1.1483050181381877, -1.7176560432179495, 1.3423413236144615, 0.2703732272751108, 0.20022048848346544, -0.28535014978890105, 1.2321717763989315, 0.17878698296545106, 2.0474714321847207, -2.218007866045998, -0.15593799161867458, 0.9874159866129086, -0.05203676332116081, -0.3768655811916484, 0.340082726084316, -1.2241654666613806, 1.519609691470297, 0.7480880536704708, -0.24235421921911152, 1.0389478594185932, -0.023696601013057775, -2.731401327121345, 0.4686547667215553, 2.0067356611633342, -0.10691762994131755, -0.0780284510072423, -0.787779024728249, 0.4204045553691746, 2.12510512886915, -0.7822485085308984, 2.169786094630264, -0.22780511950811505, -0.9762084920889067, 0.2601884114590823, -0.4514905352223423, -0.9066492882558036, 0.3359044641841381, 0.6228601984246199, 0.013732464616283094, -2.5554986059073164, -0.6123564227827282, -0.5919950370423357, -0.29031910711259135, -1.107514580775905, -1.749238340450141, -0.016072273024874382, -0.02718217104744756, 1.2266892692236788, -0.38813935170488023, -0.11089439748087702, -0.044325170459672145, 2.201904683197928, 0.6331618738824568, -1.0952696700246263, -0.050188553120664205, -0.9435044966446887, -1.1550301691465403, -0.8957697122281655, -0.025741087377263775, 0.87232640291471, 0.13817168399135923, -1.4966747947204562, 2.5113307531138584, 0.397793885020442, 0.8636594270919434, 0.09266888871886256, -0.2838388532861987, -0.8050750927008953, -0.5133821958967058, 0.8329679284372326, -0.7839055681652001, 0.11057116938475288, -1.2984936272351204, -0.03153718330269243, 0.07188161838548879, 0.2820936266419443, -0.10936981243140839, 1.9862733774805965, -0.1025111374353201, 0.8914739076555154, 1.2446297665397363, 0.14021755885375137, -2.0784047940276777, -1.4562639649723177, 3.0308782062663657, -0.7364571506778353, -1.8948871139072068, 0.09266074654032666, 2.5858864796653402, 0.7011375843859683, 2.055577448193849, 1.2377849984291098, -0.9721897961803663, 0.10721910002453353, 0.7715381337195196, -0.19685434139662686, -0.1854302974808354, -0.5900069834207242, -0.305310597681383, -0.08460909058741972, 1.4554992941561538, -0.07699891486229055, -0.45914877194368303, -0.3072070440380539, 0.33329060073090017, 0.3799272964514441, 2.6193712724335216, -1.6957490854398878, 0.45527924699496297, 0.8271082645960517, -1.0967647024654128, -0.8522980959472443, -0.9268913042625971, 1.0142027384414993, -0.6571334305798207, -0.7992554080235916, 0.7365839788877174, -0.4395671887740691, -3.6255746711674797, 2.0956126395874612, -0.7029027313250941, 0.6645227676988358, 0.11201030533562935, 0.32015444007991556, 1.091700661732057, 0.7239026921818954, -1.597098236537274, 0.3241800233516898, -1.2586919056078958, 0.7542333146945152, 2.088352041784857, 1.1503486967230216, 0.32601790668186137, 0.24581218558538362, -0.6448409864349319, -0.3929470280587529, 0.6433292361998472, 0.2930400921367323, -0.5527956340161464, -0.5780967218442492, 0.11149790422928449, -1.1451014060071816, -0.8643746204120661, 1.9236216411464637, -1.0829774680813542, 0.02964933780024371, 1.6388843762787162, -0.2170362976630594, 0.5741900963232388, 0.5812219091695543, -0.9246288819890629, 0.853395395985159, 0.8144137019866495, 0.5826021576967765, 0.38334065937084894, 0.6916131451978518, -0.7372250716964525, -1.2823964743426732, 0.8581111661424587, 0.6795197258475113, 0.15360113577582563, 0.4833601303726862, -1.476640112554658, 0.6054488590109244, -2.3744581585776956, -0.2765253367482592, -2.1392138517555934, -1.6283062249304003, -1.4725705831788087, -1.7723474770217134, 1.0549175995460116, 0.399447257538664, -0.30498453864300556, 0.916492293555364, -0.1282583550341477, -0.04608724244458106, -0.18842994671510377, 1.2839421704836167, -0.00622580314947148, 0.1272974042228549, -1.1033890749245638, -1.137834042706442, -0.6706987565700648, -0.1561656371845612, 1.2472480212322856, 0.9954209410330478, 0.17737743911605272, -0.3725797557204542, 0.3464152748075999, 0.9321161463703942, 1.9010051925735048, 0.044508989092054474, -0.5010070384420584, -0.3129036033804393, -0.41765037222711415, 0.20601852676492202, 0.10846982578896724, 0.4756264406118859, 1.0327852960089774, 0.715992092601853, 1.0597591350567293, 0.7156233369893211, -0.007240521275677697, 0.4925938781596607, 0.7085747641226526, 0.9571740443596359, -0.5979030068347008, -0.30347343049033665, -0.5039041046501014, 0.7528183636574077, -0.32934238566074875, -0.07594534578399602, -0.3749136621266525, 0.8446158926208857, 1.3730869437654751, -1.1714230158699546, -1.0763971104930616, 2.091793661128737, -1.0445315882324149, -0.4915640315145156, 0.3782390617973431, -1.6000088330325777, 0.2927011968220073, -1.1964535206001152, -2.0876415300167532, 0.2777296390493463, -2.0675323906452396, -0.6270523903998838, -0.0034834728267064993, 0.2760286485989782, -0.7456400894071832, 0.01710079025428716, 0.4908969333999997, -0.4460740892208475, 1.4728074114934537, 0.7113122412124357, 0.27915144290560406, -0.7050564489244991, -0.5287863829199181, -0.46552315445123166, -1.4483922001505578, -0.7163060262327597, -0.3603850686089001, -0.269813203624149, 1.0285895886324488, 0.2816197192073599, 1.1794056149048093, -0.8546616291120445, 0.8195478934082869, -0.0025285097351690324, 0.49604430449789755, 0.0760447542957813, -0.4470521583650818, -0.015535983690080689, 0.3900254126894488, 1.0398533182373113, -1.2053170851472657, -0.29579775327685953, 0.032754312091820635, 2.394761795167886, 0.8826200359436971, 1.2416857072091707, 0.2334798284865238, 1.0961365076463703, -0.5885738567623802, 1.2461061538008527, 2.0353172158957, -0.4480530902171379, 1.276361269180176, 0.6039702203394152, -1.1203639938621606, 2.1196733150692415, 1.4402601982066576, -1.0068825363212346, -0.07304274370123501, -0.6245019388436238, 0.5504960289164187, 2.1347855182311393, -1.398339669864827, -0.12373274526182935, 1.053678431137818, -0.25040758028677196, 1.3380986263937447, 0.9376959487245015, 2.424183890113204, -0.9742212149455797, 2.6248769422700353, 0.628522799015586, 0.26943951668501676, 1.8708213886644542, -0.08385184251566447, -1.6565193339343, -0.18137939095932337, 0.8414149055092865, 1.4335638261225307, -0.6116246332360795, -0.1348931199428536, 1.5432071825336757, -0.9555879124292445, 0.8812264854318262, -0.34923377677863743, 0.011517124803642382, -0.045263758323637875, 0.21471346449171516, 1.8976072921030642, 0.03509949296396598, 0.2583481235247752, 1.2811740702105452, -2.158148439318776, -0.6559326619619589, -0.7864247037129707, -1.7917953660867618, -0.4997520393294959, -0.07936558315247616, 0.6688916323792659, -0.09881734853628062, 0.017949637085287157, -0.5631407200542172, 1.9726446959710686, 2.4737867154256707, -0.17181040183238522, -0.4428087995191096, 2.065842326470231, 0.18426426681003436, -0.5116635355107398, 0.02877509590860282, -0.06464153454083924, -0.4310659260380883, -1.4371114800024312, -0.397281409456211, 0.49506400887187263, 0.26507451231112295, 0.026729008916878235, 0.6720715532230268, -1.7275254579388857, -0.8471195592681345, 0.46425371647978353, 0.694363313542205, -1.7841790934832606, 1.0627081476507698, 0.8898630845166374, -1.6198707693449859, 0.5062144038819497, 0.36784541992774344, -0.9955772949979382, 0.3691912267559266, 2.641231812516309, -0.24703879259340933, 2.6397546545093045, -0.9381899379981194, -1.9463190940687378, -1.0166368329129791, -0.39920771784456616, -1.875738756737042, -0.17868003901179036, 0.7697475572313197, 2.337447892921156, 0.16788443182689636, -1.1170934062590243, 1.172324979087246, -0.35659143987057407, 0.5634027291783154, 0.6209329848114131, 1.63445464074875, 0.38853184010295805, 0.30300080544610447, 0.5849709047659652, 0.3025410028716179, -0.35383966061478916, -0.9929364657220573, 0.15396463127448695, -0.2918929769042343, 1.31251950138722, -0.5914787478239056, 0.028431267785330044, -0.7024426470850488, 0.28973047298417975, -0.3452422755226256, 0.05764898125739564, 0.07352778250575606, 0.049418603031896303, 0.45921999546978637, 0.9304467432627798, -0.8782474009349827, 0.7279285485747221, -0.39931536187031985, -0.6683262475683689, 1.295172232434269, 0.8051605934558947, 0.5411765354232853, 0.008904521983936287, -0.960285275957567, -0.5237680279258434, 0.4528530881128879, -0.2454285416140124, 0.09352855371013989, 0.5305253367168896, 0.38377311178132273, -1.446805427158416, -1.596521437782275, -0.5659796640976523, 2.2370661331191393, 1.7062487222574885, -0.09251268903304344, 0.20192470282045522, 1.8487906375709353, 1.2005072722269663, -0.5332902989307972, 1.1874796228623492, 0.8453344604104334, 0.2281846678350881, 0.52230869766237, -0.4277177649208347, 0.11441611338657624, -0.32600567995842367, 0.6525765147776236, -2.171997831282134, -0.3692249081952905, 1.725385893674046, 0.42575527854016904, -1.671960432380452, -1.0056395015579025, -1.1059904736450619, -0.4945687333537906, -0.6377443325217099, -0.18437458557887104, -0.9787059102607778, -0.125193734098275, -1.9651866990811386, -0.8325178640480501, -0.7128758881113366, 0.6410699134580173, 2.226810714592145, -0.5637605822224363, -1.6545670463855275, -0.7958266658851386, -1.1334765416816328, -1.1877168631453359, 1.5859475143432349, 1.5492177530456295, -1.356882386417454, -0.9912725231805085, -1.4671343089394175, 0.609927340585346, 0.5356890235180676, -2.0143915062194457, 0.8630792524712482, -0.702188631563433, -1.233969036290768, 0.21501026666396364, 0.8555391444611415, -0.3698431956543991, 0.23458981559349124, -0.7908784757896153, 0.052168439815245195, -0.4597900294995818, -0.3192656186463464, 0.30630098257112004, -0.7645986180776552, 0.7111189951968527, -0.4581279197666745, -2.015228720884801, 1.430767193117936, -0.6610311370870386, 1.3181404995135395, 1.1603020954880956, -0.8779743326783883, 0.4390422552106852, -1.8674935223434665, 0.21526732096979348, -0.669349970166722, -1.7949820543476813, 0.21869100508764458, 1.0812199740052018, -0.7025741999078031, -1.7346582602030867, -0.43503108418905884, -0.0709515722968359, 0.30688151016071086, -0.38907813082217113, -1.192236504752183, -0.5332034905961085, 1.8617910818593988, -0.571590020557784, -0.4615064187379305, -1.1120994056611897, -0.2961075694292911, -1.028338160825682, -0.8224975940012579, 0.772625464138139, 0.09365091206266413, -1.879055792970456, 1.7239101156964254, -1.4076136283797978, -0.07386497700752663, 0.7485166780823739, 0.7227613989508788, -0.22898757512804616, 1.1466524835996261, 0.03544969249742861, 1.4185406113668826, 0.4647313650577192, 0.33063980028941853, -0.45906215596265204, 0.2222742742633461, 1.2655966014894187, 1.5112071572204542, -0.6625259947802782, 1.2428831220838148, 0.4542669458810688, -1.1479431226744075, -0.42891654134492235, -0.39196680787281224, 1.1006523644029567, 1.0444108000047496, 0.4845258138257898, -0.3909799668029845, -0.16525468654242112, -0.17458541526787233, 0.29093048596162624, 1.3804772993955297, -0.9186079570157724, 0.12010074927715736, -1.0348948994553038, -0.6710523872582871, 0.5854235900965709, 1.2819439649826003, -1.3687364311824195, 0.20378905016828358, -0.5607008382284104, -1.4190684797064501, -0.4970171485347386, 0.2725221230211959, -2.6092500375157126, 0.5709826384604275, 0.5483965529716183, 0.8195421732256021, -0.02214414942467868, 1.1740598044745756, -1.1270124546214437, -2.1034319948241946, -0.24107908011450938, 0.4363845585941654, 1.0047947151570145, -1.242814097892392, -0.3932005221669779, 0.253396939060416, -0.45982911443832414, 0.3361310775728169, -0.30688326136792193, 1.988633985544967, -0.7205302604745984, 0.11383104210684586, 0.2992844101167276, -0.18765612483188254, 0.4331524355399475, 0.2508231391931468, -0.34291875991483645, 0.5382558217153104, 0.441787256383283, -0.6625091578794549, 1.7254266816672192, 0.5080344544594904, -0.6170841699273106, -0.5505602356146491, -0.2263461474470278, -0.7278171386036572, -1.4452398960638746, 0.6530442990750277, 0.7503378437286791, 1.241881869172175, -0.00041020425368067445, -1.4639873750485715, 0.012727964820907102, 0.018333735788217023, 0.5915328319478956, 0.5516966933294192, 0.059011303124862406, 2.318613998018903, -0.7393011460880949, 0.1873465547680035, -1.3587072562546896, -0.015572586628242784, 1.5044012868074788, 0.7433356827520422, 0.6244797315062219, 1.1694222375758656, 1.4519390077894578, 1.8115931862749484, 0.6877255963945698, -0.8990376429511764, 0.1608183515095989, -0.38068848897421415, 1.9435330623526321, 0.09017473281793716, 1.2407742703632467, 0.4510313860941297, -0.5120193978853558, 1.5482783247878245, -0.6216515648142314, -0.9119301798788307, -0.5600621211194786, -0.9507638442764891, 0.19762557115303078, 0.22931086768034825, -0.17410292921318593, 0.20556075623325695, -0.7096705281025805, 0.5190078522585246, 0.09463667218129085, 1.322189210791603, 0.5070315729793702, -0.899593881942092, 1.6738611918453656, 0.2992290394108274, 0.20757546194838888, 0.42208896834579657, -1.7950779096440646, -0.3597428512041776, 0.4906094879272633, -1.155975098489361, 0.6158074653355038, -1.4229993550807474, -0.266075242108835, -0.9482403184831891, -0.7203113373103777, 1.5851060960934922, -0.6272110398424893, 0.11933375308298518, -1.0470313038513268, -0.19222848947796642, 0.7950328142112402, 0.20005861685235585, 1.442198563638771, -0.484360655195834, 0.17018418701573507, 0.9390934548506026, -0.45726105634851183, -0.2975705388630931, -0.5256365813742819, 1.3114024116611485, -0.2026248207814642, -0.4125636658768234, -0.27113592968490247, 0.3261193513562096, 1.3632007034743863, -1.1584051136709652, 1.349960713165935, -0.06715696596522897, -0.7200346862094581, 0.08656564188708503, 0.7703638517848562, -1.585316936910117, 0.09331214783815994, -1.369099950547771, -1.1421513467473907, 0.976090683539153, 0.9949171150383946, -1.4301103198821528, 1.8817852136425233, -1.6415346369474313, -0.7666171949134215, 0.19093582248422228, -1.1071285717651973, -1.3184973577219858, 0.6853291369560067, 1.7342769617347245, 0.6988492197633712, -0.7205535356805338, -1.710437585569751, -0.1837262664857682, -0.375464812012217, -0.20675685685331843, 0.22841728338708714, 0.41931465874257035, -1.0974914706624666, -2.0827478374866804, -1.336357142681623, 9.225876520300004e-05, -0.255096587537523, -0.37163966111038954, 1.6216544275651523, -0.541168554451086, -0.7883239773506403, 0.34405672523644115, 1.5655227676624095, 0.03216101804503081, -1.731699859996516, 1.544473170370189, 0.8949736069673812, 0.8327185965612792, 0.9606905801764983, 0.04807123747412187, -1.4450516517863543, -0.32459252726722193, 0.10728896827926912, -0.5342922258101453, 1.3819821963308632, -0.6811872253193648, 1.3370864499172774, -1.6847428243327502, -0.9147883625196719, 1.0311878945751651, -0.8490651878086644, -0.8317489995203342, 1.3676916267582928, -1.861191746275048, 1.631970226226656, -0.5014842537512393, -1.0296488123515002, -0.589651351254958, 1.939929781781432, -1.43318153191745, 1.2122838972682497, 1.0503861838151929, 1.3641767539923038, -1.1819813401929795, -1.1486058705321565, 0.7966874232090928, -1.2134986037313698, 0.8686755227541956, -0.3150398849042216, -2.1866794266864917, -0.03532763371549481, -2.151529090548478, 0.9126123738081354, -1.1543544590152688, 1.2344902242186202, -1.9740873730583621, 0.8891499092925075, -0.14306553880455442, -2.8760677300090616, 1.094134584456491, 0.3062108547240847, -0.9987259125662384, 0.8710808403433022, 0.25553859943589646, 0.11265257457344374, -1.1291667631581035, 1.075034724899282, -0.17305058792956135, 0.4481057908685047, -0.7640680715539737, 0.44104202721464436, 2.2379378665517615, -0.3104316175076187, 0.5502883818889146, 2.4894296121383315, 1.0163151933488779, -2.216217473437481, 1.0151100546289413, 1.9690672864063468, 0.021701781076094096, -0.29097264782218096, 0.28713788157463915, -1.1005377297156944, 1.5229417339714362, 0.8897617957323225, -0.3493659096793175, -0.9696089332899093, -0.40953578572371513, -2.8065879968162526, -0.5826934744232096, 0.7872009556373514, 1.1002753942230958, -2.2727309654279186, 0.12660980275803724, 1.1988792809447866, -0.9178789611433537, -1.0983029638486672, -0.015510098177106562, 0.5700261555134583, 0.43623108299632896, 1.0491253817887376, -0.5291893238996832, 0.009789494007183774, -1.4708760036052337, -0.548593279745801, 1.075147303891382, -0.2698131011085348, 1.6577769317647837, 1.4834048755422147, 1.5819687439288517, -2.3232440221559476, -0.4823127597613845, 0.6402439559108749, -1.53813367881673, -0.19414794912159794, -0.9824939440412016, -0.3329516226018048, -0.10986631278720993, -0.8886839519363756, 1.7340991546477802, 0.8755466016723885, -0.34912466552708593, -0.5414866927643455, 0.6937782108207439, -0.5016678710333512, 0.2709405868241101, 0.4046403781256782, -0.46822384429436364, 0.8607721141876409, -0.242538815254053, -0.43068852486629233, 0.10306799078543977, -0.7706709654098337, 1.3377455878521944, 1.7427387979970508, -0.19012442434034335, 1.6720161904328459, -0.4877054136269119, 0.11172898844319364, 0.6011764250155707, 0.3055561608435273, 0.815562050418171, -0.47214871352964144, 1.5348675865092274, -1.0900684374100067, -1.2431022712502304, 0.36542626280109797, -0.0902310155064497, 1.2542243158396875, -1.0487712355211147, 0.30934664408103074, -0.8638429342145754, -0.8718173069597127, 1.4850952132513424, 2.2440826640803317, -0.09767740295180628, 1.6997146662606968, -1.7720029049723072, -0.2914570063789153, 0.602345051983786, -2.2940948170571684, -0.9626879840698619, 0.6614516193102629, -1.120942964975012, 0.4550058972906175, -0.8832890935616029, -0.03288176479053942, 1.7299771134277053, 0.7097823920241808, -0.13586763476857147, 0.06562844231428934, 0.7507157191030616, 0.6679640928463627, -0.9158006324903043, -0.9074767354736445, -0.9864844711655253, -0.5304425486025339, -0.24104532962282652, -1.2165286639077324, -0.38803260912279225, 0.48932394863595274, 0.13237139668869874, 0.4288818065051061, 1.3973138493663801, -0.05389589776838731, 0.1848182860268803, -0.6618677420418279, -0.42725249378916286, 0.3613448919184258, 0.32631081996508887, -0.10261566968022959, -0.1347137466468277, -0.9788328502822965, -0.31819728341472153, -0.11726583808131119, 0.264529534995747, 1.5208826849613222, -0.8656911605713946, 0.5665058137648964, -0.3653538739950048, -0.2623416529438668, -0.20816155575006745, -0.6329142392813027, 0.5923753182575205, -0.43973742257705234, 1.1114350365222174, -1.598912508963379, -0.16486579739016982, 0.2937961757256691, 0.223303865591507, 0.6563869910585873, -0.11707435580596551, -0.5762901948999206, -1.2809573290577068, -0.5600029103588473, -1.344526495021467, -0.19119240350005173, 1.2183993418377217, -0.37415530367646077, 2.8250368174006146, 0.8076931981489749, -1.1445477764878553, 0.4496516579729574, 1.5505230780801706, 0.6295561066638735, -0.796744067784446, -0.7857573566528079, 0.6327570046308886, 1.9569957004631398, -1.8200064930805373, -0.7628187899141569, -0.13753078498439888, 1.3041962804330145, -0.6876391752484985, -0.5119861753248054, 0.6863704194855854, -0.12536827984011167, 1.770261386484383, -0.7055874670946541, 0.27583443450368234, 0.5583696880127114, 1.4321598823175956, -1.9803663959274573, 0.3152001458115639, 0.2543588806638787, 1.3118599969057383, -0.741830075664273, 3.138287696741559, 2.4453152420214526, -0.17837190157994026, 0.12241333663398958, 0.9712030131887602, -0.2915909898228768, 1.9433219281697038, -2.4461090815971045, 1.1444071858377143, -0.22173574552353267, -0.985826696000046, 0.32248255453923447, 0.5279484110207389, -1.6626473839994862, -2.157872488495301, 1.4056565592746053, -0.9738364376960442, -0.04538898408647412, 1.7548929909275197, 0.9669866389495605, 1.2618949942611992, -0.030165981670733692, 0.10028938634023665, 1.0044747538054897, -0.7306628646422407, -2.8713938359111437, 0.8136611428281003, 1.1528351894126205, -0.6079289400092264, 0.04838151110495739, 0.5797291030797533, -1.9568196385718657, -0.5345026074533893, 0.837479071381457, 0.41919072067105584, 0.07697741718584958, -0.4257647967105299, -0.5339924939801517, 0.032409663673363474, -0.1442332855567394, -0.18230002764233824, 1.098810933208206, 0.26720892878896885, -1.377353606110737, -0.8731012721909327, 0.35561954639549775, 0.3278314308028802, 1.835952229987414, -0.371279587822896, -1.7628299696877172, -0.11077362666256721, 0.06134681257923749, -0.4388789772763466, -0.6984217063814759, 1.3953354687639254, 0.6851735001726932, 0.32340476366463816, 0.0708667491814398, -1.4919035349960792, 0.7093203766188507, -0.10372552178837748, 1.3615266168100868, 0.6878766638235039, -1.7683673568740745, -0.4887375175903035, 0.8578900257568127, -0.4003436179812172, -0.4650574837771276, -0.8550099933782781, 0.6009660931311602, -0.5015839769947686, 2.1109340463179334, 0.25064736762541756, -0.3683981924147426, -0.9449285122510326, 0.9670951132104311, 0.6571197156730486, -1.2943156868733336, 0.009577388701349023, -0.6092895180644989, 0.3993228021344228, 0.4959635329577566, 0.9867812283089169, -0.893541536265668, 1.19392525820753, -2.922821390189415, -0.3785399987477218, -0.17161570650517735, 1.161114947357422, -0.7894046009577419, -1.5192487943192357, -0.7523635713254831, -0.2783258462696818, 0.4949661994697081, -0.7683090555020369, 0.1638816142569453, -1.7072480499810887, -1.6173064876186107, -1.1835371211365227, -0.2208747325062204, -0.1446661945786451, -0.3596670165164185, -0.15072740037018315, 0.8382137217800806, -1.599536208828792, -0.02865937149687935, 0.914983911897289, 0.7639090450211357, -0.14131718713401722, -0.5707231029563692, 1.2060315034889721, -0.11603279893748697, -0.2118909380977137, -0.09481371295791613, 1.3410835844820892, 0.3294313037860368, 0.44516104503377985, -0.20267071658771152, 1.2423842020442986, -0.09135486279613342, 1.1446896552509556, 0.9809679411232355, -1.0588403057742115, -0.6486569652431318, 0.6574492757132199, 0.747061907372161, 0.9481868550720689, -1.303135653302026, -0.04265305046620777, -0.1487105611946793, 1.9260979595855698, 0.5292263605445926, 0.43494460700284465, 0.20265786435040115, -0.09480169966389207, 0.5621369632971034, 0.3467353481091113, -0.6179898407596391, -0.6725077373211173, -0.4006802091154795, -0.13209825257464589, 1.567584554396553, 0.09417706681950476, 0.6217417110145512, 1.5407951275645808, -0.5433866026052261, 0.43780382316885696, -0.6046132086554111, -1.6318216966963461, -0.1677893103335112, -0.7400153189398048, -1.0528716160506777, 0.26951311417248924, 0.6826807584761005, 0.5078387276930932, 2.283267841932326, -0.21346526577739722, 0.35231814222864644, -0.8913357174947906, -0.9172065703168589, -1.043621861651787, 2.124374253325849, -0.6076592288682413, 1.4122492377103946, -0.03404648522753753, -0.9518102741560379, -1.1882286779896922, 0.18878733617075638, -1.5614404921114189, -0.2803043949675876, 1.539557955445071, 0.21460277331789993, 0.9075877576724836, -1.0938908734343975, 0.7685523900112206, -1.531254975708265, -1.1673043239628529, 0.3357743768591261, 0.7047544556037343, -0.9506157931099102, -1.5620167988335125, 0.4260917987109353, 0.12309087808550259, -0.796571299745762, 1.0464080192327434, -1.20061629983369, -0.9294497736971982, -2.0492009342239843, -1.1460948313964274, -2.394245882442563, -0.8223669148043226, -0.5190083649114416, 1.4018682408951344, -1.2012521257947473, 0.2924989772263563, -2.4935744431359743, 0.34237405711224184, 1.7373785596497795, -0.5497315089541486, -1.042777361982151, 1.2530793225056094, -1.576181719306885, -1.062960664363025, -0.3799931104196994, 1.667150731274794, 0.8496149432348551, 1.1391684843805199, -1.1316692864166866, 0.5545428100601176, 0.9244319319660724, 0.2485138278611691, 1.2233477402551391, 0.6172822793220957, -0.4525265718064101, -0.9667581753429757, 1.8432843281491693, -0.10563884023770848, -0.22945593687500124, -0.691820050899953, 1.2656047027924326, -0.8008272392881028, 0.14015792365200652, 0.19534915676548575, 0.14537461018782794, 1.3248918046501115, 0.5459454628269181, -0.9534066445075045, 0.5882927090927639, 1.4888022519160073, -0.7781785371899634, -0.6311793533595321, 0.847604567583541, 0.9410970094661674, -0.5358353756156112, 0.3302372920994274, -0.865500850432809, 0.3585292252937525, 0.8692244218911455, 1.1076370205980932, 0.25357014470582534, 0.44777929502368696, -0.6024555237978747, 0.003007622467172508, 1.0839342559992386, 0.3298652933595734, -0.17906572778399557, 0.20650982364307857, 0.19348124578545908, -0.445744001436158, 0.672452424301617, -0.5757281633213963, 0.7088467152430857, -0.6804363119712116, -0.41152677087027073, -0.4484628994858505, -1.1077836939889816, 0.09613991412009625, 1.3574934618772148, -0.06403135435587619, 0.6648455581846658, 1.1268646909571427, -0.2022388970726062, 0.7822929547324711, 0.14698062492543865, 0.577619384411652, 0.7875828764666128, 0.25430699107411125, -1.939145320674877, -0.6049402479461969, 0.2814844113186911, 1.587971009514591, 0.5957110118554435, -0.43710914377273574, -0.2876050302022696, 0.5147624191169039, 0.3196991601322889, 0.8924065423693136, -0.42552706023475284, -0.1575327867630905, -0.446140624561896, -0.5378141408081182, 0.10577172025659277, -0.5537135844789687, 2.1861759951623734, 0.4712030182757468, -1.4763506210187447, 0.39104308865447857, 0.5815895151594946, 0.9651992676745061, -0.11130453733585317, -0.5542723418453802, -0.12283043961524473, 0.37401498740861727, 1.2920667108767925, 0.16832760077138964, 1.4945179701819602, -0.20164263397323473, -0.7085784812390568, -0.19887963386669144, 0.3944230564353636, 0.9903549281273322, -0.1710853408095354, -0.16725798592793367, -0.2775194567590475, -0.4425808464537706, 1.210474805134921, -0.7588687810578155, -2.471528885505406, 0.34167913938761396, 0.44815299819248966, 0.21190499504101226, -1.2194739362738811, -0.2541157655485434, 0.6141041920453559, -0.8877313992178999, 0.5255822814995849, 1.696001748121715, 0.47096001225107487, -2.397280467669203, 2.890159416176639, 0.3432750119480249, 0.1593855159284628, -0.2739256022522742, 1.2210573156649163, -2.2194125708719583, 0.7438821899445105, 2.3458300265069094, -2.4017874086815665, 0.7093994528109597, -0.18275088673327317, -0.034366218906748146, -0.4968321742440976, 0.6375594763493551, 1.20485467925443, 0.9556080487503239, 0.13791307337673372, -0.15174230065824929, 0.9565865602329687, -1.8090788038835135, 1.9025550892301286, -2.124563252211585, -0.5032842566982858, 0.7695096228706775, -1.0216445046762181, 0.3731890459173382, -0.5198002981386585, -1.7491468472897629, 0.0007603924132696381, 0.5505689557762006, 0.3989811532679174, 1.582663214774502, 0.7783911395920016, -1.5335661678190209, -0.5257807028261646, -1.4497910863512584, -0.8065462168252255, -0.6479613946536015, -1.2471380292032603, -1.2395024679682916, -0.8679571571896101, 0.3721327328504366, -0.25280739279362685, -0.9905063944271382, -0.09033036454722809, -0.6792427261013443, -1.0481620181176687, -1.4666441486097392, -0.9270012117042961, -1.7460742063482304, -1.1531521373747038, 0.42733841170117304, 0.3760040325221474, -1.8569281002201856, 0.31711435879034605, 0.21548430023164855, 0.8167426098969384, -0.6249532104784212, -0.451089166584912, -0.8011288269912845, -0.6606640904499608, -0.31815059916436084, -0.8568719176056038, 0.278801646184626, 1.043117466358706, -0.00880730820336306, -0.4687344293580645, 0.16730886685151536, 0.2811390569631297, 3.072026842390765, -0.011930143891543288, 0.6191835114604161, -0.991406517111236, 0.3577122747802377, -0.4921649134016157, 1.2239910521041264, 0.4624500160987745, -0.16867454089790615, -1.0504229326647405, -0.40811846925588613, 0.9099978488523686, -0.650753006644742, 1.4997178180507256, -0.2961945219798545, -0.8003401756401389, -1.0165700092233259, 0.9162287560726864, -0.7007385590475376, -0.7019643922778823, 2.8789270292779023, 1.1887465904872663, 0.7774254636132721, -0.21309383731116308, 0.8532459776244452, 0.401799803582161, -1.5912316000065532, -0.008406704558142793, 0.133855773959074, 1.0299131259876635, -0.3013326489077956, -0.03175667498749657, -0.52667139733548, 0.014674502591734216, -0.17784046122293304, -0.16072465852828033, 1.726659468685344, 0.35594269177430127, 2.312736804196888, 0.7124454306369893, -0.2870613362534287, -0.43439475087822754, -1.5837629237888173, -0.07802585373869354, -0.38435983800842954, -1.628681376821104, 0.3627651233846841, -0.8127366608729001, 0.9970825396831275, -0.42180120609474325, 0.31161290387301566, -3.206472187502859, 0.9428134964668146, -0.2724141046311145, 1.146813866227615, -0.3544975905169564, 0.19812211022454057, 2.3276052845721407, -0.7780622081109427, -0.10235253349870883, -0.06172602749390174, 1.0051109277169241, 0.16184516740583815, -0.2890021047071678, -0.3563013280572187, 1.3010288958797378, -0.12474531443578529, 0.23976599177742683, 0.5015185528048435, 0.15117939649858803, 0.09777063412795547, 1.9456305674624976, 0.2700092098509386, -0.5563503177680867, -0.1725706487658083, 0.2594109779558739, 0.5026057422262176, 1.3628725788202447, 0.6957211322482102, -0.6146977709393187, -0.5617752803384712, 0.7165252671973142, 1.23827695077904, -0.4343555758316744, -1.6529911399142425, 0.5864235763541186, -1.5162608680289826, 0.6128841465376046, -1.2387788962029618, 0.9597826493280455, -1.1620459598228106, -0.39937157919252325, 1.9833702742192605, -0.3508124013032304, 0.6870119917350994, 1.2917631051968579, 0.14690266601802898, -0.35411651168410274, -0.463075863876214, 0.24146812737347406, 0.5815142944951989, 0.48191744860341695, 0.8152233121411162, -0.3552354269894648, 0.005651605099125621, 0.7500754873722534, -0.5432084716787181, 0.15571457770855263, -0.03181256309021036, 0.338639304186211, 0.6993658706256919, -0.023490438838471305, 1.5586046564903775, 0.7000264789664096, -1.015992294851327, -1.4571678899445675, 0.21417767395310056, -1.3946760678037637, 1.2647573451155822, 0.25907060209830174, -0.13355137819240437, 0.0637348751270825, 0.7005269342207241, 0.36472580782517783, -0.9950183878008461, 0.7616716812724618, -1.4423473658991146, 0.47824341570330103, -0.7922813100016477, 0.2052690154696745, 0.4622317005803132, -0.061599153069826794, -1.6114240323508686, -0.24443442859375747, -0.2539483538434976, 0.13744904782109893, -0.16469675319819152, -0.5216776855878758, -1.4276856462923155, -2.2102912049026817, 1.0332602583489496, 0.6597744903419, 0.5259552750143882, 0.07417928299642639, -1.1497659290870228, -0.9605452268142675, -3.1540288214118264, -0.884436088402185, 0.2575323549417327, 0.7294219676469428, -0.41743742503266973, -0.7188003732468248, -0.16132256268642636, 1.3607153466830015, -0.45478937622934523, 1.4187642837541672, -2.019766033471674, -0.2890703323919725, 0.611818183084313, -0.8398326019102902, -0.6381424469882062, 1.538901361968496, -0.1476744104135527, -0.26231502736356294, 0.7770026156233104, -0.042309881496555006, -0.10451330997491994, 1.5164403773157717, -0.4279616653701389, 0.500865351702739, -0.13304943307822917, 0.40446173741931674, -2.415534486629283, -1.1163706761645213, 0.6597299370755231, 0.8732732207115407, 0.16688614871012386, 0.4112039284282236, -0.801495900294037, -0.14091013005028466, 0.4181522962535395, -0.37319937530100206, -0.28397541090556505, -1.2799228989643725, -0.6589033714879099, 0.7765771348233896, 0.24880529898618864, 0.46468858157253234, -0.09542582490003364, -0.28604211600892676, 0.41371709189550304, -0.2626265795391824, 0.8717617542903191, 0.37252850267859666, 1.0422841864074155, 1.2053793978382858, -0.24416461622362493, -0.23830718343033155, 0.5724386817623831, -1.581423748227715, 0.4285362532347935, 1.1715032293573437, -1.671820589662287, 0.005148509165543246, -0.1369031523723417, -0.01599651790594786, -0.6392724026079369, 0.7040324293002318, 0.4286669698979399, 0.5152866056931606, 1.2180141301113478, 2.6489308316679545, -0.28072671212570055, 1.5216961685204653, 0.23806479901731073, -1.7808856311438066, -2.010533310648329, -0.9576902576409824, -0.808926309058618, -1.1989497831843037, 0.8747923554450366, 1.1901235855226697, 1.3569933860906052, 0.0818064883345213, -0.23659133870279891, 0.3377190790032653, -0.9287786649047145, -1.0267081308139911, 0.6708973159065076, 1.0308785364283684, -1.3553705014093615, -0.3566142007325887, -0.22619915599163778, 0.19310216136218716, 0.07042149745675584, 0.8888369179937902, 0.9636151451646697, 0.4113028300753633, -0.7189133358770265, -0.6754110666086588, -1.2442703618742526, 0.855804573498764, -0.31403054841739625, 1.5690846853846039, -0.5828929325046269, -1.2640383087028952, -0.5153179494934959, 1.3673818031856226, -1.0305053107584523, 0.2331074073682169, -0.6325380589082311, -0.5269697706919461, 0.41817179214361855, -0.5002607019916349, 0.052235791607732694, -0.6897289808060432, 0.5933964139431487, 1.2840156794971813, -0.5298379354763331, 0.3132036764002417, 1.595853635487744, -0.1250448673060413, -0.2765936083577063, 0.4023562499803268, -0.5693853232481321, 2.036720372839193, -1.6304029891935057, -0.5575717605590133, 1.5669867712139276, -0.4809072958119219, -0.4402019616091741, 0.8162560481933369, 0.8480964236215263, 1.4967705928075565, 0.20999701539304588, -0.999173451779542, -0.7786941435773276, -0.9747771743915954, -0.874608887896626, 0.07352754938110925, 1.5184489827461614, -0.21314851064752313, 0.37573388682733605, -0.7814690200788299, 0.07898689986567865, -0.283212332984067, -0.08128597334200136, 0.4646809358412437, 2.0777999799706905, -1.0296836868109425, 0.018065135207024425, -0.9416517755297369, 0.372577627546763, 1.2415183980263222, -0.43675537881605475, -0.7641569743292332, 0.5593804653735303, -0.5798576877807345, -0.05612971710102251, -0.9347371397331711, 0.03292725191938895, -0.9027712120014043, -0.22435420904778658, -0.49900893106241695, 0.9232530452486066, -0.7207281280940243, 0.30170019459312425, -0.8515309618316813, -0.5413939036812284, 1.5375014957293616, 0.47337061386505463, -1.2963755055597228, 0.5110138740687983, 0.29471935019407963, -0.07613149011185724, -0.31400253122032545, -1.6299018819980644, -0.44574496481582726, -0.40749621629483296, -1.0051900711035657, 0.5017491044299358, -1.6841993488142564, -0.1148516229733488, -0.12098810486818126, -0.38296539137553415, 0.9290096717010524, 1.04369128972225, 1.7788369308381795, 0.3847731127771174, 1.3024212098365557, -0.27480239847405175, 0.6992979275654915, -0.32984623711211386, 1.9060189802718894, 1.7343168560451765, 0.033702396261214095, -0.8278512113308149, 0.6689937664892365, 0.5012080484621155, -0.3857882642844309, -0.8139379620048034, 1.163862358742934, -0.31142498842367883, 1.029871180543031, -0.5326983866468499, -0.8172626142557242, 0.8172161228476701, 0.8506887702570878, 0.5390978202871924, 0.16284378771262184, 1.3019085924451257, -0.7201272414780404, 1.7752571002210493, -0.4539515428663966, -0.6083493446161475, -0.7193252655745991, 0.0715480961101527, -0.09953078501032926, -0.11817756147658587, 1.0381678182414578, -1.3461966750844312, -1.602857441237755, -0.3184714950104427, -0.2578534394820378, 0.362184399250367, -1.1964711847283225, -0.8074303860449497, 0.750901255945712, 0.5995295582625795, -0.5498274848468356, -0.3828607986039723, -1.2732599758281662, 0.7981894901808451, 0.9490318916609085, 0.13503203422573634, 0.4998092240472571, 0.4384349131149755, -0.47655831977621643, 0.7277482491129544, 1.118813270979344, -0.7870394970329402, 0.38263363195162853, -0.7228639161018237, 1.1417482524079883, -1.0882216968758038, 0.04689749801914312, 0.14267017634820858, 0.9061343747563894, -0.5248605810579002, 0.10754277469215674, -1.0394417270968097, 0.4471881108062375, -1.2363659072822302, 1.1856857637715004, 1.051532281846525, 0.9770751422688975, -1.1826991186768896, -0.7456876685124162, 0.09838019948242917, 0.21169713043842295, 0.7653162385823419, 1.0414446966267161, -0.7254612212898229, -1.4128828955619566, 1.0265777171260855, -0.33294285225817866, -0.13319585389843924, -1.8167056321926736, -0.7957499103357212, 0.04173237892288652, -0.08147482713015314, 0.9656109251671889, -0.4765425092031064, -1.813956214889113, 0.0066849215639258565, -0.17252760106237233, 0.6115975790137188, 1.173613061150912, -1.179381229739307, -1.1989581822978628, -1.6867927257061208, 0.1769111066179592, -0.4682962281224041, -0.5972463743107604, 0.2635662951830031, -0.3004039966706865, -0.8674232409660004, -1.7719182295494305, -0.4806999771391279, 0.006678959874809185, 1.4286330873444775, 1.248122747899683, 0.6330838070262548, 0.3818970262459685, 1.53268506571852, -0.008156859394443055, -1.0858533799624586, 2.461417006532855, -0.9634670043073837, -0.6455487093015096, -0.2731074960764791, 0.483324067717971, -0.42081923577813224, -0.3028169571550266, 0.29923218575804833, -0.5414609054504395, 0.8317643821750834, 0.8419772206368096, -0.051341613486872904, -0.129307028750021, 1.1565363625481937, 1.0729237869862491, -0.565244598584454, 0.6088172839008128, -0.839591570585299, -0.4014897162579072, -0.8871407482087861, -0.13529830560849015, -1.819166513403557, -0.8086228360650027, 0.3191861696128083, -0.145851253779374, 1.5850786988173793, -0.5007927625730332, 0.605763544854635, -0.21720215853946387, 0.2006940342174888, -0.6679891295902303, -0.14775948458906213, 0.7590799402730639, -1.8346949834630175, 0.32316620407734, 0.2785389984015608, -0.295848249597675, 0.43682450943612233, 0.5272361473148283, 0.5223960494257301, 0.4202286542812294, -2.086828962818137, -2.108988023178892, 0.8322802844178633, 0.7082847963132802, 2.1060685990127843, 0.4389380385992329, 1.007607761533386, -0.27786175207834096, -0.8633848308778452, 1.0590276695763736, -0.5649641858557173, -1.3032965147988933, -0.37080813116851324, -0.5825190431561122, -1.4278517090139713, -0.6428187429214679, -0.8677723129476282, -0.5387355517119689, 0.9968282516667136, -0.6423927282037348, -0.8474337918126643, 1.0168230125880326, 1.4264908873853706, 0.027365009377540075, -1.2952396833843234, -0.3618826845756988, -2.3485861233438943, 1.0332674174724326, -1.023671643216029, 0.31479113997900116, -1.9797565083532904, 0.7453986967988891, -0.33465153863176467, 1.3240297336706448, 0.43057440043030754, 1.056020191836134, 1.1722971320147548, 1.774712303215726, 1.27819636015943, -0.8754266139675577, 0.145915891904722, -0.9920381192236868, 0.689560597548805, -0.1346970931399079, 0.23644813717106805, -0.975773045699863, -1.4748119915993207, 1.540450631117013, 0.9020651302549364, 0.0879669368219469, 0.8806914827784769, -0.6173175612546231, -0.0823145484289378, -1.203190764320151, 0.8169490509652154, 1.0182298257956732, 0.20102596925461041, -0.22904579912889164, -0.09250091169321241, -0.8414482872446022, 1.9043804415210577, 0.7466072635108819, -0.4363878030467218, 1.9025280463408647, 0.5103658190515115, -0.24828064395726285, 2.5733330332720827, 0.02424053145046558, 0.04649491635628064, 1.6730700511177867, 0.4498725516825523, -0.7708254644184618, 0.21094137402214125, -1.000879167715063, 0.952819907067814, 0.12319738877026885, 0.23587619097104065, 0.7039864665629623, 0.8063636972197862, 0.37143953326675333, 2.1470163437276546, -0.935990182604856, 0.02153762552358514, 0.1880396061712824, -1.3759640268834596, -0.13703879716437092, 0.7881315290721982, 1.7031635046296671, 0.7831984381909999, -0.4192243898922964, -0.7230918018783443, -0.02010718886135727, -0.9769675980168564, -0.11299377939281546, -1.9322940841162222, 1.0309775939539003, 0.4476799482316859, 1.0694172352779543, -0.14275339738584922, 1.2923267904249847, 0.6385721403388864, -0.9764424398000177, 1.0340959261723919, 1.3926645421161858, 0.7101525353794778, -0.7516899498030886, -0.756069520501832, 1.3780340469329588, 0.22599761552700992, 0.5947493107580045, 1.2875648926700147, 2.1234177018461877, -0.5428273523593105, 0.5981940586044511, -0.18829325882198047, -0.06058450911483277, -0.0006236219339166628, 0.2581711313506861, 0.6640401125274084, -0.030546487786114563, 1.39837309646508, 0.10288367336724502, 0.37009545611667766, -0.28251217189923267, -1.1379605113786193, -1.8547679977907072, 0.9634425494833796, -1.3155339361453644, 1.4894829998879913, -0.6241619400266251, -1.4819768351537268, 0.33105981242107485, 1.1191038144513754, 1.3597312281236404, 0.39713689693428567, -0.9181759556348081, -1.103514156511153, -0.46194872400735854, 0.5837082172058897, 0.1850358255755473, 1.5191106778285899, 0.49448994151937, 0.5890863534662104, -0.11546689156473972, 1.0871917195437721, 0.546154108991817, 0.8695371429256222, 0.011810831107509811, -0.6412130940211815, -1.094783880764426, 0.9957595188125175, -0.14232148577209883, 1.3499799329910152, 1.19954050298243, 0.19212772047846474, 1.7504729903354195, 1.6874415086951184, 0.5894290715161528, 1.1687435821762953, 1.7075221999000068, -1.396359541085198, -0.3639894016457184, -1.1535714157387662, -1.1910553525822092, 1.2875461954783625, -0.3906240621706126, 0.7207180681676325, -1.5140772183808027, 0.7015151070015183, -0.42428856254386377, -0.14669440401405412, -0.41501872476393786, -1.3815056970263346, 1.9365845974974971, 1.9485528698811054, -1.5281223549422267, -0.8958430899581437, 0.05870802913368727, 0.7797854362959803, 0.3104328625443949, -0.41433693702700497, 0.39959120448205604, 1.264808440377339, -0.48570063693438775, 0.3794564591827344, 0.15334705609786228, 0.29520993091713094, 0.7830268366180164, 1.2256956000670558, 0.0789577682703696, 0.3836748547394146, 1.0065140575876717, 0.2696326441103828, -0.20068713282016729, -1.5284237882534364, -0.5826074605609465, -1.6864260753002847, 1.3617408872577152, -0.568810047413068, -0.7993921718337181, 1.0976050326191564, -0.8080897400405219, 1.1659631417730008, 0.3200021675104103, -0.12542915924667342, 0.08402825690278726, 1.3891310555058087, -0.3225059515173295, 0.2667582145458772, -0.36936330064523437, -0.014886892825451713, -0.49061595854535417, 1.0201023082115, -2.451688362728744, -0.6895221610485, 0.7176461769994418, -1.1140784894473459, -1.8445854328406484, 0.5473617370428715, -1.036107068474079, 0.5629544009311152, 0.2308782524687827, 0.31646965736313676, 0.6186587094384253, -1.5396975787830378, -0.20397558384775186, 0.4829171856216121, 0.10601271123220846, -0.5051258220133891, -0.8244730098503585, -2.494202146580704, -0.04481938447954962, -2.294407619354415, -0.25599030993904154, -0.3963077905429566, -0.1632310949953004, -0.5896910053612286, -0.5156121760294546, 0.17628045480457225, -0.9436327702146677, -0.5250980754747412, -1.124250981571335, -1.3291500229080226, -1.128458573283871, -0.5612448077707145, -0.3838423966110004, 0.9412662555057859, -0.6193718500437747, 1.0106363475910762, -1.1337221187348059, 1.5644286699301937, 0.021194392127322135, 1.0305534597061385, 1.5901755398373347, -0.05688744935288268, 0.28335011614849753, 0.19320833509569105, -0.9491536557364506, -2.71053829966755, 0.016014469673543832, 0.00819419016551208, 0.9294354431350524, 1.0223041552843664, -0.16567666632643424, 1.2693663052606845, 0.5436415184644384, 0.15951375627287012, -1.1274346361051597, 1.0285501651676017, 0.5147749594627368, 0.3848705829086756, -1.124399925214228, -0.6323288572837239, 0.08916257139260708, -0.5690817561037087, 1.2916278915260808, -0.30706481022395504, 0.49115633155675464, -0.45048677215964134, -0.5353069121391054, 0.5091321802274116, -1.4817301781399994, -0.48470828537345845, -2.293413001283597, 0.9569737943873203, 0.9127590942916217, 0.05375669571899215, -0.6023302164734988, -0.11628728837969994, 0.1788597925178676, 0.2709411422304143, 0.7760888868647762, -0.2952206035083169, -0.09564719357075889, 0.5349825974172133, 0.6925829955363316, -0.08151144981523714, 0.14047727952740435, -2.0380796598463955, -0.3317260457595001, -1.349718432116088, -0.9706532674078917, 0.4620722368565437, -0.6506936328053625, 0.15508513507717278, -0.032540912553506475, 0.6256660017678958, 0.09127224469449942, -0.35528782509413664, -0.9927586019102379, -1.1091656992240815, 0.6019252328775834, 0.6027862125849924, 0.9217727040203935, 0.3449957706665029, 0.6793911449674312, -0.9506820416991967, -2.7004854741055344, -0.3922075489404109, 0.9134076951348604, 0.0701349448027349, 0.12314965757106575, 1.8481002513344447, 0.2926118615968259, 2.469809082574037, 0.14668701017826016, 0.9193443349576316, 0.10772503222846486, -0.9814452889515314, -0.4869936400096136, 0.02095830150088587, 0.7044285092745727, 0.3600241853226661, 1.3726982046705218, 0.36486336580417866, 1.5428009444135313, -1.2051235480976688, 1.6452871341168558, -1.6137358741480052, 0.9544379799690592, 1.3106632309778476, -0.3011396697301796, -2.468300180309551, 1.0229108076580251, 0.8511534282197448, -1.783014276318088, -0.9628593447994143, -0.20062809163253495, -0.7401207150543403, 1.5763163186467715, -0.9677171508550932, 1.0123788137049425, -0.22428383626892398, 0.2727381064356975, -0.06267071186797422, -0.8989766614539119, -1.950299378735824, -2.172208825265112, 0.23109286938447124, 0.2850043426260478, 0.21743905917275322, 0.17183033478629017, -0.9751854759979361, 0.868699746155816, -1.2464434002293243, -0.5289880378278111, 0.7767974353590581, -0.2991273477566437, -0.14549337599962736, -0.15064626595772318, 2.014581154097095, -0.35474108913491675, 1.1064130330653068, 1.0081133364370878, -2.098076756001653, 0.21867515730148526, -1.5469917571625902, 0.8807345247510411, -0.30649417572194004, -0.1790096240376727, -0.32385928474173564, 0.42306745363853066, 0.4175791430125676, -0.9744382424764423, 0.2696458640926795, -1.1221245221570924, 0.6043490791066854, 0.35437917447319534, -0.13056673162697868, 0.6635516751768193, 0.17710507918124455, -0.14051730624908618, 0.6488295853434798, -0.033818376852936906, 0.045520290309689904, -2.551497115874916, -1.6973550507229052, 0.11504961914237478, 1.345905569896748, 1.1022378751341613, 0.615747824093663, 0.11420747249062961, 0.5005069312755803, -0.016958342887418588, -0.7770403189059066, -0.3285024989331324, -0.11555472467982286, -0.19113084326856364, 0.5047238709969964, 1.2791531494761754, 0.8350237751499939, -0.33843092281556186, 0.8030964321686503, 1.203278896308557, 0.5945513674104677, 0.5377928849738508, 1.3627691805880078, 0.39278753064689037, 0.5691975272507243, 0.16714210079259756, -0.33509258244168344, 0.012172146837839196, 0.9979746762169615, 0.05033809709880383, 1.0695235752192869, 1.1658679028000174, 1.535886378371113, 0.48097965071224524, 0.407992989412773, -0.5294774400559246, 0.04650168260752446, 0.1449424385274879, -0.03495955853379935, 0.6689589993930866, 0.35505358052658587, -0.2720779194914274, 1.5876645913824485, -0.8189933444623672, 0.722604896638951, 0.9061011222085078, -0.20256868358158603, 0.29925994818814783, -1.181068295483529, -0.6355595590884573, 0.4042295023985903, -0.5935008756071644, 0.27397902670918395, 1.2862079505964115, 1.892759870580683, -1.3318469096556012, 0.38276780464257393, -0.09170821580362504, 0.6951270651466006, -1.1022864997512225, 0.46721170117643096, 0.07792268953577164, 1.459622284149557, 0.37263980491855464, 0.6358289869389342, -0.6076434822202743, 2.549964705721564, -0.6280154918406297, -0.16722796038991092, 0.944420802399708, -0.8295876127631481, -0.025884198021972858, 0.7361128279886718, -0.3412719601384232, -0.5534132812953501, 0.006674766887955864, 1.3650976493340037, 0.3292505014989048, -1.2113182145251071, -0.24354760995406932, 1.4694319988058402, 1.0276239966063117, -0.2981196088307328, 0.48899188632832347, -1.2471760107541294, -0.1657341639800822, 1.9958798443725727, 0.720679325651196, 0.004771481274280113, -0.4926131040805169, 0.14501927061732342, 0.10433490924627743, -1.851122999197748, 0.7836152887276365, 0.8377832715113974, 0.4113309693522882, 0.05498620570584274, 0.9537880121346592, 0.9194612921501486, -0.19590054382913888, 0.7503555673259698, -0.027456844174158484, 0.07772273560847658, -1.0761237010029543, -0.7015865962969693, -1.6098996930207752, -0.8665668221423027, -0.3686311320776863, 1.0851878935920134, 0.18184652687855588, 0.788131589508124, 1.2827604003572235, 2.1501137719353487, 1.3196613678554179, -1.3582952520308071, 0.8116638217455909, -0.5856834427252345, -0.5089561060718788, 0.2728783441346315, 2.143085743305745, -0.3092297374422485, 0.16640681985643815, 0.5846722987267887, 1.8918975889814098, -0.6586207254575803, -0.13959047269942743, 0.5357249534715769, 0.6436557933686009, 0.18667614452614548, 0.43152150218950247, -0.7496145066243028, 0.5149287796188508, 2.391028076263439, 0.4945966655802004, 1.054724988689097, -1.6040792206417975, 1.5003914882538745, 0.36513466757794133, -0.11191188662192181, -0.3521336180077251, -1.141174412477296, 0.40586358319574634, -0.5618275640452373, -1.5171778125021156, 0.5443375942015809, -1.744573837677934, 0.16361641761082385, 0.612072731361228, 0.667959120865269, 0.8338621088063528, 0.5545716295433586, 0.11449318123191513, 0.9887059196307246, 0.18445469434247522, 1.3334438101607933, 1.1216072486481312, -0.2160300866291166, -0.7193848985898231, -0.6572459307086266, -2.4287141074567287, 0.018948899109770167, -0.017837885002976433, 0.6092707867132415, 1.7083157733019787, -0.6930800241906463, -1.2462030897785241, -0.08118379233796941, -0.7551706957734973, -1.3051266285157652, 1.619563978140604, 2.1157416078982383, -0.48123489893368504, 2.2690864288129275, 0.23467497759534664, -0.04209356217767064, -0.622375520963237, -0.7462634611952618, 0.21791029498872108, -0.023858508183944825, 0.2801120799207714, -1.167147575710686, -0.8018494647487232, -0.5723657769374724, -0.808817743043057, -1.869050393158626, 0.3137171180102039, 0.18493083289902779, 1.3863512375113936, -1.1463136927825839, -0.3533021063428168, -0.9634430035115058, 0.8148784630852247, 0.20935558425765124, -0.7622376708221162, 1.7953706346833436, -1.5166346257693766, -0.9523985723429993, 0.8463907837651352, -0.9282611470587211, -0.4145199241801272, 1.1148293207446853, 0.19364813507564343, 0.5514304045309988, 0.362491781119749, 0.3617087336144653, 0.866594645343294, 0.8131530436724966, -2.1716109370261805, -0.8106901179900471, 0.10805162520847268, -0.1642737326620212, 1.2918793469800813, -1.2820439783467863, 0.062451896637934164, -0.08718406197980559, -1.10460982797034, -0.9281127117973881, -1.8292776756673332, 0.642192964738091, -1.2444617648417435, -0.7634508467079266, 1.3657797570523655, 1.642869036251646, 0.29639286578551893, -1.0636978325503528, 0.5467238072140487, -0.6720062901994046, 0.02557308674116318, 2.5786343501747284, -0.7457052297979999, 1.7818014200087742, 0.6313725944584364, -0.14585652502531468, -0.19594575198149222, 0.19888357417650607, 0.7243302219829795, 0.22908961531185418, 0.08808197418678249, -1.0039425761172143, 1.4389333210536088, 0.7826617380590528, 0.4112570362157183, 0.0189286968919173, 0.4975945330224692, 0.08078694145703257, -0.9537386614748288, 0.6009288684548454, 0.0967829119890071, 0.5935520600402917, -0.22672760586713395, 1.2834026950279573, -0.04586853849538321, -0.5528621287153109, -0.5361782416648984, -1.7470118508331838, -1.023556791431267, 0.08156642562770504, -0.18334549815161655, -0.7319838823285786, 1.2332612912154555, 0.36534625146420774, 0.05289195779279638, -0.7131275037754402, 1.1049178913394042, -1.1431908156792667, 0.5066479599338422, 0.9508067466975929, 0.2501662272087732, 2.0586654921122385, 0.6307807503175337, -0.3287376923326985, -1.2632269887636598, 2.383612439689569, -0.25812734860822606, 0.11468943461394057, 2.36563838958658, -0.05855957946899601, 0.09103628948205748, -0.38643923342977743, -0.6343162018584501, 0.6196069982003539, 1.1408533321664458, -0.34457476624667555, -0.4716701338597704, -0.3867530502404884, -0.5457921056158688, -0.4299165891479444, -0.4298472134692043, 0.25976259619233266, 0.9535634398434377, -0.600988938006677, 1.2002806683202092, -0.5674916932471845, 1.4440387371707433, -1.2620903416129294, 0.9081985641347162, -1.3312627573218139, -1.336532453978738, 0.33492877481315203, 0.814667225360841, -0.2182646699076762, -0.017184312546045036, 1.3312094903712084, -0.33689841901543277, -1.032944625119607, -1.546675579534076, -1.3259522351004547, 1.3467557114914912, 1.2263917003086884, 0.368228634898126, -1.5065034426474968, 0.2564737078581749, -0.9096154570738174, 2.2682647527725783, -0.39971356845236583, -0.2741092374614459, 0.6025369426959243, -1.097121846378864, 0.6103996757447667, -0.3700471058738764, -0.9437875993778724, 0.44935015908012255, 0.08744315834626956, 1.8178857737973972, -0.8902026542046697, -1.179476328441969, 1.3573487800583721, -1.8455041028987684, 2.1499641628908037, 0.5070408895237972, -1.2533542322201094, 0.7860243454582236, -0.12340782572314976, 1.1616466916191899, 1.6207242583196948, 1.3196003042127424, -0.35489716246013925, 0.10727063205290831, -0.7824223373513288, 0.9677504299294639, 0.8641214679768165, -1.2347422904463714, -0.3421499287050746, 0.9183031007015077, 0.4443129286366503, 1.9956782183275452, 0.659542588004339, -2.436555757525825, 0.2946439184092374, -1.3594175892026772, -0.5362979041999613, 0.5151619860407783, -2.5390474100386027, -2.537736400798565, -1.7442132995937405, -2.0456722309767, 1.769855505435729, -2.5385091345646855, -0.3806566190465577, -0.03302831036722171, -1.2817572414461973, 0.036657312572966276, -0.28633945833442853, 0.6131919665816072, -0.10898886457771628, -2.44807559300974, 0.9668612081477453, 2.369649059612696, 0.46767763496108855, -1.2834158167925591, 1.406535098217805, -0.45590274720564067, 1.9989185487233225, -0.544494368272579, -0.9666509587390459, -0.140271498820597, 0.5002820307681256, -0.10111518659707187, -0.8825649969029968, -1.1308695504037354, 0.17800210869535416, -0.5487446750717989, -2.004859739989523, 1.581537237992341, 0.6104609686779525, -0.8629948861679827, -1.1109988342304618, 0.057223126089477896, 0.017703517291403396, -0.9432804660261316, 0.5426864739230158, -0.04349763615019067, -0.5007536694606368, 0.4598143623612296, 1.7778381471723572, -1.6690961904676156, 0.26716414471992345, -0.14135865128971592, 1.5736642105090928, -0.7686632880651917, -2.565844280352749, -1.0675904173357789, 2.5852913903214008, -0.4737400349231916, 0.02456925299125916, 0.2958643019282982, -1.1969320994202681, 0.5574843850544053, -0.9872548451697678, 0.5524143906841119, 0.770304444691536, 0.932664149716191, 0.6126112172193633, 2.0803475227853716, -0.7838397098378939, 0.06776587202936303, 0.28578562010851777, -0.3783845446326181, 0.18283847158284888, -1.568243398506986, 1.5151402723014034, -1.3355854735204151, 2.3549972529788317, -1.4503191113519232, 0.07666534348336183, 0.5379027119812012, -1.3373267877391348, -0.447726397708581, 0.29445270374067073, 0.10694047656842107, 0.16393548390325657, 1.4299232087094027, 0.1542393068833988, 1.6884901485920496, 0.020416855224529996, -0.5714708659060553, 1.3944210472089411, 1.2087705748327848, -0.7650395146488541, 1.6042447193858376, 0.5425697227836367, 0.7395136187333787, 2.2299769009598998, -0.9735804008919536, -0.7176967733158022, -0.45210840296575483, -0.615982106703295, -0.7535760756033755, -0.3283538622693109, 1.8362390088901706, 0.947781058312341, 0.05260511311560442, -1.6001864765648237, -0.21321153472558194, 0.5571770963830329, 0.11706507079465983, 0.8441877367360732, -0.7186812429094075, -0.5441005778260494, -1.207056434965205, 0.2611803682577322, 0.6410704943507904, 0.9922311325090142, 0.6877163554226943, -2.372108338755209, -0.6124826560648232, 1.1927201810085668, -0.2275589693450057, -1.128991705241651, 0.013719031370210612, 0.5021526277078409, -0.5204484781944697, 0.2806580308034715, -0.13898716155195115, 0.6885775329464745, 0.29702304904369453, 1.4344044165379433, -0.8953067579607175, 1.8311456891424687, -0.7646681927252484, -0.2534525738496036, -0.4728628400950417, -1.065974412291962, 0.31886436148113706, 0.23552533499355455, -0.05513994932461251, -0.42005521513429367, -0.850675675516827, 0.21475700690293908, -2.006631657659653, 0.4246315935417514, 0.10743550456976449, -1.4278797057187957, -0.9791565133391782, -1.1347079440248182, 2.115383562271821, 0.932346334862495, -0.9461104206972335, 0.1476081895350935, 0.8417378882307884, -0.6515517656830238, 0.6768709145988813, 0.2314604768244278, 0.728698305796499, 0.2532869028157954, -2.482842329891632, 2.8674614871779704, -1.0613852704000257, 0.3736105040181362, 1.6143558999308472, 0.8911208083876798, 0.9179997240670801, 0.6222817221470395, -0.5620541032958563, 0.6027724069238946, 0.713087017263054, -0.4726798365148618, 1.548508947071565, -0.5049035409837295, -0.23473430026114955, -0.6259509018220643, -0.5500107079339658, -0.7717153243733232, -3.339131183365934, -2.259302856140505, -0.7916549552266088, 0.7985940995836761, 0.2891850926539184, -0.751274200848299, 1.3661135506544215, -2.7973117681713826, -1.2617511921908169, -0.22489659367989126, -2.680470443265018, -0.007021335470034853, 1.5366041112406532, 0.42410432193395897, -0.13061072968595136, -0.9600612211764941, 0.43076947170892116, -0.9230454140910331, 0.7750535249848645, 0.327003121132715, 0.11313824308273623, 0.23566638193925893, 1.460108396438589, 0.07041331845643514, 1.5632720318504694, -0.18932553499194096, -0.6850430730601161, -0.4275940340884029, -0.982860995168237, 0.7239304746370234, 0.8720634862946032, 0.8943010134287736, -1.4289609993681736, 2.1640721130641634, -0.8813269105306978, 0.5715081265629479, 1.1069746913471497, 0.7376671022789908, -0.23296786393903454, -0.35208238129289376, -0.9333355584558853, 0.15787460307815485, -1.5849912861702453, 0.2868695096456829, -1.4254962400370839, -1.0234975165853364, -0.7632885943621992, -0.3894578075908048, 0.2780317232585562, 1.0639197458658958, 1.1218377134025292, -0.53785815691637, 0.45235392882744935, -0.5453438509991564, 1.1735431273037322, 0.536402958610614, 0.25925031328375475, -0.6047576107448606, -0.7581406887148029, 0.8421119784267631, -0.04889113072036349, -0.2669203848616932, -0.435811829126537, 0.47818724649228433, 0.6654491910043719, 0.2906409949166823, -1.311695532589507, 0.4148837273713849, -0.08230847148671257, 0.40751877857983193, 2.3777594294310584, -0.8783267943305207, -0.44357102167069, 1.3576962261060328, -1.1314737969705901, 0.8951389680231304, -1.3514837156326183, 0.33736616018336113, -1.110979354110963, 0.8463654243586535, 0.9604960857531788, 0.5137912555764198, -0.4716885802970015, -0.534461177473073, -1.402302440035579, 0.6604365458930668, -1.1383755997224079, -1.0500912196431027, -1.3749323678229461, 1.8307652366468563, -0.5868862944436379, -1.2563719516353538, -1.1516024682788597, -0.08790412448802469, -0.7700986246668439, -0.3295418035547551, 0.8341695905753391, -1.8553600185147188, -0.041587757700601066, -0.9403775142498533, 0.8171040545365663, 1.537335330764386, 0.5484382656954624, 1.3049594093837074, -1.8395482171536346, -1.0534787239998658, -0.25544508395055016, 2.2260982859628937, 0.09799861896194238, -0.6355819132241287, 0.12560216519899134, -0.956199686564639, 1.6031319680854252, -0.9459376095771986, -0.0851211111955496, -0.34186636010741284, -0.4147405733707857, 2.0642355374393353, -0.5961699507232264, 0.665263318872074, -0.2739934366018441, -1.2339995970597606, -0.5797750533581089, -0.4627387172659737, 0.15280103320086103, 0.9741097808938647, -0.8193383460159596, -0.45874111585014965, -0.3901129052826739, -0.46042694834073067, 0.3545136076622078, -1.2135091119316959, -0.1030519432881778, -0.517001084027881, 0.9312126932465496, -0.5962221893848134, 1.4919948928152988, 0.12946816058657556, -0.14090086209424102, 0.5496892373278867, 0.34813799376889026, 1.3101352764021055, 1.0561087314463464, -0.06015679853999856, -1.0844920148700576, 0.5809182970225687, 1.070302420015235, -1.9797679613239547, 0.6421760570422821, 0.6585676790808916, 0.5012828937408915, 0.7577896733890408, 1.4982269142229012, 0.3379666359786011, -0.6555191821263929, 0.7151573769147771, 0.291274913836376, -1.7968192321962575, -0.7757906238174488, -0.6013231724191932, -1.6300818336933047, -0.4106627379883811, -1.179969329931551, -0.6287150975298993, -0.4197318665605156, 1.0834965533398966, -0.10901707490348608, 0.21650127988465245, -0.21995885937554852, 1.0326728323656877, 0.8215918540428409, -0.4457301763059701, 1.80515563768703, 0.024897842910739296, 1.359965016969538, -0.41008897813378564, 0.808633929727104, -0.8665019206039277, -0.4451787573060458, -0.4808860032861602, -1.049641041537471, -0.3572298928313827, 0.69389378288562, -1.079456805417775, -0.3929638759148779, 0.1912037369529743, 1.1769963368868879, 0.5897591396305822, 0.7693428655046206, 0.5785631749507067, -0.06598548484567672, 0.3685046504875789, -0.3241750117037796, 0.41830320249793873, -0.20025292141650466, 0.09280196112244608, -0.6893542846063931, -1.560914285816261, 0.035991137758281305, 2.3817520627279047, 0.28185202853472313, -0.06747020503306891, -0.5891528137976771, -0.7612426713220851, -0.5539425494388127, 0.9412138018974866, 0.6950129272700121, -1.7443130195867336, -1.268067395239807, -1.2778599023861967, -0.4158352486147722, -0.6944875944109241, -1.1428890081045138, 1.5023117796581913, 0.9851384493906665, 0.34059335276565855, 0.8057052363344606, -1.216751654207494, 1.539701582366483, -0.7586465290513249, -0.4929102642516401, -0.16136301740638267, 0.7352626311438482, 0.49092398268138854, 0.706670876648781, 0.8378793643779525, -1.565844521301704, -0.4207409776403644, -0.04223989906861166, 0.2935010974118177, 0.47883073753312577, -1.4570114827300937, 0.5086210571371045, -0.6418312385336047, 0.033354910307801564, -1.5042458262200982, 1.309285797095094, 0.14852512142104737, 0.4254592895954645, -1.5172877709734973, -0.17361268447189518, -1.1389494344317, -2.097340117959065, 0.019269334978796977, 1.1006613031805035, 0.058335411014257786, 0.9686545451867656, -1.1906664727695926, 0.06304883808320355, -0.18499194060133356, -0.7207502362155006, 1.3601991894842127, 1.2559062217031411, -0.3344841775289289, -1.5702957073459274, -0.6643306391807473, 0.21935705591316002, -1.300340049446944, -0.44987963435230843, 0.18460963218034046, -0.9581766164428799, 0.31199660852819733, 0.09435309468106146, -0.01436340392771092, -1.8142408456077923, 0.47092945508477785, 0.27910184870793503, -1.505249763444598, 0.18421355690055524, 1.8646684542896503, 0.6453174252830259, -0.21681110019214034, -0.0841647644132263, 0.8585010896468322, -0.8751629683679312, -0.7289768439027275, 0.35782914695715917, -0.439476563923465, -0.1096547414592961, 2.347454814808138, -0.5021106316718963, -0.950162210756647, -0.6925733426176549, -1.4631422240929124, 0.008001105740883144, 0.25679981879178077, 0.4766847502677065, -0.18813989237850484, -1.579792940871737, -1.306714094496617, -0.02089104634023945, -2.3593949209047533, -0.934125377913463, 1.3245597372607298, -0.0943021480691485, 2.261688018695767, 0.43967908770398056, 0.7304948821899534, 0.2933803264573806, 1.9916642972960872, 0.6662292622718131, -0.5820881611671244, 0.8078965997121962, -1.356964558101409, -0.15538268740511973, -0.6672289897199325, 0.2953804328048651, -1.0404174367307863, 1.3496697540953122, -1.9600907184684249, 2.3703289759099957, -0.8417200020346601, 0.9465329620822684, 0.8023349398720315, -0.621034991330421, -2.5545563499921538, -1.2957114575642776, 0.1980644341018825, 0.1985373865912528, 0.8132633801220885, 0.15243226097921106, -1.067276645215196, -0.5650922411161348, 0.7146564189791416, 0.7963544558489493, -0.35436026049949876, 0.5217612187293467, 0.5859576198651186, 0.6951623286052994, -0.5523720551782151, -0.17839035999070013, -0.32588251741783303, -1.256161356589904, 1.9110778158975337, -0.27166831169478955, 0.24442824338617697, -0.5327913737987849, -0.11913349526193527, -2.187974317449518, -1.286478631826234, 0.43225636438540704, -0.6314333775671992, 0.9023442270015863, 0.24172474244121822, 1.6661316433391828, 0.08559224843762872, -0.570967295215237, -0.03659025215984311, 0.7812172459121667, 0.1373615647166919, -1.3000398983690744, -0.264733337310065, -0.7940670640009247, -1.1465893414637873, -0.14364598361395722, -0.035633222935193505, 0.37608485090405813, -1.2594311922624641, 0.40214282315567107, -0.2843950631756733, 1.749615909071243, 0.1457431645020871, -0.3545453568815157, -1.3204633839088615, 1.9787142469875254, -0.6121961245508255, 1.2995055286087849, -0.6986167703895473, -1.044165081433728, -1.4526311664962257, -0.4944481563668169, -1.4654106515311707, 1.24027628234415, -1.0654119002482167, 0.917685660411655, 1.9150651493814743, 0.6590899782190386, 0.8689499006263258, -1.1133420719353384, -0.2850636075228421, 2.730237972250892, 0.4737439729237325, 0.6412184546891324, -0.8617043391483233, 1.325962433228541, 0.4271006938302797, -1.2986319259287358, 1.4275849329493961, -1.3815521375889999, -0.9338944057167747, -1.0408404385494519, -0.8962880972651498, -0.04207372243988311, -0.17643830011703884, -0.07120344300138627, -0.2288164193077238, 1.121099564793566, -1.652555807089312, 0.11433109793314665, -1.3020177985653965, 0.6285287725469307, -0.5180556689607897, 0.2036536001382881, 1.3369903151022602, 1.008405502989422, -0.30263639058913516, -0.4194404136761912, 1.500489375338456, 0.08033709759516591, 1.0015532919998742, 0.4207822112064125, -2.338949872424828, -0.2891324130693005, -1.1005335175738773, -0.7672504576022623, -1.9790583222912803, -0.48416467985763584, 0.8567762281888455, 0.4267508460034622, -0.026865329916121918, 0.26210506494702396, 0.6243342760945884, -0.20014807656873498, 0.39771930477060785, 0.17164643958250006, 0.9815971979730334, 1.563344509378812, 0.13377134639689248, -0.0069633847427029065, -1.554977327791011, 1.3124031124003788, 0.08591473072001614, 0.2647341453884057, 0.49920916683758865, -1.2352509235909916, -1.0042017250466186, -0.9010476561577677, -1.3431952312084112, -1.0927560747069056, -0.2709193669683713, -1.3687307321510476, -0.9786943565925428, 0.03636271758426244, -1.5568755049801302, 1.2868786067789528, 0.25283968219887676, -0.185207532100475, 1.1627810564963745, 0.8379940079762348, 1.2438711387897674, 0.24131560737070626, -0.7395230203288009, -1.5022115808528158, 0.13173649433298512, 0.2762295068646509, -0.5981678311904522, -0.5816139796492154, -0.4049597048006111, 2.221319040041851, -2.16877192795713, -0.06940776768263955, -0.7319735395307491, 0.5528841045932997, -0.04922758685278811, 1.7623309550570554, -1.4635519948853493, 0.06691528982443203, 0.22894293759382806, 0.12035039685221059, -0.4132943519733949, 0.816300128342061, 2.3693011181354935, -0.2586480592673281, -1.5339351729520452, -0.650963090181248, -0.5191762472226716, -0.3673200586271893, 0.5269964258747799, 0.9646150351601676, 0.4976453682734646, -0.3216017788030177, 2.0691856257704, -1.709076327403522, -1.327696469308086, -0.5961119511942622, 1.3810318234347425, 0.9147189510389251, -0.7007941436940255, 0.36053121970518975, 1.3597522505498656, -1.1837753812370166, -1.1235906218752902, 0.8673469197737789, -1.5135696085543542, -0.6070424069421874, -0.2434660803432156, 1.037126049921982, 2.7604124009458806, 0.8157153943787943, -0.4270363694150845, -1.3923663388148215, 1.4168010848874593, -2.0664037606350947, -1.0810301009035326, -0.6793242876692346, -0.9044235100261028, 0.06918302782128971, 2.2086464342706487, -0.7527876584947134, -1.131339071052596, 0.24789134706735683, -0.12965193391092106, -0.6263899648636063, 0.061309392447964184, 0.5023713621370121, 1.6020195295585502, -0.32606208290842403, 0.5091451482082675, -1.0263887499569118, -0.27443894963310955, 1.87072846729593, -1.2826749544506046, -0.26978211182948897, 0.626849988174519, -0.6159701463604818, 1.1476863478796009, 0.8126029176906514, 1.2167318540518524, -0.054060705139540144, 1.3161651745574479, -0.34887353323242265, -0.06835108477897014, 0.745110047768534, 1.107147988288045, -1.5908003696055362, -0.4889523195175196, -0.538975325934082, 0.1624264869035928, -1.0377521227625064, -0.6050346746905724, -0.4560572974450226, 0.16672190159399344, -0.6300236961775, -0.6843497830043243, 0.3098195011178219, -0.5159914330339654, -0.8700983481658371, 0.37878997022936506, -0.17763710717873604, 0.3297934030728925, -0.5517962548801194, -0.9267693942944103, -0.7955491057816191, -0.3041403449627228, -1.0749715869335623, -0.7432178088035015, 0.18228600733916409, -0.4139212520039545, -0.8284378339059078, -0.6653405295781459, 0.6774844015846562, -0.0675003979785523, 1.5502886398007982, 1.0419924346215579, -1.3343254939073281, -1.3157306084386902, -1.1811989688658093, -0.8901975709112707, 0.46563716411954104, 0.148714689872645, 0.4681279892161639, -1.273490249548546, -0.6538089725169465, -0.3820228028201424, 0.019776199709721425, 0.51177178887123, -0.6452192092989854, 0.7228205438523863, -2.3866279343549603, 0.39929157052145603, 1.3309990242061873, -0.33435273923736447, -0.22092166721474596, -1.0486970700276081, 0.3254254961119812, -0.6763192665492417, 0.9498325816090963, -1.768706689674087, -0.45015442416565227, -1.5290136265534802, 0.6365482636135662, 0.2961470923933083, 0.047434056670921744, -0.2052582068613088, 0.9762288541308433, -1.592318920048635, 1.2982105033812912, 0.4302115085567271, 0.9844576423898516, 0.5335423572191457, -1.1527840624421568, -0.9384692372603611, 1.6116149132082642, 2.033567898511073, 1.0687936433970529, -0.37517016892033606, -0.10452999349033558, 0.0664082195956453, -0.11177153677062385, 0.4285735836913494, -0.7358656016531792, 1.8456436372049063, -0.5249214412729694, 1.0357216331789634, 0.6085203560697807, -1.7321326464625784, 1.2757849641587509, 0.8455045914840559, 1.1112157393105278, -0.6468161910087791, -0.5306516346738637, -0.061955451110108826, 0.0007726240592173245, -0.39392229867154305, 0.42942432048196144, -1.4350591785134983, -1.3479568377991296, -1.7959370252614282, 0.5055825117036096, -1.2031910660086103, 0.03729609363071251, -0.41689851733725714, 1.3919308062247362, -1.470173757733063, 1.2351997140340514, -2.387576824521024, -0.7292450302184633, 0.5572210117321303, -0.1806401553015244, 0.8837702113162869, -0.0344661896032367, 1.1532056447110521, -0.7676880570661327, -0.418483030833634, -0.2580317777762975, 1.889733991192353, -0.9588418941146498, -0.08211220625371111, 1.149258614701918, -1.1672887064616424, 1.1298707432813508, 0.954397574717753, -0.09134077594037746, -0.3979764103383341, -0.7398078076147755, 0.5687678505850049, -1.1350007987024235, -0.6542100841140845, 1.4207389807777595, 0.850302596810918, -1.3327890027060532, 0.9957978999181586, 1.2085137593601731, 0.5806656026555969, -0.1480424204101069, -0.8873336491354304, 1.364834457639829, -0.09971564978457985, 1.3530497509389647, 0.024772812154629367, 0.7617698655417868, -0.8337707549762399, 0.206686104678415, 0.25669582959298765, 1.046881188635141, -1.5936417744900009, -1.4156246995038912, -0.7857469655072076, -1.3607279767354992, 0.24815937727578274, 0.13689032571294568, -0.4899262428315168, -0.5428903184109733, 0.9445942737676379, 0.8565221659844574, 1.2824329356288036, -1.0069326526949063, -0.09773508905258911, 0.39478076543357427, -0.5069495535443377, -0.4264375821843996, 0.22302077912903445, -0.06075758132298309, 0.4661300854614435, 1.3662004188740047, -0.41316920600446777, -2.0840420097786114, 1.0443392802150686, -0.31543730144121057, -0.3212251405323313, 1.4564453670592308, -0.4671244063561541, 1.229837793645979, 0.5392368708620839, -0.12833544891333407, 0.5259697081375486, -0.8881314544818343, -0.08046990833273018, -0.564801316951071, 0.43442983018025944, 0.17362609473538995, -0.5116371966539137, 0.9187438286521883, -1.2088826772894667, -0.10794102824024915, 0.2449750743305295, 0.4489715243425957, -0.653122125561913, -1.2615238259110098, -0.29248602987906536, 1.325164771118616, 0.3314605063914852, 0.37375298471684365, 1.4950804617684263, 1.3810416969825412, 0.7195997510712101, -0.7818767120656855, -0.7915989129729579, -0.39688588946068076, -1.3067485053721593, -0.5251443121814485, -0.7078848626443635, 0.12421739094879054, -0.1541745362365801, 1.6138433438415838, -0.3092110753142317, 0.7991539453590144, 2.5176548023079377, -1.3459522869772282, 0.6843652370754923, 0.14106199839952416, -0.8267397852581054, 0.7400768827453704, 1.1598026749128443, -1.0206809353870145, -1.164658793041048, -0.9934120020749445, 0.41071873904429723, -1.492382818208867, 1.3435864578754826, 0.5669000411287385, 1.5151284521875517, 1.7289526412074065, 0.5734176591391166, 1.2918621903743897, -0.09461143385670984, 0.31307696106556115, -0.2964442595479128, 1.2643848601234902, -0.5238933257283993, -1.134979781575976, -0.8492257855154859, -0.7029461780263013, -0.49905217878357666, 1.122070665742464, 1.9512376283476423, -0.23729820182990657, -1.3371176339532773, 0.27828814584574474, -1.1275433081587645, 0.10651005530103992, -2.4892588131764537, -0.4455236648242079, -1.427375236124914, 0.2397299307447712, 0.30415971313095597, 0.9797014881215661, 1.5137617079751204, 0.1920714776904463, -1.519408536673415, -2.1468072092078274, 1.318161102363019, 0.6107848689174362, 0.20685187069148758, -0.4622847740631353, -0.8597987675248547, 0.6925165792965321, 0.7706850043083773, 2.327431464631893, -0.7319255891054529, -0.033081635381009805, 1.4917071766551615, -0.8045672750116764, -2.3172910157357776, -0.24529435199237695, 1.8471149428509286, -0.23838768785418307, -0.47887742427442276, -0.15474940377140423, 1.5573054808378086, 0.6676577380593879, -0.05127928168928788, 0.7764135880527265, 0.1012032040556931, -0.4382825273242741, 0.09133881246085074, -0.7688418175227117, -0.09971981857197842, 0.3399423340838499, -0.6971022799407378, -0.21462295779620452, -0.13532778356012426, 0.26166429701256966, -1.1796513988709159, 0.7884157484154684, -1.2578977497529489, -0.744996335861831, -0.8735841204025662, 0.7678017544003792, -0.5616884658603235, 0.17820454205790653, -0.9866577093553701, 0.9071834798976157, -1.7278475397967572, 0.787666204889759, -1.0899516266300475, 1.4645371480997127, 0.11697270557609096, -0.13482341709293913, -0.8290000150874726, -1.0187582793532088, 0.3998690939482877, 1.9318734096017998, -0.5590563011618515, -0.0012991484869251235, -0.1558488184491677, -0.682851387849288, -0.5000472306269477, 0.3501287947681035, 0.37119487333230244, 0.6625707900275497, 0.3638838229507389, -0.4441085844148407, -0.5345743078806027, 0.47971415189995326, 0.5824329243626397, 1.3598782229710167, -0.29770406194525095, 0.9243746528695322, -0.28177635787207395, 0.37564602084521875, -0.9060229841293681, -2.2197235162231843, 0.33894060067189896, -0.5577328074650298, 0.9093232090416803, 0.7108791689974814, -0.08064076011973571, -0.5825498003461056, -1.0041039458713756, -0.037905894921456525, -0.3536507888467015, 0.5965431219534834, -1.007781983655672, 1.3784467782152747, 1.6959210094335462, -0.36590789697313536, 1.2755892379406892, 0.5145759512296119, -0.8681044385728147, 0.11332558573578756, -0.6086756346158634, 0.3381047001252205, 0.6255132416480043, -1.8033493283106394, -0.6242294086438447, 0.3171141010901023, 0.502737995525754, -1.4793508691030521, -0.24854371266555106, -0.8972175457858959, -1.0816266826669239, 0.7993345522373935, -0.9344564349091987, 0.8163928929682062, 0.34326656475037604, 1.1185191688874523, -1.5345626676881265, 1.1790038231470457, -1.1507432180890864, -0.021235366339161794, -2.6941630558545073, -0.8762004405922571, -0.25251336804594776, -1.093334348713189, 0.7583285199730915, -0.43567416957820676, -0.24046119690201917, -0.08780221681592705, 0.01217274484207606, -2.2001911188741667, -0.1015498362543059, 1.0389660301815786, 0.51592553286614, 0.09813832978487787, -0.38561809814093206, -0.298156420497477, -0.7217515446516882, -0.1838207216635842, -0.08790629703906426, 0.9755974906562376, -0.313151746704443, -1.711515365472543, -0.681851898441925, -0.7107064985007957, -1.45718272361863, -0.053531722399310464, 0.1837988784253485, -0.3468376309767853, 0.3464340180741372, -1.6340638746794487, -0.3200082731951974, -0.009362749122812583, -0.8660196331160724, 1.502597952901954, -0.9389678967875037, 0.4300635481595423, 0.6607875950625616, 2.0420692568410725, -1.2071745007802381, 1.3190442268772489, 0.5673277473960116, 0.5674428105826648, -0.23534264597257068, 0.446036245896742, 1.4872911539851645, -0.6022038297304635, -0.6668946826936096, 0.5569939206312351, -1.0595989640325643, -0.7072436262374949, 0.794077030515395, 0.3109960401774058, -0.85807202248835, 0.7552922440600804, 0.3538746925931691, -0.22864521578297622, 0.357114095606969, 1.500503534923728, 0.2314738429965226, -0.1421941807055494, 2.3318997973468694, 0.5528211340395885, -0.476104664841235, -1.8022693753197898, 0.47606506088524025, -0.7528233973528485, -0.07390533348329834, -0.26377741205656385, 0.4461364951266596, 1.1932156598221915, -1.1664206539412458, -0.5483906383952069, -1.769529080187893, -0.18927680839680514, 1.088884353969776, -2.602280169185454, -0.7931446425130285, 0.9095938301937231, 1.1883593248235187, 0.24168514981714367, 1.1702529669324273, 1.1770287182253603, 0.07909850792073987, 0.9068239250746799, 0.21803104252180514, -1.178141351443527, -1.9637010376685842, 0.5408172262570778, -1.3052231364061335, 1.097078104381844, 1.3464492745230412, 0.7502209478460523, -0.279259977694746, 0.5214461088373664, -1.4246337520189372, 0.28794305919182983, 0.1679476380028009, 2.2071698536614495, 1.0869993352554195, 0.10517353311202363, -0.2645710486227461, 0.12168273758553405, 1.695133953587064, 1.5729861773282883, 1.2926407652417782, -0.09574338108587734, 0.5013734236367815, -0.12739393267907376, -0.23889950155062833, -0.16122432130333317, 0.5352460170639826, 0.5523462962851845, 0.8778896050097712, 1.1917291998657236, -0.5737408457364246, 1.643370716510767, -0.564319038593527, 0.8270026614043323, -3.2321211797518563, 0.5968013678296292, 0.8860493076840971, 0.6523501659447136, 0.6219614824076691, -0.7172089652756731, -0.15397881869950406, -0.3502395747232083, 0.7177414442504045, 1.5338249283959746, -1.7976181524818953, 2.6850716473783844, -0.701092591529433, -2.1245810329490693, 2.18565476810814, -0.6608288027913128, 0.7746844384876909, -0.3696148359006313, -1.2077726810797738, 2.5394849695291013, -0.15697975796449157, -0.24329627644990398, 1.2519467250327732, 2.145447349465572, -0.42595837761511296, -0.6569558415752906, 1.400134503280183, -3.265832284554772, 0.9587226586071602, 0.42488290005646145, -0.43683914567649823, -1.400836212073248, -0.6684817042727673, 1.3924716460126991, 1.511841125689145, 2.0266387319573678, -1.250902235324303, -1.0917531611026434, 0.15924753526141056, 0.4837507304584228, 1.3032189272828485, -1.5095242747225988, 0.5617338886970336, -0.8261745015308893, 0.689585535677153, 0.4382484894230517, 0.8518165005650175, 0.3839592418452162, -0.3244891917786196, -1.432664559637419, -0.02505932881046803, -0.8205160652272999, -0.3848184736351492, 0.6665201806529725, 0.9360940240796026, -1.5654980237487406, 0.08105331393342913, -0.6288680554712102, 0.939168341374986, 1.5043786666125862, 0.009947735107917759, -0.45837774794695374, 0.6073776866119118, -1.581727739472916, -0.06070221546892177, -1.3938466933679672, 0.573791803257779, 0.8786981275816769, 0.7571547036018919, 0.43742528083334703, 1.086943208814087, -0.01942447619425304, -1.2454148092917714, 0.9642100988144824, -0.48849554574252396, -2.573759817997203, 0.07779581597187168, -1.3703882897586062, 1.4794675375581767, 1.3864740833118108, 0.4390247920855019, 1.5464217712894395, 0.14352798812695103, 0.23670253484112508, 0.5347103856749588, -0.5722198380048823, 2.5684848057406295, -2.067977613175849, -1.1862817012419353, 0.13120327024566122, -0.46411726193584896, -0.233242685538653, -0.5394900246652852, 0.18302516312424033, 0.7008857390068701, 1.5110646353865187, 1.0941486800597007, -0.2642152206721835, -0.07510179633877613, -0.7220305526480549, 2.079455934182471, -0.44711459244870544, 0.8583051866716351, -0.30000715893396973, -2.0064154942048344, -0.8572849958672686, -0.6190710205704426, 1.116493188452634, -0.38082323247234934, -0.2208731886051968, -0.3480590716692874, 0.9427329286778637, -0.7241289875872413, 1.1789767825736708, -0.11214379424049703, -1.3028705997205279, 0.720826108759827, 0.8181799916056507, 1.2108243295510073, -0.8304650077153242, 0.08358404539837348, 0.08494450880668672, 1.1888598646939603, -1.3741337917018874, -0.5333067731997991, -2.3610241345093006, -1.1198365195486655, -0.7843106450731081, 1.26608093174687, 1.971741828274981, 1.647786004579541, 1.2843508743627627, -2.6971796549045326, 0.9718792651675577, 0.3296496214391363, 0.06489488470085054, -1.3083755497318321, 1.4964875354468123, -1.0261734062697456, -0.3573551465196367, 0.6888398586723424, -0.1137910866027415, -1.696942960192868, -0.498802868303169, -0.27232116954993485, 1.2537156875691677, -1.0222917364117847, -0.3772038228333442, -1.0668657758455142, -0.2954936555901053, -0.13627737760589215, -0.7531057768078571, 0.6261321838708844, 0.2803297706357046, 0.5596407506988239, 0.2082386959138572, 0.45165709698668854, -0.776001027369984, -0.011337147007147955, 0.960583615407435, 1.915525612915985, -0.9652340689854346, -1.1651563543872874, -0.3589408955745445, 1.7237272776195491, -0.8042729670861964, 1.9152417103962551, 0.129026042426302, -1.3464173496924177, 1.184806952934978, 0.04807635931109299, 1.2952395373119538, -0.46776545843623163, -1.1612952489437938, -0.815373522992731, -0.3846906160370302, 0.0032804779265146987, -0.8602252589912404, 0.9523228101741807, 0.7763956393297744, -0.47325887621334495, 0.1323357622199534, 0.2928301789901835, -1.4715965012720675, 2.1123815898816374, 1.574047004901304, -0.6610276526416302, -0.7137997081358968, 0.08887212822824227, -0.6488619097052374, -0.16169486867021612, 1.1398591673192848, 0.6272377766985514, -0.34312955501844056, 1.5601218843988744, -1.374252607584355, 0.79019149545717, -0.6241270831240522, 1.364090846635112, -0.3838499227350919, 0.042252107166040914, 1.095182346733042, 0.2990776674808444, 1.0925858460583215, 0.474681149359673, -0.5758159101690037, 0.8110295412607482, 0.5613145277105456, -0.2866523025729163, 0.4468650227777787, -1.8002764815346957, 0.2080119112752747, 1.0803399842700203, 0.4301417288916586, -0.4817594182031909, -0.5821683879094628, 0.23254237736762007, -0.6304888303560627, 1.0354044230724924, 0.5408582097753885, -0.16612878490285574, -0.6230304939426184, -0.46179456403152885, 0.6307302955939654, -0.1879191953526886, 0.9416444319756088, 1.2465847364698914, 1.2032204557634947, 0.22677241964796407, -1.7233230876199013, 1.307492378172841, -0.29410923614731765, -1.7594268013820618, -0.9404418940875561, -0.05102127780588947, -0.20232493170985627, -0.1235210084597278, 0.7350982278908166, -1.4791589346803384, 0.4027147471634704, 0.4932737824917171, 0.5474507250573277, 0.8307725477364035, -0.04427358101453923, 0.14262558403813524, -1.123488504376407, 0.5523176828263668, 0.015339264111895068, 0.2905661615345174, -0.1723131718982535, 0.009028403881286512, 0.8071849887208348, -1.808322620124581, 0.08560059842754, -1.4044699273574937, 0.28179844164866513, 0.1897303878919816, -0.9252581354723779, -1.278275395332879, 1.7997507601114422, -1.5222983815998519, 2.017726054687154, -0.8164509312653464, 0.5712579572931036, 1.2407084916170714, 1.193409823501908, -1.533785849467448, 0.14441535756676002, 2.0426454785549564, -1.053358222503563, 1.3624535794254051, -1.1705150797231239, 0.0474903550524924, -1.7665094506712515, -2.210102605509951, -0.5219748043406441, -0.7082186063230695, 0.5114322925065221, 1.321449907834586, -0.44695012158279146, 0.9118747717204944, 0.61516670582835, 0.9990402356754197, -0.9301794343985615, -1.8429909612203763, 0.28550126690542593, 1.4215267222557855, -0.07242848496421173, -0.01143001720046795, 0.35389275862297087, 0.5136634079524836, -1.095951272572591, -0.24228084775246933, 0.8366871750039684, -0.09865945028335031, 1.009756815596304, 1.7716865896249105, 0.3563472578576435, -0.4840894075253287, -0.10270303550456543, -1.1616745520362293, 0.34399866285474057, 0.3913861554744536, 0.5960341221694896, 0.11021920844851367, -0.9223086157712425, -1.1112256344020064, 0.3198585461868064, -0.7592713084262843, -0.20685955420784197, -0.836209845067897, 0.9627926606587992, 1.4198870346911177, 1.1962098871422953, -1.3943581936816625, 1.4009751219241424, -0.26833107994917643, -0.6669657914195829, 0.06311662845170939, 1.2127914832475508, 0.5952340819393968, -0.09899016921336509, 0.2217013586010933, -0.5549266902286486, 1.1473354084851628, -1.0543111137786088, -1.213578176572537, 0.5432094354913418, -0.30451260473236, -0.5159484072744956, 1.1767078890538858, -0.7710383915699284, 0.6358939170589062, 1.0825580613922157, -0.0804859630907704, -0.19546919750347508, -0.686475077547452, -2.2986897091780096, 1.622901571050656, 0.902926123850116, 0.8900087403947875, 0.29705709330634883, 1.4840421199423934, 1.573928170367497, -0.6909422056864145, 2.1478969491442053, 3.1895565315908003, -0.15139035953351795, 0.32556804218825103, 0.03748461962295745, 0.29860986553344804, 0.6177555320796887, 0.9975204098641949, 0.7143681761922939, 0.280608917315227, -1.7540581010057434, 1.9242380257827234, -2.09783660436457, -1.3116034616299999, -1.064967859402221, -0.021195981374441075, 0.1733803568358186, -0.9630417685937076, 0.8373140198984574, -1.8836272433560843, 1.031157188423645, 1.0599051462934375, 0.10645267484049453, -0.48065915967354395, -0.2785560836186801, 0.14965369694085173, -0.21342302439031074, -0.712716498915179, 1.868405274794793, -0.24825679403629136, 0.46701310212784564, -0.1065416979150503, 0.7426657293067539, -0.8337463534602524, 0.33692469315788887, 0.08235116780034278, 1.1424736165051468, 0.5931761456932613, 0.9348453468097696, 0.5609903387750564, 0.7114747764398381, -2.176605106322186, -0.8487252470928545, -0.6364532904052478, -0.24511795819203536, 0.9320335068062753, -1.1491094780700748, 0.09902967520717203, 0.38309744082657415, 0.7896868819558466, -1.2700655373584737, 0.06886791511799822, -1.4933938803431825, 0.7282420502019471, 0.6346775500828132, -0.95962847675412, 1.736784597037937, -0.8693454230768051, 2.3126860772991065, 2.188014919636977, 1.0742818289130245, 0.32506565584091396, -0.422056740288124, 0.44639261117445966, 0.7891895603779806, 1.5130091920824498, -0.19309357691281104, 0.8574913105158304, -0.6251514543011274, 2.9454139936465427, -0.06995422178649789, -0.3549866062013634, 0.8960038511011377, 1.2652953333625878, 0.6893927238657359, -0.19654360485047564, -0.13521942874452686, -0.37097555935389515, -0.3509449610162443, 0.6802495995420466, -0.017258851322086596, -0.20680784697757282, 0.33196336057843484, -0.8345937385195615, -0.17614296618432357, -0.4757665799531222, -0.03833101916721987, -0.8769211593778468, 0.015416062475178316, -0.12557432549933958, 0.28616610650644436, 1.2465407376706956, -0.46905554755429907, -0.8657156210312728, 0.2447007777694892, -0.3441688209651768, 0.32620741653311913, -0.4151309490715009, -0.7270749756304064, 0.47821071376039204, 0.7276359650294055, 0.3740512622244892, -0.30989809388141365, 1.2352560737863214, -1.1590643692837381, -2.0184455167263367, 0.32879704299570833, -1.2979358966554053, -0.31705004064395476, -0.6965801641684943, -0.4825136420583672, -0.38477399163272547, 0.3860406522559904, -1.26477096011482, -0.37601620091022664, 0.4023947637366152, 1.0769920924189587, -0.671658515273623, 1.0629040591720704, 1.5315707686543916, -0.08366892489058537, -1.204834746753474, -1.6708604684644983, -0.5710435856282098, -0.053973254858754344, -1.9116104235020137, -1.4572875932568181, 0.6162340141730931, 0.40799899285905733, -0.8199064622018267, -0.8720139749880008, 0.5703035183304144, 0.30634820942698887, -0.21683105582371376, -0.7017530449686592, 1.0374554820257131, -0.20124217557579605, 0.502519628069595, 0.002906318157679854, -1.5299697677045088, 0.8024639304170172, -0.34349824152090547, 1.385913490507522, -0.532161458012412, -0.1684680502882056, 0.8749920628417186, -0.04779079262189182, 0.90667920298223, -0.6033924257948583, 0.7426424402842373, -0.20357930041909073, -0.03155202011247769, -2.174675580326869, -0.8801555460260123, 1.3439736723061113, -0.24448362044369057, 0.8234902466413517, -0.30526719951871467, -0.9144747378918608, 0.3622078365453278, -0.1714622864624981, -1.0287927935771064, -0.03363816746196616, 0.3546991853991934, -0.7428668946367036, 0.7586448035842204, -0.5279252992124875, 0.9991050353604827, -0.44738328389230814, 0.23479057535302209, -1.316790116501793, -0.2247222033012521, -0.7412278363711833, 0.02307094815830831, -1.7293324556000182, -0.7810964439179106, 0.2225561280996625, 0.1292758022383039, -0.22135764410748596, 0.5989285762847641, -0.14767629067180876, -0.3424896705026628, -1.6628412699541033, 0.4270205471578971, -0.8651859826961393, 0.699672677293563, 1.3118186029673842, 1.2487595652018362, 0.6140724716874696, -0.8313824412541604, -1.203217314980341, 1.6357300219673858, -1.0274630652531527, 1.8716611652874253, 1.2844465974450712, -1.0197933796878822, 0.17505215462626328, 1.128788475587877, 0.36859556133384874, 1.9410638229052055, -1.1519559961418346, 1.124450774870714, -0.06163699183824567, 1.17804485261291, 0.5009796760650946, -1.5957204328941872, 1.052902676432393, -1.0949548693329918, 0.03731281374411809, -0.14650568320282875, -0.571074232159957, -1.228395251834918, -1.7665776589997122, -1.296673413292808, -0.3208288180113512, -1.0570475156228163, -0.3694016701712127, -0.21019640440598028, -1.7944347033979131, -0.303432627716563, 0.5398587182059988, 1.8362032417810275, -1.7438888761925475, -0.5453826825958298, -0.5448154932204692, -0.7233224860522631, 0.49465441116556386, -1.626725375536805, -1.6575684265046249, 1.385930145734346, 0.018520159539113977, -0.23338676615435397, -0.288682615508394, 0.13776580087278395, 0.2958816231367601, -0.6486483995275428, 0.4857555500305313, -1.0194832794615254, 0.38864336336703986, -0.8092206758802806, -0.1318769471165339, -1.0686802726693156, 1.058123232772662, -1.2867973693393775, 1.1331488773609606, -0.0994346812034943, -0.8687057466235217, 0.18994104437165493, 2.2945285765959342, -0.8780864686296219, -0.23268844960055982, 0.09217269650128851, -1.1756454646277457, -2.365936235326952, 0.14806599869565004, -0.15687446446014996, 1.2650167922027185, -0.10020138909077997, 1.6663148201462303, 1.5441186674952359, -1.3588818551014228, -2.003190234786737, -0.1963008968662683, 0.009748475594341945, -1.2277766922515045, 0.3673550738728241, -0.5300529054714506, 1.7395924593184573, -1.4534798613570088, -0.9764484231294314, 1.5586978770593918, -0.019586881217963495, 0.7575492395051551, -1.1286477580364476, 0.5987436560426899, 1.7736322623414276, 0.07766869014108423, 1.562467910243597, -1.3499158513314053, 0.023327039684385556, 1.8510059692211764, -0.60621107700546, -0.9026929100947088, 0.9171951104539388, -0.2427218345944506, -0.34389060504721336, -2.2276800899225653, -1.0156371351291291, -0.001578576364483323, 0.9986336763877954, 0.2367406434108295, 1.9158985556182815, -0.6756737112684896, 1.4072846129616157, -1.3187761942203309, -0.6508232606466552, -0.8175121409798095, -1.1039109564542264, 1.0919883951393858, -0.8315165722896485, -0.851055078562019, 2.0534019271289106, -0.9454159211535148, 0.49386735562320866, 0.6016158165998658, 0.10844357099235648, -1.1977700939272364, -1.538227619052213, -0.9718603555825396, 0.5957530035112665, -1.867101526907059, 0.6619832498196977, -0.11272432338300734, -1.1715336969484138, 1.9845729265028247, 0.11916162018801717, 0.5692073578974319, -2.019656722593297, -2.043168951547967, 0.43196277089660406, 0.10161411256287976, 0.25143821718381043, -1.0010815019708232, 0.2955706216564393, -1.2304997093584351, 0.13861395555840933, 0.6486583262851036, 1.9063941931325075, -0.311588072413632, -0.6486748375419873, -1.0201201954165597, -1.9011538458077166, 1.3016786312146846, 0.802370695531153, -1.3445316328137533, 1.5751538893382133, 1.2216974205137507, 0.18693790672454433, 0.7028835706197236, 1.8406187789677626, 1.8922240145022116, -0.6209608203354082, -0.5374743568525296, 0.3322356122898877, 0.03313539923474808, 1.055108499756084, 1.6371613188381409, -0.9257284198014014, 0.5393717555398158, 0.034097736541181874, 0.822264682786582, 0.4115447921887212, 3.1527661227590023, 0.11120484037509865, -1.0261819812037687, -0.4101595642281392, -0.4635340076028221, 1.2339957117792617, 0.23535029763585252, -0.40313997094256493, 1.5577934237343514, -0.022577235245977233, 0.8799505283660449, 0.1408387902516171, -0.7919105287133362, 0.33289631520230784, 0.5425998577315808, 0.2584186649129681, -0.6649052778657241, -0.15783217576507313, -0.31028256142004923, -0.6595349720570375, 2.0012873760661773, 0.5088078000140174, -0.4920980959125403, 1.1206491935217733, 0.7389921225316969, 1.4875680930040889, 2.2474851080466998, 0.263638709799756, -1.2554883259274934, -0.8858362369797018, 1.130808948223301, 0.9969812502710107, 1.1301020856382213, -0.023123059637774054, 0.7032356046111712, 1.8493457149518535, 0.06723190099801249, -0.40802256947136084, -0.2897138058218799, -1.334452527019318, 0.3801951967985556, 1.2766418394129497, -0.6935990380695257, 0.003736365229413982, -0.31214927838997947, -1.9734563966481147, -0.14084157084012608, -0.9682038007298941, 1.0556770420214063, -0.4694674244681053, -0.3518295409573826, 0.17784990261487008, 0.9068985465363945, -0.43929963141961864, -0.616220119715144, -0.8539731399138168, 0.9501366449778724, 0.5632522235908363, -0.8738441344839473, 0.7333290510816347, -0.6219451689664038, 0.47428395050089683, 0.16780364386927857, -0.4358409019561253, -1.0860160659051386, -0.3377713712815344, 0.4674695994364735, -0.13974067572372265, 0.32233578903422555, 2.507119812372826, -0.6780616358215705, 0.010617539038314344, -0.18040245159544233, -0.9694434794235266, -0.03082022005879389, -1.8204755766446825, 0.907765218243803, 2.468231587257519, -0.11225644743064678, 1.1759894384409524, 0.3035830614919513, -2.017997322424882, -0.04137839028042285, 1.0004475782268094, 1.5184239467912637, 0.42331486205980273, -1.9641668745271996, -0.46664350271609945, 0.9937747182531133, 0.2379135526328601, 0.6611329150831401, -0.04732773340903896, 0.830664132291698, -0.7497007584387126, -1.8048187546730032, -0.33349867915218895, 0.6685081421967439, 0.306146123692126, -0.5834092181808866, -0.6817001029445816, -0.9582552331061792, 0.9853244892572457, -1.9321859148905576, -0.13954822200234715, 1.3317794718324085, -1.229475610759979, 2.8759161734232417, 0.6489347831528002, -0.45722221669769775, 0.11049220355015035, 1.471544319368233, 1.7297075088543081, -0.7529098329106568, -0.1292115924310518, 0.7175705336301131, -0.024420706689121212, 0.23954421218512473, -0.030060305151421694, -0.47931765890394956, -1.7552188153848867, -1.3624885260771546, -0.34677620789480756, 2.09189697546855, -0.19948263299174374, -0.6523619118382964, -2.0291255571072697, -1.8707404437846806, -0.003617057404858683, -0.30099047370242094, 0.7263269550443192, -1.0350714806524028, -1.1537834738090962, -1.225891390508222, 0.9847889908916961, -1.0803884147285687, -0.40012059681745366, -0.3564078933685764, -0.22076745316197796, -0.6926778893109868, 0.3266798200151672, 0.681205107219953, 0.7234124544072402, 0.9184690045669051, -1.3662617598644498, -0.049284763869494264, 2.318212078756457, -1.591256141821596, -1.3025708253286767, -1.965116017305132, -0.42866514571522446, 0.3251960080448907, -1.6867155943878362, -0.32773434703070825, -1.564875061911376, -1.628193939251556, 0.35526586477242705, 1.7035666241557201, -0.5966266605330564, -0.9602056785646915, -0.8265041847265325, 1.8696232040172123, -1.0841349919826087, -0.016976729083351322, 0.7843299669078393, 0.7225228656946773, -0.006646776045171953, 0.30160005187158495, -0.7334188083392092, 0.9953477520309559, 0.3879762978086052, -0.4646110657118919, -0.08387504255168485, -1.442204844661522, -0.29521747250521013, 1.9767520556538756, 0.1945730439004657, -0.13293361556360625, -1.0436036479205957, 2.440916732009896, -0.16765046808046163, 0.28280424812063315, -0.7148332708606484, 2.0762558381392346, 0.38335226201011924, 0.6336088414289939, 0.5869691111984018, -0.7582734049852637, 0.45245221488774323, 0.6865587778357446, 0.7073792044711503, -0.14445122989041462, 0.11513533210073323, -0.7917420291611036, -1.2162709657594957, -1.362981937666065, -0.9185982462270323, -1.7585517834284738, 1.3961199661554153, 0.5230113129000011, -0.1543716069121318, -0.3105126462918799, 0.5792289402954881, 0.02982466419507982, 0.9506399574867757, -0.6160474121594286, -0.8613466975190499, 0.08864166789550512, 0.07973517691278317, 1.4973200708567544, -1.1410100316954324, 0.0988348754922144, 0.6809437703659463, -1.1895915699017383, -0.36627224578361056, 0.19168813903991747, -0.06132159262265795, -0.5223676320244325, 0.5855566761406524, -1.142589020554339, 0.4415466674028178, 2.639127281457445, 0.7719333760893817, -0.3951528496368505, -1.6118198714993885, 0.020723676087203748, -0.5839819000930715, 0.8008747218628162, -0.35137989006857845, -0.8734991546822123, -0.8279772907360539, 0.013284023685565124, -0.4209099460028374, 0.007811640902824799, -0.14357734724730692, -0.5353794275812042, 1.4901739261914437, 1.5220377197418975, -0.8529875919147056, 0.7467911699700632, -0.6247777660903013, 0.028321416433246354, 0.5982632214708363, -1.1058659798017683, -0.19119899677052316, 0.2703017118746034, -1.6119968274983552, 0.9253150765741451, 0.373868094260636, -0.10078742527240724, -0.4670356382486529, -2.65512654861905, 0.40547732873360853, -0.6737803686733508, -1.246298536557992, 0.4746051049429961, -0.19419216106233214, -0.5007823168460714, 0.269423562084247, -0.4220155443936917, 0.13876465672372698, 0.6766099989919018, 0.06597310397301205, 0.7311028370056307, -0.3421583433795886, 1.4030163150110824, -0.24706513674786112, -0.3183902678620387, -2.347883613344546, 0.7241624418555973, 1.4401016425495121, -0.6864483485761695, -0.6157991803327835, -0.5436441411904815, 0.0782237728905138, 1.4881126376036198, -0.5471869916695207, 0.2140752821900877, 0.7061713665004692, 1.5325802797127928, -1.2620159726194704, -1.2488265945250658, -0.04666553456203061, 0.8202648740659443, 0.07313955880319181, 0.12433194263991063, -1.800856658285569, 0.2245651991657858, 1.0466044744506413, 1.7536699719361093, 0.835905554632413, -0.11337226222741327, -1.647488053272981, -0.964786919486563, -0.853092293563223, -0.24034969181485963, 0.3232709019286, 0.8888140333271225, 1.1137154174505037, -0.09813049631621552, -0.7687696477136186, -0.008246431832932341, 0.44334363865042165, 1.935060205458049, 1.7576009515975226, 0.10701880734650808, 0.2191531375779829, -0.9393933504421695, -0.8622368759692409, -1.6469662201780888, 0.029619761999554718, 1.1339267806169322, -0.6499168268637245, 1.097185471821555, -0.4996514128959731, -2.2602125044419794, 0.25487041475598654, -1.0135282132149903, 0.6398132079649911, -1.5265331556165516, 1.5759498045402993, 0.480716810793203, -2.1495189944700592, 0.2142483697457998, -0.8978052356842919, -0.5311580444283777, 0.008816665120549473, 0.395177313181137, 0.47710908716929484, -2.637995104124046, 1.2063679898851964, -0.8919298176074425, -2.235839093224325, -1.2523925061149301, -1.192732334835143, 0.4505947010782992, -0.28880791511581955, 1.3887189808205056, -0.3364342231089456, -0.060671659556388785, -0.6941609059681552, -0.7542234792592786, -1.1427287430770348, 1.5326342201776981, -0.9497654693711761, 0.04603496034484255, 0.3444098483242457, 0.9598474193754428, -0.11902015650864249, -0.19303017673069714, 0.6625714830181255, -2.2201508904994594, 0.810214210253054, 0.5746595314001255, -0.5388342266688656, 1.532607310747164, -1.1892150586258992, -0.18118083278129388, -1.1315556997438818, 0.5738584352418149, 0.528527476075271, -0.7572834059645932, -0.5802115554281387, -1.262167416052564, -1.0832143182175726, -0.046320534971057974, -2.0972333459403525, 0.7690967305377674, -1.0500372947533607, 1.2325042322653994, 0.05676023504687829, -0.1883538717095831, 1.0725126263443845, 1.1874796930415934, 0.8112665314120077, -0.913696813821107, 1.3570675277310422, -0.20077654219874913, 0.773815980952103, 0.5320288773156576, -0.6804657002175908, -0.3721702679616908, -0.7605671535391797, 0.1918637109976141, 0.8532300324120352, 0.27476845562655117, -0.1066472652848016, -0.10615329445864186, -0.6984692857814455, -1.2523011026706263, -0.02545487588813634, 0.6515082703444669, -0.23814864657932697, 0.07421972315801302, -0.13734083290332683, 0.5520002933745952, 1.5246288502907341, -0.07678974542498804, 0.26599324234168664, -1.5994282787420437, 0.4854581831694228, -0.30418478986535086, 1.8557187100054031, -2.0515544909607457, 1.4207527568131217, -2.7105108500701713, 0.6869223325178004, 0.1736744722097889, 2.207528288935518, -1.1058354605037275, -0.2767892928074357, 0.3956864951541211, -0.4556514179066074, -0.4738577947163245, -0.42697376891291366, 1.4818225001629834, -0.043177890289098554, 0.6493132594615814, 1.5367163822227743, 0.23077132596843614, 1.5342645831400583, -0.4371433997557617, 1.4093551849422088, -0.3248981772977739, 0.7364062582723009, -0.12097484937710655, -0.8534703005224168, -2.1721356723766285, 0.9383287907729859, 0.6792018789797375, 1.4506919128604054, -1.200694809002134, -0.6830289121796017, 2.8931677231282587, 0.32309567962611635, -0.5003176006452494, 1.7427924295598314, -0.16882057811259515, -2.3229009539710614, 0.3240800168038739, 0.6025524995433319, -1.303444453800643, -0.5366513602292462, 0.31734610199317803, -1.1100239238367626, 0.7524636662461087, 0.865912683723454, -1.417916834073743, 0.20346671555406123, -0.5145146465792608, -0.5309577536311022, -0.08846102951109326, -0.3829226450148717, -0.6378599087909796, 1.4253866139681322, -0.0017741080334926092, 0.6280289567914094, -0.5700990820928866, -0.43801467734878635, -1.6113030048697794, 1.121000503898981, 1.6764888818343926, -0.470498760746192, -2.2451468479634498, 1.1533030671647329, -1.9349393327567614, -0.9836012366063288, -1.1550450835085588, -1.041823030317824, 0.07281367556398273, -0.47716876485917015, -1.536923146163246, -0.48356663699243396, 0.8551404759457196, -0.20453258906012647, -1.2880187694559377, 1.0085413359149573, -0.358115806102332, -0.672971413974247, -0.008153786261201548, -0.5063225973890818, -0.5421769208734626, 0.2729245713528545, 1.2515629977519929, -0.5760219243105043, 1.1238826902757288, 0.07427897358423662, 0.5383787897180319, -1.2860629719342107, -0.4483598293244884, 0.8790191598529872, -0.16381383104844757, -1.2263717715041356, 0.044873513836559874, -1.7109230101660913, -0.18455943795247504, 0.5594611619806752, -0.6958711617776544, 0.9884967095080773, 1.1156358233467707, 2.612208925350635, -0.7625437455945169, -0.8935699554641469, -0.31993428486454245, -0.9555081888172096, -0.924197414042645, -0.2591083278672749, 2.0072813644262033, 1.3497291936614388, 0.4813694020013301, -1.1925995600819583, 0.3944559443554377, -0.5679516590365764, 0.5820335496256948, -0.909746592128236, 1.6603875724603703, -0.2958265623982209, -0.6550790792375321, 0.866827312571893, -0.07307857404367461, 1.4906137643624435, 1.2170614241901059, 0.7707568617562665, 1.6468923807638651, -1.2762950121975725, -0.4720854871682289, 0.8984002935558933, 0.39407389357832184, -0.04153240392981536, 1.2855473278922411, 0.4499424721117761, 0.14774560213550017, -1.5595080629722178, 0.7895463878772134, -1.0641383651682599, 1.8060393263527426, -1.341764448224919, 0.7280463786259872, -0.16537189218510176, 0.5786137405839509, -0.6047770623786921, 0.9167802739439167, 0.06365609141662996, 0.07661274075431274, 0.3167637915486346, -0.03186766191686654, 0.502794096096869, 0.31773991013444713, -0.7560841063010161, 0.7190249224135962, -0.10268675904557517, -1.3866650915508112, -1.7545576740994036, -1.4859071002906667, 1.937023860458176, -1.104122579662245, 0.41903471834134187, -0.23509304655561797, 0.5356075971772267, -1.3172116017400894, 0.04682053088063645, -1.7591334300883366, -0.22632062251228116, -0.415068732641224, 1.6284670105587125, -1.0262718037903888, 0.8504411729382578, 0.34597302339839126, 1.2290674303201536, 1.5544798960230128, -1.0410062960751323, 0.5549334797268027, -0.5235433590495869, -1.1985905240946342, 0.2984217206986131, 2.0460492119349962, 0.7127325469290822, 0.8024182183119047, -0.38195023858687555, -0.6138116648946923, -0.09700902344631446, 0.03482444770417455, 0.937717368684087, 2.428801487801091, 3.504245048447142, -1.2687896580638005, 0.9036462609941891, 0.39731454283590006, 0.02133242481037865, -2.0407744846131997, 0.022549988014754, -0.39318191201967995, -0.2065970918770441, 1.0429168359119578, 0.6732684340812515, 0.5471284857782813, 1.381629009486953, -0.8654293148937957, -0.0729342609100288, -0.2938423341529764, -0.914807368474307, 0.5135201873641393, 0.13967864896955637, -1.4121836223586122, -1.8365090299311109, -0.44961763409507083, -1.3683844099508815, -1.5780326841128964, -0.28521694880108717, -0.5280943755184264, 0.8681152287908066, -0.43286087393872896, -0.8456323969259306, -0.22869012624488042, 0.2401393013038618, -0.6516998439819404, 0.5017002865969276, -0.11960429480278302, 0.931044311114293, 0.19219962617257003, -0.7658935064682676, -0.41622612112247875, 0.7546730025871883, 0.5349631099077523, -0.01066033271105343, -0.7751524605671574, 0.9996047304668705, -2.847107176520575, -1.1498533944792857, -0.8956435406408836, 0.6042755156124371, 1.0107020849417339, -1.3627032451174534, 0.20509917999552513, -0.526605605842222, -1.5040073472274758, -0.015944047258276382, -0.7834870016065494, -0.4138752937268699, -0.2897784912481834, 0.12393058628499125, 0.8425319284826494, 0.2456703058010706, 0.5132241699648945, -0.03162495564506595, -1.1968071863151344, -0.10649209092419423, -0.5032761404426149, 0.642707452708124, 0.8778899976689553, 0.28730454110378123, -0.7428691386630242, 0.5987295456994279, -0.1990856039450015, -0.42564788079020716, 1.6178131577649992, 1.1680411093548595, 1.1902817281720606, 0.1051543320141032, 1.0522035200730875, -0.6447501096261687, -0.3702452898101626, -0.005018012471332584, 0.41990809158123454, 0.49396658158127116, 0.7332953269314664, -1.0774647602896366, -1.1849384141209656, -0.10212800321518174, -0.22196293563914127, 1.6665430473875322, 0.6444134957936181, 2.0298417304090837, 0.341892040434278, 0.47055443627738647, -0.7073320281440026, -2.1475478257323903, -0.5281470275452161, -0.3642284450296766, 0.1948291940003969, -0.479998458101282, -1.5347389706795054, 0.07029839739973014, 1.6587932630176463, -0.22541350668489066, -0.5206322328054327, -1.887889264840459, -0.11043839856521226, 0.07130651682281218, -0.23535332904672596, 0.7204909383900561, -0.34151861353073926, -0.2790599215781886, 0.23841888674927214, 0.2563469650484608, -1.5988990910473158, 0.1968143790354984, 0.6847745225568488, -0.5075934769432588, -0.304819820160504, -0.562444565479601, -1.0514235581665352, -1.3393593161492832, -2.5701531482495192, -0.25273245764658536, -0.08791352877043844, -0.09049337338539272, 0.08411179584149377, -0.6506105803753726, 1.1287891091764461, -0.1207059506724395, 0.23346624142433334, -0.1517638698923263, -0.7086401318103062, -1.6149624291531517, 0.3188575614246073, 1.7082968026365488, 0.1051855205510798, -2.190266666606625, 1.550508089420587, 0.24630830989670235, 0.6465582655444988, -2.098996390731578, 0.8233482073834315, -0.7817600928209741, 0.057678712155005626, 0.5647394479387621, -0.8796060392093735, 2.3514347471897663, -1.479559943089632, -0.3679202554669179, 1.6881642880266479, 0.035650767602776974, -0.03994433272340798, 1.5057163647286318, 0.36881807830637725, 0.5025873083256235, -0.6297252232010464, 0.29350175271154044, 1.0219445676121814, -0.3274490077840191, 0.5688967188191788, -1.513003835211229, 0.6795131677278106, 0.1800863004833905, -1.1094670838706395, -0.3363627908946635, 0.7460799302321384, -2.96434764497101, 0.7413050867672791, -0.17868216924218838, -0.25971693168753057, -1.150803792357345, 1.223383392237913, 1.6848870629347645, 2.3160386959862787, -0.11099577696014519, 0.19602374769049521, -0.9845597524711596, -1.6741476156742128, 0.13861150172857817, -0.30238305114463987, -0.8554363327606302, -0.9060295046581359, 1.3914804908306175, 0.9817445171608786, -1.1237269838012047, 0.3809100780647574, 0.6359953124114909, 0.027944275698876374, -1.9021632840879779, 1.9246471581785871, -0.8274284567700485, 0.32029427219586776, 1.1136845974268064, -1.2277033394125723, -0.17716924214470398, 1.698452008677182, -1.5680758327886124, 0.15108979846663556, -1.1276093346799214, 0.003107227414126464, -0.08764190156250581, -0.28479273932407295, -0.6998520351454738, 0.5392974580303271, -0.7715230039953793, -0.06511744877600735, 0.5802008779427827, 1.3908056921660414, -1.7120097008869297, -0.057949311193092386, -0.24472023362436648, -0.0721638387195709, 0.9928200407683281, 1.7013247473360529, 0.7378622139487514, 0.8010554166043449, 0.44826408111517696, -0.7818477657259811, 0.02884255960185569, 0.7041500621221514, -0.45106670891113465, -1.0932301750044646, -0.4132508446602406, 1.7281998619626395, -0.1695276653625103, -0.8517206244028757, -2.1069187057433028, -1.7247700694210217, 2.4880714970998, -0.9554235970404554, 0.9580687501429105, -0.057662789893942766, -0.49582531451027284, -1.2894925296528097, 0.3305029605583426, 0.5547309334555444, -0.20529226659466493, -0.6648539028817078, 0.16692369375807686, 0.22655864079201435, -0.4824916033175102, -0.8234555980477855, -0.6235711870576904, -1.2550054340681753, -1.425860735955911, 0.9631442432139078, -0.5718111373891389, 0.5308609367590273, -0.03073865782129637, 0.07620773487968865, 1.2389244891626296, -0.08655356142446717, -0.8970985867864589, -0.024107575861009086, -0.8924541868259114, 1.211547068830675, -0.9054238671449764, -0.4136853149479934, 1.7532344792806511, 0.007399878707198047, 0.017903545089869796, -0.5837450878989427, -0.2764525561878009, 0.6149280762688132, -0.399803422371107, 0.571589679809542, -0.8407653738029343, 1.0663339885484842, -0.9759116302066865, -0.2081921248047443, -1.762804624000504, -1.5642063112695634, 1.1007315875203787, -1.2379754546430204, -1.9491876406148068, 0.8723033449331578, -0.910147186397928, -1.0581292163261191, -0.03353937491737858, -1.0443902595708345, -0.9489363344315609, -1.9851777218680806, -0.4721926223691272, 0.5951491493159153, -0.889214508148701, 2.4279123145662296, -0.3937767348325892, -0.5430906594408638, 0.12336250108600837, -1.2888392392199524, 0.8007753730107933, -1.2043791972831528, 0.6142414779028313, -0.5100948019502969, 0.16288427554479318, -1.5917755330258772, 1.4093851389377863, 0.0663336973330893, -0.387039181628295, 0.28692322377373697, 1.000411874119414, 0.1119445626204758, 0.147487146949125, 0.2842697363212063, -0.6334149347501958, -0.6541069996381275, 0.830094329211329, -0.7363987679254685, -0.5175384469623437, -1.180054436043887, 0.24320719663223112, 0.9331561688824523, 1.2192174426130558, 1.8794169001581582, -0.16902308743832467, -0.7911421202471409, 1.269444281086336, -0.49604038907820497, 0.17817042772461406, -2.044895680248087, -1.362841738073515, -2.4530373998983546, 0.3346427184066538, 0.27511969465456826, -0.9206346856511164, 0.1832163473736864, 1.8258455298153298, 0.8267048456647877, -0.9367824536599447, -0.14778532404302278, -0.4529802438284274, -0.27829522949230795, -0.9444328478086262, 3.0395416673010063, -0.3627261470549989, 0.24145593473225704, 0.18344644767632973, 0.7478170622470965, -0.025312778762193924, 0.275437458493446, -0.06870870841824062, 0.08496474548229424, -0.2723598782061461, 2.14093437201875, 0.6619195820294418, 0.06919871321732066, -0.6679673277860316, -0.9022908906205277, 0.027328912159271804, 0.9557270433413206, 0.9884272537552444, -0.53185161894129, 0.3125723320029731, -0.161369886479635, -0.42008922469828247, 0.4642257510943207, 0.4282594179905761, -1.5382438061971004, 1.5183825678573577, -0.695483117769151, -0.14246449438882877, 0.5338311811595842, 0.891716328738682, 0.6615687284975781, 1.8825666975326965, 0.5406879485581821, 0.7630175541780516, 0.7419291708173739, 1.5671267348295677, -0.5244983584430525, -0.6657509786912981, 0.16916636179981556, -0.5542125629655851, -0.4950526567208485, 0.36894662702619796, -0.6996890147683159, -0.26555183495418777, 0.318752141958442, 0.8489532118135632, -1.470099429440153, 2.4179817930668723, 0.2292859027518209, 0.408114994692697, -0.5369317078416086, -0.3710272977174305, 1.523368232239751, 1.170627907414938, -0.8204323589438273, 0.30156810455068983, -0.13576254443201788, 0.4084742747778576, 2.310488869030106, 1.6065708334392652, 1.167268174608668, 0.2605929293383287, 0.43487174528562517, 0.6933522412879146, -1.1494719656287438, -2.453535482543218, 0.5407130049684185, 0.5084948506230165, 0.037493591966910544, 2.129961302170658, 0.41949681045083126, 0.572982320794384, -0.04558482383362499, -0.5923401566820159, -1.2677200551380807, -0.981823173501297, -1.2089733879693272, 1.110719618564957, 0.1794987528228555, -2.8100585585460833, 0.24631883950539335, 0.2922933932969406, -0.7264969402958648, -1.8397274519826388, -0.2723195061320861, -1.7763952818182926, 1.8046904541699607, 0.12834957976010838, 2.8231564522695587, 1.7281300454529258, 0.8710004071977103, 1.7722806326832197, -0.3499920126166279, -0.3114633584345561, 1.2221040951048732, 2.0940328072572463, 0.11418724323057673, -0.7981833756880973, -0.07136298592396782, 0.008883292159666765, -1.2590017434042522, -0.6652214515262052, 0.8288656112206757, 0.25758461519045844, 0.23045115523544152, -2.157888174436514, -1.1034751214281322, -0.5825682754697411, -0.861573311878683, -0.24430840854430577, 1.8587367540094473, 0.769522912687861, 0.1254954407751423, 0.22039314011518749, 0.3518832474383497, -1.6554075985006207, 0.3922772465708743, 1.5688373379743084, 0.8443714404255181, 0.2112703736944381, -0.1486575463834113, 0.48359918505466126, -1.830249582982094, -1.179249749834817, -0.2130743455974139, 1.1296198548525935, -0.4205621831742583, 1.1892065101610199, 2.1113279455363703, 0.23152297377923045, 0.10016265169840957, 0.1890087841156749, -2.1160463806963663, 0.6881637157261096, 0.2917500871901702, 0.4525908604517644, -0.2273416018732484, 0.8164238020407676, 0.8851404032282442, -0.1493889183566533, 0.6397427454116479, -1.5856018994104488, -0.3093312159539705, -0.2615822965817942, -0.09006484514666288, 0.4881177835273763, -0.5645302533736192, 2.364611243735127, -0.7620314444417843, 0.2827999287588912, -1.179079870542123, 1.4209851943853105, -0.515133859905417, 1.3221782099347104, -0.6340494462740469, 0.7178908121819683, -0.8702795618766477, 1.5749951390153585, -0.3049444021771278, -0.8206507881614284, -1.1477098244283663, -0.15913672602988072, -0.12104280892416036, -0.42704992435983125, 0.3221049900244192, -1.1022462976822702, 1.3242355448482914, -0.8986430836952842, 0.834730210182089, 0.2702515966065588, -0.32158592947256526, 0.3100811683777601, 0.3167195395602462, -2.3308380056148716, -1.0050815654496237, 1.4574226237151602, 0.41145945921441507, -0.9210309120783651, 0.0953766150533857, 0.7565128159206013, 0.34358642705094317, -1.2424454096148403, 0.642574361289967, 1.4319744070901013, 1.0736283185806894, 1.4662413469165148, -1.93694864041407, -0.9525797194814376, -0.17163130235050444, -0.29478115020902396, 0.4343641384847597, 1.6571633457973622, 1.730057987223648, 0.7189732212571643, -0.8708033004094373, 1.4184196243012572, 0.36902162434179786, -0.1042360332117023, 0.0665408897279303, -0.7855348561471506, -0.3249940340308881, 1.0707886725765965, 0.6096003795392373, -0.926262530377618, -0.7703773144098606, 1.3003837766644022, 1.8328653536508277, -0.6320635232446895, 0.9794864423079294, -0.09730240745394132, 0.9717326273581914, 1.2216120264490002, 0.461418397325767, -0.6770484666790456, -0.1757132543417946, 0.7541550718866988, -0.17834210170782722, -0.2279515112367741, 0.41484090979869404, 1.292784359801254, -0.7974487015030495, 0.14680788269097178, -1.4199874428212178, 2.4183126278691556, -0.5432500943887212, 1.7759017078730133, -0.4086161415305612, -0.4099843088912355, 0.6193027741309505, 0.4112168194639348, 1.182737978618909, -0.00738912135587499, -0.2831401414033969, 0.8920827292721949, -0.8439948837380512, -0.7358323455297752, 0.4884726224089452, 0.7140662316645378, -2.4953720658102254, -0.2600698350762831, -0.9856009674632129, 0.23219915483873482, 1.5416852315196834, -0.22066362276578697, 0.5388425283638434, -0.4008002917764515, -1.3137501735711197, 0.9431076523835711, -0.5574605115463951, -2.0234744386071988, 0.010307964949379666, -2.0910507145852817, 0.9714947616318598, 0.3608051579952216, 0.7579161332344582, 2.4655858190258626, -1.6300877326256, -1.3565612222818138, -1.409032907662621, -0.9199098664066312, 0.6261582299530374, 0.2024066915658745, 2.140471709863985, -0.48942587496483964, 0.5877142766178137, 1.35635179725164, 1.7449418116062747, 1.454648421362043, 1.4302134670453222, 0.6596278753566394, -0.11527736463066737, -0.9564823711756357, -0.1115301806858915, 0.9591907710212196, 0.023688483615861785, 0.9841985078668816, 0.6827835486737999, 0.8857512314429563, -0.3961240361311858, 0.3837582558624703, -0.038211820648424245, 0.7711856377278028, 0.04120522236264049, -1.4752588085545177, 0.15874066394195704, -0.0496280362992793, 0.5492416446220367, -1.2323611680318867, -1.2515667096112566, 0.6261816806528372, -2.3095133134911077, 0.7062309195190404, -0.48269128914986575, 1.6441169693390907, -0.44901185078719474, -1.1271210457849916, 0.9039351232486675, 0.45762467258670736, 0.9150917228833065, -2.080786150951566, 1.7370083563615228, 1.11603687028754, -0.1692563441676084, 1.4788205288612128, 1.4095056737906406, -0.6009985411829493, -0.6466175806836435, 0.34587594721925075, -1.6040733612139115, 1.0702620919063521, -0.39112796238338426, -0.5721680239556756, -1.962683080277321, 0.5746829814800841, -0.636497440939087, -0.166286304365356, -0.9088682826000228, 0.6436285896157797, -0.2770936466588953, 1.559347653949997, 0.6654714750629207, 0.9636054395234072, 0.816038522075287, -0.13393709088431938, 1.2959751402215345, 1.2051907560377406, 0.6905529176965467, 0.22420394041221828, -0.10315104206941063, -0.34137787491472493, -0.5326004676314551, -0.38312778222058974, 1.059157793439882, 0.7570390910054032, 1.2676979169823792, -1.3310856564907936, 0.2788762593623298, -0.04388834755512146, -0.5243480152316393, 0.9763966931296385, -0.19086763974180385, -0.5494756239478547, -2.03954895730974, -0.15689754220922766, 1.1205664313331147, 0.6710755529921728, 0.22771709824604217, 0.2463705638823298, -0.05817137493797461, -1.9735363052583172, -0.34353046442421864, -0.7993939427539386, 1.5474625786482203, -0.6476609468465001, -0.31061846819672473, -0.4689480516371592, -1.479188108012879, -0.9788588778054371, 0.39360905385701334, 0.8351206729748459, -0.8157211283836733, 2.013162064260359, -0.8815817623508128, -0.6794893532888433, 0.17487213778635918, 0.2960428293056909, -0.24957500244998368, 1.3845030617145146, -0.3287489611183444, -2.0101671301513906, 0.6192821380756124, -0.54789025149376, 0.5709642974616124, -1.1680646704609134, 1.122718145520226, -0.3519481706328946, -0.48227735921242315, 0.7863999185951696, -0.5843095419216794, 0.22392278555234446, -0.046791665152431605, 1.2030092383021114, -1.5239558571045733, -0.9029510524266238, 1.1560817233896998, -1.261033116936287, 0.4312404021354577, 0.044022736827920204, 0.6009439277099051, -0.9980178247025893, 1.490930242909365, 0.7423975210393712, 0.23029975243810794, 0.1943566344973594, 1.5648270466455414, 0.23909879217272012, 1.7516014922247678, 2.129231486151488, -0.6648442096883153, 1.0406244090262602, -0.24726151274063402, 0.5902579460189137, 0.20994148891039904, 0.6112642171408813, -0.6863358781023966, 0.42976381895496824, -1.1071752831682438, -0.03266895017399201, 1.1425143828759614, -0.23859285610039976, 0.8018604344276725, -1.5537193275718268, -0.5592375335618313, -1.360331548958443, -0.05315377892949972, -1.2338145999525347, -0.04686919972768098, -1.1487666803903884, 1.2377676432998135, 0.34879293037014186, 0.7239802558074808, 0.4432373014901931, -0.7353010397959749, 0.3816719469410641, -0.4324130529579851, 0.3949238808013273, 1.473497932464328, -0.1977062640559172, -0.09030557437704294, 0.38064035680879527, -0.0751211319433799, 0.23402738792296363, -0.028311328503175453, -0.34295670229856157, -0.2619514931003023, 1.1708795977791056, -0.9997597066622564, -1.7381519731587312, -0.19977795837361906, 0.6034545664421952, -1.0537296332818085, -0.024505038150733877, -1.8328365278817507, -0.8595015923767365, 0.3568961185483098, -0.9363706944611588, -1.95855547907174, -0.35916025731924434, 1.5449711761652096, -1.2973248152704606, 0.41513878222728223, 0.42489281965600195, 0.9325126919040491, 0.27562727000277054, -0.6031972497826358, -0.34022952855133864, 0.3444505056488378, -1.177333890902518, 0.6955928988806054, -1.8173541981525136, -0.16808760963315728, 2.651570084383208, 0.34382486607380147, -0.277878890155909, -1.5194675443019594, 0.0015649645162271726, 1.4845824667013057, -0.22893263611721465, 0.45479657707100346, -1.5436853613046384, -0.6193457846005045, 0.8437308749827156, 0.25612225908714215, 0.8069934946265804, -0.07579548748482998, -0.9516900031857595, 0.5832579501202011, 1.7476200247028193, -0.024666915500500357, -0.61324728601218, 0.6054011332701141, -0.8882756120578884, 0.32771682291591564, 0.4413088116148429, -0.7536409673865871, 0.547215286313643, 0.017588009849261062, -1.0053645489599337, 0.5810309730196273, -0.3363558318910263, 0.2904389133101355, -0.33298755836207805, 0.5348051630410854, 0.8819188452968034, 1.7847598351971308, 0.31575053434667455, -0.20691976216539898, 0.589924458018034, -0.17200491218329694, 0.2645704825898886, 0.42482298532696666, 0.3217491851909391, 0.5066254788070222, -0.6131443351535946, 0.6191810856584558, -1.181919990063666, -0.6699964106200145, -0.5204555107851746, -0.007068291046373994, 0.7501452817853638, -2.776700968974381, -0.2782840796667647, 0.8284112395037148, -0.48637201041980005, 0.17500562129626882, 2.068909925446548, -0.9180387782851822, 1.2070263275526525, 0.34995346995434984, -0.8875115512814352, -0.4923285304275597, -1.7994517979010598, -0.29072589204439736, 0.8683761073456621, 0.3043215919126582, -1.576644212061648, -0.3138734375044564, 0.24283012959417807, -0.003416558717832509, 0.782998538008318, 1.2864795074595419, 0.6050546902661831, 0.7125437316675286, 0.03910881819493965, -0.262404461263369, 0.6030250865686698, -1.0462723108476517, 0.45265137245098774, -0.424567434995601, -0.5094736075596805, 0.005233289473477724, -1.1439145698596753, 0.4506341681831702, 2.048134707349461, -0.3531056337587294, -0.33307887916841666, 0.37687211859798386, -0.6261134836727635, 0.39454163685412125, 0.24716866985019187, -0.7545174779133783, -0.9874425430841269, 0.8904436039646214, -1.2066104776948818, 0.17969304451386006, -0.033332507696421744, 1.6940189902355127, -0.22766247600644504, -1.4686378197690098, 0.9187331350626322, -2.0636990150246777, -0.5295042243850381, -0.8703033904613063, 0.48568461252195566, -2.25355074513302, -0.26103791563403106, -0.6501991965465272, -0.0225400081242474, -0.6152509409331309, 0.5968156870852842, -0.8306006762498674, -2.557816717314388, 0.18758163731737562, 0.8654658262762167, -0.49397133669692506, -1.3929080281529633, 0.488209454608301, 0.5190490812028613, 0.5883949462987845, -1.496935792111761, 0.1616544926299052, -0.958536365786528, -1.252757683723471, 0.38391559202790493, -0.4728230853354998, -0.3265686727872379, -0.30853003640364407, 1.6277629497944932, 0.19940947401531992, -1.6482250410912993, 2.149846416320463, -0.783795332893943, 0.8207036041832214, 0.0690553821199035, -0.039774126584789356, -0.0474929108302696, -1.2927419387312609, 0.4871254732509709, 0.2866547174693268, 0.9002416325758836, -0.673308527997156, -1.4374517717408375, -0.039608834109684445, 1.1005697972170616, 0.1680690246170767, 0.2625713686452377, -0.4257035785039676, -0.8413213807935374, 0.5777321250558362, -0.9117227345495492, 0.5061097853639256, 0.8819632248809809, -0.9092247308066644, 0.038234108400097166, 1.816662614825847, -0.5295801223548378, -0.3869678080302838, 0.04553980696910735, 2.8268049108417737, 1.7350106201060476, 1.0573463558162937, 1.7111793349324935, -0.11241938460943142, -0.1130573568814186, -0.5472968156865583, 2.2151287097796284, -0.7238718293189632, 1.4430665234969173, 0.9012182805150312, 0.16293481057724915, 0.4382928918008932, -0.23831964730021704, 1.0515917769174157, -1.2677096282698346, -0.3185503538814527, 0.31054800065195515, -0.9141576223328546, -2.296403799156457, -0.6622640796713096, 0.1473096584286946, -0.9382688424107092, -0.6852025680497243, -0.4501591708657997, 0.7574184713638924, -2.3868562536905906, -1.0678369294298522, 0.4112997971263614, -0.37487313451586407, -0.16403229859041812, -0.2464594290506718, -0.4415684485954007, -0.054426864215566674, 0.35862982208242045, 1.6680334355684685, -1.6365519553651608, -0.8959418043223255, -0.3945541829178973, 1.4033432025717394, -0.16138605057755925, -0.020692796429225214, -0.035215999856154916, 1.0825745347239475, -0.3510151360475082, -1.2108382568345086, 0.05537046520142963, 0.06000980057400602, 0.3182842612841489, 0.7501656827067552, 0.06403645187413742, -0.770063038423709, -0.9324965840666376, 0.4689510258412124, 0.10714376622557344, -0.1875383443955125, -1.3927445661413822, -0.6306022075601306, 0.8320033102179689, 0.15646348006394586, 1.6477587041686819, 0.7246271307051825, 0.041169512859775666, -1.3060230389817384, -2.209568768112284, -0.7073915377569745, 0.15687094194851342, -0.8487184205556435, -1.8910478419693617, -0.10968347111022171, -0.6204654352913742, -2.351211282066003, 0.5488341509299267, -0.4759513869095753, -0.5365292822625027, 0.08338914502798603, 0.6543987523068019, -0.2116992278641144, -0.11022872665352336, 0.354795627764608, 0.6602951490227311, 0.07735648761869758, -0.7343724394991433, -0.8868106398409701, -0.7707709679997578, 0.014412910271142549, 0.24455489915832468, 1.1292926969524562, 1.4061097663160198, 0.5952822014319648, 0.3545137561661051, 0.21343146361031962, 0.3818917621061527, -1.2290688990176366, 0.4748947446403256, -0.7234681949780575, 0.8187072656959566, -0.1828822355111808, 1.1252945889872144, 0.14825569834270838, 0.3149795978457967, -0.5426240295233493, -2.023348997535412, 0.03078081361784732, 0.5799104683622786, -1.2138508777334078, -1.2256508180882628, -1.8497470406238836, -0.8222107959369628, -0.42647200244271644, 0.14771985972316004, -0.5555205142202412, 1.13261379739387, -1.6593603625215263, 0.5191874093707272, 0.47859279166480473, -1.3244076120349804, -0.3326361581569999, -0.8045934481339784, -0.3442751499933601, 1.1462241087085838, -0.18229636724250708, 1.3769124234924475, 2.206023626354608, 0.8130876368980806, -0.7697848471415596, 1.0958385348087354, 0.647588626724783, 0.745539165616024, -0.13567738055289127, -0.04926234098117877, 0.9945101404302961, -1.1003341836828333, -0.4548826204233069, -0.2314184378327069, -0.40963111099357236, -0.7204072209931047, -0.6148496901159904, -0.4142316453269293, 0.2442833859689864, 0.43127499992531665, -1.5573612514825164, -0.4585099462421225, 1.4161762265222366, -0.12666235037330473, 0.2276558385689565, -1.2423288134843877, 1.0651846628385846, -0.9571115198019973, -0.831436445583552, 0.45461979046948103, 0.39467267452309623, -1.1318780831589168, 1.342236817225915, -0.47971249333355676, 0.16487528400491777, -0.2580118584935718, 1.0406399255315315, 0.09859691983935971, 0.3246144964361823, -0.1797452566332904, 0.5601490217057161, 1.346322998841412, -1.3828125169143148, 0.6120662235371311, -0.8998967795161167, 1.607336985049054, -0.156651416788671, 0.7134469747475229, -1.392744321112458, -1.517394521368343, -1.089246480445161, 0.2828467732852584, 0.2781910702768229, 1.3637606192888327, -0.4892059404257036, -0.17200826671522026, -0.6520232610983329, 1.287560081748848, 0.6634399181357795, 1.0621614438442912, 0.8271437206433754, -0.11630053436497576, 0.011052547036489033, 0.37702577681880667, 0.9264093848167549, -0.3832721980593817, -0.4610329614975116, 0.4448982693362705, 0.9005581731484653, 2.506158400604405, 0.03724095293265042, -0.0052425467760200935, -0.6958955904924228, 0.1486552907286751, 0.5086758047073324, -2.6991170176793493, 0.17217845102358673, -1.9232132145360537, -1.5273009091075616, 0.3253864306581363, -0.2725392547570138, 1.0576958701179462, 0.8854505832046824, 1.9006464342813327, -1.5391889417674305, 0.06015002650065133, -0.6523047614680089, 0.4779404383458896, 0.7400527157556627, -0.0997257174968849, 1.1291703273566016, -0.4463670355501089, -0.369799710449196, 0.36900309039153056, -0.9948591718062344, -0.6247029826494499, 0.5571508125081579, 1.062548946536459, 0.8805728114603614, 0.4417577227654568, 1.315655044020119, -0.07273257296091856, -1.0732607560733025, -0.04089099534346015, 1.0548899079734353, 0.7097541400511416, 1.007207720031873, -0.35402223637052405, -0.6883143943330275, -1.6730657873544739, -2.5420592579273555, 0.35442301600081727, -2.3338233531837957, 0.9552688024823798, -0.5238700133719368, -0.7425863431576214, -0.45575445585086294, -0.43385254257898914, 0.598660757604486, -1.707587856955653, -0.8742484134073626, -0.3912199804042657, -0.12874645164489387, -1.9629340626082097, -0.4255710423197059, 0.22800744405456064, 0.9375039312848757, -1.0530504151564999, -1.056031831942463, -0.6765950654908196, 1.392667418205954, 0.14006059405670318, -0.34402920148440436, 1.133181490799016, -1.4485477067974748, -1.3537242107922105, -1.04604427773333, 1.7360530808015857, 0.539058712246814, 0.18281781071730888, 0.3487923561783266, -0.9516881006555566, -0.3722603840533587, 0.5278870588235712, -0.781315064310388, 1.0193236145669688, 0.8520737721564868, 0.19681756497491731, 0.020776985345962614, -0.1734711311758356, 0.050096589152758504, -0.20719194744858097, 1.204221505066019, 1.5278721957110633, 0.17444759531110432, -0.41290099942326486, 0.9267085283770021, -0.7816820149146771, 0.37840820217314186, 0.9531642219857122, -2.170823981278459, 1.4858544343232258, 1.4995290348704564, -0.7566620592067932, 0.8095206615957845, 0.17641504001203792, 0.8001818823208867, 0.25654991641342584, -0.15709997085431793, -0.08589179028140535, -1.1240176855809536, -0.35691870502238826, 1.9636680407150529, 1.0297503494050846, -1.432501392626174, -0.9794640058082354, -1.156894240281161, -0.6748431131371214, 2.018710133599479, -0.041813575752832705, -0.6175269450637234, -0.8405022480506553, -0.5902372177342231, -1.1487843837987606, 1.032228957554758, 0.103157665290429, 0.9581318808752274, -0.5802412537421423, -0.34827110839866404, -0.6142760456411298, -0.363993421322481, 0.06405296856656706, 0.5340930762570336, -0.24253250007748287, -1.7434352677986042, 0.1359336356048061, 1.2083153469749095, 0.1996287238848335, -0.8093647898905856, -0.6284524796265988, 0.6631959850406705, 0.16110173026233893, 2.4378882186763393, -0.35780746170329475, -0.4602894053662251, -0.9875573944167425, -0.8795822496077628, -1.7036042274615868, 1.1486474788131942, -0.21085721033070967, 0.3191740786231661, -1.1362412239878654, -0.584050251225211, -0.08214762238520769, 0.49103426836790215, 0.5978473889220375, 0.5859354899083911, 0.6727948230345626, -0.26141100542545204, 1.0546782246248596, 0.26113291525136645, -0.6837361535653388, 1.4819802547010177, 0.3407499800074326, -0.0445509789892359, 2.2724801567402997, 0.42936275030761517, -0.8663326570310329, 0.28804275486871, -0.7839556881276258, -0.9944992344107308, -1.361734857461641, -0.8434232175426967, -0.2015417468146172, -0.21698271878145395, 0.1226363032146906, -0.19489268999666048, 0.19022521479383914, -0.40215381778775816, -0.9792610500846521, -1.5545424394086456, -0.4733763786166811, 1.1213733470927467, 0.6576407401252695, 0.6885250104391923, -0.11594264845932963, 0.009931330990038924, -1.0770934020898364, 0.14321989338526583, 1.6047286160854624, -0.36999779092027374, 1.1568450289488583, 0.6952271331183164, -0.1648905123094346, -1.406732350420411, 1.4744776321089863, 0.1703259953969916, 1.1845474235797868, 0.445366869936909, -0.9463966886383542, -0.11619429719947727, -0.49844592570570595, -0.7555929330622401, -0.560019360913582, -0.19633626842744326, 0.8002418848854596, 1.213433751519143, 0.9603761740050968, -0.310794703826203, 1.0168261628058906, 1.1080558946112953, 0.5028400940098278, 1.1427008819217113, -0.49360210333010146, 1.701249496846238, 0.8871791774439327, 1.402803660313773, -0.36419859925089404, 0.7395155326388129, 0.2630806216987513, 0.937594571909631, 0.40531432142705676, -1.4698769746184297, 1.1728667638503851, -0.09067786442045776, 0.6392156131690143, -0.6587050562638491, -1.1373512439592186, -0.49614900560735253, -0.25020612442487444, 0.466188547833096, -0.5974882571649773, 0.6966860017069262, 0.1399691065262929, 0.7256771490342926, -1.4270165861855182, 2.0034623608120548, -0.05999375293836149, -0.7375971621236085, 1.659471850582883, 0.29988908001141185, 1.1332523566814818, 0.7699832742619961, -0.3488854844654136, 0.35594518075359466, -0.3888028274809323, -0.30284882121285817, -1.021830597373147, 0.671584331480931, 1.7653611841409902, -0.8329528680975727, 0.7397458353561265, -0.23930787692872088, -0.13261577885632753, -0.8728762687048802, -0.27341254913628416, 1.1694749234605075, -0.3515665913227323, -0.44107541057457095, -3.861578966642717, -0.4894374602996723, -0.5698768681711094, 1.305000389419975, 1.3464258607230797, -1.683576852894365, 0.827447754897011, -1.3721685288471004, 0.3989362774295134, 0.17251006661263393, -0.309128655114015, -1.6160462999922518, 1.9550073998869826, 1.3698722542220392, 1.4553196121702452, 0.29158453166545784, 0.35730510074329525, 2.3213452329759856, -0.061318143071433184, -0.6416902153296624, 0.8829933244312134, -0.3363650892817123, 0.5123698344838872, -0.029879056081838228, -1.2321656453890577, -2.11264581135027, 0.8125030712954623, -1.1443919210254365, 0.27225014583728174, 0.9671184514640019, -1.1492714285857695, -0.9404190721338224, 0.7702729730326895, 0.42960358699980467, 1.8523235684018713, 2.12582603449133, -1.4837281756284777, -2.0935642928998948, 0.18204669623103484, 0.28030890991780505, -2.162042249673512, -0.30651188344886643, 1.1699806380095663, 0.9415939205949115, -0.002983846502388827, 0.6415363017412303, -0.5433008386330582, 0.0477829493375182, 0.8983841659909207, -1.1054065604786938, 0.5085538606239126, 0.9540527401044823, 0.42959812731724784, -0.886796639027505, -1.2880452850025672, 0.39349724855113144, -0.7857252794975197, -1.1950684835010625, 0.32334590986337153, -0.21163602363796574, 2.2784438152793753, 0.17080137241220905, 0.9016251505757918, 1.3059654781787473, 0.179283284938226, 1.0246965405548156, -0.2764282518977407, -0.14850740717130156, -0.4514700757583297, 0.5290685856155446, 0.47960103534999526, -0.03703397517327418, -1.9156784116499321, 0.8280547798701413, 0.9076348117912652, -0.8245942887409823, -0.08237455152651893, -0.6093031515828397, -1.3517293546845066, 2.004561882633887, 0.3296258136113443, -1.3055640632593297, -0.16148790783101666, 0.774645071982513, 0.348679445653862, -0.3892178367042716, -1.9014093062375867, -0.8410925708080064, -1.344783573569553, 0.3072516927083465, 2.706419050969877, -0.9501110889892135, 0.9361763659521132, 2.54098622791284, 0.5925280173227814, -1.1314786375440042, -0.9525810912316073, -0.7491641370974097, 0.07128046986654202, -1.0860198325520227, -0.6441795503356409, -0.7973218648899131, 0.5406858208760683, 0.3472790832681371, 0.668881631096549, 1.192759114411498, -1.330772845469492, -0.2879711604259182, -0.4089546371813934, 0.970978316836236, 0.1693312174527379, 0.4366002057116632, 0.874383388077266, -0.5255170359657639, 0.06306542292994292, -0.8081942987524195, 0.4300914849872223, -1.8306911454399788, -1.1091348070759746, -0.021198872315975947, -0.6454031087611578, -0.015280168249823667, 0.13813219619002126, -0.30465742280256863, -0.26877245538380534, 0.632251679141168, -0.8997299173837259, 0.875801990723868, -0.06150431546036554, -0.08603397757168783, 1.259273381764035, -0.3027316127103695, -0.6789836580077516, 1.4789502637212983, -0.1888108971104608, 0.12135882373401267, -0.7183273265034139, 0.8156392513664884, 0.44870962989525787, 1.0121398732676854, 1.2327894313980843, -1.7797726827477784, -1.0761948606856198, 0.308143694149285, -1.876872085072089, -1.2056345502019958, 0.3251869586331926, 1.132982624130847, -0.20600165033689127, -0.6464899781869194, 0.0668908650144273, -0.06127936017992014, 0.9450979117862985, -0.8947354082188325, -0.273395860310407, 0.09536564650152299, 0.6142080044695526, -0.23483513617338403, -0.020564906049636393, 2.2746689203071724, -0.5457847363017267, 0.029851850371648357, -0.6239760631006505, -0.46769132275955416, 0.12018099744111364, -0.3695631314426555, 1.2667275076663977, 0.7237599214949556, -1.0745938979177008, 0.3593815327856574, -0.11373729009273886, -0.018091068838938486, -1.812661304709617, 1.2699532439288659, 1.9008656724406594, 1.7547828896832738, 0.6009125516997804, -0.04594324080740062, -0.3971601989079041, 0.9212784226867002, -0.3873945514136984, -0.6223844207312835, -0.7764420257407688, -0.4511833419039558, -0.39639333301419916, -0.4879270208020117, -0.5286152421824407, -1.5763682577022762, -0.11970192093787943, 2.2328730942627733, 0.1537725311305299, 1.230331650867254, -0.029870088234485278, -0.3084767733228553, 0.4382241101555362, 1.1745221839225248, 0.32989864841846844, 0.4921934631864734, 0.946469963599922, -2.4181813226906193, -0.034257034611047364, -0.5881404728882713, 0.15377528022407572, -1.0402153878592044, 1.0495676429948448, -1.1400922039190697, 1.4005520135004974, -0.4580601784252911, -1.214775480129357, -1.4499819198584345, 0.30802680609234795, -0.18623783842353772, -0.10556663437190933, 0.7399605031060318, -0.562691544357651, 0.16218510079544068, 0.26991650902255765, 0.7481175152378338, 0.9875701441210676, 0.21210654954533503, -0.03277885531980753, -0.18436543373119185, -0.22616750081135656, 0.42028043585649555, -1.1468502320437184, 0.7399079569045843, 0.7982248657731078, -0.7852031901675175, -0.26971022050605953, 0.8074274352404647, 0.5931595297943887, -0.11487660247604209, -0.767024939010016, 0.6088768050395533, -1.492305909103557, 1.5686517535401259, 0.3669516770214669, 0.9538390569919823, 1.242671679688457, 1.0710812609063194, 0.5706066528112904, 0.15264280464945015, -1.4059486083347164, -0.7988237171222301, -0.22893721736994496, -0.16098768985554038, 0.013042189566619613, -2.2228830900350363, 0.5250187790828552, 0.2627473657149514, -0.42591959472144303, -1.8779083138241506, -0.7297366182566006, -0.847938466601731, 0.08983979073554217, 0.9703214189253438, 2.4169402013105117, -0.9583795569304663, 1.5272690663246682, -0.7318300765190503, -0.9120745894104246, 0.42379054485290074, -0.10682789055156462, -0.6664361391226229, 1.6464907675966622, 0.2689476727220415, 0.849682820773098, 0.0023550884849427266, -0.2892938261271235, 1.1573470841894802, 0.9592025102354748, -0.21453737743762213, 0.1333672773039514, -0.6962409394793303, 0.060433688709352874, 0.1506397217696569, -0.3188752226866573, 0.9981992817010348, -1.3597411257826735, 2.433438149948384, 1.451895280615589, -1.9458398083529407, 0.01264169615143759, -0.6030486136630708, 2.835580500481365, -0.5637021732975875, 0.5203742731728576, 0.5832042632029024, -0.18418698225038327, 0.36784694682380403, 1.7394847579028827, 0.22111869849191132, -1.1302078962638136, 0.3685762038131656, 1.1835093936058387, 1.938143840045484, 0.1778548029607064, 0.18204825927732854, -1.6203276748556998, 0.2599197881148501, 2.5918747391371086, 0.15103373423602584, -1.5123194710343189, 2.171211226476806, -0.7779902365734434, 0.43427217190509876, 0.7181549820548074, -1.125965909142301, 0.363767240054195, -0.1344385006571792, 0.06906749487820908, 0.26613161068834995, -1.3623728477269879, 1.0602405073109624, 0.495961427958891, -0.29132617914501496, 1.8508882143055598, 0.9678110736119927, 0.2315449104391565, -0.669659423527412, 2.384350180654495, -0.8752245996046882, -0.9609897485542886, 0.07988264181320062, 1.6418002548662582, -0.1922527078842127, 1.2022245078099518, -0.14624318555311175, -1.177699781312879, -1.549472792943245, -0.9342164788543568, 0.541035654486809, -0.4745785636580825, -0.18022269473115665, -0.11467088188072905, 0.03073385636982175, 1.268753457831168, 0.04613293352988033, 1.1496393082255227, -0.16435308732421763, -0.5726990786222812, -1.4234138677862578, -0.7605597740539493, -0.1186462286288818, -0.44272479894405325, -0.8814474704337679, -0.05224041323160454, -0.40199410901909266, 0.8421333539117101, -0.7379056453697235, 0.4193118902688747, -1.3479705217778148, 0.7336735340648357, 0.3923318218376864, -1.0900708209188799, -0.4323048110042421, 0.44272812540168793, -0.7725398481765667, -1.1229890563490175, 1.2513384927189748, -0.12549293236048603, 0.7270691068060351, -0.07228058724306965, -0.04120516527216213, 0.37149487168708467, -0.8636297147551443, -1.0161562460374116, 1.2534098396170619, 1.411459761423191, -0.23882298253850917, 0.21053637833783617, -0.2544185764000886, -0.16581189095127366, -0.6799372997704273, 0.14614563480854006, 1.0042714602130562, 0.24536804878747526, -1.2277247777564624, 0.07799643099053677, 1.0453978258800904, -1.0895378589473288, -0.20876432816542695, -1.1140835105205866, -0.8986820797976859, 1.2611139001070515, -0.235969658464608, -0.7198071553659928, -0.42887902218250196, 1.182138553293852, 1.1380556091836362, 0.5881859462888175, -0.9539816138969639, -0.37763913881816824, 0.7672214777206234, 2.044658520843053, 0.7299743459747791, 0.11121177985489264, 2.051775614436167, 0.2304231634752393, -1.0644026599646683, 0.5810784071270965, 0.33761371571475807, -0.5021040785306325, 2.086484943484864, -1.3014039082853843, 0.8895199227986829, 0.18431916836500337, 0.5016332474834877, -0.2053237058653749, 0.6369857778768917, 0.21895175079656215, -0.47806696712861657, 1.1477166551331734, 0.18503035556562406, -1.7039517174053889, 0.15844954840346193, -0.2710865955103876, 0.7975234528143875, -0.16506310448511352, -1.1597159728228008, 1.1457028939651939, 1.9770264412204412, 0.18296853359186413, -0.7052235937359883, 0.5613380365777717, -0.6720936252473302, 0.14044115630140777, 1.4964289276247031, 0.5309751178728052, -0.8992553822295378, -0.26338903927670415, 1.2152251342997287, 0.7822498960702905, 1.536704358267416, -0.6863010026955326, -1.6596419293388103, -0.19457919880812932, 1.6004493602647782, -0.5968124920692441, -0.7074150753949949, -0.5162138591143298, 0.466541757173857, 0.7439525979177286, 0.4604764461192238, -0.09313375310417388, 1.1429688385318155, -0.008916999250044253, 0.9033214469996861, 0.15792860042834644, -2.3855437625182256, -0.08195076810471266, 0.5242615746164829, -0.7976269162511831, 0.7583453258601994, -2.6560449964440234, 0.3428971809435053, -0.27282132945419824, 2.388348611304628, -2.071989686987464, -1.3699506832554842, -0.46609419195783325, 0.6905235737731891, -0.6678307462661633, -0.31596595033055846, 0.6851556394119905, 0.263769692698256, -0.03131052682537555, -0.8910020315284267, 0.7398220126896816, -0.19434207449674312, 1.1301291231858144, 0.7777981255861512, 2.38230272410508, 1.0048525288717904, 0.35822644813210397, -1.3531183844883181, -1.4800482824418415, 0.19141080401547725, -0.11785293585627309, -0.7879582439510636, 2.2680325295373063, -0.2246683237772889, 0.5389499035248788, 1.836919999860559, 2.0284488027622327, 0.1575755298913587, 0.10868774857144507, -0.1699562027891116, 0.9662122914550567, -1.323600129708446, -0.18736678466287407, -1.3497749328650837, -0.6559736213205091, -0.18080793475738444, -0.6229231136520147, -1.7286881103233491, -0.3378404677149912, 0.7220577965964735, -0.35350384950190805, -0.7359387969994368, -0.22470224959144872, 1.2230609384101598, -1.884969685258959, 0.8420115154952066, -0.9124611246600659, 0.1954593875126709, 0.16057476844205315, 0.5638952830212922, -0.37505464886591205, -0.6842359709698279, -0.1748159283764058, -0.4985504312162038, 1.9694414233618955, -0.3501770628720608, 0.7062555450742992, -0.40952644401871585, -0.10687243266185428, 2.3442886794936335, 1.5529169447257698, 0.33338929763104835, 0.23424552944430102, 1.5132545366743109, 0.3915566828261236, 0.1265662684469629, 1.2819244194924688, -0.19966595324709274, 0.045412017631192146, 0.17589383532694888, 0.03757226552834657, -0.34754420044198414, 1.398029330445469, 0.4591052386083218, -0.24336792121044082, 0.9622641014282712, 0.6696159814514111, -0.5869036673105738, 0.4828144839959666, 0.50248053837129, -2.3033992789818085, -0.4496624621325816, -1.0619191677897286, 1.3247133220162228, -0.4330878060951246, 0.3252574129033983, -0.11767257164218765, -1.2512304532763872, -0.7367480341752027, -1.346119863115714, 0.27166256850279236, -1.3841568476630535, -0.10262910335394132, -0.5853255955035361, 0.42646825880292916, -0.4795912850348351, 0.061805713734317376, 1.160640114635599, -0.1249146593405003, 2.731787440843959, 0.16086236878924554, -1.8455437521950644, -0.5918190683084201, -0.3619459101704178, -0.9308240845042626, -1.2003352274166925, -1.1143413132323698, 0.7016346668978252, -0.22614125358110576, 0.5201996357084843, -1.9335473666960918, 0.8656014782497046, -0.4921987129170711, -0.5798520756273675, 0.09344006204530586, 1.143897560450233, -0.6659901051521917, 0.709953868342889, 2.1787482731062364, -0.41706917099444685, 0.8504990557509753, 0.8803340164500892, 1.14142196725091, 1.3163818265932676, 0.4759030524291598, 0.7567728204986126, 0.6223133634434717, 0.892171811104062, 1.8794530558289952, 1.519524081040023, 1.1620586156125103, -0.7990158193179022, -0.28961385089980435, 0.5450767120348825, -0.27705599454528185, -0.7148990269454125, 0.38812893976976587, 0.44144076796919707, -2.296365882104585, 0.8188194886697289, 0.024347058517626006, -0.3227086588710121, 0.08475246840400015, 0.622665051346404, -0.6374023195605653, 2.2191230348792734, 0.40703111928701596, -1.0766184298616048, -0.7841205319300467, 0.24581214167398252, 0.7384573048025546, 1.1923811415435228, -1.8758854387475903, 0.5986587932064258, -0.26455214295021334, -1.109518794054201, -0.35710726087657363, -0.5514551303357613, -1.893251035121123, -1.4602446432529055, 0.8820549342586569, 0.5184274904714588, -2.188724534828196, 1.9998216266958608, -0.5255557010641683, 0.699440855811343, -1.1692143894107103, -0.7024709523281284, 0.47308637248965457, 0.8532763638792313, -0.2486828989938896, 1.94090237825932, -0.2773452773702263, -0.764659245297921, -2.049924078000119, 0.01990449746941255, 0.4678137445470091, 2.6887343773583283, -1.1940130651152803, -1.8585959555819835, 1.1219710843972441, 0.4919914118600157, -1.412410598073671, -0.9627453944906349, -0.7837607821117496, 1.2768320796501038, -1.0764037732739888, 0.2115034773133481, 1.5366514898338768, -0.9274801111621604, 0.718255515063742, 1.2545834061706447, -0.0770697653749571, -0.8599384347548413, -0.09809178903894027, -0.9947063328676475, -0.786431915054815, -0.3768600299775286, 0.6210158916140763, -0.7510487481658022, 1.3137419045286765, -0.7809218946988891, 2.047297045505484, 0.4365194275215753, 0.4203273373582306, -0.9301135781252516, -0.6885783197699783, 0.22459663350224526, 0.4061582739118492, 0.4779697679203973, -0.4764522916321777, 1.5814864985431332, 0.9462051397588489, -0.6777701245236397, 1.797348794883506, 0.00199959957610538, -1.1696034620571047, 0.3587415144250535, -0.5737667676525303, -0.6462039174310321, -0.08257083203154543, 0.9034452014016708, -0.4400716741002594, 0.8398332047128836, 0.16494876233297956, -0.39113260565876834, -0.17258278841141944, -0.270612550674539, 2.3867359626708256, -0.3826381297536787, 1.3364727199288342, 1.5183816129229313, -0.7764257919709199, 0.43824028418785776, -0.4190518995604754, 0.06353736404819971, 0.038820999354710485, -0.7479040639917482, -2.0666172661094473, -0.6138332156407844, -0.4894338512441859, 0.2653432873800704, -1.3765055252948881, -1.040540744281247, 0.9690027619008935, 0.5551638174030213, 0.037309399104297813, -1.6114810246429507, -0.18184479474367923, -0.6648939052917014, -0.9663688135811894, -0.23104430952656216, -1.081061356253266, 0.5147275942821666, -0.4455483669093983, 0.5665267118693277, -0.18155811303821828, 0.27412960496145905, 1.671822899280478, 0.4944214989489558, -0.2414776626021349, -0.7722633357183953, 2.724777002137485, 1.881788540217397, 1.6348034892072343, -1.405453517597118, 0.6611285529097424, -0.18592893314237632, 0.7107939506373013, -2.685619002840031, 0.5163886850608873, -0.1837445694320389, -1.9181100157456468, -0.9056725957592927, 0.26566323027770194, 0.3670441112581694, -0.9772606537269967, 0.21189319863200692, -0.11885846325979835, -0.8305250416154849, -0.9924962849601692, 1.6779610551630684, 0.22710889206335214, 1.7221612120990029, 1.6468859373134237, -0.20382775459126215, 1.7464739249304513, 0.7123205175258118, -2.3961866390500677, 1.8387868955005828, 0.0975014623806258, 1.2913120331515742, -0.6466205872328723, 1.9596667245305608, 0.9631244150895428, -0.22399168456427018, 0.11320480022621679, -1.4794236363282471, 0.43359842558515194, -0.6437477034089744, 0.7873962412537213, -0.4556266651491269, -0.019142382435487174, -0.2637628250545574, -1.8652128898376916, 1.226122589598657, -1.3196462061316718, 0.6716264407113851, 1.7230283165561786, 0.09423028175909264, 0.3237517120762966, -0.13059887064648304, -0.10495361193602595, 0.45279029377270447, -1.9988006754534908, -0.17778563717036092, 0.8194798944496932, -0.44571773825614824, -0.62970544453902, 0.1068546080439141, 1.0290900077184701, 0.18718054938617093, 1.6528297187238465, 0.7918204015753564, -1.347925997970695, -0.39046038354894447, 0.6152115525644012, 0.6760453920915543, -0.341708792528005, 0.10685488635051921, -1.1326935272173138, 2.717482144217383, 0.5722783761834653, -0.053688794603284344, -0.5083588066195543, 0.49240850486671184, -0.4184992836794579, 1.202400359284487, 0.554534661680774, 0.4099046236655215, -0.8130893636971239, -0.30705727986573644, 0.7465156083902975, 0.8544888311552149, 0.9491089472755099, 0.9582177998853618, 2.1092700995944877, 1.5338327149920503, 0.0810891828059521, 0.2547370751449831, -0.4233965543230176, -1.4286943187838308, 0.6411925045339906, 1.3919273399120489, 0.40535495701656526, 1.043492247023828, -1.1200561635608726, -1.0644186412259065, 0.0758408641473368, -1.6018270016734821, -0.47877466138360325, 0.9419602348939846, -0.9913023571792113, -0.3194868036154848, 0.6854046701387849, -1.5501916101533957, -0.7466958534454725, -1.0488186667526787, -0.12426320538080153, -0.5359985813845867, 0.8522623242220694, -1.1579912708564226, -0.29661964251428946, -1.0622622021215853, 1.381675477503521, -0.7420906659991631, -0.5904407116923709, 0.8867956252974216, 0.42138741853408823, 0.04187078018999308, -0.44757516637204275, 0.11801877197819677, 1.284249642518636, -0.10431450762223839, 1.6464414710665451, 0.35192365782597196, 0.05322566941633406, 1.7861140487083194, 1.6733929801707255, 0.7898541989342288, 0.20008819021037505, -0.02550144792665235, 1.146046104713848, -2.333515339347805, 2.669939720711815, 0.25130617939961014, 0.06814808177342353, 0.8718917035558668, 0.9797963273908397, 1.1049082609241592, -0.43312466392729077, 0.7023489747238683, -1.3118213084515775, -0.9184541471151983, -0.5350430026023619, -1.110097778199797, -0.28658053429816416, 0.11661875989612398, 0.5490255847089287, -0.05060812497630792, 0.6054417037307468, -0.201133240388788, -0.9811652259817761, -0.48460941097253335, 0.3462604618976664, 0.3183302489657859, -0.31457843253413903, -0.1616082648806245, 0.2221850330062234, 0.007300356188340532, 0.7759780000802009, 1.123855284710278, 0.6853056095764107, -1.9697420655702313, -2.5786132197811105, -1.6594909874485992, -0.25282758815248674, 0.4409024355525773, -0.35883173476249514, -2.472221033444401, -0.9314002747848162, -0.3993374967124135, 1.0153287397872317, -0.957472993890289, -0.08410551081409377, 0.7483567382520115, 0.3787950666114774, 0.44092413163992444, -0.8747562876486249, -0.19737951371585766, 0.07438636847603498, -0.7674014031074581, -0.5736664446708447, 3.923906189275451, -0.44800820164623845, 0.025511668645904456, 0.10653015006124215, -2.257197310396778, 1.8570389309569897, 0.18581127790872806, 0.374721084019254, -1.67945384978007, 0.42823469968274847, -0.9265598767522474, -0.9520047736725621, 1.5773729900087612, 0.1575146691609754, -1.15461004064116, -0.5815591244507384, 1.6060536393458436, -0.25760420389736793, -0.8870437999683272, -1.383978828064657, 0.06637364011432607, -1.213098939902567, 1.3129157994327196, 1.1088425734807275, 0.5164708903199035, -0.2096658466602293, 0.29516842445488706, -0.6333436129871733, 1.359136063575518, -0.2962406091142885, 0.1781498322352406, -0.6462027938316188, 0.679149525839931, -1.2359897818280083, 0.5363007936574572, 0.7478901379568834, -1.1353011087441185, 0.906845754740138, -0.2973551429081841, -0.12958306225374863, -0.6110092315322783, -2.4514473590721497, 0.033299728106768664, 1.1481433006641737, -0.5344399134374729, -2.0563739308340043, -0.11567315356085997, -1.0772717047341585, -0.3314997755269705, 0.5686122850141119, -2.265821752917263, 0.12751816085772386, -0.0302225351409911, -0.3199831038289707, 0.027707638889239928, 0.4935419008686208, -0.4566778128461261, 0.19592109203130884, 1.7888223207546419, 0.08116973385381505, -0.23999123732902908, -0.9527845132127369, -0.4686034081915072, 1.6689768335991664, 1.1873873140500784, -0.289639298583838, -1.0772996668298613, -0.30966314083184626, -0.8519178878273457, 0.6955286468755073, -1.1592254971046556, 0.9033443076683066, -0.8145253644544999, 0.3370745491017939, 1.3626153837212855, 0.5050555406813763, 0.9783203955268419, 0.5060573367277251, 0.719019573788097, -0.49057281944192116, -0.0919960134083271, 0.022643371115517133, 1.356431232213348, -2.836146485086919, 0.9002448482224794, 0.40949798033975565, -1.4228378040489065, -2.324945467254974, 0.02782611122521552, -0.6057345008447335, -0.1143493172509157, -0.9019527737047889, -0.2584442224018415, 0.20778828745456226, 0.5288434712690053, -1.5449706383845931, -1.589353947993262, 0.3702680872261932, 0.04754806847316872, -0.3913018504213524, 2.7624727559528126, 0.3964517477024205, -1.6974056150612316, 0.49028416957562093, -0.6784065994165122, -1.8119974632325468, -1.0952992413523963, -0.31522460018258713, 0.2999424155499789, -0.9418646261965934, 0.05501860176027464, -0.1730324236546113, -1.025276438004816, 0.5248385215096337, 0.014717601943863942, -0.23911179045882633, 0.1787094672396507, 0.6799654763638161, 0.09333541983665512, -0.3661392156874366, -0.4251372931056651, 0.03561439565694522, 0.13967711723005058, 1.0989270020679736, 0.5279783111003304, -0.0422667896766757, -0.6489074994857411, -0.2754797309098284, -1.6921626276749386, -0.868484571450738, 0.47062036188005457, -1.0598851419127153, -0.6584290857238441, 0.4653307948421576, 1.822148074320188, -0.2800521877966524, -1.3952437756833778, 0.24718762625370164, -0.8022109486556989, 0.20460479516409358, -0.48821970887066346, -0.0975429929010043, -0.6219203622853181, -0.6961954113310729, -0.6723000302568588, 0.18216685331489543, -0.07712985855198291, -0.38636508261021146, -0.9096848197889923, -1.6430303128255583, -0.0549090646986712, -1.055750334161655, 0.3024462867479374, 0.9491647339009847, 0.2627952516094568, 0.9210765346045516, -1.0689013080319751, 0.9493186686473886, 1.9156330378933975, 0.855268855580166, 1.7312747381351172, -0.052649151564558454, 0.4451421659140087, -0.35885723630058936, 0.2553538635327973, -1.0868547683809822, 2.4084296247836106, -0.1290934118417888, 2.6119606189736713, 0.16460278380807725, -0.19079984593878765, -1.4509351827840846, -1.0998310132400477, -0.3310379415453817, 0.5612598040412136, 1.1715010504738175, 1.0151489413828227, 0.5008383758842856, -0.8897925986012983, 0.16196627954937926, -0.5213257393261267, 0.22620698061216793, -1.3423294361086815, 0.35543571101240345, -1.4959687069837548, -1.339525847954057, -0.5844346917088398, 0.6352413504205706, 0.22563175009824968, 0.9262899954648048, 0.4384607322446978, -0.38272243038434134, 0.5619853017126238, -1.5538333173318744, -0.23646890823262728, 0.4270526909816372, 1.2036737043759684, -0.833616025987384, 0.442866013779138, 0.37668486673884294, 0.9011240720545313, -1.7227405529244446, 1.5223740915659674, 0.41539322859472916, -0.683838393432336, -0.8318188139320712, 0.015546525166650869, 0.21659822162493675, 0.0276794878877108, 0.016834484672807397, 0.10483843912298035, 0.005800289562971624, -1.069763075217357, -0.45908068779258776, 0.32973241120392327, 0.8932292059440471, 0.8392771653710475, 0.3618899139592114, -2.6172429527331262, 0.3414579998481396, -0.35540489189878044, 0.20534575400497748, -2.1809073578829765, -1.3933452661088197, -1.6660366534222104, 0.5448066484287433, -0.9906659785544736, 0.5217770787111874, -0.10881961342806067, 0.5933537413271731, -1.0840692960721277, -0.9421115412013212, 1.0456453115152122, -1.7183077672061156, -0.10287331095157348, 0.9701312927433413, 0.2001164331327128, 0.7256968335398603, 1.3999828007237884, 0.32200171866856775, 0.08382320766985359, -3.1944208095687756, -0.3749272137583922, -0.6482669132139313, -0.25458156833450524, -1.2577856509829448, 0.8363379855859799, 2.2136947434788836, -0.27307298729844764, -0.30814276933352036, 1.241242108986878, 1.1972384228670012, 2.0220130760461332, 0.28649786824044515, 0.5912989513105111, 0.45462243199561436, -1.1361771697709009, -0.742793264155407, 0.8369289951912674, -0.8650698414184972, 1.8896963323641511, -0.11322515434327983, 0.1851343093991494, -1.8298860839157471, 0.42946660941082737, 0.9470891404559358, -1.7125491626472953, 1.1862293905739958, 0.19033625674941315, -2.5350484954078834, 0.2501567099625528, -1.6834449760516788, 0.2736983058725776, -1.2034230765506515, -0.8729963191878348, 1.664936944363398, 0.9388448052296267, 0.05682353091555359, -0.4063946069472454, -1.7235433077855777, 0.249709806235055, -0.05858653143247203, -0.47662126595606663, -0.22377788929200035, -1.5541343891415857, 1.2114826935165974, 0.16511014734496146, -0.1343245972876339, -0.6619379761593563, 0.7152548594636254, 1.4790904286621178, -0.03132933130087824, 1.5311433578217402, -0.1948134256400148, 0.22180524306411922, 0.44108090681973083, -0.3453943406575855, -0.5133890072027495, -0.9077931866179778, 1.170240443955237, -0.9396065664337158, -0.6895445454685116, 0.5269571143951434, -0.9122348617660174, -0.8083002330689444, -0.7652420256260534, -0.20195605204521486, -0.1314181101855248, 0.9236330619455755, 0.40941889778851875, -0.5015219639384986, -0.4169188936707701, 1.2005609921667235, 2.672549310932732, -0.15468481511527218, 0.677072242072325, -1.7954075860190717, -0.32897924560904596, -0.2985799941119276, 0.5427462481381911, -1.4491417629620376, -1.0257595978441438, -1.2038479131734234, -0.22422610545005625, 0.29801486865517457, -0.2581615242638618, -0.5750807442285661, 0.7670620696348507, 0.49780582140421453, 0.10444746777779892, -0.720293060257555, 0.9802108726996596, 0.1819403044511413, -1.1855668697000918, 0.0569794118313093, 1.179624679146446, 1.6599759828873928, 0.7401217029963195, 0.008377009257597793, -0.6668708967394189, -0.9908652783612176, 0.11586704542523782, -0.9439863658195592, 1.0655085242394926, -0.05409847352324701, -1.3914410851186205, -0.5458117209675021, -0.5276674760185631, -1.2995838996082598, 1.5426608377823599, 0.4762408781338393, -0.2057969015022351, -1.4880031908588875, -0.3512843577000284, -0.6590165084375258, 1.1981374825189162, 1.0242227300978197, 0.07976932902978447, 0.08340478000448942, 0.5236274713781158, 0.25043331393092017, -0.6645108480930024, -1.2586642231024847, -0.12166553933344651, -0.8034645051666942, 0.10428946088962868, -0.6630891054197563, -1.4807053000900228, -1.6054157578030748, -0.5696538337503052, 0.1613967748448008, -1.1912798540314145, -0.9366188083968096, -0.6936595754209067, -0.42232919616305764, -0.8779881494263654, -0.5437271932444111, 1.1215759371040235, 1.0742629455323123, -0.3605591681683559, 2.0920303075516653, 1.505632737731628, 1.8816480993817344, 1.648022656650824, -0.5395107841720732, -0.19599967475462074, 0.05673567499147618, -0.6693003626731752, 1.0112942127620583, -1.0855000971044144, -1.026253234181852, 1.262085933095665, 0.768342062275843, 1.311001192848421, 0.5519529163496667, 0.22402113184612338, 1.7516537391490064, 0.5796742139188137, -1.2387583022702608, 1.9877984581832793, 1.3167384694201945, -0.19655713120636167, 1.4211991548227945, -0.9687420388634856, 2.303894703120786, 0.15404039611477438, 0.6116432338719515, -3.33144140429626, 0.47478493786001325, 0.45932133632252414, -1.1956967710439248, -0.6411261170421163, 0.16495582510944862, -0.6337735395758047, 0.7483798511186572, 0.45334044477159036, -0.874739162989084, -0.1438326862518581, 0.4025786748773959, 1.777752914056594, 1.5078824131072273, -0.4952001869288622, -0.9395787415831073, -0.049422269809707875, -0.9926097719576146, 0.7347225874438723, 0.8747917057505947, -0.20091945804589573, -0.6754012454688041, 0.5468269809153802, -0.18491179083289377, -0.6468007479244691, 0.2146578834371112, -0.203610055028784, -1.8215158655305932, 0.006374842153037066, -1.404275460373843, -1.2215734461522907, -0.2824352103309679, 0.26029647196407174, -1.4377916142341258, -0.7388145180877742, 0.9069869048555886, -0.8516375701137678, -1.4647911557673334, 1.9097915762347633, -0.8875988919883518, -1.0824103908446117, 0.9804031314761749, -0.45020316056210186, -0.8266636519394382, -1.4560771879291259, 0.47855315763815137, 0.23923435953885092, -1.344574069612963, -0.13377404819379063, 0.9683770848066883, 0.6718623845193373, -0.3424490201827205, -0.9960523109493248, -1.483650910425885, 0.8809444085673186, -0.04349528824336178, 1.1141080172096267, -1.6333128017092027, -2.726402280066415, -1.0981036781241316, 0.9757810025356211, -0.02324346191296385, 1.3693531295510102, 0.24135241659531667, 0.4885344408551428, -0.5605815903096055, -0.6050536993815395, 1.319526568132334, 0.10502294609536807, 1.2141610005460834, -0.3229594095393946, 0.7456425072337209, 0.27164080324733825, 0.7197219577504756, 0.5194563432087898, 0.3126656782366368, 0.09717356132090069, -0.05793681298564666, 0.1395403554271058, 1.350696556394123, 0.8051258097183105, 0.3625220744623436, 0.836513473817443, 0.5794614208364668, -0.0777480531066208, 0.07822429993023643, 0.6499384840958914, -0.6354908239577913, 0.3240685137586052, -1.0773494893026043, -2.149189755295893, -0.6090428683833207, -1.1200463421149385, -0.14752268513285827, 0.30462295342683626, 0.34076675849570504, 0.6195945318285679, 0.44693952668984205, 0.9234671285143303, 0.16717741229700311, -1.7236235288114339, 0.19330391883282802, -0.742645350946497, -0.6073375288822398, 1.8955769666509092, 0.24940204631442542, -0.6612963763999984, 0.9169946458064225, 1.118911732633372, 1.1348112749885186, 0.9775051100246255, -0.6994039298549897, -1.1584550144868866, -1.480294539220553, -1.296427162892587, 0.6622289752171473, 1.5623498031913974, -0.11078188989594663, 1.0916486152294478, 0.8469301962028234, -1.0025053823667727, -1.5005707710362977, -0.2566521301683563, -0.20373430884655025, -0.2818370718957155, 0.06414992155528877, 0.3208254029507096, -0.5993524772697444, 0.17228623469298135, 0.23023938783434972, 0.5182313243616526, 0.5094144827027349, 0.6998946308748651, -0.47222639673376576, -0.5826878669221126, 0.48784905600295314, 1.9571493335918506, -0.07325875573067395, -0.14353506144982445, 0.5769926442018845, 0.1902897507524262, 0.1704307464910991, 0.5825345078472333, -0.2776649933825154, -0.008391936518796777, -2.1320411536922728, -1.62678592122136, -0.0640389491261919, 1.4218048938624614, 1.5582565112380615, -0.023572431495250495, 0.21037802874733813, -1.4549972235927862, 1.1346393529088181, 1.2363434890149012, 1.7438064166740443, -1.8307132013553478, 1.0093751201003542, -0.7943997400024854, -0.5646986455315708, 0.851625459383753, -0.7249529020187035, -0.7937302900323474, -0.24203050416206195, 1.21600938473115, -0.20264361472499448, -0.3735885823957193, -0.3280833304231865, 0.814288919080277, -0.14513877676576808, 0.6567974553437068, 1.8140560684191003, 0.17527759475339003, 1.145167968626279, -0.12514751019708514, 1.6645731423910306, 1.1721026457873023, -0.1546220843847023, 0.38565995303786693, -1.0783551130680251, 1.2889183467127672, 0.8407066124103173, 0.9103158598723129, 0.3210792253150352, 0.2867426711984915, -1.0713408265435982, 0.5650636817280843, -0.4101878188913916, -0.8034939170715328, 0.43285829533581427, -0.21700579211585763, -0.616223867481983, -0.47317722765000036, -0.5898256917184821, -0.27938778754036375, 0.1873542255386113, 0.12497724031277374, 0.16426750290773315, -1.6090348235430014, 0.7575870085099573, -0.5261880614998248, 0.8952652762038931, 0.7607783517771297, 0.47333586201080063, -1.110628606150067, 1.1305383211336368, -0.6456610954436439, -0.22859931399038386, -0.931536254570906, -0.7792481295320975, 0.02935411234329928, 0.6529085265061149, 0.09326373449813832, 1.3032775136084473, 0.480470871801389, 0.025101642426623987, -0.6862653880841595, 1.8063494127807778, 0.44047471081772216, -1.0952793233899663, -0.6826597418797662, -0.20403125424475468, -1.898137706555867, -0.32619166421867474, 0.401479788033696, -1.150308810459745, -0.4145943219613755, -0.9292521928320909, 0.5812006492330994, -1.3341338555009565, -0.6332939949322202, -1.4606674504924742, 0.3268658601348582, 0.20111339171702747, 0.43102433569831206, -1.4408207914143691, 1.024373305968936, 1.1009665405369682, 0.11666670790127286, 0.38274806767579184, -1.7287981847332339, 0.9556661585904055, 1.0211388366597949, 0.3903879765712231, -0.7883110431050722, 0.37749317873391447, 0.3679433900927834, -0.25656018463550095, -1.8749047626986872, 0.24844496993775567, 0.43429102546366954, -0.3631443500878524, 0.6182620267132647, 0.4090726720113762, -1.053726503966714, -2.2941272038592295, 1.5959863663964202, 0.9130861295703466, 0.6647466063855436, -0.0999997955312703, 0.14571818077942048, 0.36118947089490416, 0.4006850681344863, 1.1051242021373093, -0.2534151596300105, -1.7814952094563439, -1.4196835245065447, 0.6613726077667355, 0.4113513404500091, 0.39404223401176836, -0.5686056509063938, -0.7198179729523495, -0.35073979839313674, 0.23547975042749317, -0.5430264837010738, 0.8749055938656302, -0.8358043938556503, 2.5764667687952567, -0.04539315118729138, 1.10400166731371, 0.8022947282489057, -0.5218462029204459, 0.7565673952534299, 0.6107821838031058, -1.142319578931524, -0.36197243019449216, -0.2007748771604509, -0.1151807991157409, 0.07724478002298703, -0.38897655457388836, -0.6510707788558645, 0.45381082658116784, -1.4865011004558828, -0.16733915541422975, -0.14716382013997203, -0.9545094497660345, 1.7394145984778868, 0.8710334957116046, -0.9552245894775474, -1.1978079341529895, 1.1410995252751703, -0.8897116620141441, 0.7439313878284528, -0.1675408907567053, -1.9184694668042106, 0.3141901302050931, -0.8341434142521985, -0.7312550048095364, -1.1399469096007857, -0.5337712250596092, -2.105986197288634, 0.3213847907513278, 0.2991459397754115, 0.2629642589181532, 1.6866973487728745, 1.0165576670388479, 0.4855204494358712, 0.6613783132566732, 0.9335594772545626, 0.27656582299447985, -1.641168837556831, -0.48737827229033887, 0.28322017203875866, -0.867340803481122, -0.8369839614546805, -0.30743054437585826, 0.5647577069844302, 0.14270294293348038, 0.9189843243444743, -0.44481312585107774, -1.9698563320111337, 0.03862315914357256, 1.0367980178599994, -0.07999370572744717, -1.8405187626797903, -1.26923317269807, 0.20344826137495983, 0.45550700951765605, 0.6220114864894906, 0.2868611886473125, -0.11368990845498289, -0.08410775489092619, 1.318608930621034, 0.6276392192853467, -0.18462921728682094, -0.33797216591816875, 0.8232162305769954, 1.0236194954484776, 1.3745136903268635, -1.1181732149613148, 0.8345267008636567, 0.46315101746327936, 1.132702236781181, -0.9418552998997727, -1.1978999957042438, 2.3967149134947876, 0.7124853870993375, 0.5370282967195402, -1.276194476729066, 1.0253632264245192, 0.21775754701802946, -0.45924465804627285, 0.27937966438266415, 1.2662809425406412, -0.799177374245171, -0.9853540326164042, -0.8505065312646203, -0.20947247605262567, -0.2833371173625871, 0.40285904841427844, 1.7596638980395007, -0.6533154287728401, 0.7689299267140622, -0.9022516171083472, -0.12356827573400457, -1.4535882756281377, -0.43947448512093024, 0.7149847651931306, -0.9353790993778325, 1.6380279859016413, -0.27881339672975836, 2.2121328537187583, -0.428922596403022, 0.14840151072854083, -0.8037216914582109, 1.1147627103078386, 0.614783448179016, 0.6979464113611326, -1.2712266942724113, -0.06058632525945666, -0.12576606580057031, -0.32465670749044234, 0.41485938715315807, 1.2629713304364782, -0.3614313040032921, 0.1448792367171638, -0.28374983993574654, -0.5827937795409334, -0.9349212348076025, -0.32878738170196975, -2.473366599811728, 0.4802848467226279, -2.0618241057450075, -0.6735342038567417, 0.4631189499232349, -1.1696963021055087, 1.2089677554308045, 2.1817345578891225, 2.269699823565717, 0.635693450176794, -1.5094463342417144, 0.9407529501996306, -0.47181232306070103, 0.7571750630122063, -0.07365332128824552, 1.9669011915581271, 2.331333721333729, 0.3157352669944889, -1.2419614018985572, -0.027698298513781895, 0.06209442613207095, -0.5120156688151687, -0.3757906520470646, -1.2189539951388155, 0.5825531109208177, -0.5984040939007816, -0.09757230740976985, 0.7857934605023993, 0.9171329197518844, 0.5535649814779006, 1.3967037144296248, -0.06951655430484457, 0.5551968378570721, -0.5774065946074104, 0.7072865053267489, -0.8698264083870229, 0.20803457959364485, -0.864115064650531, -0.26187305492629787, -0.34661812950563636, 0.6001156913191581, -1.4466116000404072, -0.5916796296582162, 0.9236390872589139, 1.4841766724423973, 0.6900106824989409, 0.6318940314306294, 1.1821353381689716, 0.7816903461022505, 1.4737546299649646, 0.5157211681035508, -0.4517225874152215, -0.7420650691477705, -0.7686731217426169, -0.672365199535943, -0.11829614050908452, 0.00017478740340859516, 0.45542512290775394, 1.3835424404736256, -0.008079763108181478, -0.518370189036693, -0.7115753525176467, 0.7537031481592432, -1.1503906729728002, -0.22496371291711548, 1.1328401991094434, 0.7889927614496638, 0.32659104012332435, 0.14033538976302537, -0.20017865761469525, -0.9935680999696742, -0.33739090652327414, 1.4617668885168351, -0.704380661195814, 0.746854950040162, -1.3339198699803407, -1.440615362016827, -0.49872030821370344, -1.5166060294638068, -0.5522881704762187, 2.149738960340812, -1.086316879612575, -0.04064341005824147, -1.1050946377172295, 1.2278394684302512, -1.0425938420087384, 0.28747546886190223, 0.12085863794828268, 2.2106615450300353, 1.422415398956677, 1.2097664300707929, 0.053726670835803514, 0.3605790503227629, 0.37538812492984563, 1.1411342350124598, 1.0337680624828103, -1.8590567296928386, -0.9122077669966179, 0.3961148982327006, -0.6637609849602566, 1.4342244321867774, -0.9534496433958803, 1.5731230773293567, 1.9525128052048302, -0.6060910533938059, 0.07913923958738202, -0.20040034833088455, -1.6271924134383493, 1.1002441649085235, 0.7386162969311104, 1.3707964435538693, 2.7269105164117766, -0.043234261082713714, 1.0854700056094024, 0.6766894648501026, 0.008287517874425495, 1.2587860979462722, -0.12683006988960072, -0.08417595502154314, 0.7019996743251418, -0.5650104961078177, -0.5211183151821056, -0.4178784168051405, -0.5430926613156764, 1.694048905675777, -0.9870726195763635, -0.49381827265700695, -0.2601229839115865, 1.8677119728873082, 1.0448667561953173, 0.4948526816492166, -1.098381252589416, -1.0030434008893407, 0.6637250084850881, -0.03222221976818788, 0.8024416979062385, -2.0090018877130067, -2.0833208039207163, -1.1195126591400208, 0.4451012207943857, 1.4558223219673965, 0.08110782780195613, -1.8624252862644652, -1.6261564662736026, -0.1330905626251151, 0.5863855727620915, 0.05065964660592155, 0.5081439793359611, 0.9298017737815499, 1.39979148072233, 2.954152843295786, -0.6824993663746988, 0.5423638970267433, -0.47304343216789196, 0.31690205865868804, 0.9778434635195787, 1.4211019523886248, 2.01708946389451, 0.43434647743137983, 2.1677864418322472, 0.20322404129227234, -0.7467952426171555, 0.11981172707566153, 1.543017386529657, -1.3137840107785417, 0.6235750752402454, 0.7311515549496854, 0.9372917744976123, -0.07246089290986035, 1.5235482427937428, 0.5223365839685175, -0.7600193753490718, -1.4893975774857744, -0.8220680281202142, 0.2652196195362478, 0.7797640056445523, 0.17880948228638127, 0.5211929730835537, -0.6713967756959243, 0.21785082607904585, 0.9830773517717446, 0.09772304243219895, -0.7027302042974799, 1.9830907161488278, 0.18045985675761875, 1.3153880389269998, 1.5056806127742994, -1.1496180035701509, -1.5568880439193127, 0.4339319423233346, -0.08148737558225402, 1.3722272607122994, 0.8445088078694929, -1.6300025303781476, 0.8834250111294968, 1.3056245755172984, 0.20952373398001545, 0.12239895796745193, -0.20096883101899543, 0.5865987473492904, -1.0806957097694485, 1.3521862068217458, 0.3790800755488673, 0.07064964153025391, -1.0241320849621454, 0.4069164549081128, 1.77351024883954, 0.1133589965389466, -2.2187157973985214, 0.04562692138552997, 0.4083896861585934, 0.3007127948086103, 1.0751256718619158, 1.4229211664931918, 0.03216488507312112, -0.4805294714706104, -0.6753491465725304, 1.3481791664482579, 0.9197584782363534, -0.8879863906399448, -0.8319353004155353, 0.7562811473274322, 0.6171540253855834, 0.053298085255386936, 1.5805402587347863, -1.0704564652597797, 0.2533199484189613, 0.3222812136787513, -0.36941123873901377, -0.9989632541590984, 0.5373576034261776, 0.5224615506579467, 1.2544069172940948, -1.8760550808216698, -0.40560121211119465, -0.12623357003936955, -0.2759404470988114, 3.023159302138532, -0.9730634146759746, -0.560295616726743, 0.3252152173946657, -0.5744696385406303, 1.508687292809048, -1.6235518151189876, 0.7548483464496425, -0.30095865895533863, -0.0005519563514362299, 1.0737283490562033, 2.588948432829951, -0.04888612310106099, -0.517989803168661, 0.5635502667465209, 0.008236760957690088, 0.3034031779247422, 1.1634759054697295, -0.7540671218379661, 0.31244348487395673, -2.9343693451750568, -0.9583226029926263, 0.4505184042936721, 0.0005531887882710407, 1.3297279166345344, -2.1210421364097978, 1.9249063825889015, 1.6642796757477378, -0.3688197576918416, -0.13860310173163215, 0.3697306848692474, -0.07273721781084759, 2.1902217122952172, 0.6514379009996741, 1.6742374906978736, -1.5476230153113093, 0.28526629655148145, 0.8773248568525147, -0.27785245388876695, 2.293770809665523, 0.7076442831914949, 0.9915319818001302, -0.6365586687211959, -0.15782994188254393, 0.7694116033271832, -1.559025535662658, -0.27107912981660204, -0.8373034790231609, 0.21142503981636018, 1.3461372613901352, -0.5602145151000364, -0.9866228839902029, 0.30486188815236803, 0.7404484163795744, -0.8984145173475571, 0.18306078066555004, -0.27550542842900816, -0.12461500145724458, -0.10224573569645196, 1.3065690856502705, -0.06491807254981963, 0.4243496583257993, -0.4660539265807238, -0.0056749959173382995, -0.16346423116063044, 0.16006687989457655, -0.44645719800850375, -1.9124653302621895, 1.0406188721775649, 0.10674755380693277, 0.2712072707511097, 0.10123773880294656, 0.8385039826212148, 1.827014821738247, -1.3072290677053071, -0.487416560961471, -0.8855205245570915, -0.027496166705187917, -0.620552272846789, -0.5585056186556453, -1.2997702518682726, 1.5127736125539577, 2.050953469376329, -0.7366455971144159, 0.10732506586874856, 0.9606417285536082, 0.12498910164186634, 1.3816220572863935, -1.0859021521171728, 0.10701351174293061, -0.0635867007888651, -0.20419699898261537, 0.11960140457123455, -0.43615781938564174, 0.5582995901150288, -0.1867412120369137, 0.16277717314293613, -1.069351422415031, 0.3525317103992603, 1.651394693778374, 1.063024716967312, -0.49563273163207444, -0.7224297684034989, 1.083640720993271, -2.261109645758196, 2.413923146551269, 0.8097243779731498, 0.18517180224709706, 0.43422425386290264, -0.7114943899087935, -0.02987029829916025, 1.0288520061327957, 2.755464733305505, 0.5676645925250119, -0.3870201588520224, -0.5461548021205254, -0.40906701812055735, -0.21450777024574916, -0.4503411111715261, 0.5176949173413194, -1.7255660152164964, -0.39972958763958494, 0.07245506326226711, -0.26904014627832645, 0.5908969666789184, 1.4746559863268183, -0.632986881474897, -0.34152533616019615, 0.9710619130230234, -0.8828571097999336, 0.7087008781467176, 0.6361221301210541, -0.15299820185890486, 0.6926614692973997, -0.2372055595813597, -0.8893803097168146, -0.13643784964356484, 0.5990119713938065, -0.44090259769335893, -0.10852229341449207, -1.0870980666898367, -0.19337582452327282, -0.04295314366333526, -0.010634002516911958, 0.6006849041291538, 1.6503627046053682, -0.6764835722524355, 0.5646312890634915, 1.0703646455670648, 1.034520425061706, -0.008911878973523064, -0.18845041005240157, 1.839396537477113, 0.3325830056181828, 1.0182946657297602, -1.5554244916482012, -0.35061081972709623, 0.6085607137030296, -1.3672762129610305, -0.8071753501576105, -1.148147209649912, -0.7580108719519691, 0.3959230575869101, 0.9799979026325328, 2.2473256437393037, 0.30747893750300753, 0.6676091065788601, 0.548615789847299, 2.1546727223461613, 0.3872905325950793, 0.04920486198822422, -0.5073204985349913, 1.2520075071363865, 0.9789213028757302, -0.6959064678802837, 0.8937831388600851, -0.3496993167335259, 0.19686213544721543, -0.7875765303561333, 1.8048405095088236, 0.3940801568248638, 0.3987132080944737, -0.849077854177814, 0.18286506089622137, 0.4609364915227366, -0.06314917119727348, 1.6363954798016769, -0.5321798904478844, -1.0757863841140787, -0.5321648716896681, 1.10501788112774, -1.4418471513329933, 0.21455233272417262, -0.4688324824422313, 0.2944308159446352, 0.46251906109346747, -0.2618626422118975, 0.9929286825500593, -0.011460757527372068, -1.8020343370722574, 1.087098464028251, -0.9335464919464189, -1.1332199412245727, -1.1138147634483364, -0.05957435544597154, 0.15641349120943795, -0.5205865199315545, 0.4887366822783498, -0.16714353915108873, -0.668007441924881, -0.1448139368923588, -0.0728018699055998, -1.8551504891029595, 0.2403074116550176, -0.6998259790440906, -0.4715595065488385, 2.1431417749822623, 0.5979901022368543, 0.7748765127729783, 1.1280712753679374, -0.5517238170298646, 1.2023470795270457, -1.5460482449721669, 1.0455814184473877, 0.09395915573311864, 0.8906180319879741, -0.9697926108976013, 1.315649341893677, 0.03354062314354421, 1.1719438714685353, -1.45297907659785, 2.490582724119597, -0.14218153276966938, -2.052071671982554, -0.6203893478264834, 0.45151180758310655, -0.15272344248705397, -1.0272855030573877, -0.03875421994214872, -1.1233854972052146, -1.7353153260186522, 0.397185978312082, 0.9151289070067532, -1.238510233407205, 2.1613712368316103, 0.09492676112241821, -0.4097247643796219, -0.8712805473495675, 0.8160662060066024, 0.3708284609830553, 0.5803253122333019, -0.21251795185942174, 1.2527769458560427, -0.4563026229740463, 0.3021306992891761, -1.1880085256818294, 0.882878365908617, 0.7038238122432089, -1.0947406039379675, -0.8116953736293077, 0.19123783053644836, 1.030162123696187, 1.5307316383504979, -2.05457941465307, -0.3887774352677922, 1.5202371749663015, 0.4833839983647856, -0.9667616122568478, -0.9341700020564689, 1.775380897888609, 1.6459071096420923, 0.07901330565860797, -0.9183407074340527, 1.3228090730551534, -0.22801179821468373, 0.38717871014992816, -0.6240895619059742, 1.1451778636716474, -0.036647772526617564, 1.1734531665464156, -0.5205887705816277, 0.6636416726873867, 0.29337398257579805, -1.5822782233360086, 0.7259466500207676, 1.5975975680171608, -1.0111894552486487, -0.877125942823737, 0.8574007260283287, 0.3014246215529356, -0.6139064712765095, -0.004496166112185823, 0.9367886729165739, 0.6753941613022835, -0.9148575980581055, 1.222427482833189, -0.8862885673986913, 0.647302363820511, -0.06212845283653781, 0.13962801425478297, -0.054776014842368666, -0.8118261173855926, -0.4700940418625275, 0.09952549562143782, -0.5938386078770979, -0.38755420469177077, -0.40734592725403307, -0.3988042618063808, -1.8412305368859379, -0.8116134391180797, -1.0994448277720983, 1.0688021847996725, 1.048899460566394, 0.012695936410977021, 0.24379288089896053, 0.5479448937121383, -2.1787693495992957, 0.9453718943781748, 1.435486739109882, 1.625873867283119, 1.3370175314274977, -0.7245076261633289, -0.5616482022736736, 0.023471911508344295, 0.49915623244692137, -0.7249151765311383, -1.3735351848157398, -1.0550350299830022, -0.0692802299127961, -2.3459141054519486, 0.3879056441624479, -0.9532096939237075, 0.29441747324288065, 0.8961742359548721, -0.49726205609706464, -0.16698008007554238, -1.3165069771272975, 0.8070844658123729, -0.21036225188022042, -1.2085817094956286, -2.7187484239355615, -0.9255418374250086, -2.3939778750989875, -0.32139964372875074, 1.1224774127491763, -0.9763023815782935, 1.0285057700692293, -2.048699434947407, -0.5553627719537851, 0.04148745357879403, -2.194078511453308, 0.5952920630084597, 1.4336897121579173, -0.14435463235794052, 0.19358040457454387, -0.2689416279441075, 0.46080163323313555, 0.5831671424862529, 1.0853043465828958, -1.591504624788918, 0.5269851997869228, -0.11532732698970825, -0.5506319068495862, 1.320736935160434, 0.45479844906066047, 0.8892122806737548, 1.2820524183594337, -0.2564344182368597, -0.7808965776335168, -0.11287285826737126, 1.4704975210321953, 1.058650379318364, 0.0359923378021487, 0.07506444471709837, -0.06094372597380346, 1.442831294688833, 3.5867913445768917, -0.2788988259568259, 1.3086182523487464, -1.3537817551207558, -1.1278103428959605, -0.40151268834343834, -0.5480425404544679, 0.8614762413969481, -0.34850665088124777, 0.6366904044947089, 0.04420379405008338, -0.5154187903816817, -1.5553537732340639, -0.22634847592316307, -0.07112677817502061, 1.295522669813004, -1.2547454642446112, -0.12176320352597901, -0.0039297111946112245, 0.5529343437667797, -0.568641634851592, 0.2743121853734006, 0.3128163766628575, 1.3619431951778405, 1.2821185856291777, 0.546383873243056, -0.5356019850349176, -0.49880120424167534, -0.8357726273490241, -0.28744733350613266, 0.022276429146426007, -0.8173819727700639, 0.03715058008065553, -0.5742701215477908, -1.3098244277749098, 1.1123816504016188, 1.371804450847954, 0.04554889868645204, 0.49318136385763894, 0.2803776493253027, -0.09790854661025732, 1.0243947577975587, -0.3681462326590269, -1.6084914756584097, -2.4472698000123594, -1.3024924099186221, 1.2688864440551333, 2.462489333407106, -0.2411962707171135, -0.6287809575771255, 1.282447945111679, 1.401914208992399, -0.3902479193746888, 0.9715683843438903, 0.4877892266041051, -0.82723688121332, -0.3760436575811308, -0.13191891259867827, -0.4950548425098888, 0.40023152763650294, 0.3281683968457907, -0.7317009844512788, 1.072438781367352, -0.1280217913408444, 0.05160942872566653, 0.733643153266097, 0.9815407649171412, 0.6890982072228728, -0.4759163878682136, -0.12299780088400687, 0.1666558622997512, 0.940936537733688, 0.1432092744041519, -0.7684518104111349, 0.14113712468786485, -0.8940275891067704, -0.6784630349958681, -0.05452798676939414, -1.2722901065355947, 0.3050736025950611, -1.9218566306878442, 1.779970474387344, -0.3001520624410788, 0.5320741480021494, 0.9523991333662498, 0.7485572862991997, 1.0268372683751708, 0.15037069318157606, -0.5458459452086433, 2.0269442693296007, -0.7683420990417237, 0.3515835735197368, -0.24390211252667687, 1.3077535144154502, 0.28779082321263794, -0.6739673351505597, -1.452301190422668, -2.2429515770583626, 0.48920107088493414, 0.4992984320153534, -0.16054593435524628, -0.7839682574660146, -0.8576076658192684, 1.0950394519455464, 1.1297275193141452, 1.1981114418193786, 0.7574367772762189, -0.38412429897421, -0.6202387546420765, 0.47971697035318184, 1.0581760668902995, -0.9001242019205793, -1.1917055498147657, 0.22695912835072313, 0.14368170964438917, -0.9692098507416338, 0.9018868465606711, -1.4053891069105715, -1.0652472164927946, -0.2469728762117083, -0.4249085583078404, -1.1958221548274623, -0.6013062284773382, -0.6189732791567896, 1.3590034462433584, 0.5908568505034133, 0.6098622504774455, -0.3669639486658973, 2.1311470724681887, 0.42409291565588686, -0.18205441388746768, 1.3490824077817023, 0.653845528036041, 1.3848402245822449, 0.915969834954686, 0.04043147454919151, 1.4227132095300095, -0.5287251352403324, -1.1040958216658512, 0.6153953382480316, 1.9334577926936745, -0.16131993332753036, -1.4126960364164118, 0.1486652478868977, 0.5563027279304334, 0.7021313100335557, -1.0013285318577028, 1.6857695017937417, 0.7145527436436302, 0.9147141215890894, -0.31563859530352745, -2.0666451359433555, -0.5430595719802732, 0.7501639978928347, 1.2376307824898165, -0.4350620199956359, 0.9796216278149157, -2.018381177747944, -0.28024179412635897, -0.9565786954947868, 1.9739525209385154, -0.518792854719464, -0.014811152598017352, 0.04496455055443821, 1.0286827151494125, -1.5681213035560468, -0.37081732158227404, -1.5763018448820583, -0.07635139298233086, 1.4526460735913789, 1.2171039216316792, 0.5988938204968235, 0.16615431428133814, -0.10435323636114469, 0.4906297440513741, 0.027300118844121174, 0.04318889305366871, -2.249722196178236, -0.40401355041263476, -1.7047351182706978, 0.6951119523394487, -1.218662642187098, 1.4081941068321746, -0.1844420795555099, 1.876013587646028, -1.653422668555701, -0.06583632505494771, -1.076633450707543, 0.1990873111333575, -0.07273269183880077, -1.5795560741424675, -1.5573954859056147, 0.23956532613387962, 0.7298202921355933, 0.2748429357843332, 2.8888472640326612, -1.8680506215418744, 1.0692254247113848, -2.74669420211224, -0.5676565587295037, -0.03711338839578537, -2.0259591466640487, -0.969426582810894, -0.37366503834502723, -0.1348373666134219, 1.5561336894372901, 0.3116110063111144, -0.767772805955589, 0.0720091568164689, -0.3363210244538833, 0.18262436865883813, 0.14424420913799282, -1.245806737808788, -0.20511933421609363, -1.1763922718853461, 0.4173567983504422, 0.35091863490727193, 1.378102794598732, -1.410931839140077, -0.27360335569355243, -1.3401061723627994, 1.0484404270207115, -2.120005855623538, -0.8627187911198211, -0.6563612042602347, 1.1264614201606902, -1.3544306317164914, -1.2801177206120338, 0.4660340373523486, 0.8137069870620852, 1.2054844775634832, -0.26354106940518146, -1.3098221607233247, 0.4751409060836412, -1.4661833636904544, 0.6124245746006348, 0.6745324275761744, 1.0071208461974195, -1.6878695443779377, 0.3939857463505371, -1.522753118660546, 1.9699417199737355, -0.3154325342981485, 2.434825388236346, -0.08081797784898133, -1.071149669454445, 0.1910787871810313, 1.5171314176301078, 0.22716262690536898, 0.2291079222031527, -1.8049410294820498, 0.07248576686886148, 0.6128888804070907, 0.4991571599271098, 0.566509871536822, -0.16251725396122477, -0.45974683500323676, -0.84588946149762, 3.0471661774428824, -0.4991062974437463, 2.178878984439176, -1.2527125077336525, 0.4588294117941358, -0.731284147996247, 1.3739768419878713, -0.4229611359389638, -0.7605435836376403, -0.06586977994769852, -0.1834744619378993, -0.007905984810385529, -0.29096855696388974, -1.2550394802453215, 0.20380653293982884, 0.27887616803772375, 0.6630291461859181, 0.8556873218725226, 1.3877805300621464, 0.6138283291531108, 0.48361231834010815, -0.08209703047064479, -2.398706102884172, 0.9652572827562033, 0.9521158496143105, -1.1301628684076341, -1.2247179639350687, 0.026798723976313284, 0.503796535263031, 0.11352693335505812, -0.32466467979903474, 0.39119824789531527, 0.5566990526266414, -0.9133500682034377, 0.8751123566574999, -0.5804478149616569, 0.10912296683911976, -0.6470880841155817, -1.9162385861688052, -0.8654543251025089, 0.6953744511584342, 1.4405634260060316, 0.25709566848871473, 1.8942142106564395, -0.9751491862588442, -1.1084432673638827, 0.6915752782065201, 0.044820181578664894, -0.84879352265984, 0.4082833905427049, -1.9472414816900476, 1.29239938322499, -0.7933971230125274, 1.4165937418999486, 1.12578328801723, -1.7201615232715903, -1.892648461211313, -0.9792276142831342, -0.7375932387272228, 0.907775686001037, -0.21769248565999447, -0.6084978263577363, 0.14984879569352094, -0.5167476785397384, 0.831519116042307, 0.13678584820021789, -0.438245204494631, 1.301136014493932, -0.5755449931141134, -0.8044286542979595, -0.20470748778670386, 0.431653370593819, -2.3894556646352214, 0.20673121193053276, 0.6137029345971641, -0.9676270004402127, -3.0430728202176778, 0.721309396302921, -2.128799052592455, -0.7560357831652864, 1.0429269770076786, -1.3220340692412045, 0.2557034483003496, -0.6258268661363153, 0.6950178401310182, -0.1844049390498796, 0.7431143220464326, 1.4303813522435738, 0.7003564117158954, -0.6264626554434852, -0.29405273846120344, 0.8804476723782821, -0.23979848881492558, -1.3224724796359584, 0.9771350922291, -0.15515968548029235, -0.6989475360375824, -0.5948278485630671, -0.5934340601040594, 0.6262099848736504, -0.3069960500498375, -0.8267828271961737, 0.5484847900162729, 0.5397608451409696, 0.46422949706510636, -0.61264629553666, 0.4176709296425002, 2.9766890275560134, 0.6161887952829959, 0.2872768528838007, -0.5804408777815434, 0.4888611986801424, 0.03569679015270997, -0.9200782330665274, 0.5780752919881058, 0.21165784715091837, 0.6483894361748113, -0.12277669172431944, 0.14082429795559323, -0.9839732708629669, -0.5715534926254241, 0.36593003395577706, -0.5755865699808437, -0.7427760442818419, -0.783823953468925, 0.6499456243656225, 0.70998691147141, 0.4656813399174344, -0.7680209459323353, -0.05387027106940624, 0.5276851386544058, 0.1108172486819881, 1.1751418937542435, -1.82351330764736, 1.5229270372760553, 0.5582092066711418, 1.2527518635415895, 0.7636830517889629, -1.4419923904802203, 0.28015397717759427, -1.4470287241463353, 0.44603473670132476, 1.8054716271460651, 0.8918446620998828, -1.6988946719133753, 1.738214551889248, -0.6895418208338775, -2.1177808973464596, 1.5427537440409405, -0.2642124425883952, 0.5361961352530277, -0.31872779498134923, -0.48199239582461695, -0.4253294724502645, 0.04773219632065915, 0.27642979400868123, -2.3286291316371117, 0.9058340026688864, 0.8582355740449523, 1.3417059415638073, 2.3011457168383362, 1.9824535270871244, -0.00847305693628995, -0.6552558244331858, 0.21828087590780662, -0.01942723641469481, 1.424434807475053, -0.42393947806444066, 1.7969357614372985, 1.0237956332902878, 0.10628160840472667, 0.5103958481411639, -0.009468440769401546, 0.7904564055982074, 0.968005471279735, -1.5779574418490914, -0.08893102781324275, -0.8595450767777685, -0.8510607101958038, 1.200927797646674, -1.526947220923283, -2.1581568409705496, 0.7616743876051792, 0.9272917172739731, 0.1953044355097606, 0.7770046045666237, -0.5451793584532808, -0.6858826662884916, 0.4913120834332875, 0.6557572994350537, -0.19070753825892142, 0.2311168326193425, 0.16205595506355921, -0.11104993619007611, 0.4115487545313594, 0.600843444728006, 1.6305174488338903, 1.1775705275201682, -2.8657163226198854, 0.5378718766334037, -0.6128378716321093, 0.24708927048356308, -0.7922535296821732, -1.353701374265899, -0.5100545668418113, 0.5973585955083978, 1.1076735755247498, -0.3455859735767779, 0.9487116366137249, -0.036042608770956566, 0.0733515368309797, -0.1912075136390784, -0.50370720737923, -1.6087826157983325, 0.5196757470751064, 2.068735029739235, -0.6995600927144836, -0.45222102570756206, -1.8625534946087199, -0.3961803776405728, 1.8486146722421517, 0.6605623771476711, 0.6037737459361372, 0.005254710877854848, 1.3612568988503653, 0.30827088947467896, 0.213326503571297, -0.41607845146917627, -1.4519588639714125, 0.7157898123790558, -0.9117090612863132, -1.165960119050112, -0.29670780239872335, -1.0242854282378548, -0.9800807265973562, -1.7626257720740282, 0.4645174269802166, -1.260479043644964, 0.07189439462372318, 0.34844870079422396, -2.0711316522546652, 0.18411962353363043, -1.0095262072915356, -0.06065293500442716, 0.11413580122353793, -2.3700581219938304, 0.47504694063635433, 0.18462165909739348, -1.1413607577772413, -1.4500676399461352, -1.0612739656687113, 1.471493533950507, -1.12917547287097, 0.18120624847212935, -0.5981156920095247, -0.13028635677087314, 0.6838266816703928, 0.5070038218381293, -0.08722587088603358, 0.33010451745105335, 1.2230678002518032, 0.28009716526899703, 0.3109426092850895, 1.1691496556019507, -1.362877200147114, 0.9134190758315985, 0.48828437879859105, -0.28649708029478854, -0.653579204826359, 0.297280703423618, -0.19793138115351466, -0.28063525715300275, -0.5965597571397335, 0.16910607658742055, 0.5759918646909862, -0.11420014987244474, -1.2497953564360602, -0.7219984387070026, -0.05719203801009126, 0.08944838063802696, -0.5811741208625272, 1.0104488768526605, -0.8504813353074964, -0.39794356547580234, -0.6706938239323609, -0.6338507861439322, 0.2201348920710762, -1.3326994342407443, -0.4467146195526095, 0.8842962843722019, 0.8118679799490924, 1.3437416113545615, 1.568856017508183, -1.2297748350811613, 0.3670967297047034, 0.34489709760593223, 0.0015444512027792045, 0.781497303898012, -0.44349050732631595, 0.31038968595031013, -0.5898473821299466, 0.6389727586301508, 1.1279147976261121, 0.4655906550015271, 1.3197299097841964, -0.698827185632534, -0.616425720305169, 0.22922178448698652, 2.6802290083029305, 1.2279664979647358, -0.8330735702674684, -0.489306906088133, -0.9876069049828683, -2.1904049109748716, -0.43958348569976097, -0.0728389696248785, -0.467106231231019, 0.32164482230211255, 0.07041513264747169, 0.5315150826161414, -0.25757222263251695, 0.7575550432743654, -0.5576145934530132, -0.846401028218558, -0.018980383047523985, -0.8917348464029146, 0.6154120726033835, 1.844181403655944, 1.9251345811777405, 0.9910476957155501, 0.6235989327618308, 1.3655840807754813, 1.5432088662232448, -1.0918422575240512, 0.5598769423814491, 0.9677052994451463, -0.9571052264228582, 0.5201516934980664, 0.020174349281509425, 1.2065501999740091, -0.6135147901108037, 0.823945442859077, 0.2333366622806491, -0.01296871876957285, -0.3573052362929493, -2.253065532433006, -0.5525008379946224, -1.4031108288909255, 0.3878035652841934, 0.4548891921098867, 1.426836234495652, 1.105561589576856, 0.648959226437636, -1.0599845137270414, 0.34008139965711476, 0.5492149810024473, 1.5211335645557194, -0.7512410866246425, -0.6429427859372666, 0.6900136595030624, 0.6150427582389222, -0.19452163610849665, -1.0005498394754662, -2.076402785733193, -1.5594681833346238, -0.32808263196048804, -0.08151466807395248, -1.300975244952855, 0.8225409536916506, -1.9863217053067563, 0.23198570465484877, -0.19845908546882343, -1.8854226265445375, 0.005973200197736237, 0.0828665509282771, -0.7196081612660583, -0.8330175546934635, 1.4919241218379382, 0.08130002349607994, -0.7989736119775929, -0.2902672588828069, -0.11668524823030586, 1.4479482468372074, -0.13776713245210848, -0.9742207795872818, -0.08293894649696863, -0.19114408110220915, 0.3836155581642795, -0.8217170241919693, 1.1822141880577455, -0.9602659489735799, 2.211535962335139, 0.24441013150318858, 0.798740330159336, -1.7364841810646547, 0.11940330424366613, 0.6585562234841937, -1.4030470142204465, 0.3818294775059716, -0.5025019949866992, -0.6976895055225482, 0.6518506926003691, -1.1034915974274555, 0.20518795201557694, 0.36279201111692866, -0.4217615585538584, 1.1240116824143547, -0.21462322350826785, 0.199199359645169, -0.6889750408817308, 1.8713959111850664, -0.8806549134548224, 0.8399551541442482, 0.8650657997274563, 0.8156741528217873, -0.6161612632046557, 0.7343625687729111, -2.349056506191558, -0.3163242252906356, 1.1251695848465966, 0.6281524514669076, -1.180494682748082, 0.5190417080661818, 0.07471618176803127, 0.9896721219002871, -1.2723536378507954, 0.6691882446598054, -1.2712573397789464, 1.1082838335576264, 0.6837173989041005, -0.8832610644629877, 0.26685743938250595, -0.19387804983984597, -0.5185691150348528, 0.32531461985908505, 0.5737347985452446, 0.9485812942857704, 1.225905872028648, 0.715240096535663, 1.0737548728486155, -1.31303450102994, -0.34071574057004933, -0.010221743824964756, -0.07454094813867715, -0.4999743231853201, 0.9599871515250639, -0.33231820386677585, -2.3382085943959403, -1.2655401368097885, 1.2972104594363445, 1.6259282339065784, 0.0707785865270878, 1.1882234010842188, 0.16760398697554385, 0.1667553856948302, -2.376789455908562, 2.7138785138819363, 0.6762250355708644, 0.4865673159476872, -0.21703941856756673, -0.881176211514819, 0.6713204472495359, -0.7431600605613271, 0.7801435769592965, 1.2053865644783592, -0.1329242588319312, 0.3157106298433337, 0.31443743145229697, -0.2787818786125754, -0.20034080284611086, 1.7235620147753712, 0.7017616758829572, -0.3636352007756638, 0.07905190726477986, -0.4895910845180337, -0.6573030087938386, 0.6173455794362777, 0.47520761751824386, -0.034297023279449584, -0.5695315194949392, -0.9255431729227859, -2.396944907126026, -0.4051143103253047, 1.047898448459617, -0.6984341189735703, -1.1915799445212192, -0.10265124312549605, 0.3331685500503159, 0.31558104412810534, 1.6169516656074538, 0.2570953227724483, -2.130996209501569, 1.2958215236842585, 0.3652339362684383, 0.9313156318839848, -1.2116956569523587, -1.0326651866609329, 1.3276399500600102, 1.2829080469117535, 0.16717831238511918, 1.1132239271412139, 0.2622641658357127, 0.935905978743141, 1.1590974567712544, 1.755842153808567, 0.6022566368991962, -0.47771780887572457, -0.19252737244684087, 1.045831105385427, -2.0753566055953265, -0.6426511003089119, 0.8099809859874858, 0.9359099145331767, 1.0080124838929112, -1.2327587371169737, 1.430679495935784, -0.006734962460745246, -0.7014739432804079, -0.3617767487402162, 0.16326236636098182, -1.4146674006349516, -1.3106425616076762, -0.12273661086636686, 0.37885923040221875, -1.8574626332552409, -0.21453683160168235, -0.8163979373008446, 0.48734921417858795, -0.5842789223526115, -0.21548280991297233, 1.6284505322002119, 0.3553011678339173, -0.2876974766227471, 1.6278348763746935, -0.25271100939904634, 1.200112688822621, -0.5230567446711967, -0.24646641053660756, -1.4914147813090164, -0.7066647906391411, -0.3038157382878953, -0.7475444686551218, 1.023894375287815, -0.7792444967089006, 0.7353815584451288, -0.08214527810960466, 0.05519797102744284, 0.022842309529131632, -0.4419868781167633, 0.2853815434138875, -0.08102447193386912, 0.33726059799544583, -1.0354506217170096, -0.03493636942530812, 0.24880419465020076, -0.2188912890799593, 0.5570488888421274, 0.22577898101328633, 0.9401143016319999, -0.3470920309709307, 0.26851439246455794, -0.11466371466647492, -1.03030649502146, -0.1593523708592731, 0.19287645616284946, 0.03574854369417789, -1.1500365151462855, -0.3526028568843373, 1.0768522038719126, -0.3080100201762018, 1.4839419400256322, -1.269601308780644, -0.3387540799147591, 1.015734208165045, -1.0558798706473422, 0.062213125117244555, -1.249668972415239, 0.008243200676161754, 1.9279938443340772, 0.2411535521348495, 1.5906311317237147, 0.34409866254730853, 0.030130588803771414, 1.3235321139601155, -0.8476616626620481, -0.37304489970204685, -1.7536331754058803, -1.1398847239443621, -0.40376904706616923, 0.6245832505971204, 0.7085372798307789, -0.3613204372892103, 1.5749196932766034, -0.6201767065915876, 0.4116551781520846, -0.9114353296125395, -2.09260594992889, -0.9534463653143167, 0.545389577765783, 0.9128099807016598, 0.6988541364671745, -0.21201540705944738, 1.0137038048393814, -1.1945016474131405, -0.05375466567043178, 0.2380786977478077, 0.7503843460413737, 0.6544949924513402, 0.7420703375997014, -1.25046986907299, 0.07161871402107539, 0.8013298537480489, 0.9799345956553431, 0.19310719202088966, -0.08771098370417407, -0.07194679236099238, 0.10524707493406028, -2.3093095865726476, -0.2617184669467412, 1.1646610421929602, -1.0628181160241004, 0.5600050779592514, -0.5409383727860327, -1.8633671917962564, 1.4122344855764073, -1.8699412421303918, -0.8907470768053853, -1.6953985580442361, 2.451641669606203, 0.9437329270071498, -1.2298772493173207, 0.21465751385810622, 0.22587758103656455, -1.0605325923465492, 0.5097485821636889, 0.1853862072248428, -1.4883493467946696, -1.1725868429699904, 0.11652604418225752, -0.5121083933898433, 0.6497231207617249, 0.2824377548148998, -0.731542775669234, 0.6658420061842913, -0.5277680169155474, 1.6334011189762687, -0.7213013335054768, -1.005670642308899, -0.3293045852872366, -1.1322007107528604, -1.5669921845501422, 0.2631974367701143, 0.9697644622998883, 1.4852867853908531, 1.1728944086260928, -1.3322366227144986, 0.4997530534541789, -0.29228544320752237, 0.037916456317807816, -1.8477988667321987, -0.4920162165315464, 1.5377416317558492, 0.0455911225773017, -0.9480592312192944, -0.41323685080153866, -0.8864142134321659, 0.5337968859951351, -0.6075894129747437, -0.48006383537290054, -0.3891751286782745, -0.6914797647865285, -0.05955625749015901, 1.529715432554179, 0.5399323125482811, -0.9972935297130029, -0.13977580974142834, 0.091108092208696, -2.148462072186232, 1.0258448027949059, -0.9931380024583738, -1.2965857520518747, -0.07359853835175262, 0.912832191979837, 1.0690589422437686, 0.1718990502279163, -0.7499435313470142, 0.12341727845454019, -0.7733947653806729, -1.1858530705111854, 0.29974385418346916, -1.4822810880439998, 0.811028540530954, -0.6709018407642265, -1.493313737484767, 0.835875911738218, -0.07614485364445586, -0.3169565502063706, -0.7432324056518352, -1.1624872516051854, 1.2079844024439974, -1.5049355931271307, -0.3250985921195665, 0.8055707106795442, -1.0116189911511362, 1.0455220383819348, 0.49435279743807103, -1.6964242007067911, 0.24564848510544526, -0.514813624053994, -0.2540580395772497, 2.952460592540113, 0.9267754120969327, 1.6752553645792958, 0.4215293899832779, 0.5651830356289668, -0.47321470138122756, 0.39302993241010953, 0.21543318687995344, 0.5890615250930218, 1.1138444982982116, 0.18309927806785622, 0.7450582940009901, 0.2972667940231834, 0.15837681595417924, -1.4881010305882172, -0.22981983087319993, 2.100143819124289, -0.006938189933028684, -0.8947408231458749, -0.4783369088520489, -0.05063951353492116, 0.9083723433562277, 0.4880203840756839, 1.2540724707273179, 0.1871198831719899, -2.0676538209104294, -0.09455459799910904, -1.096332724063421, -0.6253552739425573, -0.2212087443148625, 0.5718139424004599, -0.5359057181005412, 2.1744883149490506, -0.012819224929728127, 0.6228388892331094, -0.5417257702243491, 0.86129393765522, 0.18910600780946163, 0.6632650894376115, 0.9945319371098457, -2.8118225422427723, 0.49571052469723165, -0.7866265570768295, 0.6657100282308339, 0.056620359977913585, -1.619347811708212, -0.20444855252075256, -0.1928813571852145, 2.0284428693368213, -0.1265231985675598, 0.8768989279426874, 1.4750158149532004, 0.07046530648505023, 0.24708697427730855, -0.25112329889085516, 0.8771311696845522, -0.8013509221556505, -0.049726110445993094, 1.6947683922217263, 1.8898454793825064, 0.21362240581030847, 1.657299047121799, 1.2796219265682736, 1.510591666478083, -1.8314134274859544, 0.5389258475346383, -0.6879609128881796, -0.5900766965838775, 0.42740475277127926, -1.5283550963108874, -0.24805544648081465, 1.1353726419210304, 0.42823907998863403, 1.3955374349312046, 0.39722223739597123, 0.14174829483697773, -0.28605892852331394, 0.5591049852973033, 0.585845506352777, 1.1019353202465334, 0.5006782046559062, 0.8104523414856543, 0.05649724524598478, -1.044740833665425, -1.6814962120473682, 1.6905330670912853, -0.6865464247384914, 0.013740780029274395, -0.5375403800905001, -0.7018121361724502, 0.32628715448967666, 1.2687100454172526, 0.7529143690505352, 0.460189276127769, 0.907895338434843, 0.8872771113320018, 0.40797659535925795, -1.3616869012016617, -0.7531793376612016, -0.7611894119368631, 0.23211280969424572, 0.12162549775392076, 0.975867608211464, -1.7736480867827888, 0.2002930687445187, 0.35990101423302256, -1.6863528782371655, -0.5335618002530705, 2.1500812670903886, -0.03951736825440782, -0.9277907283785067, 0.6294822135249456, -0.060855347798161555, 2.0452328904518375, 0.7343069755066998, 0.1038325991953347, 1.218647584004778, -1.2749107745289558, -1.7546690532104698, 0.34650063824953103, 0.444071710645433, 0.5297102290662652, -0.6567497022264476, 0.6000478548317001, -1.0511690829287792, -1.1225513607841298, 0.7432507032351141, 0.9601849196661336, -0.12483615966889852, 1.1685032406689264, -0.8457768426072689, 0.5745440533160432, 0.18084445483048803, 0.29281417024309786, 0.7325639171715412, 0.23256559693766551, 0.5499539442695951, -0.8958886824375804, -0.3817545409600475, -0.7180460101053798, -0.7036250003738823, 1.6168434276875185, 1.0702906824618756, 0.04531316809294542, 1.027888916933583, 0.6904954772798287, -0.8482129403232058, 0.41987255390415357, -1.3209443770329494, 0.575501491264198, -0.6993311362918858, 0.6301128810333908, -0.46183726024070243, 0.805692576524093, 0.16285466136268673, 0.2544833417975226, -0.4117471728408751, 1.0038603522881155, -1.0939095840889057, 0.8878834654426816, 1.1144114385761532, -1.1304427556827217, 0.16947938682760297, -2.147256484933641, -0.03466978525266863, -0.02756632081872758, 1.725611198161902, -0.18860342851370682, 0.9121739084166423, 0.45000863836823346, -0.3611745411136642, 1.1192318654221907, 1.2372770333402794, 1.0694076636768464, -0.07844524750063456, -0.3767603791570372, -1.3833977035221363, -0.4851317545721141, 1.5733283459553704, 0.4980666237505164, 0.10123622501478183, -0.7128365984339657, 0.01743620862916381, -0.43968729780027854, -0.924697710671108, -0.2815653700509565, -0.23232906798699293, 0.9539297505589777, -3.620992730341295, 0.11581460087180698, 2.2522041254250142, 0.21680211840439756, 0.7956958250161486, -0.7907320377363942, -0.5566204291045588, 0.5412702127679961, 0.8953331712794375, -0.8213527663640109, 0.7608212154041882, 0.5411613252979407, 0.04449215918639536, -0.5178691268803336, -0.14551578706836993, 0.9649637333795862, 0.16182838212409542, -0.6639002864138899, -1.3157453803106107, -0.7790291393409084, -0.9362885681540951, 0.8557733531897057, 0.5469142073825557, 1.1687295642726803, -1.1064005459893964, 1.601205071680677, 1.390154588623207, 0.16886104933678206, -0.9230634403096322, -1.2259350007785765, 0.02491529799818118, -0.8068450402769998, 0.25618220014223164, 0.6711510405357001, -1.053219411862351, 1.9132181426274242, -0.5965809068083732, 1.6693129564207543, 0.6321721961520257, -0.07326067704013874, -1.8482284657667116, 0.5088884605554774, 1.1385999654474812, 0.4600282363847906, -0.19389741766643417, -0.13154943435048816, 0.36500460947058305, 1.009638404747046, 1.0114018107647962, -0.07315870552014944, -0.05505975159451942, 1.0000614643480468, 0.9570759429954377, 1.5182208407961015, -0.8657322975568059, 1.2802369917634704, 1.1956790788465301, -0.390418762277916, -1.58887505365581, 1.1085209838948966, -1.7624102457091415, 0.2692045163529674, -1.2985469482719094, -1.1756453937606328, 0.4211318380415704, 1.3651649317618744, -0.1959681675470866, 1.020810398892168, 0.8221969276901329, 1.1647107900555203, -0.4026094121396667, 0.4556442339477012, -1.3059238874225443, 1.4930197631575177, -0.2021150474609698, -0.17964013362933845, 0.36044918646007984, 2.282811510428024, 0.7175242652839278, -1.2696495849552436, 0.6039562228871339, -0.5976529196298916, 0.9270842257671271, -0.5384485854414751, -0.1293835675782899, -0.7889284873008051, -0.5398932194166767, -1.5976136470262212, 0.30222644445920405, 0.13527397508476596, -1.1434768176176273, 0.473985025445811, 0.2984067001692135, -0.44089880365712003, 1.1590217909232974, 1.4388620949092252, 0.3130054271731088, -0.2819649308962728, 0.25783678897634266, -2.0698625482821837, 1.0647194863984952, -1.3403800470896985, -1.885271979978615, 1.3534334016462266, 2.1261437893224775, 0.6782132729049689, 0.9319636600121335, 1.2789693689212165, -2.8020032901221525, 1.0662249764953833, -1.734186062679163, -1.6212415169910974, 0.6362850686728587, 2.547936741414156, 1.0676074048217659, -0.09524561683328657, 0.6590548652574617, 0.17682119865953239, 0.525270388062844, 0.5428561957511454, 0.47844681787832866, 0.17177619937275812, -1.6354223251596156, -1.4399252624158567, 1.4939362718410474, -0.3259586957573874, 0.6091584365953187, 1.5940004183208845, 0.08776677669653192, -0.28305505911751483, 0.7870915375579566, 0.7299142154836425, 0.11213620096989493, 0.10168164277081071, -1.1579157573357017, -0.7535955944371114, 0.7766990973285384, -0.22035676347331867, 0.34866566442377916, 0.13828514224762745, -0.07743392170840703, 1.028043839300857, -0.004568623590830088, 1.527962335762807, -0.04496563739566131, -0.20720416147943616, 1.3178282291831989, -0.9749849068987572, 1.46978064867979, -0.21166113724265173, 1.3460094015167123, 0.07019902113399747, -0.8715094756055477, -0.10302534644075353, -0.11117571625739307, -0.41109690938718196, -1.0161990661214007, -1.2427259537039228, -0.9784141809702394, -0.14047454087659295, -0.835269805848473, 0.44757383264711786, -2.120689717606839, -0.40779147089647716, -0.21728786069871786, 0.48225191621866637, 0.33466490887881717, -0.5566065658308651, -1.2930136582031713, 1.0998833636427008, -0.11989234192170556, -2.0151809333286694, -1.2078792179968223, -0.1642717142319491, 1.1875946368962145, -0.39794127208305957, -1.5498202984644878, -1.1422823764124173, -0.9182109689114046, -0.5538947135102885, -0.8030451308160321, 0.23349041826362046, 0.6999081049517117, -0.8655931993742574, 1.0811048679549393, 0.4217002796135409, -0.5203162767433934, 0.9201000282428669, -1.1791542677033948, -0.7124000007336584, 0.9908785875248386, 1.585275607492331, -1.3340253364095747, -0.7292063468672179, 0.3887679892184698, 0.274463393726633, -0.6556299782490616, -0.3693349474343842, 0.013903517079557576, 0.03497868035603283, -0.39120498770057077, 0.7529802003561671, -0.8153950336724544, 1.269945152298979, 0.7577359931080135, 1.1078516053743397, 0.6649970194828119, -0.3199087904970206, 1.2340550214933728, -2.3722784480780645, 0.24688897173827695, 0.6069876450425277, -1.680032234508005, -0.37710824616072175, -1.1852528018495045, 0.4358815759996671, -0.2215572130988485, 1.4809704308419571, 0.7815147341708927, 0.020108679020116545, -1.2920041949813603, -0.09966279660619469, 1.1732735896720523, 0.44827119710963653, -1.2975279234922046, 0.9673113528121545, -0.27757180898208766, 0.819970856507526, 0.4678718310287524, -3.4450270447480746, 0.18267673584514155, -1.881961018178043, 0.3038429859361571, -0.3988501092422066, -0.50985066633559, -0.7153786625423207, 0.24972805084203129, 0.6593385122371829, 0.0005883245113215524, -0.5714305284913072, -1.4993281845828705, -0.5372356774370037, 0.42660762450155804, -0.7553235204039345, -0.18936017985328865, 1.9583968275629424, 1.2230746144313913, 0.24237350928049214, -0.045337184541177904, 0.19561336461351647, -1.1281567103344077, -0.48997624823355646, -1.0174243797100075, -0.6585661341332273, -0.5908515040001531, -0.47361261642828667, -0.8775415296439034, -0.572412122327314, -0.7630317114899252, 2.7802582757585514, -1.2136799043359263, -0.1269035984543071, 0.12409103119910074, -0.6345825915575946, -0.48456118828313405, 1.2346660311225923, -1.8874962316047903, -0.9442479128677341, 1.696401950342988, 0.7028253613586933, 1.872234615729185, -0.07396303965980507, -0.376216878177014, 0.29671770718972706, 0.6856854220257415, -0.06495896307065617, 0.6073025795971846, -2.000749767057903, -0.7561286623313065, 1.5149940626532274, 0.5025778876870575, 0.6115533303024336, -0.8101569450701006, 3.0706649512447783, 2.2198390515708373, 2.4112604101930715, -0.6883556587647836, -1.634435045114579, -1.335383862299274, 0.1784452355142086, 0.7835586175557311, -0.658364862003618, -1.0764431000604684, -0.791612487151844, 0.8811149024167879, -0.4968246914239012, 0.6363716198512713, -0.9477253906951212, -0.946444934392848, 1.3270993971197929, 0.022538381382541394, 1.2801241623783253, -1.4534972197666325, 0.8972846072026689, 1.2733150498936117, -3.057490969633651, 0.7891967408372748, 1.0489349295352266, 1.0332637082281118, -0.3093412969450021, -0.41714978553663945, 0.8936086815028668, 0.9848570589562707, -0.8041905360697489, 1.9247983137920344, 1.2795406055946827, -0.8418599051322337, 2.2734492696370094, 0.6569284643311349, 0.27636790204501055, 1.0527224659959968, 0.38971475448496845, -0.3350804311855274, 1.2549098729043338, 0.2415433393996271, 1.6865756751060814, 0.6803664952725008, -1.3336518646990967, 2.215223532555646, 0.212291880698246, 0.22918580467380317, -0.2972425720661196, 0.0355728067617884, 0.30719282705423945, 1.3270962153058052, 0.1657473478462104, 0.08097779052064581, 0.535798182187652, -1.708894516032922, -2.0213373330488285, -0.9955886991589229, -0.6305980613739233, -0.23768721093759712, 0.7411285297605805, -0.1388284759983858, 1.2405801343678662, 1.357959263360936, -0.58423474953607, 0.11864827588069364, -0.0836628400572684, 0.7063531929093031, -0.7042187836924492, 1.2193931987049587, 1.4590616808069286, 1.137061603728208, 0.1470987253598443, -0.7077955134906646, -0.010737209068116432, 0.041040717108726914, 0.23903656855626684, 1.8351311051575765, 0.30127376934657235, -1.0668640426014468, -0.8183415711919058, -0.9658496916990327, 0.7382600989552638, 0.2007412200848793, -0.9453284330665604, -1.2533730280435813, 0.3883092226217403, -1.7477882094454016, 1.85176894639835, -0.5707315610298656, 0.13449388185250644, 0.8214868631369726, 0.7645224791372558, -1.3774791332612653, 0.502005974893524, -2.1837892451815883, 0.12895655074888046, -0.0344295536867932, 1.2576460147324273, 0.3059511714261541, 3.275929638448539, 0.3511384364139023, -0.4101026161823966, -1.3354430009130716, -0.7558873187394118, 0.3147146982526321, -0.804295942348445, 0.9494381400643488, -0.39049233718433646, 0.5754842970537595, 0.5014485426274257, 1.1315523733910002, 0.08107723339165732, 2.4269934910779694, 0.9033279262429518, 1.2631231979333606, 0.8626503344563828, -1.6072907173289948, 0.7704652890009268, 0.009784298003827841, 1.2756949068662002, 0.9702379794409384, -0.6050186668553384, -0.3867590377843697, 0.4738747629371924, -0.18050471115486294, 0.8551873587326002, -0.8440889785550917, 2.3404200138276323, 0.20748407673043526, 0.07736772969605593, 0.020896599553581235, 0.8163974418140244, -0.4904307761492641, -0.0015286095404420078, 0.018511481847704056, -1.4560192738355273, 1.0699688878345088, -0.3825972928966467, -0.36629178623318803, 1.4552964281629033, 0.7840193054057599, 0.11212569621990236, 0.004164481239398847, 0.4070210668187213, 1.037755663788498, -2.586771015426707, 1.025357112339618, -0.175745336338967, -1.060098842150159, 1.771469346128366, -1.3616831019608038, -0.21939213635908406, 1.40357212635971, -0.1433105272436277, 1.0727851826803998, 0.8915517429212152, -0.7645431797515054, -0.44903780865927656, 0.11305828507337272, 0.6301766753818391, 1.028038370071221, -0.29581439064502146, -0.5414035155434042, -0.30255336045730014, -1.2205769023231878, -2.220166812924973, -0.5073830694075843, 0.8258759963636824, -0.3960900582827252, -0.6000770047492232, -1.2756715119496673, 0.7872298286570425, -0.5506049960336717, -0.5002315206944054, -0.6997744580362867, -0.6329574373382785, -0.6731776155848891, -0.2575059670041387, -0.5106167624307946, -0.002337410015658223, 2.319235560620835, -0.18659760113562468, 1.3902836305192319, 0.484834517125875, 1.0784206255888371, -1.1109601680870906, -1.0443389322459917, -0.15894352306895745, -1.1019870672524803, 0.7972821251641623, -0.4089363393796052, -0.046164605436425483, -0.31687355616633184, -0.23655066763512322, -1.2560192367397094, 2.062754716454307, 0.2975762546772719, -0.927257874479073, 1.1696900356557025, 1.026073044060255, -0.5832184794226222, 0.05908839963645043, 0.3264787293936741, -0.22159770033751414, 1.0468955729670648, -0.9993149545413957, -1.2658864350239083, -1.1481255904597873, -0.585723885888507, 0.16744708352560753, -0.4479741395457884, 0.3808343225234239, -1.254094353217891, -0.39442307577368074, -0.4999614047438865, -1.22935839138525, 0.03683999299886891, -0.7736791340665958, -0.15920193183792875, -1.2941479936772255, -0.15245258945935433, 0.929975935872184, -0.24974134226446462, -1.1255005248569876, 0.1994833273121261, -0.07151198329557691, 0.4837254888248513, 0.01910373511025682, -0.7129793489789319, 0.9506497193380916, -0.7962460230937134, -0.981960219555573, 1.5217055885365116, 0.8444740284069264, -0.011724966291255063, 1.6143067013985737, 0.3474668092573301, -0.7630123078760845, -0.9135996525824466, 1.7100205100080719, -0.5392646024758849, -0.16414341805841637, -0.7424595794080304, 0.44389418223353394, -0.8813499606763358, 1.1088777765041693, -0.28486122920838025, 0.28076092428098, -0.607756596327356, -1.2010092849358076, -0.4027927311641502, 0.3843791286721466, -0.3686058440539953, -0.2123404407003354, -0.8383579443884113, 1.0890838584466969, 2.4488152582010234, 1.7222073851650064, -1.4909440193756072, -0.2674473978026858, -0.23890931981938662, -0.2548498506271322, 0.28940035478434695, -0.3514296910101399, -2.219031214504605, -1.1827417389351236, 0.42063627039082174, -0.4041809756247355, 3.2861599217336663, -0.2333603549821781, 0.7106179124964033, -1.499014503362723, 1.3930816112029896, 0.18891249802318064, -0.1697717045971363, -0.4112224898922859, -1.6473260844601059, 0.06296508621641411, 0.539585855223429, 0.6570944463232714, -1.7873670033959004, 1.3013755556497573, -0.6744206334965047, 1.4188141773782466, -0.7577218594243695, 0.5695590412663469, -0.22414966344730508, -0.3002578763065044, 1.4652918300142554, -2.545510548220406, -0.9241139906719071, -1.2689715005206323, -1.0351382492177847, 0.43126413567032107, -1.0703194476224707, -0.614265833686426, -1.481658500541459, -0.3432271036017798, 1.4591362422305678, 0.888770515084817, -1.285951101815706, -2.062967046147648, -0.9455813575026886, 0.5412945595519579, -1.358856080615693, -0.9002997668857149, -0.393252226456159, 1.0166503452127647, 0.8341824659624911, 0.3114061901142695, 1.3146080977701078, -0.8630649726649972, 2.027267486986514, 0.4882859711332338, 0.15046437900731718, 0.04755687077896636, 0.007587919806370662, 0.5754300499364084, 0.574949993661449, -0.005308973994079824, -1.1026374767142386, 0.5146523689958513, -0.48290365546251907, 1.2021673840100267, 1.957335413701673, 0.871562821840627, 0.19740698385136768, 1.067300999602925, -0.3743051383425435, 0.17763069643100818, 0.6949715225506633, 0.7009823949911306, 0.20187301030765645, 0.49889579098425313, -1.349554019782988, 0.33178413182732236, 0.012364329871090396, -1.6449634742040617, -0.3222296928312756, -0.46183093935529296, 1.1518876914597898, -0.5075842367731365, -0.35919969731188045, 0.30890108901937396, 0.6094689439753072, -1.1115457531756177, 0.6105875436903245, 0.0842559019781953, 0.2688024314533714, 0.31838938766448976, 0.5021121186232891, -0.45979182567147026, 0.21021331336042137, -0.039190784252337955, -1.3379971904145858, -2.1463874584644334, -1.5370595233954427, -0.14381055678816554, 0.9452943703521517, -0.41648451896354244, -1.5401738750196632, -1.929407224544226, -0.44560216451155465, 0.5902572843040444, -0.37581000021869015, -0.5126352266074897, -1.1149311304413163, -0.8735714072177095, -1.3608825168179894, -0.6667816270181576, 1.0837139078989926, -1.8313342177986631, -0.873791337661428, 0.04405995132823546, -0.8386813779663467, -0.34408106853698445, 1.5926902854056555, 1.2880209192581604, -0.9468049756091436, -1.3071669120801666, -1.7205807888536042, -0.7751442723051518, -1.0251586609845171, -0.6891694878562271, 0.41056132314867005, -0.6879364738900197, 0.5890015002171369, -1.0495875603807439, -1.4527462111863043, -1.5249831044052957, 1.4407612700460406, 0.7016063581886975, -1.4820725804875783, 1.0956641017122373, -0.8828404447145075, -0.8655937554690484, -0.6836854999039146, 1.0908610510409622, 0.40569413283444067, -0.9980510759383711, -0.7064645887581034, 1.5555252994984796, -1.282120334286404, 0.014127503604046347, -0.4236247747662032, -0.22242258442428378, -0.30497743966198304, 1.5244279964794176, -0.20504676985137402, -0.4281459944731254, -1.1763556994759838, 1.9409550125883412, 2.2685961683762095, -0.06882301571999178, 0.13654722171849246, -0.7952402383689907, 0.10139314584571839, 0.053459387610909175, 0.6095177516486413, 1.6529966954509125, 0.00891343745722507, -0.16099244045879915, -0.0562005986625872, -0.8450025346452665, -0.7712957856756855, -0.7333548309757582, -0.18574971517656652, 1.9467009204948238, 2.0125324628281698, -1.111832382141666, -2.5432462828837874, -1.4014508539419694, -0.8651409442761226, -1.2462233612693463, -2.009238384848223, -0.17118237732982938, 1.2728404189947955, -1.5108892736108035, -0.38867446850447046, 0.8058409879432311, 0.27151727112079044, 0.49962732564326806, -0.5707687970462757, 1.389247637118243, 0.5495866735855603, 1.4234904767060959, -1.2986138821372544, 0.64744910022751, 0.7503951346436606, 0.7926924829654304, 0.049617387350978245, -0.6970713582967364, -2.2412158667760766, 0.0402586269645782, -1.1012587250391255, -0.629193005568752, -0.8200040674756153, -0.45192370831956347, -0.729152872805784, -0.4282212537311024, -1.0433605695712749, 0.003686854556545329, -1.4001942801658194, 0.062228149294692336, -1.0405853239392222, 1.0500324839003419, 0.017361082916048938, 1.2577388315242444, -0.4617851314397987, 0.24997260045745046, 0.5216709022523347, 0.0907110305710106, 0.09133314804570002, -0.7441071934472718, 0.14389591011008543, -0.14875704070043988, 1.0905433852743127, 1.5462322877696149, -0.08835604019451171, -0.24494924745752583, -0.9664687354870106, 0.2136310546371052, 2.152925349554107, 0.6486700003921384, -0.6894097593692611, 0.8113520893883723, -0.20951983021969978, 0.457650087551778, -0.6707256617698049, -0.39838557085116094, -1.176201710734195, 0.07136840041900377, -1.651017138856373, -0.04787483177664552, 1.276257634464143, -0.5349726166419346, -0.49658420719537505, 1.1648698154012538, 0.6348352487943301, -0.8190620803824549, -1.0052373677261768, -0.052767801766472215, -0.6837335413541515, 0.6263935793598682, -1.2485664728430255, -0.9224902568569107, 0.058944158546812814, -0.15432948549861858, -1.1964517274119901, -1.0125779938637434, -0.7886200279230361, 1.3900994708224843, 1.2056552104230256, -1.4984641359812148, -0.6864513547715229, -1.4789385108927442, 0.8679248425607279, 1.6057218982939045, 0.48389637712853684, -0.640312155938837, 0.7574130922519265, -0.965163595260018, -0.6944059727720288, -0.43414839677134787, -0.6828595474837438, 1.6517829238981492, 0.2651454008695299, 0.5160408174301212, -1.7270075406513095, 0.13991164517168084, -1.5383184739558342, 0.08047023227525499, 0.6177731854907244, -0.30055313477608425, -0.4619250790199037, 1.1781262158637489, -0.27313760475057336, 0.7698798495167513, -0.8142100313901175, -3.2489604520142707, 0.012777051860999377, 1.2039533207851987, -0.71470980370005, 1.3755548600833485, 1.914819341166288, -0.8861257382265642, -1.2894262587477807, 0.5332858235231211, -0.34873719298108785, -0.35982157239121965, -0.8481605121290926, -0.7856094397688234, -0.6092790552301832, -2.79850295623715, -1.4050294068798859, -0.6507596761217729, 1.010874348838258, -0.06932391565236046, 0.5496415080465833, 2.001277423077734, -0.742245689441702, -0.2273237528789347, 2.9268558442128354, -0.12057640530047962, -1.0614801276995163, -0.9013852406893229, -0.4439594184504656, 0.2020789058116995, -0.4266557001184241, -1.0269129321409223, 0.41261151427598264, 0.0670557427348706, 1.688820714611798, -0.6312224226568093, -0.900191792742651, 0.5509376812015624, 0.597386439119181, 1.0396128153320479, 0.48524808814886744, -0.6816788295813477, -0.6740623689719505, 0.9876585066258395, -3.216697484107673, 0.7613362742941461, -0.398827437250562, -0.9790180965419136, 0.41719642194596834, -1.3210720799711253, 0.49667393075717997, 0.8105455167281495, -0.7402210340623631, -0.10702972874539415, 0.4926109537359405, 0.8411615602516821, 0.7123146330305752, 0.8494946641919557, 1.171178596509328, -0.8334025605443921, 0.35706463326039384, 0.49713805714325193, 0.10103052409333962, -0.43272728635246666, -0.551852904300442, 0.5282962502009448, 0.08719948529879461, -0.16825314686376933, 0.12317783580255787, 0.512795469204156, 0.14304936276562602, 1.3154804543482577, -0.9809404727760775, -3.0600036565630058, -0.9429959775471577, -0.8177330328147254, -0.17900862824714714, 0.5275876151009287, 0.20371212156177038, 0.060758574183956006, -0.42040819052684786, 0.6654286690781875, -0.32616283164168586, 2.1296996769667955, -2.2796374169788036, 0.8961557184660118, -0.18200602535621663, -0.9552473325464366, 0.15834337283665856, 1.0327746511557088, 1.659900242466846, 0.9760009072725829, -1.6732247220726428, 0.293190151869978, -0.9423586298143514, 0.03805089547459495, -1.79070661185032, 1.3043695543630909, 0.370969239365344, 0.7161454893804794, 0.31885734988694525, -0.7226921488387937, 0.9212616571873656, -1.6304380354788037, 0.15949316999007343, 1.3806755631044463, -0.11470901515146202, -0.5913496794516632, 0.7756129569894593, -2.4014370181658977, -0.15332232744124272, -0.38272223450060155, 0.7665605914513643, 1.5140245382443471, 0.7539838961479763, 0.6280368003134066, 0.5732494872601802, -1.0122390991851127, 0.8943888315848837, -0.37027906362961976, -1.0822729800070423, -0.22023743674228333, 0.04990204518379709, 0.36019854188379546, -1.0057544141786625, -0.5145979076829477, -0.6014224939549491, -2.239235280916308, 0.14106955646086322, -1.1885662885058197, -0.29212033745118565, -0.30584805275142946, -2.2997049937038807, -0.7420878710319684, -0.8872238140595455, -1.3164618895779607, 1.4416094991294148, -0.7160270702097413, 0.6664469724975058, -0.8909431950218814, -0.8228367842564567, -0.5273986320445795, 0.8359361935241172, -1.4793613811788031, -0.35272325278876565, -0.13522843692269354, -1.4542546484693848, -1.0280228389624084, -0.5045633568311345, -0.2688368657310807, -1.8614747972821488, 1.8613759708249744, 0.6631563105967393, -0.8197227891704936, -0.704000380729685, -1.3349070177051858, -0.03134883697840985, -0.03451044137532515, -0.5416828919586661, 0.7315629960116593, 1.0252006600015664, -1.6007111265531637, 1.9623065881140427, 1.3313881853794738, -1.130691768172608, -0.45706549942972285, 1.3015712833935487, -1.0003729278741198, 0.6704791486014713, 0.36042583274599777, 0.7227319449785959, -0.4224926469531768, -0.6628920408883406, -0.4888373739667091, -1.0175841436657591, -0.7246062753158569, 1.593987504207326, 0.16748416639178867, 0.829125043539962, 0.08212045235128164, 0.2867712167505259, 2.200753544992399, 0.733306985896573, 0.05263623408612711, -0.17810595174600155, 0.7397394159352287, -0.7107864727044257, -0.6634340969329331, -0.26078223441533727, -0.5000789953665384, 0.3703259200615214, 0.6818020608733975, -0.8836458729782767, 0.599991194770194, -0.6683478276020115, -1.3096064677335952, 0.772201819762974, 0.747335584254419, 0.6074566075896153, -0.7019290296856162, 0.9547317307097609, -1.3919032659652393, 1.2631454565762303, 0.057272669586059935, -1.853453357709261, -2.2507293389553675, 1.9614593711135098, -2.094781423388032, -0.0982354680015264, -0.014456061179143874, -0.6332055067635942, -0.9459429616073893, -0.2762043150472522, 0.135126644291582, 0.6535352774529885, -1.1742616282591058, 0.9649637748903843, 0.35508643244413346, 0.4947867763998604, 0.16414916973936308, -0.8764782802055637, 0.06667640329951374, -1.1473476822773603, -1.053505935397727, 1.6912727922250754, 1.2765893219402706, 0.12072898116848604, -0.05280622975399878, 2.372848500920619, -1.7173848132087455, -0.06096043132460887, -0.4439598448441564, -0.3032403573097863, 0.8049301097438991, -0.7539592113999294, 0.3405390902087544, 0.6083383136121377, -0.20025780221429076, -0.5937945802824343, -0.349114128658543, 0.6702320404773617, -0.9864569743227423, -1.0294605400234687, -2.880094434516528, 2.6997962764827084, 0.6660592651873594, 0.605114931367453, 0.4505632653633967, 2.112173423967673, 0.09451880185143455, -1.6603409985285362, 0.8802701453436877, -0.4000905823016376, -0.37244508176407415, 0.2622375337294648, 0.5760200165719235, -1.7831282655281266, -1.489031263777689, -0.32558209803307014, -1.42394660284287, -0.20583139737320105, -1.1759773826158078, -0.5560617897047784, -0.8848440518510771, -0.7599899153614564, -1.0375997966277453, 0.9898938729564082, 0.39145626979150705, -1.6503767000579432, 1.36888233691488, -0.8523284526807341, -0.23313836759049486, 1.733300591013147, -0.6637982522499664, -0.27789303604036086, 0.3882526474075248, -1.3226809043491738, 1.4672511261854422, -0.04640093551214649, 1.448427236695877, -1.0358620249577373, -1.121630173773545, -0.8874040137776392, 0.5785520847694556, 0.44333821809034757, 1.7494294981960359, -0.09562954371195237, 0.872531355952317, -0.06605353706198695, 2.6862603980344057, 0.6360542556005433, 0.31929280871529564, 0.20106107994003591, -2.391998987725616, -0.23428470624627137, 0.7529680724276678, -1.7989111168663878, 0.8042941277951302, 2.184304092046178, 0.2995651836695826, 0.5491776583844429, -0.05600537489100752, -0.3405358150940393, -0.898920958795664, -0.9267556580340582, -0.14097422685482472, -0.9291969242625022, 0.8069639249430608, -0.2317057731709584, -1.1320817795569593, -0.5091778986431379, -0.9767270966255571, -0.5496665872363165, 0.891266447600008, -0.1698977177267234, 0.9281851395691494, 0.3876234788021589, -0.01629446666017746, -0.6033096579849012, -0.4794424404950635, 1.8559500012005112, -1.5495203534535376, -0.07277882236696276, -1.4950160583553938, -0.1535966480841916, 0.1293849042893727, -0.7647438439926254, 0.8450023079942306, 0.9068232698431319, 0.36517838919200174, -0.3431723393907839, 0.002506630124151994, -2.0881702020724218, -0.28732291919547726, 0.5028415431759367, 0.3609659165109732, -1.2665642583784134, 0.9874501712167486, 0.8607591143918495, 1.1636872920128296, 0.3603130757462695, -0.647306923772437, 0.9266633351364677, -1.988328153993289, -0.06800059264204132, -0.0032078686162737157, -0.8053996495851339, 0.8822554463616227, 2.5216834676829833, -0.7817231949662878, 1.8284356122340968, -0.7527587735091499, -0.769345904425846, 1.051905990009838, -0.771729896239056, 1.2426164620927427, 0.4568914093064339, -0.8858704560182291, -0.8602511110635721, -0.5350181516691502, 0.8530805955521866, -0.4240185766146684, 0.3669984079101579, -1.059964284995998, 0.7859933813709236, -0.6571802507329134, -0.5322721415753663, 1.8322024303597408, 1.3699041863857275, 0.812350905858995, -0.3434339385480406, -0.9583820057460211, 1.6961204964983334, -0.23611487355481126, -1.2509576022957751, -0.09566102075057169, -0.33566935889858857, 0.5970896611011608, 0.9668974768765193, -1.0616626768180424, 2.4002657572683463, -1.2829483888458273, 0.6328566493445242, -0.22072704411652988, -0.13852090786619295, -1.416084856223321, -0.3445856570100712, 0.31675095488547994, -0.7081315299919975, -0.3025980455531485, 0.5196093627147668, 1.3387236116711234, -0.6376709306768354, 1.1185317759103979, 0.7031874470849575, -0.9611656650018616, -0.2947705431927381, -0.094548580664565, 0.8160597599007534, 1.9491108387350755, 1.0093097671154756, 0.39029366297978985, 0.6165944521675014, 2.9871633580671704, -0.36877826020180526, -0.13370317940183685, -0.5000031123391105, -0.3036768782134489, 0.37192030451112074, -0.5402971744682837, 0.005365050345705169, -0.31586826465770407, -1.1659261111668389, 1.885623615709108, -1.5989604196429423, 0.1525762385869849, 0.63733405095082, 2.0879442820525496, 1.6791134028338324, 0.02193738949290291, 0.6975565770075748, 2.477764394169753, 1.252013500889722, -0.7671196019999235, 0.7577587137600171, -1.4740754540237144, 0.8026233585893894, -0.25442336269783805, -1.3498843757091135, 1.686936038886145, 1.5100446998228392, 0.31883918109285364, 0.26204785887991155, -0.5413289074166651, -0.5373644843382531, -1.09740928656396, 0.3403869238396908, 2.212042743541565, 0.28476910324158217, -0.3126733083547779, -0.8684765474895525, -0.4658481346569233, -2.0555383392475988, 0.06333616167257464, -0.6730633323804281, 0.4991177067479562, -0.8593407517637168, -0.6437542195977659, -0.039649048655677775, 1.275711787579328, 0.4686015643347364, -0.21690740697448227, -0.6608091836192731, -0.57859890438728, -0.09104415070014947, -0.7483393755247877, -0.8168922731473512, -1.7285697501718351, 1.3034732325750733, -0.8674030110696674, 0.3377173148505209, 0.268386017386804, -0.17188087036288344, -1.8482217769355407, -0.47768136758396046, 0.18588134161919298, 0.4603050845452049, 0.010885769839336675, 0.36999625931402363, -2.574283418982145, 0.7276741835163739, -2.2347631288046594, 1.42407827571304, 0.8460562240175562, 0.1413401027149469, -0.8368732067760725, -0.4945125640291926, 0.847944042961692, 0.8900422379829966, -1.16153499875908, -0.74815094911452, 0.3425081037418384, -0.7340602510313706, 0.17244080562986508, -0.4744605926370767, -0.7396972219902469, -0.45569726966301144, 1.30499908203067, 0.35846170874305283, -0.8800465974529524, -0.9558356463309714, -0.2855113097437096, 1.6696324224004584, -1.3876638799834244, 0.4245208862104332, 0.435948412049904, -0.5196122359057757, -0.9120961873060656, 0.3940504538984652, 1.4190537583795164, 0.13015448132491414, -0.01515507872795456, -0.4782241444725632, -2.1279834389112415, -0.08277243653446185, -0.31677257803941333, 0.37457306365301435, -0.01957186361880848, -2.0314814353670325, 0.4712052226677649, -1.6436176166906047, -0.7604391484704097, 1.3578500567972938, 0.27947819388456796, 0.7392365888813935, -1.512167837467376, 0.6033626601949931, -0.4836553381107722, -1.3965057718421066, 0.23264376168553547, 0.27823837451529754, -1.354610533202426, -0.523125746034549, 1.1048186683165968, -0.9571946372145137, -1.583173497855811, 2.758785140342503, 1.5892354304696799, -0.276312150734282, 1.0652622443984672, -0.49663112054184005, 1.2702109364777063, 1.318645980174039, -0.1126105706917467, 1.6066986192577248, 0.5853737032391833, 0.619435340459135, 4.135064329657208, 0.5243705377018402, -2.1022197143445287, 1.0764634393749457, 1.0527377302891718, 0.909192877228606, 0.25170160694537114, 0.9620698615463843, -0.698301913314575, -0.9396534085286335, -1.5917488802047437, 0.6465736023004107, 0.3137042995268152, 0.5818431968549652, -0.030793911836404893, 1.1362574451562957, 0.56718053072949, -1.2120362289672177, -0.26854992452596965, -1.0241496548142208, 0.3387524776481659, -0.39853961723237946, 0.89720559629864, 0.8036335506833121, 0.6228715566646595, -0.21466743125653406, 0.41937178443755246, -0.6086056820158436, 0.11463746857011901, -0.5287987884812025, 0.5979284030730972, -0.3266465285679994, -0.04085920255062056, 1.5923675303637255, 1.322120162999645, 0.26370659055303014, -1.2346509015843372, 0.7249755654955351, 0.8889570809735892, 0.6634440463190131, -0.4142978475596433, -1.0225690217830259, 0.1492189010549678, 0.2611972351347498, -1.3259018560588791, -0.21434718509711415, -0.039047618511427844, 0.5297777078466384, -0.14300171220050145, 0.05350192024216137, -0.6593526146244947, 0.2837940234333873, 0.17047684647909533, 1.073298349568089, -0.37657631217773524, -0.13761520506509434, 1.5243693894431196, 1.4031571241651228, -0.4120950056520678, -0.31141778687488675, 1.1120354791718332, -1.5065973213677502, 1.355607045536977, -0.08614856727315408, 0.24956049408869072, 2.5185910917127767, 1.2344666675971838, -0.0017526750781100878, -1.889955422976164, 0.07770866638218783, -0.4002234665385893, -1.675424469575829, -0.7228459647189825, -1.5727955495841106, 0.18722953448584959, 0.6449439983234397, 0.14607975816889227, 1.2392007299808476, -1.2570625426089626, 0.8492574024282297, 0.748493628422961, -0.2529617147908264, -0.6410729684628934, 0.25077953865820385, 0.1270118640691948, 0.6121079756927691, -0.5991139357842725, 0.5386502772637972, -0.8058292043670993, 1.033822975456761, 1.0828513740862213, -0.37539362285562117, 0.15668462255117802, -0.636638098033447, -0.758795346258973, 0.5797178983406506, -0.42702976742702603, -0.6975004150447067, 1.2850966071603205, 0.5824213001796668, -0.6472950186711689, -0.9852984339474292, -1.0759996558667364, -0.7287295873261016, 0.05574040494104682, 0.46817535735502497, 1.36283336567083, 1.0288679311565423, -0.985492727009865, 0.40376333505611384, 1.3165825380202087, 0.8810656546455837, 2.2654103626229993, 0.47550085930598895, 0.30945500608010823, 0.33722102250723357, 1.0493745931944456, -0.7403858866594873, -1.6816142188405405, 0.16966270149270063, 1.760705351248861, 0.975200551565645, 0.5075546374007314, -0.6646622679745515, -0.24071549053724284, 0.7261133430954148, -0.6848861275215193, 1.85338122207306, -0.08922388879164364, -0.0047725575844522194, 0.23775062098249916, -0.4444750121037229, -0.27355721057600246, -1.1790318210124882, -1.0606013353917532, 0.39052370326857955, -0.6215551710042376, 0.9278264557245381, -0.3976674057524461, 0.2024705687066248, -0.7146433273088851, -1.071598495407725, 1.0936352013387522, 0.8938333861954567, -0.40622988249002534, 0.681761328611789, 0.6043242337340828, 0.39684701285185225, -0.4092982999466619, 1.068594190536399, 0.24975765685873763, -0.08795897173146906, -1.1996922536666728, 1.5959238841510375, 0.29065545685826677, 0.10765888451979601, -0.7824195284254228, -0.727348642368383, 0.9174086649138602, 1.1516343587337143, 0.5101553922213129, 1.2606818107899989, -0.7304173550344173, 0.8571917866919629, 0.1724170650731373, 1.6215884620855963, 0.5785533082619034, -0.4509183702576202, 0.07130800760388255, 0.8629401689488883, -0.27668542606682406, -0.8297121555581995, -1.0385458940575236, 0.13931383349381488, -0.4324328035380459, 0.5600697238865054, 0.08847723187904603, 0.027568576724666314, -0.8800898236341561, -1.4028258316162912, -2.799889084074137, 0.5287466202336345, -0.7107996250311308, 1.0816777856894737, 0.2530327726223377, 0.36930003533879646, -0.2104086324261798, -0.5210066030393496, -0.46993162611100414, 0.2582831679136941, -0.5154371060183371, 1.2832784643174469, 1.0165026056879716, 1.1152703134711934, -2.508731763295492, 0.6019552367844342, 0.7710560811136052, 1.1102075055899199, -0.32574597246081305, 0.7177570462370194, 0.596197220035591, -1.0112033452409144, 1.1254316330953433, 0.5542524117184527, 0.93242982875328, -2.268148481030759, 0.6251676086523693, 1.5771052912334242, -1.23363378079282, 0.35707765673960934, 2.0121018401703292, 1.2191523807602758, 0.8429664085066246, 0.4377753347996621, 0.07576332043361882, -0.3246412579038956, -1.0736590250190696, -0.15979323553939048, 1.8307012456082823, -0.22445701329549134, -0.4416500378769119, 1.1026871966779452, 1.457891023138703, -1.1504076395169944, 0.04966263114535513, 1.5487834779455054, 0.3969753169683613, -0.3577010226592751, -0.9989288828487284, -1.1052002020894605, 0.022998479526463413, 1.6892135437391151, -1.3222249652541629, -1.343219751219644, -1.2177943015936585, -0.12532841910224535, 0.6446943828113433, -0.2896892442214432, -0.37996280326003123, 0.5938119120513955, 0.6007739703265285, 0.3913568974552918, 0.07032918369634554, 0.7913391128829238, -1.3760766908599054, 0.21386208767207943, 1.4565921521057437, 0.11441016417658875, 0.02374223314896639, -0.16247105851665475, 1.2836962807733345, -0.48167247349380504, -1.3575464601631808, -0.711273194637044, 0.5239686528927664, -1.0685192985576155, 1.0832709248359007, -1.3282652002599706, 0.8097855525253779, -0.422032958694152, 0.6274348056697329, 0.42069202644624315, 0.653838942009585, 0.09228409335031781, 0.551582130765688, 0.48822966235722803, 0.4238689272391456, 1.0702144148800694, -0.5123851600524326, -0.2573881870561657, -0.9416886692818954, 0.21630190016957, 0.5464470321484264, -2.7108988589644976, 0.5059603697583936, -0.21794827142946488, 0.5753319705419248, 1.332849208392722, 1.9896229968443655, 1.9802726335054868, -0.4306970026816182, 0.8472195947792132, -1.8628177040009568, -0.790815737820646, -2.3027961238295456, -0.8781987205738215, 1.6110774763134403, 0.35623232458345777, 0.15439591317892584, -0.5563458160275586, 0.8571145287768774, -0.2946703497187238, 0.3276085686439195, -0.8094724512343207, 0.9100766421566272, -0.2500072465391634, -0.019535416667719248, 2.3814454800475833, -0.3310293221834273, 0.15664852582509894, 0.8243074244340999, 0.15311971950895312, 0.1140587790209897, -0.9356253648885664, -0.1977702835018183, 0.3405639913179604, 1.0277650891032297, -0.7637411009134711, 1.7431842934098343, 0.6430067270000766, -0.8928972892219501, -0.37806882333993286, 0.9073183116382796, -0.3102520191929081, -0.5054059928692333, -0.9465981983684116, 0.6367023701412773, -1.3837154087406223, -1.281515074968304, 0.14740234749345543, 1.0003999870485, 1.868187748497368, 1.305210782461059, -0.34763177388713323, 0.9844676113809308, -0.20029778868771206, -0.8886064287902868, -0.6571243556122399, -0.6862495733006182, -0.05652415487785759, 0.74300211991275, 0.10336591717573387, 1.2136259223785548, 0.4164821878169184, -1.0482052514176303, -0.38143156345761453, 1.2941490222446081, -0.6917285355742789, 1.782677266206727, -0.4040461256050658, -1.309029674446851, 0.9936247643106654, 1.6428356758122742, -0.8490295937723433, 0.5284260834556325, 0.22420422297391068, 1.6282749849669604, 1.1150145738994068, 0.47387459742361265, -3.084869994313422, 0.49533511373593897, -0.552292055132441, -0.7302611387647127, 0.9557660869385883, -0.6517876960754678, -1.0266668745197083, -1.4356089783181722, -0.4503106691297594, 0.16709783441788034, -1.6393185258289442, -1.5402238027876123, -1.525045106764105, -1.9118681157524133, 1.318720146983864, 1.3586526452520997, 0.7077728457663138, 0.15640178399578095, 0.03724260401627618, -0.5067909699972023, -1.8587227315462442, -0.8975725525740127, -0.7798675010397663, 0.06003099169826966, 1.6988525094700115, -0.3073105651352259, 1.5921389917880986, -0.7023949413969219, -0.45805701588968606, -1.8234440490786126, -0.10503198865326423, -0.37779872064905207, 0.2129635168356968, 0.0072439843440452656, 1.22550768857852, 2.9891065621457487, 0.591845927288371, 0.8683729448437824, -1.8011312184200001, -0.06943741910534725, 0.4503428000114279, -1.0137008512972543, 2.101301869791069, -2.9124538432663245, 0.7515600172581931, -0.14335481956744217, 0.1631872093073371, 1.9128132915079021, -0.1585998554264406, -0.8222521391051809, -0.07152044832582365, 0.6155448894112981, -0.41220589366222155, -1.2060754318838205, 0.6671579941859578, 0.23960310386692144, 0.4432580281943271, -0.8230589296480864, 0.35832076760797743, 1.6913574517214363, -1.142744244732562, 0.33240235426385195, -2.242010071898654, 0.6901080879391034, 0.4436074206460146, 0.8764220650199929, 0.1304644454645661, 0.318909880317637, -0.07027949918358506, -0.7529389470129022, -2.796722240322003, -0.2537374565998899, 0.703578592388367, -1.4136641212740362, 0.7140191772559948, 1.4873495008162647, -0.6546293899053449, 0.8342181711178039, 0.9018486845550961, 1.410064031685621, 0.41056596175364285, -0.11717214799129816, -1.1657316301434797, 0.7099763665638726, -0.4931899426020052, 1.3504812036103624, -1.619450602131697, -1.0730352633983347, -0.19780578421086786, 0.09435453523477173, 0.3377468991775904, -1.9176517892217353, 0.1152350798054764, 1.2352167876537024, -0.330813567827878, -0.7718459260699178, -0.31243860371403726, 0.8694998490426828, 0.24222270949773925, 0.06861077606126147, -0.7194910381231662, -0.009360294077456496, -0.1022013389591801, 0.41231863193591284, -0.25488937996066036, 1.7775499759583153, 1.0101381120141413, 1.226913510591742, 0.7128315965529771, -1.4112431251736988, -0.3193672444973032, 0.3490138295671321, -1.099494910105601, -0.7426311729201627, -0.9675023048155688, 0.7175403510454645, 0.8440238970061571, 0.3049203596616825, -0.64901173683947, 0.59670363947538, 0.9121035568147517, -0.20421942101801924, -0.8714458200889431, 0.15970273823680137, -0.16085203740300177, -1.6269874010143508, -2.3661431648370783, 1.1763562792484148, 0.37565767576559544, 0.9207152681069638, -1.4261558738655562, 0.25350729559599067, -0.5828857114150638, -0.24647168715482579, 0.06569330915780197, 0.3904481356616619, 0.21943867126304434, 1.548876243281683, -0.7562998294766669, 0.47376274673476443, -0.5509530822289183, 0.980622710650394, 0.10287149392311422, 0.6865048652604688, -1.00450576826173, 0.46015609973404925, -0.06390233408762015, 0.08496887638822843, -1.5481859025580784, -0.5694585437428556, 0.18457519195103148, -0.07583980194042562, -1.1663952105517967, -0.442308286807869, -0.8317258933293296, 1.5859020808676294, -0.3065985734872984, -0.0014796039751762613, -0.40459633912130344, -0.8777503198441508, -0.4821121707552715, 1.1296653656866484, -1.2496349705880314, 0.20231524566404863, 1.1057872957946657, -0.07705864402410058, -2.193438414943887, -0.3274663872010463, -0.993585807211168, -0.4641247249504514, -0.41536528857276006, -0.5862986851603598, 1.6851573060063025, 0.27854485602163515, 1.1602983524750217, 0.4240941057518495, -0.2625280628325318, 1.4039203161112315, -1.9046896857494755, 1.8503920569841403, 0.4991857769986359, 0.662489732982419, 0.4839281339834763, 1.0822303053839724, 0.8641771748881675, 0.1752676129021942, -0.08485280975944567, 1.4681443772940639, 0.9790368496119696, -0.3194789087084053, -0.9772299743502526, -0.38460629034910443, -0.363966236126123, -0.2920934225368553, -0.3942729429853317, -0.18678886080269674, 2.1299817636399223, 0.7169018414178162, 0.17936617087515488, -0.1105912157934604, 1.1200627028723602, 1.8134473525912782, -0.17517727380149037, -1.4728906262811163, 0.3707313167832355, 1.4471871986789226, -0.6748560739563457, -0.4945052983924753, 1.567845662250126, 0.47606319360448046, -0.8320765970447018, 1.0646388345668099, 0.08649063632341565, -0.8020147420920559, -0.16321157672758715, 0.6937654781023749, -0.05040596230912109, 1.6443856439696538, 0.653590592881637, -0.8106123256434136, -2.435050890187945, 1.7319807880982014, 0.9845713769525548, 1.9828816936973102, 1.0684585330946799, -0.7004683106125175, -1.4543267302442875, -0.3711621713184936, -0.11513902548706281, -0.7553892368847085, -0.523487756501865, -0.31555415642717816, 2.61612040503343, -0.8614431289077273, 0.9301212599093684, -1.2282880847549902, -0.872243256538259, 0.17345437715689882, -1.0918318177969621, -2.4745119658313324, 1.1693815554971378, -0.6673022007317623, 1.0527767161166215, 2.0231407431456256, 0.41141532932099295, 1.0449684473344862, 0.3618117405682465, 0.7118423343602711, 1.4753813582434607, 0.6439835376717118, -0.6036435570486145, 0.48465381783343864, -0.11324428497553066, 0.7373981582650236, -0.2801767568334069, 0.6247759929442456, -0.44124007397214027, 0.01136732445699448, -0.595930044195339, -0.6955917513581964, -0.34464640126339363, 0.2077919040957256, 1.3823563053267376, -0.29586222773109067, 1.1968380427832623, -0.5187446172635213, -1.3884057851073983, -0.17742061730249842, 0.5652410316899993, -0.31030224677509216, 0.4856822133699922, -0.22307075777045557, -0.3984116745979042, 0.9572142184362127, -0.5485154991378023, 0.9673972821224069, 0.13624923626230143, 0.16713368754890548, -0.4724816026325204, -1.1582329502922193, 0.007893298344621316, 0.42343316566402184, -0.1815175410493126, 1.8605825738961848, 2.2627396187214157, -0.13732670888320145, -0.035362767433629615, 0.440728295279778, -0.7283163223899107, -0.4645900440976268, -2.717793755187975, -1.1381124601169814, -0.6066565233598251, -1.2562174588498676, -2.2784787551516406, 0.04753458342599892, -0.24203986893472534, 0.8533896127282238, 0.17265580657213583, -2.2480881154060475, 0.1585362061931414, 0.1308745095866638, -1.2617107728113008, -0.6342244932158227, 0.8914852979441584, 0.8334766842164912, 0.6038751198573259, -1.121074162803306, 0.4604404699788573, 2.209541822584108, -2.340320870026755, -0.05099469684380665, 1.47215057267598, 0.42273434421267464, -0.14617410518425125, -0.5981709743232292, -0.336137569855801, -1.767937145618285, 0.7262167937270327, -0.9750245830859549, 2.0325624094388317, 1.0260986094951765, 2.642976719164722, -0.04097056971102006, -1.2993877748192868, 0.4738269910600687, -0.6791588765893204, -0.06261516192036876, 1.6421960417198571, -0.40845617609055407, 1.9100510696343467, -1.6128548401003455, -2.0888457967005967, 1.7302269159536259, -0.19398395909347654, -0.12354737270905056, 0.5996841573964712, 1.4392352458503128, -1.0762135716571295, 0.6444593407560485, -1.1922672389436404, -0.805103840078436, -0.3391571545105918, 0.6149608073586588, 1.2031585090619656, -0.4824819019083605, -0.42417173847558476, -0.07799724879303965, -0.3459492266380835, -0.6892311149984991, -0.1504052099706759, -1.1393372908964452, 0.8919586341618412, -0.3155250327782543, -0.15348054499077804, -0.9056953758870145, -0.9344842538999585, -0.37927523314937833, 1.9278180453327698, -0.27936743324516156, -1.3954863982478145, -0.2866138228476299, -1.633936056687343, -0.9768188213762403, -0.33613682045605797, -0.43134384637141693, -0.8146741454840924, 1.3715787106564323, -0.49210735476207723, 0.6353650856025581, -0.2598101235088298, -0.3890060173009755, -0.13798343392765638, -0.9654781909936111, -0.010074943797898259, 1.4963197917617832, 0.25107277038900044, 0.9332736510888139, 0.11339251292142394, -0.8554227225631799, -0.7227460036658877, 1.6574743280330624, 0.08962369304756267, 1.4488776387113913, 0.03897709707830231, -0.4151193461130615, 0.16699364769498556, 0.4851880261932704, 1.944828612290098, -0.4274896777012264, -0.5150749376241189, 1.4649808358355596, -1.2119788925121222, -1.0871557513356385, -0.4902170687457249, 0.5399461543834442, 0.6566374492222296, -0.863943231995368, 1.6200550200588877, -0.14840397484172194, 0.6414120856897086, -0.6550549306600703, -0.10259406030359738, -0.6392611538680916, -1.5633270590407777, 0.32037317866386894, 0.05448251331295086, -0.6138720269753897, -0.011064025096412152, -0.45969115051021947, 0.1104490757497466, -1.2067140868367054, -1.2407741964755823, -0.8277456048735399, -0.5145650215161177, 1.6249919628683067, 0.1973859746721611, -1.839907669393548, -0.542723973095615, 0.17839607099219248, 0.9737517839201206, -0.06179261352931798, -0.20303744928119388, 0.3471171358680454, 0.42877574950747327, -1.6733646792330599, -1.2068574685865765, -0.7174805897911232, 1.065224365328146, 0.5211631278265965, 0.77228580659728, 0.5659610812907266, 0.17709990274627188, 0.7720322748970119, -1.1282837599533801, -0.9459684985396787, 0.10372256349133026, -0.49846834519986205, -1.4553465472322218, 0.7682678061822024, 0.21079189357727188, 0.9541324843265755, 1.0481246902287944, 1.2224615888048744, -0.008318026612028842, 0.8292458443948072, 1.697935066028698, -1.3835912489364737, 2.07061151183231, 1.2665521305074614, 1.3812192178413618, -0.5519618590818667, 0.15456835861661705, -0.6236285262161783, 0.31818129811822204, 0.7656732159487369, 1.491687266290668, -1.342745538339749, 0.4566149533906562, 0.6639017285662208, 3.340535078337199, -0.9854614613146376, -1.1260253871027077, -1.093625419249035, 0.049546720461253226, 1.695013872324169, -0.4336833051030681, -0.6929826028122191, 0.7197074501339039, 0.9303100684989598, 1.167370037787231, -0.8033453639371951, 0.5681642580003027, 0.9235400242492499, 0.6991787678697052, 0.6079617255431993, 0.5432198172579772, -0.22943482492054892, 1.009385987880604, 2.4594777726846053, 1.263941183013833, -1.9631290550052405, -0.8645057723684156, -1.3349405992767949, 0.9979844833631418, 0.8836023154362553, 2.062583895987871, -0.5251152213420199, -0.26860801931645806, 0.24826439497224556, -3.100864724855009, -0.3326865672157358, 0.5065338841318341, 1.3027533207827486, 0.5509480616979845, -0.282976369834636, 0.9494307995430978, 1.2007326846448745, 1.2208166580303277, -0.6061171019402374, -1.5134413036676462, 0.3037099176066618, 1.3913457495828674, 0.21556260906755143, 0.5157580204423519, -0.5757320939983613, 2.549191651323018, 0.5967894225033307, 0.0632557580724458, -0.23432384288756578, 0.28817042068362597, -0.8247037865396644, -0.46797001191768134, 0.753888302219172, -3.017549147195179, 0.9399549129398495, -1.723179390564456, -1.8983252668653865, 0.6041564662198797, -1.492578374373132, -0.7017293290690887, 0.4420146858170038, 0.16204651580700224, -0.7287075624675975, -0.15814610321399886, 0.8075171749772084, 0.2491324316504713, 0.613517349638633, -1.7329725006566539, 0.7967102514160036, 0.8003252526293178, 0.8311143780233259, 0.5337788649451923, 0.9327625387355456, 0.2535728050629161, -0.14212792373477012, 0.7702961670788405, 0.11539353166755238, -0.3584761613878863, 0.42984124365494775, -0.424913079404529, -1.6922932969957765, -0.9553259263376309, -0.7802389795722745, 1.1209376578796846, 2.470416591222948, 1.2290106591614642, -0.3519878562408738, 1.2871692673221427, -0.11677012428402558, 1.6972277023070086, -0.2447046815623261, -1.0784281987798328, -0.7095619169600853, 0.801590391824806, 0.075810643514683, -1.4592708188675971, -1.855969962715816, 1.1155695974492634, 0.252522401273335, 1.2321563505644815, -1.290851727107354, 0.7734755389119361, 0.8855142960904823, 0.9444326137255381, 0.5348922724916827, -0.778284018970441, 0.6125190405558316, -0.38478248735983583, -0.05619746080860641, -1.5802802281338135, -1.5701525346667027, -0.10051218447296013, 1.3492298444758692, 1.3267168249672165, 0.38884441960742855, 0.8846665127467166, -1.6946569853791644, 1.238642369509912, -0.6439526032340914, 0.6430112946641282, -0.6502672333412978, -0.27329258582432064, 1.0141989707732963, 0.7340917143932102, -0.011913528008635698, -0.3570900268256726, -0.7213067108891426, 0.4928893555073754, -0.4166426398776552, 0.6195798282670137, -0.3405489892744096, -0.26263274639654643, 0.13718321178823562, -0.2759896997197003, 0.5920782813914321, 1.3390088826719724, -0.2714404254295661, -2.097747602149108, 0.5492499868676808, -1.1262891409508107, 1.6537724483804226, 1.6708629353408226, 1.8508097987806145, 1.0149492106028308, -0.660294362562798, -0.032115283724410956, 1.2724456279457046, -0.12449933629291841, 1.296803636919397, -0.6750231417961708, -0.35019986555716276, 1.6335863605425447, 1.277718843982645, 0.9251189118319584, -0.171646212569304, -0.6755521997728995, -0.577098694380293, 0.3691869446170615, 0.4125861522620813, 0.5878254576766034, -0.3837020299960778, 1.2960767564965827, -0.9734554970827992, -1.3863684547869288, -1.3452662859678335, 0.047526549324387136, 0.00701193006815859, -0.8414990792804975, 0.31337383733955654, -1.2826355462477659, -1.1921979275873638, 1.373073733948698, 1.5145805130214587, -0.4923636205022658, -0.6134721308485892, 1.3279557326274183, 0.6167832795448767, -0.7718137515892814, -0.8058916182350312, -0.24967721632603945, -0.5538939694648496, -0.48008168898547643, -0.6016498995703018, -0.6992878111983871, 0.3428887346067433, -0.2262619602590298, 1.3278745100104508, -1.218894391659974, -1.1419448872919236, 0.14168160979486957, -0.29288625847957017, -0.40234189266125664, 1.3320656501264798, -0.8091049194652485, -0.14248321129372307, 0.21678984230349113, -0.9461895619972703, 1.3100265312381048, -0.8661811416135776, -0.7977878943525427, 0.835164365655063, -2.233209716642499, -1.7974617620143079, 1.8102311570445024, 0.7812442953324105, 0.4362123136071243, 0.02393353804661512, -0.13151444603729456, 1.393774710226216, -0.8826735194538722, 0.04561895170286887, 0.9253105547391236, 0.020055948473599157, -0.13010035002822037, 3.111580232651389, 0.31384144589693386, -0.8899208747002978, 1.4932299210889484, -1.4859013512930934, 1.434872904122549, -1.6729473022077397, 0.12204948921718038, 1.3443188003161994, -0.08177885704303642, -0.5758761092189661, 0.748839638042052, -1.2438471979814532, 1.5926265089841438, 0.36138193703677274, 0.8961373926994874, 0.5896916643305449, 0.43167080736360725, -0.07269195190809796, 1.2372802554554303, 0.06843426751292722, 0.6865889149325052, -1.7456342663864652, -0.40614684533254397, 0.32040089227346097, 1.0914150153390414, 0.9840028528719215, 0.2590295793729887, -0.824819369226792, -2.1069427215422207, -0.11240312908852465, 0.6040774279626284, -0.9729543507356405, -0.17150482486845728, -0.19438605190483224, -2.0781961824222264, 0.9167008907920989, -1.2557344920855615, 0.550583655879196, -0.02696911143572825, -0.34699154112218444, -0.13642596182111125, 1.0491311963408, 0.7378659574216391, -0.7352844011051874, 1.0657928234358824, -1.3262674975500763, 1.396309441818449, -0.11757008338150958, -2.530549966475313, -1.50675007276902, -0.5409505968422469, -1.3570202585302498, -0.9978912662818656, 0.01752042772117809, 1.600451746069745, -0.061783394500281835, 2.190395972119774, 0.9513890948250291, 0.7705175253275373, -1.3834352950132134, 0.6110306391381485, -1.3871150178907294, -1.6888488108582163, -1.1621370770614623, 2.1832492399372594, -0.28595531005246094, 0.2649136105372829, 0.13526333655282607, 0.04662196260482761, 0.7614639861703754, 1.817126109208107, 0.19655902173761802, -0.28802206459228924, 0.24548455144045814, 1.6494529595976035, -1.6205331595292747, 0.8281114983993897, -1.017321425322193, 1.0610358628287553, -1.7379939339157786, -0.7616518968185741, 0.2591593893776891, 0.5539130999412043, 0.018747667716390002, -0.390574967469493, 0.5355681134433066, 0.20458486277476126, -1.3042327065003334, -0.3996588766385386, -0.7964258256714438, -0.7366074043473974, 0.3285707205699869, 1.5428414017827075, 0.012833117066567371, -1.6446052406127127, 0.1857592743605679, 1.266239932755568, -0.003926714170339601, 1.2712393711242485, 0.2605409440728616, 0.2839426553455984, 1.0743477734218259, 0.3153203861640255, 0.41205678944297625, 1.3933869365193077, 1.1388582309012003, 0.44906065283312296, -1.3100170223344816, 0.15109036259265526, 0.46888907978178973, -1.7045173626874677, -0.10460723253228887, -0.2549075120448, -0.4174846089936025, 0.8846466618143769, 0.21114338159517998, 2.1430199371420553, 0.8500808109408725, -0.25042304225268924, -0.16356462267801783, 0.5284975793997483, 1.2070920388707675, -0.9677560606139627, -1.0704676691629462, -1.2619703047902902, 0.3294830146926471, -0.5961204922754233, -0.4521890914679753, -0.8580961932826074, 1.2190418396341767, -1.2012607043207928, -0.7469265457733361, 0.5835466881036098, -0.23357338866548444, 0.09994868368731796, -0.5238497197743595, -0.9883210174678322, -0.02596599221669145, 0.35485731925799696, 1.5989053773078545, 0.5554293917572043, -0.20303308783921267, -0.5115500917586577, -0.66876939301571, -0.6052404700121891, -0.14020287884254595, 1.224254912286606, 0.34961981708767764, 1.5344304188217661, -0.11688112413691087, 1.0138858797766992, -1.6687459141598981, -0.22406702486731828, -1.905493646415776, 0.623423399623801, -0.17586381110059482, -0.46962722766703247, 0.885738296360915, 0.7500860982780702, 0.7773141194393614, 0.7884662092779426, -0.6500001725948414, 0.7889431075482143, 0.9827354913993116, -0.40276363894368294, 0.3737988420578743, 0.5436545726926141, 0.9823065995391541, 0.2892007009705113, 0.3639539741229102, 1.3149808774310687, 1.3365300172972996, -0.23493551483099345, -0.748808678180802, 0.8912765753460608, 0.3922539056012965, -0.5192910656010857, -0.4961530904468169, -0.09779625912167338, 0.7410713459379095, 0.9100465003139854, -0.5726776011669543, -2.529983314358311, -0.3925976273828883, -1.3779729776485035, -0.6289014267767238, -0.5801259497127489, -1.0268624964950184, 2.0533717910879776, 1.309473845271082, 0.5308990099071186, -0.6830243406744596, 0.31298571877088066, 0.13842004372142797, 1.821552642852156, 1.8974500972107147, -0.01592368200751615, -1.2300205772248334, -3.3910279290277034, -0.5822153165220505, -1.2181329037954385, -0.252635454433381, -0.41989697238368134, 2.5046377975169216, 0.49293823008782917, -0.39452328880230464, 0.06385767235761251, 1.6189618898746507, -1.6397420450482703, 0.5469284804417583, 0.006174705084331643, 1.2247418328373036, 0.762571159407301, -0.30218121006022264, -1.2738621535614452, 0.18272488453807859, -0.671052661870057, 0.4057419311473197, 1.2587220161097719, 0.8477318855332803, 0.5211770656955403, -0.583525056996036, 0.031195309650379838, -0.2586595507644409, 1.2132395786086174, -1.3139429437717594, 0.7920725476419759, -0.6633255543238823, -0.26750387727923824, 0.03535143233925598, 0.4821471351602158, 0.7024424032990502, 0.5474222795331011, 1.3937551573034257, 1.400983736762741, -0.852420492419999, -0.7437725276128141, -0.8571833400599163, 0.023219064332914405, 0.526736457899059, 0.16220598908507428, -0.7478606685665465, -0.8452166461079833, -1.237278676869364, -0.11946845305609366, -1.326362732117451, 0.09950990148443192, -0.3344609613055142, 0.19912531339146353, 0.8539810800810684, 0.12949778281622248, -0.002043470485845653, -0.7066605626255469, -1.2241023393867863, -0.19130449184098383, 0.8500011117602316, 1.2697954283982087, 0.6768726962994351, 0.4982016887487642, 0.5959386833129496, 0.02255562123784836, 0.7125623184876593, -1.3309633854630856, -0.10052018092161688, -0.38764465907486795, -0.10815700093485899, -0.008290635202100008, 0.17585406461078049, -1.7317145475732507, 2.786144035564982, 0.14949331550754247, -0.017493637458412165, -0.27457900910085364, -2.8820107863818545, -0.22616653606539566, -0.049888018819996445, -1.9716743537195112, 0.22683895732676465, -0.5919924534096109, -0.3402444992253828, 0.9351515975708279, -0.0695238394909529, 0.48862399456971817, -1.2746879472629007, -0.391502153760354, -0.9948476918609294, 0.0746242457160394, 1.3428135642729664, 1.0962899290616024, 0.8795487391140208, 0.656491830012901, 0.7317780101063094, -1.3434169912300136, -2.166434367417547, 0.3956786641582463, 2.035988537268193, -0.1969777268837263, -0.7242307118075297, -0.564244139483146, -0.8944148202434178, -0.3096830797590165, -1.0645693351029413, -0.13987727871694502, 0.8948440185211242, -0.22283503264672724, -1.4910860365587402, -0.13402060716827185, -0.3610783809260044, -0.189263039459285, 0.37556648763906353, 0.8429789234439644, 0.23405378123535314, -0.9392480966104804, -0.45993485414290053, 1.1475734721686024, -0.38817340580424614, 1.2246071647779584, 0.32193444701201185, 1.4852379497502886, -2.2309322217901406, -1.7875100121505025, 0.5682166389908607, 0.7133680561433327, -0.9934094922416405, 0.11619166960940196, 1.2514839024685662, 2.482241473086139, 0.09753148597904275, -0.4709952867373527, -0.11960923410283146, 0.76411042314783, -0.01914937564867085, -0.37784853844695043, 0.2877887524524325, -0.8228788554660327, 0.010491375150549431, 1.22570070105818, 0.9517485075667924, -0.7098921687803982, 0.5229727527822051, -0.33834902799851696, 1.0211940739437475, 0.4573421357704441, -2.4170914960932888, 0.33807365944239176, 0.45980601355684725, 0.9959462893910143, 0.5514919829463775, 0.9413353904301431, -2.9774221274839068, -0.5613066661010384, 1.1128212116033669, -1.3299855953276443, 0.5926037065482708, -0.09355619896133366, -1.3475753164645632, 0.482986839796395, 1.1684247919088835, -0.21501736035028293, 0.8041001241112504, 2.0161879416435227, -0.750783649932804, 0.17095068387895226, -0.4872751924148557, 0.0025313658744356153, 1.214841218832051, -1.3389497180462118, 0.4597799849649253, 0.9773403660486034, -0.11579534650699341, -1.363345471239124, -0.322269487105358, -0.1892509824868002, 0.5710548243112391, -0.1315946305145043, 0.7773032152392592, -0.600234839343036, 1.509331981373863, 1.1403274837236723, 0.12370304769214258, 0.7288802355579281, 0.16626553790122325, 1.318505258918353, -0.27356916372625234, -1.2172986306868188, 1.0686751425457957, 0.08724681901113578, -0.4588371093813614, 0.1681755975056455, -0.643677600096071, 0.7318440317521917, 0.05501578285358002, -0.22179255877523887, 0.3921715934143701, 0.5911562842783215, -0.18255963798464564, -1.3967239727868177, -0.2313831281333743, 0.8963208992773305, 1.9929192972355274, 0.6398806539031126, -0.12804516834794707, 1.8074208080067447, -2.2980046991074192, 0.21868120605713645, -1.331047767171866, -0.6956015645404667, -1.377502559920441, -0.25695816818070394, 0.03051512002378216, 0.38043788033391385, -1.8700281259928577, -0.6872136615449909, -0.06545159164733588, 1.4240826870389345, -0.5721071432973239, -0.005037381960415172, 0.09368667582546779, 0.06274139312945107, 1.4991994216451299, 1.0582451162281203, -0.6578787629738533, 0.10448738323466375, 2.876659178881685, 1.7849875238577397, 0.6588305873883197, -0.22363631429499167, 0.47042853400754203, 0.20672727143415276, 0.904888538630643, 1.5327579482257052, -0.4421416558508198, -0.4440363791132071, -1.2957892849643387, -0.30422750065819926, 0.7713945958961391, 0.1178715024558985, 0.37542553373249327, -0.9877666173850528, -0.1884140241308144, -0.9004841940699119, 0.03995582774860388, 0.22575186972991138, -1.117964972700416, 1.2587094319692145, 1.7602001499079065, 0.3906520131879519, 1.8059393052456905, -0.47684574430671717, 0.8671960039875102, 0.5092486653464519, -0.4178843758914821, -0.16216591237307593, 0.3910735524041446, -1.4231405293398625, 0.9556269410613737, -1.2578947960197937, -0.7185562806860007, 0.5089002142065691, 0.763396240956971, -0.18861136989979213, -0.5412434525313545, 1.882206511987015, 1.0429522284220907, 1.5729053791172183, -2.627597700590911, -0.4783910167772829, 1.5150231176542874, -0.39308478448492995, 1.287182506699141, -0.1119427721420957, 1.7463100703771128, 0.8725346273603493, -1.1851231624444916, 1.5864575906446488, -1.2685721976365434, 1.5908888595512878, 0.07442719166854783, -0.025727056853537916, -1.5000541043747275, 0.6272836471762259, -0.8107217268358262, 0.24983720982076058, 0.2058743082153904, -1.02508681653328, -0.44455507361758156, -0.32388086419293394, -0.12504741881411416, 0.1079243077247749, -0.08189690769483962, 1.7155453837057137, -1.8933109277201725, 1.0649244374672626, 0.691668768949075, -0.6321604308559028, -2.275143544479422, -0.1811819257488311, 0.10689080268343255, 2.690918770378624, 0.3103519462890591, 0.2329882204491579, 0.4067356851224226, 0.2784897656143686, 0.04360488390269158, -0.6929134949110706, 0.5904151290024041, -1.2663839631322982, -0.02296869925645916, 0.2507782503405127, 1.2353537305068023, -0.41264077810797406, -0.9371905519559586, -1.3149585070952392, 1.9464200177393407, 0.5385664981242279, 0.2117295188891489, -0.4576118279160596, 0.7048437152725994, -1.5584306819401135, -1.3685647455719652, 1.0426812579213798, -1.1896676685064251, 0.4971782800321275, -0.4061896790427679, -0.07663654200128303, 0.05821591399659952, 0.4885550943603447, -0.5833457352311132, 0.11670117101143304, -0.2892995143100191, -1.6711405000401292, -3.0034902779664274, 0.6308559535364769, -0.7121377576570552, 1.2477786684874606, 1.1935103451792575, -0.5631567057508282, -0.48503568594242286, -0.9841886038909218, 1.4974791076448979, -0.249148615138955, 0.14389072901316124, -0.6913599638718362, -0.35337689466803074, -1.3681641545783003, -0.3771906142563125, 0.32023388049929763, 0.8591054424058758, 1.0116444253016346, 0.2915476519175975, -0.6486325320646111, -1.3823160676238713, -0.9511852118034222, 0.14279740909689603, 0.2649121059506342, -1.4682059658727644, -1.7621499982519644, 1.5446415242150398, 1.1741567519594964, -1.2174438322128267, 1.1870209223872368, 0.3747467085475664, 0.2711048053883031, 0.8057766199637618, -0.023156680354926275, -0.5855762586810492, 0.5575174507656157, -1.1340742627796907, 0.19986485276076638, 0.039933390420637115, -1.1540801747986613, -0.7683977013952883, -1.4684124431875598, -1.041656942645377, -0.9986862141467747, -2.4387058897143077, 0.3325904152623248, -0.22505132608675105, 1.1928083674702221, 2.2568827101054927, 1.1387656974336653, -0.2782707100830554, 1.0182123558810214, -0.16864745990087876, 0.9898255952980461, -1.106897376749643, 0.8862289017607339, 0.43200169004648636, -0.6389479952291958, 0.3263895701846213, 0.37392074872559544, 1.7230384585698684, -0.2505161672990192, 0.15418135939966676, -0.7281659509437819, 1.2239913584780002, 0.4007591783679528, 0.4197340743516309, 0.4794468282218834, -1.6371660264945191, 0.8939261106481797, -1.2284564880859323, 0.790856876404963, -0.3145996178548557, -0.896726699642493, 0.19073290095390996, -0.6909849221968576, 0.43913590118072654, -0.4687809633535934, -0.43700691802000335, 2.1483782443313415, 1.2298710551459895, -0.5015959556105191, 0.3872252727842823, -0.907676077260552, 0.02853209628241695, -0.6716295285909334, -0.020552268266109192, -0.3573251555990602, -0.2740322070169774, 0.42829067511014746, 0.17945254059130022, -0.6240876991321617, -0.8043488541976529, 1.561496585494237, 1.0380912233916375, 0.43433660802371005, -2.1336360617260133, 0.4197127817835087, -0.6430556653130345, -0.7643774358543582, -1.1336604753972475, -1.2733913245308428, -0.3599175390209056, -0.0015473636223945196, -0.7190178355578037, -0.5948781497498837, 1.1039005930038055, 1.0966315882379754, 0.8801372679540279, 0.45511632154996245, -2.289980105136991, -0.3355472142784289, 1.0720253022449027, 1.24902824179434, -0.796502707264173, 1.6154165771898767, -0.24502702438050394, 0.5072784231673529, -1.8134432234968998, -0.3243862167148352, -0.6503594984669963, 0.4241559296562601, -0.07871409345819029, -0.02059091593956693, 0.2231222048430323, -0.44514801527020914, -1.3024351966978445, -0.38207269484774253, -0.9259269960368289, 0.18933605706676263, 0.40166347325084234, -0.7337654979444862, 0.7382434105654677, 1.486995172274681, 1.0758727988529078, 0.04310137172888082, 1.3393220501316827, -0.13767225031808103, 0.756420611043482, -0.8539134975039369, 0.25378939705691744, -0.8054020568268022, 0.4029944798530082, -0.6095978949103834, 1.0493921448044021, -0.31707970180794326, 0.3865354444510983, -0.4185407930047153, -1.0628955993340894, -1.1293447015841187, 1.267414331037814, -1.3120175563954803, 0.2068646433996829, -0.41002933997630103, -1.593109920948065, -0.18767525473583588, -1.7715884827974955, -0.2770699026989901, -1.5915267133347126, 0.7957329850192663, 0.5856562719698409, -0.4048649475312073, -0.5771959062906901, 0.31105252255441923, -1.4953592673611735, -0.3906044984112393, -0.9064636697570104, -0.6321787601948586, 0.15935892703657817, 1.2125916414695666, 1.4832124336396866, -0.46801455327983493, 0.03946650539937156, -0.5874021108499095, -0.9168020704424621, 0.9421877663509199, 0.7670399801702681, -0.34492169872163103, 0.8835104101969523, 0.47317007949876017, 0.9525870097031333, -1.5617270112735762, -1.7649295224611055, -1.6322517529189529, -1.251569259178027, -1.0518241539580486, -1.2562001205137892, -1.3421217311173648, 0.3979684572447422, -0.10226108620169477, -0.7655625048371685, -0.7338066230469016, -2.0831727691076565, -0.29710603314516926, 0.24028220925123236, 0.5383393416562537, 2.2500446052083056, -1.6779733562026253, -1.2720219009437224, -0.6825442284085633, 0.6059297936099225, -0.9001352929528703, -0.599827451345688, 0.30007748642859566, -0.128313038453828, 0.9995070543814449, -1.1647278590817955, -1.1804144790277653, 0.2297766858868809, 1.8717680206356844, 0.2083801318014147, 0.7593479388621598, -0.7032445525019353, 1.0435208581050488, -0.2483135713090132, 0.32685399257199405, -2.1036346520581413, -0.2816199168443612, 1.3264276419229521, 0.010829358042536517, 1.564469184191224, 0.21934138170261025, 0.49520965763633845, 0.22451167147530993, 0.11973283315891502, -1.9021275045966426, 1.291669653294548, 0.6859678879617904, -0.5776855798709076, -0.27797830922078914, -0.5064134556390708, 0.6948882858212413, 1.1930845391771867, -0.613104598057101, -1.3289365131104, -0.6289235448070916, 0.7452942033576669, 0.9013351054360839, -0.6590361449695762, 0.4279034744373209, 0.42652772180861576, 0.5040056711204322, 1.0461371336754284, -2.4137309336181247, -0.13528900462549398, -3.7540087183906183, 1.7024792170802479, -1.7595054010511475, 0.547107627069294, 0.5306839292028003, -0.7326566355448676, -0.56257216589721, 0.037347673003013206, -1.6373656924123239, 0.3375484053144859, -0.7307071070714737, 0.0021366725332248922, 0.6079483544127506, 0.8465513990410393, -1.5361118947835426, 0.00016684792799613596, 1.2145898206243657, -1.3507529194553705, 0.8019573357484737, -0.5955590560325292, 0.6799559626172392, 0.43122313068639556, 1.150199386440916, -1.9024677572229753, 0.11119580166212131, 0.08855339533906777, -0.7868603864931228, 0.4201265317468557, -3.1332880168252, 0.16380847588121963, 1.2707177924545832, 0.11745027971205647, 0.5547381629891742, 0.9804771459499984, 0.6873918019068063, -0.4620246582250264, 0.7333668979936384, 0.45972756682606075, -0.07428517164380509, -0.3033216703245881, -0.6357845859174852, -0.9540061288899558, 1.3840226527776966, -0.4075115659857834, -0.7312838005321782, 1.5549450156664686, -0.09612524149611318, -0.6982353792147256, -0.49615083613933053, 1.2665782082914558, 1.5558680898209682, 0.4023088764473789, 0.20066040806893323, -1.0663792807408219, -0.8319227615233842, -0.049228595069583506, -0.02414503740442, 1.299035311205365, 0.6083271359387412, 0.48534617556867365, 3.0553833148265355, 0.23049076809728888, 1.2014821934183766, 0.46902120390113755, 1.1164587707090656, -0.3258419719217497, 0.07318469966531999, -0.49899704859958144, -0.36300075521184505, -0.3909462030296723, -0.5730228734914818, 0.7256816900131234, -0.36420668027361913, -0.17428200601692742, -1.0181448535892739, -0.17481242700724534, 0.615332702117411, -0.8717782527174687, -0.34723952105439104, -0.37320173561063735, 0.39442725557404684, -0.06871202061265828, 0.8812191117874071, 0.06952519412153718, 2.3472842270201375, 1.898145627478815, -0.042693404919267985, -0.2120061282689902, -0.20178542498663285, -1.1296507058169134, 0.68041923629157, -1.3321391015485937, 0.6267611873209787, 1.4192924239477862, 0.4329786345902193, 0.012593044467704439, -1.1518608821116127, 0.40104328805843886, 1.3507523927987355, 0.6912942718392701, -0.9471336374983615, -0.24522095379273504, 1.2335681434446144, -0.09417493295871286, -0.5142867385514648, -0.13852701679511237, -0.8765561886390919, -0.372642008489566, 1.3875195436427485, 0.001348482025951164, -0.9084865305914219, 1.533828551224396, 0.904260578437116, -0.5419206754139924, 0.7965654929578719, 1.377916113208256, -2.301419256795973, -0.6347768002813091, 0.5652104058816022, -1.105380516025365, 0.30002165166768485, 1.2854704099389527, 0.06915677105020553, -0.5049342124247008, 0.7789055123185641, 0.967838286165843, 1.1595703834914857, -0.4165827584952589, 0.20637545461902734, -1.121626496565852, 1.162917254488622, 0.3368499090184511, -0.08598941457925284, 2.0182290687732376, 1.3433267932672832, -0.6621735993225192, 0.3478622150668295, -0.32345016531013393, 0.40100087370070814, 0.08333802690255691, -0.693392210514534, -0.4381454291193885, -1.0592782604658002, -0.03653167389296413, -0.9312291980150815, 0.23897014866058278, 1.622050574192704, -1.5560070811282922, -1.079848147824338, 1.5486848047195558, 0.27320463547439816, -0.6593595572276295, 1.3503365083470793, 1.0211933939009037, 1.8864052388833938, 0.2825030417870666, 0.08568308820632876, -0.5859604540225055, -0.11449149273928053, -0.3310470897109226, -0.33000250406708914, -0.735044877840758, -0.21806798912634334, -0.8745906851430622, -0.5858047980377765, 0.817497201967916, -1.3824116961155375, 1.6316267730590746, -0.1904957656678269, -1.016108666704566, 1.0886889719759845, 1.0505551486977287, -0.8673096299589277, 0.2901729169285841, -0.8332276585231326, -1.2558203801785444, -0.5630246424117896, -0.09140713757974649, 0.781708161014513, 0.6978802797493097, -0.10898096518123174, 0.005842247709850099, -1.4804132669982302, 0.2987894921061596, 0.3308581893410947, 0.48596514151946085, -2.4939815198454807, -0.6082913841748334, 1.205653296488795, -0.06464899452616825, -0.008969588220312663, -1.4143573976096575, 0.6578383814037643, 2.0705236443859683, 0.44824477879305535, 0.8701177324232019, 1.0021808371122296, 1.690868370085774, -0.6445707332747586, 0.4314960080586686, 0.12315974568003119, -1.018188379567356, -0.971662656037014, 3.2952455661544415, -0.6464726777667461, 1.2274373393677638, -0.031765910282028256, 0.615659016528371, -2.6000635836754786, -0.33484670098066643, -1.2998911575319685, 0.9695988201192645, -0.5459395211655602, 0.7597730279582395, 0.5286820403280147, 0.010844992803896853, 0.9691477590529429, -0.03890858132642493, 0.7190051456998507, 0.030671288959981505, -1.1014854725260153, -1.0568631049967394, 0.8402861312276384, -0.4389329985531689, -0.5810314489916494, -0.42055479229038834, 0.9905888768325077, 0.7618119417246919, 0.5516183795336865, 0.4113652057223476, -0.4729597694897676, 0.502831924882279, 0.5933539639431585, 1.184334867089192, 0.4839865497107764, -2.275105373988218, 0.2923378152007599, 1.7054120485401891, 1.2055046193333354, 0.007489116617885337, 0.3479547978555216, -2.78556691682167, -0.12204430743278281, -0.20304407151131504, 1.862577811697452, 1.396839430459909, -0.31698262157163576, 0.953988779713951, -0.09131413385689717, -2.226703064910964, 0.620457077809489, 0.7237726979383554, -1.2459596605991525, 1.094748735504725, 0.4201254755762336, 0.13551970388114656, -2.6630312774756937, -0.5834667604887814, 0.6279135592783714, 0.16138893892928943, 0.09181370561062185, 0.8048434226652158, -1.6199362719602075, -1.3389569835265123, -1.0487304854196942, 0.8835117587056881, -0.12770695764211126, 0.7892272436429801, 0.22704867229337822, 1.2294576803120298, -1.1591142634542142, 0.044622256353478405, -0.7389287000846775, -0.28277374891886065, -0.8135301555151855, 0.6744667009638202, 1.5809278030029394, -1.280010463146581, -0.7244244257354848, -0.0020910534330481428, 0.9543481074528237, 0.6821619629844541, 0.5962170835463338, -0.47478864370933865, 1.4801791962907513, 0.17865651510478972, 1.1735996587645294, -0.1932572661062669, -0.4898738897828042, -0.5852542349917349, -0.01558307026138654, -0.3357095135807405, 1.5190540266571597, 0.35285380574469566, -1.3352285242954076, 0.9485949602452612, 1.7878987445413375, -1.5157287734040639, -3.066422490620391, 0.8513734661722826, 0.2378623151071987, -0.8294881028770438, 1.2874439616649467, 0.41335063259896687, -1.1106170639566326, -0.8739109064417862, 0.588557154442327, 1.9613290249908177, -2.599988831284743, -0.1448855869856974, -0.35952968630954174, -0.973931315024668, -1.3779872563137172, -0.9256352687983929, 1.035930846032739, -0.33308010448422626, -0.5154971621624878, -0.15297151863421868, -0.4913814863514654, -1.043568015580644, -0.6986878167321645, 1.679419402416728, -0.822097266899493, -0.2533962783004275, -1.4642753927392844, 0.056220598870567774, 0.03901144059202857, -0.06288405352004092, -0.8833205260263597, 0.23775512743411334, 1.184027673236418, 0.30979213330827404, -0.7964578066410855, 1.3142689818340607, 1.3057538499552663, -0.5144641588581412, 0.27701868921498696, -0.7678101565800323, -0.17973393197238116, -0.40821087842793574, -1.2021283708094448, -0.6986602367826831, 0.6233206636346434, 0.5368240429003739, -0.5836406211980357, 1.2674962767418396, 0.1330516515750462, 1.7416791268261569, 0.7240004039464797, 0.4202336284913212, -0.43852871877765753, 0.0629123066385386, -0.2823306403425167, -0.40405567296981565, 0.7284399126071984, -0.27026755438928807, -0.12094701994211354, 1.2433374073468133, 1.2433833177404772, 1.4355019505312874, -0.9905020489042703, -1.2967859000201742, -0.580989556076153, -0.3039692501505784, 1.325429498207558, 1.6945818315442047, 0.743825102326206, -0.13273795248418585, 1.2602403342952853, 0.08016400591110308, -0.2400127332901928, -1.2335387187876548, 0.7931398914593716, 1.274542543562489, -0.564228258899997, 1.0795142381604577, 0.47193043768555304, -0.47424100887971266, -1.145695462530707, 0.09425659534850842, 0.43867721418623234, -1.5206737612934371, -1.772270185160407, 0.4054211555055394, 0.8118496048512147, -0.5131779702012031, 0.6478114402199381, -0.5858573913024265, 0.4378928625925848, 0.9108583663981901, 0.053798394339271534, -0.4160245154221787, 0.502820772834608, 0.2938870779303917, -0.56236315935967, 0.14633720079295756, -0.3483194701365309, -2.077639455624936, -0.4711387483854905, 0.8879452950331862, 0.46261738957198345, 2.3638462445035238, -1.0042755126407603, -1.6507973349861254, -0.44989699718156945, -0.283169476978804, 0.15607683875429154, -0.9541875614959882, 0.6268547647373371, -0.27377867065625877, 0.6202421850426864, 0.047460871946042725, 1.6527098719059856, -0.16154725151021423, -0.10871419901996529, 0.32948002814768557, 1.893471207802236, -0.6038075164446377, -0.4972680072064237, 0.9202231318568495, -1.7486163569985333, -1.0634939790480196, 1.093145118925965, -0.26934039221603845, -1.5086370165663943, 0.6636566503645722, 0.7157209524247519, -0.6243877015377969, -0.5059552291582246, -0.7739469986246889, -2.1349911911866766, -0.25923596896449597, -1.9712037125999227, 0.8031440787433042, 0.3449089747727222, 0.38058285854506735, -0.03527585591394778, -0.1828955174615357, -0.610328720991387, -0.9587881894347824, -1.3704181907330422, 1.1375346154826922, -1.5749521494881837, -1.0005569299821497, 0.18512668188612003, 1.4854053354896135, -0.29732860140049433, -0.19970714011741147, -0.991160899184854, 1.4756272135684594, -1.7115334071592225, -0.898458062874843, -1.5610946130925123, -0.9286830310200139, -0.19842644896315165, -0.9204791619015038, -0.6041586783450421, 0.24071667121098997, 0.5584564950658051, -1.5332627540320458, 1.1218781536612692, 0.9594584845914446, -0.5942142448187434, 0.10415530266007776, -0.5766350541632279, 0.5192494163553527, 0.06244218570539949, -1.1933188672642228, 0.060690152194493426, 2.612294682335573, 0.7803813716291779, 0.4156149150334757, 0.40006905270607723, -0.32771779028653997, -0.4957358483139147, 0.1835476672776731, 0.3583276306624048, -0.29989176193044925, -0.6664023161607694, 0.751130058246117, -0.7606963369815896, -0.7327526762191927, -0.9224849928279474, 2.1839120628058213, 0.30273614265360654, -0.08745737167690724, -0.36397908596842843, 0.2769557847887727, -0.3156627063843292, 0.17483946233956618, 0.2664674342315583, 1.1964945485291898, 1.19908745522126, -0.3198776626873636, -0.27140912011373647, -0.1500245183796978, -0.27246147447559615, -0.3044534926326834, 0.15805994309355983, 0.2243379518886583, -0.6275688583199558, 0.13234981357047473, -1.1954196639970778, 0.08476386622364668, 1.2715548286564977, -0.13721224405957366, -0.43956974023229567, -0.6072059546251126, 1.026655646650325, 0.3801771434214982, 1.3025286867375006, 1.1503337500127753, 0.7059918750844002, 0.6857343484350327, -0.20822855820811004, 0.23210381702211094, 0.03689935697983464, 0.9632794410563842, -1.5551730754406725, -0.18214410529796088, -1.3024100745371312, -2.5805125799807107, 0.17891123917416168, -0.43852806227259333, -1.0060422137561975, -0.5940119257500507, -0.246809285419247, 0.02729601105972995, 0.3306782998544004, 0.8934466929754108, -0.6757920370139765, 0.2359520798922171, 0.2803223716621653, 1.2079212657345655, -1.8328197915772797, -1.2435848039154462, -0.6090266353044451, -1.1257098493558897, 0.024551752920543107, -0.8572633609896713, -0.5566596737217324, -0.23917728836645935, 0.05803580168417383, -0.5575899014389261, 2.1613193544257774, -0.3940862919758524, -0.7445895466109649, 0.16910513737488608, 0.5078556019419466, -0.41600190502096596, -0.35680568209320057, 0.31593014841916, 0.1698014703830767, 0.2246925856311576, -1.7438037547920635, -0.5015156194742784, 1.1392950965093613, -0.044539720561289665, 0.34228906386538943, 0.7777049362010278, 0.7396420720793412, 0.3057308854910855, -1.1682815732350578, -2.0050567286446244, -1.5761114755525232, 1.1855461432839784, 0.6416402474664687, -1.5179770075290295, 0.5688920064945276, -0.3114996173396159, -0.6918369660664232, -0.8943302733133295, 1.7812027313611944, -0.39962700094674664, -1.1908882530591915, -0.28062079114085026, 0.8678695479122961, -0.7721756513519049, 2.7327274527086334, 0.6502175537792519, 0.26891738491137773, 1.6379356778747305, 1.5587858689509893, 1.2401201673242117, 1.9092606497796523, 0.09415305070440455, -0.48486851107609685, 0.010449811244939534, -0.7114719508295929, -0.6976188588190334, -1.2772602792086418, 0.42718397866442576, 0.35792739773765, -0.3365843038145405, 2.1479410437830344, -0.6137501133801609, 2.201575276655771, 1.7408801407045442, 0.11633995333734572, -0.5247152660599899, -0.9104521404369853, -0.6232440982562745, 0.8443096913354197, -0.8395936019697643, -0.9216778921001288, -0.4607687600264068, 0.2197544528803312, 1.8811072034791507, -0.1217732955219695, -1.2476040529784476, 0.057447450089207236, -0.040657996882149265, -1.1745301874020257, -1.3158165767900678, 0.07739771123145797, -2.094272745053863, -0.17685050704579366, 0.8234188654402627, 0.535429444378731, 0.3352913351122899, -0.7337977879273141, -0.42291194019020856, -1.6350531035375249, -0.8572016543331544, 1.1049278891217527, -1.035322967123444, -0.7093561533257305, -0.8268215447412858, -0.8237821050353129, 0.46559726743821733, -0.3096887975632527, -0.8752877715958982, 0.6414208553967988, -0.24637285795115205, 1.1512980213808166, -1.543722359437113, -0.4802993532865015, 1.9889973463855686, -1.365398739200822, -2.005961899847719, -0.1353176789503577, -0.927455479657905, -1.1674332141089097, -1.759190734488002, 1.268383355443927, 1.051045045468261, -1.6344934852469342, 1.0495216381782493, 0.2152993467953351, 0.1346878345956874, -1.3652114848576564, 1.8287185610307959, -1.5534697835519802, -1.4030150797929406, 0.263037129571095, -0.4863996795848743, -0.20244240346523215, 1.1760900793857698, -0.31579139484810254, 0.4113202444097168, -2.079178090659206, -0.5468838323241619, -1.4072995101184078, 0.7695889801032779, -0.45779457366636345, 0.6291777396922515, -0.6923076389235133, 1.399044850891447, 0.4921218239907023, 0.6896842163275448, -0.12114898899030363, 0.12106738704846877, 0.4443410102876102, 0.4401896782833288, -1.4460766502049591, 0.41653600091036214, 1.0799257981297994, 0.530767681034089, 0.46246042802799636, 0.6737486356130626, -0.9247736591039333, 0.26392032620442984, 0.7248495916446774, -0.8913054946911754, 0.7623966451543029, -0.37348661786599924, 0.10433790638842312, 0.018375995432502214, -0.036651923928243846, -1.5238055588648924, -0.1468954816693605, 1.6979951753441918, -0.1354824095462169, -0.14812783430293947, 1.1228239220233158, 0.5404231287492519, 0.9391886699000075, -0.2143939578976935, -1.7435776675626347, -0.9489416231044923, 0.6566168345094846, -0.009772644001471674, -0.21151387506968228, -2.68276821394233, 0.10846052803974508, -0.6992550141770025, -2.488408473239557, 0.5957188392393966, -0.6173342256065912, 0.598262799906792, 0.3765483686955292, -0.21265893533701397, -0.32531189318309905, -0.6785624122558915, 0.25847166565687746, 1.8142659859361658, -1.071618180376639, -0.27097067174378664, 0.7268879762594683, -0.3377805483046712, 1.656126045515616, 0.3176319380504245, -0.562299569017117, 1.0927003570931084, 0.37365216280232194, 0.10836905476301233, 0.5443269149757243, 0.3132461884346516, 0.6045009291122441, -0.08922774434163744, 0.462792616885062, 0.21943464576770264, 1.1992798801158193, 2.058881160754391, -0.9391934423987254, 2.208107465757041, 0.747384506342299, 0.14814868558394664, 1.3245145359617094, 1.9707901876845044, -0.8866158699772646, 0.9609304064029319, -1.6320715924011222, -1.4399353803792627, -1.4195119848415956, 1.0505831286695613, -0.05714368893253442, 0.9008978173490384, -0.6716634985192725, 0.21665354682346652, 0.6205259590143682, -0.40850911049119304, -1.2910736096703161, -0.03430843121282759, -0.8399040263011496, -0.6548624606511182, -0.32548905947291285, 0.7714835507139548, 0.7316502482614721, -1.7217822308271775, -0.6610165329644988, -0.8848785314711929, 1.8946726405699552, 0.49733056478296644, 0.2184896179473298, 0.7679605851404908, 0.1701892557229098, 0.6332806304108584, -0.1455480271458792, 1.7718556988698808, 1.203497519190105, 1.1201372832422538, -0.04654571682614285, -0.9770487777884148, -0.5337037176188388, -0.7328176479468717, 0.042207879556390895, -1.2711550942763876, 0.23324889707698454, -0.04269268771554664, -0.20649425165244137, -1.9640597499937704, -0.287913584897711, 0.20968545392982113, -0.2476589914370472, 1.079850325988908, 0.018017551905571763, -0.23392869365676736, -0.4806773947932102, 0.9159417822494235, -0.7987565656405778, 0.16006705494601747, 0.9483792048940664, 0.7325191584263987, 0.08904232458849257, -0.6035740511332922, 0.10314108978450207, -0.45252753582355876, 0.8302153959599493, 0.16003569536641815, 0.4925312694083857, 0.4248520101890813, -0.08326820663358103, 0.6163318562998263, 0.2668751600363389, 1.7280360577230065, 0.03212471372273216, -0.7448008396402035, 0.6296859845271925, 0.23649773846807298, -1.2910698683775415, 1.359724024566946, 0.2954469080257482, 1.5394446181127346, -0.356659185334136, -0.12335543594532047, -1.0656540291075653, 0.14118452994989553, 0.14857404735858337, -0.11601539807877295, 0.6181435547800452, 0.2881578133560178, 1.3729915934992618, -1.5302374858867656, -0.6139877028477435, 0.8280151082575539, 0.5143807761509949, 1.7389477679409127, 2.438133577054348, -0.04375953018616526, -0.25482286280411015, -0.5590620417460689, -0.23784694600394898, 0.6470390242586312, 1.1614112757804542, 0.19460312229832655, 1.2343068476101091, -1.1430959368632914, -0.025764678440191095, -1.9241999817286832, 0.9836920940328654, -0.20114301139275723, -0.7436124873257227, 0.35690515935688943, 1.7224095079949526, 1.800288130881032, 0.06398593275344731, -0.2915802621493263, -0.43986771248528567, -1.0775303965871246, -1.2906534589058738, -0.03430116457991807, -1.2039966869631877, 0.7352232275718438, -0.8419406807293935, -0.35254299771740427, -0.2039185677615432, 1.123205866733527, 1.1660685933608774, -0.1700273237881, 1.3799508790032993, 0.06267407097928183, 0.048969833515025665, -0.7766696153351089, -0.48875488965034547, 0.9152229656714375, 0.3970210396166918, 0.49460294336311467, 1.3531705330518924, 0.36124429270588243, -0.03314117937695939, -1.1713482045475738, 2.3757725900265987, 1.22149243248468, -0.4579053243473259, -0.9008974793907188, -0.2557173846837027, -0.018453700048238424, 0.9485087901659004, 0.10510096494880596, 1.52003134231206, -0.08436510088249773, 1.2178623621891187, 0.05566442569767473, 1.9200627818915197, -1.9103250088029318, -2.37489105498471, 0.8085507159199065, 0.33868110723790756, -0.17886567214729962, 1.8936262819802554, 0.11140712950107642, -1.6526127852356038, 1.1837975014011313, 0.7412457896070681, -0.22572178260185752, -0.30729194032284557, 0.38562897030875487, -0.2548813119829641, 0.9914404188060301, 0.2082145175412975, -0.4974288164856883, -1.3708890200666501, -0.1710973836387636, -0.2224005570583205, -1.8388353188837305, 0.11175454209528532, 0.6017603183048476, 1.1534109498024379, -1.1312581595764228, -2.0664026472646566, 0.1518460530375588, -1.113102812457906, 0.8743198050904984, -2.2971614939393192, 0.9994925763557676, 0.34450358129706893, -0.04763646708877155, 0.7579682885694798, -1.409727876815569, -0.587756621596313, -1.1820639655293357, -0.11211089889150132, -1.1209437876255757, 0.7288028194562045, 0.684517089741399, 0.8271584992186138, -1.0208587460954162, 1.0431549634075978, 1.2993206265623973, -0.3576604786643427, 0.2189801167981365, 2.0152394784434144, 0.7194583360729283, 0.7798146427989551, -1.153455883973237, 1.3338721648025593, -0.3746736376510556, -0.18952516344567025, 0.7154706040930122, 1.0141220559614146, 1.4879103365903252, -0.4239763006280277, -1.1492554734045732, -1.7819331457598884, -3.4316088130840847, -0.9484308978780471, 1.2137726915969638, 0.09058946358548478, -1.795197518588955, 0.8893333193223922, -0.7047083456815677, -2.0344570248638707, 2.4756338042750117, 0.6022280191186953, 0.1781759930744852, 0.42936439596579784, 0.08168427394969514, 0.1466821329540015, 1.1602966921179694, 2.1231932528849864, 0.08114905196202768, 1.018816330969418, 0.2409424603405567, 0.2802250793288328, -0.9474571243950265, -0.7338552745569841, -0.07262617170256053, 1.382323414548108, 0.7568874326315825, 1.219457711370015, 0.6156696573572822, 0.706505353256732, -0.24354776302643516, 0.1842951703951653, -0.8378604599955768, -1.9602974501369872, 1.2410383255223083, 0.160973357836698, -0.7726840265298615, 0.6150964160208487, -1.5533397865260659, 1.9413617243848995, 0.6144590991871184, 2.1332854810101733, 1.4807923441525852, -0.17286362964907698, 0.9121460625020792, -0.7593807103862776, 0.2003533486825123, 0.8505273853361702, 1.2342665550824807, 1.138177800843109, 0.36509497173677363, 0.9954041972919044, 0.28276556424244176, 0.6571631656200277, 0.02567164244147747, 0.8532197248154201, -0.08861123292807947, 0.48727443723174374, -0.4934175088094669, 0.2219681355557304, 1.831091407400134, 0.1616838657735246, -0.6914800649263403, 1.40497945672053, -0.16881242892336346, -0.32528526425984167, -1.2431697346777306, 0.013492433518392527, -0.35603425364808083, -0.34108450295866, 1.3285697493012094, 1.1051552204794892, 1.0435368855091558, 0.8052501976748694, -0.4262379070096749, 0.8069697508125954, 1.861718354953671, -1.2708396518657021, -0.09537930698144259, -0.6167890141140497, -0.5077638576151476, 0.29700877347239857, -2.070414291413381, 0.9559099633048742, 0.8701444055761152, -1.097039846627498, 0.014984723605496913, -1.126817126568604, 1.8018877218328881, 0.9326759171586106, -1.3014783124446037, 1.3952026769616577, 0.8173317736907376, -0.6710894876830334, 0.9674314293779335, 0.2914434265232391, -1.2448591282893544, -0.33558686217788974, 0.6233522153844056, 1.4992359734289535, 0.2305067667767252, 1.4923909669368665, -1.4634487997459156, -0.6570735735783789, -0.21766795062858804, 1.2682201926006047, 1.9359504560449319, 0.19497317767316785, -0.31196635565640923, 0.20899416536237161, -1.7910773539349678, -0.7760121117557611, -0.5380046590844579, -1.7026621328147227, 0.14178786645468883, -0.8673497058172389, -0.10378234254980978, 2.371020969525049, -1.3921623432988801, -0.42760353117262523, -1.6869734602449968, -0.8011683838257054, -0.8942799701341869, 0.41678221272657584, 1.5052511641775304, 0.1329605067628388, 0.08002480316376054, -0.16365503768257997, -0.7587519448270158, -1.550910377776847, 0.28397667225125595, 0.10775717737718772, 0.29467928573163626, -0.3078862570172487, 1.9592618036668723, 0.16250009042308866, 0.5869765131279889, 0.04671190166238618, 1.7420871660385473, 0.7799772212474141, -0.05584131208110706, -0.4260973821244899, -1.7508898672414959, -0.9291334493954109, -1.0939396247881765, 0.37414776085517265, 1.8428875397908502, 1.4051727407809371, 0.24674972788686192, 0.02534990110863479, -1.5163543988637915, 0.48400739046585695, -0.14480872467299688, -0.6909938790377779, 0.07363935265436451, 0.5151189972513142, -0.23082392377367206, 1.891643159272632, -0.34405642830253785, 1.0181750695838607, 0.5845347970449472, -0.2231159594719812, -0.672389714641234, -1.0766546453527603, -0.17121164977051814, -0.25997027936749095, -1.0127835359350805, 1.1347749405921181, -0.740993232732864, 1.836025464646186, 1.744227913737907, 0.9560364930934776, 0.13677735687561715, 0.14250005352883413, 3.3367631284996055, 1.1420254841709687, -0.3662350210242155, -0.7367251412517924, 0.4789072330571881, 1.9120003996949413, 0.561313129979112, -1.13556305965474, 0.2799478197863234, 1.0001700766500683, 0.8063498048767185, -1.294159297664394, 0.4963681454773976, 1.0668397444340558, -0.4478896976855996, -0.0541058782137818, 0.16000008766196158, -0.7223898724391387, 0.0871023182462781, -0.11259936584421831, -0.29508700274055266, -1.007377519458023, -1.3268305494796435, -0.5589201266370242, 1.4766404520727614, 1.2775471888601473, -0.7539263759030249, -0.16171905717280863, -0.5580126319061005, -1.215395786041263, -0.39580944482539226, -0.09723508174100706, -0.18162210541769339, 0.03278342531358989, 0.2027993902193989, 0.587370447867936, 0.3148017597336701, 0.7250914026792384, -0.8739568470978476, 0.10783133317257663, -0.574690638824415, 0.7644983224230708, -0.369425960607181, -0.05652436591391933, -1.0642360815308276, -1.4765752210987146, 0.6398545377464544, -0.4427688910986139, 0.6021672757134799, 2.1116120321057603, -2.43002678427122, -0.6827109356923045, 1.3320218735122629, -0.24182835347937687, -0.3832224302622302, -0.08379602433862252, -1.0700866950311987, 0.7383068040073701, -0.16218296809211175, -0.6431018400689046, -1.1160114162779777, 0.42853666553961334, -0.17939483650701984, -1.5953820862804309, -0.2611562275777078, -0.5260970790642497, -0.6702808795869474, 0.4772721907168055, 0.4472962784571895, 0.9015297029030362, 0.8110108691503645, -0.319987507816531, 0.9662114000905059, -0.16085879448947113, 1.9398112795989688, -0.670406708298581, -2.1397812692830342, -0.5388504901795235, 0.21418140716763948, 2.4208855261155096, 0.7898507290767015, -0.5406247751067752, 0.3380669508609784, 0.8895626440033293, -0.711884320072859, 0.33839800461316977, -0.6383896002891669, 0.1287394832155939, -0.6493724250053766, 0.7961724330841287, 0.48453814820474317, -1.6909032843558152, 1.4225753233985468, -0.7779940496662555, 1.2661727007275227, 0.5961437094365455, -0.0409134509117024, 1.3137772342003042, 0.9088261190024538, 0.32825987118206046, -0.6282296670229757, -0.9973147067739202, 0.8288737905146893, 0.19984013877197201, -1.4153440907309829, 0.7092720553785892, 0.646055651363515, 0.26487135034292236, -0.2254151980632087, -0.7195138568321097, -0.33912590344470317, 0.6713049617387488, 0.1453300983010078, -1.539794245763186, -0.0662393138626803, -0.5359793363172407, -0.6230899424538576, -0.08564217305492329, 0.11579952585066554, -1.8920687628442654, -0.1529290692603082, -1.3968414152408637, -0.17985936421299886, -0.06198288374749115, -0.9505282993869779, -0.722154218349773, -0.7408195418030031, -1.1081944303301414, 0.3783556149998429, -0.0674729329159036, 1.0820172819708855, 0.002707184876524146, -0.5808309413884292, 2.295322715596838, 0.2600553406303243, 0.8764177019840952, 0.21090410572904877, 0.42848971284591264, 0.4560840375670783, 0.21875082935046383, 1.6390218620644794, 1.7877843782178608, -0.007437716780603685, -1.250586162918871, -0.08931962658696532, -1.6932439433365047, 0.2084490476918034, -0.08391790813194601, -0.5636203506044847, -0.42426824223426346, -1.846960487203738, 2.0033946704597727, -0.5614646822239314, -0.05276055817658737, 2.0446524238071135, -1.758406865521106, -0.4271033501848511, -1.4776317470760987, 0.5608629827258876, -0.7626844201273526, 0.6015309353717789, 0.8332321178098374, -1.3296444291993323, 0.7277982517854019, -1.5480005806742492, 0.4427182218327848, -1.6202422568144064, 0.10127213279417882, 1.8444923772826434, -0.021856457451543257, 0.35265586540514576, 0.8194943622359944, -1.761505333238153, -0.7588599064411882, -0.4004989564987073, 1.978912786198511, 0.44055284438664594, -1.5925386319979593, -0.2841523225787895, 0.44223934406107, 1.0098183297662113, -0.13874960274300102, -1.2961025590464967, -0.426923939529348, 0.27297937433881636, 1.4745528076042955, -0.1378036330774962, -0.34740644820200317, 0.2831726551416704, -0.42569857656826027, 1.3705870744895599, -1.1577000112246176, 1.6648521662468472, -0.31205857063860126, 0.4177956787800165, -0.07124731245536356, -0.8480696236974613, -2.373613207906072, -0.9111849109700942, 0.49444212076525573, 0.24216410869984656, 1.523792728205457, -0.525209882085126, -0.7043975637457677, -1.573903847242733, -0.5014451820130316, 0.3142593527385111, -0.17576062553454233, 0.5196208906788292, 0.3746580096233209, -0.9141648340810206, -0.6745309773512741, -1.0362120327547182, 0.36833342833617855, 0.5126084352749168, -0.18206050715539013, 0.5045432376556566, 0.26419567006695643, -0.8404609736521259, 1.2467347880021142, 0.3125887735671229, -2.197018697794451, -1.1669853431107058, -0.8155281643625105, 0.41432906360013805, -0.6828387810249205, -1.0274820016588542, 0.9537279751536444, -0.7737504779933699, -1.017001717649606, -1.6364165929017966, -0.19533870466149758, -1.3932532214526268, 2.0869658886517426, -2.5984215749293518, 0.10390425342695261, -0.05305695326441946, -0.39587900848436325, -0.023034977143081618, -1.2002147972899861, 0.38551534871727877, 0.6615805003104032, 2.000962451622143, 1.4686018736045483, -1.5797258032817874, -1.1254238467015376, 0.9136545432494405, -0.9954674094947193, 0.056777957224286114, 0.8858756622175402, -1.1681217421502468, -1.1742394223419197, 0.5342127574137411, -0.622322617692633, 0.25105856679701327, 1.0439175283842368, 1.0482653741834516, 0.33470084996117494, 1.5113302367748511, -0.5970470666359485, 0.7366415798463518, 1.4963901522348988, -1.1076139901293527, -0.8238897908397625, 1.1125949447378896, 0.37086380238075584, 1.8097930697606905, 0.2870652307197674, 0.27539509397705997, 0.7178121621213899, 1.1565765394825591, 2.876149476357637, 1.3093408589444009, 1.3963328578727747, 0.46084805550970814, 0.558792044266389, 0.26554230212840013, 0.3111168258602663, 1.2148072659326028, -1.026330412846298, -0.42195121053185586, 1.107818545377242, 0.21735750396243883, 0.5457837784404881, -0.6240409642665705, -1.0146577544651858, -0.5888161892922257, 0.44066369224401, -1.236696385184527, -0.21658100183266538, -0.8929537334892169, 0.341777886693491, -1.3309173492368505, 0.6879898629185407, -0.5323297468326892, -0.4859077099377556, 0.2132475226760761, -1.3940132557343485, -1.0338163659202024, -0.2274140647459595, -0.31496149275769764, -0.5749465247644655, 0.5301901823161288, -0.7868520785736086, 1.049154762481453, 0.3047059008934611, -3.1250833502434068, -0.7955907866278176, 0.9468002951144635, 0.09038518362182624, 0.7379304308259651, 0.4967880583710224, 0.4327405706373482, -0.5356627542583084, -0.5129002002344395, 0.7620977135411405, 0.40068291577371135, 0.08573715136506217, 0.1078305408531399, -0.33984056096290327, 0.305631589342618, 0.5452633599480291, 0.030791766661246552, -0.27459842748516383, 0.03995736925475094, -0.49498054073891457, -0.8117726123777483, 1.045923469449605, -0.13848317984085676, -0.8409934110627294, 0.24486628909542527, 0.5981892213926473, 0.40490087999223057, 1.3907718951928105, 0.14929878766503124, 1.5064737234998993, 0.24411628990476547, -0.3101813082591048, 0.31856295706418886, -1.1115703961227246, 0.889515004300389, 0.587335083432022, -0.6324828097398607, 0.09226008431067499, 0.36756036303184286, -0.22886890189641157, -0.8509805726907648, -0.23557088148564395, 0.20963951411297332, -1.1997792556221465, 0.5461101228503775, -1.0089794119277233, 1.6732767397654267, -0.0508719857980088, -1.3818965297953092, -0.901568047158173, -1.1833930761405302, 0.5287443929892667, 0.362848681406437, -0.9885089647044137, 0.1434622530922043, -1.4692561736876208, -0.9233220976627514, 0.40007451930086063, -1.0586971030990275, 0.53049529760098, 0.24102173272309615, 0.37912121029555734, -0.8701358846571424, 0.3263107948005859, -0.5834424235893301, 0.8702357259700839, -1.011729322358724, 0.48623398090814207, -1.0165662980816546, -0.1544200784384942, 1.2218603244090978, 1.840262117459854, -0.3728003366573612, -1.0403794396454553, 1.461747091834053, -0.29386248769758516, 0.1422523576736748, -0.11770607211468252, 0.07153801209748789, 0.27175124831369546, -1.3264438880806342, -1.637568743707908, -0.5749947366670298, 0.6576606618060025, 0.5145294896008263, -2.584902953043731, -0.9845874123492828, -1.118658658485365, -0.7065054817189647, -0.13167340595975288, 0.4742285958395263, -1.5070565721731464, 2.433950500281513, -0.10894872469657736, 0.7850904560818612, 0.23601175390225135, 0.8030263978267199, -0.5741567991577613, 0.7096090777751285, 0.0791235233482004, 0.21866649471404503, -1.4490407505432852, 1.235765943206992, -1.4890355775974156, 0.3993803675333153, 0.22546030793711025, -0.27846897134366483, -1.3451665500044057, -0.6415633622095023, 1.8914464836688047, 1.1159441578520386, 0.8294932121394402, -1.141603905310069, -1.2581405540435384, 0.6930815393720927, -0.07308144867091845, -0.16854581705213598, 2.2238156571248098, 1.2978261367695085, -0.5604262945525389, -0.5187266090725038, 1.5152968572399086, 0.11029000902890408, -0.4295794581180289, 1.2070004660265679, 0.3401076108501517, -0.025022261886100173, -0.9078347566656577, -0.43114957923072145, 1.4880151588379764, 0.8622389030170852, -0.8621724196943296, 0.6477156671240427, 0.15247647121864222, -0.9490185658691069, -0.9018229823062414, -0.9068691695930214, 0.06580431243702103, -0.9872105827829438, 0.3478946552971366, 0.15728739214556856, 3.7489654554248615, 0.6608545133924313, 0.4104001471781857, 1.258081750422195, 2.8307143099407037, 0.6286490813070565, -0.46121223643085174, 0.22755579762140593, 1.137866248033596, 1.6792136074387745, -0.2138900043775459, -0.5791861694283589, 0.8243197620002538, -1.3402548785446093, 1.160416889494331, -1.031181048686965, 1.6775501365792587, -0.8874342878002873, -2.394095566116509, 0.9564718220223439, -1.2580988192030502, 0.09575694812495764, 0.78877816451929, 0.0521181593898025, 1.3201377840358646, 0.10480444181336676, -1.538097294909828, -1.0035178080830613, 0.421478285285348, 2.167545254971012, -1.0433488455891948, -0.7115276150355697, 0.5147767126514972, -0.8645647304422978, 0.19464196166904962, 0.6916425873457646, -1.8895177394431824, 0.6093461780133411, 0.7208252245483496, 0.7237517758679953, 1.6346112448333017, 0.964901988313022, -0.36356411896230906, 0.861835632358502, -0.23531469671763788, 1.4348939439544344, -0.5263227793360873, -0.6231283095706368, 0.37207138641072457, -1.2365078818986994, 0.10767734484025457, 1.4436511194129291, -0.7548252329782683, -0.09991969895607732, 1.4854222431970305, 0.3950272270450541, -0.3033778131696656, -0.9024111915527065, -1.3103805255953154, 0.5902537603480245, 0.3630628373516121, -0.41185165775401683, 1.1292074393111131, -1.1009960081421453, 1.3962280421323943, -0.3437629257315695, -1.4227290490085451, 0.018175678432390804, 1.0012219908474171, -0.8953882126523972, -0.2961324358235872, 0.08972348504533875, 0.36447656681354307, -0.5056131419582149, 0.3846425308812284, 0.11789695557794778, 0.41587429940704, 0.5233909245417049, 1.1967278931930427, -0.32298786827749487, 2.1848230304385514, 1.1115362189954716, 0.14875369007338202, 1.2245417660143134, -0.42698724809271016, -0.4439341319454598, -0.3783418360811385, 0.8515922370004094, -0.3408537690742377, 0.9563178733077391, 0.6122621286744594, 0.8192545556299647, 0.9894285560118711, 0.600804840414662, 1.0308156665733337, 0.17729750378086503, -0.20916776683017058, -1.1709337865351004, 0.7503223302296284, -0.9313048703815996, 0.5710123341813247, -1.4629525535210808, -2.1633395187646576, -0.5447122525504478, -0.8862599232123758, -0.5502802112354097, 0.37844416828456856, 0.5300655821157798, 0.43340844714543975, -0.5490424473559313, -0.6547961388131652, -0.6064415118374767, 0.035373988664940646, 0.053968083372958484, -0.4778901850494402, -0.8793435335622368, -0.06889919833037364, -0.5919407834555662, -1.30193801780427, 0.484466714473978, 1.621285396948247, 0.6199241958400306, 1.359296423950793, -0.26229229933736936, -0.05734120546787228, -0.22273944919540062, -1.4477348698404278, -0.06817130257522946, -0.6907446872282889, -0.7162348716135576, -0.5483848260011478, -0.8623907230260793, 0.4308176479296442, -0.6918584674207041, 0.7370066593460413, -0.908408611612577, 0.09314027526097307, 0.7459198272184516, 1.9583832220926325, -0.9393006257738223, 0.6389066852630385, 0.8034436260786018, -0.21555690821495618, -0.28652083584987176, 0.12596295018610065, -0.97511832636966, 0.7902721514705332, 1.6212574211148836, 1.3321984392629476, 0.9980103708587242, 0.8916475538554876, -0.7718080989690932, -0.6732905115824963, 1.1409846849085508, 0.627874764986871, -2.0076565811319833, 0.1149244481807112, -0.7477737820238974, 0.16711859986580407, 0.33105073366076565, 0.45809973771312423, 0.740035967843287, 0.7572268399048063, -1.6101830149979939, 0.5275858464661274, -0.1859108722383499, -2.8170147162320625, 0.5499826406865354, -0.4573817533314663, 0.7906060341291105, 0.10549898693882954, 0.07626045983525266, 0.07614647462267829, 1.639864702109051, 1.95158416984863, 0.7042357639869931, 0.2579764789494421, 0.8947742832666867, 0.25702904091224854, 0.8269807847359003, -1.2201769593486889, 0.20155866261389999, 1.9165081798205097, 0.6466958165258755, 0.759748657942427, 0.8778096606282947, -0.0057059463259738485, -1.2720678285201463, 0.3143628669425358, -0.13934021200193497, 0.5550133627292902, 1.7221534981535978, -0.10912350280560693, -0.7595172591788474, -1.2741806121910821, -1.6978513147521832, -0.215815189561462, -0.5573116118671503, 2.0305510849558, 1.3621281371233123, -0.1356226203738325, 0.25711259858403035, -1.2687602273447567, 2.090038283807123, 0.5105925803339681, 0.14727338150406574, -0.5891779271757901, -0.5208568226482487, 0.6321570361367632, -0.7373994203444763, 0.5706656924760886, -1.132614088004423, 1.0456553465300518, -1.017630268437289, 0.7400897950000868, -1.3818459525807447, 0.9592751731986001, -0.45768962745360003, 1.522697825118471, -0.48543387590950543, -0.9967631025454716, 0.20218288258469821, -1.7993122112890885, -0.9595534984718279, 0.2582991864049198, -0.40101370406734826, -0.3512538941749463, 0.17570075735726476, 0.319155507703664, 1.508885596559761, -1.7631100743734207, 0.009974906962765833, -0.13310774884312798, -1.9447207665326167, 0.8224192056091035, -0.7818088898957686, 0.6660083014879787, 1.0164343575212036, -0.016840841494975386, 1.2242279472982243, -0.8550800866436877, -1.8108518944039707, -0.416398444171772, -1.2291448580064184, 0.6711266562744943, -0.21784616964727122, -1.7266053075627044, 0.2588628876452085, -0.2601714860128395, 1.9143101291642324, -1.6154245147099107, 0.9343322313405226, -0.5514772564214121, 0.8248433531026628, 1.8083243446315922, -0.46584748572096374, 1.6512371009714666, 0.45960170811017825, -0.5072027873418633, 0.512368361985707, -0.5629845597551475, -0.45800031659231794, -0.8518490344458644, 0.4659260875277726, 0.6472713475128984, 0.45179016292988133, 0.1375669998706727, 0.34050805504692383, -0.12915787531043546, 1.7299573681544982, -1.2919688477383628, 0.7337602361265418, 0.798561510203893, -0.32724043777193856, -0.5576552330805861, -0.8441094646333437, -1.984004961922884, -1.2346947970168667, 1.307808888237201, 0.47540562314943474, -0.6965581723932633, 0.3829295371301325, 0.3574354892199931, -0.2512809691379151, -0.38122448627607636, 0.9210690440245942, -1.2746170485747257, -1.5303704408740237, 0.5790837419067335, 0.385950081390766, -0.5243612361068436, -0.5022352738220014, -1.4612769183384102, 1.227690357367707, -0.29716563875824714, 0.9486436150173153, -1.8460160532654388, -0.14260084777581464, -0.3465610527679708, -1.7133849680095787, -1.195729813796951, -0.5751068166608286, 0.9579051149542641, -2.2494282126821923, -1.2011925452705305, 0.1287436926462026, -2.871142051424806, -0.09807540015045355, 0.6166281058938206, 0.7331027142391593, 3.082877145340605, -0.6375490941560631, 0.10031823517338866, 1.222911392547734, 0.31668816406306793, -0.40310099149186246, -1.9375161819391118, 0.1937194163989939, -0.49864099787649674, -0.22389330005149405, -0.055640629202519144, -0.0421218406337089, -0.2841629307194101, 2.2540898122283903, 0.6157410321253425, 0.3259522342985258, -0.37512185173379897, 0.4846407589694139, -1.431191146816658, 0.2438876639425583, 0.6828411184023447, 0.3360364081546629, 0.03824526677370475, -0.13531292335157208, -0.09099001510407594, 1.2668591358905947, 0.6105355084828837, -2.2767624204151105, -0.531047687433332, 1.3494514534662512, -1.155895343612518, -0.49650305393382715, -0.2149622082175851, 2.7604489677634723, -1.1458402606044527, 0.24008535429689606, -0.7994198539221895, -0.5065595624093153, -0.1360676334869634, 0.4390859831403425, -0.30876203227763904, 1.2311300458974082, -0.9453172269696726, 0.9782769264490924, 0.5229937780714526, 0.755968379991157, 0.4360625278104634, 0.32479709725774364, 0.4859097565284471, -1.2235811536668413, 0.5675709066994774, -0.12482652265957135, 1.275405527443387, -0.58435819108297, 0.42781924051577935, -1.3676848366999164, 0.0771589043033107, -0.3235749141882639, 0.9964573328046648, -1.010921692711844, 0.2899523499961523, 1.2813216625509694, -2.31103477880701, 1.0484013898872486, -0.2300656617813996, 0.3508404411133017, -0.994308713780428, 0.22299596958520085, -0.09649816283392658, 1.274529262525028, -0.02644152240088081, -0.9953080426720637, 0.9293127181184572, 0.8359660201379, 1.54232032652486, -0.8869254701212795, -1.1939191240053302, 0.34112597462373806, -0.799864498268051, -0.6648983406714452, -0.6093643414724111, 0.642033569050512, 1.0290218436803473, 0.02497562306950569, -1.1223624490403703, -1.5302673825342044, 1.467225461072981, -0.8161236658929115, -0.012371855551994075, -1.0853695136448889, -0.43566431792343047, 1.4564479128321417, 0.5589695919648975, 0.0701596093020377, 0.748693878627586, 0.9335143065118249, -0.11148149444514167, 0.7504396997665641, -1.6675986517864958, 0.507907670684758, 0.5542659322789552, 1.7892816090591905, -0.02896184987431907, -0.4921744386178422, -1.8266619512855808, 0.6801228643219767, 0.22736699257501297, 2.4310261490968785, -0.6727582038985322, 1.7932455769416416, 0.2706328097905691, -0.12557582946939297, 1.336186247973287, -1.3633261706196038, -0.9315263135940615, -0.5858169886815717, -0.9010854126563514, 0.432594915310819, -1.3117625164751665, 0.003810794326648159, -1.4059088862455826, 0.5041538357964398, 0.17555788155803048, 1.1403049025509215, 0.7809311018584464, -0.16862185756793824, 0.8809959672938924, -1.7141194702039142, -0.2968721520520046, 1.5075597389936406, 0.3655012857014257, 0.6398229241218432, 1.6658114621211286, 0.6021231003080171, 0.14263698499059185, 0.059544031869303495, 1.447469523556698, -0.6480993543277206, 0.26302328449524953, -0.3896325776768237, -0.6436194121795867, -0.5155571880783241, 0.4881955351066762, -0.6411263794152653, 0.884237756510099, -1.011490396589626, 0.6923242061801487, 0.4782631417501516, 0.2027976781426502, 1.9027604521233052, 0.6375646291436466, -0.8460479601667675, 2.1827094833724856, 0.018134826654935248, -0.007398441309949454, -0.011486353361728999, 1.2722887822319324, -0.12149526826607761, 0.2974078268408832, -0.8500339538049675, 0.1535065162241168, 0.5594522476757465, 0.7824473204547294, -0.5584551840895947, 0.29339006755929276, -1.567787533070783, 1.2184424734223045, -0.6196520152770654, 0.7061705549685517, 0.7491941104577334, -1.1096427147221377, -0.8842581906820064, -0.8544392975808315, -0.1297382102859249, 0.4680930319438069, -0.6086344676395671, 0.8285542905084318, -1.7679497282590897, -0.2716008866054758, -0.727578725452418, -0.7045313532040675, -0.046836987303407705, -0.3264413183606589, -0.5826546716739949, 1.1535976695693317, -1.9114164885431393, -0.7130015361931936, -0.13128662276526373, 1.48523457196371, -2.2251677920713138, -1.2903308961049305, -1.6942684737541587, -0.4383819316135243, -0.06492153530295475, -0.44262303105956896, 0.6343256520661359, -0.6177724195517887, 0.5649307318885104, -1.342745265614423, 1.7599328845636515, 0.803520038649205, 0.3165986508880775, 0.6066320502440807, 0.251509756476443, 1.0280873718953405, 0.5754565165700484, -0.572317959139156, 0.2698473332313646, 1.0346310253210753, 2.389946034511044, -1.402563360348828, -1.1963161892430076, -1.9174022194969802, -0.8484770485809779, -0.9872166779125137, -1.7213031242819847, -1.2351777531528352, -0.6090488556016537, -1.393178454881695, -0.4444815588471303, -1.3277540579961375, -3.407853845213779, 0.8346035474639141, -1.7349424882106033, 1.8016451245831462, 2.197174083502079, 0.39274507560296845, 1.5795031604412038, -0.718635186932319, 1.7853906081551922, 0.25202894523242364, -0.05857564450523478, -0.6412975956031335, -0.10372860884819497, 0.23639196895089207, 1.2657655855670253, 0.32405355157152677, 0.514241772806148, -0.4424053530977172, -0.8831824190379213, -0.07540828424922774, -0.0073591350615092475, -0.9634847228910818, -1.5345233330616872, 0.12331778927789656, 0.005578761830641074, 1.8158140848381104, 1.1147934265757622, 0.7591744630010359, 0.9970012280486609, -0.06569808834859012, 1.6544808790097962, 0.5328155874229339, 0.5994221078562187, -0.30122979248227033, -0.517365472364846, 0.18658499477951562, -1.2825412813357364, -1.6952652845011946, -0.20122016581537655, -0.12812617711535695, 1.0963853617342403, -1.050067493600323, -0.10290919354351735, 1.3360106907636744, -0.6033235536066189, 0.39857379368968154, -1.0491873961254734, -1.3642494365270426, -0.02101939045383096, 1.3954808400474639, -0.037434344846273, 1.0268556689062807, 0.26418517369999533, -2.2295539786847556, 2.0081037046716035, 0.715665136391149, 0.5308793849005425, -0.40744557414101107, -1.3481242133262985, 2.171148477379689, -1.3811551828392108, -0.6439246796244227, 0.2877811434348796, 0.22987322312324313, -0.5859946382902135, 0.29478260196613654, 1.0072059473552026, 0.4915575238875746, -0.3406726242670029, 0.21758857598808398, 2.4238043333126176, 1.0437562367982014, 1.5440848045143523, 1.6903826665269983, 1.1732966176852033, -0.21220489582287566, 2.105403465854213, 0.05159319010681902, -0.8912600113286889, 0.16539612616480015, -1.0871498295525306, 0.782249743384398, -0.10439055909005837, -0.14153668942906697, -0.5415512994780122, -2.0564268996906323, 0.5332233884907128, 1.7055593303843308, -1.4919805999459674, -0.11652176259877467, 1.698160668007771, 0.12672878909671723, 0.6262019913206427, -1.6880699205595637, 0.5346222446379918, -0.8931025566524662, 0.48337104612384907, -0.3723166331055402, 1.528679103230916, -1.1317020189313278, -0.19525315582464714, -0.2727116910727958, -1.630756063680106, 1.6928579979112535, 0.6255537360318792, -0.32776869932229585, 0.2597995459850978, -0.1848834744265024, -0.12219537124239044, 0.7946483176534964, -2.3332537341484123, 0.6465782574750422, 1.315839648999513, 0.24255009975941086, 1.2576449726504748, 1.007135114826218, 0.12493971999091526, -2.3352317652911116, 0.5455145344390689, 0.9308260605424212, 0.5350679641612062, -0.24492318350099196, -1.3422821667159879, 0.9879625805211386, 1.5024247686176915, -0.4287318371385798, -0.5003398281267877, 1.5924193432738452, 0.567041501814333, 1.0717936009197424, 0.15414389865818495, 0.6080570508621513, 1.4549483377953665, 1.5218486281412282, 0.8503477384747448, -2.0011091789176305, -1.0262148525821668, 1.7111133335343196, 1.0349980174529636, -0.1807546539788085, 0.4993880202617013, 1.1386862061241467, -0.4280918407637749, 0.8441262656744174, 0.1661046046210116, -0.1390761318121034, -1.2624841875811765, 1.5085979702636476, 0.11713016702705764, -0.5023032444524319, -1.5134424973298084, -0.005883526477640817, -0.4367751073831395, 0.32869448528650685, -0.3231453247809737, 0.5241156733385874, 2.4055910035114376, -0.5776441103299815, 0.2786144076835818, 0.29603396592207026, 2.0136120838323444, 0.6837952813220692, -0.08069829127789761, 0.3317124052173181, 0.18625757620182504, -0.06735113026030219, -0.8839482760758509, 0.8945673930034516, -0.13344683994699807, -0.7734034048637933, -0.5516052255562064, 0.959147477903829, 0.33784773688284686, -0.26667462798885583, -0.21211220859033675, -0.5888604064046589, 0.40953453563709763, 0.36359567095727807, -1.0065040914271581, 0.8509318706202076, 0.059724494635101336, -0.5650556652487542, -0.012332224863302274, -0.06289628828191134, -0.6801407775409148, 0.18308766682255703, -0.6724078914859862, 0.8598336713876248, -1.4802761413040666, 1.3862915717919766, -0.4227831410801542, -1.8025064772389363, -0.49377165641604975, -0.6723294081874565, 0.24247227390522977, 0.8535373223551591, -0.8286178337002345, -0.4342390316899197, 0.9357568141926838, 0.8306963661092277, -0.4524992136015136, -1.4258933746650189, 0.017833587688461088, 0.8978635490598075, -0.9061432649723496, 0.1735626325051583, 1.4291428829146504, 0.4147546698018207, 0.822218871576725, -0.7700712862374025, 0.10337545342918286, 0.18020870410400155, 1.0047430984393115, 1.6889699284684083, -0.30822832172532433, 0.2779984509082999, 0.427155682025249, -0.4497961685292088, 1.2076716398788097, -2.0099634164447853, 0.8964992964080906, 1.1492382447171976, -0.38683120383579905, -1.5584682551707827, 0.8942433456633331, 0.27229391974577355, -1.4155099002706173, 1.9790288276727566, -0.0513753380180042, -0.4642064835502807, 0.7114978024181129, -0.4524080270209062, -1.7346918227327786, 1.950601867156164, -0.9612309618462727, -0.36908584042473475, 0.2756816192678092, -0.6746791607178335, 0.32211927600975815, 1.8317337849263995, -0.7168878477039692, -0.0032150490230544097, 0.24415729624334656, 0.17835348781460236, -0.5347597579969932, -0.6913617680039725, -0.34467094664466175, -1.8093036629335275, 0.5688222767089383, 0.2243618858089119, 0.8628101352241528, -1.1404718498587432, 1.0094535883748728, 0.25249534294986137, -0.1463573256804742, 0.14969958091069974, -2.227118591660491, -1.0667779469573138, 0.5062972199961152, -0.1676806268471744, -1.0538337870596028, -1.141760857485943, -0.1706816056274883, -0.8110854244803721, 0.2082783676703116, -0.6442747630190471, 0.07416791208503008, -0.3642233439355888, 0.22319821800747572, 0.9907015082645989, -0.32526045694825023, 2.145095039617595, 0.13759276420875055, 0.4634911898527439, -0.11062185006600603, -1.1511965628693863, 0.8015582487813212, -1.2367637765612207, -2.2002588402145116, 1.209194057966966, 1.3128502975127865, -0.12245744985740924, -0.05791284296639197, 0.6677418599553775, -0.2627636291765071, -1.0115637248624094, -0.034497191182480215, 0.6909662095113436, 0.43811895032635195, 0.9008003806449576, 0.23744530791021382, -1.451539755596139, 0.3341116402821326, -0.6716572467319637, 1.5969901050417319, 1.0414662082590562, -1.175735208576831, -2.334757757934298, 0.9439706683765736, -1.1036067149153743, 0.8544673805926194, 0.1264252637783151, -0.2846476623681698, 0.255319286280274, 0.6390160238393222, 0.1997143561699885, -1.1249390552438194, 0.5604047344180746, -0.22601177002929, -0.3936786410955999, -0.4974897009956355, -1.114479325180312, -0.3089949092787795, -1.0663194711185306, 0.26095096997098344, -0.5682937324126951, 0.06901698770620084, 1.6587014137870255, -0.7234907447121636, 2.6486675499974193, -0.720303610730601, 0.17602409263683083, -0.573406479609952, 0.5002200651946309, -0.6920067713891678, -0.696939075797284, 0.39219223041182644, 1.616321256561899, 1.0146079962351777, -0.4680277602356852, -2.3873665548346086, 1.5525183146260342, -1.2244331543901423, -0.24877264402010482, -0.6908596810525225, 1.0413872346061337, 0.24063002408553935, -0.4110710549977613, -1.2383653979906497, -1.3155303339886653, 0.2345056330035036, 2.605455269495608, -0.45094907629270703, 1.8067786230825513, -0.04787862985489805, -0.029290843778464668, 1.947243841912349, -1.2681512994838962, -0.23160747129569925, -0.8901540471998829, -0.7354425150473003, 0.7951703514293885, 0.5130735466788621, 0.8284999167847128, 0.781944889043436, -0.7083439262720521, -0.4934896244104472, -1.8044411664186348, 1.0267034888784372, 1.2122332587101419, -0.4753504981210874, 1.2059202305184984, 0.20701456019196232, 0.18401072029258542, -0.3556051725397292, 1.1045636089636857, -0.7045402851258767, 1.1958746050846516, 0.16169878206998672, -1.2352312596320263, -2.1134265674281583, 0.6392960406043111, -0.3354735806782724, -0.022305706489811394, 1.6290451589335455, 0.3289759466246498, -0.5890922270997138, 0.09855503238656774, -1.1872588155413768, 1.4741081476794753, -1.7254124032001494, -0.525513478511584, -1.033349883254649, 1.6479177366921143, 1.161496554255045, -1.232559014557234, 0.08385214984639826, 0.055383960512634195, -0.35934375657687395, -0.09949428420876978, 2.116758679590172, -0.932285343224058, -0.826903853672106, -0.5884911957206526, 0.1653074339518763, -0.793727491041941, -0.6399035561098351, -1.1603829300053463, -1.5051806509152093, 0.13192840081837215, -0.6213777519894312, 0.34510411354927967, -0.1858994268131614, 0.8444057267267219, 0.04335226244379307, -0.9630424425670918, 1.52303308555132, -1.1003416374599115, -1.3745656095346517, -0.05699281688183677, 0.3908869730446339, 1.6031347856731544, -0.3267078119095225, 0.05045019249543852, -0.022090272899053673, -1.913762394802309, 2.6935323765810546, -0.015105052312616324, 0.4181911267578856, 0.12289257410538719, 0.5739489102244824, 2.041773982512361, -0.7294854834384255, 0.06437899393825776, -0.4149747079094166, 0.10562098105092242, 0.31857059910426, 1.4353311414218675, 1.576093303440569, 0.7407082969185423, -2.0629675165194654, 0.02296977063277764, -1.0713282216417195, -2.018806165342318, -0.24489704865165557, 0.08688264988557418, 0.4461135574814887, -0.9168235561191116, -1.7621463256604215, 0.5017378929482504, -1.4060947333883493, 1.2343895695154679, 1.0816357747878311, 0.48184181362822254, 0.08189918671253105, 0.9285544941144868, -0.07534323575372168, -0.7085477283470639, -1.3848116957952437, 1.259578965925384, 1.2593005408653222, -1.593380910905921, 0.4287735571144907, 0.31833534761040366, -0.5679850056415183, 0.16038963607988083, -1.5498796755160167, -0.29489080167521803, -0.8112327430842308, -0.39796559705920337, -0.7118582430703022, 0.05542220399793008, 0.9330516824452958, 0.6971655492421118, 0.2641468825596334, 0.4560331209378259, 1.1122786815901606, 1.1874414840541598, -0.019150289613308346, -0.39584552746683205, -1.5819502858752166, 0.10086719094588666, -1.4762337325667745, 0.06897565989980003, 1.2997900064145798, -1.0606908569699496, -0.18830783446548352, -0.2401275966763931, -1.0349133455665502, -0.38062108208646983, 0.6722720867397532, -0.8295586602748727, 0.6971647934836033, 0.712041361096037, 1.4763246556879954, 0.9799136911649213, -1.6099556173618534, 0.8014849951877998, 0.18720017544054512, 1.0402730243527685, -1.1349347104940324, 1.3925187537722956, 0.9337911628079106, 1.2146978307447311, 0.991989092929875, -0.7627826643750315, -0.0748952560369305, -0.05199424931438591, 0.1700162892292988, -0.17106764036834912, 0.6002674309958432, -0.08782216470939945, -0.3902335512969951, -0.5632393879718331, 0.1865657104170946, 0.07069429401678734, -1.3545967625729234, -1.297906415914169, 0.28406394593317663, 0.295773798091347, -0.3260939840495446, 0.44526151416029114, 0.9926496579664479, 1.1251284497891016, 1.0416546855088744, 1.7838891208657803, -1.3120342618380585, 1.2295140282045176, -0.0541897260133118, 0.39569399724766946, 0.5832003728589102, 0.8183660357656862, -0.3207937630460723, 1.0359496452914174, 1.2240772572449394, 0.5724995020966883, -0.23171077738111212, -0.40441645063182363, 0.2299685447041865, -1.240420211017951, -1.3256623815144342, 1.9126794575324746, 1.7430724479227575, -1.5855553677336964, 0.7026532519309523, 0.3149987859446728, 1.4756567097512134, 0.6496565280682426, 1.2603946260867394, -1.4573379762937384, 0.8512607744337943, 1.0072520824402094, 1.60144250440141, -0.41533524585721854, -1.811961194348232, 0.7337843723045577, -2.8845103592575696, 0.20407910065740553, 1.237025751562202, 0.0177813068405589, -0.8824768379215094, -0.7107020079364389, 1.321933648366525, 0.19805802761509889, 1.1336626255214368, 0.05639730262842725, 0.3854428827640643, 0.6726424853813843, 0.10492353554143576, -0.18707134578626328, 0.4157232332898353, -0.6898120687832467, 1.718468534977878, 0.16488144716758882, -0.45662286273184954, -0.9350150852998835, 2.1212426739967594, 0.2467532402979832, 0.20048905772730927, 0.40656746265648563, -1.2299845741746636, 0.541966671121033, -0.5909079729645841, 1.404354845485125, 1.0265527947485868, 0.5688214309297924, 0.8469292545123243, 1.488505220952738, -0.8203317283111423, -0.3009597663919656, 0.02496043799740324, -0.5649630573215068, -1.059306470293445, 0.8187410983452031, -1.3884885509542653, -0.06767628419705449, -1.8910058434778547, -0.6147160955452966, 0.20022241278925038, 1.2925301482898777, 0.29075581227641184, 1.193557246166847, -1.5856800029369231, -0.4573740696640215, -2.426599446222116, -0.5509555644480796, -0.2719376197868861, 0.8004253101436297, -1.5478063570118243, 1.9580245491920405, 1.7288433188200845, 1.0360516823079904, -0.006680843114581751, -1.009972096839251, 0.055638139691339246, 0.14876475279097084, -0.39821460425157823, -0.19013552100177947, -1.1597448783353315, -3.4203362628453, 0.7189455945714821, -0.5606538140857608, 1.3782071013721553, 0.47201469509701666, 0.1724223752806833, -0.1752738203229665, -0.2052955352872663, -0.5692926543484901, 1.5900069343734615, 2.1895685595017897, -0.45780056032382044, -0.30100194509124806, -1.98695986475853, -0.5227001729934304, 1.3835089657067188, -0.06775329071679144, 0.2996818805503621, 0.12053250057443644, -1.6325727918683142, -0.04496195780965725, -0.6748156651277137, 0.5987365196924788, -0.5581909172219235, -0.31340468105396846, -0.8489948121690448, -0.9859677563595509, -1.5966252520746247, -0.5456522001816081, 0.8129629937501741, 0.19177223435649546, 1.6643571446832235, 0.06980121274647348, 0.3029904332741522, 0.08827732085576356, -0.3579643648026767, -0.2741396501843345, 0.4127483706205504, 0.3707050111299285, -0.6940862839353995, 1.5565886116234202, -1.7859173027325186, 0.995808920587315, 1.1539623385183666, -0.5525600242780522, -0.7181053322194128, -0.08984076773953889, 0.36956635938340415, 0.363330122103639, -0.8822337080958803, 1.7283464139468765, 1.11336760230215, 0.2820111566528542, 0.7683567379975992, -2.328729210448893, -0.48125095578376326, -0.9919863078564133, 0.5364588768973758, -1.2192013618200426, -0.9398751087237438, 0.516200082894663, -0.23761094728771093, 0.2133120786050069, 0.6408942430548465, 0.8748440201286851, -0.6197243607205208, -0.8598917302364508, 1.7290367253970786, 1.1302139944883587, 0.518010719627007, -0.44472088864903936, -0.8826552657852886, -1.142978021502254, 1.266594975863774, 1.523819930180913, 1.6927032616860436, 1.0312446674353495, -0.26883877796173045, -0.5309334308208078, 0.3512279462764065, -0.7568826700180696, -0.45071821340038076, -0.5493324537773459, 1.1024830665212988, -0.4291639321749247, -0.4842627474175461, -0.13163271524443093, 0.20969927616739925, -1.7691218401183002, 0.027372272518725174, -0.3417905638885682, -1.078015489425343, -0.10060447047851417, 0.19879253497236982, 0.789078797813423, -0.6149807860818075, 1.0134616295639332, -0.46543752729576693, -1.2001313423931388, 0.011866068788469495, -0.9866688187871049, 1.343925057154306, 1.1100316803739307, -2.2756413428625186, 0.2892900070846562, 0.3291205304747392, -0.5676009624477848, -1.397498746987647, -0.38630435389110146, 0.09459858636318942, -0.6836793177491007, -0.6930498274250598, 0.6561927818583739, -1.3226373602605923, 0.37911627758743177, 0.4396112526301246, 1.1297526015911161, 0.6635782985459533, -0.9451438803228605, 1.5795584454447837, 0.27103393949847093, 1.4657251441177412, 0.31644781082396184, 1.4096680246478437, 0.5715659139488921, 1.0702038439925872, 0.9563793071504801, 0.13797816736570567, 1.094933673840303, 0.49303131972850706, -2.2079672485273107, -2.018022126732656, 0.24268934054828037, 0.7955476500763119, 0.4429455918993153, 0.18399379953358513, -0.5995094987476476, -0.7829844647258668, 1.4114055577024074, 0.03495995281504341, 0.34697493619377057, -1.1167740487112277, 0.3111769412002824, -0.254699703955239, -0.5231708385258643, -0.283322101532998, -1.2433676088003707, -0.6345445531227593, -0.1880272357304899, -0.4792693511577295, 2.750116654334192, -0.22980694532864598, -0.8152908237551786, -0.43968906554640913, -1.0231649295211747, -1.5379545984287917, -0.8448609717442669, -0.5528469818410042, 0.07551140473968346, -0.8429771209277758, -1.209009928419257, 0.8122488366099229, 0.17576300825496732, -1.382421860841726, 0.18427119770210962, -0.06276266374345958, 0.852663458746765, 0.6272399475940557, -1.5194184716687373, -0.11848278748558722, 0.8806996934208146, 0.9374312060527086, 0.41596450281253927, -0.04367392517885913, -1.2466919841501891, 1.0042637399924474, 1.0267666256569323, 0.09179599634377346, -0.5035138335032064, 1.1657181295882055, -0.3356146290928018, -1.178324730397432, 1.207903377086362, 0.18130112871777138, -1.1039734713241909, -1.3120791888190924, -0.16061363532451842, 0.6568496322358582, 0.40090619718418896, 0.44854482385771227, 2.302288077405761, 0.6221400940942952, 0.8716738789746492, 0.5421311231027358, 0.6771152152297663, -2.3076669407948067, -0.8486747709049617, 0.1571856755283208, 0.28786540114162507, -0.635300335507412, -0.38162305318820505, -0.5222251717494483, -0.32849681229961003, 0.2218456751463245, 0.3429999801560955, 0.5470635032287896, -2.4183636339582217, 0.20939082069249373, 0.9441005475397313, 0.6105190378345972, -1.2975343822673335, 1.2003609896663094, -1.9429292698612797, 0.5228341361869884, -0.695424837994738, -0.21999655520275577, 1.831339594232514, 0.3620028070911141, 0.5763545454354011, 1.9302110972993383, -0.6811608232734603, -0.21168157473538946, 1.052030181471983, 0.29990512845567985, 0.014546267177951358, 1.8715374156768179, 2.0611965359567, -1.3702722621506476, 1.3555627950972762, -0.701199171700346, -0.19078006327882235, 2.1619383801293757, -0.016126793795240003, 1.1455176887754008, 1.491209020066036, 0.757463815992389, -0.18249759798526755, -2.5455485358669105, -0.3060204569531058, -1.1466781194115938, -1.318980846973755, -0.7783502031631457, 0.24898780485399666, -1.9020155338993197, 0.06332029853094515, -0.6860428324616862, -1.6171993849975008, 1.412946159929773, 0.7043044346430204, -0.2563212212359276, 0.274528418511375, 0.2530557133287705, -2.140519559991342, 0.6545965250764998, 0.5363956319253564, -0.041723552477535876, 0.8607930107299641, 0.0737450389873501, 1.9603547018439194, -0.617454898646983, 0.11799018848429323, -0.4723436659071759, 1.498859449412838, 1.7126735998496678, 0.48337357697070926, -0.7928157754017475, 0.010347958356680039, -0.1987099082078607, -0.2919353528796875, -0.7622587315176532, 0.39792259245314027, 2.0170583042516976, -0.026474583616965877, -0.00913431998701387, 1.4094629799674354, -0.0014413476996231122, -0.9355208842665392, -0.15766662111875246, 0.19389757537850089, -0.0032375903341594586, -1.9839817106419657, -1.0609619444292469, -0.21026549742078016, 0.6318384923681087, -1.003451093641961, 1.621229896913546, -0.1503431689586285, 1.0872930466229027, -0.9154439972471188, -0.42471346217555334, -0.4356360402191509, -1.479883777448207, 0.9053792237939887, -0.2133331186121713, 0.07621090964463512, -1.3772738269393021, -0.27485072942346545, -0.5849570292030707, -0.3421474360908576, 0.6530909053410006, -1.3759664374344718, 1.1809314803088982, 0.295342305418442, -0.913790134833496, -0.09389225553250338, 1.31978894693644, -0.8792241755292945, 1.6920523235089688, 0.41327944270591593, 0.14172342589088407, -2.2375744940950786, -0.012576621719125953, -1.1365738683489683, 1.3271304767270897, 0.7367295330348277, -1.6827204425084896, 1.2941009182064347, -0.6890315491126143, -0.7068327126473245, 0.17378431009573705, 0.3332798692879871, -0.8508161922966755, 0.07884215151978403, -1.5754687969501566, -0.7745433801131328, -1.6198657700331185, 1.9515642790985253, -1.653353676707656, 2.2233458151823973, 0.1818546872759342, 0.31405666905602975, 1.5679688753172265, -1.024212641700875, -1.4046231503576425, 0.5659879750062078, -1.076726254457684, -1.5688720660341815, 1.2863562135011715, 0.6851784171071557, 0.4727091491625344, 0.6267182596860741, -0.622662702311926, -1.0602861324065866, -1.5037346169929198, -1.1257312257097816, -0.3716576275645243, -0.6304632763154219, 2.0582815051152314, 2.4442948970293594, 0.8183730775194313, 0.17710182845206093, -0.9764181408266093, -0.5975386482679549, 0.4384037055364522, -0.4321634317524433, -0.3362434467638623, -0.7596581517930004, -1.2014781778130146, -1.6434865493269766, 0.6583597724780913, 0.9205446379131125, -1.0468528183469759, -0.0043272471562346105, -0.3534051852570883, 0.7083298666804303, 0.7154674995070605, -0.03416315161471079, -0.8106421995880815, -0.6775095833016457, -1.233190287093958, -0.471195595428118, 0.8633460276347791, -0.14963880846539543, -0.4617628914360906, 1.5058174753962463, 1.918114394062705, 0.4153358490812108, -2.1681789559134037, -0.35581797590450637, -0.16097912238335607, -0.7508840404515544, -1.2801882125170516, -1.8637867636768564, 0.7388817422316291, 1.286015932019507, -1.2952867383496918, -1.125142268958991, -1.5342168196370762, 2.1949154144114917, 1.4965852677908271, -1.4205230956547172, 0.086283957230045, 1.8561855987282123, -1.3512462269831733, 2.06122397338778, 0.19857911668923664, 0.6111934667954654, 1.6412853344883638, 0.16546649273124509, -2.1233747682671473, 1.2429573814020007, -0.8143307183513065, -1.3028157609306839, 1.5066413563205587, -1.2129147303144343, -0.07625117932742571, 1.3922489963481373, -0.32046620871582365, -1.0364443310928686, -0.4592621915630218, -2.0531438287439276, 1.0615878651205921, 0.17165277325098216, -1.208484890962615, -0.519954781155755, -0.3277400898566765, -1.048790210135184, 1.2118963332794568, -0.565387490067742, 1.030395257859336, 0.3446719684100509, -1.335155835228289, 0.9732592063276669, 0.6246126456050022, 0.5985101079262042, -0.8237990373421928, 1.1454197882458095, 0.19178939753238747, -1.0504057328820315, 2.7385700429109674, 0.5465053749929618, -1.0796818266300894, -0.21758344086273407, 1.0625555943184823, 2.0395025371382585, -0.7283224071538624, -0.31056252500950354, 0.025621642425329515, -0.8934641885525887, 0.6834984561769804, -0.8841795063476692, 0.18812491385489985, 0.29297335516609574, 0.28015070282121307, -1.004283706597245, -0.8080276397732389, -0.21505127234038815, -0.48784934949859826, -0.11818261937087028, 1.1708792569166313, 0.8414243764271212, -0.7435517206738799, -0.3320056634640598, 0.38099304118657906, -0.001866146989716681, 0.34299758302774264, 2.649456737521403, 0.4715526826408703, -0.07944319783444372, -1.1193319074296733, 0.1667024956920806, 0.7360875420466547, 1.3030672980149156, 0.8793104203711137, -0.3408861572143978, 1.1241105491729522, 0.18339882094222257, -0.03203245852296395, 1.0001789818955442, -2.051267323262892, -1.2711874647702233, 1.247658509838651, 0.5338682611398269, -1.2547591872057635, -2.327881183636001, -0.7395953164397503, 1.4145228828349625, 0.5463966610670467, -0.6460115203234431, 1.4847417142565253, 0.6106438593695152, 0.13228255834282796, -0.21728568994284705, 0.37794696732803373, 0.027485971033400128, -0.6245307265817077, -1.8951348526196088, 0.2026482735569236, 0.7904676499719255, 0.9032964878918563, -0.3347680820117689, 0.857474310959815, -0.5763418390526119, -1.0491016995153275, -0.40392048614928416, -1.739321319620694, 0.25686248753800484, -1.09365938214844, -1.1722482353365382, 1.3521509675534216, 0.3506242617996665, -0.776520649901716, -1.9548294133789237, 0.6662458568734563, 0.16448502492752776, -0.09782825198124247, 0.15657782167853054, -0.5641280288822325, -1.247263146631944, -0.583675004014979, -0.1151891777727761, 0.0679366182430725, -0.06560112423244649, 0.16953615255712542, -1.0652433031250264, -1.2496213760967707, 1.4268596267731182, 0.8971919415693346, 0.011054757475585316, 1.7667299116456228, 2.0028673744451524, -0.6127197083016644, -1.5712721064889317, 1.033606899824753, 0.4477700272740255, 1.4122921763242051, -0.001358237128655531, -0.8478234151219226, 1.0270282943075373, 0.331253386631061, 0.3029871633018392, 0.9376874265603263, -0.717196393450828, 1.1280909473598812, 0.695631183531674, 1.7989253642201957, -0.7153989192391175, -0.27599285004523355, 0.5502590534208774, 0.6304186121489872, -0.8230283088862171, -0.5692183974375994, -0.15367253732839134, 0.7465971078851433, 0.039822743220681626, -0.4732786227719504, -0.48661553045419237, -0.26053079936965007, -0.6133508629934429, 0.9432276770795633, 0.2128181717175196, 1.0720535261291066, 1.0550959251123322, -0.9293565564579601, 1.0378734923797872, -0.09195855149762805, 1.1263949468521903, 1.1723082327379877, 1.3860720801774433, -0.8839678140503612, 0.38916984845372954, 1.5593625290241255, 0.449160863698266, -0.2888843549803196, -1.0179967615397851, 0.07244502590982788, -1.106421135126874, 0.15275496052573678, -0.02544349396710583, 1.388441758669582, 1.3626180755253976, 2.616336292835327, 1.404337296907485, 0.3567785082934259, 0.11111900051088049, -0.610435461848232, -0.42311983862037195, -0.2672469097523693, 0.32717606823733764, 0.8262739050604012, 0.07868633719315743, -0.8108058720645613, -1.2794258527035711, 0.25009280560535624, -0.2616334949891204, 0.17847989450482385, -1.7023321853382933, -0.056569895599918214, 1.2758185970996263, -0.41587279199600896, 0.16912595117878465, -0.9423195625034673, 0.6428897972962989, -0.12565552393453258, -0.9544203547058917, -0.3840773712921352, 0.16297190387528082, -1.7059348248138986, 0.5788749637096433, 2.3391448470691154, -0.2931752437879903, -0.23398652769526795, 1.179760884716813, -0.0785760189038814, -0.4899009507881172, 1.4198577366451135, 0.5285058769832152, -0.29051078184012247, 1.0156889863156986, -0.5392977711224887, 0.1679940834417862, -0.5968663023717313, 1.124555850989436, 2.8252865531876887, -0.8231623542441606, -0.07364227912615016, -1.6008720151592948, 0.22447700676585683, -0.4656367811119565, -0.649907875717539, -1.4790839398426054, 0.8936548203890726, 1.5132967282988505, -1.9707069541253366, 1.141079559420055, 0.9105559430033409, 0.2575856750282053, 0.06095231939750504, 0.30383394685737836, 0.7891990338479664, 1.4515836546605536, 0.2877391040426119, -2.0811534849211464, -1.5048759233457365, -0.1764965169847019, 0.8285308190455594, -1.1982238442167343, 0.1136570357660763, -0.48496148697453495, -0.7870305716133402, -0.07757522417243985, -2.1527371295144793, -0.21762955820793603, -1.130988030793882, 0.18910262035643638, -2.162417354759363, 0.5640209635557245, -0.20069430032928595, 0.11551324832566408, 0.41080467637845336, -0.8270544308347945, 1.4717519770113863, 0.02419522959664761, 0.24075689677686699, 0.5097665130159099, -0.15108131208516096, 0.27173641094974266, 0.95512363691523, -0.8336782217197395, -0.35146769262307626, 1.5092245613507633, -0.08392808665185483, -1.1622553848376598, -0.48397229774441475, 0.634180234793327, 1.3096432717060096, 1.3629320307773454, -0.008532425225032246, 0.7641681033274823, 0.3197985135168631, -0.7376036595571426, -0.8717578018800219, -1.5923409172717033, -0.23846589879435118, 0.48015476607237106, 0.811139293841968, -0.5726438142837225, -1.787597409486695, 0.08903401464942366, -1.3672126582026898, -0.2095212676839688, -2.117139025303203, -0.7772433160178376, 0.5368115575694886, -1.2401288969759363, 0.5771074556717163, 0.0588682351294387, 0.2160353351479987, -0.18503374637318332, 1.0615592139699863, -0.3961454687482704, 0.5879642163623395, 0.22921854981971196, 0.7643626334880587, -1.069525002710051, 0.3788690570516725, -1.0640370177540515, -1.8645845196258393, 0.0324702089078291, 1.7463550624168456, -1.1991644121398464, 1.013368456203542, 0.1931604424994711, 1.675799287760854, 2.2083564800829345, 0.7025353005154338, 0.06480431798476202, 0.9719570914085437, -0.7674552247110614, -1.0233271027829407, -0.351729595012384, 0.7870005472602419, 0.9321302646219273, 0.21567562010198002, -0.3899131894853803, 2.57064570118268, -0.7113100670542856, 0.4675062009845919, 0.06929353126541614, 0.6622728175551715, 0.783533082570936, -1.0854846566673062, 1.1249829368143227, -1.0217239443476276, 0.19431222794322303, 0.23380901417845212, 1.4410909565683385, -0.8580324503567597, -1.346464560061229, -0.2790932429526919, -1.1998332801979141, 1.9909907581949982, 0.055305379028265274, 2.523077524571608, -0.5638107713017435, 0.42029436618560173, -0.22019876185883275, -2.087649228176546, 0.7895147494370574, 1.5448159939057466, 1.421432845668677, -1.8969313580016405, -1.0654650983707739, -1.148553737389839, 0.7124297928235798, 0.30336081315168545, -1.1629185864132547, -1.4360686853743094, 0.11652275422903174, -0.19924244582002587, -0.03660218835421831, -0.9205135299194164, 0.5354446301215581, -0.036068517312856915, -0.44048050543827577, -0.37660087948003423, 0.6195240769373739, -0.40088801562794774, -0.4330257291199301, -0.3692089643137137, -2.308920863262419, 0.5736043824405167, 0.09041768258628323, -1.8710188369173935, 0.31619082149877326, -1.329589181594005, -2.2035845139006587, 0.455097574063942, -1.2514488763679572, -0.022804065828157794, 0.1426673664794881, 2.8525538258640366, 1.2899766685285883, -0.6971493567520521, -0.24401988645002293, 1.237929317731089, 0.021069430757355553, 0.9599619307283114, -1.5845858450934087, -0.004123550722321, -1.1419837147610021, -0.7412165289334234, 0.24897232070526687, 0.6968179904922778, -1.0639069379030721, 0.5424820827828797, -2.1567328462462894, 0.3618485442659185, 1.0776242165513426, 0.34436435964324225, 1.5386266267550834, 1.5287446301402736, 0.8537617446901594, 0.9470316259371147, -0.7730598644308949, -0.6995398594506879, 0.059291441491207034, -0.8768903836129183, 0.14266817355296757, 0.6183939598964777, -1.0246980473908234, 1.2611538527354158, -0.01635295572688826, -0.5851595691367779, -1.4617563645098959, 0.5344744863695269, -1.0836573697660155, 0.8185556843746804, 0.21535868797328583, 0.6272560537218059, -0.9426374670279809, -1.1452655141305819, -0.9868906808783519, 1.3375560816979155, 0.6398616560407749, -0.33849854162389864, 1.0044485177139657, 1.8066419017515123, -1.1020887580283294, 0.67850877784905, 0.3485174201452203, -0.6706728163875644, 0.8289589586794628, -1.462081998231551, -0.4283777525685914, -0.16939108928270485, -0.28054991742331736, 0.6170153207821112, 0.9028500016288359, 0.0021078852460738443, 0.12144702586232191, 0.23126952745753146, 0.6238552945940141, 1.1206457143871238, 0.2904658272279953, -1.1729034828304838, -0.3590588473908819, 1.816192844658818, -0.08452798782491458, 0.9964546696291094, 0.5685749622245603, 2.2466480536722346, 0.08246548704083577, -0.5627751427358032, 2.276337875116437, -0.23291436409362826, -0.5339367011059137, -0.5689169282047707, -0.9654989711523188, 0.3563309838528699, 0.6154328282254992, 0.5958648853964144, -0.17467764953363848, 0.21738206195947407, -0.647811576082531, 0.8202704997030272, -1.3414468155951493, -1.171758297325465, -1.2662349700201752, -1.1029078319332306, -0.0239626160242908, -0.03754216431335331, -0.2269722215789051, 0.9181414894447781, 1.5494583948364526, -1.2623769845588582, 0.8362989603018242, 0.4908296431452324, 0.3775663887494487, -0.529733684892639, 0.06950222554626502, -0.3813536865372724, -0.9908476171357353, 1.4824635087623625, 0.9790999807339551, 1.4727093818716137, -2.1461524280203292, 0.1407543643100666, -0.5737480494196366, -0.534480424789809, -1.155849965917087, 0.19267899614532996, 1.9415300977948664, -0.04758978976195392, 0.2568528444293339, 0.07040059531546954, -0.9363122741869138, 1.1177472442392755, -1.7858349157604334, 1.7753484939587103, 1.5552058288453945, -0.48742795693100716, 0.35842591582995675, -0.40431389467546036, -0.7032898226240178, 2.2144014008756776, -0.5616614032205963, -1.1206927268584579, 0.7293980207807523, 0.46766604096485437, -0.010153653694294726, 2.0239111682901694, 0.945408150334531, 1.9331015444351451, -1.7246344070498592, 0.4886082008215438, -0.2476744861425089, -2.3593470352754453, -0.8271605052402494, -0.38126371867604, 1.2166014132421483, -1.22347819962021, 2.172705295582006, -1.7206743434784273, 0.7670041453046222, 1.315149140313395, -0.11151191057027308, -0.17024593167238022, -0.3708621429723822, -0.5730632175627356, -0.9551126588425007, -0.22835068517370052, 0.4716174175060617, -0.379292589779764, -1.604972184597382, -0.37367992131291317, -0.730751655051581, 0.8370865659218897, 0.2588389945065249, 1.2728837258306815, -0.20143412917947218, -0.6386939069576278, 0.4942857765420653, 0.19774733830827998, -0.20242616081944687, 0.26618688487304965, -0.7491082783277268, 0.794125470566312, 1.401775215231658, 1.1882503522943175, 0.5307137003945923, 0.42159256241635495, -0.6210552572772399, -0.03707281878914588, 2.1372874367717345, -0.48352617750809485, -0.20871569154416073, -0.6061218017693693, -0.31054176489657265, 0.6243166674828469, 0.8805777706971666, -0.6922533831235974, 1.668839584061785, -0.7529580806359925, -0.7769900923323065, -1.6417459343778922, -1.5698688342111338, -0.9207351462978748, -0.06837699901444799, -1.1217869093309907, 0.9321509912759943, 0.32174377776073615, -0.09351173347277071, 0.20037067792763538, -1.4122551955154727, 0.588662970185707, 1.518723578498231, -0.9976910335440496, -0.5635824799194336, -0.2553289167137959, 0.8911713073936673, 0.8795343362075396, 0.4669453069576363, 0.011214586001397592, 1.0162254432665796, 1.4386777693947828, -0.5733289181210226, 1.5243144875626304, -0.1575510641277051, 0.16311372759775708, -1.228607618083508, -0.4564847624830082, -0.09210785850943948, -0.4006197062986115, -0.12465997156468525, -0.5037641743939842, 0.9749645276844969, -0.5030152272337813, -0.2092055361999039, 1.1969009933842316, 1.1643885478578282, -2.182880253608924, -2.0505815192652155, 0.3594372709225393, -1.549005673542622, 0.8366946392355173, -0.5379835922385428, 1.5150402322672059, 0.9400239821765556, 0.5424502919868905, -0.7380975977896778, 0.5026476411536837, -0.01208297720904298, -0.03330804843055865, -0.20487447031975542, 1.5595649639207871, -0.10733677229473258, -0.07852045255973214, 0.07257614619703463, 0.3066379882861249, -0.9425206588646609, -0.9175136227192696, 0.47317357164787766, 1.1290255304110302, 1.5265033236990295, -1.3503664424641362, 0.9309750852608919, -1.1815060355174585, -0.5055008893354702, -0.10121927162775321, 0.053557773769373894, -0.494050844781959, -1.7707036358412258, 0.4251444229295595, -0.6914040119762842, 0.13973656913315605, 0.00012263586350689712, -0.4627211488278575, 1.3213765551479322, -1.0939474727757243, 1.5898535537983387, -0.2569788883811459, 0.563863731348834, -2.2884284734708897, 1.0885261180345267, 1.0826000676295338, -0.121489878479391, 0.5558856679324824, 0.5774554372508693, -0.42816637803302776, -1.0683867431972514, 1.6544147668943858, 1.0857557572449037, 1.638847524205232, 1.1682411456917343, -1.941599758611125, 0.6313373613840187, -0.7158924935557587, -1.2095397738572469, -0.2987340106693321, 0.6486235227214953, -1.0928287637701246, -0.07021562436093277, -2.572010668859079, -0.5163190638385838, 0.3155559795198819, 0.5004179218805415, -0.0758063454800749, 0.7768126572314803, 0.9528473276180498, 0.2914738614268306, -0.29213559791453597, -0.43125626968965, 0.1791240185476347, 1.1900975067506148, -0.399952822261785, 1.7406107747532948, -2.192953400537787, 0.8820092537328063, -1.0940615342403248, -0.44909737655260207, -0.9097592336336413, -1.2611666987796644, -0.9763425735317474, 0.7973690768400113, -0.6859865987723653, -0.5677903879916708, 0.3708034327340511, -0.01527829903712278, -0.6594163265981526, -1.661534009278085, -0.0821083310151776, 2.761768737726706, -0.7709253219729233, 0.5593074165669669, 1.7778705886951134, -0.515815816966354, 0.17709300471998, 0.878601746875337, 0.8017491326601466, 0.24590334936801933, -1.44571328409891, -0.4499277568884628, 0.6259493316869655, 2.736293665706924, -1.1744189768401707, 1.8431582964091298, 0.8457543025964169, 0.18900265336457303, 0.6645830954690344, -1.3361845544597653, 0.7833883773528791, -0.6579128124537879, 0.7404166634167544, -0.8526157436491071, -0.8387600523566309, 0.8073294749738414, 0.3747044719252436, 1.9153140496902399, 0.9303716140009237, 0.7975842059534783, 0.8489806806329482, 1.5319947703465624, -1.4931214307928358, 0.312491099619605, -1.752776106766546, -1.5189151400689471, -0.23503488562259273, 0.4895886717298048, 0.8570256804733115, 1.0370130072286163, 1.837377590344645, 1.6482763521131452, 0.45286123105451026, -0.9234726142405699, -0.061895251085160224, 1.6799847759520756, 0.9313607357483723, -1.3758436090702295, 1.7834017336771624, 1.0365631771118269, 1.6022448847550124, 0.328483027164837, 1.0258169923091593, -0.063261347607819, 2.077089900095797, 0.3594313798672683, 1.3935443638265037, -0.6322087679071834, 0.9119229418681114, 0.335985833681869, 0.04186914343330301, -0.12543556706555817, 0.9331969552818198, 0.8885200067902078, -2.0708862935000134, 1.3248336402412877, -0.42030396769717554, -0.9257277615911919, 0.6398854419882418, 1.6372581460541273, -0.8348114949479823, 0.14897256143531024, 0.4338465126529915, -1.4306788952483374, 0.3403118742396471, 0.31767268311923613, -1.805783768840317, 1.5561067154830872, 1.3475009171291672, 1.6297748449380207, -0.3000926521928265, -0.2706351923328663, 0.9482474666679007, 0.27763010928789456, 1.5384646722915931, -0.05146383817631807, 0.7983869921164888, 0.016725870870051493, 0.8223827445059149, 1.0249602149233035, 1.0686873158770414, 0.07836228298717567, -0.4297750298619299, 0.7612918188510642, 2.143563507166464, -0.056902923854912364, -0.445423464708451, -0.029048985190760605, 1.2474433304255481, -0.3934774366425892, 0.927836385805599, -0.565729680604867, 0.41005985462766753, -0.4776165876373441, 0.34530775505645844, 0.6301076549326233, -0.4273945492131911, -0.07515515558475855, 2.637663984983072, 1.755581065908815, 1.0979264002447244, 0.3475042710361092, -0.7715767780237945, 0.016267848621046258, 0.39578330512707516, -1.431429069624092, -1.6213757662269466, 1.4321181634137747, 0.7819330263439623, 0.43487508382619655, 0.04393309532558677, 0.11936631320165941, -1.0712689035287566, -0.3554338344050559, -2.373083246011457, 1.1807798207722384, 0.16727259210465342, -0.24494820994821012, -0.4082362779241644, 0.2571952309281809, 0.4330191809090948, 0.7282976119847611, -0.9077164973133165, -0.006672618321204151, 1.0141594974322492, -1.0281363638637375, -0.22923010714975248, -0.26889014418474, -0.8215362683707975, -0.4640514106495753, -0.15518345083896737, -0.3729632291509824, 1.7230857169676166, -0.6482139355216187, -0.9531908074058425, -0.8441493198497566, -0.6755640821676273, -2.5602577970816567, 1.0724555289459745, 0.22021303902430164, 0.5553162822328432, 0.1318710999416614, 0.4322790690137739, 0.6362389648034473, 0.12950352395946158, -0.2651154743433239, 0.15143682950444426, -0.18823570034119058, -0.941674856483569, 0.7649559708075334, 0.7634235204428307, -1.4447479902313969, -1.0367158800732816, -0.13678824833830713, -0.17446495660245004, 1.0080393449294454, 0.9648880603349883, 0.19547872564201388, -1.294033504988008, 0.6806149603170162, -0.8782683724000642, 3.0143210399358598, -0.9315662931511312, 1.5481203418080638, -0.40969773891887457, -1.559721011824047, 0.9971517969064387, -0.6791736292109396, -0.0820953642006107, -1.8633795132431394, 1.1123774731510307, -0.0984725445471673, -0.42134625948147547, -2.217417131419554, 0.8322053576397167, -2.2988522683427615, 0.7240533231031042, 0.29375158705310617, 0.4242670815481024, 1.2905037392470027, 0.15031700523231584, 1.2014130511566927, 1.1421688786447202, -0.15292730394080195, 2.28402559571749, 1.6970178834511933, 0.4393453376626736, 1.7873795861913693, 0.6442792571840195, -0.692796464116103, 0.40261950104346117, -0.5380583734966857, -1.3650628440112813, -1.2568671234507482, -0.4252142204635041, -1.469655647669733, 0.7413188668138857, 1.5732171454064308, -1.3511478104069523, 0.3004976872472132, -0.6271515908313742, -0.06178189327328243, -1.0129784276427831, -0.18095123852854172, 0.47399325528487046, 1.892639111194473, 0.9309510802904873, -0.2703081136722023, -0.9718738292647614, -0.2543039090212779, -0.5926824646023883, 1.3424487586111418, -0.1888780137715235, -1.313270975880614, 1.094585362739849, -1.2787653925215252, -0.06626851317505404, 1.4241791072387564, 1.4264449110765252, -0.5798317281615069, 1.610806528447798, 1.4023145765144653, 0.6278202172012051, 1.0777189802186422, 0.7412231965528686, 0.3116611042077837, -1.65795730899747, -0.7140777201061171, -1.15648983338355, 1.0590141417389887, -2.028552373209905, -0.3170898410378697, -0.757365510529839, -0.3598214310394711, 0.24838183141931347, 0.12851802922179328, 0.8158602085071012, 0.8835314924411508, -1.046179827701528, -0.5311616929173779, -0.07629959227173999, -0.1425235467737449, 0.6297022557104717, 0.30465431512668745, 2.049634856158654, -0.8827535818841913, 1.792402128211458, -0.6511545221411912, 0.4967265331287971, 0.4714017973247144, 0.7461695972772281, -0.7499584428929087, -0.623472344869513, -0.6376737758098648, 0.78109443470193, -0.838274237648065, 0.9202717078508877, -0.460356894362405, -0.12976154571550788, -0.1159980972177743, -0.5550743139850904, 0.2562264271894023, -1.9542436086626247, -1.5021909808670886, -0.3552704925500707, 0.046582100843031805, 0.5825675101722205, 1.9328340658520438, -0.9146557837771191, 1.3627891431570582, 0.7036514246870922, 0.3596821427161804, 0.492984663537523, -0.4915440498855066, 1.1723606040901757, -0.37146326850148, 0.9833458057731699, -0.5361292538529446, 0.8922949724844146, 1.2606682231309263, -0.013498653463700787, -1.8636477837353262, -0.464636231487166, -0.060397021253853114, -1.9148158487231413, -0.3401321486145692, 1.2831428711454227, 1.1872601074304494, 0.347312453145926, -0.1320724451060535, 0.15690494204482477, 0.18040597989136742, 2.193641737911295, -0.5294596902649952, -1.6588776533282876, 0.47993894111176144, 0.6731256555847236, -0.8490380815166125, 1.0077028670815054, 1.2472572754280238, -0.6628811134650879, -0.15410937315027537, -0.06330118379762265, -0.5315406909863878, -2.6026972331351486, -0.24269338585976746, -0.11653230128502592, 0.08036210832278005, -0.08969762901844808, -1.3406325204552894, 0.6213568784367087, 1.1138231964270564, 0.9350370725016243, -0.33578748630787514, -0.9997013837732527, 0.06955421325588212, -0.38408155254569953, -0.42386226752386497, -1.5846358362426591, 0.9904659357870682, 0.6776634948659402, -0.5061991568098377, -0.45778178527672286, 0.6160958617438993, 0.4236989352628794, -0.8253981686820848, 0.9049589630630331, 0.5983288927072239, 0.7724453015056678, -0.8624095887608739, -0.43605945229845067, -1.3446412506931578, -0.4447923556631613, 0.4281248868439262, 0.18670107479189244, -1.7241183419862203, 0.7265566859360211, 0.5003142946225245, -0.429745658987765, -0.6514097629410567, -0.16388017513443642, 0.4401356459580391, 0.09452362198039795, -0.7715936949580495, -1.0999972685170378, -1.4818485017061147, -0.3603480980715288, -0.819344409793479, 1.590484548891117, -0.6827929587822751, 0.32168380116982553, -1.181585329301134, -0.313248732324575, 0.5609039998504294, -1.3040648293624801, 0.14972817283946782, 0.35804035834833814, 0.8212684853991872, -1.9005505922143848, -0.39314007873793727, -0.0243240899303743, -0.22881237593937426, -0.5132814056143221, 1.6491742844717459, 0.1513558480071868, 0.30984884548942476, 0.7954958161057343, 0.6372223280766923, 1.6947257993605873, 0.6335690717758499, -0.296059325069451, -1.1255761252819383, -1.1445573955732977, 0.05269545141830809, 1.1440722211764718, 0.42405703738797634, 0.8521630977697819, 2.108834719532604, -1.0526603441747033, -1.1343186785138246, 1.108322271183343, 1.0922361456509566, 0.268353544008975, 0.7408815700776312, 0.2128294935653344, -1.5431762682380963, -0.38471182460277387, 0.6254231101122159, 1.0670875579276051, -1.598141935876944, -0.3338216278223862, -0.01087254996966685, -0.8833778011753779, 0.053830766976928804, 1.7783449948503434, 1.7087866456839105, 0.9560523610628809, -0.15283319073329754, -0.273396721330388, -0.46279841682132256, 0.9395772015588718, -0.07788736393950849, 0.6827715717178268, 0.05384090818275419, -0.298942846985142, -0.8942827952296233, -0.8842924067488543, -1.7821348058220638, -1.0111637936167146, -0.923208185554119, -0.5569084247484637, -0.011599655904152243, -0.11468737980480669, -0.37052988605248044, 0.33802306103584734, 0.36609752468772805, -0.6123547926900476, 0.06765753517926328, 2.045899367841541, 1.4053697972195027, -1.6382640326395135, -0.4506075650153375, -1.7586302904071265, 0.06337620999880803, -1.7791760700093773, -0.4187558190899243, -1.4529167808773265, -0.3547189097288141, 0.24736040025207112, 0.34710919371635707, -0.15294916729260383, -1.482762011485932, 0.4376877171988943, 1.2378218861959858, 1.2100037899260372, -0.2514499862361922, 2.327099916446145, 1.0270345189654553, -0.259095777609013, 1.3375437117730524, 0.11918514084746497, 1.4622257635007223, -1.1274867412546694, 1.8125035176150444, 0.4843367130698571, -0.39500732535509225, 1.0032463156376203, 0.6814470325360589, -0.0636633710730513, 0.03008911473012243, -2.332190342961522, 0.808675897286325, 0.16793160393166942, 1.3553889550774056, -0.04236939057537523, 2.013656185017227, 0.014927188634921462, -1.1609583011923175, 0.6141290923628612, 0.6300457509165764, -0.6924137304390742, -1.4476158648247317, -0.2025778414377688, 0.9155541536361724, -0.4054466692128049, -0.26268951118443773, -0.4689441362437837, -0.07244570091770439, 0.40826709227108876, -1.3687466667603179, 0.9250241922137795, 1.0187504962582616, -0.9061168795741698, 0.44032951094453393, -1.3086759039403597, 0.9063088865124692, -1.4848628289246744, -0.7355102284829997, -0.8605556817007524, 1.3991400638327023, -0.035770008240585016, -0.0638855852221634, 0.7204052133730828, -0.3850622074259603, -0.5800181838065437, -0.13839546468849698, 0.6920066248809718, 0.8848456448202643, -0.4802209123585095, 0.6124328849479659, 1.628616500420633, -2.0248802123086023, -0.47834965858953976, 0.07609063615848978, -1.4381926830645702, 0.19860704175572402, 1.0643763991914152, -0.8358982531107181, -1.469849356563779, 0.6569744054520604, -1.1802658127352832, 3.098146601259849, 1.3974302015059896, 0.5576358775002156, 0.7316730987358255, -0.2699465470818228, 0.4180469864271997, 0.7826616929750879, -0.31015693926113175, -0.7933687477333254, -0.3333937134717953, 0.6153292216750891, 0.40495699924470624, -0.4792296437689454, 1.4872184772148467, 0.02557238524394786, 0.08777300548315359, -0.1971563160087627, 0.46582940840942166, -0.7910949223348571, 0.23756287200360623, 0.8820650634207169, -1.1627695742995188, -0.6625131697767545, -2.968634704565082, 0.5209487949261533, 1.8614711008153908, -1.1177651382603007, 1.3147735053018503, 0.05922934317661337, -1.3656640143126562, 1.2487027618289621, 1.3773946195200284, -0.08498817375543227, -0.02799078177153706, -0.29216364872632433, -0.30592137774117084, -0.5110246732050886, 2.0411796930819, -1.179431102087641, -0.25109345497196256, 1.471968915941467, 0.40340240401462923, -0.8174060011556801, 0.7145793442765589, -0.14474401852819838, -0.3710858133554185, -0.22992872628824346, 0.5474728593075194, -0.28863596658636065, -0.44057226976849684, 1.518301124202852, -0.5267976339298501, -0.2738782468156008, -1.8250417512705044, 0.3934238231173793, 0.38882007888667697, -1.169251637748353, -0.48230092815103065, 1.7499404755251202, 0.23592072966108302, 0.4963843585625374, 0.3605317580112851, -1.0794058627305634, -0.7933406704106245, 0.9285435485669132, 0.3270154758000293, -1.1107766332551843, 0.3753717171352573, 0.05174677791099269, 0.7296498931091433, 0.6532131690388018, 1.1978766954158309, 1.2680062040302857, 0.991920779664293, 0.42900299352576665, -0.11248181363669175, 0.05740192110550877, 0.1898817896993056, 0.31651734493713174, 0.23184666782470473, 1.8232714419525664, 1.6609516001281086, -1.0442513753384157, 0.15480731365869974, -0.46608417769865673, 1.183492000119644, 0.7810239189769677, 0.3802560604968153, 0.2745509033979437, 0.4062773573717265, -0.31643453725506426, -1.2842944516894772, -1.036794716228997, -0.8823664084286303, 1.0856440893470312, -1.270730111364712, 0.04423450796236568, -1.1263467206631117, -1.0955349575321218, 0.8612225954430875, 0.852450688309192, -0.03568461958179119, -0.22863617037353, 0.4357306354722971, 2.6102026983930275, -2.6562392825999486, -1.788807834314499, 0.47194886863953545, -1.155290609625102, 0.7438252567850666, 0.2087947288714051, -0.2122236582070925, -0.2423913166329154, 0.16709537224841325, -1.5090894616501493, -1.1724254457732801, -0.19110328834986143, -0.15213792781179933, -0.7094719705204741, 1.3544360443219994, -0.2068160443319231, -1.107429575583822, -0.11646523162658566, -0.4064461990496057, -1.8093898905636816, -0.7822332111487519, 0.6694820469736826, -1.508260741744234, -1.2059692971481693, -0.9179556594256, -1.550898270894396, 1.1527054774641268, -0.12423809945139394, -0.2109508712419107, 1.4148447850030714, 0.5840365395694636, -1.0422957044969257, -0.32858569302981266, 1.6318690943981657, 0.4038441561667786, -2.177560907029008, -0.07876940698063817, -0.38456837805742944, 0.4209933171930755, 0.28246103809439554, 1.436334417275438, 0.41334090115466, -0.9078736456052708, 0.009161559257671762, 1.6773506725862284, 1.454527583119873, 0.7037570545690842, -0.9458663875554115, -0.015205504007748739, -1.190119115400399, -0.6123161270933485, -0.21846978081758403, -1.027874300745634, 0.5092534410323325, 0.07928997937118816, 0.5982136563897416, -0.1878824998726923, -0.21943204410566008, -0.31688367389823435, -0.41017437066102413, -1.354433856686932, 0.6079693802415063, 0.48096044820227524, 1.8695039215355078, 0.29450754260295475, 0.1852534482904192, -1.273802066844296, -0.9097065797518054, 0.18533537280349383, -0.6746650668474906, 0.4661080677570407, 0.38768225965503966, 1.8858087670699153, -0.26555423362688174, 0.90503720705257, 0.6078989828586676, -2.2241615833284096, 1.398185315587371, 1.0677755530351185, -2.144881299500644, 1.7915047818173175, 1.5066442933970683, 0.08796994718287657, 1.6552751175937277, -0.4850322847640032, -1.2330792219389817, -0.44506608474454, -1.5414219038233707, -0.7521236698837978, -0.22524792476064315, -1.0057680980414032, -0.9989107205098748, 1.2863612957452217, 0.37151201021862695, 1.068307441912445, -0.3301923267664253, -1.148027950952326, 0.5212705113788427, 0.436016643150589, -0.6944962498230839, -1.006200104683015, -1.5230559861678878, -0.13817626082208154, -0.2902300114078315, -0.8201022030776682, 0.19740117945884753, 0.9414435025707462, 0.6583975535060369, -0.3139307461294684, -0.02138859438957266, -0.15392668931704173, -0.4985406696242113, -1.320982437206641, -2.237819439529535, 0.47016815289090036, -1.4981328766878796, -0.8189008573679831, -0.4491927056814629, -1.6457980523937923, -0.32511468691958684, -1.0913795549011782, 0.7927901736416326, -0.4994410815621098, -0.2915439700222459, -0.35529825964766665, -0.7494990912296922, -0.062000013740597604, -0.1978260789283859, -0.9973516578921665, 0.15651782011675267, -1.3207455293509085, 0.20900073894526666, -0.6515896320900817, 1.818319748142671, -0.8823909760134881, -0.45229903485802697, 0.3849352660010426, -0.16856461160353187, -1.023179086754545, -0.8832407280957589, 1.5691556058037324, -1.390725491409789, 2.7130155066033605, 0.3597960080736381, -0.38433530688114104, 0.9208242296050747, 1.1048007532996305, 0.0032696798224831616, 0.10597510911263748, -0.4479237566130984, 0.7279631207689555, -0.9507319399454147, -0.5166983377381141, -0.4917811466942311, 0.1980297181959379, 2.7833381235917303, -0.632243691929746, -0.6326813381471397, 1.2226665071947962, 1.1239947615852213, 0.2404194384241695, -0.7184062200690661, -1.603122080601536, -0.035064742998249104, 0.818325884318347, -1.2429074239524913, 0.4346606329376613, -0.25927168438709625, 0.1881357914023261, -0.7300510452526421, -1.9978274000901732, 0.49333162859562146, -1.7842634331241527, 1.4323237874502284, 1.527563592493797, -0.48847633245391675, 0.6088569477941337, 2.60857263295847, 0.7728648974981245, -0.7394093754207002, 0.3376429550687895, 0.4595972224161399, -0.15318966159119196, 0.5396174803715448, 1.0158488154248033, -0.38126115023864204, -1.3141302231647425, 0.46220738057746336, 0.9763439563508995, -0.6430762427958856, -0.5006466437846226, 0.4683281939363706, -0.6126941015807432, 1.9444419391720604, -0.5402578937118201, 0.8034977559390097, 1.3569318857746218, 0.18776277021260984, -0.13876706139471395, -1.6353212579463556, -1.8816098764739797, 0.07285185680649955, 0.33890186069801137, 0.9871504250011511, -0.7704858096384565, 0.02477915413136883, 0.6939241335431595, 0.14472181000682874, -0.2773144371164642, -0.5021184711449673, -1.073313427773425, -0.7868475393329893, -0.9083351145398331, -1.2074656230236973, 0.3237046955676736, -0.38551408198602416, 2.0322810607069406, 0.1273064596330534, -0.20523320610180115, 0.42360460301952835, 1.520854580297492, -1.6866271013516927, 0.5100094443778703, 1.0783434117094415, 0.31864720112125117, -1.0217943521942818, 0.09652487879986445, 0.08060262861943893, 0.3618962546179574, -1.621767719445639, -0.11494737245293397, 0.1601584540692777, -1.460462858957861, 1.6949523823659192, -2.144259369909093, -0.2664796247735228, 1.0325946450936758, -2.511812303670888, 0.8120473033549517, 0.35943375891741086, 0.3639026597701798, -0.11168918536395514, 0.3008759312952125, -0.7892101536965831, -0.24272962308268642, 0.31230911321339927, -0.13970293957932822, -0.6015553787164917, 0.5716227946842972, -0.1778134792732028, 0.5495319070677197, 0.30485956135022, -0.9246985600222903, -0.5523008919110106, -0.5434355008758494, 0.11616052143710012, 0.5116944364416354, -0.5738891425947044, 0.47144662940993304, -0.8797981853906074, -1.3179592801317968, -1.466737137077482, -0.6132858793477015, 0.1773833276084961, 2.0171643810369284, -0.38669630439067404, -0.38226020520098564, -0.3516860168857293, -0.25332493822040364, 0.4175491450316119, 0.10029711081122832, -1.4833473064525724, -0.39204888448136577, -1.1856910599072448, 0.4702876287769995, -0.939569706351798, 1.0489766910639398, -2.0349087405123467, -0.2100983944817701, 2.759596544625284, -1.2586845322703955, 2.163469784971739, 1.6911627043942385, -0.20513079673412518, -1.3132674723144853, 0.004003767200768431, 0.26723709562143516, 0.8653017714803675, -0.17183864670062657, -0.2885952625852187, -1.0936503201319077, 0.35568718032584445, -0.32108867495577226, 0.8766406858556492, 2.0315600241561564, 0.6399175498949163, 1.5856576787919396, -1.3728725803109247, -0.7270255908471762, 2.012661026204715, -1.3588089094925255, -0.19123878401636332, -0.07142996672678552, -0.786635997054884, 0.8128144893923631, -1.454788589433619, -1.0412686989968665, -0.09306042678422881, 0.7949355778384275, 0.40329288636136684, -1.387335137672327, 0.04667285463625553, -0.5356179771050571, -2.5263024808580186, -1.1615584623697743, -1.4609005258878394, -1.3970246147943464, -0.29091318209556555, 1.0803426757691694, -0.7917032725341046, 1.4805243396053158, -0.3975051301862165, 0.6860256144088553, -0.49361156771056397, 0.1269221582848169, -0.5043003209551523, 0.6775958913482442, 0.5025606107979756, -0.8711389752161975, -0.5333608698823549, 0.09455846627319738, 0.9404976718259966, 0.025350983416770115, -0.40394383330472744, -1.404135119396682, 1.4066223977060197, 1.271565193184925, 0.22746404978021578, -2.5079732217669624, 0.08633800723132483, -1.5980902022816785, 0.5135183820983608, -1.5965714501320691, 0.13946040281457187, -0.5359380585396389, -1.0041792582437874, 0.8659038421082969, 0.6128553261696497, -1.0295993550441886, -0.2648113722829713, 1.8150455514114503, 0.2691092583221816, 1.3695149532423692, -2.2722753439419563, 1.2744525734282028, 2.184681995043059, 1.23772208962733, -1.1250282510487206, 1.3188660514799415, -0.22408511169043563, 1.0483984080926732, -0.7696436564996114, 0.289338192172258, 0.22299547332738606, 0.785556922340397, -0.7633912889090508, -0.9121181204876747, -1.330517856004586, -0.3285058406315618, 1.017050892241521, -0.06374028718246814, -1.9250061100877467, 2.896398659231617, 0.5731143724458022, 0.34404086175424775, -0.4343036457889101, -0.11051257278780159, -1.5660903128899764, 0.08912105773888254, 1.2547561080062748, -0.4754234635020654, 0.053788364367101306, -0.21878812506524864, 0.043903115133922276, -0.29548388838664613, 0.2723330561114115, 0.5965753525137271, 1.5572022651105388, -0.09952066956078329, -0.05594805437715176, -0.4174102539774161, -0.44994039808771036, -1.0411804330574557, 0.39126120420045324, -0.8101899146266137, 0.23584597009701855, 0.15222189091499458, -0.20760219616632053, -2.111362182968109, -1.37865042026111, 0.6443782002940396, -0.7224122210881836, 0.441243254211987, -0.7561040066562237, 1.9085358157975565, -0.39291817770611837, -0.1946353533238349, -0.4381751726880767, -1.2241841751820095, -1.4517419106512033, -0.30978593262981574, 0.986619541457771, -0.028765434649403496, 0.1800523270415457, 1.677870703296189, -1.0722217125377178, -0.4055968229887505, -0.6993907382219304, 1.2211196369183106, -1.4762793394359168, 0.7310652687403069, -0.02405858009399211, 0.7146592484789612, 0.600052849391608, 2.1457238967391636, 1.0510003097534129, -0.9855457373082075, -0.21800071254107037, -0.3024699286242067, -0.11911980522575548, -0.00034039581804247725, -0.4433477152754449, -1.324504811721101, 0.15561282083163705, 0.488374576629938, -2.0555821103414536, -1.0194132764435082, -3.16448689724939, -0.055746473952690986, -0.752137048145215, 0.5825474554561537, 1.8815054763215564, 0.1484543097790508, -0.6403394120122403, -0.23470474559294463, -1.7998200432516565, -0.12620582451576, -0.86350264717736, -2.3125502685095793, -0.41944679720929806, -2.50476572204303, 0.3672139651193345, 0.6163567076120366, 0.3589089258290602, 0.224687353591669, -1.4012843644986415, 0.35281480121610354, -0.6763738182478293, 0.5928763284314916, 0.595324078496259, 0.8453398341330722, 0.04845408957924014, 0.19738925407439803, 0.3580391374672705, -0.3273286778228579, 0.2240275827344041, -1.4302914616429228, 0.9116716912141326, 0.6560511323568999, 0.5086121887195466, 1.9745150844016806, -1.1837325737670856, 1.588035739340971, -0.9184350476507359, 0.9994677652880436, 1.1986243214575756, 0.04866847531996911, -0.6981328658273932, 0.17467087689512356, -0.5525465266222453, -0.8426853924226418, 0.06731239372824038, 1.030069561205925, -0.2753737814410116, 1.7533232432496675, -1.0240686253720712, -0.19473556205950956, 0.3225733255348988, -0.42543809073227684, -0.6326697861205487, -0.8026133948571178, 1.23027042014304, 0.5631377122767817, -2.2081524538561115, -0.8927398443222732, 0.21630309909243814, 0.7774696053852604, 0.9052398095608809, 0.07745227734266374, 1.4394866460845885, 0.2961345075696296, 0.5762408803348729, -1.235788288373898, 1.4098091911750361, 0.5774862620529284, -0.2744604957961235, 1.7679462908528285, 2.226662617169826, 0.8655625992394294, 0.47153596147249455, 0.8131557799485352, 0.36954905407006167, 0.43453989883077987, 1.3290476931922548, -0.7031265069403586, 1.0176923620680245, 1.0811304532481003, 0.22608766745722383, -0.07175041932631568, -0.2779152423384845, -0.8566734505754381, -0.11433506975653265, 1.647855614778731, 0.5967093822733974, -0.9367226329342141, 0.674389022932918, 0.19237231105984612, -0.9576590883811961, 0.4436531680896288, 0.6032514044588626, 0.3429036865105235, -0.12096552607075592, -2.6926631512478343, -0.6223527693941833, -1.7552151960503748, 0.028226238799943494, -0.008717574789369454, -1.3699859390754259, 0.7739740221254703, -0.8092851599715979, 0.9428018939780389, -0.2130175188214162, -0.13865449211749298, -0.5928246176051689, 0.6245737381597203, -0.9641246498164485, 0.33767390306086353, 0.1557560120441494, 0.5548793793235766, -1.8953956633823468, 0.4313441753806578, 0.9295254573402154, 1.4460248305242984, 0.2248703934471896, 1.3012141121545153, -1.601351349095902, 1.3083784678309904, -0.27168619873112076, -0.4157121265208002, 0.8637691458089574, 0.1858815712225092, -0.0948401475245112, 0.8230452405281227, 1.603849355301153, 1.3812703610035992, -1.473672268548474, 0.9721328761709044, 0.6620841410809535, -0.929977509717121, -2.05295947407272, -0.9598435657246609, 0.7827836611965168, 0.2891935886255443, -0.14666855429297654, 0.7835424405299033, 1.860554233861171, -0.6103086145592869, -0.8558000275574148, 0.6577708840619333, 1.5303045236850208, 0.4565292235154764, 0.0011140298268788574, 0.3507746016589944, -0.2208959407075781, 0.3065847078885377, 0.1523222408941919, -0.15686326261596614, -2.643590850269943, -1.2722936859946081, 1.786007638012353, 1.0568749189358035, -1.0299380428849807, -0.027860344043930525, -1.2957081932887435, -0.7080833433850008, -1.6865528952120492, 0.4028427072756259, -1.0033433626581505, -0.2003561965939358, -1.86433468995973, -1.2674008508390018, -2.069611944761136, -1.0971257135416215, -0.5142583507679985, -0.4297360954191278, 0.5853064790580559, -0.0563084811379513, 0.3831234598993797, -1.633153373454397, 0.5605817636532185, -0.20772968678518758, 0.12929774591850174, 0.6291693457759224, -0.8804349928358601, 0.31260025182449763, -0.47757191124506143, 2.380930718060098, -0.8345662686880485, 2.195981425217996, 0.8759676593030258, 2.3373496874876136, 0.6516874045597596, -0.07611737468517041, 1.0112195224048168, 0.8358092167351142, -0.07784976715556724, -1.2861620122917956, 0.47753753906542273, -0.36409178993821534, 0.6371300900106943, -0.0059077124207985365, 0.8189416179401696, 1.9796554354806435, -0.7541813131862809, 0.2508913199930184, 1.1892827791172222, -0.5178515022529027, 0.6449304779761846, 0.09138327408804003, -0.14710689307352318, 0.647524089371481, -1.0800221580637424, 1.0276588785339638, -0.4656156280716521, -0.5215770845666415, 1.3821695267645089, 0.7356056607431609, -1.377602157132959, 0.9870030370898764, 0.7619189184015919, 0.6917128566379109, -1.7870976466514445, -1.5423412276960557, -0.2598519437241365, -3.145816237823775, -0.9623550752306754, 1.5340224307463162, -0.33336841569914716, 1.044011261951264, -0.9738794715821453, -0.46041746972458897, -0.47842567470552544, -1.3403447973120253, -0.7735962523993969, -1.1920757240934312, -0.09141034973167339, -1.0150359036223495, 0.5990213642358049, -0.5506937109341463, 0.6042697522307132, 1.25744574047239, 0.5407272826419579, -0.14662600744201404, 0.445568504778143, 0.4244372473483759, -1.5564510084789207, 0.4765159817835144, -0.37296922064777177, 1.5803646177487751, -1.5362096652994066, 1.516265410931082, -1.2336166314878816, -1.621622764136409, 0.6553686905726539, -1.0425793912878312, 0.6183115419831796, -1.027685892707389, -0.4490279283223307, 2.5234524732298227, 0.07710053599387916, -1.439566804513556, 0.5804182051681257, -0.8204945601735947, 0.8601827725000539, 0.0410331139277709, -0.2403410560748359, 2.3848644073820893, -0.19947256591824802, 0.2315315358140379, -0.023888092235281076, 0.2008785450193429, -0.6162196086938251, -0.5527226204603533, 0.9956650261061418, -0.23360168442186938, -0.7109253847059404, 0.08912625179542219, 0.9624333314523429, 0.42654592589051454, 1.0616826544912357, 1.7057806154366995, 0.25933738653137184, 0.5546089586497402, 1.1851404420710736, 0.9761320979853968, -1.3770942030861733, -0.3723095875365544, -0.05356575754515023, 0.16614219223171503, 2.0188927978484057, -1.0602183959112237, 3.0455004242643033, 0.48597295844043753, 1.3061499430238241, 1.4409375740219246, -0.43815393656790097, 1.1069267782543617, 0.6870640927622867, 0.644051308010236, 1.1437974620240732, -0.11573021239161514, -0.7472855326746164, 0.5029219275863609, -1.271401542226697, -0.9264143914413624, 1.3677825278496394, 0.21817284873164755, -1.2352075837261205, 0.9823756651080452, 0.6737161085074884, -1.1570938478662929, 0.37050589746257195, -1.1844387605171809, -0.7546589552701204, 0.3686373364655452, 0.8165315446676434, -1.295631915854288, -0.6931662643344063, -0.607347640112115, -0.6096529868656286, -0.0012503277412323373, -1.0184710686691845, -0.5395097757344742, -0.24689783176917693, -1.7283882212902486, 1.3911427558816687, 1.414121978461827, 1.6114592454611232, 0.6757982338272852, 0.3814744722532497, 0.3736331789495805, 1.51740961414969, 0.8599398297404512, -0.08790175587710111, -0.5878116118818869, -1.9110833616488083, -0.609667521240077, 0.44101064903564813, -1.2543523579040339, -1.7467305031988398, 0.2765354012778444, -0.9478865065853543, -1.0826718891662528, 0.5902809679804218, 0.5751427052755871, -0.7993203356847911, -2.8771005231941613, -0.025000664789197127, 1.0828475589101936, -0.6423478141302599, -0.516752224024925, -1.6317069158398039, 0.027821776888557526, 1.8771699080147553, -0.3476107678758394, 1.0163069863662502, 0.6971144430759946, -0.8234619430067386, 0.06827384242454239, 0.7900899958754682, -1.7909076195657174, -1.2650778039186072, -0.34995306474909094, 1.6286744445214043, -2.804126126372525, -0.8400619430466211, 0.9573550565274621, -1.384710204956632, 0.3634279900633542, -2.174750119922422, -1.3993725038624978, -0.38994440790210405, -0.398988800563114, -0.33762635776878974, 0.6339915022087468, 1.7980632254971038, 0.0608248215017724, 0.13089955572684478, -0.28948211259726914, 0.4599174235056079, -0.38693055583550706, -2.0637584184385434, -1.167566242530738, -0.4888219810422025, -0.05315579098626115, 0.030814628487522474, -1.4965211184783749, -0.639895873715356, 0.6839530337971629, 1.3015646068577509, -0.835034621509432, -1.212647268218531, -0.4739735466556268, 0.413013012914731, 0.12557178206175282, 0.04231420045074659, 0.10483499347852848, -1.7335280922338605, 0.7908124625986365, 0.3644838506188163, 0.4538123816147708, 1.0316544935605902, -0.0772917839975547, 0.7241655071333201, 0.7212275291466641, -0.14746880688462066, -1.4319627752610564, -0.5903960762301288, 1.2049739652283908, -1.3621927729841448, -0.7607127066989037, 0.8572172134353964, 0.31352498070065726, -0.617319775798252, -0.7682064525079801, -1.631136562253569, 0.36940466184325915, -0.028815192274010734, -1.224871887017544, -0.11958278805873693, -0.326109640355073, 2.795746221984441, 0.28644934284332924, -0.5111356180286111, -0.7164727584236874, -0.6345481172773786, 1.3232301900725456, -0.9840606139803525, -1.6348845146097448, 1.233363682358529, -0.43825318925060275, 0.3788725410312237, 0.947862452642203, -0.39583984676360967, 1.162186575745764, -1.1045775734717087, -1.8743938616095857, 0.16106413841338846, -0.4055670595834083, 1.3574096380362373, 0.6456087595726756, 0.2988498405772369, 0.4407878431263047, 0.6801559833413487, 0.7784874842770118, -0.3064603994222117, 1.0898012058348736, 1.0722423658310851, -0.227469731908587, 0.6568746301563892, 0.8858139673229761, -0.10485191215548101, -0.5793823731941977, 0.7640532128770672, -0.2319382820444765, -1.7080345324842672, 0.9086909894816714, 1.9403168675780131, -1.0246075393559377, 0.678187072601791, 0.2964519937675962, -0.7017838330167616, 0.2699591085929923, -1.4326629401849214, -0.37866121703949324, 0.6519933247638586, 0.6270518812545226, 0.9041075309744232, -1.9875548324694945, 0.9263676627531963, 0.4505856795572083, -1.3510174389312835, -0.9075253010238348, 0.16050063842216425, 1.6703514326258344, -1.0125123418239512, 1.4472170011707086, -2.0090706768662634, 0.6211273865289277, 0.6678291398318615, 0.551625635599782, 0.7772017236024426, -0.15590446005556272, -0.11291362132342592, 0.7965251611094389, 1.8066362518216394, 0.8472008255984892, -0.61138976437174, 1.215497415258795, -0.21703716448419605, -0.48509072295157857, -1.2279663778802035, 0.8584449283415825, -0.32162473377462825, 0.45203621718861287, -1.0106926422958356, -0.2780556874888529, 1.4778350668735132, 1.1363062545361102, 0.005483730063784145, 0.03827312907255584, 0.603426891059182, 1.1277847766623348, 2.1855040581081018, -0.9005175363989734, -0.21698527047546712, 1.1254391873171046, -1.6286772309006272, 0.860275104796846, 1.0472091248071849, 0.6255528874832538, 0.45952572612472414, 0.29575431734337526, 1.6526009218688584, -0.19483462366325582, 1.0890686110074286, -2.232728617808051, -1.6057212022532859, 1.0675279683093026, 0.9513592476778305, 1.5644185381398819, 0.8761650893755589, 0.15128878925795883, -1.982655272541698, -1.8203360744696244, -0.3455150561874189, -0.8289577445641887, 1.4172114320322544, 0.1489107970660999, 1.3577458628551617, 0.24331673982702579, -0.48540094080849383, -1.2526468601277414, -0.6568243629450955, -0.1271034247685125, 0.7289011366600227, 0.5977850422799715, 0.020119102666729897, 2.348192220885764, -2.279054668709169, 0.2988961462600748, 0.27847538350140705, 0.5502631809875902, -0.9854392425324928, -2.4119693861505085, 0.7517511137236509, -0.5205518555549943, 0.8082716592407891, -1.2987209375698698, 1.1974605685415058, 0.7820989013814467, 0.21608096852298644, -1.2583209289648165, 0.17091681304315112, -2.1267218837645574, 0.29157315359159697, 1.578178017807923, 0.22521343205072358, 0.5398650533741052, -0.4649759351148064, 0.9860542378736784, 1.8030657813875783, 0.0035393753519007867, 0.5768743936022082, -1.2116576291415357, -0.8874843607971882, -0.6176043847101187, -1.266694816330995, 1.1098399500764056, 1.787515114839981, -0.4926351946792177, 1.1788355679620093, -0.38387956795882955, -0.25788358005377177, -1.8967982899026663, -0.5493826573191822, 0.13371103207965815, -0.31161435442752483, 1.1665781457275204, 0.5175011337942391, -1.0132215093504426, -0.01802717451294198, -0.8413938933178177, 0.15344490587246512, -0.36109738984122874, 1.0203129423070554, -0.2374944041235469, -0.8536737239072846, 1.4956234927002652, 0.7702811260380239, 1.1065406012104833, -0.2977282671214654, -0.30372191868402887, 1.4277124355365824, 1.1872225696224674, -0.35767114757221274, 0.8364286161664025, -0.9251008694667076, 0.3164355164226928, -1.6493528305682872, 0.5636152548573206, 0.6188233770916577, 0.5620077038811001, 1.410241764217623, -1.2438508954227494, 1.4685814856947979, 1.506078461927225, 0.16814591464350317, 0.551554439698488, 1.0143394645267554, -0.6775634410497616, 1.0873668286295999, -0.6390479917293335, 0.9142412587260552, 1.6626287464785128, 0.22553568550319703, 0.3600982950279396, 0.3260513196331892, 0.6477760912705641, -0.38974505674524523, 1.6570170463551526, -0.9236412513332101, -0.5968655943644914, -0.138528483829241, 0.1947270593927839, 0.23789522718590644, 0.5328270170688367, -0.40322878791782646, -0.6305423991177057, -2.2427663657922094, -0.6728785640919827, -1.3531692509293898, -0.3704285226255757, -1.0194764640769298, 1.244430395350322, 0.7397206945047885, -0.6890463652769238, -0.6962092523692974, -0.9050913391709324, 1.864090620951877, 1.0982240202750144, 1.3555655016899026, 1.2885257540797281, -0.018636514758247524, -0.19517449689933591, -0.22781350292612382, -0.2737476474767307, 0.20371990896838604, -0.8633831908038723, -1.0290945391335413, 1.2158597318053594, 0.7076222207287468, 1.752461531687805, 0.4905145667427816, 0.0435578454147679, 1.1448854548780212, 0.8394376704392257, 0.17390703436382224, -0.10761165716786449, -0.6603184827628747, -0.8171728664393244, 3.1078762213282896, -1.541915059413572, 1.305150555550274, 0.15140124422959625, 1.130410164901185, -1.7324347879144164, 1.5127093631985191, -1.2770941038787345, -1.0478007551516544, -0.8972215255978083, -0.00537341384005968, 0.3999268248659704, 0.7208513255376617, -0.963839910614559, 0.3451219505793379, -0.07467636850994733, -0.18556059806431477, -1.3862828701425352, -1.7159209453624795, -1.2068279181623844, -1.2622064338748114, 0.20830209254522972, 0.2101952563957882, -1.3681068935921734, 0.28120908519971877, 1.677952510483379, -0.23819390635662616, -1.1091380476487733, 1.4135661156925912, -0.36937569900608047, 0.8916374340642274, 0.264905480717181, 1.345524543527311, -0.022615046656715945, 0.1164336002422732, 2.122793357995469, -0.8306119796812672, 0.2914471393623152, -1.2184978230211412, -0.6358193479115983, 1.1631540714274402, 0.13171383735782105, 1.0951378369481477, 0.9568678322933482, -1.3573477969255026, -0.1274690077200185, 1.3853545872964934, -1.3477954585068275, 0.3969698684074019, -0.4862630320478279, 0.44405971914205994, -0.7671757977948436, 1.4801473072985019, 1.0315992289762153, 1.6294375140677626, -0.5854510059730104, 1.6052442390294153, -0.7056050553136883, -1.254193415605216, -1.2889227178759932, 0.567558745830371, 0.7004897941031554, -0.9213106829377351, -0.3688709124434719, -1.386382521475918, -0.6782078610369424, 0.1469259611773214, 0.7472653611700936, 1.0759395711286521, -1.2908109797147898, -1.6145322154122395, -0.6316273198881904, -0.03966632595506525, -0.7738777475441039, 0.5206900724761098, 0.41357842586989185, -1.5621455702647855, 0.8795377507144377, 0.04084865663234677, -0.8038760514238186, 0.46301085886259447, 1.3454749027296162, 0.3803913532780637, -0.34135375697519915, -0.16572223164067665, 2.1431980274643334, -0.1693943483221121, -0.03987870505338457, -0.0614774661366384, 0.023658268726529486, 2.605955492861656, 0.5755770734261527, 0.22017264606488154, -0.30172115768809743, -1.683607042777077, 0.5341157622666006, -0.46725343984142464, -0.12899020726181942, 1.0662113780379874, 1.7828483583792054, 0.5443142169586421, 1.704677081717131, -0.6256652488655283, 0.7007870153891645, -0.932976474082457, -1.2217924558007909, 2.169054344034899, 0.35958449257202374, -0.8731221004352216, 0.8809146798053291, -0.3087865271511756, -0.18964345500445773, -0.4398177877175772, 0.0704390124493087, 1.1944331456664663, -0.5444449917104444, -0.5589971357543414, 0.3994893874637796, 0.692584962322806, 0.0955193720694223, -0.3977892738870252, -0.3885000491252764, -0.049999814486257184, -0.6799533550580734, -1.0156217649473909, -0.7126666828638722, 0.6439055104784857, -0.007490570676847828, 0.46466172337826644, -1.3622301039783082, -0.40276451019895254, 0.45229438554357826, 0.44584299639702757, 1.429312739958449, -0.29288241345430766, 2.070666177897338, 1.2190781827106476, -0.3071024250793863, 2.1961751375634186, -1.0120656745559804, -4.321882426849608, -0.12729963120209042, -0.7459346731816884, 0.47322427294422675, -0.8130252274798113, 0.6844243668180818, -0.42983473419071266, 0.8132745732379523, -1.3239506037473125, 0.7709030522164151, -1.591292877333247, 0.5460193399212381, 0.4630692187135789, 0.5679376374209514, -0.18926015781610245, -1.5894294048985138, -0.9863377589191175, -0.3294646776075691, -0.20666687634955383, 0.3932366015002711, -1.1204037813966483, -0.7913480818568898, 0.920070821976142, 0.014296217008533047, -1.338307902008381, -0.5004802654245469, 0.7225334145425155, 0.8893522914202148, -0.09972264396141627, -1.3893339166133956, -0.42578058089799964, -1.6093371346752785, -0.9270616914270411, -1.1785496729384524, -1.221830269189118, 0.9019701166445875, 1.1135331368287826, 0.0756463458169843, -0.767883818848578, -0.04232433170163096, 0.6607248352897648, -0.10825798613967358, 0.3434602897938279, 0.08663031385137414, 0.2550866311351666, 1.8631633137480395, -0.4457133763599227, -0.45352445901944916, 0.16784471194263997, -2.1027251614858566, 1.6525232313643083, -0.9999218631298581, -0.3239964557893873, -1.1662551400295014, -1.353440791697224, -0.6163901201764491, -0.9526372547277872, -1.2992951157354875, 1.0339769267753989, -0.34421039609772697, 0.7805729663597842, 0.5839316386244358, -0.8257347549326219, -1.1307210726739487, 0.5073437280198312, -0.7292028332606773, 2.681781476678134, -1.5467355785076937, -0.40353130244441837, 0.40745066584942896, 0.06874638344346967, -0.11534431060809515, 0.2040478905370851, 0.33143308178227154, 0.6545629994921552, 1.6387516872638015, -0.3181631670942101, 0.26060196926237095, 1.1685315272868555, -1.4165591468751721, 2.129190446470077, 1.2178939617951718, 0.2504582776452201, 0.250377232553905, -0.11012735871510042, 0.23189145204133307, -0.6985711562620065, -0.2143087055008841, 1.1237632872644683, -1.0665780105287084, 0.3298932428667317, 1.2393357686264155, -0.9265390943822344, -0.19002448575922706, -1.2682379809067381, -0.6519973738502087, 0.42671068427610925, 0.4923684387981965, -1.0863665000081426, 0.33609646559076317, -0.0293842321529386, 1.3930267064373738, 0.17535241059739629, 0.3764901556819735, 0.010881890079839775, -0.5553529621941223, 1.2569419068835614, 1.3495398064190556, 0.1247322734112228, 1.559975064476249, 2.4839557325684223, 1.4105675181394548, 0.10502055765854955, -0.9659845006161295, -2.0044784213937104, -0.7293769887870206, 1.8094283963664708, 0.5001805879767082, -0.3884098792708156, 0.390059829365249, -0.26373320996883715, -0.643760099994833, 0.7289963494564646, 1.7670129058017148, -0.5997801716246955, 0.47375302143223297, -0.26292369003187394, 1.6824143044639015, -0.03292569690162835, 0.10700206775480707, -1.067922440131695, -0.9152900794089502, -0.0712777834351938, 0.49443861807932843, -0.2096323894162913, -1.0433892137390928, -1.0515478925655417, -0.2213161669024299, 0.4760364819209901, -0.0243704091848942, -1.593212006624696, 0.01841071140188599, -0.6475923530798638, 0.1369324454430227, -0.7924717767942273, -0.26463721337375073, -0.8382403316245132, -0.48608550255648636, 0.8478989724125294, 0.7848959607725609, -0.1845320085568047, -1.3389043873856732, 0.8060667004441014, -1.4924199591120264, -1.1875924096305284, 0.11912731347240361, -0.12315214334838408, 1.0265957168773125, 0.47436209104251426, 1.3632947416546626, -0.4739264948243223, -0.08500105821204555, -0.9890133845533822, -0.32153307337271714, 0.5309994125118281, -1.4168343290140972, -0.43808449194117133, 1.082205399885842, 0.9711315254160472, 0.34957499423986466, -1.535948328470984, 3.002617949886674, -0.7569703450228757, -0.9034280892260941, 1.440831050041705, -1.4664154595803456, 0.11366668362788991, 0.17711516188565202, 1.1024103582728257, -0.864626960333769, 0.5984780493186496, -1.3890429606441044, 1.7706629803877731, 1.0419955094517346, -0.6330182723487185, 1.0313936233928533, 2.428804396679501, 0.3982255299759848, -0.8430816972044113, -1.4566992047080798, 0.45388143715350193, -0.04577943963757807, 1.0129726423251129, -0.1153756990817216, -0.4798549812421359, 0.4028549696748408, -0.9264609348849432, 0.609086370989298, 0.8363469552101594, -1.6059692077946872, 0.455748555694255, 0.4629938046188882, -0.7534144189231894, -0.6756909591875545, 0.5320298393422119, 0.8236758697317098, 0.9921602352385444, -0.40575490260979974, 0.3462838435476621, -0.08417627551864894, -1.1823507327106269, 0.8555847116936168, -0.3967591298756763, 2.1253337858658803, 2.3307487233458577, -1.2068688805407688, 1.3911389163011016, -0.8597493974959058, -0.9125076699162928, -1.430116114446761, -0.730177959226342, 0.24020756026369994, 1.2053297947882609, -0.3719681557619307, 0.6096093170332495, -1.1161054475003964, 1.1662712304111462, 0.7456514611723972, 0.860951384648725, 0.765822384164503, -0.8398329721826491, -0.846663178660282, 1.7231546515424734, 1.707231619401524, 0.7584274176228721, 1.3785755972804472, 1.279013487880647, -1.1419625545650884, 1.6626745741206514, 1.2772814354173532, -0.37063259867530185, -0.10212193344820095, 2.1941468937695894, -0.18064433376490757, 0.6720359981224706, -0.8627811492833695, -1.614638544120723, 0.190336640264501, -0.7002066082896464, -0.08540485652835714, 0.866576176301203, 0.026156834774777933, -1.1109119127409421, -0.40726493893528637, 0.33548820544630537, -0.19904261709334078, -0.16879312895660595, -1.4781651398466003, -0.9751588368289028, -0.8424378155803023, 0.32029642084320575, -0.9167792471613494, 0.1765556030908457, 0.1519164602902469, -0.5112274738277908, 0.28621762957743896, 0.13535529831841148, 0.20624852673069777, 0.680424648929972, -0.5933940553475869, -0.5848939714023935, 1.7828380833302033, -0.03373232768955084, 1.805795165388943, 0.2640797268791898, -0.5089006098006965, 1.3334696817232552, 0.01025082686199819, 0.06423823378987653, 0.47587604651216187, 0.12162529215502843, -0.5103893253449808, 0.6586640126355124, 1.3448486603099208, 0.44684316902784105, 1.3844162124956343, 2.3067174987328833, 1.01509525934641, 0.8378805197082984, 2.305013142467265, -0.27058021897216283, 0.7559018158373692, -0.6069284838738905, -2.894778700253956, -1.7593746147241545, -1.21996430926192, 1.7329026758402808, 0.8789410672930597, -0.700704604737204, -0.13573126462828186, -0.08168344916573884, -0.13873164946087016, -0.4848721867828105, 1.144057766549525, -0.6689984119985573, -0.9826375486557429, -0.9581483154863076, -0.521228855144938, 0.8151550812007627, 0.5062787709593422, -0.46101729310603323, 0.5270091004171921, -1.180235389242347, 0.24842304300356655, 0.9005601028181647, 0.9004511850228968, -1.0002259456547709, 0.776521878648541, 0.944254610998281, 0.7146441769253652, 0.3778662815434819, 1.044783935758092, -1.7640125726778373, -0.8021526453488255, -1.170823421993785, 1.5580402439792067, 0.07165104927380332, 2.14414695988635, 2.3038552669573527, 0.06334987600906308, -1.863169742772404, -0.6252422505167706, 0.36800325602308986, 1.0825413664639103, 0.42426927853355006, -0.8967898952439692, -0.038323026320575666, 0.021829234970664458, -0.10344018015131509, -0.5123442703756934, -1.4416794061364804, -0.6579707237558806, -1.1487924207113362, 0.038546455827051934, -0.7599470142120229, -2.200150701843704, 1.6518914360175567, -1.1742299106064038, 0.45162787248549074, -1.1847735807141124, -0.5180345748007967, -0.13418441966577097, 0.2889349344382851, -0.4617577011974673, 0.029993549517514807, 0.7212213080582095, 0.4232718708348828, -1.7772755352229013, 0.7646748341342342, -1.630977982659157, -0.899407497059651, 0.24238573976561123, -1.2677381628967586, -0.539357734898891, 0.10154363066596445, -0.3021925799593575, 0.5751646886597027, 0.1288650109535816, 0.6535648659862365, -0.18620736350329492, 1.0543737909369464, 1.5027520210397636, -0.523587309624329, 0.13927946083991224, 0.8622292338845516, -0.575802319092377, 0.19690751514950525, 1.064046243145567, -0.04011815459681672, 2.1571764555156627, -0.40704943553746337, 0.13800878743656664, 1.1335772274430371, -1.121105698516819, 1.4336947873438712, 0.43094272539279654, 1.2692311942495902, 1.1226903418569154, -2.4809090152894644, 0.16280029230014575, 0.19867207467012446, -0.2599388859452363, -0.8768951564112543, 0.26187416643302275, 0.1358022239305383, 0.22726527008505873, 1.999263929785225, -0.8777651742252327, -0.9184620848976198, -2.0751794070358494, -1.6235111157376136, -2.0804533861350034, 0.6039012635017421, -0.7558768621296507, 0.0866527522579152, -0.18207598508845665, 0.7768953654123744, -0.28270754009358373, -0.7458146029068782, 1.0817291951704613, -0.9707172135882318, -0.11897239531073918, -1.9509776435911097, -0.07319292931942258, -0.5519900221898902, 0.8732221981983421, -0.361119552028984, 0.286684584665169, -0.42673787145671543, 1.9868884204139754, 1.4181867119923854, -0.2970083896596907, 0.8296624283771451, -0.42048628859458737, 1.7464748633325666, -0.1303158727415136, 1.5501398042756849, -0.3080457266731772, 1.3011433043043987, 0.3186589798016761, 0.45430548798850434, -1.23412443440754, 0.548175498524223, 0.31979196918068326, 0.5576470863541421, 0.35628662376743386, -1.1895646314102941, 0.06752439470695983, -0.11576113460708866, 0.21006206588083967, -1.685997827640314, -1.4419841325340361, -1.4977553410135196, 0.37231000676921955, 0.122213355750954, -1.9010278363125312, 0.7218985752424896, -0.21197062161902502, -0.06211658040622936, 0.5538568779628634, 0.49513908498248144, 0.34396882414121266, -1.4130912925995711, 0.36480003126480554, 0.4892073353366695, 1.3196853172344893, -0.5553254504834878, 0.09354141273692271, 0.8019774736102955, 1.1066424091518903, 0.4925876450237286, 1.5448044183068426, -0.5810613776005086, 0.274443133414777, 0.16366686410421552, 0.722552611517562, 0.680685970052742, -0.14566119854336035, 0.8200160907396974, -0.521660188284133, -1.306618564862491, 0.2510350978139122, 0.43258518150356806, 0.08944123753425239, 0.18865949598602555, 3.2009561987393704, -0.46372896326392454, 1.2122871182385204, 0.5102445526575862, 0.22432300782908823, 0.5796150568497023, -0.20734814690635303, 0.9434843511530036, 0.8684011522277019, 0.47590631386526366, -0.5173032131376533, 1.691236965601738, 0.4979178612375434, -0.9995291097971799, 1.8520534212899287, -1.5079697451328995, 1.8153742079973108, -2.2018234845358013, 1.4726923902632751, -0.739822128209386, -0.7542110935586673, 1.1328586965508205, 1.7384919669066745, -0.013586152366287112, 0.4339674005479298, -0.7857285872276158, -1.3467561575775215, -0.3478871416168909, -0.2771099290191194, -0.13634116007124653, 1.2184222518358023, 0.21026546868262047, 0.17731727068912417, 0.4253105797706636, 0.16207835692783773, -0.8687907477421396, -0.6075233768655802, 0.4382484843381458, 1.2983828138321718, -0.6800324527240112, 2.0844058076632566, -0.016370362657048797, -1.188045719811934, 2.1338459477057894, -1.9554926310707992, 0.053699902176932005, -1.0830823751708596, 1.3190401367357691, 1.7046878836071966, -1.1249157204132858, 0.5626743238689705, 0.6256635674617327, 0.852077610434555, 0.8308327161960521, 0.23059659812361247, -0.009073937208235865, -0.3930308043950986, 0.3274491292878861, -0.7209295777838671, 0.0005852251906558233, 0.06402110807948344, 1.6718184783347234, 1.18623434819697, -0.11664300253718396, 0.3961984920698558, 0.3675986203084056, 0.511426965666426, 0.0574987426652188, -1.6951228541101142, 0.666720320480182, -0.7194485342315305, 0.6713817195563945, -0.7060437339222202, -0.22593559610224337, -0.7424658460767292, 0.2523003620256371, -0.30763411543509306, 1.1503217407753084, -1.6770939771531805, -0.2751223631500598, -2.329854022964458, 0.8336859361082065, -0.048603964599579, -0.9803319427618877, 0.13798185680859848, -1.2125736487541856, -0.403944379066304, 0.12678455519465578, -0.8386983006868892, -0.4802833075486198, 1.390362834429178, 0.19340226215975512, -2.1160320733183076, -0.12568772683790236, -1.3101347931806717, 1.1775571860874459, 0.31494837741537396, 0.30904167658753495, -0.05708175531634617, 0.000376193873383693, 0.6237093426800486, 1.719333995939041, 1.4929752273907932, 1.050222565923861, 0.04185582794537828, -0.8778376953291961, 0.12838597865036694, 1.8898618329814858, -1.087384096102423, -0.7417091705856996, 0.8075896386357849, 0.9681837952117446, 0.8224766526228942, 0.25123063802350276, -0.668570958014422, -0.9110329394401754, -0.15081609783123787, 0.24025459624193257, -0.02804543146431474, -0.895465459904534, 0.848161161400705, 1.0890068748886668, -0.295654206268701, 0.1080486796504829, 0.15829122287998842, -0.3018772344384114, 0.9279987127368553, -0.7037880987465792, 1.0968705713527769, 0.5479778422647976, -0.5377950383610928, -0.7757744723277121, -0.2958047413681778, -0.04524228767911854, 0.7794243943376535, 0.885113472340874, -0.5340296687324506, -0.41507560961661827, 0.3905152103440553, -2.3457868559488677, 1.372810531573949, 0.46230190528836024, 0.06278832417637109, -0.8051966903808303, 0.06520334285229298, -0.30796580101840487, 0.5796814233012152, 1.1570128845514287, -0.46468204422779885, -0.22175114475506003, 0.784856966952911, 2.543777308615384, -0.5034321869196873, 0.5192752740654122, -0.7739160099889117, 1.0393300290335443, -0.9118154019659482, 0.390786054774058, -0.20352009805685262, -1.438637951076713, 1.4662704372683792, 1.4643963933544335, -0.41943816850143967, -0.04418659565895884, -1.6815798639129134, -0.017944794714579257, 0.3076753860495625, -1.1656786362370497, 0.5943771349985283, 0.19580217682708326, 0.7717302257521577, -0.775419886565894, 0.6071679989189029, -0.2817431193347154, -1.1100653191143677, 0.5737120090212582, 0.0804499614271978, -0.17770345428367504, 0.6631167881158129, 0.5335350478078111, -0.262512514522916, -0.19896825444210842, 0.9156882699823081, 0.6247996927862136, -1.5384912590249242, 0.5658428470749338, -0.7085648433221019, -0.5535179990000407, 1.3444013287575403, -0.5231137791916645, -0.4687060623908312, 0.9805973272702457, -1.2185860966754685, 1.3546744891361664, 1.6714166809860727, -1.0521739184387804, -0.1566368953852011, 0.512243585930956, -0.18044383140089348, -1.2826543241112538, 0.4767107500788654, 0.07306622147505382, -2.227849758729338, 0.5268880329079968, 2.206741262863337, -1.3551819567659589, 0.507217626135269, -0.7653005058146856, 0.05028058878644738, -0.9664821765778893, -0.7209645828450676, 1.0234880633564432, -0.6119428639662672, 0.6837814161532084, 0.024136521114261667, 0.27029238777524217, -0.11214252794566028, -1.8887208313075803, 0.3005022663298821, 0.3398324396403472, 0.798932065572626, 0.4800995080372936, -0.9374492288326369, -1.2050279662726235, -0.05153348558761889, -0.7784280306464173, -1.9302182500877567, 2.2924878788374676, -0.737462540245324, 0.7530051888548064, -2.1264246335635613, -0.006979841567971099, 1.1217430408230737, 0.1878761864893642, -0.5934950648641236, -0.9713953403993841, 0.4407906201415741, 0.518270766574624, 0.46271668263112403, 0.40549069568157275, -0.3331228111616412, -0.9753279347136039, 0.6469301702337262, -0.1115496646123262, -2.384676949659626, -0.6061977019980864, -0.08246078628421905, 1.1761771995771988, 0.6707395397759986, 1.048092018779661, -1.5834351092784906, 1.6835361159794118, 0.6394268824226594, -0.461951842453162, -0.18341068403981367, -0.4519219013827616, -0.4663523723630631, 1.3501405815379453, -0.352832894060072, 0.5730639289166426, 0.28712469799599694, -1.9006973187743073, -0.0675255751505965, 0.4689054152689206, -0.47893546269803994, 0.20051927438230532, 0.09430676983595715, 0.8262839444642585, 0.7690378849027901, -1.172105036505258, -0.4410593783617209, -0.3234426942933857, 0.31655310341241694, -0.16607215893665808, 0.2936456562488276, -3.092095984054892, -1.5571507167004721, 1.5694646676916737, 0.6047814919647923, 0.2847144404934725, -1.1610272049193986, -1.243102600022091, -0.07668902341241672, -0.7749988409537395, 1.2378920672102272, 1.157853225813655, 0.44305997888503684, 1.213750152854835, -0.1961169453777937, -0.598491419208156, -1.3477137112669522, -0.35998044819463415, 0.8845001899908316, -0.003844956779717711, -0.970835267231023, 0.06264541564692162, 0.18047578094709185, 0.7629814629302789, 0.6443550971594822, 0.38830862339251854, -0.10727318979890361, 0.750945018722825, -1.4359752118275135, -0.9082211276055696, -0.9305865676490696, -0.3630137172995009, 0.14301139262007348, -0.23097911369712326, 0.31700259638695055, -0.8286575971957278, -0.6135151719082803, -1.5496644770748098, 0.45488155069723696, 0.7171335638753771, 0.7078308243324596, -0.4640791193771184, 0.3710160147423766, -0.3529342836886944, 0.4484318931690671, 0.9928144354276698, -0.40047658606521186, -0.5703017255033115, -0.17931111733048227, 0.09499521692772445, -0.35079465957668404, 0.4218036840918009, -0.8402650075742256, 0.08861215577128806, 1.5165092099012192, -1.1839231726500918, 0.9147276616798816, 0.1529800677167377, -1.109255853027451, -0.17757186772184344, -0.9152099143609832, -1.1364755410952327, -1.2660505009675032, -0.5800553257521658, -1.9175544735971464, -0.1227810830249103, -1.5991715524351888, 0.7011264865678386, -0.3929179994382144, 0.2791393136895297, 0.40501766972990283, 1.1520232666911343, 0.3976300746284745, -0.4669372838698876, -0.09694954966821337, -0.3131916733022683, 0.4263186129048526, 1.4051541572940875, 1.229214204947157, 0.8237989386453813, 1.5116366412708533, 0.2432038821883149, 1.0732816590587084, 0.7401743723814671, -0.37449797094405307, -0.9869949440423669, -1.1031535663853953, -0.5003296756027117, 0.7773156133723444, 0.224729508499122, -0.5816976770176215, 0.36692518986471384, 1.4118653115695607, 0.34058120435761685, -0.9922180710193639, -0.33164355648059424, -0.4953055117883963, 0.45630380359901346, -0.7057988573687431, 1.9795519015948468, -0.7504199847556091, 0.07459103729647813, -0.03578471422045841, 1.5143234996017683, -0.24825822233129322, -0.659336892615195, 0.48057604177099245, 0.949503365670102, 0.4497744221397188, 0.8788984100024427, -1.075467548613543, -1.103785752802258, -1.8993231495260567, -1.4056204405951798, -0.7578520187359366, 0.4120226278544477, -0.9508409160261542, -1.5508809763754576, -1.1036358977273848, -1.3710605666702955, 1.2128190381974981, 0.7145545055023035, 1.54371494180087, 1.1720059835839112, -0.7561604213483236, 1.0357553610548695, 1.9342763598188997, -1.4733806253732313, -0.24117224681274635, -1.194721770813647, 0.35900484146615785, -0.2579004904214398, 1.0697715769795455, -0.8576172632853402, 0.8356817802644271, 1.5113042095485993, -0.9397827132598123, 0.30235444419397317, 1.0355286844535156, 0.2566911038763214, -0.933369919486734, 0.2703193177065115, -0.44694826169731644, -0.16207285035726876, -1.6569454848362857, 1.5412049386948337, 0.6554882078040918, -0.23945100383389703, 0.35435220661264705, -0.8766446910824498, -0.592528924211399, -0.6931108362188901, -0.6538081242354405, -1.0217282276294375, -0.6678157888742743, 0.27354956812706316, -0.7829811423699685, -0.30839046858744473, 1.619543797570751, 0.11712826518566317, -0.4657714855251821, 1.1057548705977092, -1.1090987106545387, 0.11923851653414155, 0.044469600322710565, 0.6773899156866572, 0.30116422447698343, 0.09283639575811034, 1.6673480131545133, -0.05860230449568602, -1.2843602494451036, 1.136861083510541, 0.9676000633295253, 0.7192558036435578, -0.012640410292460604, -0.5166609576247381, 1.713506997008874, 0.39316983081252643, -0.8137348467722866, -0.42937474174503876, -0.3986619183803968, 1.215917362618323, -0.55754965974082, -1.379673222150706, 0.7392683708150222, 0.9033143650606713, 1.0202617850485303, 0.022921046113675788, 0.585720441874874, 0.026136247292176427, 0.5402867509904339, 0.4869432129187731, 0.6273041913823493, 1.0200435939685548, -0.8569292315219832, -0.7364857142859222, -0.010692597082237208, 0.2717148214044446, 0.40669290704525474, 0.24723495671723086, -0.2950587946425161, -0.19498520952870702, 0.7403386456116615, -1.4106784739488833, 0.865412541317444, 0.5383448475951101, 0.5247400385652827, -1.8242826143616722, -0.6014731589236167, -0.5162783198733604, 1.0743469302053994, 0.5212042430797961, -0.4051877763612799, 1.0074917600317985, 0.38820161520865887, 0.4589301710339909, 0.04415206797252447, 1.1076252993209081, 0.8069990750111299, 0.30173352523919617, 1.1716638695323374, 1.0683533200729454, 0.18623060550449982, 0.7051368265508474, 1.1168096583373959, 0.803613811829008, -1.1947407195536994, -0.5973995395436285, 0.5217292830067817, 0.7188433352069011, -0.03284302173752942, -1.852032719716845, -0.24133538064934051, -0.5070562050903181, -1.02142593657579, -0.7823471969699327, -0.8363645074074005, -0.41630626030068313, 1.1558899078945895, -1.8878878976306814, 0.8097835714617955, -1.6001834422880021, -0.3627733375126247, -0.23545755918053415, 0.062389010279921005, 0.7474856946247628, -0.8485240759650649, -0.4543415359782789, 0.4901114137425289, 0.7471469868776224, -1.5915740662203715, -1.4474793434383453, 0.2940626349495817, 0.2961703947124387, 0.4726776733769537, -1.6670393228730518, -0.6394716002387406, 0.5262094935897289, -0.7103119436751588, -0.33944534552497857, -0.4863161668232698, 1.4177162809422834, 0.6537350562121453, 0.20066596639883807, -0.7453880685449179, -1.4234418487008929, -2.6901241084491843, 0.6229730809522429, 0.7007163658624762, -2.3398800523618504, 0.31621865802236365, -0.5937748804001723, -0.03273724693428897, -0.44811317970297554, 1.8301918622904045, 1.9713948420623832, 1.3125297996910972, 0.3280331085500895, -0.804540006828195, -0.5574209077191172, 0.7990147336070517, -0.49132225642155036, -1.2432111818211897, -0.23995008802200726, 1.8519484502838175, 1.408738776332574, -0.6855385190323587, 0.4390741902267385, -0.8898902908496537, -0.3131988799766435, 0.44105567721638717, 0.7283107488853174, 1.5221688534453652, -0.049475550876207336, 0.079695591139754, 1.4412228207096813, -0.05017441410195531, 0.037241148616792424, -0.8980477364172033, 0.36917521949120574, 1.1885098431850694, 0.5323023407980931, 0.6810737890058669, -1.5473709586579434, 0.5686262205275331, -1.4088691284743997, -1.3509407214270284, 1.221780313403125, 3.066856733755219, -0.20927779230157623, -1.8236139739119481, 0.5810879334494202, -0.08820181719059397, -0.2755553142944794, 0.4899446282304721, -0.28397362341568594, 0.34691920494527295, -0.14726138156846982, -0.6174231000086211, -0.975740202008425, -0.9834467778796819, -1.176627020962316, -1.4210519694948607, 2.0459420850328285, 0.047302492579958194, 0.1286085444010396, -0.07151404375220123, -0.3667959103098218, 0.11184045193150403, -1.0803769456790586, 0.4531664840394611, 0.6825767142514765, 1.6703561836117955, -0.6659618655109195, -0.033071827631532213, -1.132863930688785, -1.8640768635433886, 0.23486319671962286, 0.9273301010834406, 0.17596233513865986, -0.32202308449840505, 0.5323621708165487, -1.5655851354256136, 1.4674981345583846, 0.8112138441793288, -0.4008970198519774, -0.45942879238872114, 0.33983787234400326, 0.4447984916507714, 0.8618263991665055, 0.039228340233521466, -0.3900907531796727, 0.8798306730904742, 0.6969180714894834, 0.35603637190222714, 0.2090326245631612, -0.5524133993213834, 0.5898054059767021, -0.14694331167847258, -1.2577283150531657, 1.7689087834089998, 0.35268777324037015, 0.8505058049502712, 0.3480581212652011, 0.6554048556702263, 0.7610642424763455, -0.34758541344988064, -0.038542733356085955, -0.9453248601028881, -1.337729329378984, -1.166757497711295, -0.30909944350822915, -0.8229611191572206, 1.0916041818706117, -0.12680666521072553, 0.635050121646883, -0.4042742643027458, -0.9648802246368124, -0.2695616584345277, 2.1699603890403227, -1.2941934566533984, -1.0595590319271397, -1.9764073729663867, 1.0292514380198319, 0.3489361663372254, 0.353586431219989, 1.1184176866247544, -0.46038057506945884, 0.06299284143566358, -0.2694115774352452, -0.11303316876154587, 0.011657511006958752, 0.2272063607678817, 0.29261102598620825, 1.3875178761007014, 0.9336192327799051, 0.1797838697616004, 1.2155662057671979, -0.3167855516720486, 1.7822145416872872, 0.14839491683600645, -0.8187285842542346, 0.5096829377713975, 0.08084298894202567, -1.5210683925904362, 0.2435153701950672, -0.4378090697716716, -1.3564338786511478, 0.32000124138667985, 0.8302919460079329, 1.8206289993936615, -0.18676438795398206, 0.3891268313954985, -0.5803972727103069, 0.051323259876846376, 1.0848179739540798, -0.342435124313498, -0.7386810175603984, 0.7796247499899525, -0.40092338078280226, -0.15512389918706213, -0.8831609918707389, 0.8778696109691824, 0.11391884922826435, 0.08795213189366449, 2.3269077595879475, -1.2700634027628102, 0.9313050321286124, 1.4772565752820201, -0.8312507078789475, 0.8647388259697583, 1.4302803534813393, -0.7360044497007864, -0.6066299588318329, -0.4993339179239877, -0.08340734674391005, -0.5528918848911819, 0.057586380099408495, -0.529130174728299, -0.5948763906478409, 0.3629534890668957, 2.5152591472006596, -0.011139746723163093, -0.8995513305225147, -1.0778945577091286, 0.34314607350636556, -1.5374565303564551, -0.393494388029979, -1.2453776496408255, -1.3321521957099296, 1.7834849583698391, 0.5690130008120914, 1.2166426045003482, 0.7120717001542217, -1.0406787744230501, -1.1594718035835896, 0.2905626904176478, 0.3522117971114075, 1.0590145050867787, -0.5037548819884765, -0.8435765981237493, 0.03906290900966613, 0.3372069200868572, -0.5149423435004844, 1.4797941464772781, -0.833490620401421, 0.9446822229949183, 0.8217719406892148, 1.6854910623672723, -0.509954491600801, 0.10114161512231128, 0.18720289079739744, 0.5011832795996527, 0.8891981141041073, -1.0036005039234093, -0.1145009733763361, 0.6825157194799552, -0.9104219899653058, -1.0890053021278308, 0.240101732358405, -1.919843280234396, 0.6332836196956896, -0.9422411424740215, 1.2642525311360588, -0.5169108435900126, -0.7593204915408899, -0.9244267826202939, -0.42187636233968717, 0.03747703813109214, -0.22558953109273563, -0.24955513683762243, -0.16750765606790416, -1.173919980247018, -1.2388988465743875, 0.7716880195809844, -1.5016440255121821, 0.920412165060859, 1.0798055581648136, -0.06525264792679045, -1.1857323485030105, -0.5250024401507184, -1.0342746195719015, 0.0940729406305284, -1.34427969697459, -0.033079156940512965, 0.6502931775251902, 0.4431814404743923, 0.16367245670020242, 1.4413507443944953, 1.8492746268284785, 0.139781563523089, -0.6891839070734219, 0.04057570784589712, 1.020568875635239, 0.2402395718268101, -1.2375121446076176, -1.4892633688951773, -1.0733389761442427, 0.08733922376047061, 1.5833043623618805, 0.3814041280274385, -1.8064127577737967, 0.46699901932768495, 0.0528277762146861, -0.25331195218812574, -0.6562242736220489, -0.03906130635384916, -0.15023750138232697, 0.7563335218195395, -1.4759702107959187, -1.4139190816784128, 0.40200152114233245, -0.46503627884322446, 0.35968244329193594, -0.36041025639904195, -1.5852038846962546, -1.4071754525084472, 0.1866029478687671, -0.9624395212196355, -0.9854994774708704, -0.8968412182472838, 0.6378769604361357, -1.7877056640503097, -0.7049276143763793, -2.229791883362505, 0.27811997578971287, -0.8784076663563609, -2.4023184312568944, 0.8983829932120938, -0.1925358551899419, -2.0325605925397183, -1.4768752285721642, -0.48091415813495475, 1.3150800957852224, 0.9984712036175085, -0.8859328863642226, -0.8894777388908258, 0.6722046675964769, 0.7304179280632372, 1.2350428777043834, -0.9101363806860407, 1.5127466386352983, -0.4356529540528251, 1.0472711305273206, -1.2660885569632887, -0.5169534199771038, 0.942525078371777, -0.35680238628533023, 0.007892338743831698, 0.06762034482865599, 0.29641391484225565, -1.069003593725956, -0.43386710263053974, 0.8560329667174597, -1.9807900782392258, -0.4397722064668187, -0.9544732610269937, -1.2051655057716189, -0.7820300534642478, -1.836285903631487, 0.6436976112654902, -1.2396627809636578, 1.5236266194674584, 0.6184731863893236, 0.7820957972958733, 0.1845754490508305, -1.092079002077836, 1.3946673466470105, 0.39917856764061627, -2.3700316903994953, 0.435356746767533, -0.027561839914535924, -0.6793174015684688, 0.9582250405996134, -0.0008799760845391104, 0.8312567661516639, 0.01842616776361921, -1.947455235871812, -0.8685710613937382, 0.13397839243570217, 0.7928743210205422, 0.5462681992461347, -0.5741522555562355, 1.8538197868165762, -1.6687419667981336, 0.27257469411714025, 0.8912076730277323, 0.15878117719525905, 1.3349219572540463, -0.0016800383295044047, -0.8837213813240072, -0.08490417154372519, 0.4092536779052436, -0.49405769876493205, -1.775608683696907, -0.7913459089176594, -0.9603029524065251, 0.15677478173839204, -0.7468900943133361, 1.1526879175098141, 0.25499520706287865, 0.4056887288843298, -1.4805120337288433, -0.28638347297177225, 0.37239166069127777, 0.1309845255441608, -0.3627237152947691, 1.3571099118950065, 0.5379342817608139, -0.25326388245207276, 0.3743745349895495, 1.2410556532819226, -1.1027948314057394, -0.20733637408612107, -0.13971602071928052, 0.5449432150838993, -0.6565440221403207, 1.3256203036966776, 1.6277586816624494, 1.9730242476958575, -1.178311339210052, 0.6836406032983527, -0.1845924685426305, -0.9489183442541194, -0.653205476768381, -1.6262738861173454, 1.3894579783016616, -0.35429184343574033, 1.1670830864382393, 1.359100552922454, -0.8917979554345664, 0.006448797049705666, 0.28822866267197955, -0.5118906873867768, 0.23454027525087245, -1.0497459549477879, 0.37559915053939896, 0.5813762033998001, 0.377144113017944, 0.4600134085798637, 0.27889932015615426, -0.10231516800040448, -0.09740660422288314, 0.5777478396850805, -0.43940123307665113, -0.7257649676808016, 0.8560101133348997, -1.041004667521331, -1.1082610686318453, -2.6039898463277766, -0.2787979304832449, 0.4521371953798305, 1.497229402404965, -1.554322572204717, -0.25896928460950946, -0.5725852752001351, 0.984987575854565, -0.12387574531089109, 1.4975511399723593, -1.022902770045425, -0.5987341206751118, 1.2502244451114999, -0.20958383887539622, 0.06883444404308567, 0.015297866849027465, 0.38814454081513156, -0.06450231237143284, 0.9928313422855121, 0.6003829309553138, 0.09476264027055696, 0.07583205907423629, 1.0802511139226605, 0.6146362429717358, 0.7430735139806677, 0.09683082045632088, 0.4720698631108505, 0.9017038667352999, 0.05697994985721468, 1.0705547034904948, -2.2782463282340735, -1.533233875520216, -0.1831792859910429, -0.5825176379797812, -0.38430149020025417, -1.3573514769292878, -1.3958138917412979, 0.17631044209718252, 0.2896654365775058, 0.7794828137242474, 1.631041317428087, -1.0542868391167484, -0.2118502711563589, 0.9561912033136437, 2.3211992758200415, -1.071234722595075, 1.0374211716974486, -0.24551892394822267, 1.0472515878414153, -0.38835720035066323, 0.5555275448886219, -0.46543023690270363, 0.5923853904779045, 0.30331866043431105, 0.0598099710981201, -1.0510331935321522, -0.3740070768437384, -1.658390025372465, -1.497972375318738, 1.0637329753944227, -0.9592764285262011, -2.3140859996199814, 0.32382071562979914, -0.2406454413940438, -1.335625840086565, -0.7279656151045618, -0.31571505181946813, 1.0653872563476159, -0.09870644006658691, -1.0319130801175862, 0.8041839869040756, 1.0212778057483525, 0.8297190782631655, 0.9042279627880517, -0.3472511808413826, 0.7121581331794402, 0.2916722454741504, 1.911485911463452, 0.4168151256557802, -1.5577455932743638, -0.32070767387371396, -0.6092780260433346, 0.1693139094885847, 0.3626759741460939, -1.9360146598161212, -0.6466244810577829, 1.1204472225198245, -1.390235811298768, -0.4632517403937702, 0.5169208526096857, -0.28177744608735344, -0.5313976022987078, 0.7081898293787389, 1.737832315117968, -1.7127332888425315, 1.4578100020114724, -0.8543609693718246, -0.8713999102179724, 0.17071295788042995, -1.7283823945658523, -0.5708107166236905, 1.9725701063482284, 0.9175501225612743, 0.8904399722423363, -0.020299387778628185, -0.6525548500762005, -0.26638632092699993, 0.276109619308378, 0.053701919887066935, 1.0889649048324765, 0.9942265600216937, 0.5698818465036815, -0.04896007522242202, -2.0748451898047455, 0.8026308587936102, -1.1610187492028694, 1.3356261949118124, -0.17365007184946013, 0.5998578422722377, 1.5645252728209658, -0.26892141622836163, -1.7245080559958839, 0.507569198994921, 0.07704267110524983, -0.6883816163698289, 1.7494905174287425, 0.029707887463973397, 0.2711887272498872, -1.0131189541019765, 0.17926978851621106, -1.8683187359648044, -0.09510859785626388, -0.24484056196996015, 0.5874805228725769, -0.6116120323048814, 0.1497974706963207, 0.0429756961333731, -0.9976923990403151, 1.874060023009013, 0.25493211144585887, -0.24088207376123164, 1.5900388517320287, 0.5404854043192058, -2.338930359344614, -0.5118972018048864, 0.38680919459364715, -0.6803042679453754, -0.6155679705610546, 0.8331665407436516, -0.07150612635169677, 1.86785560041706, 1.7176845428975431, -0.5732888239593592, 0.43667094230747266, 2.628754646474414, -0.624760663671526, 1.4577575344307034, 0.3241726335755111, 1.3450120162139558, -0.07750925735980524, -0.6491505704727276, 1.2496912902111181, -0.5513721385048951, 0.24293185820462443, -0.42483381552479305, -1.460391394569478, 0.5662706110872234, 1.0113499024380705, 0.4753736286455768, 0.31772315676481255, 0.46178121679710427, -2.1054265812040125, 0.18465802945226167, 1.2793795108465627, 0.8623042355098867, -0.4683467360149997, 0.7028624878250248, -1.4594044733477547, 0.9360732014398043, 1.2751761641615864, 0.42851194579548807, -0.44056624439825737, 0.8829465592858375, -0.024284271067301754, 0.4563769210462353, -0.6064212971988915, 0.021888362075949918, 0.6465150314715422, 0.07977240971249622, 0.7142060146390521, 0.8917541691830461, -0.03444279181888587, 1.218455505210943, 1.4230008639594018, -0.7095584821902502, 0.14872343987514625, 1.2785508183019274, -1.6248752226760483, -0.09891560639892202, -0.5008896938741403, -0.7290676748383897, 0.14259226148335885, -0.40669921063913655, -0.054824471106183, -1.4995503091813498, 1.3600282693334262, 0.2891504144218921, -0.5774693524816842, -0.2608118654300937, -1.1847854116213834, 0.04112808928157389, -0.305300641240619, 0.4281865985242456, -0.40532752096707125, 1.3302700161618497, -0.3619816406762467, 0.913222552127255, -0.9008532301553506, -0.08909220146257729, 0.11589411046178014, 0.5095030746803089, 0.8925297713514, -0.4112689128467495, -0.32099357105630855, 0.5767464508605461, 0.49835551051748794, 0.8536234879849596, -0.3603951140135846, -1.3078008877444756, 1.7989770150943738, -1.1626201212811464, -0.6491406238312096, 0.22356886292224037, 0.574359588443765, 0.18004112626949634, -0.6547728843155264, -0.5557245758709289, 1.89011416935466, 0.3240473716300969, 0.6580976749604448, -0.6751722971910538, -1.785162270638293, 1.0410311304762596, -1.0241226629259053, -0.3721109025659653, -0.6887577358362698, 0.9188067097502344, 1.8557064687228422, 0.8366782306426697, 2.081967326149827, 0.591725886320575, -1.7734447920738325, 0.5923183665268551, -0.7959601594968589, 0.38873704228462397, -0.9379340790766263, -0.058799521239314714, 1.3575407916418871, 1.8641753099341491, -0.1564290937005708, 0.45897677588755337, -0.6292895969541409, -1.2253220324766185, 0.302348583565543, 1.094416206823949, -1.6588414581335909, 0.25970104840878905, 0.8360472023698764, -0.6337330862913205, 0.0779074018865948, 2.148923885583174, 1.1976313396675613, 0.9985934269277841, -1.093648141556775, 0.08064878801106118, -0.287474834704734, -0.125308793283288, -1.0438057393314202, 1.6478025652277035, 0.47783940493981436, 0.11098307369474969, -0.22703181618570387, 0.4428484041842881, -0.7913280304871454, 0.22880965000229292, -1.400180669272406, -1.778302745086367, 0.0018823624478674235, -0.895524900247053, -0.28632290588134673, -1.1236518919505727, 0.9474304963442176, -0.8582276623497991, 1.3293159250998243, -0.4970528213494839, 0.8248162327010056, -0.011132669252628968, 0.474090251194842, -1.9712263527303182, -1.0348853330393353, -0.06859104181585753, 0.6253450055322723, -0.23288417221354846, 0.5995901894484433, -0.07418243943384513, -0.21958221525019916, -0.6431615432168255, 0.791557737321159, -1.2319929550859678, -0.10455671565941892, -0.8773321794724764, -3.2430507015579413, 1.0557077011629472, -0.9656529920056829, -0.7976399973302456, -0.6083245033096509, 0.9885655836369623, -2.1046626844443987, -0.03543027319815729, -2.7613398137050544, 0.6976256717716011, 0.17794648917608963, 0.2794557623472361, 0.344280548847514, -0.2638288123217005, 1.212481399057185, -0.1922680179804423, 0.8984605750401993, -1.7419124380474178, 0.8319027072701745, 0.8250185682519083, -0.5758193093524744, 0.5716690435882386, -0.5868221428348486, -1.5946717643034978, 1.022312628980455, 0.11786774744599474, -0.5980694614773299, -0.02736281949454495, 0.8611572482351575, -0.07333307015994242, -0.9464065335533942, 0.2750485787664498, 0.20125703259546207, 0.45625821110501164, 1.6165560893654092, -0.4353142522676002, 1.3249125160675488, -0.5558403086878237, -0.6815284318708517, 0.7615746114303502, -0.7569266069814564, -0.1874329329718883, 0.23979282881185032, 0.13710224916586217, 1.45716716893644, 0.30428825290277367, -0.8764632891078675, 0.7223615718279613, -0.22616886970099043, 0.18816321641743075, 0.29276158740283315, -0.8413332501926067, -0.1762256772422355, 0.3717121392680663, -0.5907017643694438, 1.3404363703767264, 0.08050633527658438, -0.2806488540841449, -0.14059144998782871, -0.3507433250261618, 0.2888217709050778, -0.4820388769311449, -0.17380073012618624, 0.11104680538257115, -0.32280190895097055, -0.5250967109704182, -0.3340477152873756, -0.43307106900112824, -0.5571229300811463, -0.6353894431426367, -1.7548180412798007, -1.7576101578307546, -0.8326603828835464, 1.0751813829577732, -0.20483719102977138, 0.5229415122172123, 0.6445316794397217, 0.49160555493470365, 0.656123243277327, 2.426305678001598, 0.25679686725424067, -0.025804125549798558, 0.6414696000482425, -0.7194828102655281, 0.22659694753822976, -1.2325203706838395, -1.9833700217004997, -1.404546958031454, 0.3403519480366207, 0.8557846334231871, -1.4068820407682727, 0.20405076542247044, 1.0062931183660686, 0.4600235564778062, 1.3261422833249599, -0.9279518514168343, 0.3277529520303385, -2.336300123533327, 1.0104377310934503, 0.27558380334385374, 0.660681797258426, -0.04084210166906249, -0.3811489601707805, 0.016813428873930347, -0.29845699299449174, 0.5457378788687371, -0.16252947528487274, 1.2808173386476482, 0.7596387274040338, -1.2389465658276826, -0.8311054249795786, -0.40156645516357237, -2.8669784499325877, -0.6964704407297557, -2.401201141631958, 0.15685854010770447, 1.2799568784011193, 0.24710277503076225, -1.4969981482024364, -0.4992985124020559, 0.0845229330713691, 1.2962532841142065, -1.8967257566767735, -2.4685907400263183, 1.6222972594866594, -1.3770638567906186, 1.6758871620104667, -1.2920209032607866, 0.37249299704519157, -0.8638484601383509, -1.3152322183659548, -1.0902829289584421, -0.9114217373356444, 1.8198238907736604, 0.3904007120558657, -1.053768409421136, -1.9025194985400573, -0.9428666215841524, 1.659929643553378, 1.2260799766531125, -0.8410096894465786, 1.110288534557824, -0.06051736904991363, 0.7231634639850361, 2.3539971652379523, 0.12075155441460447, 0.16589336141794309, -0.5964263224231307, 0.6585651113818092, -1.5481499435349129, 1.3275771614483929, -0.932616017272946, 1.2796341157071396, 0.4865623517993779, -0.953423897892678, -0.7511172400672275, -0.8268143953695871, -1.346434976364428, 0.7253477376956298, 0.01534919232937782, 1.0767800582205025, 0.45849107964766284, -0.002218998120149948, 0.2808988781498083, 0.8583981002215323, 0.5507892638616205, 0.4122927141133664, 1.3909167436847538, -0.8061385154929516, 0.35431377862931634, -0.23070055973361436, -0.37284680230588196, -1.0722458905710965, -0.029685816046389906, -0.29777645830911137, 1.8836480201746995, -2.253286199211657, -0.1975275114692017, -0.9932808086518536, -0.47260174390173765, 1.1651620064771568, -0.8238029856270696, -0.22446249384555936, 0.373616429442249, 0.45691034894316485, 0.09045067900675356, -0.41254920277255985, 0.7406150457813637, 0.488116071058806, 0.40817981999425923, 0.3067992088639156, 1.8071179597679397, 1.2755258082973697, -0.13697624304482975, 1.0852866378456034, 0.9912225206880997, 0.8135047737754677, -1.120155416483291, -0.32239029318206314, -0.7489949043756096, -0.6179519593836443, -0.11344360522259407, 0.5557141871018074, -0.42016333794412547, 1.1543287958954407, 1.5794826121089192, -0.6664722242574002, 0.3303908802381506, -0.5776369620120991, 0.35307159222547774, 1.7166213320577097, 0.15025273248841214, 0.2794478049186575, -0.6894410333672192, 0.7693230724958225, 0.2877670952741364, -0.33818118703789407, 1.4415735711902327, 0.2898674606806404, 0.04591638321429736, 0.08651689410677267, -0.35927251706302327, 1.1134669034299922, 0.458132352737147, 0.9294142547206254, 0.9660399781036698, -0.09550520796159706, 1.18209112944666, -0.216384731018564, 0.8019914831609342, 1.128105914045989, -0.41800705335055766, 1.2303381077289806, 0.41924872858252643, 0.765738851417751, -0.31850163880324533, -1.2836601936354881, 1.679994819850854, -1.4830070795660832, -0.5695072010304181, -0.6246362525052759, 1.3244080636211513, 0.4762122918782562, 0.3666185747548177, 0.34599996770146035, 1.6132580690507112, 0.8645187408909765, 0.6391336785205083, 0.3795332414308296, -0.8393415413270358, -0.3935069296156795, -0.11565389274525309, 0.9609250711884054, 0.34973491848319443, 0.03030997383176381, 1.212235026701874, 0.13294561747637254, -0.8167728285239421, 0.7371584356608386, 0.04385261998001422, 1.8199421298861, -0.7884853220533129, -0.8063617302476719, 0.5736389608789955, 0.22744649277639828, 1.8165594919213761, 0.09281321556668609, 0.7120339797331695, 0.725089087517525, -1.5963838562330919, 0.15634948455624928, 0.005210858445453972, -0.559247851608933, 1.1390636603894388, 0.9412851832745966, 0.759471781301936, 0.023908533161457735, -0.3823062899802578, 0.7368820087394096, -0.1847729718570673, 2.3287379015787146, 0.4453357318881382, -0.8680949999690131, -0.41692261339641085, 0.09559463837952104, -1.4941480595058916, 0.5030615416321716, -0.3199586026766892, 1.4772958855663363, -1.2098401607055609, 0.3671318770391849, -0.26608704478010764, -2.1367368447922033, 0.6333195733907637, 1.0710407921086007, 1.0166312130928372, -0.490094255830063, 1.4524903831102327, 0.6033800148687485, 1.142913734234235, 0.9700570942396985, -1.0785506111708487, 0.4546961532871564, 0.16779441604231135, 0.591263296306644, 0.6334061397097256, -1.377123527641593, 0.19540331945555997, 1.3000435396873884, -1.4017409090220525, 1.2028925745312777, 0.34912778293283864, 0.11257467195731473, 1.3655366606708874, 0.17885866585728571, 0.9532223231986092, -0.005500729314195828, 0.5894707131970355, -0.15753100427413605, -0.6306844211850615, -0.4158957851088424, -1.7060751092507713, -1.6251592879182515, -0.2975330957053762, -0.6390017129465703, 0.3947987039047199, 1.8792985885477933, -0.6807933823102529, -1.0120512250719118, -0.599444464748069, 1.0365627809477727, 0.9669112047302818, 0.1074951711950792, -0.9214192183477957, 0.35205603121787254, 1.0944292448945276, -0.3280619587153817, -0.6528685201068551, -0.022108746962268923, -1.160679050917394, 0.4860786130394076, -0.12413891908184208, 0.0871978320930151, 0.3500863466402385, 0.5291451374999565, -0.37529189952232556, -1.6665910645876532, 0.4605531378520166, -0.4301012574324179, -0.9093004295342761, -0.3164963539737164, -0.9813449604029605, 2.9678451408561215, -0.7444248797263757, -0.6779399693441389, -0.9385957978389977, -0.7696225663895335, 0.8095057872471826, -0.04672599807812086, -0.9459736140060225, -0.024685052447968474, -1.0597918178180155, 2.2988456973721436, -0.24107520126500503, -0.876526838961325, 0.3965154565246765, -0.9016925702324734, 1.1542385081756208, -0.5807720219504403, 1.9220085604044457, -0.7784221506005614, -1.591174576257694, -3.5103946062208102, 1.3327969267925364, 0.20317244559549746, -0.4376232886595925, -1.2505992665058923, 0.8493213865124307, 0.07594294793355308, 0.3833563376895959, 1.34620321049671, 0.4318283340017462, -0.9791038158708081, -0.22930410663792175, -0.01174986049362002, -0.5818018415952428, -0.22302570436035965, -0.08808185233192654, -0.7670219925690075, -1.4843007273369684, 0.6408267771841177, -0.3712037171804173, 1.49289292167565, 0.9426711045278993, 1.6770824226787855, 0.11921177847304186, -0.6164572199191257, 0.17254960375829845, 1.5652961796868101, -1.3679048720726044, -0.336645476478853, 0.8183837673609007, 0.3401821446888169, 0.2138992001451565, 2.4512848613470988, -0.23125177795227575, 0.25052815440766746, 0.9554756346071801, -0.5713014233720554, -0.2876370553001377, -0.329590952145918, -0.0556107141641402, -1.3290272818877549, 0.04718616060684951, -1.55534329478657, 1.3664223423730124, 1.0079824425525143, 0.7191023376437475, -0.4819704043163509, -0.440690166342123, 0.5352473796329975, -0.7703740190500469, 0.22048106193196554, 0.42093848437630876, 0.7160157745253475, 0.6177049852409796, 1.0849152292005828, -0.038704776673760266, -2.184609090924016, 0.8171640703744564, -1.36324904790443, -1.2802620162755862, -0.8953572715276454, 0.675883919286443, -0.7381263783225382, 0.6088831022447843, 1.9857354990990304, -0.5757316992792111, 0.035267619482327026, -1.077646842627584, -0.20129160468864318, 1.0322214618040646, 0.44333839602629005, 0.04700495666426825, 0.6750618740031733, 1.2211344113399656, -0.08910973289041196, -0.8703706947983607, 0.1142629510744265, 0.40570167257437584, 2.3022171541686016, 0.48063412688572416, -1.222783234039365, 0.18437609548800532, 0.5964317479098029, -0.8225935991646194, -0.568955292496954, 0.3173226539073139, 1.1489252597637467, -2.817152810810265, 0.34880489204769716, -0.9683505544269022, 0.49401712478212817, -0.016372425786381078, 1.5939005259988241, -0.612862241160768, -0.6634431849581924, 0.9071804179020216, 0.03115042608314924, 1.7314997965613261, -0.5411115343338985, 1.177581410757398, -0.6736433710789845, -1.4943863802490183, 0.7852128439743152, 2.191240913063958, -0.757282364204309, -0.8292996359588218, -0.3311882921366575, -0.3042960547744394, -2.1945797587092266, -2.634246499438942, -2.0802354875220312, 0.1771506929497828, 0.14056167717967222, 0.8105496562747503, -0.9385892519996784, 0.4658824495769211, -0.29753632839983946, -0.8596174496547895, -0.3764539692114889, -1.8919763018508908, 0.777240862860989, -0.7163071586043163, -0.7060103891373333, -0.07299145954231989, -0.4344160064989709, -0.47336044540815225, -1.08891702041547, 1.5710019661737724, -0.019867559250605554, 0.15787842428925786, -1.0142657384133216, -0.5082717042320691, 1.9692014064175285, -0.29800378801906685, 1.2469948277790976, -1.0825568995673744, -2.0574387842620387, 0.44286645530719554, -0.8502364410136106, -0.42303126882379877, -1.0263877376213724, -0.046042285387754754, 0.7620620611826534, 2.027066104796491, 0.50609993682901, -0.31269585691976504, -0.33117737917177176, -1.0285869340205767, 0.06503179836503901, 0.28586929736380273, -0.06427572672692297, -0.33972902855278786, 0.8195759291614897, 2.283278746964704, -0.39681946833685317, 1.324214401784152, -1.145140237584092, 0.371845529136524, -0.9083938272540154, 1.6559165779519183, 0.9746027768871266, -0.8457675877528662, 0.9325558370524982, 1.221067517149525, 1.1136953148985869, -0.36572121100416466, 1.0906218874094966, 1.03067178538191, -1.6695182328526947, 0.04955999125594281, 0.7681763059814264, 0.26568957145936484, 0.009210099357362412, 0.20927845707268738, -1.361508606728542, 0.2262628910160163, -0.9770768902180289, -0.8248464925862306, 1.2410804522969903, -0.9451373001830264, 0.032410668866792766, 0.9858557980599869, -0.5982939556339528, 0.05966670123387226, -0.8179006368693666, -0.23861403269899017, 2.067517327598239, 1.298020395798137, -2.0257875194988046, 0.688061083858706, -1.9924504640989913, -0.5647519477298956, 1.202150681618147, -0.06831632689203762, 1.0252353991456338, -1.212307204725946, 1.0527856824015023, 0.01253975506130252, -0.281718699660285, -1.181162110045751, -0.07315968139529135, 0.04700243904982708, 0.5765311741858896, -0.6741761129585171, 0.3866342956639867, -0.2319471350953381, 0.024711988234608857, -1.9354765270468022, 1.6488606762976026, -1.7241334860833621, 0.8792993780392347, 0.7829492658215084, 0.0940080576805575, 2.1805064988349248, -0.7847651600541306, 0.6776331965289244, -0.6077991296994993, 0.7476955169009393, 0.8824962963205902, 1.2242959611003523, 1.1401924141581368, 0.9578053592532398, -0.39087949455765303, 0.5725836086672297, -0.30874241771865374, 0.7564678050623137, -1.1317511042399264, -0.7809448889081443, -1.8138860744935543, 0.14524452062086823, -0.14376905186733419, -0.8782397995681832, 2.0023575784320258, 2.2071332667888313, -0.43389880240755785, -0.2469570417552676, 2.0659545914822726, 0.8638315638832448, 0.008380790176651278, -0.9641943101837189, 0.2706061134560175, 0.6209300659068917, 0.7705857392109888, -0.4396827923185421, 1.822924290503703, 0.7167777942022462, -0.2373447751904021, 0.17848276646782998, 0.9586562341061583, 0.45134828046030984, -1.603987430367987, -0.7423122905811876, -0.13895678376070736, -1.153455329414049, 1.2552923299529621, -0.1725579171592237, 1.348819426010808, -0.1762522463681546, -0.6258569322022983, 0.2250809235744614, 0.20894518189326947, -0.5763030948687068, -1.0025514424482695, 0.09886436103128618, 0.638862304243266, 1.4122768414277478, 0.30136443264431345, 0.06267326707344677, 1.1113607014202582, 0.6513683001117805, -1.4241322687635924, 1.5600188940147042, -1.4673770929135845, -0.1413685821010135, 0.30608283135341596, -0.2283517738747933, -1.0342284942792965, 0.727584766047145, 0.07675949500345573, 1.6624851614492664, -0.10096640463451025, -0.8075427431957121, -0.24016989076298037, -0.7729747735761792, 0.18826450040320827, 0.7695120903523073, -0.688293854768742, -0.7001507054554008, -0.7505976187357082, -0.06316866987290659, -0.028766127857732183, 0.5987331503149614, 0.8412839606187403, -0.8657946397116537, 0.045456042028742184, -1.5202527271058968, -0.7298489089515665, -0.5391028662253661, -0.344075162353293, -0.08657224736151356, -0.43456178719141947, -0.011749612472220363, -0.8579661818225607, 0.04002637030882191, 0.32099932414312, 0.12170481421871761, 0.4188256687062247, 0.5231386839015448, 0.028548511734583365, 0.9950282237274369, -0.6293163303059958, -0.31066353745250647, -1.5504214139285313, -0.7956462362220583, 0.21764652400083295, -0.45973291039224856, 0.31960757233356424, 2.6078871353622013, -1.4845520662944933, 1.3743267392324077, 0.46107616609357344, -0.5409220779127418, 0.7031481900851401, -1.4032927755294031, 1.3606680404669, 0.4008883009668031, 0.6318737353592686, -0.8998151042418271, -0.9962548083056577, -1.558976036115231, -1.045633636954005, 0.8033434563574067, 0.6296451264739388, 0.6808750331841067, 2.266154487437811, 0.6210211532624799, -0.06590074911166285, -0.2705407566256765, 0.9213612419342984, -0.4862438719372675, 0.798743234433439, 0.33522189697091015, -0.9056427901632617, 0.13283110740834225, 0.6231743380249788, 1.0690397873534847, -0.6236786066144866, 0.8734426800524907, 1.75196759299219, 0.5104138638276061, 0.6236201903895735, -0.4664736528568779, 1.7777641789560008, -1.5618539533985527, -1.0171376671574852, 1.1507720677598372, 2.9331464091333017, -1.9924811543663346, -0.15873516599247856, 0.4353861051933459, 0.7465465378687586, -0.1832607780224159, 0.17946522278970203, 2.2285188917130427, -0.3058536262438973, -0.4384197247830935, 0.08881656239175582, -1.7711960615597322, 1.6161092414502316, -0.3020231181797143, -0.033090470684213044, -1.5631878268152233, -0.9532187386509532, -0.5752646369145769, -0.203583850894961, -1.4614787276791446, 0.5805407983933534, -0.6215413861196173, -0.8045615704046951, -0.10172557158959471, 1.1854513771626198, 0.27678040877487786, 0.4399019354881902, -1.8105369315917053, 2.0408463931631453, -0.011387865067595431, -0.804252373755955, -0.41697025987307146, 1.1528114924346353, -0.7063995074155931, 0.40875301998240177, 0.2028174161922948, 0.35829958063874, 0.3152520130657319, -1.239192018734016, -0.4499341702613743, 1.1956239351656937, -1.1654880097154408, -0.46925403947980315, -0.15864864437009749, -1.1589866509376578, 1.2177211957415364, 2.8358784850415577, 0.36541916526577134, -1.0078009945854358, 1.0201207067885527, 0.5935605497760185, -1.0852838643471892, 1.4664613447797208, -0.6269119054476766, 0.8146565479083613, -0.3826738988644308, -0.3290049662393499, 1.0028095942579014, -0.6321522301480661, 0.5726214408086637, 0.19528018232733857, 0.5740774767802795, -0.02521539337154384, -0.633435021805436, 0.679985307870463, 2.468746445270434, -1.115928104745836, 0.6761782682782054, -0.29918379306527976, -1.2904785945735002, 0.1918306180917843, -1.3367124602829294, -0.5811854892370817, 0.684566257786995, 0.9916377333418648, 0.6261755133139905, -0.9620165885278776, -0.43455313617939223, -0.4709170054716753, -0.12447111158334581, 0.7569079205618323, 0.5155921082764793, 0.9821101134335304, -0.10194392386850484, 1.5538421585337368, -0.9083727170225883, 0.6371992030463421, -0.3812670358881668, -0.27125060016931546, -0.15503265737178318, 0.606413661668487, -0.21254222706176049, 0.3969973117341602, 0.8669087778072112, -0.4834641533732842, -1.7427352505639444, -0.8967542502645216, 0.6951067937757437, -1.1376872284035624, 0.17791873016605578, 1.2371632839184823, -2.2043313247172294, -0.7309207980036682, -0.5021333683022008, -1.3454689660977073, -1.1290982006364296, -0.32939396151711964, 0.18497442934429734, -0.8413632403678025, 0.9468319430250135, 0.8058787824763338, -1.6124274453699277, -0.8238116263373104, 0.8903127928774562, -0.9577145372016741, 0.8171193398654701, -0.6173618512920953, -0.15081050583809497, -0.5628274825634493, -1.1815163483023081, -0.14119081617059412, 0.22491968711601862, 1.6812742032075176, -1.1084596009282999, -0.7759149187683236, 0.7520186397402411, 0.7684755166178426, -2.0114740981089168, 0.674094058160899, -0.5147817790561089, -1.6331081348911354, 0.8648340937990002, -1.116673981939339, 0.32881802359588463, 0.20919220439475414, -0.6602629826437352, -0.026732699216765014, 0.21502378747738346, -2.151546279195347, 0.36562642331761647, -0.6506478806888908, -0.27945227152343294, -0.6384002967779283, 0.7875891813273442, 1.6227660747215988, 0.8278020860764067, 0.34288927484303083, 0.45660735217635523, 1.1519734162423785, -0.6194260154843413, -1.4017541306082928, 0.4159198943772817, 1.1529850398187669, 0.9099969435513896, 1.9021603929886568, -1.158564680746379, -1.7207159052220817, -0.3576184901558152, 2.2196892094744083, 1.0963702588632784, 0.12904233865887751, 0.6549450565863184, -0.37849015126864105, -1.5858545356898763, -1.8713534045676987, 0.7201147847412918, -1.6580051068450476, 0.7732849176399853, -0.9498231735459299, 0.5464005512280729, -0.6699092944122825, 0.12431276753346153, 0.3721726382693182, 0.10379790304271279, 2.1172402154489816, 0.8360655180788753, -1.0762032412746412, 0.815481884072541, 0.42053835147003926, 0.08392829626960394, -0.04689602733965527, -0.374824735112612, -1.5023329350189385, -1.0363072444255135, -0.6648465248165895, -0.6673500119502428, 0.6656507042326122, 1.925302069225601, -0.13084898745255713, 0.5475674058396589, -1.2588555734658815, 1.0251067223135555, -0.1493715187231377, -0.7545389663027177, -0.8603445623996381, -0.2874733967893077, 0.9781716802971604, -1.5397517273802, -0.43738110793981605, -1.0494538869059373, -0.47407290511521044, 0.26332873219935554, 0.41581514665056707, -0.4112366398684327, 0.4791184565006377, -0.6885027152744305, -1.1203559699362162, 1.216330677526202, 0.2457213507991761, 0.7164176209655406, -0.6847018595644025, -1.1464200330760865, 1.327509502068281, -0.5857811745309845, -0.42682493280925704, 1.1845614087008731, -1.356520959897829, 0.49861792283569933, 1.3451884933922336, 0.13504900164806138, -0.23951435935005225, -0.7034000009657794, -0.1528294686387574, -1.2108429754344967, -1.5595234957230402, -1.6044492715170038, 0.22403715846567213, -0.03849469538203907, -0.9938153285226233, 0.7712573072759141, 1.2893950223441981, 0.6861010972798538, -1.1897040744577112, 0.8152340581090642, -0.12079126103341818, -0.5743200492684041, 0.9022500239915671, -0.07544670512559601, -1.05512838847764, -2.0981470026675684, 0.7258102170729255, -0.19173549646702, -1.3567382060116588, -0.7626233444051406, 1.0957459360343025, 0.02949085039271435, 1.3258966031035084, -0.184798423136632, 1.4637348570872946, -0.8604826575919651, -0.06984538568928156, 0.9584500610614448, 0.23985374424021344, -1.3774979626723076, 0.4263228199523565, 1.384394867653654, 0.18981924816825047, -0.4250388288115574, -0.29094207562574054, 1.0641335613422662, -1.121863617635839, -0.7671582220525022, 0.9334588989159798, -1.9189596366557504, -0.3721810329629127, 0.41599276748325414, 0.5325746868260429, 0.6086455394655887, -1.4079320088343368, -0.9324442260928805, -0.24676661554651183, -1.0254130679551048, -2.0440763054377453, -1.4657353025267341, -0.641391952326569, 0.1910338919614862, -0.1627413675354726, -1.2885636956409976, 0.6956998383893093, -0.6162256220928793, 0.12593776606453755, 0.12219825659711082, 1.2134576343903627, 0.18092039279388206, 0.8541572519401588, 0.7974946238815648, 0.704127998954081, 1.8354072771949175, -0.4695943751542314, -0.37469095591448903, -0.3059809326386689, -0.3317359740495324, 0.09363049146824527, -0.06018323320375299, -0.26520918132452925, -0.7780885602438212, -1.1213542858746361, 1.5809837114167788, -1.2335476331544355, 0.2978945563824169, -0.3087272113035886, -0.6758922926699465, -0.43043526732790793, -1.2290714362411481, -0.09520805428092431, -0.3883252579126214, -0.9407957545356127, 0.25950927470335516, 1.841863358620029, 0.2968812125232288, -0.2088333903922174, 1.4761272278097493, 0.22772122886792867, 0.8005867540012066, -0.4552775185540759, -1.0095791645777143, 0.8976499952617246, -1.4285250616300387, 0.8214397686787653, 0.7073154903007037, 0.48483455094501465, -2.5385404870836656, 0.5114480903515539, 0.5876476809358187, -1.591078171976429, 0.4764721851819285, 1.3177457885578394, -0.30498172600883394, 1.0654286208108041, 1.7947184972584227, 0.19104942700686733, 0.3552360115859013, -1.5308419603678893, -0.7389009716642346, 0.7329236436989338, 0.6209687988391023, -0.1117415174029342, 0.554981850535505, -1.9309160010982027, -0.3777531567620119, 0.361213296858175, -1.0215860702496076, 0.3047304280144629, -0.915234936265288, -1.026209561095987, -0.82320933944501, -0.6851462731997349, 0.36544803505585716, -0.12637392875694234, -0.7824378138504845, -1.4648854408132694, -1.534455595118756, 0.9816559809850037, 1.2957200489470513, 1.7588131290607822, 1.575272738878385, 1.6248451785425506, -0.4386978356480646, -0.08119405420709391, 2.3742873536835303, -0.30359870494653957, 1.3740527253539876, -0.7361047820993447, 0.9213548859118036, -0.49508271260007913, 0.6020869857563266, 1.296405921665389, -1.4227701718291834, 1.423489266312823, -2.1386098429289984, 0.8914166069122845, 0.40584609505205144, -1.0507373621447853, 1.4781798332715128, -1.4765190820798926, 0.8674448242323454, 0.04111214181275629, 0.9919038855055279, 1.3666994089207785, 0.1762321636127549, -0.16584510333234354, 0.5448542623276409, 1.1521173125938953, 0.07718189956229088, 1.0428485487638715, 0.35985298264146426, 0.7534360282371994, 0.016233871615359094, -0.8176840009629501, -1.5626452440393905, -1.4146247380077686, -0.2858262594141383, -0.08845332238618897, -0.5339740903220205, -0.8002791323114443, 1.2048048617885938, -0.4637365036556416, -1.1380984611485931, 0.015196869853353974, -2.0411688332965623, 0.9786312679357541, -2.016285556623832, -0.6048576308214364, 0.8196408832121403, -0.6803587977221166, -2.640734277919236, -1.0257071877914037, -1.1186205710293813, 0.3373667245220651, -1.1017801765112547, 0.18326306353639502, -1.5770507966023875, 0.733040535291447, -1.1315132538784725, -0.3168566174656062, 0.04649228594017078, -1.7046968731760306, 0.9513914886357745, 0.4325156439178107, 0.4146449116202101, 0.1886239365339876, 0.7045410538889985, -0.7427321239815796, 0.5665575660228537, -0.873119573613043, 1.5401943954490989, 0.2860832863462192, -0.6723989299518812, 2.423062284450476, -0.6611399689735187, -1.5187045459458381, -1.1410493479900121, 0.2200306781040521, -0.26867934123089593, 0.5566092610538999, 1.4790093784746348, 0.3027521459658201, -0.5186079052573798, 0.7100282468606801, 0.05610758013714057, -1.7638115945665438, -0.7156028894296741, 0.8238978643750248, -2.276289642286132, -1.078316967272806, -1.7131080593958754, -0.4877720101384751, -1.8205875082931753, -0.907688041310556, -0.3477673235959113, 0.9571226384108098, -0.731856891742526, 0.3978471127195908, 0.6732706905869169, -0.06903110217184576, 1.626243147612916, 0.0004856072105611998, -0.8358599361239925, -0.4403790391694365, 0.5451367152973932, 0.4415681480495467, -1.2965906965795944, 0.3815239992429698, 0.5789684500684377, -0.9660705215315595, 0.12949217166911586, -0.6379693895488021, 1.3864741296874543, -0.5279757232231787, -0.43421362062648466, -1.4816793584794397, -1.3214989185390422, -1.3940056452063705, -2.127052529962566, -0.10379371514931061, -1.928139185514282, -1.4921290290533098, -1.2841202216864673, -2.7997698180936315, 0.8850355583163274, 1.0624887028329646, 0.2552830615608939, -0.2359520588922903, -0.9153959335088749, 0.10377520290366954, -1.3668352646312822, -0.1598250953345421, -1.3335041356402546, 0.45459866149116324, -2.3327752987358505, 0.4286334302967281, 0.019139838795685003, 0.489308108040445, -0.5700903641174002, 0.16048711960974676, 1.0143631525216037, 0.47907849445747636, -0.7902587333199687, 1.6233041986785075, 0.46869756015978503, 1.638728019815994, -1.4310187205527714, 0.37127181097956274, -1.19223867983605, -0.5206277304836476, -0.41373236065289115, -0.4352365054960344, 2.173340008934155, -0.23468379352735275, -0.9112169114048992, 0.10627966619010279, 0.4120059584351743, 0.11275816662145442, -0.5558973007322668, -1.2468888443502666, -0.4329508323862912, -1.2363114706536111, 0.4044452193024854, -0.12594603279787084, -0.2140715559050586, -0.4629706322462276, -0.016065300608543075, 0.11267392547318586, 0.8492779666552085, 1.1924294860581286, 0.5316101611210559, -0.8344336586634693, -1.3801382268570672, 1.573355060357178, 0.717804671182584, -0.1918379112967972, -0.3729207930345274, 0.1932169614148326, -0.709497675632493, 0.2961777166450889, -0.8530464091114658, -1.4539290187957794, 1.6956913468585446, -1.710033263884237, 1.5317208550488577, 0.09653687209583658, 0.3687057184382782, -0.08031108456080205, 0.8904582781389186, 0.08107093832541513, 0.3667365982342836, 0.3057354439823853, -2.51856815285159, 0.7649024736171915, -1.374314929282735, -0.8750391511654515, 0.4609159937573332, 1.0677231512883616, 1.2677653216084301, 1.4301676475023366, -0.16545433400820328, -1.7861079635178694, 0.1807620232041943, 2.1688192148530154, -0.6286305222895803, -1.3350616410964142, 1.0116134133148316, -0.7672335667196267, -1.3662947838740263, 0.2463124344236306, -0.3546451397668368, -0.21190869911798668, 2.2291816752371014, -0.5610732831016452, 1.4285081367620793, -0.8764145972247741, 1.2569284830405119, 0.32755187563594496, 0.08861808274568259, 0.6004389631666466, -0.44633723807241465, -0.21095355426509896, 0.9378359248589899, 1.6705733123607502, -0.39117459891023626, -0.27632315832294024, -1.7431257457907003, -0.07704682507721326, 0.0019126578100718838, -0.6238495451849568, -1.202176787831119, -0.4834106785282528, -0.3815772197291903, 0.5658318604622793, 0.38655116665156214, 1.766238357501289, -0.1657664301304564, -0.755436214611746, -0.42111639746742635, 0.4142513244646749, -0.0393118212301876, -0.5448709572165267, -0.011437216870491596, 0.548222635253392, -0.22046973012147553, 0.656509011922606, 1.893926468493504, 1.0210117483879546, -0.7850558335800917, 0.20675097817468233, 0.2603386783903564, 1.3034072615534282, 0.015516073776573054, 0.5774245218305143, 0.3858926783519163, 0.948135951770294, -0.45617766774840895, 0.6590825795538509, 1.5247399720116763, 2.115933770045465, -0.31855767496189186, 0.13148401625676653, 1.957223527678246, -0.2706684939587643, -1.3562648965515738, 1.1006605025978111, 0.40876412690625624, 0.30373780172722176, -0.15967876778584844, -0.9848387569891998, -0.46601821552056677, -1.295005131189851, -1.712254560471058, 1.4678077669896765, 0.012757928463768895, 0.7735135035749664, 1.0623951766528854, -1.7540679611435384, -0.9369159885309664, -0.6957901682796926, -1.4774911227118894, -0.21375360421043885, 1.3428786240726391, 1.4496760959511836, -0.06828186038864027, -0.07117443475158622, 0.1793087632815572, 1.3017435495755927, 0.5999350658692383, -1.0634160486776578, 1.2959638705081984, -1.0125245808545267, -0.8149763886083087, -0.758991558840843, 0.882886525306655, 1.5005356844497353, -0.49213745110797025, 1.9921484073935718, 0.6578355359339582, 0.28672734549346274, -0.6718103503930956, -0.7503025106702481, -0.21586134731990358, 0.7653992365644051, 0.23379281887748876, -0.6613437133823574, -1.1355980529251062, -1.4598826626293944, 0.16238078943367926, -1.8180269648273704, 0.5677587128261484, 0.773884111379379, -1.0522018253583674, 0.909341864154556, 1.7606610670216571, 1.1329692434413112, -0.294926707131397, -0.32517414335345235, -0.08465653763909947, 0.8825436467767235, -0.5430723635957462, 0.8903609904368708, 0.7584160178793168, 0.6363114461226915, 2.4048423206379934, 0.22097447030608108, -0.022946138307037567, 0.9678628510461195, -1.1789215196875902, -0.8714519288994831, 0.596459001537374, 2.5618747190537743, -0.6711004044025682, 1.7223683955134619, 0.03607968562151646, 0.6059706047859513, 0.6389280341320088, 0.7675865397656775, 0.48481547683009446, -0.18276544155332583, -0.9552163081647863, -0.965827405560861, -0.30336046066441724, 1.2300940272294265, -1.2959557212514021, -1.425946148224525, 1.8625263986032292, -0.732865712971793, 0.839964002415998, -0.3213426379861101, 1.8699133538632609, -1.5984631195446286, -0.10815706159163127, -0.9311366454869398, -0.6351272935785268, -0.45855637949862926, 0.6559855715110097, -1.268865725634294, -1.5961926157659467, -0.6477201028132568, -0.48385344158981225, -1.1450252419036044, -1.561379641269764, -0.6773848928970723, 0.0383078298519052, 0.9593563107386789, -0.365042804810813, 0.6594062780956094, -0.7375057546194712, -0.47498012088801544, -0.6394090908945846, 1.1875140482814512, -1.8005784085922107, -0.31055642821221036, -1.7591524786281827, 1.7406974610048866, -2.037192333215722, -0.3637020636055769, 1.1705798204149618, 0.012365588689009836, -2.1070168563944174, -0.6137631527164563, -1.0128444176425475, -2.2525042387802077, -1.1324974985861191, 0.07984812259588457, -0.44842960512177243, -0.43982317142485455, 0.8076283482995223, 1.1791305066624285, 0.7520423862223877, -1.629309749501537, -0.5581523480025478, 1.5197999501813242, 0.9067788637284568, -1.106161373912915, 0.30714014486475455, 1.6131242870652005, -0.9219921288430764, 0.12490580419606764, -0.040003356199254984, 0.6257997563545628, 1.3155408902288757, -0.29659721161505187, -2.3534218681862553, -0.13144792483756737, -0.9266287305739844, -0.1354111962724608, -0.734682591883245, -1.305686308412636, -0.2546121976123414, 1.1800481901999622, 1.0778317695545143, -2.551156457757207, 1.680469644166697, 0.010836777270560517, -0.11232728035993443, 0.6667334113468629, 0.4028766869104649, 0.9631514373649349, -0.18429122531683712, -0.9817078578319914, -0.3447333384685462, 1.2825691325179631, -0.6711769499147856, 1.363543176420156, -0.272842815237913, -0.3841552945773227, 1.3603451561555147, -0.11712412217202182, -0.6599582151450347, -0.4520310223213346, -2.6485783076915412, -0.7408964576712137, -1.3896836338098717, -0.4413691100602618, 0.3883456381681448, 0.11587763009175471, 1.013161120101322, 1.9626757595302269, 0.039047166523825685, -0.37166078300035865, 0.8052940485952986, 0.9983087680932231, -0.1874500279641191, -0.16914172052286366, -0.42674681614229254, 0.44981317901673545, 0.019260498332609635, -0.23763338331642822, -1.0502094483910072, 2.5201559830118545, 0.5537425357824123, 0.30994637847788825, 1.0383721847540255, -0.5284438516183844, 0.20844640611621576, 0.6045231071282526, -1.2630499040649195, -0.5241124086965827, -0.056435476765949524, -0.3178298643660306, 0.3651453748198809, 1.5827782793825396, 0.03430645720166838, 0.8339942186480028, -1.033612621228459, -0.7193364490542209, -0.22663941935925833, 0.7320023814347709, -0.8489070519926455, -0.20783818647441837, 0.14133716267499713, -0.0685869317253711, -0.661530992536139, 0.23127863622417555, 0.3275548763624399, -0.0691201096837758, -0.13953831222964044, 0.6342077942795735, -0.43565732297923243, 1.9380300476979195, 1.779475287293106, -1.5789484489495755, 0.49515411448787766, -0.7407277885344729, -1.7931915591334544, 0.9830740366059395, 0.5653867047084374, -0.4830116443916596, -0.16826863036903483, -0.4033851237134348, -0.8649740921737336, -0.5366251688963467, -0.05545576402224549, -0.4496899469000935, -1.0019650001334404, -0.1778261466116613, -0.6066777818609864, -0.7703464057209732, -0.26366753667349907, 0.45094068606941046, 0.12950636311332153, -0.15934175988666632, 2.5745053891924106, -0.5458038806001523, 0.6664585865289914, -0.30112571745277894, 0.030658331420673396, 0.3779510017389906, -0.541621215096542, -0.6215632232485573, -2.2334322733324172, 0.9817284644109329, -0.03234238721922436, -1.1641704608348729, 1.046119100602352, -1.08557686516633, 0.6494700641027796, 1.7819542722296777, -0.5053318883226807, -0.08005036787615662, 0.8541084625784063, 0.595871429517424, -0.624426485278422, 0.45169807915762383, -0.714795232808465, -0.15651012407239762, -1.975319896260316, -0.9116044323840752, -0.6381139232454968, -1.0125578950849605, 0.12809335267291644, -0.23457007138569316, 0.8495712455612999, -0.645199685686697, 0.47330983170456326, 0.6243419367111025, -0.19933070794117705, -0.9551304797334967, 0.66996452018859, 1.5479143909507787, 0.9864729869670866, -0.3094292766531722, 0.4945387183968892, 0.6667730100455306, -0.7825742295210016, -0.6834945995883962, -1.6585124169899732, 0.5649009493502724, -1.3714959883713256, 0.8554894457326648, 1.0142310799816827, 0.08998625854523169, -0.6318081711767136, -1.3583513448044329, 0.014479341817065422, -0.1133973398883327, 0.4470667512987914, 0.8316353204505574, 0.9228615014653802, 0.13096037210812514, -0.2804938826689378, -0.7203118552585521, 1.9364118732631745, -0.7136583434098173, 0.7314381510342937, 0.5367499592036619, 0.012137870971983244, 0.975023625568262, 0.7790152147049587, -0.04360190298158599, 1.641530877670916, 1.262145395838554, 1.5873133001350015, -0.651910225696693, -0.3140764255081647, -0.7179359892113251, -1.3959898670775768, -0.8580811057003682, 0.14404518095664126, -0.020716448652472397, 1.8111972876542275, -1.1114257992325658, -0.12429282951173959, 0.19765146208746023, -1.5972642775034296, -0.7687502283848661, 0.4050187004166503, 0.5711796606608731, 2.692736201328301, -1.1028952878312004, -0.5397060594748564, -0.6734675198149142, -0.6298070714795557, -0.36012967016811265, 0.054888696649400236, -0.2598598516822129, 0.7984678903987676, -0.3088012228812046, 2.509496438391337, 1.1039163632641835, -0.5097616482727328, 0.5051466765792553, -0.34173141158373105, -0.5339260145667195, 0.2539765590775983, 2.3263141237959584, 1.5028027845224627, 1.475467181391407, 1.97434490395542, -0.619564952949996, 0.2576220079486858, -1.3762759718257254, 0.8843810380153246, 0.1500743933354548, -0.7657561078067313, 0.5712688494862557, 0.382514917911988, -0.9881425531827883, 0.7687965166560949, 1.4204281785639759, -0.05657854851703262, 0.8857423712157523, -0.6216234067148145, 0.30326642272492427, 1.0955753307362914, 1.1880665506454435, -0.2624429950690422, -0.6620402631742033, 0.5687138293942688, 2.379522639961654, -0.9780837593487737, -0.4463412005417949, -0.30203889706924786, 0.00852154949205847, -0.7748033261190387, 0.3956925426094536, 0.7638995997633787, -1.4811246738125703, -1.710839406550769, 0.2713437156644217, -1.802834772047208, -0.9558129130165784, -0.12369310224459817, 3.5686617690435414, 2.154001047367525, 2.067612970497269, 1.046330828640142, -0.1538066312121257, 0.8219778704850669, -2.1376057291662027, 0.3053009523575076, -1.4685626640403808, 0.2057174698091015, -2.2568213993024893, 0.7303142047589057, 0.3094775651145139, -0.09000965055455624, -1.2044674045350712, -0.5603196066189232, -0.5485834755632756, -0.29487954597231836, 0.7556060982020254, 0.56584679560404, -0.16313941505032997, 0.6730220670393247, -0.1816126810139879, -1.6143321600131166, -0.05776739909560057, -0.650622412296631, 0.892096814664994, 0.10936310652114896, -0.2163342176581985, 0.7790725584254226, 0.5624295717867454, 0.12093369525445902, -2.6178047472539623, 0.47920494349551634, 1.3440514948897972, -0.19640853556451704, -0.570681335826557, 0.5347695850883909, -0.3092129110373885, -1.0002672637729912, 0.7082190865715056, 2.6016087090762676, -2.1793249676967354, -1.5699881443743673, 1.2303516291929637, 1.1712554151228365, -0.8484206957709025, -0.8920752249923296, -0.4476754630687245, -2.3083828630879064, 0.2656011101615616, -0.505623764140479, 0.8186925478550269, -1.6587555104168712, 0.5125508128677517, -0.05545609752155466, 0.3477602180052521, 0.5370865824914275, -1.5037688328181356, -0.6758543999844543, -0.8912344596536633, 0.8089294695177538, -0.6629637021041216, -0.20009564552746373, -0.3764771395391217, -0.9383661135468369, -0.5303845047483076, -1.5772767568191597, 1.1325094189858629, 0.45679563212706353, -0.656937566443309, -2.2709399770986693, 0.5351910685594482, -1.4613176706817685, -0.03494265939869851, -0.15244903987326583, 0.8715257216755797, -0.564225527642331, -0.29257918200065486, 0.2894738762161057, -1.3098479747789462, -0.8397754224339408, -1.9376358060970358, 1.5517400988677708, -0.26933030528780194, 1.4067443721988633, -0.4556703143593746, -0.08195539365084814, -1.2419068940450997, 0.2513238209075922, 0.8813908270717515, 0.2867460245811287, -0.0531335531430099, -0.25689453462000106, -0.4168855693624701, -1.3883092342416368, -1.1029424199251372, -0.6448280428858908, -0.7254518155765199, 0.05040993961151431, 0.6848653641789133, -0.009641364949167, 1.308385965009049, 0.45379265346853465, -1.4511413924353602, 0.5693997386179446, 2.230957709690565, -0.17540225926304062, -0.79599330560881, -1.786704298353454, -0.32498813458927545, 0.8661527162929239, -1.2084540244890618, -0.3347719290824083, -0.8817996976551563, -0.11808462605787713, -0.665338060907955, 0.43762637686630135, 0.48914286868508255, 1.241879547798679, -1.6864314481823983, -0.7837850272105891, 1.2732375638899125, -0.15822733685495066, -1.0359283365745537, 0.98831174532853, 0.5437318083740131, -0.1517998264847145, -0.788789583548196, -0.5784616590284272, 0.5977444562595585, 0.6205224120636184, 1.2325586532270039, -2.0859990122071244, 0.6412554021734037, 1.0316777485220314, -1.1677774310369788, 1.0044716471581523, -1.24707158218894, 0.2905646273837078, 1.3085610904860177, -0.2627529311877543, -2.3196643685511495, -0.30872312130262386, -0.17657075303822212, 1.3524606912714952, 0.1088818837638217, -0.20402858694156928, -0.7161927322128003, 0.33550828901389956, -0.7784955265964356, -0.6924253415823398, 0.26881226918643647, -0.7856063963476947, 0.1711734109953012, 0.6569294966960502, 1.5780666155611167, 0.082491612172071, 2.7304599941277825, 0.4476832438586144, 0.3073251491710184, 1.3967062872829281, -0.15358291113725914, -0.21114431477834777, 0.2493927584636305, -0.7451147385781215, 0.5818210645747235, -0.11940051475807523, 0.6987966186612524, -1.0171482716532096, -0.5557942816706775, 1.2337644100008267, -0.9874491939153425, 0.7508650033210623, -0.6190671419673903, 1.127216638046792, 0.881408024858003, -1.3919649295882526, -0.8516737645319885, 1.4173372176693992, 1.6522937639894353, -0.15705325718362237, 0.04566162545218163, 0.8315889738563228, -0.39488397541672693, -0.5332091583951752, -0.10385892640038265, -0.6826774884467904, -0.058640615341640015, 0.3766857201350493, -0.5083854966562632, -1.4355592280063738, -1.6697114899165404, -0.4714583823634468, 1.1783626129224165, 0.23418941504408097, 0.7653917654433291, -0.8264408814854446, 2.163733917486348, 0.23802016071463025, -0.8385495184444297, -2.416293991097944, -1.3693270301054925, 0.08785651244787807, -0.31409988278828654, 0.06606927978308716, 1.4785410809835096, -0.8269216553239152, -0.3585274850889924, 1.6079666154253838, -1.5004541184465363, 0.7925890680778682, -0.3124365411587733, -1.7614200217509073, 0.07109823335574644, 1.0640814847723707, -2.9410241472792773, 0.6159552753528247, 0.09355563494105495, 1.3924055718880515, 1.893232020714886, -0.36942105004874914, -0.15606768440488172, -0.15926389676346359, -0.2140613843898579, -0.45985468449390465, 0.12785330098686915, -1.6615359226818096, -0.1750027269033918, -1.7943879211225426, -1.1572175540390677, -0.6773965343199967, 1.1826413258194217, -0.5019379577234365, -0.6122296789433086, 1.1902694923189134, -1.3253482549633042, -0.6828630423893236, -0.5741996190460219, 1.2118655527674047, -0.24989562062306245, 1.936266363335622, -0.41816489403364787, -0.581748054653588, 0.28291516869950895, -0.687484114026724, -0.6119160990973614, 0.11583124770174602, 0.5683106779481927, 0.3327105583820801, 0.522062966303539, -1.7065543838735235, -0.550360442873856, 1.3886692718432025, -0.8217977177911394, 1.2499215427860655, 0.6098232762451479, 1.0665859444481358, 0.5275061074322767, -0.5592020202457227, 0.5786597298774843, 0.8087868192175202, 1.2039104146124044, 1.9940517167177152, 0.3454889682488455, 0.5682789695994921, 0.48903600786533924, 0.5425173992858393, 0.30380089806119787, -0.034366830553480214, -0.7297391540092262, 0.1915777010853086, 1.4517168616109277, -0.89401242832596, 1.4913289796678346, 0.5988912463654696, -0.9207969270489421, 0.6041347035967461, -0.8755140473195793, -0.13892596086990547, -0.8815497856740124, -1.5428773167553658, 0.3470125135052314, -1.2291408881039798, -1.1734827051329924, 0.6072653210582868, 1.0278890232777012, 0.7341545182667637, -0.022076362112749246, -0.3201385510685444, -0.2719367882177577, 1.0380655214048728, -0.34620176953969434, -0.6516659066358282, -0.407292191974812, 0.15692345254377377, 0.7289060799161635, 0.8208433781683151, -0.1980832576573507, 1.2054781314321172, -0.08019429776356435, -0.5917853893018035, -1.026378911853091, 0.6474182477807116, -0.23501581664286797, -0.27690203794848756, 0.3157882555607954, -1.080468090643934, -1.1408417647077866, -0.6193761106540407, 0.3325047677383442, -0.8826750627772993, -1.1395748764810543, 0.3969750794011265, -0.07958518569363476, -0.16364083299853865, 0.6385020116155449, 0.24453228069723332, -0.5843378181178968, -0.8944436063599435, 0.5214718434084719, 0.7750482829177037, 0.3918290842491686, 0.1512539061834953, -0.4024477677274841, 2.080074976237213, 2.0315098588874134, 0.45615019311531335, -0.8864643125475739, -1.4803615674675716, -0.938802081486218, -1.1604509035795416, 0.17295674780473952, -0.1379876433371199, 0.0184982976187909, -0.29244413677410475, -0.16607105469619451, -0.9261381627696473, -0.16863189910217913, -0.04771606300556848, -0.20448606435515382, 0.7913133885250473, -0.42814805384511007, 1.1361205866377053, -0.9641103174521881, 0.10108021678930305, 0.3333340289619008, -0.7411819936267122, -0.6717582178531618, -2.1898139291542424, -0.7743115678332286, 0.5736342319984504, -0.5058748686065612, -1.359714443942256, -1.399227848273337, -0.49085555285255555, 0.07140000995105075, -1.445087748233972, 0.437539590153738, 1.0930165285662872, 1.3663834047256986, -0.6612611899735839, -2.2454967200058573, -0.09214513676051869, 1.8232713349096348, -0.1362856308557836, 0.6048246951042815, -0.3713194632656979, -0.1618233382271704, -0.8644068111147577, -0.8872233090458177, -1.4668559895089712, -0.6162335150476141, -0.17413266829266952, -0.9836041637327292, -0.4412152746682154, 0.5888574964744504, 0.4045592454398905, -1.1447614072963277, -0.7144686783925619, -1.4625588636057325, 0.6322968395619218, 1.3087955053010734, 1.311670147266907, 1.8129371750296093, 0.11106834342215387, -0.4061088839479684, 0.15829109551727727, 0.74075249337367, -0.7738212006846983, -1.0690205173299705, -0.18512357128057727, 0.10794628633018682, -1.6132150153373357, -0.4308509626703187, -1.3784855326431564, 0.4741160854289839, 0.26061236925896447, -0.0694781971468443, -0.9711237121541962, 0.1916368590537267, 2.2275532308251167, -0.4175779714815384, 1.4698671742474843, 0.8036006692652673, -0.024847751399987014, 0.12838843105818953, 1.3346551815112015, 0.48315227845021685, 0.7856848794788936, -0.6626158153252059, -0.2615279436541569, -1.0965018689603685, 0.13109045651746631, -0.8167828918898323, 0.4673652447351941, 0.7950448864450211, -0.7186297978231045, 0.3478460123271102, -1.5997499672342392, 0.8174983218196713, 0.3696013388914455, 0.4122623074814672, -1.21396572359673, -0.06848776175964637, -1.2403789697886318, 1.1536361416568939, -0.4816178883835151, 0.19559951629453176, 0.2634515269393604, -0.5418087491699617, -1.0994008739149337, 0.713132638096143, 0.5842488778004451, 1.2460882269136084, 0.12913130318865698, -0.9560342049154119, 1.8726123712443026, -1.8032640875560182, 0.32293536006794504, -0.8560119450005254, 1.1083402545306513, -0.23210775566665182, 0.6621236817591064, -1.6858139727731574, -0.4110767195976247, -0.800806059995106, 0.2131261507804595, 1.514816106449924, -0.4016751063729435, 0.5808012642665966, -0.29730981401084494, -0.348129814890217, 0.17222156252446819, -0.11449229171916625, 0.3282554140944999, -0.33503243646705494, -1.0315448324174026, 0.39868106818107335, 0.3681084879227058, 2.291523589763268, -0.9162747149345045, 0.31250323086753445, 0.695599725434723, 0.3800929454673984, -0.24661383431094422, -0.1936376604760448, -1.20513585878854, 0.26546533769077374, 0.4431210868506188, 0.5223267922262027, -0.5114901433087018, 0.6852730064720527, -1.8847372159071445, 2.4056420744042817, -0.6230001441688303, -1.3991159649533458, -0.29389470384428146, -0.7912784034142478, 1.4066687387431367, 0.6371824135771291, -0.9940345143224667, 0.43325796369839015, -0.7044262395383832, -0.2859306972240813, 0.1160872393269361, 0.08082327498796915, 0.6317183044571059, -1.5224952867830386, -0.10489169372126397, 0.09040104281059855, -1.658037300571303, 1.5643167980136017, -0.03291758901284877, -0.8862901203678837, -0.46874022628907985, -0.3134292456303009, -1.8367248911373677, -0.5466553469219588, -1.2685065652338305, -0.016126583956397725, 0.37992458424804804, -1.1676086227747118, 1.0647530702968204, 0.5337733843530705, 0.9144367282550114, -1.1545234808267517, 0.8124017586700961, 0.47934995293743854, -0.03537123886516597, 0.4225482625553545, 0.40421171726378247, 1.3929369342482703, 0.585085447597747, -1.0915636432384184, -1.585720498332439, -0.8697133319249892, 0.20181381638039841, -0.26880077900810373, 0.16889076924299967, -0.09223399767663118, -0.05864895735806647, -0.42109811942633235, 0.7322457400413659, -0.5753236427201083, -0.0295523266799361, -0.09270616818289476, -0.6658999531954729, 0.8954961607681299, 1.2865849515193275, 0.7155213999351646, -1.1468243364430346, -0.8193728401672074, -0.943070417001463, 0.004397553176446691, 0.43614997489110674, 0.16907162168570236, -0.7915487365739527, -0.7176436945070601, -0.04643584436081674, -0.2628661735641892, -0.7741060472501503, 1.5289052817331183, 0.31939834008594586, 0.3202096922830826, 0.1928156461546241, 1.7707965943544899, -0.6080509809152779, 0.7358945905509383, 0.5752929676510413, -1.2082250897938562, -0.8907071847013943, 0.8306629520247534, 0.6120899273506113, 0.907881227105954, 1.0665003691450536, -0.6115835541333491, -0.4895198024639645, -0.2677303218615072, 0.9116829280636802, -0.390502037009925, -1.2557084878689808, 0.3486469998559036, 1.1771375189815019, -3.0012703058430246, 0.22639238092579522, -0.2539546932348336, 0.12850846140037564, -0.21778766145624368, -1.1014217497952956, 1.1015656349767138, 1.633047176588716, -0.45058382480705267, -0.5532597803942895, 1.6388084752013676, 0.40030252913899683, 0.29248792151435243, -0.5762450428665868, -0.8656703883765086, 0.2874240922108134, 0.8891339812831885, 0.37417973611593675, -0.8891129127972437, -0.346814341903009, 0.788165970795205, 0.36300837748946513, -1.8515841230537478, 1.0392496997624272, -0.6018179255498451, -0.6415250522978871, 0.7875882447143955, -1.4222459926754143, 0.2579357248083096, 0.5005496235721594, 0.9583922249078406, 1.8002350383946102, 1.2769018315123757, -0.08335162988488544, 2.0356000887771817, -0.10171139683017454, -1.2273245250392844, 0.26267154594135816, -1.1286896715752883, -1.9942386898667717, -0.29114239692891014, 0.9868105805748998, 1.3957023834888607, 0.367831634596091, 0.5523083437739051, -0.36812578183308536, 0.1460044205489055, 0.29014885244358013, 1.1444778782615517, 1.3374788723608422, 0.8616716514356522, -0.3886720818234564, -0.08307626312417017, -0.04741724865683343, 0.8257492492893177, -0.21457288114590503, 0.3167516800545209, 1.1079824567533112, 0.39642884829567276, 0.3781913227767269, -0.554745342766595, 1.286206513749208, -0.012081179071065722, 0.1954882161344038, 0.6107587156461078, 1.0880611735032766, -0.567199863849115, 0.1749821504163906, -0.11494606576409605, -1.585488789681306, 0.9363068310236653, -0.7878959096529665, -0.1378206436267062, -0.05587871522254041, 0.8481745722725306, -0.4921464088881181, -1.0322799626043209, -1.303730449750549, -2.9691714472836823, -0.6724407879792692, -1.2494856937173955, -1.4125190026607966, -1.7531680573720672, 0.8311583748961063, -1.0389735455924503, -1.483586517319274, 0.04529425292468931, 0.4192513977810754, 0.008878362762889506, -0.34514921202384935, -0.24545816491814415, 0.4190387248460459, -1.3545192807897324, -0.8894979980589607, -0.6536025301572695, 0.4801619185562278, -0.3959697940692789, -1.8982343698412107, 1.7298650615766933, -0.7200467606699996, -0.7907545743044103, -0.6158356197476875, 0.36021271840025243, -1.5095561841375955, -1.1712331543475614, 0.012353306064887456, -1.1712007155169366, -0.6612959700389107, -0.4188230495637611, 1.040174152852544, 0.24859803082996695, -0.14810383695489368, 0.749886194259067, -0.49936096458302714, 0.16737268339638772, -0.0641062519039839, -0.9729920216747087, -0.11183343592066357, 1.4616631640093185, -0.6208992976122065, 0.914014217827851, -1.7595971770639969, 0.9550818325753098, -0.3327551547042545, -0.13595921977704367, 1.0069956557997901, 0.23940736045694286, -0.5030740925648978, 0.2634817206555094, 0.8006851955835258, -0.6196145946029705, 0.21032375477295576, 1.7375387745413295, 0.09811412871832306, -1.7304855597827435, 1.1761835516997194, -0.28509665285954794, -1.2889278334601497, 0.31217853722492056, -0.13986096391829458, -0.005186051805364904, -1.3829791463409642, -0.4238909084710715, -0.17550707751202346, 1.3201495605002316, -0.79115774021897, -0.956970134806816, -0.25292263908901264, 0.026944874913706604, 0.9420395895166309, 1.5514324157239847, -0.27681886865876437, -0.6020746168701008, 0.4154462762178047, -0.5597823480960102, -0.6112330377398406, 0.22777144737356297, -0.5396703724001634, -1.1375852486523597, 1.5613714119186242, -1.7905399786408212, 1.1807513158800276, 1.577777959201417, -0.3531776075326119, 0.298871653969888, -1.4180999919903214, 1.0210166605301525, 0.6029988845134114, -0.43877464911650427, -0.07394026131996685, -0.6316984421520541, 1.3150103346488415, 0.7118958468648753, 0.9615159053012079, 2.6754532588358475, -0.400215963628513, 0.33377710558979706, 0.8090443138195551, -0.1252729282791991, 0.6286175212241221, -0.25016304460499866, -0.3934617039881569, -0.16864042967002754, -0.12261137045921149, 0.1608574311430234, 0.3762400366560948, 0.21449177178774498, 1.5573594674036835, -1.1297629870254733, -0.2773836116757623, -0.8942299612379758, -0.8956348075356958, -0.9700835292934942, -2.6531355721090084, -1.6071433247225237, -0.36188982525463814, 0.6269007777798511, -0.779551850767242, 1.1970019663589635, 1.1065352455503379, -0.12731750257085697, 0.8027097617497991, -0.8416147187369193, -0.02368367841448153, 0.9018682460021965, 0.5158018787745299, 0.009219258514819592, 0.5198554007849979, -2.453986196528438, -1.2435659729535185, -0.09037247035333892, -0.3065961591017989, -0.25491961584725775, -0.8568292213175955, -1.4376090778738646, -0.5241878824293437, -0.9570213553566956, 0.18235992555121033, 0.5421562951441241, -0.4041269934682145, 1.004003006591884, 1.4073201688787484, -1.5546044721760233, 0.860191407311729, 2.551989244859646, -0.9626574244669356, -0.5829856558022325, 0.3798354709416853, 1.6196938337126772, 0.10705775179538118, 0.17744181274252785, -1.7165933073752704, 0.47386371655519505, 0.7145778687694507, 0.7202209453474956, 0.23207151969022002, 0.7848424135469374, 0.14739213546135935, 0.6998538952007204, -0.8892878470971355, -0.6747840591983832, -0.814183493384595, 0.7067646383679362, -0.5323915659164861, 0.07756273102788576, -0.3420248281031221, -1.6142934713265316, -0.8170556585276998, -0.026714650494090587, 0.7524512328342556, 0.4492427493154641, 1.449194310921262, -1.7969451097896048, -0.10286022078424263, 0.2218611070116342, -0.05854783212501038, -0.8716866843529235, -0.8980333398359531, 0.3348404864005031, 0.7551042808283631, -0.4569484234200455, -2.3477461291703587, -0.2641623609477424, -0.8639114963109139, 1.3883642327932302, 0.8074850193670818, -0.9965405823672888, -1.2165779621285269, 1.3079407026881174, 0.3085923002240894, -0.39820655877571354, 1.2617239907808153, -0.7185915296318636, -0.5968410072550854, 0.2995847433403296, 0.9264478572875142, -0.4677963264298048, 0.16762626947183956, -0.5282736504656307, 0.8409404418652475, -0.8895641320876981, -0.783155416598855, 0.037035597057074876, -1.275412972658321, -0.005663413655742203, -0.27801907513286783, -0.2429275448713915, -1.0156930623722003, 1.4332651247411108, 1.8652258084325375, 1.465255215337539, 0.6944442802340264, 1.5069301900504966, 0.08173695792254615, 0.5090005437283808, 0.7935779318057414, -1.3245921754012555, 0.4933137513929108, -1.6160547389302087, 1.712582566450107, -0.41462368090038676, -0.11681386284001198, 0.0048733790209437, 1.5372938140740677, 0.30332595457481365, -0.858084551641989, -1.606862174545971, 1.2077684271199647, -0.7723317753001053, 1.8828101240198865, 1.2095972012965654, 0.34683482617299316, -0.9979406177645646, -0.2893771770463828, -0.07012986712699278, -1.7047479310523586, 0.14334884662228564, -0.3322611776655457, -0.208961212236939, -0.4441517968214385, -0.01643946132217758, 1.4938775537815778, 0.7233162327378657, -0.30993336436065305, -0.5051753472705864, 0.7616290867948639, -1.725831589287199, 0.6968542383330825, 0.2697022224486453, 0.4686089104172931, 0.8283462010369061, -0.36078914548606505, -1.2971840624969386, -0.0010165877204272942, 0.9379908826431138, -1.2371751855816264, 2.262296189522651, 1.1040729102515896, -0.5241676050891986, 0.1051199041646221, 0.394135063312703, 1.6185520164047162, -0.1956103900083985, -1.5289685966359219, 1.7681554385356164, -0.6076349081558041, 0.7682460776330954, -1.1711931895285017, 1.889141012545948, -0.4381505496541236, -0.7135577776232479, 0.21796607698794243, 0.192533601074712, 0.4725171767545304, 2.2591175475930085, -0.10962519750639943, -0.3303100454298506, 0.10015487510526784, -0.29846069405851616, 0.154419746052671, 1.7258286342919669, 0.8698970873225937, 0.34337696678311186, -0.8592628599128277, 0.7193316293375848, -0.5078285830487717, 1.2677582540632373, -0.16389728510268028, 0.5687661951811499, 0.6523080773445272, 0.7663774881140746, -1.479976487886714, -2.4392022302873695, -1.1135693278079968, -0.9688474733174381, 1.7793945343682551, 0.8634450966821323, -0.3023060080116041, -0.8412121926063597, -1.835791110986238, 0.9913512231100473, 0.33493748036693777, 1.510102167117601, -0.5619838108659018, -0.28642192042705344, 1.0638845371984662, -0.12900887826295432, 0.39826718148040785, -0.8456463844526965, -0.5839371882325755, -0.14555174258286335, 0.33048786422166393, -0.7957853711215795, -0.33970372923295605, -0.3965980577268923, -0.6581586241296766, -0.5951790136143216, 0.14818797980214207, 0.5638399147611345, 1.429822109325313, -0.6449473817711582, 0.6321229117488211, 0.33898381690527346, 0.9415040278056515, -0.1290553425518811, -0.441371297380859, -0.7284226415236212, -0.07769742910828836, -0.6946627853414813, -0.7975515272335181, 1.1221569393244564, -0.5782618216866078, 1.1006739089597497, -0.44149774376718215, 0.6266224314410189, -2.2195401532572285, 1.0603062250174038, -0.4745793493879585, -2.229500665216199, 1.716099850512667, -0.0134660611368321, -0.5087197125459262, 0.48357183690380645, 1.8527714993508637, -2.030535914155719, 1.138191857250469, 0.8047646518704237, -1.7945519565572001, 1.1723124289016957, -0.16579073697182806, -0.034746725558071435, 0.8053163766552334, -1.2245051734175822, 1.2324279622574414, 1.887214637635292, -0.4918161314301472, -0.3821453307684673, 1.0417013021808277, -0.5902874046840202, 0.6282741800790255, 1.294204092606257, -0.20887551805457324, -0.3914722255969594, 0.6233588579743533, 0.9330197458804769, -1.4398677343544468, 0.5253461322330578, 0.003429237244716318, -0.3674079137539913, 0.7678332637429076, -0.45155866160856845, -0.4956363527071487, 0.6506495435680981, 0.9149806891176163, 0.1875736786137553, 0.5178311432715424, -1.5892515342106788, -0.9606076915080466, 0.9617396003509623, 0.026566239094163047, 0.7460206871713322, -0.8095780215776843, -0.3303549607111154, 0.6489397692163978, 0.30562730607835725, 0.615653473500278, 0.18703760467941058, 1.279180320614017, -0.7240288629208871, -0.39403139633413425, -1.1431569172856721, -1.1827561517205982, 1.57849253377295, -0.7080667332424351, -0.5060122684246904, 0.0801924378208397, -0.7488032537286254, 0.7070446281672472, 0.05261982537566973, -0.7081347873000526, 0.832915433931863, 0.009251033086059355, -0.32221553045183327, -0.7467587630597685, -0.12525097458396348, 0.7360253239754359, -1.178468023589545, -0.9976653441679302, -0.03514604925385732, -0.1807373680884481, 0.763773500159094, -0.45101708520914335, -1.805519242492163, 0.9386625612097396, 0.48904256549183667, 0.1855247287729774, -0.7901131134211038, -0.6975883830291171, 0.7041178116624036, -0.5223956998705839, -1.2591384394277476, 0.37336303315644204, 0.12733641097750995, 1.7464029841190893, -0.8283753519078912, -0.14207108474637736, 0.6373999047724422, 0.7013071420781998, -1.8179656896050629, -0.0499794913133007, -0.6292288277434094, 0.46549039697951683, -0.030553344085704946, -0.6723116270233059, -0.8312298243354242, 1.161114157982146, -0.6721284785192767, -0.29760078133804974, -0.08531082065423021, -1.5670279360295476, 0.5296292696924615, -0.23612918080422796, 0.3537690697702766, 0.6554471925628269, 1.3927027023134155, 0.0591661355918767, 0.4444263429777678, 1.8381963357181323, 0.36361911186877927, -0.6481841131624604, -1.31733473860493, -1.0754182379156492, -0.331085774350912, -0.5188749731852985, -0.4091008194136141, 0.02884854099392768, -0.9686935494654112, -0.835145200259298, -0.22207126986431755, 0.4451442965417627, -0.18429149741424056, 1.1311746356471126, 0.008347810845948921, 0.8016726115082294, 0.556814879433837, 1.5099453286850486, 0.5547772901843491, -2.1464122615078014, 0.6052918720011935, -0.3208464953179512, -2.4666665168067627, 0.8444626690585942, -0.5591317339884442, 0.164959913875922, -0.30634764401205206, 0.3638318811837577, 0.02405517769508798, 0.17983505955479334, 0.6723796684883894, -1.7457318827180355, -1.6362171518901798, 0.5512334221141206, 0.7269276572617595, 0.7725543128183345, 1.6767511037542606, -0.3266320128888388, -1.6488807472693374, 0.12899913885443504, 0.855006413783082, -1.1794651138108454, -0.182877154595481, -1.3016754550074245, 0.5941333147743564, 0.7088762612717892, -0.12916708896798293, 1.434550205402896, 0.36496444100288655, -1.422797813832089, 0.263230349579473, 0.20308435761522103, 1.4884791692927208, -0.45611110402808536, 1.6340938240331597, -0.8185630017945663, -1.2991902696450344, -0.18252069151475753, 0.18582611190197038, 0.4037137658867884, -1.312100953445512, 0.06313061560039268, -0.6703417207864245, 0.13473545181593288, -1.4034130795485371, 0.10008809529344527, -0.5194183496240925, 0.7723055734591346, 0.4910897320356806, -0.416217322754118, 1.2381562368723258, -1.3530869954355758, 0.3271705269114209, -0.9080374769014933, 2.0803322663734627, 0.7283085712145748, 0.8354875089000054, -0.8261849826190147, -0.5579375270591871, -0.19609604846519932, 0.01086663415881078, 0.06030683931647571, 1.2794943012719784, 0.055839423625926914, 1.0541252663160496, -0.24819647698504946, -0.08409061160776714, -0.2589617547243055, 1.0902771242640343, -0.00783734207917108, -0.9762207351544098, -0.0029829133601229968, -1.062587730867962, 1.4595159555801707, -0.5428200655832897, -0.9725660598345452, -1.6541071716447042, -1.6418819637021052, 1.4721676467861795, 0.14214865487753195, 1.6331321801693572, 1.0527572701467462, -0.4312878679667178, -0.2939998134983254, 1.2279878074635375, -0.2309752029680491, 1.4853946103989386, -1.0490901979068918, 0.9644736988056493, -1.5950744494515046, -0.16144194083503186, -0.49152314783736367, -0.3989624857076856, -1.2682472962217781, 0.9162148501250974, -0.25855481984673917, 0.44728396594018177, 0.09410687953356053, 0.4246407132301888, 0.9185740724886272, 0.12778567827674242, 0.9637977202668407, -0.8112434223042204, -0.46404257473341814, -1.78809364805094, 0.05577703104131647, 0.9832426724365719, 0.7527199882125272, 1.6181575178472731, 1.224968909324292, -1.429150577281122, 0.0913904979225529, 0.298836393522341, -1.1604053336446896, 0.5986157679592955, -0.45337234139640215, 0.06905061192926425, 0.41896929760067475, 0.76644854024285, 0.596875739230332, 0.4616242466596521, -1.141395142244138, -2.330030160512057, -0.9297082720331642, 0.04005215838059633, -0.09208475815899857, 2.6446612041336013, 0.47157480708459804, -1.9865463705864046, 0.32402347422387995, -0.892097000101625, -2.2058961468314804, 0.5136487333983899, 0.2852487384101505, -1.9215417994872674, -0.19584982207853124, -0.09774740369510292, 2.064731489542226, 1.0376113652841, 0.966163535347807, 0.7061929819201156, -0.39662345246258063, -0.4139844356351074, -0.29870453192227225, -0.6228906984687281, 0.8611171070678113, 1.6378379669185044, 1.118182742995326, 1.0931624645161986, -0.47034926093862117, 0.1817613962896772, 0.14566750721276686, -0.654120342823359, -1.5755853237089121, 0.39723569990043756, -0.45084451960479116, -0.1435717341353035, 0.5933315075688601, -1.2694275273366948, 0.5780825802356572, 0.817595392286539, -0.35414634077948876, 0.540352048878262, 1.3475028455123088, -0.06597688675875746, -0.2194297127154557, 0.13983306365976753, -0.7470648984634986, 0.7846061668045803, 0.6509495295526317, 0.20432704059069753, -1.1376062947752237, -1.1180924637584932, -0.9658234837892123, -0.20175867477386064, 2.151035880710411, 1.5793460965601007, 0.27740133469994904, 0.6776802958726752, 0.0183607206842033, 1.468774454066486, 0.6546929945415522, -0.7810949723166662, 2.387367950194428, -0.6347114609393821, 2.546081914233968, -1.4351208533520194, -1.6265904161233058, 0.9775042217747276, -0.28569835344691225, -0.8555612124488827, 1.8856585366022747, -0.35205595671159956, -0.5822722899105869, 0.3375542226039973, 1.1609698496577607, 1.149081664747881, 1.5503667028093664, -2.272880023282026, -1.8028206345141284, 1.7225964173916941, -0.38974835049233225, -1.8602847523036143, 1.505931907854608, 0.03829278516871173, 0.8738703541408868, 0.844840449812942, 0.8934236953313281, 0.19249126206632133, 1.3311243880252963, -1.2215979872153604, -1.6290911908759889, 1.3347056255066887, -1.1299031409856637, 1.1584414154091331, 0.15531011118331078, 0.4086483532628084, -0.8401329371589695, -0.6507503012737677, 0.3732827153863376, -1.3476506767203027, 0.6720042454885253, -0.5220461221843894, 1.2355060423264586, -0.3532018370782951, -1.6138038572106335, 0.7396083514545814, 1.4959014672561286, 0.413400531944692, -0.5153799903208117, 1.0408553021656928, 0.1492829251322144, -1.0053001174631713, -0.6958204056379413, 1.2225188675993934, -1.0815941425386335, 1.2492132025708853, -1.8043234313151084, -1.6221741503152571, 0.018608631292820664, -2.3465425688591335, 0.5859432860989519, 0.4592566113580698, 0.25953098551362574, 0.414408869485465, -1.4382675301599395, 0.062032370940662065, 1.8250861587567155, -0.44831296657740133, -0.0049761517593739065, -0.1950055079588544, -1.3452178171577798, -0.4531042553272413, 0.8177598108629048, -1.369007231238218, 0.4021788138397324, 0.7888095393176383, -0.5440705380863141, -1.3280489446134847, -1.879713878051262, 0.2964819883575813, -0.0458412048570113, -0.5228204628149656, 0.2589460916535182, -0.7253851497132081, -2.2844981244895903, 1.466305670498621, 0.2778545721436305, 0.06585266879063444, -1.1012224662663772, -0.7911054077892462, 1.669155221801979, 1.7317988377181563, -0.4040782112632912, 1.1967618671367615, -0.051577297524508396, -0.2713766409896731, -1.9025454112035176, 0.14440806264497272, 0.7774229742650622, -0.6566256430931615, 0.9969213711941602, 0.3820743113199297, -1.7214605722855922, -0.3250389154382534, -1.7388810292384895, 0.24491568179255976, 0.7320236849542386, 0.30221543938515716, 1.921165339358664, 1.5622392503951716, 0.7390844407163857, -0.9207636763670288, 0.2104679967940211, 1.2623015385117653, 0.5396750612364919, 0.8025982672626565, 1.7995492066867658, 0.6694453266971021, 0.13747565629361, -2.4038101788382504, 0.12289479940035601, 0.14809105012423152, 0.3395130639982168, 0.8059952744910045, -1.7114937178329628, 0.10455529540459686, 0.9485373242739658, 0.35465300754797474, -0.31429936103376677, 0.7006526624083831, -0.3473154729650051, -0.5339476641193911, 1.3048965005447979, 0.3258533399694923, -1.0848807124802433, 1.8294470435472663, 0.6880189474276235, -1.33581455971153, -2.078715876504097, 0.042048480701989396, -0.666253615709242, 0.15225496212390874, 0.6534561485337547, 0.5995045391769865, -0.9607499851960358, -0.4164157483761322, -0.2919522468290601, -0.03657239654844717, -0.2939128781273996, 0.5845268478941764, -0.21064754927451565, 0.16847002525856608, 0.6343688350511121, 0.3320833383490074, -0.15503809127054455, -1.1536439030261985, -0.6581655432654193, 0.9311090736731769, 0.852682401194906, 0.726318140970005, -2.2211940897725735, 0.6439649685215033, 0.30926007717488135, -0.1171057203989244, -1.7086039166681486, -1.3289354334340333, 1.4626020147272885, -0.341309779429658, -0.8050329171543485, -1.1239757829518433, -0.7392845901278646, 1.406936054821278, -0.9693330416682765, -1.7015046429170904, 0.9574730448553617, 0.519271983855351, 0.8803666285649194, -1.059991415068868, -0.7961463518465377, -1.1926418558399616, -0.8897081460293306, -0.5616915101900088, 1.0294868376458817, 0.2591541926524878, 0.930178035242508, -1.0203292650276021, 0.9672989865326849, -0.5701449569587812, -0.8341136470516969, 1.4938372642804, 0.7044751369699246, -0.9300113198298364, -0.3754610993637765, 1.9728114274845039, 0.8964550660307632, -0.4804465032581019, 1.973635113674325, 0.9990485430380109, -2.084445236577, -0.97783203703575, -1.3845116623275622, -0.7144251286340992, 0.6676315682434909, 0.08775498266696574, -0.07808767445907015, -1.04409086877969, 1.2417803735298023, -0.7200632364304232, 1.5627554805067858, 0.373661036823602, -0.26329947732789044, -0.3790622877459335, 0.3093955620844781, -0.9826644418075631, 0.13241627308063603, -1.7820926757083186, 1.2541150323390495, 1.7095065557274831, -1.5435031367130267, -1.0731497492792963, 1.1970079942477285, -0.2646130923339951, 0.09552345041869612, 0.16175262989166853, 0.9741758188150864, 1.3388676318044412, -1.2069198848611848, -0.9358802999291188, -0.4753378766178893, 0.42717465434253216, -1.2306384729762476, 1.0797913410347848, -0.7933343470470117, -1.1073547113433404, 0.01829710504797192, -2.409270198972736, 0.5396595254861868, -0.16384867311629447, -0.055981300998483724, 0.7838639703670184, 0.8181870559059394, -0.28583616959082675, -0.026575150799653276, -0.13015479229321583, 0.5722057709967886, -2.709457463359806, -1.1616604345117543, 0.7652151783510555, -2.31177765807293, -1.7758581394698967, 0.5693901850377858, 0.4402310126019067, -0.06451915686708927, 0.6648463594594904, 0.48275324099084926, 0.37740407890579625, -0.6037484002486194, 1.0043646762647587, 0.2337291244567898, 1.0262538396508858, -0.927575829571817, -0.5738970710517161, -1.31132107705741, -0.3235738896565946, -0.4876880391407188, 0.6667685997266983, 0.8299798623739264, -1.1700747802396247, -1.1801958276628048, -0.6310371586624883, -0.35999347120687725, 1.00944432191151, -0.06468939391125456, -0.42093362967339587, 0.8278890925077044, 0.8339341198788074, -1.0449291817187423, -1.5722192701338635, 0.9848100958573293, 0.13903258956542353, 1.000517244276637, -0.8955033337632874, -1.145072002886911, -0.8309481721800592, 1.1496791177727728, 2.0318973354969385, 0.24518427299779827, 0.75898593214559, 0.6724822697823223, -0.7455203145133558, -0.8562761055257909, -0.36200437538681723, 0.652723317887739, -1.369961829978142, -1.1122587497885938, -0.5074195282587861, 0.6535534358701578, 0.4821852386747821, 0.18166356616944918, 1.055978230333421, -2.179920758345618, -2.4682441553929397, 0.6117827518580273, -0.30803730521366995, 0.42862322723619994, 2.2072475333027928, -1.3886150718553851, -2.0729368980834555, -0.11529566887989785, -1.7969288807658719, 0.7117606158209058, 0.03562687995930933, -1.2843461829716236, 0.4925694104671723, -1.086807089137595, 0.37927983558959677, 0.6121979009351148, 0.7103549409525957, -0.294572789216448, -0.3535685508340494, 0.4151524545327796, 0.7372463162010936, 1.1095369642066801, 0.030581134706503078, -0.5739779784175796, 0.05418280966842907, 0.08389286285719047, 0.5504467042153215, 0.4161120430034079, 0.8999215674406107, -0.5264396760038981, -0.7602273260437522, 1.0240744930508723, -0.6321051746567765, 1.2414979470672638, -1.6019078962559128, 0.3048302894116819, -0.31381950108878875, -0.3575364221196912, -0.7602074516646519, -0.7622121187124192, 0.22347149158816978, -1.139188911415712, 0.446801272392009, 0.5130279120788283, -0.33739347893232163, -0.40344187032457063, 0.8124434277222995, -0.0584131266812499, -1.2633560682705358, 0.7814188024537021, 0.16652152627670744, -0.0420422462873011, -0.07486625984407405, -0.37921016712777617, 0.34984118711394685, -0.6612234314100424, 0.39060566206371344, 0.8433567563232899, -0.33146548831200523, 1.0705800608917102, -1.1785632939739006, 0.9219922661797703, -0.25651567219819993, 1.8209144465582685, 0.08715386050344971, -0.44349058452112156, -0.06893109187255818, -0.14382712661950803, 0.5429912819173619, -0.8830225899956998, 0.10859465556047813, 0.8064815551887499, -1.1400023878932997, -0.40956046521340933, 0.24909414638748525, -0.7629211664545525, 1.4836184281565126, -0.5518692353764291, -1.518418425339123, -0.0597922859047916, 0.6859268988017634, 0.07850807711292329, 0.040303769727559946, -1.8797875188783624, 0.5293763305346496, 0.6073666316001896, -0.8698731399082601, 0.6371971602043742, 0.880363692701296, 0.47650635331312047, 1.083243412995983, -0.7946334180442273, 0.313836322482524, -1.6387929944357122, -0.10676325490622848, -1.682418194318109, -0.10407553397200747, -0.12272885658421999, 1.7142906022921474, -0.6972078188070397, -0.9761762659741249, -1.2939211155804347, -2.3012165725927103, 0.716372403986619, 0.5212857930615734, 1.3839975343657305, -0.214683647986254, -2.505175438221852, 0.21811386788945472, 0.580790672943766, -0.7077899859150721, 0.28295823499102035, -0.25023772805274197, 0.2147841868055628, 0.5761304953585447, -0.676761630681217, 0.48703255051913585, -0.3342028903182224, 1.1544198829149845, -1.0163245747320457, -0.26474740986400686, 0.43812791911029675, -0.6237463537295422, -0.10464650329840262, -1.4988113235977565, -0.19147913756864435, -1.2505811450167919, 0.3084857110774444, 0.8942964320012832, 0.9899319064103858, -0.3333826444211509, 1.6905998472097108, -1.0174883347507793, 0.016380990948761092, 0.7614222140260067, -1.1485243831727183, -0.41388167170005197, -0.4865240689981791, -1.2826579851661577, -0.3176509740750103, -0.5134368572095006, 3.1144166344828337, 0.5858050179009663, -1.035816792030686, -1.2031557972616977, -0.27368376376282555, -0.5266563174327871, -0.8162243521235026, 0.9254547120642355, -0.2608368766125238, 0.15582554592659886, 1.4384693786609186, -0.21658741104885856, -0.2339877263782786, 1.7945899830155962, -0.3930951030327188, -0.46619408539993645, -0.3349229346207302, 0.2713510913427357, -0.31845547874692526, -0.014891330664638934, 0.5125230444842918, -0.0388453427813581, 0.5767611714920331, 0.3015873664317466, 0.3406843725379184, 0.13096158868468266, 0.8162895910395945, 0.6802033985126771, 0.37520494508197805, -0.19517496318861902, 0.8865023833711376, 1.041732978092368, -0.005441793705265259, -0.12186812980848996, -1.3391622314357008, -0.17691807349863556, 1.6094275651320793, -0.6364114535168104, -0.3608291761161411, 0.5045700669116879, 0.13183310387252462, -0.8415817571155022, 0.2781819969324653, 0.4340117720519758, -0.4111310762110379, 0.3329162245030224, -0.025989452398538348, -0.810360505400474, -1.3784452138317171, 0.827535844555873, 0.7438016578172604, 0.14267686886931794, -0.03491602900150402, -1.0357205462242, -0.015252199230248275, 0.5476339170114815, -0.7717835349087203, 0.14763580660102144, -0.6259822120899701, -0.736503982909065, 1.415635515778405, -1.1637564639631692, -0.4482892175398893, 0.24159610945414212, -0.8973352593623926, -0.2998616296888593, -1.2422698456234111, -0.5141820577960864, 0.025492798470711887, -1.3496190238790415, -1.283329369459436, 0.8006782792306609, -0.5285351316840146, 1.2257650465983443, 0.5241190246923618, -0.811447317273982, 0.6026403413138239, -0.8313728132201426, -0.8151458325006808, 0.6656557098190764, 1.1722328251919873, 0.4093876983996995, 1.0061850807429957, -1.2445850197323753, -0.17924123899084768, 0.10524352156894086, 1.1817852859730693, 0.9264633377329028, -1.4781373975722714, 0.7913442256193652, 1.9222626099174676, 1.9321687982905378, -0.6535553233692574, -1.283026640305507, 0.35490127868114685, 0.1953404036901791, 0.0021442266480410943, 1.0343676112493905, -1.0359410205432469, 0.4801767064333025, -0.07238455607244962, 0.4996239740771741, -1.127199388015858, 0.5884043331074511, -0.5437926534765278, 1.0187659980975066, 0.2084336206671935, 0.44318232054944895, 0.5335551728418341, 0.4377829370822166, 0.8229995393037423, 1.5533729829401723, 1.612932764777465, 1.3435233076429534, 0.320120504097201, 1.3305388327997514, 0.5845629638062491, 0.6441696601618431, 0.2754150344854291, 0.2657104255609365, -0.0699068004022731, -1.354722296470627, -0.3143651067127539, 0.15461379027138009, 0.8201787321373039, -1.0193894621744535, 0.5040972908847055, 0.33488548352303904, 0.6277824485012121, -1.0062342133379665, 1.0939446459710298, 0.257094079645931, 0.35979555313157674, -1.7424843200515712, -0.4379517031215286, 0.0541436461479157, 0.05922978963819745, -0.07624018960677938, 0.491741608529425, 1.7826346928521197, -0.4563937180439427, 0.18177653546852887, -1.4517517112144631, 1.1876955301307004, -0.2960759497621646, -0.8925725678221218, -0.16117854919386113, 0.044801932350353985, -1.2820383904995953, -0.7224677697115656, -0.24206032166798797, 0.6966426743916055, 1.2252145342007292, 1.7273187638536274, -0.5784988700054576, 0.09062759934340651, 1.3488179879166744, 1.4701283629995678, 0.3263548814596603, 1.1864394910251335, -1.5655674793125054, -1.5396199010214384, -0.35553955034180934, 0.15237198676111913, 0.6028987365147892, -2.0018892217045883, -0.05891691464069484, 0.5523687056185091, -0.08005263110381261, 1.5831643620211322, -1.2857532407380035, -1.9551656413538092, 0.04772241218376937, -0.6187499437399978, 0.8790120368050123, -0.5384460781456969, 1.471010999489875, 1.544465553597043, 0.09636305308691308, 0.7881158982850626, -1.5611404611643642, 0.35363636210042987, 0.6052654967673561, 1.0365183574977554, 1.4644663826247197, 0.6861133675016636, -0.9542869429374227, 0.17230853878186578, -1.3958411282140455, 0.13822064131678216, -0.40736577091420123, 0.1279628271247501, 1.9247807299661726, 1.245034762480536, -0.9669108420462352, 1.0879237214308224, -0.9399978768419097, -0.5719414147462843, -0.4300509460380562, -2.422587994494081, 0.20894680047347175, -1.0773131824752757, -0.5004499605047319, -0.15794239302772092, -0.2775088312943783, -0.6520376380015706, 1.8209110745170523, -1.4122895245602782, 0.12002273339516213, 0.5117233616236226, 2.0464537331472687, -1.0844092501233042, -0.7151810738087065, -0.28309583403741023, -0.22320580523228103, 0.7365512849069475, 0.4930327304281391, 1.2328900212969396, 0.6178518718772624, -1.546872706613039, 1.7993810576527949, -0.3922804659592191, -0.8558612487745166, -0.017803247880997356, 1.1896547431491247, 0.8918929906122044, 0.21351683600635987, 0.9740635280195746, -0.012171938461676938, 0.023811829352731656, 0.12974436556061597, -0.8557285737808917, 1.1748207229203058, 1.06469690237404, 0.8505188866145915, 1.413327187860911, -0.7130856044737908, -0.2519243505421562, 0.03945885529390173, 0.08813680561204036, 1.6227632234577472, -0.6090201819950845, -0.5695470204786992, 1.241722970261867, -1.3173600078646721, 1.7943644646555215, 1.1794672130998616, 1.2874567383740947, 0.47373459923865824, 0.48966863151000006, -0.38372714421838094, 0.27765944219266947, -2.016422377511334, 0.6601795843932013, 0.07436030769870021, 0.417012571137052, -1.1182430853038472, 0.7890481260547374, 1.9263954139039174, -0.04072540493240805, -0.1329793890471113, 0.24462488541694538, 1.2755513479543592, 0.13927337298042394, 1.1366567795316873, 0.1578602534408608, -1.629247839184941, 1.5119179104271903, -1.513849715187582, 0.3123211103853945, 0.2389225876022137, 0.15488086470782386, 0.11308966943378167, -0.30812587020835924, 0.0751243103103872, -1.0794054831837794, 0.25456761185879073, 2.517611880883862, 0.3509064346900898, -0.6018901760677302, -0.6038481162231373, -0.36260716471936166, -1.259781531498829, 0.016185382919054025, 0.2030444985527874, 0.5487687880224679, -0.3033119564649258, -0.5932744408012651, -0.4160167836252506, -0.5678549665195328, -1.4407340062045177, -0.12383344751788372, 0.025596779268367693, 0.34854690726378457, 1.2159529332326464, -1.1820660239447731, -0.05274836841414486, 1.014593996145484, 1.8375614138644882, 0.5236447270637605, -1.0108078134419998, 0.5762142484136505, 1.3993431719450393, 0.09480510383179529, -0.5050755735152395, 0.5596991020154666, 2.7956777358661955, 1.5076981152177638, 1.0264690871935018, 2.1958513829404125, 0.8686065435907003, -0.6527233853613973, -0.740844364679746, 0.39301999637678803, 0.12099804727325544, 0.446134204331655, 0.8215025059417117, 0.679180476001322, -1.0309346979055756, -0.5672883261960332, -0.15081033659402288, 0.1948368130930741, -0.009750675919341884, 0.1450324608865945, -0.9607005966933639, -0.37671051902747676, -0.74464247510807, 1.455103520785909, 1.148232037632339, 0.8052397545206684, 1.3441707215214895, -0.3422429106305707, 0.8048142245474055, -1.4881081872886504, -0.9973930042874092, 0.2655195848394338, -0.7335503267017988, 0.06534247957525567, -1.244622642612727, -1.8628368157885749, -0.33937938259073785, 0.8955695788769928, -0.3159293000733788, -0.6600522973194821, -0.10953223960307353, 0.9934421668417107, 1.9346776727404706, 1.9522604249883104, -0.20961997558744783, 0.722666907849633, 0.684768810472317, -0.5127483501106823, -0.25673069785418934, -0.7839865007432916, 0.8065016001830798, -0.1911774879926682, 0.8858390492994849, -0.8027088357103423, -1.3118836559269527, 0.25651745676373255, 0.04374988606755082, 0.9474944585559663, -0.4377019782141354, -0.455578969581926, -0.009407074964322066, -0.8808737450574076, 0.14775496808038244, 1.7070467242395169, -0.16714513053661095, 0.639232203106653, -0.06297363592705098, 1.445153120031374, -0.26274620899459805, 1.3877650674244864, 0.7295525328287046, -1.1095205943131707, -0.61881691084192, 0.0408506576547843, -1.0736773818376038, -1.044877220935726, -0.5650092931308716, 1.9368134538262585, -0.6798813529716787, 0.16613544017983228, 0.19447352823465833, 1.2792015756049158, -0.6494033593175782, -0.05972791657160653, -1.5982085802285855, -1.5225060337885796, -0.22466727023503855, -0.24089471856389227, 1.167444527193427, -1.0993511576581527, -0.3675520039828775, 0.9056777921312074, -0.5780894893340381, -0.6329617052385692, -1.1912638310241204, 1.7346693691670458, 1.0741934868370357, -1.2310529578483396, -1.0490082338981495, -1.75472071792275, 0.8298766723018388, -0.5657442042008693, 0.3476899719318745, -1.1937525363558865, 0.40363330140217435, 1.0505743595304546, -0.983169542876071, 2.0364519019440928, 1.0366189024078825, 0.20659161685389943, 1.5229349455007595, -0.834334804796279, 0.5096457097479471, 0.1698659877238491, 0.2255188221815637, -1.723764679708482, -1.0314195599240743, -1.46501633727361, 0.43363349327228645, 0.20935290050249566, -1.4018248320014601, 1.1109157670938061, -2.036038594572306, 0.9751704242634825, 0.04086931644988348, 1.204091149165247, -0.00029392385651946296, 1.1772181868781217, 0.38983491877086784, -0.8077123812192845, -2.1001336944769156, 1.2417617754968677, 0.940952489040904, 1.667626407821868, -0.5098719424587098, -1.1590130758925505, -0.5512047371009836, 1.4361690088341765, -0.6736029577837576, 2.028321687286543, 1.5760105688360162, 1.4274312638731939, 1.3692749380715696, 1.5406584717447627, 0.5137253025307132, 1.1466639252624304, -0.199439495848712, 0.8086347756810616, 0.8423447091531083, -0.6141655540653556, -0.16057024787122517, 0.20907953532305965, 0.7508440515946052, -0.20372232170966903, 0.04954816914263459, 1.0702877545626395, 0.7718337293888542, -0.22152638480094033, -0.9135063255655667, -1.9526353433144672, 1.751350413450012, 0.5744234250002491, 0.2794301287570198, 0.1945387318310753, 0.6077020232822727, 0.38158067626686976, -0.015906503758516193, -0.9906129937174428, 0.05439102442267917, 0.8897669719813266, -0.6808462381582525, 1.4432481802674528, -1.5608405994413053, -0.07899943868577235, 0.48715398538150145, 0.5555674364218564, -0.14906479872143455, 1.3216326571041328, -0.5378545373078873, -0.8866048473924198, 1.2409818997194153, -0.4629849416273083, 1.2189464757233823, 0.6959688943345642, -0.3536481586980511, 0.9058639485784867, 0.8582932768255925, 0.1626604031061175, 0.8840101546698729, 0.23053319749047352, -1.011441444181341, -0.74770015858214, 1.3108126603806876, -0.8725408613254181, 1.2148076694712084, -0.60249268676671, -0.3152941188197613, 1.2544042126618267, -1.4192618698448596, -0.4356917532739352, 0.29584632509731257, 0.04219412234613846, -1.8401797668631128, -1.5283404203633035, -0.532826005336861, 0.76842492479375, -0.058109263565629864, -0.4905764914784534, 0.5376760473180825, -0.03170327612619168, -0.4301975874461493, 2.0024997065698775, -0.9225578381983327, 1.3697790295170056, 0.6946614294420733, -1.2581142503761575, -1.7061888952358992, 0.5730751219718617, -0.2621760086149213, -0.3283665250441474, 0.841444029867672, -0.5286804034322345, 0.09292915388430013, -0.7105718560524069, -0.3265690076143692, 0.15880998657531117, 0.17967134161930776, 2.1860027908586788, -0.150825373884487, -1.0863454599615179, -0.3996298774790282, 2.2672379381258256, 0.22855466496639637, 1.6996234990740804, -1.132719252229861, 0.5672183028001692, 0.13633858253744888, -0.13739319242081996, -1.1476315706430282, -0.7051362289308324, 0.7566243344309486, 1.3836204425291398, -0.01971272921912427, 0.46369522221100595, 0.07024488777478931, -0.7438425023571649, 0.21202350802814185, -0.28861044937635666, -0.5924720819940311, -0.8034003537418332, -1.188568842751053, 1.48865786083349, 0.13201499722219645, -0.798011309114797, -0.5496032093875015, -0.28956690158807163, -1.05277840156845, -0.605071930779114, 0.22576397600391365, -0.7526843447132924, 0.5476653772579491, 0.27608058987158746, 0.22368104917011458, 1.4266378376213251, 1.1008047642532832, -0.09709565516439772, 0.2284793959230113, 0.1831719147970269, 1.864475226228605, -0.39931868898545453, 0.010596458669006992, 0.3117233829793411, -0.18833011234021685, -0.7207113063254988, -1.478129071808637, -0.9973761045291564, 1.2003638213308794, 0.17968232563037798, -1.027075542077661, 1.5591400200311845, -0.5732062166502896, 0.08000140534093211, -1.3016778839774226, -1.3074026736004807, 0.05170525090111654, -1.7929989893714176, 1.022565900278809, 0.29239196085600805, -0.35309390921193823, -1.245550825707413, 0.8378755588807781, 0.19418448244409897, 0.7003982172675258, -1.218645073386005, -0.8963316104701191, -0.6505761300847105, 0.6007814379828811, 1.1261767245243466, 1.4194974313748097, -0.5366647846529422, 1.0310814756076108, -0.8484687268049843, 0.7999499367996206, -0.47657971313497816, 1.837043959064066, -2.3883446790718246, 0.07638131890366842, 1.8543377276739246, -2.219542632491827, -1.0815659264183983, 0.343404805227586, -1.1288307447075858, 0.7008417725430757, -0.14608461601890868, -1.0225298836614805, -0.011732225514174244, -0.24314828371355862, 0.607031038712331, -0.30443448455627364, 1.1273210018673847, -1.1289646363896206, -0.22116117072658126, 0.9091880550273015, 1.2125856733473575, 0.5374014346165995, -0.5660268919674677, -1.2727860061758796, -0.42642418555583433, -0.04099988402677001, 2.647717959160426, 2.2551244835449458, -0.3737138859603662, -0.41673540254406394, 0.2559186238147548, -0.5576724664715604, -1.5379586482132868, -2.0619086350708837, -0.36477312231436854, 0.5432957501066467, -0.9211158017424596, -0.4189880543073788, 0.21617587999717705, -0.9627833027077282, -0.7330181208909683, -0.05835646941001438, 0.5309576381919522, -0.8763742554300961, -1.4007664577876369, -1.2267497223845947, -0.3287776312980266, 0.7393789681425093, 3.497689280953669, -0.08573156723148519, 1.091242490780188, -0.3529296013429898, 0.24881944051738897, 0.7699040339718597, -0.3028992805239788, -0.3752472789135381, 0.09217566433139247, -0.40588233914314903, 0.5312309624243546, 1.2417892060359932, 0.7381067199878545, -1.5469738448018169, 0.1906978627934832, -1.5199887666702354, 1.033557318023829, -0.9671246290044844, 0.0008309104654638311, 1.4582796384751864, 0.3456260826962406, 1.3904400304788227, -0.21449320542097686, -0.6256034893512052, 0.3924965894102065, 1.8079653520261731, 0.7992747141758644, 0.8716547507732009, -1.8076027386785416, 0.2934993881471099, 0.36781017152005097, -0.06891114571776341, 0.2739566797929648, 0.19578099144508465, 1.1319810437043922, -0.8294330515662006, 0.48957064242826664, -0.3014901630932454, -3.063124476377506, 0.39801380902800065, -0.483831502751073, 0.2023690444268691, -1.2861886686357473, 1.1407929752314647, 0.3699940229417647, 1.0365037471940153, 0.15429811928960763, -0.8069126484229023, -0.06661507585768404, 0.20911300107541458, 0.779386315614049, 0.9568096906052959, 0.27846517079864225, 0.007818189344834314, -0.16588188885607083, 0.07127396839339492, -1.5706404940375205, -0.47316937065050946, 0.5500628983478805, -0.9382684769771966, 1.7605622458349934, 2.320903511905841, 0.8205638573166074, 1.7073318384508729, 2.0487049288398027, 0.5213506549489251, 1.8535425461470403, 0.6840163858021641, 0.2668311369258774, -0.6704298747333116, 0.031118950390710397, 2.0843678998803363, 0.7130183427847245, -0.04260282281538772, 0.3876035489359358, -0.4790923302501097, -0.6613800940970328, 0.44665456433282025, 0.4471210845078727, 1.6925034073569938, -0.5830928901812213, -0.6614581168624244, 0.4562513294457598, -1.7255837358427872, 0.8972750347947136, -1.0250474160803376, 1.0583365002826155, 0.39484041395046804, 0.7543243758908894, 0.265490404023004, 0.19184385837800008, -0.562939055988864, 1.040462687797869, 0.8076622383172805, 1.1041003106896723, 0.6274669512572405, 0.06504962780377702, -1.1335798415975362, -0.6529842250944226, -0.381907635256027, 0.29231783310611403, 1.1696257719766012, -1.2227707000357577, 0.4783180989576224, 0.2598258321577171, 0.5586329923913589, -0.87611919841432, -1.9101611210540457, 0.26420646405032805, -0.8332733727087972, 0.8138049123553239, 1.859060924373942, 1.471902289851347, 1.163974695841869, -0.7129131972279907, -0.06212930002916427, -0.4371365494606824, -0.3755755253420001, -0.05305885197649048, 0.7740925939182983, -0.9165443482573422, -0.29913721422206613, -0.6706273877326753, -0.7634781498493765, 0.03630013210652112, 1.066928888235211, -0.6385556056435235, 0.1868063062647769, -2.6085425898255834, -1.5701061432560677, 3.340766269992252, -0.101452379317286, -0.7781785527886429, -0.6940805342175176, -0.5072820199932871, 0.08055127434282143, -0.193195445346332, 1.365328533610954, 1.0454133828695704, -0.06825371495809981, -1.1862907078432399, -0.6537770612500592, -0.8510425977984525, -0.6403297283773162, 0.9171097586129734, -1.2315732357291953, 0.6843829598267599, -0.005206633383514689, -0.6084627179701755, -1.5292885961342713, 0.9255320816915745, 0.4401219454369548, -0.3998749628978624, 1.8879905580555523, 0.40025090336078234, -1.6770220057976404, -0.34511387501536245, -0.8921568331213588, -1.350053687196029, -2.0627304606585954, -2.02959363061985, 1.751610409289455, 0.4137373112169153, -1.1761627375025774, 1.8037764313584614, -0.31693702807798135, 0.9679617975436304, 1.207124843234728, -0.1151700890413106, -0.4730162162823013, 0.5512123150614355, 2.5111223650321466, -0.2626267820764268, 0.6527827689918868, -1.0906996760032934, -0.30846504507743466, 0.21259289020810845, -0.18463213678642698, 0.7554800266412509, 1.792886540133381, 0.5437093790650084, 1.649533270105532, 0.24776616051879993, -0.7374880110941975, -0.11899210802785637, -0.5507479669140573, 0.5562259449725131, 0.8088329705484253, -0.47999581425550747, 0.6899806402307579, 1.6113546997037314, -1.9148703144154828, 0.008772680584648192, -0.5022134142574102, -0.15771364554731404, -1.2702523438318074, -0.8393860531000485, -1.3760767312378483, -1.0886504357194176, -0.6365478907519782, 2.5261257275135662, 0.30131469533968247, 1.2344779713228262, 0.19661874937307683, 0.9635530636818915, 0.6710352218613514, -0.10087794719570663, -0.4801092476983527, -0.327752070417166, 1.2322028795190298, -1.261806042551691, -0.27282697104903975, -0.5528289231330804, 0.40096735803788763, 0.9304643932902826, 0.3701949031276876, -0.931084230019726, -2.973792782568711, -0.6687308038613982, 0.3348733955847476, -0.5043829773103877, 0.48113980919181076, 1.3071311791705453, -0.08961873717532373, 0.8682735471960642, 1.0772051643418916, 0.22196058668594396, 0.8321220581349805, -0.3849782643196241, -0.7035595512367919, -1.0498564753372124, 0.306188749027166, -0.8928757687259435, -0.17425804043771473, 0.5564239953050837, -0.6376848248072199, 0.6324613376547649, 0.9386347281729501, 0.1217919841431581, 0.047514214862106316, 1.2254467738075505, 0.7653150407734004, -0.09426224215484728, -0.6003967872824834, 0.4775283194592767, 1.05737954456652, -0.1783068264888658, 0.5424091457281359, 2.473589123867229, 0.5356681748925043, -1.2825177403493002, -0.4168466755143647, -1.3500318258788324, -1.3364860126030067, 1.7693546637034623, -0.2071558417116109, 0.8505592279034095, -0.15264426292800692, 0.46163099658318535, 1.5934777756951697, 0.6742036611256095, 0.027251598198405405, -0.3276814995270894, -0.9143647022626322, -0.31203493652007125, 0.16840465037758265, 1.4033791037472232, -1.851446387025646, -0.7301440903135267, 1.1566882670698284, 0.12164317987386543, 1.004134178887631, -0.4052983414880645, 1.4637728410908712, -0.660313160894203, -1.3366189276677154, 0.25388668695670724, -0.7253395566740347, -1.7002306556611304, -1.398950401552893, -0.6434855116055096, 1.048916494041938, 0.32120348948923844, -0.9152241294865886, 0.17704083066179624, 0.09133297056789454, -0.9611112446827706, -0.8803935125636304, 1.032392057582198, -1.3929525524165502, -1.5751423454922824, -0.4475744613533008, 2.003191870052427, -0.8053908827639097, -0.303954658596554, 0.700793190522342, -0.24021043423496843, -0.16999462996703282, 0.2812583802431982, 0.7726476437970016, -0.4103219943332507, -1.2650779877704967, 0.6329143827433642, -1.3416255100095358, -1.7455923665225521, 0.5090079668023327, -1.2187895908602682, 0.025218071206089567, 0.15215020473949964, -0.03336297310618683, -0.5792397874166644, 0.35767935999997374, 1.201940502063591, 1.6062937521346359, 1.0666665716529784, -0.26929401830228167, 0.18428095576798995, 0.01047684185436098, 0.03279555758028292, -1.1889605452132013, 1.7160966389071695, 0.5792207384805053, 0.3865190775092898, 0.335004618307496, -2.2352599823757533, -1.4849148777541836, -0.958603035307843, 0.508256163089822, 1.229354239908043, -1.0664077166132067, -0.9464968063577365, 1.172135754962033, -1.9635032341721834, 0.7608904615525385, -0.6096357609334709, -0.09047462545141792, 1.7185336259289061, -0.8350112502956706, 0.2426966012927853, 0.16350663078840905, 1.3333443280703225, 1.1686552058205757, -0.02408327907660792, -0.38819762298252686, 0.5445653548585648, 1.4370341098366395, 0.19902653805710208, 0.6959791388909637, -2.0367521843313465, 0.0017343084964211687, -1.0877795095160934, -0.5813106780289656, -1.034217539204026, -0.7297802015868531, -0.7695519693308341, 0.9190767575352999, 1.1152290061960366, -1.8895134569032894, 0.5139230484883066, -0.252646689349597, -0.08951975256199825, 1.2272513261549536, -0.3668756976689052, 0.2032212011969361, 0.16577271693329054, -1.1972041516371654, 0.3821114446594724, -0.8208965681176003, -1.57123935911689, -1.631150217505978, 0.8984732834743779, -1.0382835609009775, -0.47427417236979896, 0.9695581029902975, -1.3168787369391755, 2.2185766913369456, 1.4762251701129219, 0.07471778186108974, 0.008126235382413433, 0.8621193819390345, 0.6624458527239047, 0.9283942253301714, -2.0127441294779347, -1.1753071672066402, -1.0077904062539242, 1.056557186126579, 1.5552964720160602, -1.506160562447877, -0.8770677299074621, -0.41996860532327807, -0.46519979603451406, -0.3290645354651488, 0.6618528792576095, -0.4163389523689942, 1.5107327968652786, 0.0903945831939734, 0.688353537576425, 1.2474854988772537, 0.5411187062284185, -0.17347829779501278, -1.0830336626674288, -1.0906705086884465, 1.7617346299694383, 0.7183108788805839, 2.1042528770811337, -0.2838447434479129, 0.3253542436942781, 0.08222026632695123, 0.004077788193227914, -0.5210406791812862, -0.4717875275995056, -0.636566178402634, 0.09138346354334866, -1.0061812560663113, 0.041998894790839264, -1.7245718529351912, -1.311795467021812, -0.4455336469118605, -0.5944823108416855, -0.4024249154559222, 0.23055986035247517, -0.1472105206219886, 0.16671735885376188, -0.018990220546095272, 0.04221334404067596, -0.16999345897812496, -0.030832339573905975, 0.8015074165327826, -1.1500302363650476, 2.1683830063849423, -0.22232437694046064, -1.0022308717986692, 0.6121198694859608, 0.41955130317164796, 0.04593675417646312, 1.4749875781384945, 0.18221372411272396, 1.1642716692530959, 0.6717485042293888, -1.0838656932229445, -0.4450856659220053, 0.1615488605278639, 0.9829669305157837, 1.1517729608953102, -0.08776383454224189, -0.9697896164431792, 0.3588208951211979, -1.2697584971821283, 0.19144491209302222, -0.6690919976073034, 1.1818749331255436, 1.1533853114390837, 1.0532227198668178, 0.9815886323488722, 2.311215973169255, 0.3637205044560293, 1.739150457523757, -0.35439030550699563, -1.0040835736656657, 1.42280114652439, -0.5083961624108566, -0.3578472024092545, -0.037689648091148664, -1.2005666637899544, 1.4712410061442933, 1.6778180592196914, -0.0020739363819418434, -0.44765711148191817, 1.19854082829598, -1.2051711755571959, -0.46703557418381736, -1.5561263819929507, -0.22200259119117377, 0.5636718411233952, 1.069945962049704, 1.287142928334001, -1.086942157354914, 1.2162665472007514, 0.7068736671564583, 0.0539575101066532, 1.0737108380146902, 1.3139027873666016, 0.42089658648568606, 0.9496995985121736, -1.0802687111442923, 1.0947848948240364, -0.07676268849874011, -0.2719720424121714, 0.35918185428283556, -0.7364237776050909, 0.8730634264078714, -0.6070548039790318, 1.759008208962265, 1.1021127836619653, -0.3099273018065053, 0.07041111786846846, -0.42261502817363544, -0.6199291746350146, -0.9302297484636532, 0.878095491756866, 0.5347329358274482, -0.3908324450616546, 0.9214283509779518, 0.40649273031022887, 0.24133426478320644, -1.8249280402869006, 0.7198907946779886, 1.209917838413206, -0.23864953581937498, 1.5993860638788808, 3.1381757326563777, -0.3850251863652013, 0.8453662756252958, 0.6708037633782067, -1.2327052705649184, 0.9363107508920134, -0.4373575268458017, -0.1518215994343586, -0.21423748043609123, -1.0879898721721148, -0.4290827905641084, -1.677564916108021, -0.7338536124664798, -1.3382703278498835, 0.3064266394646537, 1.1883727985427799, 1.219138493340212, -0.7508590615235945, 0.8664680285445095, -0.5218262567286547, 1.883859664932559, 0.6577413549926299, 1.6255325889668548, 0.9863450139416466, 2.020572302401348, 0.2591940080359894, -0.46356251000190585, -1.5555744877709792, 1.0645648028425796, 0.031183688981319267, 1.284599651930037, 1.7595798760232193, 0.48653985914444003, 0.5023935801154935, -1.0355642023327492, -0.7070511584933497, 1.418781410617545, -0.658155059156652, -0.2213856324282646, 0.47260210981109, -0.3448675778942552, 0.8176403180150129, 1.5340640084290837, -0.3190905727984848, -1.1882862073520153, 0.4524874332624135, 0.09238997974480866, -0.19111078760233458, -0.17552904822440082, 2.3177307215399887, 0.03729074049699447, 0.8300538847810868, -0.03699387450974028, 0.254120955220396, 0.5569336394994389, -0.43244898764071377, -0.5456770624289733, -0.13274355816143865, 0.936879979886938, 0.14572905828104282, 0.3793553129232978, 0.41145895951228834, 1.4844350658657708, 0.3604173057554669, -0.518267293136307, -1.6082315365617452, -0.42102514355858, 0.18501783926859172, -0.47673174740305885, -0.7328740654221542, -0.23857727339869897, 2.776689163399174, 0.2875616529528474, -1.0784582577593427, -2.2418732061933944, 0.5797532883328916, -0.4172942488452537, -1.1553516444504974, 2.084899213403854, -1.8510218603403932, -0.4347183743805677, -2.554702240795564, -1.2056290469526847, 1.5116480766176865, 0.47081062857021816, -0.7185177352992598, 1.0470628825786503, 0.11271709832103274, 0.28461176049221726, -0.21716291386866135, -0.10101358805706745, -0.4569597520925252, -0.48791704952008796, -0.9460955823795262, -0.041237249338309745, -1.0202875854047166, -0.9437791674666506, 0.22133543772822084, 0.6532726195967613, 0.6283295346109655, -1.2466400411578276, 0.5027081739297595, -0.47671204892249003, -0.9720192569220559, 1.169926982843185, 0.7522265764180714, -1.0133983121561245, -0.09640792830698935, -0.5715387991052042, -2.237611426380888, 0.5930472612561635, -0.46042516506696635, 0.5785078539120355, 0.2543423974838805, -0.03731658599257103, 0.5088533683030507, -0.808096365676462, -0.820473126112539, 0.6987948951868205, 0.4537616081286091, 0.6703140849482123, 0.771116661879681, -0.3856052740148114, -0.5786091894153796, -1.6482709262707889, -0.6929218782002695, 0.11270166625424348, -1.3190497918370252, 1.235881478719332, 0.5803669301576673, 0.03569969165430025, 1.403290029763577, 0.9751898352930887, 1.6183565874159542, -0.4884403810384852, -0.48643792102738204, -0.1715429847346794, -0.23772083743924133, -0.6100531926496263, -0.4688684853154819, 0.443795049559604, 0.5890434508349276, -0.1459091312152079, -0.0032434801001128928, 0.4132091761371618, -2.4975411073027183, -1.2785792508741203, 0.4499161616105849, 0.6958413998161126, 0.10515220529184058, -0.04388174647954606, 0.21441736768960284, 0.25562993354482466, 0.48610194731842926, -0.4317170744293841, -1.6347386929338483, 1.3410168383695786, 0.23507944321255872, 1.4051438564593426, -0.04540005845125255, -0.8647092810434108, 0.801978949810652, 0.22713040933252018, -1.2716929581150145, -1.9964801971128048, -3.339400680488551, -0.030473212679206416, 0.579069828368757, 0.951578873615739, 1.6647373619675003, -0.6866940259347847, -1.282124580003553, 0.1483786696789623, -0.38463815696959447, -1.2365275080384457, 0.9898206241005312, -0.6546436237204715, 1.0341813430286682, 1.0099303295625484, 0.21955864833424385, 0.26781911637986905, 0.25299554396192564, 0.08385341492733868, -0.04992748435268392, -0.8388011087869172, 0.29915305632431854, 1.8927365400603098, 1.6200558779049097, -0.5071852532033826, 0.49819308811885654, 0.6548799937165934, -0.1353841721377809, -0.18634653647606628, -0.156340292674568, -0.7276350135667277, 2.261186569221781, -0.48252754064750175, 0.14912483678739327, 1.6831266845865422, 0.7681924918365322, 0.024773045853213212, -0.48911621727741855, -0.24696199848888317, -0.18452083548198311, 0.6830463792712449, 1.401291700022607, -0.16051380864034567, -1.101843673164353, -2.884553922153552, 1.5984263716556917, 0.623258086846125, 1.264560410505028, -1.2097220615708808, 1.3568454365063256, -1.1460514559891997, -0.19000268774975776, 0.05680339268149071, 0.6762047042063422, -0.1969886399057392, 0.8257887153394816, 0.06827169386656799, -0.0705836755857657, 1.4670557304325271, -0.08211733177153112, 1.0147488739723394, 0.36823874091004466, -0.7928167386726888, -0.22316878418936184, 2.2065030552023157, 0.5428498341086757, 0.3226936623483385, -0.5225674461692124, -0.6338356141134877, 1.0560481643497743, -1.5592356249753072, -0.7829505422456574, 0.9055855028014123, 0.2804248959961374, -2.36558206327194, 0.6276654810490191, 0.07047337514793132, 0.9489139809513336, -0.10259682428439604, 0.9090952299548005, 0.24275571120323833, -0.3644012096525409, 0.7663124883156199, 1.51325010495815, 0.0072658765409206495, -0.2573215361858604, 0.5216004932713559, 0.451271386316833, -1.7929245124511968, 0.1969202002214388, 0.45890390475263193, -0.7419464578158834, -0.7248726718329234, 2.2876820504879634, -0.7823642185649026, -0.6377901705866444, -0.7866033401382656, -1.3186021098162812, 0.38968453540162024, 0.017891034319844238, -0.41980306161354486, -0.7555927904519819, -1.8277464770660012, -1.8727425280291683, 0.6071394506789605, 0.592577435212273, -1.2480849872126485, 0.13262361062775516, 1.567686567571786, 0.7983261391323465, -1.4980539900646126, 0.39403094900094104, -1.0443709331515436, -2.6766298891363904, -1.0099441305260557, -0.029039440856233337, -1.7052719091959214, 0.5281565508457343, -0.18010938191621761, 0.3711777280242332, -1.340970302467288, -0.05374248311089038, -1.4769119483021902, -0.48265146447861973, 0.04336697303905412, 0.8326351791958772, -0.5337193693478274, 0.48824737394356443, -1.974241279890131, 1.3783607450283848, 0.9160607598654604, 0.7510555346889123, 1.5705826298977923, -0.5428088624476324, -0.403925325886676, 0.29553438820077005, 1.5158159138609228, -0.5786399944414784, 0.29580502129412284, 0.18227778568213393, -0.38039009728054113, 0.07558749292907499, 0.529657696787251, 0.14296028014766862, -0.746266055611804, -1.7889108212747733, 1.3701203536199846, -0.4350337085893921, -0.6077313475026723, -1.612952533404769, -1.3590246154962367, 0.43545526760600084, -0.09844162398572287, -0.4287627426784502, -1.345306226374128, 2.118065456959547, 0.3725974191622876, 0.16966338408213563, -0.3887083590027408, 0.10781314772205622, 0.3966981274566379, 0.96828464215487, 0.46129830326162197, -0.7572341506575314, 0.7542072185452502, 0.01052585090279391, -0.05164272620707607, 0.001039877866116297, 0.20669171174338863, -0.2095909969210576, -0.17618049293788948, -1.1960129569074671, -0.35766280503974873, 0.720109217169631, 0.5259543483162772, 0.0897320310224984, 0.7751471316606477, 0.10863436753988555, 0.5171138960395923, -0.12643168740136207, 0.6949754588260112, -0.5860854154607699, 1.4333055328338182, -0.19303081299521324, -1.2101140803826216, 0.7894287031300304, 0.43668628120631836, 0.5550252055517425, 0.5580869877136232, 1.4486642702320254, 0.11300719517650308, 1.9328454087119027, -0.1572029753404517, -1.1218660638772884, 1.188109133051169, -1.168211292018221, 0.9948668732228071, -0.6848157943941344, -0.9429581113369594, -0.8930800311709425, 0.5256243522498247, -0.9895500559189317, -1.1633907755528434, -0.6882045294606235, -0.48331820010501014, -1.7571172613958066, 1.769839900960788, -0.4757235142166306, 0.6593633519973185, -1.0410328546143437, 0.2014739495999869, 0.07509711908137721, 0.2525878333229861, -0.3287213594039831, 0.9205793255988327, -0.6500211607753007, -1.698023965121771, -1.3719555296646724, 0.31429087797466004, -0.49169692417549643, -0.5948218060888752, -0.848160634505956, 1.0750928366244397, -0.24661607343030256, 1.117809689849429, 0.27264116009255496, 0.09927313179457214, -0.4061224178666, 0.45283013594358273, -0.17248813565939772, -0.3228934972168959, 1.2266669491955642, 0.09561421849296153, -0.20704493268941135, -0.3038067774423344, 0.3765165838923462, -0.10164543442520874, -1.085080056937979, -1.55300018143881, 0.0669271485116092, 1.2329793851362967, 1.7300187714022386, -0.5470478395889807, -1.445345645694208, 0.16392492080585933, 0.30790698278558243, -0.044770917969588236, 0.8803817034184241, -1.4102238091427002, 2.3088709750004264, -0.23755941699176936, 2.030122699940175, 0.024716427824929617, -0.10206597258811897, 0.9173221156401491, -0.893616891995117, 0.052960521380093925, 1.9700491516924639, 0.33780064919635333, 1.2223865753208714, 0.06391879736377834, 1.5150637436371654, -1.1207162278107226, 1.1921912689300052, 1.0948190634696258, 0.022250699611482083, 0.32539391635107906, -0.2923785869644172, 0.4826568636387412, 0.13701712277423186, -0.1949914816020253, 0.25726636574868644, 0.9288386875941139, -0.15052330075041243, -0.231240103376122, -0.10029662709448402, 1.5022740555152154, 1.0567161861539813, -0.49492857394862944, -0.8082912510068696, 0.33899448495222695, 0.9909560850472993, 1.6025574355001264, -0.0574222980890055, 0.986428078619524, -0.42570546999722236, -0.48007442237130254, -0.2494080187913735, -0.13984232981421982, 0.14954314441219693, -1.0285405194957584, 0.5732954686423313, 1.9451736146164091, -1.9488376511047258, 0.8287983215584676, -0.6911401974137013, 0.5956583598851412, -1.0098921167881922, -0.1328883660582723, -0.34519680528901525, -0.042048611732643446, 0.3308333942632088, -0.5277155253527797, -0.03011406489179208, 1.1093323428345827, 0.7235820444344792, 0.2293994385630573, -0.14741924567684714, 0.016832444280452427, 0.014142196575998195, 0.3717269477919595, -0.3878679883317923, 0.4668678001812562, 0.233725791215175, 0.9192274354274772, -0.032355605282849476, -0.7885378792605783, -0.40992781323197597, 0.04050719071178224, -0.4802446280993975, 1.3419312783552815, 0.8260156970506447, -0.9755353825404836, 0.05694871554850434, -0.6484156187243132, -0.09510012938692648, 0.2630745859678698, 0.941162578247245, 1.7376442773020968, -0.24028220810332826, -0.054186049847871294, -1.6683186285808316, -0.32461072984389344, 0.8097345503440383, -0.719787640868268, -0.6380066102269729, 1.1196467577562492, -1.6254827074666875, 1.2139987763622921, 0.9413784484135105, -2.333845164315462, 0.8309932362327012, -0.213798854287015, 0.504974624380636, 0.12403676857721883, -0.837275742303069, 0.17171513478815503, -1.0555913529559275, 0.12760842634932562, -1.5192612321650563, 1.700645243646787, 1.3927233135656583, -0.09119140350230176, 0.9199326010129658, -0.7087616944196873, 0.019320187993302235, -0.01674287672039667, 1.2030910204855414, 0.7018628781085394, -1.7849347066589298, -0.14321100126767322, 0.14765959961016822, -1.4550028249596358, 0.5099946205825424, 0.9205080369854635, -0.051090166738153704, 0.8582964401760249, -0.028045474752182713, -0.7693399423811791, 0.48369866549080553, -0.5948497428204217, -0.884826674298009, 0.5056514118067001, 0.19519171266487043, -1.7510268756396754, 0.6010870004484208, 0.10536341787292292, -2.012815214374385, 1.06780771691094, -2.006694029728579, -0.6736935121672923, -0.9521457615085622, -1.0358437828481157, 0.9861270426402488, 0.1126962065829844, -0.3081522796148261, -1.9084940342589982, -0.21418165129669067, -1.1659991856903076, 1.8918354688261785, 0.20328855471947413, -0.30284871314274475, -0.7352313623668976, 1.660536942593416, 0.6682520482971973, -0.5936698282084995, -0.8113056079898524, -0.8955389198559397, 0.7856140250587825, 1.2899204892148157, 0.5308705197580382, 0.8962099264640506, -2.025073027634932, -1.4653990727306163, 0.41777799576734104, -2.1279371316860622, -1.5896329317274287, 1.4867393053032214, 0.1801008754611862, 0.5167181630946928, -2.5117181231648247, 0.6040397246080863, 0.3732352036688645, 1.7166343265357282, -0.45202836898295445, 1.872996788843939, -0.37360491918869726, 0.7419773680667259, 1.2314844811533976, 0.3355697512772886, 1.9098778591108387, 0.9229406324042423, 0.473209302126868, -1.0358417664730952, 1.1102888400631898, -1.0766690865714148, -0.5893611381082449, -0.2339713358143817, 0.5311386813815965, 1.8141540972152768, -0.7868107792063547, 0.9057777493208945, -0.3846266156004427, 0.3687201254621023, 0.061449613175301586, -0.3188973348877369, -1.3722515610609987, -1.486966412356528, -0.32338122425727905, 0.5822526178763706, -0.6471210641998718, -1.1796221916467144, 1.776136669198931, 1.1116026147148712, -0.37179256739335065, -2.979327586466727, 0.6260053047900527, 0.1838282825624656, -0.17005512364788075, -0.4905422868046726, 1.3562817409518928, -0.5807565649687273, -0.1834805096610308, -0.10749073770373087, 0.774538192256209, 0.4396628122851132, -1.0831119542997387, 0.9029681304050426, -2.8820749219944446, -2.0019886962026767, -0.09367611492019566, -1.3483748305587762, -0.6786587585327616, 0.17072642378587358, -0.26624853155472394, 0.2719931119354299, -0.37217934095824257, -0.639898427063393, 0.19944710260716583, -0.8514706868203668, 0.3415779558672612, -2.3718406125496663, 0.7277788165874215, -1.5345650458963473, 0.4253966558702674, -0.3114090656793428, -0.17221450980387887, 0.4111641562147132, 0.5203854669974164, -0.4604077361272148, -0.9429192446001584, 0.6600620127130521, 0.6553578941642995, -1.6430891976367035, -0.08965868590801555, -0.8018695188600427, 2.6761363456975804, 0.5606833820966955, 0.3304271494081106, 0.35988601625681105, -1.3687245100400147, 0.155650340632562, -0.4389560366332529, 0.19544057447894703, 0.8055865462619423, 0.3503972292760001, 0.12894692187396006, 2.0659185907943978, -0.6527682478085302, 2.1064098311938495, 1.0210882392925689, 2.2472505074729385, -0.1569508386975722, -1.2855409161295548, 1.7357834162126278, 1.9415684941706621, -1.6998720488317953, -0.2634104419980947, 0.4718301699025716, 0.12343276929170158, 0.39314210018008644, -2.5569691515657254, 1.0671849598458303, 0.18295374172094017, 1.3557021682301338, 0.8710949294441117, -2.022740971236655, 0.31671642030005615, 0.4810944931049218, -0.29309421798715696, 1.4750651841932325, 1.0250629277685304, -0.8398668955707059, 0.8358627693544155, 1.250857585657806, 0.817388802371269, 0.7253621645160989, -0.005733929262577192, -0.08715093702458966, 0.04022178578502231, -0.37790247535411775, 1.0200486501521477, -1.0139136612129898, 0.48323376018755865, -0.5109597867389858, -0.05188777038316782, 0.6836602163777429, -1.8759303572984096, 1.3683615006319827, -0.7609016330987006, -1.234300861148042, -2.190750162334695, 1.7735068069386595, -1.653456711518113, -0.39052811101666923, -0.9049188112071185, -0.883552427747455, -0.8619087046553059, 2.3238627519573622, -0.022182097655072074, 0.17231486595582776, -1.0588655166139438, 1.247327572220926, 3.4183647285106664, -0.13887235723800115, -0.3705145840708777, 1.889173486056753, 0.990977098794942, -1.4267306437764868, -0.37232983677664827, 0.9753361656756208, -0.34443786230750517, 0.5737452811794642, 0.6823341142575441, -2.281819951367251, 0.0552850558027339, -0.9633600163886704, -0.40769053153736795, -0.6988530967014666, 0.49791439194850556, -0.6752995794858171, 1.688213675331798, -1.346410284499873, 0.8570010930235051, 1.834534224680491, 0.1484865043833983, -0.40125890903737793, 0.7064640572216768, -0.1592803718074827, -0.2965372596586028, 0.22140114431218919, 1.1479838469804478, 0.7420536282203801, 1.024654849312718, -0.5010876319617438, -0.7799388620832528, 1.8545210346575656, -1.2374580741362704, 0.584681147200485, 0.07212934187432452, 0.27700022260021095, -0.5020143330076038, -1.5602371739310523, -2.4085486846476987, 0.28934788762212776, -0.11646479262401749, -0.5230359212877752, 1.124490712841181, 1.0664082514211066, 1.628513156521995, -0.43700144155951876, -1.3762277174372362, -0.958055292867822, -0.515438374330495, 1.2858701054477664, -0.45697089871630087, 0.26746765948874546, 0.23654981974190362, 0.899478125658541, -0.42377452898580875, -1.275409196763181, -0.321288724443033, -1.5735437172179392, -0.10447007690518165, 0.29069011956185814, -0.4648393396260971, 2.8581796097354544, -0.26122291346022497, 0.48941125756199055, -0.16066340087728564, 0.9370576230832383, -0.7485839147016174, 0.6865428236956156, 0.6052769193860006, -0.7139525833676638, 0.5470346976063605, -0.6232579877792341, -0.7739776345732654, -1.2158339187957654, -0.11181408457372405, 0.32352508377010486, 0.9238971418164983, -0.8978514275398403, 0.7630895591420142, -1.8008622617694279, -0.9533724803313347, -0.7882918777741449, -0.13329721788556123, -0.30820145908472724, -1.9035409542954893, -1.080627122669937, 0.45391518795924707, 1.6119107046945746, 0.6890793415740176, 1.6110272995700738, -1.6598152142851899, -0.2559506755376328, -0.6273113032688439, -0.43705895317321214, -0.21047135724752508, 0.5793290066939174, -0.849393820887537, -0.8308537752051265, 0.24519517270397356, -1.1975010290494872, -1.3033493968067853, -0.6236697704496584, -0.7029916037516194, -1.0601770489522209, 1.8676570216702633, 0.21981026346004998, 1.1588277990551579, -0.917694902006909, -0.05105710434592238, 0.7517120533271414, -0.45994429367309003, -0.5031531636984596, -0.46207875424790096, -0.23000452718510572, 1.7880400742077314, -1.153152013155682, -0.4963871525921467, -0.7304393552679179, -1.3564002231824344, 1.4655043711540032, -1.2000923302582396, 0.45835352693581827, 0.2815240480123675, -1.697644951095444, 0.4223253854312435, 0.845338271860258, -1.3784487018519713, 0.7177122844655557, -0.2722990179287436, 0.2997823109610053, 0.11287529660563282, -0.7331707092322641, -0.5336847396583675, 0.5041412463074484, -0.759550364029056, 0.9018062506132998, 1.9352501681788792, -0.5326783478668412, 0.08410607490374919, -0.6844058989440739, 1.6634997603293997, 1.07033008709807, 1.0651584356856094, 1.6828057620892376, -0.08335506756603703, -1.414899764078834, 0.25173034992017046, 0.0755355388009669, 0.35533765704364545, -0.624746340463423, 0.5075334635042105, 0.3210078254705011, 0.10225655152374352, -0.19296463570669542, 0.11210440711132644, -0.03888713101673249, 0.7270487423325561, -0.8472950940666181, -0.332720789520476, -0.4475880284390101, -0.7543724607231843, 0.16756430307117492, -0.0996232632941116, 0.44274930294008713, -0.4758848011678259, -0.02002664267137641, 0.6149809647107188, 1.99139634996686, 0.6225522408117139, -0.1939552487815591, 0.9212492263014408, -1.8649934829102122, 0.12036267778012107, -0.24790089915102015, 1.3283835462397355, -0.7439059913276457, -0.03558743566710976, 0.8042717267303195, -0.14349300790011188, -0.4094711557616352, -1.4891635649810036, 1.2173470972971132, -0.946554452752071, -0.2592903487576124, 0.4064276259552069, 1.1388783181097732, -0.611634533450812, 0.27271021021706643, -0.41798979346950854, -1.1387765745341243, 0.36975862696394957, -0.07853555308126724, -0.47388338178011563, -0.3991836722045406, -0.08523317747105147, -0.5786811174855631, 0.3014665457664189, 0.013599065552234616, 1.0352738637193395, -0.5466151008420183, -0.8630709139549807, -0.43332839388857575, -0.5577773959271055, -1.2427411918253124, 0.42277554856406824, 1.196507018673335, -1.3358152058952115, -0.6537196189513947, 0.45073169278329045, -0.6710562338935598, -0.24902628489950743, -1.250573719607074, -0.402330879297589, 0.04701402775915679, 0.09517708443733533, 0.13878634957394, 2.148849221811123, 1.7295217791150963, 1.5359958352908647, -0.6315559705644253, 1.87078569133021, 0.48256806976477956, -0.6045268003530687, -0.7621585032956016, -0.49559987000561206, 0.8858726749491832, -2.9391042848802806, 1.9534053233356756, 1.0133402256123385, -1.3428499191757488, 0.10099513871145392, 1.1822622321846685, -0.656047403960964, -0.41658457830499857, -1.0194865362007426, 1.206855156176611, -0.07161193347528884, 0.6782515039178117, 1.0187251326240958, -0.4001189174929443, 0.5858776382201468, -0.7837929844922165, -0.7401219879302848, -0.6927956105667268, -1.2999560074058303, -0.7413118762161229, 0.5856083405191732, -0.22119629463348506, -0.5574045086958049, 0.8110371875443065, 0.8458834503269302, 1.0130778201741066, 0.584019318304674, -1.9701536966317108, 0.5976949232576071, 2.024753823289225, -1.3809735002412162, 1.523019758106356, 0.2537741931872784, -0.7265861815464485, 2.437634745569738, 0.2161173234259047, -0.45813398585228765, -1.8414487794015257, 0.6513137839489246, -1.1665085074028254, 1.1901510512603852, -0.7312403830963635, 0.28836801060505424, -0.5443038142636153, 0.09149460974072267, 0.49824507141321817, 1.1790932269378627, -0.7052273395222576, -0.2227836315464394, -0.33549952812004313, -0.05289329454525399, -0.7213481174556291, -1.0265843433363233, 0.19899294957235816, -0.7528903112432023, -0.81549709708653, -2.5323519455307824, 0.17406121089116366, 0.8144304273726225, -0.9255225815108608, -0.7290050132185459, -1.5784030047483542, 0.7476225749090267, -0.056978534526911644, -0.55422417416875, -0.6241045862026998, -0.32503506554887535, 0.7117675467243757, -0.6960112494215279, 1.2414408525427372, 0.44162521818539147, -0.5047939346324114, -0.22427467893093905, 1.0062875853069069, -0.10695907455509393, 0.8090501926286432, -0.3967535888091559, 0.20659417923780707, -0.8656468874300889, -0.8854141314959467, -1.864291889437151, 0.8213984622387844, 0.02853770336910023, -1.744341969902225, -0.8541269973464781, -0.8579696737681431, -1.3461235703661165, 0.09442283885722708, 0.06695568984623393, 2.4213717514571824, 1.322839733496832, 0.19708857272110578, 0.5273281608682805, -0.38642981712554136, 0.6881059995178777, -1.7276386106992028, -0.07368780018336159, 0.155270631840928, -0.23044699979518443, -0.20119059490433464, 1.5172936958144623, -0.583135125179652, 0.2336439209716162, -0.017517319203414986, -0.5739705042433294, -0.8509163763265422, -0.8162758642852915, -0.8470895816726467, -0.25945857956447027, 0.9238092785530334, -1.9631416916352642, 0.013556149160776323, -1.3315501797524425, 1.6341565820082857, 0.3212926278667691, 2.385945825005955, -0.3421606256147632, -0.0651919322857205, 1.0272067417103623, 1.3578362903724108, -0.20881088955121252, 1.2848671302530223, -0.2490543021805261, 0.5271973500560563, -0.20442814658267072, -1.8289147562982824, 0.6497676399046145, -0.6728624765126354, 0.44900830388849533, -0.24089371313488472, 0.491126743436627, -0.24790081331735947, -0.16163687329537235, 0.1414085267066215, -1.025503518029743, -1.726410629725126, -0.5876746094358088, -0.8978207344439627, 0.3010009147426464, 1.0528674050477966, 0.8747178066629826, -1.3496378522802803, -1.4779843102423236, -1.6361756420659264, 0.7008214087147869, -1.1693680020734218, 0.10399282577952676, 1.1682781372845121, 0.46628947594009207, 0.9034888425762331, -0.47031724032674477, -1.1925923177050182, 0.6013876032327796, -0.9811731291629308, -1.4709286813865514, 1.2410516515692631, 0.21046228081207718, 0.9528756462037027, -0.25327424709146834, 0.7316502185966767, -1.278920365484979, 0.25622871351069954, 0.7150544253927446, -1.6675921026622171, 0.3168557488106445, -1.4817875631434119, 0.8443425360703801, 1.234111132819109, 0.9782926412695985, 0.8181783854423177, -0.359974356250217, -0.2311662960649632, 0.4770398065355102, 0.8594163865449314, -0.2995579365949485, -0.5573429958010009, 0.01918563210565974, -0.6023355813774334, -0.00486801102358832, 0.3806574809717547, 0.45922951502631615, 1.3156885837236187, -1.227230000365637, 1.160199168708287, -0.7692382232278184, 0.6380464328623154, -0.3257831041191809, 0.7992530347437353, -0.11963729541877331, -1.3957982214672608, -0.41104834125030665, 1.3294569417892326, 1.192437266794864, -0.8424373008880022, -0.9634583631088589, -0.058447799075311606, 1.1261586116282378, -1.1635450086288264, 0.5363499412469581, -0.7604798704588694, 0.23850816568956232, -0.4921063926580455, 0.382061446305458, -0.4126865454923051, -1.651365271082666, 1.1686458036099114, -0.3033769660557728, -0.29020610353971543, 1.3502496686464658, 0.6615590864187052, -1.1352463666318837, -0.2513599794347447, 0.24850952614460398, -0.46357788310608217, -0.5068610932539146, 1.9111060464175886, 0.5198242205795747, 0.16863841271544103, -0.513973256536439, 0.5079936161481626, 0.0989542964743, -1.0099417919069156, -2.1590290508269137, 0.23964387743740984, -1.7122019502941006, -0.05025110934141887, -0.47284248635129417, 0.03564301376173521, -1.3595011873689684, 0.8678470415470416, 1.2684796656223283, 0.6565813085339239, -1.1437716009658758, 0.1783913189833069, 0.2987241173585184, 1.2852999211169096, -0.19813187811800387, -0.21021361990190646, 0.4898683581866073, -0.1317585134798221, -0.0586148629252057, -0.25955687227202595, -0.1651107754246423, -0.056412755867949076, -0.6782401157395939, 0.09247762720535414, -0.9889497520832278, -0.4382990041213223, 1.2537423769865597, -0.8480004747368824, -1.0267416522840616, 0.09097227974864101, 0.17170802427214749, -0.695022276769209, 0.07106644871621316, -0.4116707423201959, 0.43512016807597353, 0.36582542291167996, -0.8563387912620045, -1.1156017337719855, 0.836691733819353, 0.7018023845204104, 2.051850852586269, -2.8713011710766874, -0.31424046748130524, -1.1829081566596582, 0.9880069048647997, 0.22202566457077652, 0.18407065463933556, -0.4916469332130737, -1.192439111688052, -1.1177805893331407, -2.5491499827801576, -0.3212132015593067, 0.14682666533946656, -0.32824301911244524, 0.09556943471745745, 0.5170963259009845, -0.6007097629844006, 0.6978100750493453, 0.7724315858880421, -0.7037465102177053, -0.9275758583660269, 0.6230376227744131, 0.7324352476059399, 0.25268995191213506, -0.5989665814118477, 0.20726944327341415, -0.30364105020529925, -0.340572179213291, -0.6207090275485532, 0.6034076886239296, -0.9064974326215267, 1.3908812643108883, 1.2672083961891938, 0.78381331634929, 0.12808710542073135, 0.2095854069301756, 0.7398704448343068, -0.2106682704998611, -0.4272811179124716, 1.161932480824565, -0.9059873423827204, -0.2534397093815726, 0.7053812677678265, 0.6603171120056159, 0.2000832145948967, -0.5460129944005869, -1.6814973909473458, 0.15776348841562518, -0.2070534234802586, 0.2220297584907273, 0.29854076568885407, -1.0884629485660324, -1.0793362007551646, -0.6158980106225226, -1.705328431441039, -0.49280696247680283, 0.47863957060874335, 0.18584432722560226, 0.8626966957625701, -2.034235294096105, -1.357667516045574, -1.0226915778759906, 1.1890195466245466, 1.4965878467045997, 1.281279887102507, -0.6457821224367662, 0.12502455651074118, 1.7326148736243545, 0.06849913061079937, -0.5390798702539362, -0.5095415364155708, -0.035857688064049376, -0.3661943400551153, -0.06770005126401585, -1.074109163948631, -1.5862570462270582, -0.20102933986257837, -2.1295027185340705, 0.695172560090592, 0.2749147830565341, 0.2576206019308993, -0.2973282517670989, 1.6586909612095204, 2.2427008901196364, 0.1849650657504127, 0.7495668526423767, -0.995477390576045, 0.014265894079023783, 0.6483902336384804, -0.39819368882095635, 0.1951030330972244, 0.13913266619286885, -0.6975185976482929, 2.7517388590265566, -1.4077633686824211, 0.4235963298193362, 0.10437962024474488, -0.24370395656654864, -0.8405832303565502, -1.312780417078433, -0.09594786371538869, -1.0491029268505154, 2.697075728863285, -1.5931822153529145, -0.010618321101603568, -0.9134296606900351, 2.0829039212887617, 1.9147759371311441, 2.8783668180384656, 1.6668521717591858, 0.9667519538996213, 0.3722829416861302, 1.998798465108106, -0.48797264718948363, 0.5763956206491322, -0.8135185051336857, 0.5730567755036206, -1.0455740667490336, 0.47076931690324214, 0.460050942684833, -1.3462723602158535, 1.6456852290866886, 0.6035740563165749, 0.6283214340436821, 1.3299379644270855, 0.3210449022961642, 0.7450810596730094, -0.2021245384157022, 1.0774566352675714, -0.9502244229699852, -0.9861618201324326, -0.5260426785237855, -0.5069288298310224, 0.7359151151060339, -0.4694724027705469, -0.33586764549429576, 0.6403327288305196, 0.16207654920699893, 0.8175805350954188, 0.4286686638833144, -0.9558840684778682, 0.47662783003341763, -0.16788871164324087, 0.1901153175081706, 0.970574396406827, 1.135118719185874, 1.7517286950470963, -0.1354752196325324, 0.03443176946565405, -0.25985200469778, 0.7597367633300207, 0.3540991156496645, 0.9012175834824605, 0.2179736520268849, 0.7514101709857924, -1.0407967242299065, -1.3748848722529141, -0.36880822955012427, -1.19377355033302, 0.37964741667903357, -0.2842424795883584, 1.5564324504518696, 0.28287579937854307, -0.33931852587467404, -1.6381327417119163, 1.653328512707644, -1.3790187734443156, -0.10380467749941104, -0.4644922659603638, -0.20270562987772855, -1.6149065022430817, -0.5520440227667789, 0.2804710175522329, -0.38850173077416067, 0.004441148475618237, 0.314834191198155, 0.7447770238110362, -0.49803378048182717, -1.0901890167571011, -0.4031790386954178, -1.2671523184697377, 0.8888639131913251, -0.055859079786719903, 0.15550147777246565, 1.3286396046698565, -0.7116302042386222, 0.01265888498940381, -0.4063608449096454, -1.193153295560482, -1.246476891652024, -0.8717889667516528, 0.37764693011372835, -0.5495033637737156, 0.8017515919290585, 1.0985630228066876, -0.591278548780941, 0.13949238099368808, 1.6384602684201859, 0.8595022116008539, -0.42105558746350613, -0.8717908518639869, -0.657635841335704, -0.21597707028743474, 0.3913774945837115, -0.5919059482471574, -0.9647695285339807, -1.0313405248698053, -0.3457213547775807, -0.9951720866522257, -0.10791266712660148, 0.21644289906392694, -0.502015580523614, 0.36879345287022114, -0.021112792553046458, -0.292316368716349, -0.16720308864994235, -0.5612706350633743, 0.3693646130327092, -0.7997542255464509, -2.7303553105177856, -2.0316270257473694, -0.22671045835148063, 1.3384860339523323, -2.3665404143224107, -1.270574615267067, -0.5923230750642696, -0.8341482451705009, 1.1762574345357302, -0.6618898145974131, 0.19078572758739756, -0.9309957794920742, 0.6018759545423678, 0.7779417267159757, -0.4665003553170716, -0.945239976369742, 0.47528528191891156, 1.166076565422528, 0.036560436416394566, -0.377123176155909, -0.39306786581832465, 0.6192412937269035, 0.30062796803258895, -0.11031781474605472, 0.06120586369962331, 0.3798353354059165, -0.5860432218603685, 0.3957494220694756, -0.2687389147483464, -0.14681237971734484, 0.514779124094455, -0.5166437316627431, 0.18179654098109882, -0.02965810693142948, 1.2958457674147998, 1.9306511187235034, -1.194105630467677, -1.616803680414923, 0.33862500707035964, 0.054996810009142166, -1.0443944920644117, -0.9662198103565754, 1.6036023930548178, 0.47058472618060126, 0.6072062407670715, 0.8933767283095636, -1.5139435706998778, -0.9446264012561456, -0.47063647645001533, 0.31028704856306855, 0.27167912930956467, 0.8834377692119557, 0.3961954214991914, 0.7719510615202909, -0.2644522524357039, 0.7568258993141527, 0.4355591377482409, 1.3460158522043213, -0.036272021111223254, -0.929593143944054, -0.7751091436097928, -0.2492167933009922, -0.652163637255441, -0.07909049260868822, 1.1587560263045735, 0.15774095183056366, -0.6170482239756743, 0.1844009971770269, -0.018338413661808984, -0.971151805983901, -2.9891106058585417, -0.3946411072350052, 0.20651807395884944, 0.21657089254383768, 1.0581217242797156, -0.24667728978148445, 0.3171735261260468, 0.3720660516035926, -0.006181999591582097, 0.07871045595126278, -0.25061144846431255, -0.01045722491485446, 0.6597540125448033, -0.2145467244591541, -0.3804956200200983, -0.12186034898281126, -0.5632278671150682, -0.42654618571902436, 0.2798314237733162, -1.4211516943119469, 1.140967970672733, 1.6088057761427907, -1.153499049819171, 0.6556067516131792, -0.007612074762536518, 1.5681427023669492, 0.2181764070528727, -0.6018209572234828, 0.9466014150441556, -0.19217982895931512, -0.9874321673995838, 0.13850779240122446, 1.449707065910316, 0.6465688520094687, -0.14360079309095347, -1.5988946616055069, 1.170925599394268, -1.252303697244282, -1.5120778552568102, 0.003362399034018811, -0.8536089704806441, 0.2552217084899931, -0.23263200825710484, -0.77996883322217, -0.7802370855400311, -0.3113665133072484, -1.0002909720724642, -1.442036015622359, 0.3138842853410454, -0.6044555801378421, -1.3918801684160598, 1.115627625693469, 1.9825402037797888, 0.3019370305785239, -1.1380931395883644, -0.36089032148927974, 1.4082242889869316, 0.2385301470462795, 1.6252033896518046, -1.0380359840715467, 0.9569091028002504, 0.5516672195959935, 1.3730463114505338, -0.5495138189742951, -0.8705909328203274, 0.08002679511361024, 0.7481430279014005, 0.7152980253015363, -1.2085376249999789, -0.3253763487427988, 0.48935257340693056, 1.8530878226790344, 2.0452070417075894, -0.5771497404976493, 0.04894914248177975, 0.0523297002054706, -0.42956126713982373, -0.6550962390529855, 0.7197264072398086, 0.8983688241541308, -0.5105988863752171, -1.2600942002262454, 0.6026599912887013, 0.6062467650895739, -0.38545478712492476, -0.7964293984380669, -0.5401681708893555, 2.01120339575268, -0.7454585903698852, 0.6572404277832288, 0.31107913935981585, -0.5747067847667684, 0.04673503326625756, 1.8198153777479205, 0.03576558587390642, -1.6520420488297562, -1.2917422577114535, 0.6070054092061445, -0.8369926619917811, -1.5403541401505216, 0.9694802152528147, 0.20760874983632793, 2.3024315860599236, 2.0829566159287953, -0.07372132411238741, -0.2844363346910882, -0.11669477441511591, 0.04092646505678435, -0.2341149388115401, -0.6130698943317319, 1.5478640194725786, 0.5347360630554052, 0.020282963129395665, -0.338756750607531, 0.2902785636736179, 1.462062425447135, 0.65665755475822, 1.4216921509212728, 0.32191514741755833, 0.45145230220498056, -1.0861587995365454, -0.463800075946136, -0.2193412889321891, 1.2194582753211225, -1.9896341896691194, -1.5453272606351716, -0.27201420251777625, -0.011552242980315501, -1.2370126726015382, -0.9547696888564254, 0.09335708223360478, 0.8694747871167283, 0.8537726831369016, 0.631702182263547, 0.5834108003594707, 2.21094064804142, 1.1017094516166204, -1.1456439145769894, 0.7029484401516439, -2.3624725103232356, 2.594715567022007, 0.7510556500776793, 0.32277381204189515, -0.41957280428633165, -0.6507075496384568, -0.31818996290604523, -1.7172966111244818, -0.5710103101323482, 0.8839855127797807, -0.44765688301064893, -0.03671236690842742, 0.2050405718574136, 0.37307527712459215, -2.2143478170985604, 1.034748356262387, -0.5281112926680798, 1.7448866577584579, -0.8612133179440966, 0.09411414415656465, -0.03442024278678242, 2.2833845768129213, -0.44515890192717283, 0.6723626471680232, -1.4330604683795514, 0.07286188048751374, 0.03408950277211108, -0.14772060143421378, -0.43789394995026704, 0.1771317397416004, -1.5752963240282192, -1.0183010848050036, 1.3097935511126129, -1.5382356391400451, 1.2892334610602336, 1.2036077782061425, 1.3965901781282184, 0.4231280538340874, 0.2504092135386681, 1.0614497390474982, -0.6996114114002203, -0.4713363142869986, -0.8111852308544759, 1.083791814580894, 1.7615096617622767, 0.4183701239309861, -0.9190229456329501, -0.7477909555495688, -0.08976998283279877, 0.19828712098556184, -0.19026745787642588, -0.7919835840105575, 0.6452130397540754, -0.3282984410946409, 0.5949744315260316, -2.179208210711491, 2.267952932685748, -0.1928593329413304, 0.2518078765185931, 1.0273089227575003, -0.9832991969486913, -1.0621681703767818, -1.4822441974158498, -0.29483314355030127, 1.1106612942480794, -0.7677103879854171, -1.9084578326346613, 0.5721919974423705, -1.4241072299838047, -0.3066864515765478, -0.3084944590403364, -0.5178446519506912, -0.5119433254523064, 2.1122364872018062, -1.262953144896694, 0.9654055927564137, 0.9706746335425851, 0.9553354209792556, 0.5285610153211177, 0.8314457658968166, 0.6031597225372425, 0.8627652716612256, 1.1361603081684253, 0.19650842882219757, -0.6805077804651899, -0.3679308965902325, -0.5534299542506426, -0.14143733327435232, 0.43757509598802513, -1.0151153988493322, -2.172078508682737, 1.9366286537299664, 0.13409217228933226, -0.5666330708208492, -0.6692192342490546, 0.08920215598718219, -0.3419846787107486, -1.6070009505083613, -0.010663393894425041, 1.3187338496763161, 0.20063202674425348, -0.2769021489133205, 0.2674660390071049, -0.4318019817183193, -0.36596336980458655, -1.148806854095019, 1.0690729635462675, 0.9967110391364785, -0.016312597982946504, -1.7757894157419125, -0.16299206161462576, 0.06541695188756275, 0.370874890842729, -1.367022914689749, -0.3384401905654755, -0.14613290778129193, -1.2209413468270705, -0.1105459342642278, -1.3090857125142457, 0.2197154361769407, 1.230338573828913, 1.6390484392731928, 1.191787704194507, -0.9379828891593105, -0.002736078625354857, -0.764290041352499, 0.6811086582796001, -1.43889532940526, 0.7598270952962872, 0.08499244915114863, -0.7718246718493167, 1.215312597656527, 1.871446646508542, -0.8118204516110464, -0.5369327867679317, -0.9882492747568515, 0.48551739344905076, -0.8799609728425477, 0.3149849961917613, -0.1349246359571808, 0.46494566467284465, 0.8441751618513927, -1.8595698595259924, -0.8176685579156956, 0.3224779978898384, -0.8449904737589815, 0.536969170320063, 0.6951623706811723, -0.17905867658228763, -1.5094357624101564, -1.971795695863601, 0.27301167414161726, 1.103435868377376, 0.3382253286681075, 0.01509359094236318, 0.5831510218840537, -2.370197631753377, -0.15083406796454812, 1.7751036009284802, -0.3464269262762596, 1.1061177838646539, 1.314686595749211, 1.9055012373017115, 0.791627679098034, 0.5311345215203105, -1.3118217955150582, -1.116290379656074, -0.281690481369511, -0.245643294577841, 1.227260819288747, -1.3982700973215958, 1.2712239610804064, 0.00882353259948137, 2.315969001234395, 0.3352588514365369, 0.6922494088738511, 0.32700328790872546, 0.03241345648052301, -0.9832773342151538, 1.3667630243088251, -0.6622831556153387, -0.8871176501101811, -0.11665107868600766, 0.697698733246941, -0.5710746228965948, -1.4065265577324926, -1.0045056346251877, 0.4916611160125123, 1.1740228459300441, 1.2378321948886528, 0.5466835198715618, 1.6826005031469393, 2.221460661210834, 1.465791842235019, 0.8044652055894673, 1.8875952877096727, -0.20455660824874658, 0.07614673705917181, 0.5286472954502641, 0.23250221212448877, -0.6244294434639173, 0.48398851046383434, 0.3444119066951547, 0.6491789948161504, -0.43813353616476447, -1.4324026196226531, -0.8446685541261421, 0.3825101137045969, 0.8502281845044164, 2.170220828914186, -0.5253950484163873, 0.7818150861758293, -0.10959434068487639, 0.4602423186998895, 0.6811184540776573, 0.2756392313436356, -0.24280179702684157, -0.10533358105250115, -0.2991630322914323, 3.5558199016597563, -0.8824708700684216, -0.7163868158785962, -1.4195512256855913, 0.8611842980621233, 1.5468221671411506, -0.13303630294220622, 0.920642905274641, 1.2103255728033677, 0.43034966566263216, 0.5750676448480921, -0.16838056570750684, 0.27775463082980445, 1.044852663500126, 1.1765500494916874, -1.6012922265860217, 0.09223270928067644, 1.335813510197824, 0.39342421738723304, -0.2743668222304647, -1.9535771150303296, 1.1398847114902328, 0.14092905108314407, -1.826355121645312, 0.08592313580414093, 0.2604277050189707, 0.01754727490645743, 0.37351622787655153, -0.21631532233322034, -0.6094221544398492, 0.18924895944040954, -1.8436561993743876, 0.01588762587105492, -1.0576894832197352, 0.006514362262594524, 0.07636211239840886, 0.3517991962716992, 0.40787350828559404, -0.10516359878852084, -0.13372080994229305, -0.30331349633455174, -0.10023890675293344, 0.05184173402813764, -0.5114379607033392, -0.599909120820785, -0.060591314441847295, 0.4184058930556484, -0.9226326337494001, 0.6362545863340678, -0.16775564907008633, 0.6041221137660512, 0.1492299923057541, 0.20991781885730573, 1.1356804443357946, -0.2668281152786397, 0.2692768777996714, -0.0008778826453820938, -0.7732896708306339, -0.2528479301530465, 0.8620415919694849, -0.9933927235766331, -0.33107163662798506, 0.17504165726986373, 0.9234582493752415, -1.0015173630007068, -0.4351327585446492, -0.7000890113632867, 0.17113730677281008, -1.432676634466862, 0.04587548092864643, -0.9588082715118433, 1.1183800964215402, 0.5358626742024784, -0.23442281150297317, 0.17373657862337513, 0.12990016232708607, -0.4993431571450371, -0.028183097192063102, 0.9503272468641235, -0.09204701451379756, -0.03356984600829382, 1.5318866320998688, 0.31910741796417, -1.3322013516832034, 0.8946795366133666, 0.9558760784639276, -0.5654735567663236, 1.954725706489224, -1.0117877743266903, 3.603181726757593, 0.9515288858283877, 0.5828391390766935, 0.3033166423980292, 0.7234548232713478, -0.2839904694509737, 0.6548176012385513, 0.20964710373007317, 0.7696139831901758, 1.7642773523058386, 0.4789923148051805, 1.0229889933050007, -0.8142102717894224, 0.27866285631785104, -0.24622985769287184, 0.9122670651720858, -0.17372586481476435, -0.11225151628988267, -0.6307141344117213, -0.06691983800209886, 0.6659221551195061, -0.20314190277427327, -0.788883119002097, 0.6173401096270228, -1.0457597098571099, 0.2982797131135861, 0.4138497464773554, 0.01581270686472511, 0.4869174180109479, 1.9863991919297945, 1.7178683304544773, 1.9277702784923207, -0.6827014768507079, 2.765701799145091, 0.9630002540775843, -0.8360227434763311, 0.5942335982692469, 1.299413466233711, -0.5954673133498732, 0.5080142388416149, 0.09958750575306638, -0.5362808762238773, -0.8308241807450456, 0.5037847414719258, -0.11117629401244643, 0.5821719255685699, -0.11009224624044793, 0.8479798678129007, -0.33292030307905796, -1.1461054493657403, 0.31913912631540237, 0.07843968886764992, 2.6317585544128863, -1.926241578429084, 0.0313064088191917, 0.14051471272048283, -0.06841176547903871, 1.0131506835081965, -1.1670316287387315, -0.3664598681936911, 0.0828768800534481, 1.429615928362928, 1.8110295252025772, -0.9451988376600379, 0.27198405619337795, -0.5413558287825149, -0.5858981898406258, -0.5012259003716178, -0.7388240589237881, 0.17417279932330304, -1.1354074889961288, -1.059398449958934, 0.21574635381808518, 0.33058802000466164, 1.3466449405468646, 1.7516742017919045, -0.33090990840393275, 0.025322764973373643, -1.3744370116649607, 0.16902504883649128, 0.1589568537188055, 1.2385720368440134, -0.2741374357960384, 0.8561936206388759, -2.99848347420295, 0.815961323126327, 0.3529460795956385, -0.06200433139805703, 0.05563336194537855, 0.3511207022679645, 0.023749603164462382, 0.743813475837271, -0.5085156954494091, 0.4145443158667601, -1.1004126999801342, -0.9718265423805449, 0.027260652070039155, -0.5293932048740808, -0.2719347193245268, -0.6653238786372868, -1.0491811756654013, -1.554434836026912, 0.6354598564967048, 0.7481139629738637, -0.7912361466207368, 1.0406019941955633, -0.020023683155677863, 1.2949614787566157, -1.8858235850416956, -0.38666892719825396, -0.22630530304594618, -0.23087534428908935, -0.4979686081731352, -2.4026422592012433, -0.9514906140835913, 2.80751992701461, 0.5345629224701627, -2.8316199153631887, -0.568109450249417, -1.5723478872319345, -0.38795170193429873, 0.5618773610258159, -1.2259360205722396, 0.010751990644054129, -0.8793590486185725, 0.04333675743439105, 0.3386272645541819, -1.391135536021473, -0.632218794687046, 1.3732939476493382, -0.2755276256475856, 1.1210844475690391, -1.044927054964335, -0.5212001860783866, 1.1320672346115845, 1.9436886147732855, -0.5816627855436686, -0.02312461061046736, 0.32095988544683896, -0.5181739363934765, -1.3702285141785733, 0.9748686373112724, 1.1076485427679368, 0.5723699535200135, -0.7039802116060364, 0.32810616187739233, 1.4613964114247429, -1.351908357228761, 0.08806436868934678, 0.9420460171343839, 0.42255085686787197, -0.5133514243385513, 2.0620650284662627, -0.374501648285336, -0.10451758608168879, 0.5609178931367891, 0.13332383033062287, 0.3925295533610878, 2.0171002046404234, -0.46942512141098586, 0.052426842284941697, -0.08841950512281502, 1.0020234010800237, -1.4786482125948668, 2.2541410060463822, -0.2056700316565244, 0.5992268339809543, -2.1621187441646708, 0.49192953344865314, -0.2024234526623419, 1.3252593637258678, -0.8616882877246911, -0.8756724522309932, -1.5067618867941401, -1.5436094243148064, 1.6000502784714936, 0.2591586580530663, 1.1711038682083788, 0.34412196825151237, 1.1336476155389708, 0.4117652070081195, -2.4576322890816926, -0.7361670224980922, -0.5608446754546456, -0.9158817176549576, -0.7768062979075705, 0.12199493286650587, 2.0071100872972787, -2.879049199866083, 1.7609447460736096, -0.4535404480858906, 1.0203282216684448, 0.548635288854345, 0.3304941821613956, -0.3624243777599998, 1.454754009888001, -1.2486003176697043, -0.7390600728166653, 1.3771754117343116, -1.0964877070392884, -1.0306062951308759, 1.8246463745311152, 0.8529994752784398, 0.4569229774564795, 1.1015872273420797, 0.8950509768205941, -0.17678676558534887, 0.4750502874362652, -1.1012506990355877, 1.3291081311707125, -0.09637771670006731, 1.1930780613397953, 0.8098153683421537, -0.17650955455531736, -0.021744831530427677, -0.8114212065294497, 1.7672419978367464, -1.3253309191322427, 0.07139768672831283, 0.9379785551275018, -0.34686991759029756, 0.37185685929760703, -0.7146544594883113, 1.1855458125715335, 0.5032968628265847, -0.9218700313073275, 1.029889257920039, -0.7563096233464518, -0.19999048740792374, 0.7233890608017831, -0.33349751490052804, 0.04521640657504253, -0.18738477654251062, -0.16634223052556432, -1.507282004994579, -0.6611868147796014, -1.823908490586686, -1.8708202636894904, 0.24862046639673552, 0.8240292342840608, -0.7531422807949367, -0.20682240345618294, 1.7896991707072942, -1.8736812653451225, 1.3272435544776624, -1.3674512648409858, 0.5021651498519292, 1.7642410164988358, -1.4685024914293365, 0.8914616719015287, 0.6632918601741893, 1.4649262826831035, -2.0182313015507862, -0.2304701723562633, 0.3719252175214192, -2.215078947967433, -0.15169045122969504, 1.794783370251759, 0.5135400122575333, -1.1353043697903376, -1.8076110340979312, 1.8480205352020893, 1.825275928356239, -0.6013367831211373, 0.27942739240756465, 0.08733192254804409, 0.23024484999907452, 1.8193070025248015, 0.21228776409873298, 1.6230588931651586, -0.5255090601186145, 2.4559384178804446, 1.6754050088931842, 0.6707991395816871, 0.24244027326081224, 0.3245234102816034, 0.935979810740122, 1.3075107671588162, 0.6362259373285208, 1.3191211106579421, -1.1479544695877382, -0.5420113611264896, -1.6719254974246895, -0.42106548206145417, -0.21956080229314212, 0.13301355449507563, 1.6769355463251385, -0.5698207953881222, 1.3616227093642719, -0.8460101517388637, -0.051265195962234195, -0.17030550672756573, -0.42212380292948537, -1.1647874670650564, 1.374346176415724, -0.5126257273091052, -0.34992153464288756, -1.0405523791858802, -0.23594592727134492, 0.7409703796500815, 0.5571809112807794, -1.6708023817412108, 1.653611220383916, 0.1318400723481853, 0.3876376398400604, 0.17164927145003725, -1.250306489739114, -0.04930175908350677, -0.22423901853456382, 0.7262611222497141, 0.8228977667270518, -0.8074096684393834, 0.5493558353275898, -0.8253461693516388, 0.020477600452714944, -1.0033341174780768, -0.5285751866043831, -0.013700739665025354, -0.7810613027289809, -1.6496453244017055, 0.25986507649613455, -2.0239836265184143, -0.7694203573683303, -1.0886041064892251, -0.20275615622385343, 0.6165579588300166, 0.17294230076806325, 2.2751195171031333, -1.6931377073755702, -0.149208213752687, -1.2077009414911166, -1.5104103102275506, 1.2461144482741593, 0.5448063100845372, 0.4829975043830652, 2.2730880700411706, 0.4879798144949173, 0.33430011513601626, -0.3056683288848292, -0.317200264667415, 0.181603655645144, 0.6853470569162601, 0.3006298372776459, -0.3417372463610617, 1.6243195710722158, -0.8713386902355165, 0.6419374086313328, 0.14555835774547451, -0.8456752939414904, 0.5132028744153617, -0.5555522728197286, -0.27555992529643275, -0.6922668390131889, -1.0624902193036756, 0.4524231130290666, 0.736394070930853, 0.04319090848838256, -1.1454212314029122, -0.29546829517688644, -0.05708229503811322, -0.3854454865878954, 0.7058318516954042, -0.6595903589614148, -0.8934032120457635, 0.343397436805713, -0.36750345875022306, 0.5602231984709408, -1.1137934020945381, -0.2118984977142781, -0.2738918483004857, 0.39337463416053503, 1.3316198357837643, 1.2613247756706836, 1.2148690365909678, -0.12895732809913535, -0.2798018968863612, -0.28533741941188456, 1.6044359231806042, -0.7614731383952716, 0.3760484836602515, -0.22361973362758045, 0.022723354392051087, 0.23544369425088835, 0.710351295814392, 0.815059539659367, -0.49238807620526875, 0.2381668329849486, -0.23448050157504274, 0.6255069597111135, 0.849009022061182, 0.712769433033452, -1.3377344428889648, 0.38376607514297206, 0.4623261364731288, 0.30387628952862566, -0.3929402098644479, 1.1847343671759554, 0.6644783974926548, -0.28193885998362106, 0.7349896419995539, -0.8841092168891734, 0.8691260029984879, -1.6089593418566046, 0.6859529962001516, 1.288615686255435, 0.10504916751179934, 0.22647081146226772, -1.5486656229765527, -0.7287447221376507, -0.4420901277529065, -0.144808020074076, 0.34949409519956404, 1.210056617734559, -1.4371038622005852, 0.8687184576599554, -0.6733035358333542, 0.16713843748014195, -1.2432012394472705, 0.3935317041827787, -0.096085408580031, -0.04687355951079453, -0.4227623223101783, -0.05974044300150425, 0.01917596015069159, -1.1354780413998347, 2.301088761991934, -0.8781901819180927, 0.30776308462261237, 0.23297943884333908, -0.11157967485987988, -1.2784225694560547, -0.6764301989784346, -0.4756490302877728, 0.16063710889803542, 0.8702042568855077, -0.6044255374900233, 0.3429060427236866, 1.699711293164226, 0.5317680994994965, 1.3075086415797192, -1.18795477753287, -1.145439007057744, 2.127717474546395, -0.21227067775660977, 0.8640420755884605, -1.1107561455958361, 0.13679677492037923, 0.9477455041470447, -1.012247815302158, -0.24735369376547953, -0.7593138375970115, -1.0982041954777788, -0.6129945368198769, -1.830715232894054, 0.6171740907369064, -0.8353018539692324, -0.6415081008195646, -0.438379374990159, 0.2605135901213273, 1.452012267453971, -0.692242251303297, -0.6620333305764039, -0.3671880073325065, 0.6976615150659647, 1.0696080229841556, -1.3362222283492007, 1.3952461242588956, -1.0929151927217498, -0.05880509517864242, -0.6618400991279917, -0.3424894164666324, 0.5018662252775837, 0.6494229293072818, -0.3257860896244201, 1.1212507686776778, 1.8164140341901078, 1.731842249242738, -0.7082181174039565, -0.17348007897997242, 0.5742850273225115, 0.6109645823019663, -1.2283617364288848, -0.622019838032319, -1.2296576811700712, 0.23380851395261715, 0.48464153435932233, -2.6029724619839993, -2.087392029057221, 0.3984666684614738, -0.2131084672481489, -0.25338125262103756, 0.7337207131880861, 0.6599855481193232, 0.3255290743471386, -1.3662131043873407, -0.18296768044968512, 0.7057651921503846, -1.2832482894574455, -0.4057529600783974, 0.21155558436885205, -0.3926853664208189, -1.0126080976283258, -1.3754664300976858, -1.0632312098402488, 0.2602469554480715, 1.0572099551527974, -1.3025326781859499, -1.0444149213809495, 0.7090215374837358, -1.031201393491012, -0.8505627993109832, 0.01046317467634185, -1.1876576189634438, 0.06171035695916346, 0.8330188744083222, 0.4890652942065145, 0.13515427214339124, -0.19249890657515165, -0.4167048901096981, 0.4364460560882545, -0.10598899725469428, -0.26501369743103126, 0.3552754746565329, 1.7534999065296946, -0.1587184893853392, -0.9872533588041884, 0.7055406269062033, 0.8063531205470881, 0.11842460212070914, 0.8666685810337406, -0.35369239456340146, -1.8092510933233625, -1.2451942436807766, 1.7245567760452172, 0.9461095649248145, -0.6340691607691783, 0.3029445208374738, -0.4383538767992031, 1.6395325910767236, 0.1871152547229505, 1.5715306527489112, 0.9701451375653424, 0.36754512044177934, -0.37000315485822616, 0.21935145987866356, 0.2682409701726066, -1.2553860765012572, 0.46244589674874825, 1.7786280609929983, -0.8947644664183929, 0.9607237509500708, -0.362174205636218, -0.094255605440406, -0.7751273291570989, 1.3443740248309866, 0.509351937450421, 2.0871867593930147, 0.24592805721203542, -0.5512480098573617, -0.43598526542167026, -0.2442865621033711, 0.166376593666805, -0.24637275690785349, -0.2675425559275357, -3.6963821784489377, 0.6749021855404911, -0.10985500278548455, -1.7948354333422294, -0.9025290699318603, 0.9183506782607179, 0.06378475320635098, 1.6402665388380324, 1.5978493457575587, -1.3259174457091445, -0.08718052219035599, -0.9503704379175741, 0.05918438256249846, 1.4636947597328003, -1.3461062446795777, 0.04806794898194486, 0.5363910093613767, -0.06421101695445423, 0.931581117609716, -0.1433070032692075, 0.7203395316455508, 1.8787835901968049, 0.0919567950610306, -0.15799657673576425, -0.21464205612168488, -1.645939567040031, -0.05664585136245174, -0.11319690899993529, -1.0814284522474618, -0.5596067503773697, -0.45061326764224574, -0.6051807832055552, -1.242577646446235, -0.17154779501104325, 0.6273124400257931, -1.0913552103672843, 0.3476007599769719, -0.6203240735436928, -1.6007186510035394, 1.5895040220394758, 0.29561529025003275, -0.192934867259361, -0.5320870939811697, 0.45439763506678077, 0.21874196328323015, -0.3645807182072884, -0.1338390422579904, -0.11002855915252967, 0.44981379195693916, -0.24952911505063818, -0.23868802820793042, -1.0999881513433496, 1.894669825104457, -0.04070994061643534, -1.3989440474923696, -0.5756579767594424, -0.5068952789674587, 0.05026799858252256, -1.4729296131452922, -0.30062743179881984, -0.19108863612052007, 1.3480643963628285, -0.7288068657467894, 0.027145270107885956, 2.290282101529936, 0.3388417349743462, -0.4030982647497994, 1.0507651601857728, 1.6138014903244675, -0.23024337020147942, 1.9840246810294897, 1.6487497100474477, -0.4142552520548575, -1.1414838842993356, 0.5610775618836413, 0.5223393987421322, 2.155918341406, -0.9312131241122469, 1.223837350050801, -0.9447718573591095, 0.39380910879197295, 1.0636030059418637, 0.4278814950873062, 0.75474260941863, 0.2747901409294357, -0.8579309812920071, 0.8561858819829015, -0.6317749929019227, -0.07638353544990126, -0.054134343748800544, 0.5048499973527842, -0.7977965342879328, -1.4478803746111157, 0.33136671838946463, -1.1806056013660624, -0.7323094525038097, 0.898146017792273, -0.1826346047110011, -0.23271211595775912, 0.6026597251383992, 0.010288602037541663, -1.3088296868459275, 0.5054997915569135, 0.08444851794795191, -0.5730135799477369, -0.5096252148805113, 0.9701599434991627, 1.0631769809316698, 1.1398846339180944, 0.9448134254778183, 2.2891856285518806, -0.4534629702372818, -1.6070392414943204, -0.3821039841425345, -0.7051197684170437, 0.8161870167719448, -0.08497362558166063, -1.3269976233539382, -0.14641771424207004, -0.5688340904327466, -0.8881006317377921, 1.1072378779595755, 0.8676713705007146, 1.6059485283024852, 0.24536109941755996, -0.017771961975117778, 1.264573597219945, -1.1662668303506534, -0.4975351867097628, -0.0971592049644763, 0.20936503466601555, 0.8854749337026258, -0.2769701276218637, -0.16799272759386166, 0.01566632348672496, 0.46325065765693035, 0.8714059689850188, -0.00937729061587802, 1.0839822388085651, -0.1978833571944755, 2.16067695496001, -0.06129122929743983, -0.028686902064594837, 1.463763652427876, -1.576154110190647, 0.1934229717434152, -0.001347247827930898, -0.24020270510312253, 2.040278210075343, 0.6890625319608138, -1.5645421980080252, 0.3309353083283652, -0.019253515147228714, 0.02448364886514966, -0.44127746479257174, 1.524385556356809, -0.563648980413894, 0.2752889009934708, -2.431644114652252, -0.3543059869490595, 0.4631633857360531, 1.4033871612075333, 0.9841289803744815, -0.20531973199144946, -0.4608948836320362, -1.0581373764710078, -0.29891212256720967, 0.9986149205970138, 0.021445498071888378, -0.4277195182739744, 0.215719252043548, 1.527876541240084, 2.240046471126187, 0.1326014654097868, -0.40248952880887456, -3.582633769914583, 0.13475581710184306, 0.9588709960303428, 0.6594550324396113, -0.6178847815351999, -1.7654979854139177, 1.3292203083392737, -1.3948716189133177, 0.08786581028434275, 0.1112318954234221, -0.4582622433848744, -0.4228226770276922, -0.45761011200603635, -0.2940982049049483, 2.3947654598969517, 0.30258304527963775, 0.6605103415139315, 0.552290631562603, 0.6922893232355024, -1.0383129359067114, -0.04426677412642694, 0.5257738448486157, 1.4138592734296005, -0.9895083268270942, -2.5100325570974102, -0.4480060688127482, 0.9620956136116238, -0.716801262597768, 0.2534653240270959, -0.00907555777097057, 0.1771174533840352, 1.256027850348651, 1.940835213395757, -0.28427432342179265, 1.871147294581476, 0.4565709833460011, 0.40266095984665395, -2.2786284959802083, -0.6101152594701448, -0.649383044920932, 0.34400961151816184, -0.11556151889592428, 0.8104796405794434, -0.4296462389517847, 1.7439399987003839, -0.9365215388181519, 0.47231921795236903, -1.0957295787905592, -0.6717990132177217, 0.48838186289519414, 3.2093121435215646, -0.604691184371822, -0.5385606262000039, -0.36982918207406745, -0.6452599000121765, -0.3609919826756516, -0.6971157519522494, -0.1398061163694532, 0.08578624438014691, 0.024298791323489624, -0.22919370118369936, -0.8575277824604111, -0.756669473770909, -0.6162199769285911, 0.3857242770357559, 0.6844403389791349, -0.23539119932135968, 0.929184259732767, 0.8169512383531727, 0.4674959672271805, -1.101045344761234, 0.1450599298848384, -0.1970048822314744, -1.2098588499794642, 0.7333291512626925, 1.0520979554764998, 0.40480138674860255, -1.1854807902382245, -0.5713707603670501, -0.5370676715819337, 0.28312919280438803, -2.1160942581660547, -0.45901453018262983, 0.26944354047503954, -0.7663141052919932, 0.21916665291356108, -0.2645994615450129, 1.0376655146377025, -0.5252540046266938, 1.1774327702107248, -1.4992484229516154, -0.5647408171682871, -1.0645431499928242, 0.44255766640347854, 0.2028522036727528, -0.011230243905173399, 0.8254143087197494, 0.7979655820052423, 0.5955793696992123, -0.8381388691033513, -0.9312537467062254, -2.1212738582244337, -1.1375525840941774, -1.4983319533033834, -0.5267159440197434, -2.03527486768787, 0.6670037212762927, -0.2651021211998883, -0.04239009690290076, 0.9138622588154581, 0.838171942094718, -0.5024780723471658, 1.0384085950925088, -0.5556234772067478, 0.031169287570073093, -0.3011792434134866, 0.26332800550442265, 0.2283712355573466, -0.29664540681995244, -0.3373219066794481, 0.5499923749906719, 0.023711727052397404, 0.26168115556834887, -0.6143274554555777, 0.8654205201099335, -1.514650426655378, -0.6996812166033931, 1.390097514478276, 0.9131636440190833, -2.5486022634888825, 0.7092995483647148, -0.40831368833243276, 0.505917851050141, -0.1749042763729297, 0.5658139981602288, 1.4410404406591255, -0.04221649259436341, -1.3202725215545736, -0.8848697435386669, -1.1777760375118156, 2.089464825556259, 0.3604692488458054, -1.5900248864467919, -0.4619332534252581, -1.203372491384098, 0.3932296964214386, -0.15081471850735775, 0.8815504704476006, 0.32290773728184985, -0.8171983289977943, -1.2179570737765346, -0.4808731872452328, 0.6571384475507346, 0.9324672319665331, -1.2806642157125676, 0.46927446929806177, -0.5981211823478939, 0.7743404589950896, 0.5387586046074692, -0.8033454363862992, -1.3495685231617423, -0.7786395623959158, -0.1364501132921391, 0.3587802086923915, -0.13612307181749503, 0.4385557717111257, 0.00385386029444195, -1.4416908959492272, 0.28386710519159286, -0.11004978013426077, 0.2911024561082632, 0.6930777045610649, -0.4901325094703678, 0.9147904388010507, -1.4088176874848233, 0.6939705999947692, 1.5047500275844665, -1.4696217426617397, -0.5739846276346638, 0.883730430620971, 0.35861276249418067, 0.07715268170215701, 0.9437813480702885, 0.4881840846267985, -0.337252219099574, 0.46922208374074575, 1.1577376446131815, -0.7758427552245771, -1.212758824677608, 0.022838036378902138, -1.6704823429495967, -2.0021179299283016, -0.2494268912482361, 0.5947640764583609, -1.1607233069785126, -0.20173675640534322, -0.218070416938744, 1.0727106156437312, 2.298096086644922, -0.17132763621261565, 1.635486004334515, 0.6195984621739419, 1.73069668831408, 0.33871742700878327, 1.2094011168239396, 0.13628469629878537, -0.279146010978114, -0.2859138640984315, -0.1121180062911524, 1.6542883363062657, -0.2756598331649983, 0.6782420383857594, -0.37052595192860066, -1.11878440713354, -0.8250548212532868, 1.1520137969447255, 0.08021094390107399, 0.28816967323936715, 0.03434676013918133, 1.1773974975746304, -1.4453710195166358, -0.3546698538786718, -1.594593194383864, 0.9189609158187881, -1.4117968069977942, 0.2122605435601716, -0.1106251491745619, 0.2373243271991042, 0.8598250051473245, -0.8730263759278872, 0.01839725342256475, 0.43727365115263567, 0.12902971898361543, -0.9689759893543447, 1.4072837357671912, 0.1326513945568541, 0.1776550523378438, 0.9205079898243411, 0.22909510071416703, -0.3035426885225365, -1.1041542515890954, 0.07387971512287905, 2.1390514341964755, 1.5179110024093219, 0.9598817687897758, -0.21378444126858526, 1.432853928582512, 0.9784811865490661, -0.4149329683547695, -0.964452674837141, -0.23816379672157123, -0.428727078967742, 0.44957518901476773, 0.8649109511661416, 0.7698645770151852, 0.24150187850810975, -0.1604928816730148, -0.22210750467758678, 1.2475794034300052, -0.5542690016733457, -1.0893898080779254, -0.09270237507254266, 0.0194911243995031, -1.5393813637236844, -1.6646206031483783, 0.95153333573721, 0.00898387903135951, 1.4061885845961781, -0.7297524816830171, -0.46166186238988777, 0.6770934163618103, 0.5212660110259344, -0.6952034066772539, -0.13788073154710215, 1.5552626083905658, -0.7472648938017274, 0.7992600278696044, 2.19312782143502, 0.7114299405975828, 0.36794220712446707, -1.8139121941368452, -1.6273423989727018, 0.10794303332553157, 1.1500674295743951, 0.2487444205648825, -0.15714574961442102, -0.20294883242346887, 0.995817317595441, 1.3291097935302882, 0.32541035561075593, 1.7416658438439911, -0.24881805455950365, -0.8959473001410403, 1.324959189185458, -0.9085709969244771, 0.5310005090929402, 0.504946068709674, 2.4182412960009048, 0.5705533493448327, -1.3086623068012115, 1.1359630332260382, 0.5038580825105956, 0.35683310434266635, 0.015747170032250724, 0.6036805315244649, 0.6130180266295951, 0.4731456851328909, 0.672271316391867, -0.023731198832781023, 0.12999566699215953, -1.397458146465768, -2.0721940700101604, 0.12188341301140196, -0.9266217169829016, 0.45995862325324494, -1.061767297481383, 1.2156095340657098, 1.0879072881718845, 1.7522228089004286, 0.18911447166798323, -0.002792983946158394, 0.6429109389006218, -1.0757656925382681, -0.44344718033778086, 1.104143311131551, -0.25430034550725666, -0.17882079754304323, 0.3183701564676611, 1.6049558027135555, 0.4368858499269462, 0.47643768699139893, -2.2635818202684606, -1.1697179806208413, 0.9466500910393113, 0.3219959386529783, -1.129129199016173, 0.04681688961809806, 0.02680111793570979, -0.14737226044461002, -1.5074872245150455, -0.06971959765932544, -0.1969699725884555, 0.6863551517542453, -0.574776271704502, -0.35208152959230643, 0.9262391599016985, 0.3630649703730215, -1.159647515583531, -0.5799707677054421, -0.29557147626041697, 0.9798705660629746, -0.19373805867836097, -2.10405719113979, 0.41937636178544463, 0.5008876122326462, 0.02182778019874306, 0.3230008000940698, 0.4709671634359699, -1.612515754788948, -1.8684370649844508, -0.17956324607934007, 0.7774455524117079, -1.8146328550535438, 1.1745832399853418, -1.5063328963955804, 0.1614777729134087, 1.0033017429685842, 1.0198889548722787, -0.3928885521355684, -1.7021418078951867, -0.32556624198248574, -0.2362736595798529, 0.7413898693063047, 1.643972758260461, 0.34930201665240196, 0.8650371798996923, 0.7654990025584882, -0.9807858533536018, 0.9024367859629161, -2.555873054109469, -0.44440636276220147, -0.3727099478444506, 0.6381931320458096, -1.1662085671410474, 0.6327628958383623, -0.38624852446617863, -0.7251356133451647, 0.2769712351498959, 0.1381852454892324, -0.4961374150635113, -0.2535099891044187, -1.3350572767123599, -0.3375288830479295, -1.128041182652452, 1.5257135464815437, -0.413273024864353, 0.5602386296385636, -1.0941255594089756, 1.7882643689543338, 0.042988235303654955, -0.0842945136979885, 1.7234824195774494, -3.187970975320707, 0.40345433845309553, -1.2964925499601905, -0.7336864463647726, -0.9078784293940158, 0.13266607786151643, -1.120386404059648, -0.6123599983481655, 1.2518936287829308, 0.6576721510335256, 1.9390325178631214, 1.3934990087619579, -1.4334941185338288, 0.7767225651877063, 1.4117603939271137, -0.6228173431986936, 1.0200410794973456, 2.4817863629258556, 0.04097652354397455, 0.2523282943304274, 0.8460535985871324, 0.5290568457369864, 1.3975348292951266, 0.7298330422779409, 0.32855350273536116, -1.2281464102709307, 0.7526420076578745, 0.179291050691419, -1.6540938444219397, -0.0884528361883123, 0.7083240734638048, 1.0464669036807033, 0.3646305454272974, 0.11472465712003957, 0.7177532622235132, 0.5272038172214534, -0.2706526892137621, -1.2492640559782355, 0.12881298270040237, -2.1356678058628034, -1.1103846405318227, -0.4973986620817711, 0.8219507962351293, 0.3232357498823128, 0.15324889629484753, -1.466166220521851, 0.5495755706365248, 0.16712572552525856, 2.211181392078699, 0.09907103133182532, 0.21786814329370707, 0.4772681213524117, 0.1281859218290785, -0.33527228930549163, 0.6494745615559875, -0.18842989077690056, -0.3631068447649891, 0.04937778183893424, -1.0637182697282275, 0.033581910066608885, 1.1875491667331701, 0.028562326134289644, -0.3245640641638765, -1.2418152950244343, -0.06008536892753122, 1.9554340487519153, 0.3651836162520472, 0.36811870677709846, 1.2801778454528827, -1.0341890707343953, 0.4725729279168841, 0.6561073392689405, -0.6028113071731531, -0.43423257310759034, -0.6292658364202498, -0.10649136374882211, -1.203963854506712, 0.1706646473743512, 0.8712467897533673, 1.1496576565800578, -0.5364243331731299, -0.8011030943638637, -2.0931073620397567, 1.2864881211953796, -1.2411414440307948, 0.9548391244652281, 1.7106517120956777, 0.4857234607191118, -0.465301086981747, 0.471069865446513, -1.3513119356221204, 1.8334749302447613, -0.1159319320403266, -0.31987693248487137, 1.5140283105468306, -0.8035951281322903, -0.3818716657044218, 0.0063090535289167474, -0.043429658015533855, -1.257771487446853, -2.0358096663447753, 1.3525271778083154, 0.24784955430179478, -1.1382368601064028, 0.2106027564111082, -0.26867102008315896, 0.6313508692001853, 0.9066904077514462, 1.3202440156272617, 0.4683183517206388, 0.7160690623101001, 1.145762032592442, -0.2512366770386157, 0.7660623010325235, 0.3682229879117045, 0.01575427201158343, -0.974946922285461, 0.7384811775590342, -1.5174913053620787, 1.6086063371338541, 1.6293594513500997, 0.7166044906760984, -0.11725583823851861, -0.30058987234783885, -0.5813851730270335, -0.4286004085312622, -0.7813758950256311, 2.033116988482531, -0.7407294985953129, 0.4843338891963874, 0.11007520333352251, -0.5549069399565782, -1.4078189641850742, 1.088325600472022, 0.3641754156354085, 0.8092667618813292, -1.1018093449443676, 0.20301416202918876, 1.2032167382938148, 0.2937072360520318, -0.42319879938020616, -0.5376032120282692, 0.996444897891843, 1.130123281925769, 0.5689488099890089, 0.07287498829668514, -0.23613546228175955, -1.5695038819699632, 0.7497497695994577, -0.17827411039275573, -0.7163790590447375, 0.8762739406281735, 1.3018170033677172, 0.21918434874396447, 0.12726380819852653, 0.014317838564385203, -1.0659837664831737, -1.2899200835828593, -1.5986147438886356, -0.7494409026085892, -0.5309546688787413, 2.02930190113621, -1.176443533692264, 0.3994967338308735, 0.14350984019573876, 0.06623084230390883, -1.3233107863644007, -1.8298716136144066, 0.08766789144917422, -0.2530754623928307, -0.1136388849057681, 0.6461664978669672, 1.5357531099191364, 1.52376866138775, -1.4008640631211753, -0.19833913547068258, -0.4484713004050339, -1.6661941161535285, -0.5260093622601755, 1.530118234730946, 0.09862626739666501, 1.116127671991282, -1.243587219473591, 0.40376301667522563, -0.3675699200750864, 0.6806376270580644, 1.2776537864758455, 0.5801027846172714, -0.6666938048673956, 0.6677799454429058, -0.11135177167970507, -0.09866244076329518, 0.13684638242139568, 0.2953864257007028, -0.3381202994022389, -0.0893815694980259, -0.7725936333233483, -1.0905412268711774, 0.9006553052735182, 0.9633638741380873, 1.4847492243689195, 0.6310731356089975, -2.46569312248651, -0.05813999353697298, 0.19821700405994291, -0.1597816604320246, -0.9430444717118805, 1.3149845371504625, 0.38271882330508483, 0.13569635340836744, -0.8359045465916531, 0.3275991576421053, 0.5065634622457963, -0.9338463958298742, 0.2588460599382171, 0.5210315082858585, 0.10354155755813597, -0.1882560550273485, 0.05484169888436395, -1.800761822855104, 0.7336549643595455, -1.1610725793443162, -0.8717529598935344, 0.11242317757245936, -0.5964517820884792, 0.9753478387995047, 0.4830535728130894, -0.8707915428185167, 0.37411605855720964, -0.8959332086043686, -1.0913012981966683, -1.4230402228576131, 0.8456393638691383, -0.7159152396083657, 1.0525863825644461, 0.656284204015958, 0.5307348190565945, -0.7261079734671994, 0.8700952118259412, 0.7494738829728946, -0.3698170679801321, 1.2030913689034415, -0.10043339391539971, -0.15475685976124814, 0.5023102947057106, -0.27038233072586987, 2.5622373967196586, 1.8658435231674142, 1.6286799814402884, 0.03523565889860407, -0.3582769364306419, -1.090508311095489, -1.1192188199950992, -0.3517205760651317, 1.3639705846590395, -1.0721993313241502, -0.808619515035869, -1.0694898186771378, -1.1486276510699727, -0.12905439703552288, -3.0800730213794343, 0.42291365760373295, -0.5376471009907079, -1.5464943345967186, 0.1834058582344418, 0.41805565770402703, -1.0543080210720428, -0.606799221021544, -0.1913399771148834, -0.8423970791654415, 2.0598176687206706, 1.2728340528249984, 2.182215859598368, -0.6714914344235201, -1.3744326692233297, 0.3859388429030424, -0.4446962015153871, -0.6295689536476065, 0.754112214944551, -0.6910682076531913, -0.6296581758685068, 1.3993944366007787, 0.3944715892044437, -1.2029907688680046, 0.6611523756761174, -0.30318681983102463, 0.1118804134815805, -0.1755757574434328, 0.619402697814329, -0.13396105249298876, -0.32460777937426616, -1.8022037771853852, 0.45209657806376014, -0.13077466084895834, -1.7058910573615111, 0.20819854845191157, 0.2101767865156552, 0.8067889076505395, 0.43844271644845234, 0.530610556798886, -1.1184296061002612, -0.6786297340788472, -1.2752159666837353, -0.35732377392998177, 1.6135331555737535, -0.45215120172972606, 0.25494758923948263, -0.6448567401451051, -0.2419120681496809, 1.3180218092325795, -0.03922472063830553, -0.6670329650347262, 1.3619553071495136, -0.1975990310947906, 0.38252938833197553, 1.2634963274805193, -0.7709412555529219, 0.17347040254957788, -0.7965555358895622, -0.9420695096999384, -0.8303144173989122, 0.08821659806528359, -1.1322989662424048, 0.4527240995608517, 0.2292931318299891, 0.0878712789094784, -1.0526433271057594, 1.4245723783095583, -2.369179653894046, 0.36449035019685727, 0.6878605122775922, 0.5819934390295595, -0.27287991121829, 1.1022707806497045, 0.606331925166625, -0.17260267570516702, 0.4113177742880564, -1.9758360090327896, -0.1555636912317714, -1.977013973664535, 0.9279914166033562, 0.30592329087200304, 0.5466195861891849, -0.33239288898410974, 0.11605887190531806, -1.3642584330233254, -1.321412399686774, -0.3081697419958863, 1.130158674963952, -2.3235345107132, 0.24718645570938244, 0.39884725830932566, 0.7034964913381531, -1.6304704118346653, 1.1216027944870928, -0.47397952746607347, 0.1623632595758474, -0.7056422357995595, -0.4187016743663158, -0.04718061475050577, 1.3832098928504675, -1.6205413064150178, -0.6348775570204773, -0.45273325594365876, -0.214087100282064, 0.32887689300487954, 0.5558871822266832, -0.3544922501295164, -0.3390423820508347, 1.2258693885522114, 0.9408617672692577, -0.7415570592671138, -0.8988969136156054, 0.20867831539895107, 0.37383611664877037, 0.526801338167509, 0.13863903761106833, 0.5456162344440361, 1.8162443198937581, 0.9194172045346015, -0.48872046467191993, 1.431225358638122, -0.8335259778113636, 0.4255867936847979, -1.4894823484793656, 0.1482298579077082, -0.10258421107909903, -0.6898844723787969, 0.34341901070120134, -0.36263829796350094, 1.761020711690263, -1.1537690116051358, -0.3614289077273588, 0.029650066433857303, 0.4987541849490123, 2.34130637384636, 0.2348806972196783, 1.1907346393327447, 0.941475833476379, -0.21411058027589197, 1.6735919003219553, -0.1546432447273643, -1.1524665411776513, 1.4262059080553695, 2.0663826483946046, -0.13192896638728016, 0.9929351916909018, 0.05685007042050136, -0.10456383006019584, 1.5252018647117365, 0.9089714589326179, -0.06451920024748874, -0.4742568163041598, 0.7245929594811019, 0.4953096185556013, -0.5181059777082054, 1.597070418897736, 0.49113192036609193, -0.9918959467216569, 2.0378512298338656, 1.486705885285298, -0.030446130459887432, 1.2187668668042846, -0.572513818383715, 0.3555551195222048, -0.9114187863188248, -0.8512642322020382, -0.055675188598131975, -0.36588027098746917, -2.0551911035907007, 0.09944716150577401, 0.38523097209823176, 0.0680394971218382, 0.356031354882165, 1.8184235463199132, -0.7529022019619588, 0.47324941552636596, -0.030568792667482962, -0.40371904005100245, 0.038698707838517726, 0.14181996358733134, 0.33216096353904045, -1.3598425031223693, -0.7664008569208774, -0.07091115099984867, 0.8014757564808439, -1.080158316019498, -0.9325285462550807, 0.0624787547974826, 1.4199150381355052, -0.5137319092837714, -0.16642331271934688, 0.0028253992781274787, 0.41492697642699405, -0.10665815449216311, -1.8735668706354087, -0.5211843976438482, 1.482115599834005, -0.6241293962365229, -1.451879749954292, 1.9427942692137938, -1.2103997705301248, -1.1303753351218913, 1.4339218438224535, 0.21857413262408393, 0.6972089840907741, -0.40481864704152315, -0.24088572243449433, -0.5731243632685207, 0.9171446491647774, 1.230151673307907, -1.5984568567616808, -1.5167563739079606, 0.2542597183423322, 0.22925687587684415, 1.8167170923200393, -0.6930620899421915, 0.9291159150056528, 1.0392958737722677, 0.10836877482595199, -1.0295654390314524, 1.1970034835020706, -0.35208590430791886, 0.6457015364684094, -1.214040366919401, -1.5655822471616267, 0.634554231632909, -1.5393986522785579, 0.3140291388344044, 0.6517234033338479, -1.374073569830939, -0.6254049454391677, -0.9331882637843211, 0.12048003665140039, -0.10810789719550737, 1.4997739777359964, 0.04694924148567978, -0.23496730722434628, 0.4900526544215494, 0.9468325852431306, -0.9621006443591971, -0.556773500522175, -0.4618731981318023, 0.2921664248241284, -0.940503674626748, -0.2037296043834444, -0.21167568804897727, 1.0448887824459616, 0.9586119941939916, -1.6032805432677595, -1.8652116083965633, -0.6140287728354417, -0.3433736590197344, -0.24283392394945674, -0.10116380706855721, -0.2938998610906297, 1.2504943377299682, -1.6122958445304465, 0.5611793689214069, 1.3927210849045557, 1.2572970906081244, 1.062445110170969, 0.8268227113150225, -1.6433008461978436, -0.5611377095928868, 0.16075234828837823, 1.0159575832625514, -0.33577672820936455, 0.7108666580746609, 0.29810803691615584, 1.733651060054869, -0.5403676999286388, 0.1363460410998533, 0.5639727848031033, -1.2670977083835628, 0.26608677257765667, -0.8981350101154236, -0.23108182061924581, 1.7126886302383837, 0.4825089283030685, 0.9183236240217433, -0.8541693197167401, -0.010504488708307372, -1.640133526791557, -0.4903741945038266, -0.23422193206346245, 0.5066971197530278, -2.492535924066218, 1.641515543015065, -2.1349787743901625, -2.032982675930624, 0.5022528843957471, -0.6965558266930459, 0.0804538018758837, 1.2573467015858037, -0.1630240547028693, 0.8094191867938062, -0.3716171522115434, 0.23392942787617751, 0.8198895854671313, 0.8575534077014334, -0.5473890381044322, 2.0371475069937173, 0.10680502482229497, -0.8437136972325496, 0.2749819555343043, -0.14677572194813568, -2.2193404278688957, -0.789194494668841, 0.449709372010956, 0.04526128599027017, -1.4183161335875645, 0.6705183595729075, 0.07848336176801833, 1.4860171608145722, 0.3418321778081838, -1.8983629317841015, -0.04828747355798959, 0.6129908765138915, 0.725907414390534, -0.5068227714792402, -0.3335683728685907, -0.801318612728544, -0.5996423405442, -1.7966731873599624, 0.2967205643266488, -0.14328649095584187, -0.45570970698631136, -1.1070328422263953, 0.35682874357757344, 1.2088090404568592, 0.17305417136133117, 0.9584795447156638, 0.34908478500960505, 2.398564402918588, -0.43393522568403226, 1.1388564258874943, -2.600920608944379, -0.8858464135284547, 0.0903930720608949, 0.8869024893755089, -0.888471257214697, 1.3072483845739749, -1.3692398495346145, 0.00513971188227729, 1.4850753093332856, -0.6536449116368325, 0.6196638917993198, 1.3929731652875548, 1.1034456181396437, -1.7780526910772685, -2.020674064865217, 0.4893183118669763, -0.9184159947464517, 2.606510949928797, -0.6237435759393525, -1.1281553634628296, 0.939020016999334, -1.539727831944262, -0.44604943765361055, 0.5015955898048996, 0.3234558481538506, 2.5124431446266198, 0.3243038778571563, 0.3335613047666849, -0.17738737109500602, -0.7263411459292569, -1.2085688861844421, -1.348217312451313, -0.30596969541237184, 0.6146604416735153, 0.2239994215999164, -0.9404301629019725, 0.6414631160932438, 0.5930815180552124, -0.3270745229912222, 0.15258083771083567, 2.281879185496606, 0.15912579228523552, -1.418709613402085, -1.026146031365615, 0.14819293477985215, -0.06756708879576763, 0.41983985206708424, 0.49293195116043065, 2.783133564971822, 0.5205945968267188, -0.48004352524024463, -0.01899729009946016, 1.076306857416629, -0.640878637260882, -1.4822300901324983, 1.1762874790030113, -1.3591670073240147, 0.5856863865974586, -1.9408684562412042, 0.4961872669356878, -0.5716547042176997, -0.027581887238358336, -1.137603821865718, -0.37712044882156176, -0.025548412419218364, -0.9522795947118792, 0.7002925667642992, -1.0333179223670537, -1.7433312004859465, 0.3066098539991259, 0.7688859808214934, 1.7859594162822154, 0.16849940455402648, -1.4709752245093217, 1.8097455604131742, -1.4714418362490467, 0.30938330092810973, 0.18274440625153457, 1.0268668888609422, -0.3394411213254711, 0.5176287186645446, 0.5296371253303575, 1.1879370353916325, 1.323312331359739, 0.5176439539259665, -1.0524002351752075, 0.8482274512464982, 0.49281100519116094, -1.6156283102962157, 1.393524552765576, -0.8983901617808988, 0.7774288406252506, -0.9108047026147919, 0.5317415442238683, -1.2647241582377935, -1.665040743827559, -1.7364748208611906, -0.8918369830658966, 1.4573838410882909, 1.262458293642594, 1.3572231746480503, -1.996679522658326, 0.9720257769236135, 0.29958309070470296, -0.08645152947211594, 1.1386047809447086, 0.09203493961942029, 1.5408378044862427, 0.7808568586586294, 0.9867604726174747, -1.5650897669324673, -1.1390507742875722, 0.5411241426127921, 1.036262504448755, 1.6036324651920801, -0.7132885074550259, 0.061482356606687334, -0.26334127013784425, -0.747416874565727, 1.8936300428947388, 0.841215437720601, 2.4902913423268194, -0.5227624834618343, -0.9091934229614055, 0.5640446507535719, -0.9320764872289896, 2.627060041017001, 0.5237391502663713, 0.33852252373435593, -0.006372651441219131, 1.0226443232295384, -0.9364317643518908, -0.9345472941137143, 0.9009425606460552, -0.04361875052614355, 0.7195911942274535, -0.3711640895088972, -1.0158014550424257, -1.4182492504610738, -0.6607374236979306, -0.39147569488820133, -0.1207456309302555, 0.0901323047819842, 0.4451805428768158, -1.0475659767288965, -0.42510856446634865, -0.5298866831832404, -0.807099457488808, -0.11025666445551684, 1.5884007328810363, -0.19369642951163518, -0.4415809853603029, -0.6215199574454213, -1.2018870622547881, -1.5399136880268287, -1.327715544809897, -0.32026717954202844, 0.5045253044020197, 0.8591215615653283, 0.8846509402523475, -0.006580502210055159, 0.6249363944156359, 1.4653388840478996, -0.7268745837435541, 0.1862597966324899, -1.613511417976722, -0.1742244682080738, -2.723416400016987, 2.550206524172041, 3.0369284595343733, 0.06022975579240358, -0.36689845247661984, -0.797214641796363, -2.2113234493948775, 0.14207337672174192, 0.7485626172276799, -0.46834264839065987, 0.992833635057387, -0.4941309194634734, 2.6794890518489782, 2.73015044454164, 1.010098618702245, 1.7550018795407678, -1.8215503892338272, 0.5205903445481116, -0.38977484673973717, 0.7391336623470705, -0.5862594719098834, 0.06946111978532907, 0.21088828463187334, -0.14652757733870553, -0.019939642344409834, 0.6143152622603527, 0.09950687926981618, -1.0703366769797993, 1.2289059382762915, -2.1325303574582235, -0.5433759300314402, 1.7213540341976372, -2.5659355791105507, -0.27859353141266885, 2.7882966947655645, -0.4674185633064313, -0.8851759744355281, 0.9252772356724117, 1.4955603274041007, 1.9921215780585757, 1.1753374840928368, -0.5312315943154523, -0.3789124404276404, 0.6473421070173312, -0.28890340287550426, 0.23988238691451838, 1.0771948771385498, -0.23587656515446997, -1.3000028605638807, -0.3462337465766663, 2.0216528682862, -3.216084753329841, 1.0293981225892477, -0.18335402153955502, 0.5917838550919893, 0.010484963280638925, -0.5636062658325383, 0.8430361304490118, 0.7548788092376264, 0.7692516540219351, 0.5189821124387073, 1.2213122018592293, 0.7956984344012892, 0.9959564489048459, -0.308551982430022, -1.8005253640122219, 0.8567198470873656, -0.1250630413915758, 0.41066230673764054, 0.3462860223351894, 3.138423414236425, 0.02941030925700957, -0.17125501968890441, -1.5338974042679683, -0.6654205686430615, -0.711195435853122, 1.5340447616280726, 0.13343403566202522, 0.06485474604003363, -1.096925875854386, -0.732698697984039, 0.4772202349536691, -0.3649800412643624, 1.1543520878819273, 0.2928926745117774, 0.5059558768609284, 0.3601861211699777, -0.1907577412371595, 0.080182993835133, 0.43421438966596443, -0.06542705021618334, 1.4435685231941713, -0.5684501438250675, 0.3970382143800187, -1.2390623530889242, 0.6707407846892995, 0.07380004091731947, -0.06023708895218648, -0.1714155294407133, -0.11706857399791222, -0.0010962328506962864, 0.5292847718358155, 0.27479301807629697, 0.3854003293503547, -0.15023442152911629, 0.47869678936568055, -0.754599869982084, 1.8915603141698936, -1.8262910164640405, -1.4029172517326707, -0.551880486350166, 0.28739438782887544, 0.35355105211913535, -0.6208495123250648, -0.961166315201071, 0.47016283766530287, 0.37828325710042826, 1.3914709798267408, 0.12957700447610665, -0.9727763948684841, 0.49059065866628454, 1.2619894182963847, 0.9119928038396317, 1.5943485080815536, 0.7756484541425571, -2.26393492714169, -0.1172999298857263, 0.8278869786131215, 0.7068641964076998, 1.064394813021238, -2.0944838188576247, 0.1324692781684871, 1.3719764539404868, -0.1478983537187121, -0.5469340902181281, 1.0983661342350908, 0.649568960513698, -0.9553637626493868, 0.06848271552893417, 1.8250363038976185, 0.38765583344162263, -0.45988102690119, 0.04336979587356992, 0.013751305153940407, 1.037859616855935, -0.3294973632757933, -0.16394779410682367, -0.40887242794174833, -0.8283794755570305, 0.3747679035816971, 1.601498795396936, 1.8063677644715148, -0.8731918028454658, -0.2180476917811609, -1.1052722726636568, -0.18073971944584516, 0.5598236158113392, 1.4038982104581317, 0.6211161214813157, -0.7434650202358689, 0.3100078570181013, 0.7106705684048302, -0.25324021755574516, -0.7006420413260535, -0.6459213937071123, -0.25134932341179195, -0.08940513338388754, -0.45838286108164933, 0.019952131673621275, -0.006233549538820404, -2.31623345863317, 1.2733193886445333, 0.7621782258654332, -1.361408666609769, -1.2977864269143484, 0.6459748170434877, -0.005485383610915041, 0.440666488066176, 0.24967796019365796, -0.10825091973702744, -0.28640606742578995, -0.6546299379530436, -0.9922706262989756, 0.5986612078500898, 1.0596354283021936, 0.23444558300276008, -0.15011176193364764, -0.959663286038527, 1.2237797556557564, 0.890730417973445, 0.5658326544406309, -0.11822843216220216, -0.9606866653190446, 0.8740054116070463, -0.11817111101819326, -0.17014521000767577, 1.7181126295227378, -0.4121940788491994, -0.1866752699392849, -0.7736271399994954, -1.166927270611145, 0.2816601130115239, -1.3935691403264328, -0.11927890309832333, -0.2134871192314636, 1.4517691425019006, 1.3884637714925998, -0.5675999677710127, -2.0882982551432283, -0.7911146118799676, 1.1351342908479476, 0.32207272246897595, -0.9472513353364386, -0.4812900857703834, -0.9577543383303542, -1.0256440786828391, -0.4108417387268506, 1.0992937505670435, -0.06752432548145075, -0.1657067514701522, -0.5553146722616822, -0.49479850413044224, -0.24244010635067367, -0.157413711593532, -0.20141957713825243, 0.11887503521978905, 0.904248587007977, -0.6428620505257393, -1.1284490105620197, -0.34751330555665316, 0.6235290215721686, 0.3052597512747516, 0.3511219814575845, 0.030383409209452143, -1.7137524936854442, -0.8035689467621284, -1.5090040615878266, -0.27755716585628704, 0.6512346482572929, -0.07564059037501449, 1.3302063758527911, -0.22309419000212163, -0.7718013262560727, 1.6519818282725123, -0.6332258323127274, -1.0240543314439214, 1.0870512339237364, 0.25109002058046614, 0.3550022765064039, -0.4598827012590572, 0.7577510877352721, -0.5036650683327403, 0.3832828002207905, -1.2366793158494183, -0.30208081252753977, -1.2377742244094139, 2.7267125325890635, 0.5882768612399173, -0.6602647732568674, 1.2642693290586702, 0.40411733000788486, 0.06497999904762872, 0.25979363791171567, -0.2473331942850807, -0.5391729865628019, 0.8848781094665031, -0.15312328207692685, -0.49071798112191584, 0.653398033836475, 1.4920326200051819, -0.2780357049572595, 1.8450742029891092, -0.16990549859678553, -1.021703232938527, -0.8994738196734683, -0.6619342778062899, -1.159044329020287, -1.1105904062861771, -0.18208837156654584, -0.4174446129913433, -1.1983482027583683, -0.4520235320711302, 0.7155922752817083, 1.0320429500484787, -1.073408622418321, 0.06554498960743033, -0.06653114565400421, 1.1468733497311963, 0.8537413440435907, 0.1642517653160968, -1.2801247842760486, -0.7038066608238049, 0.28563870904403765, -1.1680253289185247, 1.1068804378246253, 0.04548448133812198, 0.4366655569059431, 0.06840293463879142, -0.9995230952666081, -0.30604038426767605, 0.9594115486457226, -0.5105870383696105, 1.2438134039833024, -0.05347763112154454, 0.09670796013913437, 0.7856378089543148, -0.6421962915159444, -0.4470716060614012, -0.26013873850666525, 1.330906573736946, 1.5213841896549907, 1.0531320821513408, 0.16740625100069434, -0.8684573860319628, 1.9345369655804308, 0.7282259022956273, 0.03633388352289314, 1.1504015955532898, 0.43098859992729244, 0.05621981990501979, 0.3886554230359723, -0.7424467814114432, 2.312510586642696, -1.2463651157824032, 0.6628012524734342, -0.3415089197333003, -0.9333924739407862, -0.32061579212861324, 0.44108650496780055, -1.942322341721906, -0.7564457170626371, -1.1308640083528312, -0.5601320625526204, 2.210985493652264, -0.2909806237453428, -0.1981233801637038, -0.08538329095601001, 1.7293105075805306, -1.633198449635339, -0.987498238159556, 1.240025152549476, -1.2231981823393425, -1.2305644579389727, -0.25836594453826395, 1.0409854590542333, -0.3635448834812785, 1.054863505250281, 2.0693228196582445, 0.16867802542516583, -0.22994593941222108, 0.632559304973593, -0.27164789581290466, -0.9076102549106322, -0.2787817905845248, 1.3348133642731077, 0.8954046798245223, 0.0599765329181738, 0.09822727898785269, 1.4066728263877148, -1.452170071455148, -0.4769932995021278, 0.3652239376439994, -0.6870629787172143, 0.28053575522673097, -0.9477216397614425, -0.10989713626510418, -1.025755736937377, -0.7251070402088955, 0.22090947919511678, 0.22308093207807086, -1.9522075865997743, 0.8272948091041981, -1.0049448519931843, 0.3057852777114887, 1.96329475123614, -0.6018738484511319, 0.2674594725144639, 0.3436177601804735, 0.6361440342353121, 1.973712123400415, -0.6512869034354075, 1.2272319910565648, -1.1725661896802808, -0.33395127554904425, 0.5823001435426028, -1.9729032960389654, -0.4504639306113423, -1.3043336946230508, 0.9415576311263845, -0.53255052563605, -0.9964748242801413, -1.7416423919091661, 0.3707543582786415, 0.37412304702022786, 0.14176300811548345, 0.21732320918160514, -2.286555006279766, -0.4085741784021576, 0.1298628728305924, -0.6257281511599727, 0.3808224647264789, 0.25754857713705975, 1.8496750332392715, -0.5463358921134231, -0.9214924883521395, 0.07742942876296438, -0.4003160650566109, 1.0152259788495053, -0.3530632727523701, 0.16689031917733133, -1.6069699725343636, -2.1103110350985665, 0.31816437051302426, 2.368579801215988, -0.3746897302092574, -0.5382167676556394, 1.3485247674526628, -0.28562072637384245, -1.6348727561261112, -0.39169465151258176, -0.1691588059714844, 0.6994124548478957, 1.3535831356244545, -0.6166229335810365, 1.356933948364347, -1.3030037904696377, -0.49519777195165876, -1.4294478503228596, -0.4993618912927756, -0.4426620713223053, 0.5872487406584882, 0.5320767834557415, 0.10321194986887493, 0.6085928230310724, 0.40644118819181113, -0.9404409913404674, 0.8783428703742601, 1.1281561513490275, -1.0041943754245564, -1.2516554386786323, 0.5823033574043321, -1.807166784397136, -0.9829263547313909, -0.2143070376564399, -1.1009660309737164, -0.79138028611776, -0.522695577143818, -0.4940835138491623, -0.0667700116091045, 1.3749969388870291, -1.1213367941944266, -1.5749204078060226, -1.5292065613319705, 0.5596944035207381, -0.34346566053154753, 0.06837126586584916, 1.3021804880894023, -0.799704127764257, -1.3141037419068746, -1.2230597829822918, -0.38496598680501176, -0.648462616889001, 0.7059589843278926, 1.0484057573564167, 1.559343472614721, 0.17797962123244512, -1.0650746974562468, -1.7654123542615554, 1.161692584551651, 2.3474344651301338, 2.096707870161055, 0.2942393484050579, -2.1489941443458305, -1.073955949520826, -0.14675990439546419, 0.8414604595765452, 0.12740462619456394, -0.4032205050374973, -1.2622110009697296, -1.1457098141431035, 0.8456011292845103, 0.11814279474530447, -0.7395452326336595, -1.4145618303750844, -0.7783003795467177, -1.9675280922586795, 0.6732746044411636, -0.6740814133370439, -0.9118752986186877, -0.2562034203159657, 1.8410292126442158, 1.0125092485730327, -1.1405286529023055, 0.25397554760044944, -1.7743817580541543, 0.08719352106942459, -0.1401291251727139, 0.6957899790611934, 0.14339992406196048, -0.7813588924650183, -0.7914398751864887, 2.465536403004109, 1.9265019878621648, -0.7208114930941751, -2.280130007240353, -2.0832465523773336, -0.06275309608872863, 0.9533647638735127, -0.2829232587194035, 0.9102258054066528, -1.5820658096482734, -1.8341025842133551, 1.425871088765205, -2.397770926691659, -0.9117521711448326, -0.44518144389530145, 0.7293221993878811, -0.8139381787640122, -0.2807335950928925, -0.49446159561193226, -1.110183631062511, -1.2327094798482106, 0.04517612434058549, -0.40871785647342557, -1.673983614594664, -0.6218728466067216, 1.0665061899989818, 0.021422947239286443, -0.3303947099423387, 0.9143941666811681, 0.838897967491326, 0.7783722545903728, 1.1619660727234664, 0.3511410028620389, -0.8389054367073996, 0.34763566051863376, -2.221832890776597, -1.0202207499476448, 1.0734165892638843, 1.4320205468913518, 0.16760582053560227, -1.0273924472157903, 0.03078032023503364, -0.26068717961060167, 0.7315081186434909, -0.8873660295796713, -0.6238783395298946, 2.4600580956137463, 0.6433702400414453, 1.0586039467905972, -0.0615449298763494, 0.24130500549679482, -0.06309562248342164, 0.029639797054290665, -0.12876031642341618, 0.6821389452214133, -0.2709346241292192, -0.3137261003179202, 0.28097897610813083, -1.0178995181839103, 0.18706106564420405, 0.24955668032773595, 1.5746238548443925, -1.1764976659621997, -0.5769706813732651, -1.5095505162308482, -2.9749281831984633, -0.7039770220897672, -0.44984258360689944, 0.166035986858436, -1.1799859340173542, -1.1285353372384086, 0.7718072610396787, 1.6043374142858726, 0.13001803882796448, -0.3352541044797412, -0.8886129457589202, 0.6348502360459845, -0.7505423338048129, 0.34330257758495225, 1.515802150432216, 0.27469649529383383, 0.175783368622124, -0.34421232471566204, -0.2574220028883646, 0.18085485411965327, 1.748141183630194, -0.18352413390858344, -1.980517718964005, -0.7561908890410886, -0.08438775836148957, 1.1445602830098298, -0.10425111409763842, 0.3834159580717022, -0.7739613358727896, -2.2391090116132033, 0.42182476428873156, 1.4693032971777298, -0.3588814697212248, 0.40138297011950963, 1.5097011753890668, -0.592187229957786, 0.9051390616079378, -1.654327270400931, -0.13190649258225923, 1.619373818146931, -1.1029945571214619, 1.2586581750236738, -0.5800538050682835, -0.04217144048219717, -0.774397408966529, 0.011204474286131512, -0.8229890193887806, -1.0978362180807044, -0.373381444733633, 0.23189674626885776, 1.361660250931054, 0.4534102857101359, -1.3048891129016338, -1.5706866584026145, 0.7250579803564087, -1.948724425714827, 1.306673168003312, -0.47437035193157756, -0.08786782988897415, -1.5597950383225876, 1.5070572919121115, 0.7133825493538928, -0.2385080052023491, 0.51133403842675, -1.4175341387334377, 1.0202090228246155, -0.28495586327767636, 1.7656381117244235, 1.263634946733999, -1.1643017649079657, -2.9163631295629138, -0.5355372208143419, -0.9814222524603284, -1.11410777769035, -0.35524130510997304, -0.7452530864928772, -0.04540060640213287, 0.5714456487170251, 0.544016828809633, 0.08939540741857355, -0.9125580634668706, 1.27146050375544, 0.6722542259741172, -0.24390820399274657, -1.3725198374339964, 1.0612376055708574, -0.4319582528175194, 1.968990949328865, -0.4124033590470993, 1.712756124518284, -0.6613261227870133, -0.24048975418551466, 0.7121248733155621, 0.04050353017964049, 0.7159465209594413, 2.278386453011943, 1.285849700081043, -1.4876644321008754, -1.2526176418092887, 0.39494221315808936, -1.5469783909737076, -0.9267592138952571, -0.832824918797208, 0.5010299358458487, -0.13902011464692574, 0.24869427311770148, -0.47127066187461686, 0.4552866382507907, -1.6042158581487325, 2.159719090762473, 0.17328978197251566, 0.12087847844040685, -0.18198047614124777, 0.5020546596729542, 0.8920700330278835, 0.3033570784251636, 1.53761125771426, 0.6430258008635985, 0.6504549694589198, -0.287877808617847, -0.23404706369680486, -1.5299093158344672, -2.1769306643378896, -0.2502233359102252, 0.01082679878273018, 0.5238641510102807, -1.6831911575851872, 0.04348897895298976, -0.47813923095255617, -1.6593979090202275, 0.5844444916771456, -0.40230682226097814, 0.18276656794526006, 0.2844883403678888, -1.3725565917246954, -0.4660125917290938, 0.9462696162041061, -2.003928432765068, -0.7532927693999015, -0.9185003607818341, 0.13162290434257787, 0.2691897979692507, 1.1219600292891296, 0.687200773700003, 1.4455946958308397, -1.7901443969523112, -0.08176850972990861, 1.197540247568831, 0.46240679092952247, 0.689546663081905, 1.3958644652615235, 0.2403098916196014, -0.17003273142686764, 0.6903640422228184, -0.8968606167732097, -1.130816246315339, -1.499016483928857, -0.10713674853665177, -0.07937609058947617, 0.5725084112596314, -0.27530936229048325, 0.07445526705411507, 0.5164924769990389, 0.5150195668702158, -0.9645892210550047, 0.4474371148101472, 0.8576917163114124, 0.13074371779712451, -0.3421940575352534, -1.050052609222396, -0.43384177487365655, 1.405694408024396, -0.40839047755541685, 1.1511083013999317, 0.37955152872128595, -1.1583102011048605, -1.0072503589235664, 1.1848794567560583, -0.21500908012025455, -0.4209603177717172, 1.1616136669841985, -0.17838673813283637, -1.0275035509926485, -0.8784454953006235, -2.248612766217221, 0.11249608706859807, -0.7345346240412356, 1.272927088023458, -1.3225202161754854, 0.7532321589346609, -2.5500301551210645, -0.5175873674297476, -0.4779562967801551, 2.300720293495093, 1.6279895591255813, 1.9125842773524377, 1.0879307021511755, -1.6979915939661843, -1.4033708245271066, -1.1821931656895488, 0.012975438441081916, 0.6699170044691919, -2.8728860090148145, -0.6971815436580578, -0.25289917178170845, -0.25313226955465584, 0.26235939315497625, 1.2881581014505483, 2.295158503242522, -3.4807067540157184, 0.532088157401349, -0.45365248551748133, 0.13367358235514062, 0.4697976948817229, -0.2676810818674978, 2.354179275830295, -1.0490507877092818, 0.13721998793292534, 1.2539583532603755, 0.664040000139444, 0.7513709879116321, -0.4047546143735929, 1.2812023432625999, -0.1217249248055015, -0.5103080454359872, 0.4184032899869109, -1.4752867387650574, 0.40152386362871395, -0.4944682714395263, 0.062159669733743414, 0.41305825318371175, -0.6326496959164022, 0.10251674857335369, 0.45540831239217766, -1.1926304234329175, -0.9266475452966794, -1.669391840986776, 0.7603529323303678, 1.371255430564102, -0.2200156446084827, 1.686537705370241, -1.4302031653201777, -0.2309654443161206, -1.7335297861315984, 0.3976238674247898, -2.7244642440093547, -0.12705995600528314, -1.7340594164472038, 0.16496905265911388, 0.4347511317486016, 1.8428182688965378, 1.1154432552671893, -1.1195889547324087, 0.6993869992339236, 0.35733161223278237, -0.9257143434409015, 0.6226157633212176, 1.0944458454809276, 0.25216555628162984, -0.30332212398021285, 0.004597463011939099, -0.006986768496848229, 0.34808752842830826, 0.09053199548826464, -0.3760726842723737, 0.31330248631173147, 0.7685524117746465, -1.234565287483247, -0.4208846091795923, -0.6192007199477294, 1.3336126407202902, 0.40803968118828476, -1.1152873591052441, 1.094737546968165, 0.26077197397938834, 0.09342733638795674, -1.2873997049841441, 1.3589864387645902, 0.024157860546535317, -0.5402640312512583, 0.3256183414999052, -0.9238532242337464, -0.5580647096421141, -0.9372609936528737, -0.8551176234690155, 2.1596041068122367, 1.0221841687133773, 0.6472320970018662, -0.7135802911510666, 0.2442299258678786, 0.976721891001257, -0.5470472501014628, -1.4495442178100189, -0.05642096744753429, 1.6619679412185824, 0.8812310774243037, -0.2816876516841563, 0.20403935617924168, 1.3142441868888648, -0.6184236158040304, 0.6350464808117795, 2.396934655524983, 0.30715332584100086, -0.37183124609956864, 1.3312434653015253, 0.5545862931920584, 0.397981169956125, 0.2355281057904245, 0.19481954380447436, -0.5424596343337404, 1.15873555390522, 0.6226669818282704, -1.619400615847495, -0.09243428891684123, -1.1024745716600541, 0.36395501992340507, 1.6133228162182078, -1.1677774780740946, 0.2849701205434264, -1.4653606747070351, 1.0473913300025197, 0.747378332763048, -0.10851240804569241, 0.5130190969333424, -1.5494194325938369, 0.0053150368715655935, -0.6231879781107443, -0.9090067717908628, -1.1703681587835821, -1.1770042028935561, -0.22391682104839467, -0.7855754286547796, -1.2580762610537692, -0.5748667411731323, -0.5402352124393567, 0.17623646261868411, -0.783671845277521, 0.40011078338362516, -1.6328141691761973, 2.122598248319319, 0.12159793655737051, -1.0990543158999435, 0.42492040813770743, 0.34940564007042485, -1.1953304936203912, -1.2399912524652197, 0.41422916988468833, -1.8846700972393644, -0.6183312638028501, 0.5964347818384822, 1.6085456763190658, 0.8153889590084458, -1.4120798928820162, -0.8956674871740223, -0.31719389357916045, 0.09512786490238208, 0.05736523685110956, 1.6487239799225328, -0.09595202337781662, 0.8246592148444178, 1.6425685039526274, 0.4637559847082532, -0.3066299908667213, 0.2353064273630975, 0.6483148459110273, -0.47797119919063885, 1.6142913542965336, 1.3873403953794659, -0.19695935908041293, 0.3883997994116945, 0.3773739249810578, 1.0824930688710535, -0.7611369117387706, 0.5973531334472594, 0.23254905271834667, 0.7427195316563983, -1.1768280170436767, -0.7457117148998497, -0.20845293274576662, 0.5549882898124685, -0.6205935418731275, -0.16714783991546317, -1.1794489874508587, -0.15762645384290108, 0.8432409706662408, 1.7997188284319419, 0.9802823531127689, -0.18103294886059673, -1.3308464757364586, -0.7844177202875156, -0.10557636363811829, -0.1562803085136968, 1.365727526848352, -0.19627444706244554, 0.5920795139407625, -0.3157649933080367, -1.0419670047592877, -0.9103573499983458, 0.6199485437407761, 0.4926849471113114, 1.616704857833848, -0.7844016513880083, 1.2653166284430843, -0.1085634547750052, -3.387424139079351, -0.008619484199631421, -0.7161226649114399, -0.0312969573889183, -0.44205273058831057, 0.9204458427004057, 1.2914690100948458, 2.2066164798674737, 2.0110530044146335, -0.7418340501382128, 0.9172958214828959, -0.9029667570164015, 1.4185388301693922, 0.18383253972533511, 0.18038865794354383, 1.8099002811440632, -0.7180182091712154, -0.458140279752622, 0.06473681529403602, 1.1588430777731722, 0.6007821446341316, 0.075822160637298, 1.5981173141898013, 0.5342604367610654, 1.0158162378177735, -0.026906901978992172, 2.062840641776888, 0.3882333162642201, 0.7344390305464576, 0.17659202707079957, 1.795599292970326, 0.24436399110099302, -0.8435079939622082, 0.14583342908173866, 0.08365837820135118, 0.3608271851318326, -1.3976264001873544, 0.780073482584075, 1.0924287490929878, -1.1251059939659909, -0.5120732271640239, 0.4205170770903042, 1.582247844082903, 0.1437862869641481, -0.4211821557299522, -1.2308324176873418, 0.35447679415941213, -2.5719491299232606, -0.727090798782428, -1.4473073807622105, -1.0050365633574758, 0.23997761205157656, 0.05446680771592889, -0.1656596953381556, -0.821942809015408, -0.7877762481771384, -0.016753110042580604, 0.31733002041044794, -0.9129830942414345, 0.026839129978514627, -1.4617571670974783, 0.5945529204245283, 0.7992020514884215, -2.152409730887693, 0.04463168019418467, 0.14627967436178826, 1.6783100910396476, -0.049460520681016515, -0.9054591059079795, 1.0215649492646532, 0.2205679924161342, 0.642688272919768, 0.6383797591684003, 0.2857369055333696, -0.04597382353453507, 1.2101024599517267, 1.1123952841625548, -0.26282769585629867, -0.8579685070793382, -0.5322758042874467, 0.05607580179305653, 0.5481793086031985, 1.4153492733670059, 0.8166278543244431, 1.2988292181661756, 0.34667716558693, -0.2810473124448176, -0.06882824794231363, 0.5215294475569632, 0.25939309616738176, 0.08897483602073303, -0.923090468064041, 0.43808440413665434, 0.9689018586472881, 0.21754717419223626, 0.9650007106521222, -1.752230803836997, -0.6471714350644623, 0.20051840768401774, 0.7024152153230986, -0.5151320500049252, -1.343051603555489, 0.343157346532737, -0.4229702004177261, 0.41757312115666145, -0.5176752886792632, 1.0799683040654584, -1.0696777469269427, -0.10835506113301158, -0.596443948058197, 0.6979162646001047, 0.32832123483352926, 1.0100700397777878, -2.847008940782084, -1.3037570825179639, 0.16671806963532104, -1.4230401022659955, 0.07474873899511508, 0.516392194123725, 1.038667888481637, 2.1732367543944866, 1.5138958856395435, -1.3804916626217343, 0.3815239797512686, -1.0426559862713707, 1.4367427580066716, 0.3761146223753744, 0.4862235770751784, 0.496202286815222, 0.3054409205160477, 0.7602144571276525, -1.2012146783611413, 0.8570046541153631, 0.2645552061549957, 0.33522085135669155, 0.6152097975633367, 1.8107980736527531, 0.540745748394337, -1.1348618031717783, -0.5045114247907999, 0.4014303998146477, -0.8441372092908733, -0.41445437221585285, 0.28459200848871935, 1.3590965755965445, -0.5904362292208766, 2.6784527775876885, -0.8980411200168757, -1.1221179273233006, -0.2917757896409241, 1.1811321428291743, 0.5832178565041126, 0.90494770767271, -0.3373338439510424, -0.8491227405589159, 0.11047969328816767, 0.06383453209387904, -0.665459745667008, -0.4660975501850926, -0.6241538423282417, -0.7934300256360745, -0.352639420883467, 0.019399760246047844, 0.46756191306823686, -0.08275874455216164, -0.03561853924766531, -0.041839168066788085, 1.0123772844301555, -0.7397922949187349, -0.5779283906326418, 0.47525530200681343, 1.4183162422286515, -0.7306137990589556, -0.5787719573679387, -0.6684399045421965, 1.117268652751493, 1.9237319724162611, 0.22387822303897234, 0.2718692883951202, 0.97541018258429, -0.58117820405961, -0.4934765891351456, -0.11678389246835724, 0.6415192191901864, 0.8143530699773925, -0.11902388106888553, -1.2029975149955041, 0.20367589105391148, 0.08321613567785324, -0.02941192004655385, 2.411585622650095, 0.32207251407958415, 0.4873073280111436, -1.0217169570297635, -0.48574388041668526, -2.542021903537106, -0.5117402364510323, 0.9538628735275325, -0.5544182343159157, 0.8590349483791878, -0.3459474153809894, -0.9485054895944385, 0.9015887596950865, 1.1499542016420707, -0.6947790984434992, 1.0448987968164989, 0.5311420636636267, -0.265873377226584, 0.03881635170402559, 0.6498599838004725, 0.7571589568029616, -0.426715791910377, -1.1363569227007593, 0.2494341344357304, -0.8228610042826203, 0.3157044790421899, 0.5647790807026669, 0.1594053930651053, -0.5961557385235914, 0.41741422099811726, 1.1531886443508481, 1.0770380983123164, 0.4760056592845023, 0.8248820078680842, 0.49303982060629925, 0.9796144402140449, -0.9577263471150244, 0.1938075255023537, -2.5211642866075854, -0.3372458646345844, 0.939082886857284, 0.856201690945762, -0.821684792865661, -0.8975403087938045, -0.17414231105262662, 0.08828006253607364, 0.5704198851265919, 0.8299609601847442, -1.1012183885866056, 0.7656020795281879, 0.7984032354137331, 1.4540264070576983, 0.37753943782797916, -1.4112398454183332, 1.5596251921505493, 0.24775765635586308, 0.3946300587982657, -0.8791988939276723, -0.10154053387587983, -2.036402634171827, 0.29906445999664, 0.004395559856413154, -0.6583616869235002, -0.4952348636333605, 1.636150898648027, 0.663996680946377, -0.43865388837036234, 0.6052109339833179, 0.8475476832467062, 0.07837026567273765, -0.36472996611338404, 1.0606294279493473, -0.5575265125403146, 0.8034188628307842, -2.05267451230336, 1.6062431784666749, -0.4713371504845505, -1.1036190337779366, 0.22080506032564262, 1.2581946610114094, -0.48528484230165636, 0.38731288418145615, 0.9639799152985483, 0.2121976941136733, 1.3211677084317943, 0.9537878563116569, -0.21658291504573662, 0.5698697535568508, -0.502493720573735, -0.4588102397178172, -1.0978431460141904, 0.11569077255646976, -2.696245510183626, 0.9265797446151365, 0.2749067026071376, -0.10596093164204602, -0.5571713392380847, 0.17337407802731977, -1.0213665697931973, -0.21696042765285595, -0.9446137526358285, -0.5343364765045381, -0.32157584529147415, 1.557514423768005, 0.44583678169264007, 0.6714598152990973, 1.7848018895491873, -0.308627520413539, 2.3466682798276333, -0.8717057792086933, 0.9234967447650351, -1.660356290895545, -0.02953366527430461, -0.1754113630720545, -0.9328357845644697, 0.9811779974099205, 0.01719825201568526, 0.9622633553933854, 0.7147208804709648, 0.8391956676073701, -0.7295219212919541, 1.0710754254715258, 1.0031777724593907, -0.9298177421577196, -0.0936035408245706, 0.039646066712185075, -0.4051434540312694, -0.23164800112714196, -0.7474380039548981, -0.1171643346159342, 0.5046619954998253, -0.4051646198020274, -1.0760173910040745, -0.3852293264653903, 0.1884715914647583, 1.2693521841277684, -0.42624208970947797, -0.1105568120943119, 0.43385592209270096, -0.5277318122286875, 0.009463196153904067, -1.4549117748852047, -0.06907276764263628, -1.440377415571535, -0.5499552913554135, 0.2194561375380907, -0.7416941416762292, -0.06535319849662703, 0.5643371719410298, 1.2939886878964642, -0.16150059137947884, 0.6072375818406298, -0.889355022966576, -1.2369665425763066, 0.6822139949220186, 0.2857800749997542, -0.014710873016536646, 1.2000881284719305, -0.9587020799818122, -0.07832640337543005, 0.15837185755684277, 1.3350831005163273, -0.18031374893069835, -0.7683717898910197, -0.018900305632614172, -1.2074601717334834, -1.1272485112444648, 0.04377655026808891, -0.46643963609257355, 0.10033118502962672, 1.8874266186040607, 2.3348175236180033, 1.4500391769897167, 0.3559375268975674, 0.5707666943298151, 0.20270207215746083, 1.1738444687542575, -0.20788145487342682, 2.173719150755761, -0.4791316337150658, -0.6026424332890588, 1.0546706098089806, 0.478749267409959, -0.7015159838868235, 0.0701176858063145, 0.15230400951496295, -0.47105192304868787, 0.2500126163696695, -1.948716915152076, 0.15460139358416197, 1.0030747461187708, 0.41295702874090345, 0.7621257497476623, -1.6864238978021058, -0.0540379150751114, 1.2567247126740535, 0.3809771641647728, 2.2269143988385665, 1.711620039673945, 1.2407500587652158, -0.4753064470682493, -0.5059878430860312, 0.9630276353000374, 1.47631863596529, 0.8498896778880738, -0.3190609902146388, 1.346538633787608, 0.7581878019466695, 0.45572296169634174, 0.7241340525423428, 0.618447406826624, 0.2448590225263904, -2.1199712471125123, 0.2380688449040548, -0.27748343258697705, -0.7791144618000466, 1.6196325844975643, 0.5977142845063005, 0.7948712132329685, -0.06830761194771127, -0.059411365256375005, -0.01990463723776269, -0.5926497330745993, 0.58355244262744, 1.7291299267853655, -0.36024444245975173, -0.01796472911925621, 0.8941566252085755, -0.8699044880253304, -0.1760376343752977, 0.5835401291436357, 0.6158894083265984, 0.311390245945805, -0.5379807297431409, 0.5867904867979149, -0.24625794831909573, 0.24189576999843254, -0.7659643219636377, 1.6964419968297728, -0.6905683955966184, -1.7442282957407433, -0.5588989374551627, 0.8636187060625056, 1.409934157720852, 0.9863506079627652, -0.6366793962325152, -1.0206006837983401, -1.2587658239329733, -0.22476140252331217, 0.7966177461459429, -0.692314691658147, -1.3268314384124633, 0.8115542835858693, -1.0665733880927262, 1.8483647379136185, -0.3363222318456003, 0.20150724301980094, 1.1733350173881874, 0.2420243859751112, 0.11713322696865545, 2.5858550625942622, 0.6130370487118074, 1.5167117260220304, 0.6481975174540557, -0.06740310378648622, 0.34068866712481194, -1.3105995690493109, -1.6581767944060484, 0.3281715068006004, 0.38026628135168744, 0.30826365634374464, -1.1321249085944491, -0.9593455136903873, -0.47460051766694583, 0.4033238186770366, 0.5459543444481867, -0.48689503229770925, 0.32206178264893615, 0.6489961634172077, -1.198982084191392, 0.22917524087711882, -0.31608998756821877, 0.17211418313461332, 0.951616833022303, 0.8013641245722147, 0.0448968727553031, -0.038577327935204436, -0.36082171291174325, 1.643634238030465, -0.47348570976322857, -0.7221139992153862, -1.6043365725102312, 0.5953035183391949, -0.2999717405828876, -1.052070083653899, 0.047528103111177035, -0.7209811183161638, -0.6888719143313761, 0.21534046370297827, 0.13808413414281068, -0.41766331036903287, -1.179516475664602, 0.9522486670503837, -0.14902843001547325, -0.3690712062708224, -1.3768807794799869, -1.968683268914259, 1.2959971470169853, -0.32100669583261277, -0.475767626496621, 0.4602786790702585, -0.7038655363805777, -1.0087441061961686, 1.333489276509969, 2.296624100503725, -0.6405516228547273, 1.5174677426481067, -0.9499463373598742, 1.7314816653428822, -1.48888606464839, -0.2797358705585661, 0.06577767803664848, -1.2453861039283411, -0.7715098057725446, -0.6289419782092938, -0.36380766293412836, 1.2248096505911088, -0.42485707112932203, -0.4341302702078829, -1.1735903815553308, 0.07220612326795248, -0.28205402263626145, 1.4408571745038812, -0.2864552794360395, -1.1133615048511605, -2.035020547652293, 0.10374367461296878, 0.15710734199073637, -1.3627947538572105, 0.5231579211991707, -0.22003738908763132, 0.12953902525984987, 0.220870302884111, -0.11047600584205657, -2.038941283742272, -1.8668562521991021, 1.1971434268115788, 0.5974145499309573, -0.10183621452377843, -0.43813334466512827, 0.48191201028269204, 0.9215666814997548, -0.09538463967352287, -1.9124983908642461, 0.46654462936839364, 0.8851917370383713, 0.9265722763150406, -1.2322238256990277, -0.40365937824755316, -0.09121503753113044, -0.3489642098644727, 0.37174453885828523, 0.3999789425717178, 0.4689762830519147, -0.49672234378767377, 1.3019763954699368, -0.5211749790124917, -2.265540919588313, 1.6868433652904578, -0.8791204881693967, 0.6991880455339929, 0.45438148502727627, 2.018055558991603, -0.44229271285029453, 0.07907084681468488, 0.4927523117646182, -0.9996566749657017, -0.34183832381300516, -0.4686438232284311, -0.7758461124511299, -0.4167049150346469, -1.3999183052292772, 0.9407837841561931, 0.03693543198767049, -0.5817017991319076, -0.9374508320417192, -1.310130498925925, -0.536580747461071, -0.2691329383590903, 0.43549074194256876, 0.5722153715926339, 0.6012541027704905, -0.600967495147593, 0.5283711482313915, 0.3673201043071507, 0.8358225786414459, 0.7962045370733204, 0.17515915704815876, -0.5117119185569934, -1.673407952709586, 0.45168961263389146, -0.004360805092658975, -0.9034486103782315, -0.5313466865581332, -0.28675966272994485, 1.2581425712197918, -0.9055439203346438, -0.5067337585968061, 0.8756702695201821, -0.818278278987969, -1.0803444472815702, 0.9477196280739382, -1.0228221655144987, -0.2431007906580177, -1.910124447032058, -0.3968730180392876, -0.44606176286791727, 0.15793718514248584, 0.917073323451566, 0.361894667650794, -0.984359228887263, 0.8620506466575404, 0.8001557004491855, 0.5877437927886282, -0.20835512807059683, 0.5395094617739012, 0.8100232093064667, 0.11085274527096452, 2.4015092379917573, -2.463682049266812, 0.5506663099935093, 0.8716759656239723, 0.01129084380158222, -0.3072930922903068, -0.16306877892123015, -0.3830211142092406, 0.17807334320957377, -0.6035877856046886, -1.288785077659137, 1.0487149044524369, 0.38962256453041255, 0.8803165385284765, 0.8127826475460465, -1.2697937359391538, 1.0919311908589577, 0.20571295363638187, 0.1453230961620294, -0.12645052675401192, 1.4499067401411843, -1.0570999007115214, -1.2321734883909987, 0.6820650803006325, 1.2545423580250439, 0.9296285447284645, 1.9361864214640057, -1.4274288544706228, -1.0546374301805346, -0.598825223854164, -0.11251270650520084, 2.0731299542207826, -0.39200704476181414, -0.8718310670383427, 1.4121067285164481, 1.3046032662194538, -0.4610675742155915, 2.187976011009604, -1.230628793863244, 0.32088337602406336, 1.0756955521391827, -0.34764652231167315, -0.4269386050902818, -0.08562414539367637, -2.4557928665410045, 1.560576337553026, -0.5512489852034594, 0.9271982497778926, 0.022606954318934534, 0.6998324699309567, 0.12530570595209656, -0.23565940975124214, 1.9682940934884956, -1.11377840139974, 1.1788280702951297, -0.8963881356000349, -0.34147354670055463, -0.17917803900627577, -0.04497279798458652, -0.29287448093782037, 0.8952702624532772, -0.7907309786102819, 1.1691415451962153, -1.2380580166751618, 0.06731364791060156, 0.21370202600513427, -1.6297706668766507, -1.4759665214246458, -0.0899817891055897, 0.3471779566002853, -0.792600125692017, -0.17907301458851543, 0.03820889720580324, 0.5283769436122316, 0.21267751654924383, 0.48675072953210075, 1.8392838092672077, 0.4163988406185979, -2.0071750547715324, -0.6287115222253862, -0.9636414040573796, 0.16583123234854893, 0.7645136855026737, 0.5690084206121976, 0.12259605968532819, -0.20416598448560516, -0.9444961355197762, -0.8577447286215036, -0.6866809220514305, -0.21278268949028065, -0.007692852136467465, 1.0188838328502547, 0.388466606584618, 0.012645323719476347, -0.5338913820550509, 0.8044421091513833, -1.4686774470829285, 2.695858843563744, -0.9773555094621168, -0.7895634881765506, -0.739868808105667, -0.49637480372484943, -1.0784199375160832, 1.3940967412711056, -0.8910298875411333, -0.6017555524981022, -1.5253890938999575, 0.6237993123236539, -0.5188788511378559, 0.0375275056444051, -0.6651950557977673, -1.4586487004895792, 0.3535184378053981, -0.25280561076583447, -1.1695864877717823, -1.5698659355783022, -0.2435022372346881, 1.2442273393102778, -0.012986552332409387, -0.42031633874232666, -0.7210408280100664, -1.9500085363779054, -0.8645697823958223, -0.6596996205902641, -2.8343562949999024, -0.6806733053494058, -1.5403834828431113, 0.8462994356924838, 0.9550365560802536, -0.9647087413268354, -0.10719837599188002, -0.17167676657367034, -0.9970071083388402, -1.1966925525151586, -1.3461213890251063, 1.4091463466884266, 0.08771871371311883, 0.996380358981107, -0.26829124106687774, 2.079815891374895, -0.1483656378573721, -0.4757115084494614, -1.4626159308011866, 0.32995887943422164, -0.3719583082831338, 0.7400153222287639, -0.03862315350898296, 1.6457419201697947, 0.7157518848625046, 0.21252064245336494, -0.49836976920960585, -2.2750256637094215, -0.006812349063146478, -1.5898696106497003, 0.9170377880830886, -1.6745856086956568, 0.005971632345247372, -1.0607592319024068, -1.2798380875606032, -0.5258245492041739, 0.875750080450129, -0.14439089876926262, 0.5904564693676291, -0.4035573696288839, -0.4725653430332975, 0.6868496110021979, -1.1768118661474951, -0.3907018207062512, 0.08669238284263547, 0.23432819370920566, 0.5830261671525858, -1.0405734052021636, 1.011465524819056, -1.3578046003948447, 0.029356723739458704, -0.7095096673017993, -1.2773273710246438, -1.4953807098369196, 1.832195526364767, -1.0579918112793443, 0.5756280531940344, 1.284264969264001, -1.4205760661191433, 0.1091356978031379, 0.1330148703200456, -0.9324488704502811, -0.45760348617543756, 1.4974396200436577, -0.2847733356636629, 0.6897920308725327, 0.49769650920136876, -0.10850489185257758, 0.3758819087628762, -0.1172573434756834, 0.956297273239151, 2.7422597406827256, -0.47164428925254104, -0.7136699596970731, -1.34072992485547, -0.3933721299957453, -0.8639105956669717, 0.07545347492603505, -0.8536045460560974, 0.5726588618846332, -1.262384853832078, 0.7733647909926639, 0.15059865268446893, -1.2515939855316902, -0.6174520700149493, -1.025256197712054, 1.1147414838360552, 0.5286655230380474, 1.5761053463463917, 0.14332136101004717, -1.0382173265165715, 0.1180886703755604, 1.3257453154066052, -0.8405424466617976, 0.8671229264461339, -0.48589416954284775, -0.6566137910741164, -0.395669863635808, 0.8277968973299801, 0.2351692810991142, -0.0108548849776105, 0.837764548255159, -1.923990449803856, -0.8475931770290513, -0.045683499728522994, -1.6475644516352956, -0.40933406248161086, 1.333315980418113, 0.4777739146176125, -1.508334580049226, -0.32994267266761484, -0.23916367487106363, 0.7455213837933256, -1.3583805006983054, 1.0649022697255868, -0.16180139600624976, 0.09291550137302701, 1.1747287109666111, -0.6460097685569409, 1.1754782180867707, 0.8518243100429412, -1.0999321773101656, 0.5026102260576771, -0.034876518492931934, -0.7445454165202048, -1.2254277940685308, 1.0262009225863955, -0.02037611403358382, 0.9979999413052022, 1.9100869624419232, -0.0217594932816749, 0.365614488794849, -0.8567839855906839, -0.0024796136699878485, 0.5574354159530084, -0.8498661384266517, 1.9328683240097044, -0.00017695365432541775, 0.4824615886464822, -0.5653049589851262, -0.19729998505589114, 0.5067957909130874, 1.437259071260804, 0.23892363398495944, -1.0492867790755045, 0.1895628812147291, -1.1535182162655084, -0.048016169503003275, 0.34888625236039383, -1.3240435778904664, -0.7385181420905125, -0.3792194776503094, 0.43147269577387765, 0.4880484501745866, 1.0834841117202823, -0.1781285534547163, -0.14084058375968464, 0.8117707575012312, -1.014554059832535, 1.2128473916862224, -0.5016596975974846, 0.4471428989137999, -2.9293237045437865, 1.6715393645536134, 0.5280621245013346, -0.010745111298090226, -0.14714137993736562, -1.2763701534643785, 0.6146403688254691, 0.36060912671777784, 0.5552755163318175, 1.5832637326581462, 2.2062863032947106, -0.9585162052995667, 2.211872380484512, 1.7968292787202031, -0.29665781493596544, 0.4069021127925392, -0.6219314643943569, -1.4406158798736748, -0.1988823259721406, 0.038944109914429384, 0.02788627323452229, -1.0599614524506147, 0.3969766378530446, -0.06041971801824421, 1.9472978921588573, -0.6735284927745878, 0.24382839474160348, -0.013897317936064066, 0.8982034522738773, 0.7961782412040296, 0.6292487087000788, -1.2364350461475686, 1.4708253274058165, 0.4695631694718463, -0.7269882136258525, 1.8589911038925897, 0.8928092103541887, 2.46877164069728, -0.8280837851903, -0.2910572349428435, -1.3084156977738335, -2.1944790014832605, -1.5204970962086768, 1.1992348349881834, -0.154181990113532, -0.6666087353137604, 2.158643182658205, 0.45999012883882934, 0.43132575423966035, -1.0209975737402819, 1.333316322684436, 0.942606455693637, -0.2663152123522389, -0.3000733640999946, 0.8970917023308675, 2.135851738860743, 1.728335368225535, -1.4734360297152531, 1.0534627562273597, 0.5211615827736484, -1.0785046720028615, 0.5796619385682492, -0.5469181003328163, 0.18960565021798642, 2.1094545312933177, -1.1378884891987646, -0.23994580870397028, 1.5459921493951245, -0.984650450273437, 0.7993184683026686, 2.107406884079721, 0.47701705300446107, 0.9858222651406676, 1.5812395399179036, 0.4471051361423633, -0.9485678288473073, 0.49525706755106236, -0.6153096913726952, 0.8996049286246317, 0.6240038250468526, 0.37431848101783005, 0.1301712770576124, 0.46569032660226567, -0.23619872637815156, 0.3073402127011679, 1.2110295709777916, 0.6874060116835754, 0.38176322367150795, 1.243219622861879, 0.5707348512020599, -0.04007334524922637, -0.17412955205814015, 0.2311237464228629, 1.7021691280387505, 0.5374762070395374, 0.05680770647631778, -1.1647673569786483, -1.0711370800960227, -0.762998780096422, 1.7966980876546579, -0.27163581339107246, 0.3722027384026974, 0.20699407813331, -0.0632358306813083, 0.3250926225795116, 0.8320203375504199, -1.1973928347010907, -1.5927666483006733, -0.1275702632325103, -0.6836324862780206, 2.1606398388955785, -1.63106682582291, -0.153296478457905, 0.8453087388093086, 0.6193970502700725, -0.37963140955514035, -1.2112892671650477, -1.468855201581975, -0.9838677896790978, 1.0266673558116162, -0.1173031605030938, -0.31000392775569896, -0.43487278798487977, -0.17252464753465713, -1.141063482933617, 0.11204584489917026, -0.4939922870173411, 0.5416682334523645, -1.1517317494303445, 0.5912153046040692, -0.15117870682803963, 0.3591227504177283, -0.2341046473580907, 0.6779590827326217, -0.7883403560067209, 0.7606692167850384, -0.46642661597074314, -0.9677446331115196, 0.6723599544689208, 1.3050239087127447, 0.0849329692424158, 2.1160904448453914, 0.4787858240238789, 0.6973089358433523, -0.35414011600191764, 0.15854039316074126, -0.559023429394053, -0.45332342519836505, -0.18132282866929417, 0.6249331029447063, 2.0400542362118843, 0.9567248048588244, -0.22531930584467255, 0.5380185286126763, 0.5417742282279554, 0.5427800874810561, -0.026267693332009023, -0.11480265167054585, -0.6811268087702413, -0.5000072437825712, -1.6126296681073187, -1.7195519007682534, -1.600215226364227, 0.8191970226338704, 1.0174158594889917, -0.4105299510868407, -0.13864430747847153, 1.2977779852708755, -1.453341389830681, -0.13183956169419989, -0.05817996667479403, 2.123422461905795, 0.3665242534436327, 1.238313700593486, -0.24534019073248922, -0.3501108141059798, 2.048458342039021, 1.3027852452103055, 0.06704232487162688, -0.9775484828119482, 0.7019312805638271, 2.7716033506730446, -1.7942585748411946, 0.09499843809016031, 0.23721876641303088, -1.5767803643353897, 0.7075205706234861, -1.0682360726745443, -0.19089313783251877, 2.656220372717499, 1.2996155097565139, -0.7395773187534089, 1.5474311400234495, 0.4577675591530607, -0.8661995985003106, 0.9767177353623882, -0.15003279316670567, 0.21168516801667306, -1.7956600705044568, 1.3315555107614983, 1.8002916260194681, -0.3266021190214545, -0.9186915268391705, 0.40138327227033366, 0.13986790542597405, 2.5269921647336338, -0.525599540213968, 1.5882842648753908, -0.3525709481488638, 0.39032416919512025, -0.4367380974179508, -0.6568501488629381, 0.7771937830467537, -1.542116615079835, -0.22689651188537086, 0.2563320625637546, -1.5975396036238554, -1.209071325939612, -1.0937068232127956, 1.0166284499833398, 0.2127200795253699, 1.1121627087491037, -0.029140838548738657, 1.0870509543288855, -0.2881480820597395, -1.4344930068694464, 0.8175804011317057, 0.9110595672024484, -0.4432851635539836, -1.2307304776447274, -0.47045111385976224, 0.11957102674000104, 0.16660135711083562, 0.5688740044106216, -1.4093214214523209, 1.3032299547882733, -0.7508105479692531, -0.648712138168366, 0.6595787799651632, -1.116926461541832, 0.11514900906044748, 0.8503485093622336, -0.10702778831027751, 0.710404402658976, -1.23452372211835, 0.3286369612330065, -0.42521850067214134, 1.1063394214549753, 1.4755663702847346, 1.3701448161302219, -0.7332097588945927, 0.6452969344354866, -0.846003470149711, 1.9810942152749071, -0.6842386006532727, -0.3343151903222282, -0.0002755854929979209, -0.7606188607629208, -0.10786491386288846, -0.6614074101371759, -0.13055156999521006, -0.520535508051899, -1.2819943488881467, 0.2068456137022481, 0.4542894133757793, 1.3513225844812817, 0.07649652664927094, 0.14400930543302, -1.8780728712076749, 0.2251083931128838, -0.1305324764569704, -0.08036946717348782, -1.408631105110666, -0.029118965223792162, 0.29613541070304183, -1.647880054372438, 0.9890470501389665, -0.03629887721634474, 0.32548428384401934, 1.7750513673985193, 1.1721888126023836, 0.4942423738222838, -0.15277889418041937, 1.5626220601931937, 0.11214641789969253, 0.7230421618955902, 0.7101700278432277, -2.053942470897045, -0.2332354841242225, -0.24738751314263333, -1.0607062582041982, -1.5135096748953132, 1.6582156201481835, -0.38985799928561976, 0.460595315883418, 0.2763143197506115, -0.9496840002421811, -0.26255332218834043, 0.6484387572830724, -1.7701816417409602, -1.3709520057321725, -0.5297476874981939, 0.8074503662437625, -0.3834042337661834, 0.2534491786679271, 0.5348199465945961, -0.03552051512449938, 0.016653065891389787, -0.419901210410007, -0.12658473994192612, 0.022289186930852835, -1.3671596970756372, -0.9975477499066183, 0.07799389362354453, -0.1717187884673888, -0.654277495260585, -1.1284590789534266, -0.04534554180584363, -1.8520081096674423, -0.9206211439347997, 0.6133380653772729, -1.0146021649563288, -0.6658495466375581, 2.045394418173841, 0.03816080151389926, 0.5226923783754125, 2.4089230138988413, 0.17627965832152434, 0.7509998939955779, -1.5414787754973414, -0.7222561483578226, -0.6450142381718386, 0.3748167668624967, 0.9846316860168137, -0.34159819194416924, -1.44829960589452, 0.2352262072444966, 0.4064599703053585, -1.3605062643180772, 1.8110223311282456, 0.8048187661391704, 1.094664220512047, 0.4378625217784586, 0.43248730772318056, -0.3851646857362779, -1.030100536554305, -0.43988668348752247, -0.2679414898276325, 0.8197539634627464, 1.8823952024589536, 0.30069454444918436, -1.844251237888611, 0.6547054683759117, -0.2011707348646675, 0.27619795026431954, 0.2951356234397522, 0.09414340420031543, -1.4318493731309532, -1.3986949819939918, 0.004579144684858236, -1.9934328573392222, 1.7589054812252125, -3.0686371347809542, 1.2789506424329384, 0.1798231621305011, 0.4394266141643216, -0.9740485164674855, 0.10495633037990014, 1.1229726843233307, 0.6454807016776375, 0.4025689732943919, -1.844507521010784, 2.651261339387487, 0.5433358086485035, 1.6614512942323962, -0.22588789342648036, 2.0508518091879857, 0.6146110908430118, 0.2295068549145563, 1.325260570706139, -2.0795216626626187, 1.1161962007452932, -0.12093260112202207, 1.9229156829044634, -1.014134830611118, 0.8270983287951482, -1.0528677998792626, -1.5133883622024529, -1.8363264227082676, 0.6985528224362076, 0.5503714173830504, 1.4730085427239772, 0.9530294900676596, 1.5216745729753967, 1.6838241977338055, 1.93470718795808, 0.7618815783619158, 0.2644539930267742, -0.4260147268183443, 1.5424180854213643, 0.008359027997551309, -1.2370843674398824, -0.3399959689465887, -0.007343032907990664, 0.20841918294142148, 1.1648447620110765, 2.0315792685640877, -0.9989120811484294, 1.3768498550506125, -0.2573147325664606, -0.9413394309923812, -0.002370832087871753, -0.4452304825877638, 0.5776466517997794, 0.7321955448670566, 1.9674820390303533, 1.5491714435506376, 1.7184755496784898, -0.3717184043423195, 1.2198359009914592, 0.4807515133287147, 1.371014333074856, -1.269289667473997, -0.7410438975931398, 1.5248592773831942, -3.2097009464699084, -0.30987738849323887, -0.366854299210352, -0.31480744670854477, -1.4227931285890754, 0.09083993837133536, 1.578465910788713, 0.9036159572066886, -0.300799208323081, -0.6561685033813407, 1.6479452901280016, 0.09838266813837598, -1.0908685374334541, -0.5719184205931728, 0.5439521298933043, -0.08992380910610674, -0.33752452774181796, -0.014581033084212207, -1.0983457160749435, 2.5709521981891275, -0.9656226279010602, -1.439332245910216, 0.024337866011926546, 1.9555569901853385, 1.6534773328853054, 0.7223286062333467, -1.2827840915650546, -0.9260190667434506, -0.17118153515473677, 0.32524411021770616, 0.5285528407516108, -0.6687059421925339, 0.395929837148586, 0.824858127995915, 0.7531462307085917, 0.3486304509811561, 0.5757204249429959, -1.713027256199702, 0.41875967370926986, 0.3743956149934496, -0.954561777950009, 0.9097494108893305, 0.4253847463341627, 0.25187935183593924, -0.02906882360820052, -1.0527558359258349, 0.35019174358124655, -0.17929058861952502, 0.5893919610699938, 0.2970446408365739, -1.6929847079519018, -0.7231605929721698, 0.5589647591007635, -1.1730487364830984, -0.7977932959626702, -1.0538518966672565, 1.2175758793880247, 0.7287363984116374, 0.11528780180294171, 0.9196770561774341, 0.4010420336642081, -0.3106943572188784, -0.6809450069020518, -0.36774463476930364, 0.5720135412675612, 0.20334028175076424, 0.372059612958761, 0.70340023460635, 0.9806214830114751, 1.215048759985891, 1.8184096877551177, 0.18783287633102083, 0.2997714224497493, -0.08779683325675651, 0.10493939020250448, 0.5627582795488607, 1.3347977669053346, 0.11503999005317829, -0.9154204301521512, -0.3912798128285562, 1.1337948350651514, -1.451857722729836, 0.005720576979653783, -0.3089775480137556, 0.08223961019868671, -0.3571088435049348, 0.5801123803505478, 0.8879960701600084, -0.03286141329482354, -0.6494122396725281, 0.8275803406365608, 0.6428459985184394, -0.5589198594998538, 2.9987657513650174, -1.0230823099695874, 1.490105442167763, 0.9420330701142081, -0.8226883897718499, -1.8195709595092857, -0.8525327658151964, 1.0897659056440283, -0.43385515412104897, -0.9059812972456485, 0.18539785139112588, 1.2923184831154022, -0.40825916621315345, 0.5294357924407974, 0.8583862395550426, -0.2716857827121135, 0.2037767102836746, -0.9873468489264826, -0.7212605040574176, -0.9308308499405742, 0.1334284974994905, -1.5367201527264855, -0.49361877850633773, -1.9274773441008635, 0.2228421988809698, -0.7302116280751787, 0.3437178287976101, -0.48487269914977166, 0.35464219312871514, -1.9528105679831753, 1.4256071717729903, -0.5586638712855917, -1.507182899247954, -0.7298622203139629, 2.165588663098893, -0.0508998915788348, -0.939364834556662, -0.23280621351758718, 0.30762069138452797, 0.7658039878385475, -0.1232525106304924, -0.06235839947099103, 0.6530841448049777, -0.1805194923463071, 0.9273161844057625, -0.06927765684009896, -0.15500218117861023, -0.6450731796543182, 0.8786605379220547, 0.7872852267761298, -0.7563613469360003, -0.3409339460371408, -0.27973545126667126, -2.117674525473193, -0.2989460305015914, 1.0032632492475835, -0.24048189465892558, -0.41898696983432526, 0.6273763903862283, 0.4788408583328336, 0.44410289096734695, -0.4261536634148283, -1.155667931085322, -0.8307415204541613, 1.3860892190904759, -0.2901715700380276, 1.9459466748956205, 0.0626576806320765, -0.8551151224507615, -0.26467515149477855, 0.13603112413446275, 0.5885128775460093, -1.2839755372066655, -2.613818982749408, -1.75996933953182, 0.8512362823218019, 0.6172727918973124, -0.5678931545457467, 0.8697019999756933, -0.3985073482798452, -0.37798457848733596, -0.08897700383511199, -0.4218643191147904, 0.2479733837596221, 0.3140835949521267, -0.8267530353968596, 1.6236615784059036, 0.9466398263011426, 0.44182879018988913, 1.2425417276552506, 0.0425809917871625, 0.8387839926244537, -0.7929023752562109, 1.38378347218493, -1.6996998828593295, -0.21816200837535307, 2.3746369977322552, 0.8616911840036391, -0.733601437244873, -0.11040726136872787, 0.35834346360079455, -0.2546430056175178, 0.52951144676799, 1.9402893470827505, 0.16235875836133348, -1.3655894332582452, -0.6449736797901812, -0.7584885237113796, 0.5982910059372983, 0.8592249021800257, -1.1996209669948898, -0.8028031473202193, -0.8921017523813096, -0.7375245778336126, 0.22448881405018029, -0.09789988311517388, -0.2886701870139841, -0.756774843363675, -0.33012097073941615, -1.295080779291059, 1.2826734521489402, 0.009626235218109692, 0.8726029490595321, 0.6604292481061522, 0.014346245050808499, -0.741204851990334, -1.1645964763293024, -1.1804189988291152, 0.5072208413926691, -2.0685366257870266, 0.27482652137034735, 0.9453072547880529, 1.7088799289884828, 0.569780652407089, -1.56465279323798, 1.2708588660470244, 1.1813468811195877, -1.1771257352336124, -0.6926693537860894, 0.8157447466039358, 0.8064525980116237, 0.4527254591179341, -0.17933515541996395, 0.8500449403647214, 1.0154471013353925, -0.2369196444543029, 0.19194722048908747, 1.064265696943058, 0.7783996736014979, -0.5077324940484076, -0.4317519864628207, 1.5319852373968403, 1.2552001744760537, -1.1590982650539612, 0.5487664594180998, 0.44092029850864695, 0.9421143717322329, -0.8544640243396858, -1.6618313592455776, -0.8143933040992057, -2.0242550407268145, -1.9125215582505721, -0.19120763359240153, -0.813887360314256, 1.635308931922854, 1.0726545582113252, -0.291069793047108, -2.2741761041800763, -0.418588103824228, 1.0125118775722919, -1.439973209245152, -0.08655241062540865, -0.5686688158887538, 1.7288984860731107, 1.3215604302958892, -0.8490262224951839, 1.8490214062716155, 1.0378689313666736, -0.4307492647148826, 1.3367923888740862, -0.4391618918936486, -0.7082130398298672, 0.0380880586355485, 0.5633767821396057, 0.11017886935841861, -0.019201787738618317, 0.5650904895966532, -0.8249504613319789, 1.9289879282838014, 2.56682158565851, -0.5813737610587636, -0.4141863454547693, 0.31055783051109825, -0.6622905199354431, -0.3770636013676981, 0.6796035504302201, -0.9243127362886961, -0.45268090369527814, -0.8813938542721457, 0.5497219691270505, 0.6771247004208389, -0.20718620398311927, -2.093232090179712, -1.5472240005523432, -0.837368855080293, 0.40912590422083295, -1.9915998867151004, -0.18147498413653917, -0.154163285238421, 0.9003597152265651, 0.8773376132350685, 0.8349609816854415, 2.2322897094465657, 0.9188219845238491, 0.7179391379635385, -0.38152999707736657, -0.7784720492011572, -0.2865474041917633, -1.330451274708784, -0.754279953723682, -0.6750883668534187, -0.4746222300410504, 0.15422385362623758, -0.0010630839428253536, 0.4627641093102388, 0.6032405052209001, -0.22726302714955945, 2.1261106490224098, 1.6518984499800253, 0.41338062831519157, -0.8248745685492783, 1.1792215369465215, 1.6782339773180095, 0.3861910716907334, 0.6207205241108541, 0.7120063006276993, 0.10687547604275732, -0.10062178591168251, -0.057143722486585606, -0.8607514483516562, -0.3905241438373286, 0.08170643832936204, -0.48064470840414214, -1.328549085152898, -0.855872247494855, -0.9561702327319835, -1.1397895369331206, -0.9875498059989544, -1.3344837033275219, 0.594210213247672, 1.9927711002751096, -0.1875000186805135, -1.1524550956782749, 0.007532105988317659, -0.6528579116857895, 0.8542534763909382, 0.43829637519733733, 2.3829242191079705, 0.09137658703745659, 1.653287633939816, -1.4492812716725807, -1.137188014275103, -1.6792718402890507, 0.9780087351051162, 0.20309277255434177, -1.4004389675437692, 1.9063465339957468, 0.21196642468108795, 0.2975783047257977, 0.4638329234815331, 1.6248104801100138, -0.3356583520046109, 1.1690888855246842, 1.2863276829452928, 0.04274988160934344, -1.5448505078314194, -0.4819006069078299, 0.4794277368506047, 0.39024624042907996, 2.279721991138183, 0.40028567690761785, 0.7359024474530013, 0.05768506909842982, -0.8232853257976442, -2.818805924077322, 0.08552235691481459, 0.6272554763459111, 0.24440639735838826, 0.9870399794216966, 0.2789535945110442, -2.914597408002731, 1.19949646495425, 0.26218692340876026, 0.3300114016656179, -0.49590229238058187, 0.5003459869609079, -1.4791943105262328, -1.0289718552101916, 0.8791373538400353, 0.7736493249424922, 2.212277051145939, -0.923703684726817, -0.467587204089436, -0.17725979155099614, -0.09074799485561616, -0.5484179601563923, -1.134087758008081, -0.004216864533793337, -1.2411452814295414, -1.4223438078413186, -1.5589141027250435, -2.3076334140282397, -0.6976245438372028, -0.13897026041093213, -0.04888036737718634, 0.464401155531799, 0.9669078896299167, 0.9128993511927165, 1.1718818661921064, 0.4419018741518544, 2.24822292325515, -0.4789211760636293, 1.57152222743357, -1.18004254635, -0.5091080547038271, 0.4608205245170189, -0.7219446447809563, 1.120393765081478, 0.1883962982909509, -1.077620037336811, 0.8919903525203139, 0.4955160292368755, 0.35676377720760216, -0.10842071310145002, -1.0837058352686577, -1.164132422333594, 1.0492984521374815, -0.4099780385471466, -0.46496929204179915, 0.011412929378130736, 0.7985443872477912, 0.6400274711348451, 0.7088265472831614, 0.42483238616520885, -0.41580895981654836, -0.570655129904867, -1.0561168510153158, 1.1637650366126482, -0.5363676808648564, -0.8451386561826497, -0.7644657109417792, -2.266975135598118, -1.9070948945242894, -0.8323322716959016, -0.6608238129473004, 2.0307637086922443, 0.19735876353838078, 1.4283209968913146, 1.0167487807328905, 0.3965324176391317, -0.5132002287937598, -1.1826036803689155, -0.5229206871274292, 0.1416919106502003, 0.835185570727311, 0.3857604645722501, 0.22642542678211458, 0.6231773057931903, 0.7484967337716858, 0.03619847465560136, 0.16125824270236058, -0.7251262951660145, 0.8013694415945826, -1.347152774070484, 1.2377814371626517, 0.07561699311503865, -0.23821075750135492, 1.5697127407356433, 1.226539096644746, -0.5985801969055098, 0.05958808030464332, 0.30793424585306706, 0.3918527627280269, 0.5336923306736783, 1.106305614057339, 1.1404128453490063, 0.7183008970645146, 1.2299955124212574, -0.5282655831405174, -0.4487312296432611, -0.43436041455625096, -0.27864602899937513, 0.11092481986623384, -1.0060756936959763, -0.6839219008843154, -0.2317206340261024, 1.1109687913812658, -1.1874042027245546, -0.7226155315940336, -0.019173713118719453, 0.15668795057224988, 0.4878328200729289, 2.4809459812312036, -1.8274056048523304, 0.03105388042089993, 0.47396592375076985, -0.148067705041091, -0.6586833953086113, -0.34233553569106034, -0.12214599194091243, 0.6903438675266349, 1.2096438177046933, 0.7067703281588348, 2.2595952016689203, 1.3824636110039674, -1.344176531892316, 0.19549910981231577, -0.7916375293626913, 2.1355841316961226, -0.8201082242743336, -0.744803875539534, 1.2229091799656666, -1.0520765545526594, -0.18191683061689334, -1.7710023954403717, 0.9468366869842079, -0.3024002238829451, -1.4334746256229818, 1.2528306213847922, 0.6170188333581533, -0.598887887874882, -0.3507855614948278, -0.5595112411211272, 0.7274892734901739, 0.6520865982180644, -1.1820066288838627, 0.9805920475332754, 0.1614029454598032, 1.0874143149450817, -1.2135798266325415, 1.8923772450737224, -0.20604371009433134, -0.733676796732725, 0.055622996161994155, -0.6492112963022149, 0.01457072527921487, 1.7367187895501315, -0.11248737620774871, 0.34443429494091915, 0.026397065400490846, 1.7194156400906646, -0.9153069234912169, -1.4301522348273057, -1.1060891266704733, 1.2603131137052397, -0.18413349011920307, -0.8064838384723042, 0.9961612457588955, -0.8035372484835959, 1.6630570375865532, -0.7579205181210678, -0.12225884732452906, -0.2678865779975581, -1.4748404804917479, 0.2576416399516768, 1.0634800986467399, 0.11868067994294479, 0.8936516316401858, -0.21728491863787822, 2.0089065047227126, -0.32036689651105854, -1.281128590220537, -0.901495229775036, -2.330465866749248, 0.43165264594170005, -1.7558635845230979, 0.525955357386901, 0.2354418573149332, -0.5209460770007677, 1.648292186775374, -0.06236807580739107, -0.26703758743312467, 0.5230510909613058, -0.30895226883398497, 0.006560292154731582, -0.8551263910973195, 1.0538577245972245, 1.6742548093372365, 0.36185129869656874, 1.5859584112870366, -0.33082941753102635, 0.29086149071628836, 0.7018749385693909, 0.14196200072095105, -1.356761733100888, -0.7612764576065982, -0.8959709733462452, 0.32510231312017546, 0.2351779797372991, 1.6062301792474099, -0.17357770109509768, 0.9356425522780936, -1.0591754721537658, -2.3049825914558504, 0.19673258426003506, 1.6983248329138032, 1.0762756975870045, 1.7614901537261356, 0.48538106795707325, 0.6989040199778563, -0.5799572737553064, 0.1706704671949135, -0.2888933218266299, -1.0810258500369778, 0.03638712576852789, -0.4402726493513669, 1.0365684150928631, 0.7673491527300222, 0.38481429734642036, 0.02682182249876028, 0.5736236089168192, 0.10655877434246817, -1.1506735031364632, 0.4332949463631862, 1.4337505789216354, -1.320544485251653, -0.288150352378816, 0.6591121725988831, -0.9871849962433914, -0.8279767288645904, -0.10531912429560372, 0.119132165794776, -1.4539010865993318, 1.4310128601833942, -1.2778708247646777, 0.3902860004487951, 0.9822076419281672, -0.9224357680687008, 0.0452157777620655, -0.5366268321402715, -0.9315384890542292, 2.169035730378957, 0.7546767764346062, -0.6446299446597158, -0.8475118900450587, 0.6863146544610403, -0.626590427592991, -0.4027314327724437, 0.36045039106113247, 0.019857038533954565, 0.8790543106921436, -1.4749129727655153, -1.492379620268202, 0.8261540163732817, 0.6367114496715122, 0.9527204556667679, 0.6309017139480678, -0.3203962366067007, 1.044902435375296, -1.6396160872406698, -1.8502641185062831, -0.6511959515296962, 0.07214060329176225, 1.3421485144634189, -0.2917004801405768, -0.09968929733251276, 0.10844056074955705, 0.12973639332256362, 1.1555203965542193, -0.7829935971080088, -0.28870530143479417, 0.7605761554169397, -0.20258406245986854, 1.5289569824353864, -1.0681328966620192, -0.5025441055001189, -1.150278116421679, 0.1712632994932958, -0.3860847365288154, -0.9081844309251084, 1.2956764703003874, -1.9804137744788084, 1.2244482989859677, -0.9787886043780576, -1.1197933406965712, 0.36621367189392295, 0.7837459422622769, 0.40208343333830593, 0.06939161356172663, 1.8234037850143239, 0.26744120849226577, 0.47185562731640046, 1.3972849835543901, 0.40831671137941783, 2.2228732497450223, -0.5986686455275407, -0.6902267727005538, -0.33773566380814035, -0.7830074713369486, 1.51625432929574, 0.8157081111340245, -0.6272397123092601, -0.4237735716896356, -1.3737104774109805, -0.8627539943576927, -0.8566611823409832, -0.027776394892595816, -1.1148291440797125, -0.8447356178146848, 2.723770455031571, 1.3739092647368225, -0.8848345994029146, -0.6675460407662392, -1.3657113554551379, -1.8928160320140952, 1.024597186751836, 0.8998189815976304, 0.40647267995196623, 1.0918084209660828, -0.09501352624951616, -0.6691132301010044, -2.1877871060132015, 0.17970744056981688, 0.24250416008736314, 1.0590468258833587, 0.4910855466878292, -1.049611756821651, -1.6979963708457786, -1.3950643913302507, 2.6928212720541094, 1.8839704094602086, 1.4977727110827954, -2.0419262882207545, 0.3831797787840558, -2.422274931088045, 2.241165946262961, 1.9307501313923998, -0.046378513637089586, -0.23254695188312827, 0.512351226879702, -0.31774593249438526, -1.0803582345934917, -1.1844338232715226, -1.2058219625094437, -0.46784226549863184, -0.8868128393264911, 2.4429946315023363, 0.3126794552214827, -2.758142107155309, -0.152776757376896, -1.0326302109401062, 2.090801837221774, 0.9052515414417998, -0.4835524700250161, 0.9194882360008131, -0.0836439182060326, -0.01044565280268968, 0.35665910036526904, 1.4549199684706384, 0.8030687252224106, 1.491803790640849, 0.5569124342629058, 1.75135716198108, 0.2006582356366852, 0.0439914750045194, -1.0964729295752886, -0.6917233043441816, 0.6153199010261692, 0.8832872173281893, -0.1250675082290604, -0.3889726924491184, -0.8228327128410338, 1.328251586946697, 0.161529391958742, 0.4815305499870505, -0.9646421625405437, 0.26560518447428455, 1.1524149283956173, 0.7709264154531539, 0.2751110299539955, 1.4841785647390178, 0.23185242063735623, 1.4827381478628114, 1.3816254172059848, -0.3818192209838532, 0.18206965220666646, -0.1606100874914697, 0.28237915471506064, 0.06896241598937898, -0.7402296786162884, -0.5554744373463392, -0.9985817100108216, -0.5599264960746441, 0.24149844691668051, -1.326977626706945, -0.7048337931085438, -1.4021693515004447, -0.8235353867980838, 0.30366893235731585, -0.5531808984599511, -0.6684265803608719, -1.532950847478798, -1.5195139610471264, -1.1640800171935397, -0.6696645831780551, -0.10163550164020989, 0.9171425724067568, -0.7819471520827653, 0.40954360298174997, -0.7713352904251554, 0.11877377710919225, -0.26423093975568734, 0.49901765466392184, 1.2989129131409012, 0.4482811905233562, -1.123587319620537, -0.38492643652125386, 0.24529231621787143, 0.8393694566509897, -0.18172199930993485, 0.027977168698075126, -0.8004738488606661, -0.3953001624974761, -1.2842077296927492, -0.5755231934797748, 0.27048039810839153, 0.859807205200446, 0.7348895465575107, 1.2453420432165567, 0.7598999225320557, -0.5751825426651078, 0.6188090781440828, -0.7365139124626321, -0.17288466797443192, 0.06221427791583751, 0.8524768776442617, -1.010088637250301, -2.2063009128617312, -1.0877854995586898, -0.9969991437211596, -0.19685943342756312, -0.8759859176922037, -0.2200851903440041, -1.0713627876194614, -1.9867421751411385, -1.2024079403191468, 0.49851176341353787, -1.366286986071537, 0.8067296495787614, -1.219946525590273, 0.07393869465525033, 0.4801889163798067, 0.4579146172128827, -0.7910562140166938, 0.07366812038953459, 0.6251729525451222, -0.29876011357075927, 0.6131439300579521, 0.38297671971995856, 2.5715003492608606, -2.3567323720048767, -1.6187842825950836, 0.9677679036463492, 2.5821895263647408, 0.5280315461843346, -0.183209227990535, -0.5920519416349987, 0.0712806172627963, 0.42503355333212, -0.11133630640677325, 0.94847844920241, -0.9508206214559847, 0.33039304206249875, 0.9759558125110476, 1.1233782108981054, -0.7794363518631636, 0.799665803959668, 1.3136243936958296, 0.9738117442110596, -1.0090836874471412, 1.0067281905396048, 0.946858413169313, -0.1990447580012412, 0.5799746223833174, 0.8782597874799777, 1.4324201533383916, -0.684094713905356, 0.8600149879311791, 1.7090132663004733, -0.22584453058231532, -1.1084794467160406, 0.7307264447365054, 0.3155880003125001, 1.0735886079916188, -0.2279821950821089, 2.5176131644155695, -0.7933122399525392, -0.7073796340191986, 0.03737868491407801, -1.0663846965983184, 1.2078229127788105, -0.6251738924301969, -0.8822709379287094, -2.1559806637631116, -0.29648209017696964, 0.626909313831158, 0.7511280042263893, 0.8800908280498604, 0.7965240449921801, 0.2871531825724353, -0.5225455228094038, -0.1872337034634641, 0.17844836819406537, -1.246362577218013, 1.813366484504673, -0.5781834914628606, -0.6727698102773951, 1.2155617824189155, 0.17327804204134378, 0.9485059665392404, 0.12705029209690416, 0.1746239718886186, -0.04303948853248581, 1.299326743834668, -0.9540814058763903, 0.8121103454728292, 1.4230346012965611, 0.0850672134270852, -0.557244741638408, -1.4940184665222642, -0.309037291087057, -1.9543347579338983, 0.5160198921849481, -0.000832207682192789, 0.23694072560735627, -0.04430754037467715, -0.9128441035948273, -1.8720036365743062, -0.1614082060697303, -1.9909069712488514, -0.7493868322038154, 1.3983572995865814, -0.28179023057121616, 0.44288108166324763, 0.34075343961150223, 1.9756175660062205, -0.48894666044298596, -1.1118375784727679, 0.4439387484379309, 0.3740690371630719, -0.5955917448848308, -0.5763084372789589, -0.11094222332258225, 2.0909970264734685, -0.9055132789981688, 0.36622853261531285, -0.918962765015754, 0.3763237632951862, -0.23252797292571367, 0.45606615211559093, 0.0977848481386546, 0.2683660787674819, 0.9400592198013479, -1.2481609997854155, -2.6782357975132243, -0.8138986692738812, 0.5811449305763917, -0.5635225731835194, 1.4075766233003857, 1.243168309898357, 0.706783815473354, -0.2147195535845017, 0.6450266376945085, -0.1009870487221732, 0.6749246793211469, 0.0982578585139606, 1.2859866373605167, 0.9985733165247519, -1.0848577367964924, 0.19557861602928908, 1.3495073367757238, 0.586338206689906, 0.5820592876683873, 1.7697378392649779, -0.0005272669213380993, -0.003168083736092042, -0.8961445945605256, 0.17258061194040666, 0.15939510746698757, 0.11508016425534988, 0.05532143525566642, -0.18452471441579843, -0.9254957237379045, 0.8892172895173985, -0.6533880045354148, -0.9723567519847627, -0.5334710437145628, 0.8211068305921678, -0.06745747696229419, -0.2128351580550097, -0.0516298373737459, -0.5714644099312863, 2.098679047919475, 0.03127932188995736, 1.0852706649546335, 1.2590168374283288, 0.47106383752575537, -0.7255176112608885, -0.7205782204025222, -0.09855587485818645, 0.8659484379879712, -1.0314185309440391, -1.3660487838007587, 1.0345171614956494, -1.3395849087498863, -0.4408787230041604, -0.6380797842843351, -0.06651233259886939, 0.8869633021944834, 1.0012839614901745, 0.49709870766472025, 1.2589795600835996, 0.7349688715240935, -0.7078122156991411, 0.8193580948558501, -2.2016238594066024, 0.08469759876924594, -0.762182678549362, 0.8804544223501305, 1.0569264312387294, 0.5062802746499138, 0.610361454581719, 1.7146879009671618, -0.2513705063685448, -1.3150021144150457, -0.1167527136021607, -1.0754842815637786, -0.07030504555132444, -0.6991562229692587, 0.6908097111688218, 0.7203555477777529, -0.6897855101331858, -0.647235657780186, 0.7030815134882735, 0.6467506759200211, 0.5479553957030914, 0.3484885066513555, 2.535521599692596, -0.8204147062089803, 0.19590860309497468, -0.7824853266665454, 0.2892811449872878, 1.1619657479839482, 1.0615954559514824, 0.15467063142506635, 1.837862558569512, -1.4060848424574912, -0.9418539261019748, -0.3752785746721116, 0.7097880656635328, -1.5072953174155783, 0.10336153151962295, -1.9389678708335596, 0.35684697527980436, 0.04671493716543709, 1.063542645224276, 0.9551269408230028, -0.09780467411620872, -0.6299750725610529, -0.22402097794748282, -0.9549553273342858, 0.755882686128917, -0.32157192818621366, -0.8888090956436367, 0.4380220880312316, 0.3366784658903901, 1.92239823872506, -1.4475574002503093, 0.8434944457516, -0.18459422927265057, -0.7861595771272067, -0.8485083707507644, 0.07347128948738435, -0.5590744987417485, 0.8559178283545454, 1.1391533809819103, -1.4352144390988582, 0.17125861922114985, 0.7596943908014602, -0.8592044569238011, -1.444973013227147, -0.6764738561541234, 0.42207225243538465, 1.3887243793354422, 2.3215956826228914, -0.0417087358195759, -0.39068244370157745, -1.467857941227057, -0.726606473652815, 0.6841331029511379, 1.9773515733653357, -0.08328193809190822, -1.0672530479322864, 0.16731181399670336, 1.6325923975640417, -0.2548616209822987, 0.21341421389293913, 0.9287773892240931, 0.14930136080054096, 0.570121153972649, -1.1331323196659109, -0.6536434994972513, 0.7264892234470199, 0.5563353011266582, -0.6037955177042658, -1.3487433384476095, 0.18697542706395717, -1.2863989756398562, -0.8559560561324105, -1.8831244874198652, -1.6855524295672486, -0.5664547095696286, -2.4970006086503567, -1.8621115150317888, -1.5233434432086213, -0.4514985350852084, 0.2555767033565623, -0.028873250213848813, -1.5381019397678377, 0.09594921086902912, 1.1242506553709748, -0.049371641359153055, 1.0304992868645806, -0.7559800510934844, 1.9944780070846113, -0.8568785343355865, 1.2517493208310138, 0.3043972601725238, 0.8526846738923762, 2.3060281810582257, 0.6936392802773307, 0.2960178089566408, 1.3661252612671684, -1.0457130311862282, 0.1957842753402506, -0.6018605998475861, -2.372829870283722, 0.609165714627518, -2.17186389151452, 0.622632652429807, -1.9919268699587431, -0.18072547897559113, -0.5090370330904463, 0.6420801826207013, -0.9948250334682609, -1.7875438662671594, -1.1091448411533902, -0.7932785879263773, -1.003598558178551, -2.12673095185806, 1.930681128875036, -0.26766230223482984, 0.945066426879392, 0.041042053934878545, -0.05389713252049962, -0.9387653727098124, 0.9981363189181132, -0.7394678648161285, 0.8652318819967922, 0.3057801933627054, -0.27220973358868705, -1.0700936485538066, -1.2086376848439209, -2.363301148838818, -1.3793501344366463, 0.46804977788936963, -0.8507366185920509, -0.11361411993630192, -0.5405506000279322, -1.113862388098394, 0.6598904504648672, 1.0126362981235864, -1.2709671198368486, 1.07997618489374, -2.2786343654075907, 0.5844411357637008, -1.4731414579784605, 0.36636107296034504, 0.02619800987575322, -1.5786315285446677, -0.4427691005590525, -2.662334924164781, 1.5851969994750126, 0.9091007110148293, 0.24917055333378482, -1.779007100308984, 0.3701717498648201, 0.1264595153257057, -1.0195288446620414, -0.5674545342014925, 0.5108386601273107, 0.3584580806935472, -1.7581463446052006, 0.05301020519588553, -1.1752793514928679, 0.7114823854621609, 0.904490705530842, 1.4830141120576132, -0.041906811534480094, 1.1970575245304425, 0.13293796954709702, 2.023265766329111, -0.6865393340476985, 0.23932017413539802, 0.7753999013064216, 1.4627600740079174, -0.10841039890612919, 0.8606725033613389, 2.0403236200237, 0.46075188518101245, -0.10724426158994615, 0.3037857805783841, 0.07458350094138236, 0.012786104781921086, -0.3544654620291293, -0.40236199368929987, -0.12402525643122667, -0.7396367315562145, 0.7832693420156542, 2.317027044860015, -1.54427831836598, 1.9335810224672854, 0.23477777545426148, -0.7071154450788623, -1.5737415744102832, 1.0960243113750805, 0.6537899547326309, -0.37599001421994105, 0.5476344579419803, -1.3286191704780317, 0.8053910642145513, 0.3469304961738264, 1.0490028789902786, 1.0820166486024623, -0.7717937673531001, -1.5789682198094737, -1.4774387195108096, 0.15475924303391406, 0.4437724069638929, 1.1439242778598342, 0.8132379169633879, -1.3401269617346756, 0.8502222912013281, 0.9876717108568227, 1.0344502834185836, 1.268734882904422, -0.5505041735897439, -0.7855671438589161, 0.8602148048782029, -1.4809836452115657, -0.5119857579443753, -0.38194092608977737, -0.6114096733302357, -0.6543790206448494, 1.9926911616124208, -0.41370883846267664, -1.4669837330030435, 0.12852797171354693, 0.3481729705939603, -1.153302303493679, 1.0869994230027569, 1.4644509556728622, -0.15689197525938336, 1.034945698805838, -0.175643355684911, -1.6514874478810058, -0.23280991691951688, 1.0111793378679983, 0.6720567844036823, -0.7362394613241032, -0.41148841758301463, -0.3671393738375263, -0.3332944055981328, 0.2656374964031273, -0.9530491903742826, -0.6260130421856427, -0.3708434730295838, 0.8792756782087326, -0.3389348115720821, -1.9841408852168567, -0.688487965603255, -2.2694284953370487, 0.20318954378097315, 1.1579350134437387, -1.0121223418249463, -2.30972993312399, 0.997895884195867, 0.21757757627178276, -2.686108855932131, -0.5970320850390008, 0.8525118193940535, -0.4791287037962053, 0.14376531352152297, -0.29224885630141034, -0.6843546327867881, 1.1322617498322542, 1.0029426987863916, -0.2620452613887225, -1.6065993412646442, 1.042918975839276, 0.5944006973030639, -0.1670454000815996, 2.44194340073711, -0.3739909705074511, -1.8456406997976138, 0.11130598974672934, 2.159522657457437, 0.3647932028943964, 0.23740047250964053, 0.20995914943801322, -0.3243453264247367, -0.3401818833701792, 1.4103938489482915, 1.6271344470277573, -2.1202742776295476, -1.1849643753304104, -0.709874322554923, -0.4447263617639264, 0.6449499173168598, 0.040377345558120635, -0.4186555065909097, 1.0814201894500282, -1.0945191108267331, 1.356754437400464, -1.5604213517616297, -0.10001524178956302, 0.8940340596941763, 0.845940847908563, -1.0146025106994623, 0.06800731984685367, 0.7846980641359316, 1.3434424821676418, -0.9383518549157668, 1.280992271538795, -0.8449271959014506, 1.0975096403677125, -0.1546810713002774, 0.30582866370351275, -0.3041703807136348, -0.9142824179619249, -1.3318565975167058, -1.8669540513723433, -0.9035051197392687, -0.8116283650566821, -0.3161380686852097, 0.48386228154517935, 3.4211907670181767, -1.1386013455438062, -0.22655002989939424, -0.9451452694935729, -0.5928295326198105, 0.06787420950988425, 0.2757981890416759, -0.3321236959473293, -0.567105629432936, 0.19851150756508124, -0.22282245387529767, -0.4163082516632123, -0.2802232067161187, 0.9110809791694433, -0.6852716197556579, 1.2561382578328504, -0.07145273482358042, 0.3364660353631431, 0.09887460695452224, 1.0709245307130582, -1.5483484344193734, -0.03563594791167672, -0.37671869454180923, 0.3872356410384124, 0.3307133322780482, 1.1823629593804494, 0.10217406490788526, -0.542384837556553, -0.12975670069499545, -1.5655067538607221, 0.6336570797560966, 0.054953337478038655, 1.8878624654497842, -0.29421848265058337, 1.127821940309638, 0.6545171727030941, -0.39032853179374744, 1.8984397108899613, 0.7070992865077742, 1.79933473429389, -0.5017223954919117, 0.0827309338206215, 0.01342278892252221, -2.250159222507103, -0.14371320610687285, 0.6395931975099655, 0.0057093766336765665, 1.1021652816611442, -1.392007524477308, 0.3976403255299499, -0.014814985841651076, 1.4965684651810982, 0.9689209114670412, 0.5429440417793472, 0.028378818203538103, -1.5773537374765998, -0.37399484776841485, -0.2666587048170264, 0.9747823165301658, -0.4103638346118805, 0.5886337651553135, -0.18981896523425063, -0.13563409965498605, 1.6624455421263649, -1.6222413745042457, -1.2985557523393045, 0.37217863527291334, -0.39035036138851525, -0.909184705997745, 0.4594865806273426, -1.3110142273160403, -0.6883243747931966, 1.331262280693474, -0.7538949490775932, -0.2995066955605246, 0.7632295163891967, -0.749868750055735, -0.5356576218958119, -0.0919358194010652, -1.3114384069315703, 0.35005466265205626, 1.2393230442049346, 1.6140447811458507, 0.6387856619735732, -0.6108313488817373, 0.19909886684280972, -0.060486507773780944, -2.6836384714681816, -2.6211998155782985, -0.984706266595539, 1.1216261879145166, 0.79470053552405, 0.7528531169167416, -1.0585661204422885, 1.0566601602118766, 1.4273685037725268, -1.0767983910590209, -0.4296365666429562, 1.4494384435424241, 1.4446422155201781, 0.13565799176317775, 1.0034146259146521, -0.32237570297452384, -0.9266096430740066, -1.0339141311140276, 0.7099414938097524, -0.46218208087753465, -0.5609854944381465, 0.2947590781939192, -0.22677953271498275, 0.5106018281178458, -1.039938262298387, -0.1026353130135242, 0.643498655467062, 0.7522862314871358, 0.6919759391477112, -2.245567578517487, -0.8749258032017986, 1.4108961374765927, -0.22401970503426646, 1.5797072274861308, 0.46895117801474956, 1.1173228401997368, 0.5782393422250346, -0.6851101864215042, -0.5580055434130192, -0.7732711756562166, -0.5826538968862393, -0.13926285753281095, 1.5586853734323198, 0.020378785706602055, -1.6795462266133006, 0.8597658844231557, -0.011287098117139375, -0.3200110599236394, -0.2948528246352444, 0.28529485325390413, -0.25627382301241386, -0.14754402679336284, 1.365951082721313, -0.6758585615531852, -1.0843502170032278, -0.7936446881584139, 2.384574211013616, 0.39298783916190155, 0.4647912088041014, -0.7947139419946349, 0.24568304291409535, 1.192878283740297, 0.9161582713074883, 0.5700794201381576, -1.682542630940453, 1.3041151871142758, 0.35631014554701246, -0.3147214940256159, 0.5580030968779763, 2.9040820001504644, -0.6712498654479055, 0.3814977005644632, -0.9150345048017094, -1.282959928788551, 0.1224932070433915, -0.9704454671133286, -0.6935972884073551, 0.36366996971412424, -0.22491702679033757, 0.784188993420033, -0.16958011381225468, 1.0068946525778797, -0.15517886830885014, 0.20394081238004355, -0.21602323961000372, 0.05752490187900872, 0.42335128896327406, -1.1963081195698584, 1.3477262604149522, -1.2211992057285985, 0.19098362114112807, -0.3664204531171375, 0.12966624450747286, 1.3620431260805388, -1.5150484198592231, 0.372432058574796, -0.1817900204834824, -2.060057368739354, -1.6056635402392812, 0.7870154832624137, -1.522684660834146, -1.0958694768350168, 0.2537332873480262, -0.4250313366202993, -0.32541049202142974, 1.5727606026851897, -2.155089200538233, -1.0238029136405935, 0.6770683923925374, 0.5319061053228796, 0.3880900650869866, -0.8081127340420797, 0.30353550784642397, -0.822676175971567, 1.0228225473270016, -1.3425111772943137, -0.2506415915881174, -0.40898350359743685, 0.9058633188873951, -0.37298832798942866, 1.339993640767007, 0.9662905307101012, -0.7494388106945128, 1.2559704380386454, 0.022900218656347223, 1.201414441574642, -0.6412307471373769, -1.0129717423189097, 1.245243483205188, 0.830951562008678, -0.7037938625349646, -0.516044212163529, -0.24554741472998273, 0.401046120152612, 0.5061465780216652, 0.11063460816622882, -0.043397553235370125, -1.4044629425651554, 2.9091977203397104, -2.1345864774243273, 0.33293602233967023, -1.5256452443014754, 0.17931187459086187, 0.23082468461891542, 0.28442511306470414, 0.38667732945561395, 1.2204672841950814, -0.3992787782788954, 1.3918090984336573, -0.7933552314869027, -0.40801927215304323, -0.2728828126656993, -0.7682562293277033, -0.5719984586530923, -1.0183052718902972, -0.960452232118046, 0.38531321964768284, -1.2975748368549425, -0.22928821584757367, -1.3596871892544324, -1.3039762583799355, 0.059311284676044324, -0.04805597136514602, 0.4962646633336747, -0.5713594232836451, -0.6954299623293879, -1.009522496404703, 2.2706354639165847, 0.6692290313822269, 1.0304493931857683, -1.0347440726738109, 0.2856079958857828, 0.2846545884718343, -1.909433123850431, 0.7144765762267442, 0.6001246690493885, 0.7790060567603612, -1.68767832643125, 0.8976767389111826, 0.42064548927986095, -0.17045617798741897, -0.07374679671503559, -0.26408187513282433, 1.0982557689698629, -0.2004384166502242, 2.3428841403153906, -0.7079855501028742, 0.4939281974449001, 0.37860609815188234, 0.6313472280311727, -0.7072930241203749, -1.0782896157588422, -0.8113028194045238, -0.8778745991585435, 1.0954922825804976, 0.6773547651378248, -0.6685731858576653, -0.377099886553068, 0.22274660506515204, 0.9968454311363523, -0.35232912923472054, -1.3864168959247132, -1.0868943805710438, -0.9343046469200449, 0.2491092959835573, -0.6308339809654111, 0.7197821020572253, 0.5519299043125314, -0.6810630146410503, -0.40890452065267013, 0.7557713834696762, 1.9566248332287257, 0.4776131121242155, 1.192612668779543, 1.5971673916229134, 0.43083025335270186, 0.11366649274924752, -0.10950091936933937, 0.7047156633061459, -0.15759400237886872, -0.46207719699454025, 0.08414108709105879, 0.9953366107855321, 1.510398848778449, 0.47362270364191494, 1.5422915598639988, -0.10724596730311745, -0.1396505571128171, -2.9809105008013175, -0.4031337573360576, 0.880411298992738, -1.01122542269202, -0.2409628008268756, 0.2047683350257835, -0.36227198759161017, -1.9411558062129937, -1.88997283351283, 1.740893381077405, 0.3006974243746721, 1.2763319022790791, 1.2042177408253245, 0.7616260716691546, 0.4871765311124236, -1.1685684961931893, 0.024904241598348975, 0.5549248267894151, -0.13743264329602173, -1.1954682584540286, -1.3414704019883652, -0.7706769321584697, 1.2263376344392316, -1.5012468565856527, 1.5909256663130216, 1.0964914312913916, -1.308583441317034, 0.4539462425757249, -1.2281394370240657, 1.7626319666324688, -0.732490208708437, -0.9580355749382599, 0.48668822391531885, -1.497348707889711, -0.14662607398418726, 0.8339012238067494, 0.48991803853148047, 0.10769406599637235, -0.8362806169188445, -1.4843647896819847, -0.2697415120374603, -0.8866237815115228, -0.05402562177040743, -0.30031331770643455, -1.6148547011555834, -0.4805254111914595, 0.12131182014768438, -0.29415400615606596, 0.8102567249126404, -0.928187112157124, -1.1821101179138929, -1.8406651492198527, 0.5014512910736167, 1.4036813253117595, -1.87133865886218, -0.5326392269127666, -0.18863403554797065, -0.8415975720256202, 0.3057666447174838, -1.0148700065049452, -0.07863163695748396, -0.3621526951054943, 0.33380094569608626, -1.4992501716638735, 1.3405026754269096, -0.0036727105535458208, -0.22721531517962487, 0.205310046196295, -0.820153077214511, 0.1841879120357858, 0.2114760138939557, -0.47665321093587737, -0.336952843744476, -0.9556294278597833, 1.9319325426877418, 0.5302439798006652, 0.23510864476758964, 0.9314142557215915, -0.10281919957065715, -1.5250001180223087, 0.7404120222593006, 0.2303896621720071, 1.491772174579561, -0.4250142781226836, -0.6134276715671811, -0.8063782672309573, 1.4725394277415345, 0.14413897385021865, -1.1735401129024845, 0.10912196124914067, -0.91311652409294, 1.6434334880200583, -1.878435676834226, -0.43753459813840345, -1.5563970000910037, -1.2779231176429526, -0.11135636501009605, 1.1419637570774803, -0.4746663709650518, 0.02723858892684144, 0.27003446336207126, -0.029058156517511674, -0.11726892212885073, 0.22497858410580376, -2.1899554900990896, 0.22082676023417902, 0.7778939328046905, 0.14612866086235876, -0.7282455098170374, 0.018973370651077338, -0.42825827335785144, -0.8658826371208187, -1.1485561555752235, -2.960268565760578, -0.14103983352022217, 2.0880720098776044, 0.7905129652802064, -0.7691317531470564, 0.12640946731398275, -1.400074574404461, -0.15734234801388292, 0.29386571407726503, 1.0568746674227514, 0.010911402548567192, 0.3470391742204396, -0.48599074033797035, 1.7922818078065363, 0.4455918056711053, 1.4975288229483952, -0.9480111038957377, -0.192276098267202, -1.4027232913427539, 2.050008461570576, -0.05199911372215719, -0.319371180669713, 0.20624240583205078, 0.5978281467312402, -0.7677828942976924, -0.7538820455769569, -0.6299334744696073, 0.6033489360717903, 0.2832005847015361, 0.5452688355447352, 0.8469522384190681, 1.2932279721523108, -1.9003132286033912, -1.094279353390543, -0.5097851249962865, -0.13724926790684522, 0.7389360853693046, 0.40624661082857944, 2.132709147233867, 1.4104102478967961, 1.4905673453322714, -0.253253780065587, -2.1432592430750717, -0.8576034930342882, -0.15905672688983477, -0.3303655067354481, 0.7697898711912413, -1.4624527370306428, 0.2984645410837979, -0.664468438694523, 1.3603308038592075, -2.2972020736294843, 0.7327101997924316, 0.7071997985785861, -0.2726282563016747, -1.2914042732160316, 0.8994567085924257, 0.8073368327580094, -0.5746322243272696, -0.5576096812548902, 0.165983832355997, -0.13634282746598378, -1.3210847957318292, -1.7470102629298927, 0.7856430713448209, -0.3404804859160408, -1.5011080828537937, 0.037126396072810826, 0.4610421072293, -1.979950662383427, 0.29711398902879305, 0.12882899988798038, -0.7006706289501274, 0.3879249103459414, -0.6544851862753935, -0.9943184659892675, -0.2518327959476391, 2.354892364439672, 0.5223642134504866, -0.29206834445710605, -0.40209109039811575, -0.273340000985071, -0.571792780714543, 0.06089403531154891, -0.5899714337481385, -0.7200442366634687, 1.1412378063659865, 0.8978247551300577, 1.0000589533398636, -0.766447215936229, -0.5729170959643209, 0.9699405655726836, 0.12179176198564375, 1.5907863348313387, -0.19433598130161517, 0.358039846074162, 1.054848373504918, 0.28654836079870605, -0.6504087165967003, 0.9016335898584826, -0.07258370014682246, 0.562085421649445, -0.6325400280998881, -0.7439349898123474, -0.3153328352387547, -1.06725610693579, -1.7833085152255452, 0.9287146070537301, -0.6542304776212527, 1.6105291750557775, 0.32373244032240256, 0.09070839788087916, -1.10403420121958, 0.299736819019431, -0.06368653685184926, -0.3834260477967442, 1.0293459195351276, 1.381483994521103, -0.06773030670815496, 0.3568538768477211, 0.4766845588459385, -1.3918503997829692, 1.0618768069425533, 2.094172005181775, -1.0742283087593507, 0.8984967690642883, -0.08302114832746076, 0.6641359514317519, -1.6409207045917358, 0.9593986629862629, 0.23183465345515417, -0.8166057532668092, 0.040494070985627816, -1.2390021068190746, 0.45154436792534974, 1.1605204561984799, -0.21441173870675306, 1.1883565658111523, 0.995028744689643, 2.0552214379974507, 1.053525247259624, -1.4709560591295612, -1.5867043419135396, 0.13066087569857904, -0.271507243467007, -0.04498155015382217, -0.002769650522954172, 0.48753924464542975, -0.3928735860266628, -0.8229634019383878, -1.533719695446035, 0.5826323401891343, -0.2819741460476499, -0.2582234567814165, -0.016221997572878285, 0.35999800658824654, 0.3257384473457987, -1.003625777957388, 0.8643901267206475, 1.571357247341103, 1.0139297648056318, 1.4468092693151502, 0.6948794537768026, -1.5517260670528514, -0.19584222277547986, 0.8813631376228906, -1.7951006071151123, -0.9697549265444299, 0.6284643773619438, -0.5846396605151496, 0.4487033393838346, 0.24053225134594666, 0.49756889563365003, 0.2957636382603988, 0.9570439030806516, 0.2443752096050985, -0.5622071547349998, 2.2588009198651524, -1.0483917302282666, 0.9098173371571114, -1.8604539181979989, -0.8173455403136234, 0.5789508745859107, -0.7827732845830857, -1.1568153677463735, -0.01704488829898626, -0.03493346900724006, 1.6030148960575532, -0.4314584485783958, -0.44737699424432564, 2.9883327782884606, 1.228626423069065, -0.2578247233492241, 2.0695286646696927, 1.98331124276527, -0.4604290862549438, 0.606538199462756, 0.04848045821505885, -1.18770311954323, 1.2785547502618924, 0.04969086601195728, 0.9546885672820727, 0.23571669096941184, -1.1076996383328588, 0.19458765346942636, 0.5427490831768007, -1.4768924023814052, -0.1266884013018283, 1.2911915218703025, -1.3238167700456172, -0.05224916915098416, -0.2676344017459843, -0.6911221844301328, 0.07529598245776922, -1.361147557669948, 2.3361937192100757, 0.006999538768392751, 0.5464682105557976, 2.133104912030897, -0.5441608979650006, 0.10170759117931642, -0.3368732551170216, -0.4231700792359218, -1.0628687765512965, -0.6858999926380207, -0.44830532658436434, -0.249716415243537, -0.3508114737621968, 0.41049318530301016, -1.749849652762175, 0.3362596912982692, 1.4677902379398717, -0.20063854142434806, -0.5780756974541206, -1.5987331229430461, -0.11067759213421759, 0.012002802421906813, 1.6271821076553237, -0.044753613797051804, 0.0875762742331914, -0.749444005878793, -0.36981752212162194, 1.782430549752325, 0.055391074283593175, 1.6561687149295052, 1.1992241025930872, 1.4706768231511251, -0.08851492490219627, -0.6563508898819398, 2.872195331744887, -0.9546232197988066, 2.394845635187658, 1.1499698467754556, 1.7471482701468541, 1.0599867241095413, 0.8311229872930085, 0.7371907113248329, -0.03423480286257505, -1.301079071809297, 0.8906499022027329, 1.6059136400389467, 2.2990991930110316, 0.4834091491873702, -1.4363658692129744, 0.7735761714770223, -0.5799315599242028, 0.5662144451282951, -0.9524687735245504, -1.148019301943659, -1.4915493232532038, -0.1446687206566177, -1.5503708516510815, 1.461756378612179, -0.5331176764438605, 2.408609911167235, -1.172934977287522, -0.4817310771335191, 0.5680038709719046, 1.4941914593147791, -0.6914647205787278, -2.018114148756795, 0.37777188928546035, -1.5152541028513387, -0.47159726629534743, 0.823169387227387, -2.651860737664566, -1.4555287316178445, 0.09143740022892578, -0.22342298455683665, 2.0650123088733685, -2.1466615407821608, 0.15340144864055844, 1.3114731536961202, 1.1546368297216734, -0.7428530523795458, 0.6502625594741762, 1.0078990391456493, 1.3980791680435027, 0.6793757290023528, 0.09366921079930743, -0.9792520837457899, 2.970100560479322, -1.172238243554822, 1.055873657986967, 0.04028197834401083, -1.8280122594597887, -0.24981982605941055, 0.8046082747019986, -1.5145628694514721, -0.06631679364002104, 1.4766254727597947, 0.3124493040129265, -2.198663605960169, 0.4674245005649129, -1.5083244110520506, 1.8216481485662999, -1.4722234006616646, 0.2732209917832756, 0.5949475014985005, -0.9607399090256262, -0.20459887249968897, 1.764625138036312, -0.7536096380786605, -0.35131134215815124, 0.769136391373924, 0.8360784181002641, -1.0081759869319733, 1.2985471486371247, -0.5268860525068512, -1.6426519892089513, -1.595584707489221, -1.5030740991454337, -1.5505201608103705, 0.03968152128854216, 1.7364044751427856, 2.519449943823304, -0.49142101086360096, 0.6799562692528086, 1.3492199795816204, 1.1706428880473416, 0.2949381939005769, 0.9238092982975578, 0.16055744898904759, 2.152927015225498, 0.14422066371811165, 0.7760697799983022, 0.1376724616965311, 0.5327976668744402, 0.7806516989771906, 0.029454770765522185, -0.7717715441206855, -0.2266308930133056, -0.6821055607440005, -0.17336214562113983, 0.1823611098086654, 0.07674613857025689, -1.2128807790202498, -0.14563235727610507, -0.30074201994992256, -0.9161817913227733, 1.5913327728278845, -0.15795279714192567, -0.2904420447637647, -0.019419680217024112, 0.573135411399876, -0.36248367427617395, 0.9926762921853662, -0.3709481010125875, 1.5288346208115289, -0.43548105724066677, -1.9556708243236056, -1.437536770557387, -0.7454910425495495, 1.7316601495865032, -0.5210960073880966, 1.5381774056470412, 0.30701345938259694, -2.553966392039274, 0.8609000863565568, 0.8768707278764547, -2.802873397558722, 0.28539346155038425, 0.0756523649709593, -0.24178469460216037, -1.2995091782605155, -1.616544268573074, 0.0727171099720686, -0.8591468647134362, -0.8238325101169602, 0.4033941630257799, -0.32932974868164355, 0.12137189708086762, 1.3752214360411534, 0.7829488586369108, -0.07220136256454211, 0.8433872894637429, 0.47825014560452733, -0.4935623096582913, -0.23811717144885247, -0.7832172031868594, -0.5446069868935667, 0.9413124120496833, -2.5823423990805554, 0.5658676818525278, -0.607933509216523, -0.9968884760737455, 0.5802953365922328, 0.9571837285666459, 1.9094508140812854, -0.22192122068452158, -0.9226089418733366, -0.4428947228599685, 0.7583332647608072, 0.21159320909293966, -0.7811122664552596, -1.7981539676833578, 0.37805004829544125, 2.1706473040700827, -0.06963431014155297, 0.6279263019740426, -0.6800647078880951, 1.9165187312162442, -0.9290715511701445, 1.2863555873167367, 0.6647630224206902, 0.26089950036740367, 0.9897309455557352, 0.6739706002949486, 0.36467952013131394, 0.4114717707551666, 0.3113068440884058, 0.8569977638437066, -1.9360952494675194, 0.3766152799629914, -1.6221591301868927, -0.7990433127660989, -0.03340091455342997, 1.1912836841229189, 1.2172175639563068, -0.33946348094588363, 0.8918073590590329, 0.44665994139105103, 1.073720243836703, 0.33819174372370364, 0.3800397767918471, -2.1234982110297698, -0.4557829483436084, -0.3734255078633694, 0.43448861035552355, 0.5889009185948989, 0.40407760585046193, 1.5738065307486646, 0.11130348753995513, 1.4602007693861616, -0.6285096336523892, 1.2437600338336463, 0.0050884868219469685, -0.07318477928204911, -0.16768298982771, 0.15890468607153793, 0.36674077952804335, 2.439313372242781, -1.0587658169107577, 2.6044941019578873, -0.1686701931205096, -1.8850729170680578, 1.4020283327654766, -0.5418936575836444, -2.3522670430002535, -0.6334927755050513, -1.3634057221206062, -0.5583272491176056, -0.38235468821985374, -0.6222005923780971, 1.5827267643016985, 1.3770824216932056, 0.16275134423889473, 0.7221186213586801, 0.12688377519575553, -2.136415235368248, 1.4461229315057915, -0.7690400755906672, 0.7709952681835875, 1.9050391421837292, 0.7190030112624635, 0.3248241538964478, 0.009683709895776322, 1.067985184714394, -0.07675234668320806, -0.562358959688267, 0.7376271469351672, -0.9887485517117203, 0.24966190054974888, 2.068037906871102, 1.7839396578687834, -0.33444457122851545, -1.2095863188750482, 1.2558173139831863, 0.5373010321494247, 0.9748234772332767, -0.6312619050828452, 0.016433842441799757, -0.827331407445175, -0.28197711803991377, 0.6054283081059156, -0.11158091706473329, 0.7901099284575105, 0.6191786914672832, 0.5888951240950787, -0.6353875710044173, -1.1387881735579883, 0.3713979793682651, -0.4400520585680993, 0.3397425439368101, 0.7046699726479152, -1.4793330626364622, 0.48592691948620514, -0.42455498203517633, -2.0367341973384048, 0.7815831977156178, -0.9051186157723975, -1.9627444416347621, 0.36013409744799185, 0.15621973393465338, -1.709524820923084, 0.9293444447194408, -0.5003845025370286, 0.7637154781496065, -1.1961311690139198, -0.009614279310759935, -0.4078893116509673, 0.6337093548542065, 0.2556361157813865, -0.831454884147242, -0.6712316767268166, 2.2034096987943514, -0.8791456730944648, 0.013212802676600703, -0.49229746859261053, -0.39986783527978115, -0.26306249662284925, 2.047056449926505, 1.7678112456713313, -0.17973114433327755, -0.01657940966279222, -0.18822311169647946, 1.602224241878207, -0.036562913134480846, -0.33043978857986617, 0.2664604018070429, -0.8200712807722028, -1.5222777178995237, 0.5890798526369683, -0.2347440613378026, -0.3450381521743848, -1.7867842969526146, 0.3216999222210283, 0.6828198629993493, -0.7658074783701856, -0.6502707174718647, 1.1747088850534861, 1.1855583828243401, 0.25763306808796493, 1.4909777103359105, -0.9428761884166244, 0.3107602674833491, -0.06565906384178877, 0.0685524295538324, -0.10113622589902428, 0.37892090322529265, 0.3022420475341059, 0.21534362616908156, 0.3970568255585498, -1.2218739123379285, 0.11898471160747583, -0.3695195698890248, 0.33354410533386125, 0.4829176858172127, 1.1319024885917106, -0.9565948215803914, 1.5241290132857688, -0.6772370324247368, -1.7159717172330715, -1.0975611189355756, -1.7312925605663556, -0.37333682273898045, 0.1477590557581926, 0.2686690938732051, -0.3655430361371233, 1.0877088960721566, -0.23285151846230853, 1.4180816399105878, -0.21823740108512354, 0.7123752342956647, -3.5230632465467817, 1.2012986257900162, -0.9121915836036678, 1.1199467789480517, 0.4687555879449513, 0.09876308306858614, -0.20902986386214895, -0.22887814445818055, -0.5565449155873765, 1.4830018958177629, 1.2120802653110399, 0.819372199911271, -1.5443030639467712, 1.2881304473159658, -0.44252844368700867, -0.7546119772462085, -0.5705515373452799, -1.2781354227466282, -1.2427907439219787, -1.362003158036546, 0.027347105934732715, -0.09441652343375075, 1.0940994191274296, 0.7204990485442216, 0.7361420320795325, -0.9613663010651265, -0.2582519715927682, 0.13955690816038718, 0.046982463442952975, 0.18915605612612585, 1.209435836408256, -0.009613463762672579, -1.537430496379548, 0.12254427681709822, -0.39802802533487786, 2.902379965275043, -0.056054447138807396, 0.8327166755123795, 0.42540006852359424, -0.2597156055564982, -0.9224393018040448, -0.8635660204496995, -1.0860688152161686, -0.8994085705430411, 0.2549192196217936, 1.3536421557948852, -0.19600558996934797, -0.15111754339668598, 1.4701731147826258, -0.5301611989718706, -0.7514418033842489, -0.5187664057960734, -0.1959017068930473, -0.014720030059668822, -1.1194195330839272, -1.204193552785484, 0.4510424351362963, 1.4380525688325974, -1.431401501804961, -1.6567639324854482, -1.5840763930304314, 1.5504422910541609, 2.1515437352541023, -0.4491451920947713, 0.5094172413434266, 0.709148783228447, -0.5457146986013243, 0.934364234878551, -1.0353327841583255, -0.4708382687825323, 1.623179330550327, 0.7133772580463379, 0.6073892376745736, 1.8195630677035193, 1.108562907767441, -1.4534336805562942, -0.7953059484060938, 2.314026877124608, 0.5251945017364825, -0.1826748854499546, 1.3566463723037638, 1.0685337450862757, 0.31049904937339, 1.821382744952499, -1.2459898893187622, 0.1537189796677325, -0.34022357387484664, -0.1308629562519411, -1.5433285534434247, 0.26505597546817555, -0.8768908268113161, 0.36265255423053916, -0.18106636023989442, -1.2404706433545039, -0.006670779322785529, -0.02215505806980184, -0.014680646391435823, -0.3070196599369357, -0.284728672069164, -0.696661002271427, 2.4820952736205086, 1.1664582349811805, -0.04824799170447333, 1.181229581962091, -0.1398067663111677, -0.26159036783383666, 0.230241736441123, -0.18482984879465092, -0.3002223883168081, -1.0586570945717548, 0.7432215500480728, 0.5995344910044698, -3.1678256126019257, 0.4447817297113885, 0.9412964518122878, 0.16236823039672676, -3.4580419350628944, -0.6646204642922202, -2.0181896257294785, 1.2746133978029879, 0.9941292497798297, -1.7951741863011483, 0.917513608406037, 1.7595010808682134, 0.07572709861213103, -0.2940446734819453, -1.6577012871479126, 1.1868780835895607, 0.4489142899791301, -1.4153395273979252, 0.8617532811158279, -0.7209061631524604, 1.8307141288850433, -0.12439589468176507, -0.8329890239207904, 1.3848318796186296, -0.18525969444516766, 1.30640242895002, 0.5270386057736133, 0.9370468383771648, 0.7886910378129247, 0.6119283113081794, 2.3526062805685313, -0.537607642508984, 0.8156576792826807, -0.8996497512657846, 0.7605944518291021, 0.5174107049473853, -0.07763701646201006, -0.010723121924893332, -1.1077520691096878, 0.8609799089957814, -0.002645067596884239, -0.7504930838034546, 1.1758164284434505, 1.7048681196650528, 1.1122687361365735, 1.988119395858659, 0.548022931269679, 1.7687445959731587, -1.123289103090394, 0.5175089431837666, 0.9818748153692507, 0.04590334957214288, 0.6024598667054651, 0.5863195945244033, -0.30896256680707873, -0.2449014470838849, -0.33965983359894664, 0.8173004737172894, -0.44129429045969376, -0.42350554948881486, -0.4442686974257945, -0.18920218720207013, 0.2655477383951292, -1.3768834968898593, -0.3809144774682259, 0.5363598494544485, -0.010875282398957128, -0.47606370093580797, -1.0177830745544922, -1.525863224260457, 0.6534087949772455, 0.030639263659833365, -0.8621617739720404, 1.0417618490305194, 0.4268612205231679, -0.49344865752636635, 0.6158061930152109, -0.2294067509378506, -1.1309718608039658, -2.287515664336237, 0.983154884944499, 0.5778622837358188, 0.6268690220342941, -1.0103359547968653, -1.289747455584539, 0.5255880875474258, 0.31577147840057096, 0.6971115567547768, 0.7748465651007064, 0.23016095373959272, 1.1101026416200697, 0.8490208632314474, -0.9443007613747825, 0.5495160262684179, -0.16443985194710303, -1.1216591851733004, -1.7086243954072964, -0.24108523863498066, -0.2674919442991771, -0.21855984002513443, 0.38565809531879536, -1.700718204530717, -0.551412307890494, -0.3173760968176406, -0.4894954185898206, -0.45912924405236616, 0.8173966817588425, 0.7075866511780897, 0.8064449976867167, 0.2834832683263418, -0.09398916325432811, 1.109725165599211, -1.8030733094904645, -1.0070379443814204, 1.3376930294387401, -1.1808495740953555, 0.5073531527380735, -0.058619164393187824, -0.8737720553314409, 0.6463024711978705, 0.8150560588522707, -0.28272308756902287, -0.13035064612484806, -2.092626333529189, 0.013522227968549773, -1.2795248331845717, 0.057506240991152174, 0.6038038286339952, -0.5776740812075832, -1.9430420924062959, 1.4524323603727596, 0.7800066592271182, 1.0271704376965232, 0.08463165798222179, -0.1374979305151183, 0.8910975657831198, -1.0818466183415894, 0.6804802159710225, -0.4541484917828967, -0.3346958444050247, 0.5966618740710289, 0.31401839198298526, 0.8211557024949886, 1.0704349862045168, -0.13824649698305255, 0.8893301930503232, -0.33916904628344907, -0.5909581404770471, -0.09004097165041518, -0.7248537316286313, -1.1003676101727766, -1.4239622422235567, 0.5441969107764304, -0.4926341988905827, 0.556869918632357, -1.3396218713946886, 0.14538733468780926, 1.7056806258275288, 0.1354783625599118, -0.987889502395176, -0.09707514790299454, 0.3395828943208558, -1.143210541861846, 0.675505196927838, -0.6216760932893767, -0.008042792271134094, -0.13368413192451814, 0.6607852345685811, -0.7549160499858457, 0.4919817764745971, -0.690033844937413, 0.11047647509350995, 0.04322659423144446, 1.6217007332585518, 0.24312493831008775, -1.0890669889653855, -0.7247140502402828, -1.4122691521043307, 0.9370465979799851, 0.27637939863236266, -0.5866321713831792, 1.3722356569614766, 0.8200288078499914, 1.1954738816490111, 1.0035138670023442, -0.6749549679201874, 0.6533415503386191, 1.1325729877054462, -1.47058776854802, -0.6924391146424843, -2.0164236718643203, -0.34785588209083185, -0.5546363038453953, -1.8425893629114523, 0.09072980745202676, 0.14457318190259477, -0.04608245871507058, 0.15918778195112104, -0.12082125335821772, -0.9538875883607227, 0.41253994708595615, -0.2244155775274575, 3.6795009481146024, 0.24223104497283363, -0.6470710667078029, -0.9511174355929009, 0.1702698060462681, 0.7812328962648241, 1.80158002410142, -0.43769694872753945, -0.5683308202394973, 0.9279315194757677, -0.9465454813316571, 0.3366022672402698, -0.7220651237889857, -0.9819617867435966, -1.8596833896534952, -0.2528907489474645, 0.1193662887826913, -0.22667745411670737, 0.3017691898801444, -0.5752239892637518, 0.1663969411251109, -1.5511334692259087, 1.0421295167792148, -1.9012584678520088, -0.4614255840682998, 1.424791593786713, -1.2417412775110879, 0.5021108972502599, -0.45706143909817454, -0.31354981004567023, 0.9473830433251891, 0.8539240633029679, 1.012302976666248, -0.2884341428446401, -2.107331388171056, -1.7850620221669793, -0.013887731628488572, 0.2102229787355001, -0.899535161993565, 0.7409404273930543, 1.0690428326643966, 0.1225521181275582, -0.6987918632409192, 0.28668469676927133, -0.6075324424678245, 1.2139329662479874, 0.1285227166437098, -1.9235667064167974, -1.3696735466019885, -0.33111287759294583, -1.6956670610791191, 1.3373120799767237, 0.5762745613942352, -0.6694732301760198, 0.5540578132157927, -2.1261671829544286, -0.926752783990034, -0.8088343925236038, -0.6639289171136411, -1.1014389479329827, -0.9072561885283112, 2.714841945238424, -0.7826187521423159, 1.4325800483730038, 0.4963915234572046, -0.40989649798134054, -0.016671690536218278, 1.3205368458387086, -0.8911985677463099, 0.8565495494463655, 1.2983197480464592, 1.2096985964523614, 1.9569455730208871, 0.16203244101394307, 0.3311149259722488, -0.5050288446364165, 1.2626252873036443, 0.726669098205963, -1.2746234350529775, 0.9071441523976909, -1.262420733761119, -0.5196473815179451, -1.5570859911123798, 0.07698836051989555, -0.521180428775008, 0.5253528940545182, -0.8969724605263746, -1.7234975435082143, -1.6360190345877088, -0.29464459793977793, -1.5257315273197045, -0.08097998995724737, -1.669971150625146, 1.6078233591681736, -0.3854747334355547, 1.5004621354553491, -0.9985847319838681, -0.5503801052482543, 0.36546748589423356, 0.7353771946827138, -0.48357121688807314, -0.6779868089291996, -0.19033412093217464, 0.499211188625938, 0.5398508929432473, 0.03566952064222746, -0.5988525888235813, 0.6925060427911309, -2.1527281906461893, -1.2095558347538713, -0.5603280443084847, -0.16826075910671373, -0.5660645180936502, -2.6617272835850527, -0.08885038888422887, -0.9617566773029863, 2.1446435454900965, 0.30608399357223737, 0.07849963896671364, 0.5912182967519368, -0.4931904524826002, 1.9122548583273258, -1.313811591806684, 2.0577117834972842, 0.17350779322424492, 0.8749474205823227, -0.02284527044001272, 0.7528175845768743, 1.170338492631166, -0.8265956756956591, 0.6850013336655516, 0.1560554826105129, -0.6408975071913049, -0.21366055700495257, -1.677523783131706, 1.1644487946884534, -1.574541640237817, 0.3873857986363497, 2.3621787711104187, -0.7630544761055883, 0.36904191654684165, 1.3388618666089116, -2.0496938763317263, 0.7629712598740563, 1.6718709913792231, 0.32198908177890584, 0.6899487401773983, -0.25766388150716785, -1.507040695850151, -0.7224912131162895, 2.3411083907680053, -0.42871078072517327, 1.8549727881285372, 1.2070442565255874, -1.5772321422432116, -0.7080438308968529, 1.0886626733477702, -0.22326420028679786, 0.02408829087170071, -0.275765853656598, -0.04010079256772401, 0.28488439172322677, -1.7050652860072235, -0.04692192131645436, 0.3372358229092388, -0.6172533786545414, 0.670203511248235, -1.1006591912385517, -1.3350283349751362, 2.0353042743506298, -0.027135782417940846, 0.2073158026659668, 1.6354737356399465, -0.028357376050309715, -2.026229878970306, -1.716687580396625, -1.3402314842642713, -0.46095736494932427, 1.4415262477290067, 0.05913292304401654, 1.5877096829358974, 0.26908662500487923, -0.41015979372788397, -0.8824675615323126, -1.1359050105313178, -2.005610767652857, 0.4736536408607388, -0.1878831074040887, 0.4308557998754633, -0.371131262446551, -1.7942299571880536, 1.543054779417779, -1.2147882522629931, -1.704784905755434, -0.522399548852944, 0.1000429253686088, 0.672564008533193, -0.10305658276903755, -0.6237003310076712, -0.4226654429757004, 0.10244074887829205, 1.2398724340544671, 0.6266581238483911, -1.6554321835291441, -0.12124824334151699, 0.32286138776347484, 0.9190805744154434, -2.096298921375401, 0.7765610465966926, 0.18285452781588546, -1.8202095759396137, -0.7454063230244885, -1.2916655446356877, 0.8902140033025011, 0.40038209264692737, 0.5606911131580229, 1.1704490828314302, 0.05575557794745451, -0.42735201147792495, 1.94836632786605, -2.016518431871712, -0.8401970165160586, -1.1697243246631335, -1.2065800410616034, 2.8245173163560455, 0.7255257355902709, -0.011377209853035267, -0.7633954731794884, 1.2298153515969632, 0.9542187219980556, -0.1480200193159873, 0.8810518970727549, -0.07836467675182404, 0.2196310408588018, -0.18635661490788974, 1.5284952678400978, -0.004352667917835067, -0.9756123512114467, -0.31466947655432753, -0.06470287689950427, 0.3377788836840058, 0.9198677135741081, -0.2754327782854787, -0.6708625822067426, -1.4730268013607495, 0.1287664011240529, 1.4177550457330232, 1.9351221741171463, 2.213671586328789, -0.1597078606024878, -0.9023977776898015, 1.3139041808415375, 0.2726177392418646, 0.00814855575814893, 0.48749660410538403, -0.07955891760653167, 0.6277013064852428, 1.168321773051209, 0.0985655175036717, 1.2556729943775073, 0.08431480047586407, 1.9626149150343954, 0.011035435314454854, -0.49991695824822635, 0.004605936631809481, 0.9074426382573856, 1.0662762932737406, -0.030294727450887973, 1.248573176338147, -1.5397424991611097, -0.029974736837390575, -0.8892692675839474, 1.172748437439663, -1.0045369148168752, -0.827912914993455, 0.13756884828723598, -1.114113369554798, -0.9995676882023784, -0.8495463638490014, -0.6827727301994562, 0.8958288330670298, 1.385978769143064, -0.49598275257717794, 1.0044258920263203, -1.9580769530866426, -0.26488686903705677, 1.1917869989432195, 1.1667337114852327, 0.6072008299672116, -2.557605003677377, 1.1909650014958373, 1.463403587582909, 0.31033091072373187, -0.6950944413102194, -1.1479100142987892, 1.2735102825983549, 0.11661648623642606, -0.2918046722869268, 2.423244225239393, -1.0982188682606009, 0.05072739114675992, -0.19940347440441353, 0.54015451794453, 0.15562355579065343, -0.6090261114803817, 0.7491816128503863, 0.7298777578919334, 1.4989270624945754, -1.8995987400922154, 0.6298520133661267, -0.2078379316685532, 0.42586529537368756, 0.748732130303999, -0.5725304912852758, 0.9997204067129656, 1.4612487885572665, -0.17547093777716632, 1.1273647570941168, 0.47646142396513097, -0.06428780622290454, -1.0044498176826846, 2.0452012940322284, 0.13283289535179948, 1.3893600302454834, -0.14646253843859708, 0.09346559180578005, 0.9085562635229264, -0.7148775807237034, -0.32993009388497246, 1.8590315619209148, 1.0347384072974506, 1.813799755323797, 2.412831436382551, 2.312106190892708, -1.5441675158688566, 1.5836381394701926, -0.21032034789462614, -0.9427659576046263, 3.3227429387378034, 0.003437282614320793, 0.4599598890104838, -0.25815950374651814, 0.09430444136534062, -0.6484592704883761, 1.0446022765456011, -0.6147136558836835, 0.6779230962206353, -1.599061244993614, -0.5984195671481894, -0.2598298106256702, 0.6491798157563804, 1.508224296310814, 0.14496052577700985, -0.6059599537743445, -1.2316535821506531, 0.24545375230751754, 1.0236338038066755, -1.027839833137256, -0.9746788253881988, -0.14188762489553824, -0.44312243244370486, 0.7488308367858496, 1.2605679211364176, 1.0063545188162906, -1.5099442692047813, 1.3089972428647663, -0.9436789210377049, 0.13597494561269874, 0.4719407512219548, 0.42809429959504053, 1.1923423271246807, 0.18653233186943352, 0.3364466522028029, -0.8115941131710562, -0.2862149959018479, 1.6179212502713214, -1.133684466144095, 0.1576086612854866, 1.6966450939596638, 1.213842404231626, 0.28639940420977616, 0.8299135336306488, 1.0416905594608115, 0.07803254268068559, 0.13530332224920816, -0.49905204735591, 0.97447758170656, 0.4027974112983407, 1.383119575622605, 1.837930987091669, 0.2656519213374598, 1.9661161517216323, -1.1782396128641148, 1.0023720979243735, 0.6965804475381593, -0.3512536307637564, 0.45065490409173253, 1.191406229980703, -2.120769916283213, 0.7542650215594693, -1.5306229939395128, 0.8161210369457633, -1.0902593452134202, 0.06175881972251569, 0.9132326040936362, -0.3500942152846646, 0.6411805276626938, 0.45087468445632206, -1.6275932427163817, 0.3846338086017515, -0.4246853542191316, -0.26615171604632076, 0.5383206824761644, 0.20184590673974506, 0.384807655559827, -1.3784091672571472, -1.0891545269087524, 2.5185274033371, -1.6400807980582848, -0.19013938909977401, -1.771150567628108, 0.14748309944437987, 1.6204181038334116, -0.8607668375676152, -0.5384064134685608, -0.7705219737124139, -1.1450963456547432, -0.09419776014063697, -0.38661846598750965, 1.0069661492096407, -1.5623170543790494, -0.5494069330619917, 0.8417414604289749, -1.2840224689747546, -0.2174236229838823, 0.15475167047894076, 1.2056668905948018, 1.5822347055815926, 0.8427627792793879, -0.1835006091060894, 1.3857065762129939, 0.2265694362993538, -0.5935313111882309, -0.14443245313414171, -0.34154941902321534, 1.15094917662293, -1.0173409199660088, 0.43764821519826813, -1.129754533948869, -0.6640355882302572, -0.24617433153682988, -1.4579584844146887, -0.2803646173957379, 0.5194879706586012, -1.3600024152003045, -1.254482550265419, 1.1612860101433577, -0.5237599368967878, -0.07622535242171927, -0.40258097284643796, -0.15213424927510288, -2.866679558394446, -1.1969190075538692, 0.5911929560817081, -1.9365746532755788, 1.0248253835496504, 1.0324418656727896, -0.6867648153433951, -0.46950575361666746, -2.04594274615846, 1.95306791091802, 0.16353040800938712, -0.15616842887077886, 0.19452175298527086, -0.9242029404524122, -1.619064801583627, 0.8333130838357509, -0.7603093559399899, 2.6595138764243687, 1.515538358816752, -2.4703578188404247, 0.6387768882259192, -1.1071944194511678, -0.4903680316113733, -0.4680117306604676, 0.3141307072104503, 0.9558428816588226, -1.1113407963046098, -1.5815234663547568, -1.0935355204079995, 0.05054817183982856, 0.3866663248110604, 0.993004821723134, 0.4425321680394552, -0.6895670290340928, 1.4710677905095284, 0.5536217162043486, 1.818308420912159, -0.7442587518472468, 0.5915306047363538, 0.7268243365276637, 1.9215074251774757, -1.1497367105662473, 1.6251309916610635, -0.6394647962126145, 0.15458023434823914, -0.8110196186104484, 1.3729200223563454, -0.3157913960315532, -2.6422187378058815, -0.0864645560359319, 0.08081882005628666, -0.21809735624623106, -0.4129907760512189, -0.7059209636518833, -0.24332090019483765, -0.1573891069133363, -1.018812054134878, -0.1075560705101779, -0.7810525715619356, 0.2946920606140685, 0.44273781677935564, -0.005202776913015394, -1.1539438084004137, -0.9493114551086823, 1.5141673619341987, 0.024012894587199383, -0.1607463842468106, -0.25290908702816195, 0.36391724721235874, 0.10291767611581593, 0.44516420290407865, -0.20118278844675855, 0.8601016408980104, -2.1081255536858294, -2.427844294590073, 0.2220860980767264, 0.15659529898505922, 0.3403130949705444, -2.140412531357845, 0.9462047938408877, 0.2673851037297941, 0.6208993908618351, -1.8499322614447464, 0.9209723955126046, 1.53119729452188, -0.873912069411329, -0.36921847005302405, -1.1751234934384707, -2.317014789541742, 0.7895355805083784, 0.3282516963419715, -0.46588077793310445, 0.748269829678448, -0.43081165457058307, 2.5840348338064585, 2.458110949656981, -1.4622408271308416, 0.08587438113075466, -0.310519692454958, -0.6681333515951136, -1.6529071240899966, 1.3277977678159254, -0.3757497328617308, -1.8302660604167442, -0.0316494663656298, -0.3472995213191759, 0.4589443550604739, -1.0967552674415075, -1.1984380501687166, 0.6630488600746942, -1.1752310394253527, 0.400439385519878, -0.33222603866761014, 1.3693644628027621, -0.969718110703875, 0.5101490182243259, 0.7341066668257262, -0.8806497739035763, 0.49671266137523973, 0.12584727532420695, 0.9675638298457081, -0.9138584550063514, -0.4417184891343883, -0.10652753652338544, -0.11426607150269322, -1.3268920776581965, -0.08096809724009839, 0.11904912992616659, 0.20159076060143008, 0.6512203039159188, 1.438233057729005, -0.6844468280647964, 0.8069039082801911, 0.6489700679205487, 0.48668658186430436, 1.2901354731222139, -0.27479357101025803, -1.1339571206349814, -0.3488896665649734, -0.3557738759559148, -1.3531475118888723, 1.2903655614682654, -0.3629461748272534, 0.25549726774552495, 0.7867656083405202, 1.118090491094803, 1.5909452033642477, -0.774741102224801, 0.84053270253976, -0.08162919416854277, -0.7756942862766463, 0.3507590315201983, 0.5553920742002965, 0.8555328351185422, 0.7410513148588568, -0.47281396721835406, -1.248843054159214, 1.0126177790460742, -0.45137480253099743, -0.26114095667341575, -1.0239932352553236, -0.41276336005281655, 1.1769581239058846, 0.2987587467472304, -1.8365027675499153, 1.1532615866790865, 1.0919917399007206, -1.8362463066898262, -0.3151511351468136, -1.3551064311323944, 1.4492232812043604, 0.8736863804989583, -1.0081247692489768, -0.12595772790246743, 0.12626819645671153, 0.5982903312918718, 0.9398042535644454, 1.5688163534599449, 1.255893663142271, -0.12898371381378287, -0.7059351661228616, -1.5465261217946393, -1.1800560791982024, -0.19605078948937407, 0.7154162093330532, -0.6902991319671323, 0.29516545292965846, 0.070355492837985, 0.23770859621835233, -0.3390086965696097, -0.6550923751095845, 0.6816532364300169, 0.5564877647692408, 1.9424862103228695, 0.22398917561741308, -0.23046149311493624, 0.3369987108039809, -1.471705954802144, -1.157780399810831, -1.040396643216863, 0.44321459064486585, -0.561272506084075, 1.2985482941472541, 0.8319593084050704, -0.6969746826344487, -0.5226951657011785, 0.4785856158176238, -0.6259529371457848, -1.8527203062213744, 0.028511764954609515, 0.42514349792545564, -0.699401025958803, 0.49850087668945714, -0.004196280340690522, -1.2599755970260231, 2.2886993023854845, -0.98198155794484, -1.5676379340713007, 3.0150194779681145, 0.6283525223485402, -0.7930238691649236, -0.025842492993482253, 0.45659490684658544, 0.7170626528139328, -0.7243151583085754, -2.073402060789579, -0.9792627610029743, 0.11440663134049542, 0.059361294187034924, 0.18134311987591778, -0.431191553012842, -0.007991355342173883, -0.77851641268196, 0.4247042420206715, 0.01848449257098463, -0.07616190170064047, -1.0967365215636682, -0.49495922980916707, -0.48810926127746573, 0.7852111294815006, -0.018706715187218812, 0.6086872436855002, -0.018749793887360536, 0.9326267255828887, 0.7649549928649695, -0.5008492587581769, 0.8646634038710922, -0.31889396842751416, 0.24468401981517537, 0.9066831444134661, -0.4893347540927007, -1.470562899993603, -0.06005161686553766, 0.7557244407709609, 0.9877034612391158, 0.012468591732128342, 2.033787880338494, 0.22767681387414357, 1.5489911851051217, -1.4188582958632565, 0.14999721727465842, -0.0791156819229905, 1.478385424588295, 0.28662663225887414, 0.9977012950365306, 0.022328704152599674, 1.503527121697973, -0.6316815859287183, -0.5928900289198161, 0.6370778889372086, 0.7479619663300324, 1.3986239217547891, 0.3405438808562555, 0.2195483480637937, -1.1546423360655258, 1.2621787786467016, 0.4855803369988348, 1.9526602017352945, 0.5210053408651524, -0.24137138164510086, 0.912308374590154, -1.3056898362762246, 0.5090424073391101, 1.8608537821651865, -0.9838450782917177, 0.9527822332540786, 0.3861628150275006, 1.4564164644155193, -0.752764795564653, 1.3359946462137096, 1.526356978662367, 0.096579828192081, -0.3010890057164693, -0.6408552933171002, 1.756320453206259, -0.020124715034598863, 1.5677814677921267, -1.269184298109382, -1.164047868249407, 1.0665355952830464, 0.0830979794240747, 0.1891540542162124, 1.1895678770760523, 1.4933683574087733, -1.336809032058774, -0.5458677225524088, 1.199434823856555, -2.4197357800354107, 0.5267589645568709, -0.08912899647887026, 1.4875624461120636, -2.2236502441873616, -3.026847781810489, 0.5156009321692684, 0.25696813802321006, -1.0536911070536286, -0.8454538426118975, -0.47040028996220207, 0.7872728228815311, -1.2760538079485608, -0.7148114098557875, -1.710726153524886, -0.642512533996614, -1.141977792439495, 0.36705728211579824, 0.9503050339525952, 0.470125698858942, -0.5137050874107626, -0.747831898696884, -0.19405456776078808, 1.1613371668682837, -0.39258301970478254, -0.04434973951390725, -0.2321503924416905, -0.9906107603344833, -1.4747000487179713, 0.17269459585743227, 0.5108406490662849, 0.1711893595181231, -0.6420154934757916, -0.5389225479592438, 2.215706578412548, 0.37086819948558186, -0.17780476370119863, 1.111397729113957, -1.9868219773653248, 1.0969290377846992, -0.9567932077461513, -1.5299603546837497, 0.41865193941383844, 0.10883218656350989, 1.0726363411977047, 0.3120370608094684, 0.630927610439581, 0.36207313841819466, 1.2636868829599226, -0.5075720312242237, -0.8078883548765903, -0.8218664802912142, -1.3145753067064196, 1.0013925545027205, 1.5343441552394863, -0.2282264256712079, 0.46698485710882154, -0.41553022212043567, 1.205138685967344, -1.6901978009619265, 0.03287729263742119, -0.03625263889645758, 0.4989333444461712, -0.05362764461312154, 0.39844089986758335, 0.5806427541776367, -0.7517882788517497, 1.491633950681429, -0.7720784640330631, -1.295004342682252, -0.5669364521988729, 0.06633478485668494, 0.3949925402719229, -0.128988956678996, 0.4086046005436304, -2.528362908375615, -0.2824047494842649, -1.610577069218586, 0.9522816776434949, 0.22095656127118146, -0.9426857879785593, 0.689391020229724, 1.9139252225599541, 0.2694206127674412, 0.37388303981512166, 0.5456938442123572, 1.869426296152812, 1.4135853249006956, -0.29166112238280667, -1.671949201801739, -0.413536416896537, -1.5056793805837798, 0.3433355889116619, 0.2217338990878536, -1.3452519033490073, 0.0904946473987441, 1.3724058359339293, -0.4567230648769791, -0.22169273025278577, 1.4365288805368712, 0.5473882272514611, -2.1418011014319087, 1.1089200494752844, -0.42046577133469487, 0.6856928142814782, -1.8056366222642188, 1.5561537746585503, -0.0908724132279266, -0.07328415922210445, -0.2569560375010761, 1.7382134073206081, -0.19932823019424714, -1.350044086754152, 0.43618519206371187, 1.2105901432747967, -0.772218116087967, -1.7905702451273957, -0.6952217806607267, -0.6420432243090378, 0.2772830870034019, -1.5591313219161451, -0.18430294397627506, -2.2209246975528627, -0.5042015868476576, 2.2395968794079444, 0.6075122391456921, -0.6143346319954646, 1.7371818181620813, 1.060868659371747, -0.5290593185020377, 0.4043184537815155, -0.3518511184859094, 0.1922645450814665, -2.2775818786088013, -0.6096320505735986, -1.6285679736048946, 0.6573779001406345, 0.7577067353192208, 1.5544330167220555, 0.3559562853676395, 0.9445310810087756, 0.7774200223094334, 0.7987931082575102, -1.1951064257599084, -0.6133123986934867, 0.44691676892342586, 1.525330643076301, -0.22185978820873467, 0.5665601597439442, 0.08975860327715243, 0.9382800872644085, -0.3535244782806171, -0.3076055425895293, 0.134988851753807, 0.869117625464274, 0.20513243166770445, 0.2878896973504345, 0.22706426964017987, 1.1492776178121633, 1.0394772515635184, 0.3922398787925293, -0.6268387805140154, 1.5359355190023385, -0.016803916847857793, -1.90715877533102, 0.16462519735484454, 0.8234992866695373, -0.9802728959463238, -0.7240173102324836, 0.6212694168840409, 0.19563222889495988, 0.2535401295239917, -0.6922669653067581, 1.2410197263736669, 1.2205540380288051, 0.319979029407966, 0.48596393965820395, -0.5051786298413808, -1.1436543902489478, 0.18142190105746012, 0.033607447330671905, -0.4893830940941893, -1.164114348891023, -2.0892405707851074, 1.468312253221895, 1.2119132784266617, -0.976669128045211, -0.2551846409603932, -0.810530011050509, -1.0351592763885706, 1.9433390486901427, 0.6268925547476402, -0.08542696150540242, 0.2203929981234578, -1.3897055554379627, 0.18403673827348493, 0.08520677812421118, 1.988542531175119, 1.1820936025016422, -0.8285548349790296, -0.5858095455544167, -0.03969963592119663, 0.12038947014081121, -1.2581741164419553, -0.99466965148724, -0.1329258505309128, 0.317329081065351, -0.5941020510911867, 1.0434293321393082, 0.21159772122745119, 1.7009702581295671, -1.039150247961845, -0.9673499926325274, -0.6612449509490752, -0.9148667242874413, -0.8720984507551537, -0.9780844478243376, 1.5441181994309816, 1.4469756452089875, -0.6308757612099606, -1.021766018399932, 0.3760042260758649, -0.6948904681988931, -1.9930286794040053, -0.16207161735849604, -0.2962932625347201, -0.7725123028394114, -2.0839006138320904, 1.213092152776574, 1.469077921987872, -0.3546323335651769, -1.087058419516309, 2.3434686763335124, -1.6421230389195356, 0.5927216017174655, 0.5998903706707792, 0.20543391918230441, -0.2899778168275053, -0.3772193473258271, -2.2054498759889065, 1.6804394452801434, 0.8840027834701352, 1.7642750978981987, 0.9793314476047739, 0.7616401840904687, 0.8558833519295609, 0.1071448702474335, 1.0433640026859583, 0.2621310522617513, 0.18975032249655252, 1.623537874319933, 1.0202903276384605, -1.0065824456384787, -0.11379643523875595, -0.8967536047722371, 0.7134497520147691, 0.10332953045343402, 0.1287266583146563, -1.0634689436078328, 0.213031909049265, -0.42579055623973966, -0.9700197888982653, 0.29843665775221484, 1.3805325892492186, -1.083698081287164, 1.5967050583900906, 1.8235654582182885, 1.0633040777552163, 0.02642253888453752, 0.619347476746792, 1.9348858335440147, 0.7125861961863323, -1.4772041184017848, -0.8826259451156546, 0.23122767519206586, 0.046550757142712486, -0.03794490163907343, 0.39489252019290866, 1.6722751213965008, 0.6452966717772294, -0.5771826072610561, -2.062056673300386, 1.1185551993764835, 0.20719273469989227, 0.021172980507153886, 0.02167921469080001, 0.7050228437054169, -1.2117523372165824, -0.02477787083207666, -2.124410707707882, -0.277573313094986, 0.48281427444584935, -1.8680126852746797, -0.009058351532802489, -1.8870887999927857, 1.1252710333125906, -0.3654454962831329, 0.27894594316825355, -0.005195792416225346, 1.0442102173620562, 0.9200703184238581, 0.2613435788428522, 1.6672137684703268, 0.649084514179575, -0.2861851303669799, -0.08393930795995203, 1.155965937096121, 0.9398458018761027, -0.776169580128321, -0.1671097143125341, -1.0794648924624188, -0.368094972470776, 1.866328106404324, -1.0728259345762114, -0.25247257133634443, -0.5655000393563204, -0.0038275429400093856, -0.13073860856429625, 1.1826537850112988, 0.730595310164313, 0.9768069172430415, -0.2574437165898172, -0.9174586857068031, 0.46179331716037936, 1.0957967630594296, 1.486502160489884, -0.3751662331285138, -0.18940378192530088, -0.6511505643915018, 0.5960249197978302, -0.9186200125559763, 1.0737603497583048, -0.21900250340671648, -1.1299708933457184, -0.13195406419741418, -0.7962162790492787, -0.1405008775957956, -1.6661899792100332, -0.39856922678355844, -0.5377539694815655, -2.406266541863089, 0.20688949571691445, 0.0903539314513649, -0.5611792751750964, -2.76440935029672, -1.8895255758245273, 0.5561505923962893, -0.24193232609645382, 0.4649101199633941, 1.3981235859575434, 0.6761984797255688, 0.46255226313292946, 0.5091802844805847, -0.24045835347069053, 0.6887708714313795, 0.041306735579657465, 0.9328353694608332, 0.3234001582618, -0.07073657318939224, -0.7748669457393628, -1.5019332563045529, -0.02587549241919823, -0.22505958735791215, -1.7724580984771183, -1.5675698847355093, -0.09524884410663326, 1.1519982482926852, 0.4943908660793789, 0.5303935173279517, -0.46188023613124585, 1.5771700424416026, 0.5029827447278081, -1.0417462418129824, 0.10372709614983276, -0.0369940513605825, 0.09456158247449772, 1.0263979387145703, -0.8664194676359793, 0.8548395471147343, -0.2734015746131218, 1.4057930224040567, 0.35285464681783896, -0.9974249629465234, -0.573364618598313, 0.47962089854387513, 0.9801091074092588, -0.7180024706780884, 0.912371693603784, -0.5003133376449889, -0.979054075650383, 0.22947421297614026, 0.08117705452443907, 1.2665640317777165, -0.5093815625442554, -0.35100234553834025, 0.010836509748325968, 1.6881995567166561, -0.6123836443493025, -0.23466088542631186, -0.5369204242460771, -0.5371358313547164, -0.818233671259948, -0.056265798236507215, 0.011663166308222641, -0.11410329364263838, -0.9734097671089991, 0.9444929506685971, -1.541398567256228, -0.39516403687491614, -0.3756373067503324, -0.17656787290581338, -0.5464406302456927, 0.6046694861067097, 2.7431682239565185, 0.0791331207151283, -1.0556986027694144, 1.3968936607017224, 0.659881262646243, -0.9379966505963405, 0.38625038425170866, 0.34048426975000934, -0.037111741831478806, 1.1612533270468663, -0.6973377206176269, 0.870206365004096, -0.2411349771653436, 0.1884828626227144, 1.4122059078116636, -0.987348946126568, -0.9989432463791644, 0.37912808033382717, -2.0438693927343277, -0.914078208959698, -0.30305672562750785, -0.16564015914851893, 1.9656689193214487, 0.7479329435828517, -2.245616460095714, 0.6456672935665555, 1.1812310554075867, 0.6220571622534494, -0.038801521343699824, 0.15690188977635472, 1.9936017915448176, 0.11945930609174948, 0.23137446737510606, -0.4962940436933437, 1.4756600990677398, 0.3075577019827097, 0.4196800450388861, -0.5724108390883486, -0.45705763040788056, -0.6718468887910904, -0.7407398644816158, 1.0241264502102174, 1.4385706774989873, 1.8789937809142676, 0.3915482004887515, 0.760887087417055, 0.7588753734979826, 0.304299479596831, -0.22586318857980664, 0.1116479306488105, -0.8637503296611588, -0.02656050675811324, 0.7940661802110364, 0.4569170997920998, 1.1985518739582106, -0.14174634886062384, 0.11441255178563363, 0.656581509839619, -0.03662699054186474, 0.922625398031203, 0.8712620680917216, 0.9253194531254669, -0.4527932362533207, 2.090018654364256, -0.5929020883475313, 0.6231928263774984, -1.2404628570962526, 1.4172662104994167, 1.234247883533445, -0.9127642138316339, 0.21703523239921219, 1.0751402873118991, 0.45684495188983276, -1.0475814763685334, 0.08875300561799827, -0.13340979209500417, -0.373581292087281, -0.12759827811594018, -0.9218710843755534, 0.8690753140383106, -0.21557160213206067, 0.01962193672105645, -1.092525081677982, 0.3357342784203425, 0.973213058456583, -1.4205379569480228, -0.2589932964317947, -0.9260579977473077, 0.09633263784368468, -0.6317001934508998, -0.4914765886917423, 2.2477298928070755, 0.6172344961622708, 0.1750295938061822, -0.8050193356584128, 0.18828045268984436, -0.6959959248109631, -0.3513000781765843, -0.8960883325266927, -0.25990350619313807, -0.7165977932631814, 3.029536232612464, 1.4251716240101446, 0.4380729917496688, 1.1897354019565043, 1.8740865710210728, 0.20212034188643235, -0.36615254690826543, 1.3476430630256064, 0.32826512244264866, -0.26560760828454216, -0.9380268613692841, -0.6526797379247642, -1.3343656154596266, -0.16800970963058126, 0.30263680862194253, 0.44281696674661275, -0.7280160308698599, -0.6174421529375551, -0.3240795087403042, -0.5399137557474628, 1.4227254891358325, 0.6536168611568751, -1.138359604002305, 0.6878474947947231, 0.10907560796561061, -1.4040783534796886, -1.7018939721190123, 0.6517181921966859, 1.2483397708481305, 0.9110914385720033, 2.7648319070882468, 0.6460045736894506, 0.34829641310887527, -0.674475661585901, -0.5064720055800014, -1.7191036498877064, 1.4663118485199937, -0.8738933896752755, -1.3980177519816384, 0.03525859378593698, 0.6252856496821818, -0.6799842878704876, -1.502118217499964, 0.6807327148347195, -0.7807024637694131, 2.29577996783293, -3.0286075596394877, 0.34537841543055753, 0.7600112179204009, -0.6723410166194005, -1.8628878233493422, 0.7436573103003509, 1.8513707876655927, -0.8645478282080831, -1.140875565553415, 0.22516303374529734, 0.3186641798958763, -0.6121891668388157, 0.14311867395496491, 2.254446962016721, -1.028828774364725, -0.8961455816456798, -0.027840010461619758, 0.7777707098039491, -1.0418827103059591, -0.9767454647499524, 0.5114365335257197, 0.3775804443457394, 0.37993680262430823, -0.3972209390719393, 2.5549481051832696, 2.40245533064676, 0.3563102176807483, 0.40937427775537677, 0.9389410305932164, -1.08036258298818, -0.5982436147167518, 1.4125554049825544, 0.3707835073354209, 1.2100412073314804, -0.9213451439026702, -1.1534439969932433, 0.7396653756276187, -0.5368426792061368, 2.4373669278376573, -1.5769509960397472, -0.38155944855379864, 1.4145299424251474, 1.8344629910814432, -0.9088533763670062, -1.7442695679627467, -2.8970182118260914, 2.946720899552304, 1.3928787590215055, 0.19038081236260704, -0.21654301084752292, -0.17840484047692412, 1.1240751872649155, -0.38582439782694417, -1.0155441993464156, -0.02069266198510447, -1.1914248547627804, -0.888103421930768, 0.48362516913750014, -0.030584695569728933, 0.4722026631876914, -0.8195188174529063, 0.05359090887790506, 1.4344906351132924, 0.6100988136832498, 0.5381541907725964, 0.6052624320676243, 0.44257775963759677, -1.0655374353070997, 1.1864886975148725, 0.25502897410153275, 1.3634791543839477, -0.22140088698800942, 0.5528414988607331, 1.0554262911428576, -0.22443327002343066, 0.6188191010822142, 0.6378647330191953, 0.046371412301536984, -1.2028563932383236, -0.8728111955441441, -0.29042834642253473, 0.664036668854987, -0.7957237637687581, 0.258600334538927, -0.19551000439003358, -0.06600213151236461, 1.5132056752586958, 1.3097644645209614, 0.33643000571452186, 1.1626806923822948, 0.21910998269254545, 0.5233405498875018, -0.3724808607051758, -0.9058723826931313, -1.2053148865466314, -0.7842984460558112, 0.36598674714173746, 1.0450795437567477, 0.36435611007685126, 0.8163665954998373, 0.4122628648810436, 1.2066333945635297, 0.41277641540751175, 0.806515757868928, 0.3483340500972859, -0.824119081762036, -1.1238870677953043, 0.6801311776961636, -0.04115913073138281, -0.7103434261639249, -1.4497668093040779, 0.6864554174794174, -1.2587050027436115, -0.5648809608176621, 0.6610019947869249, -0.03056532790685401, 1.6327640846329283, 0.3886970471494844, 2.1421231846078324, 0.4739298754251563, 0.8571997066747118, 0.3498019440806284, 1.078811702407565, -0.564538483745588, -0.1910579092085786, 1.2214120244516868, 0.5185866656695782, 1.1326815117897049, 0.8266817489950045, 0.21456024013438263, 0.9085710415711005, 1.3246677783627783, -0.3581580447377526, -0.057793508704819425, 1.378656519933409, 0.6874639894736517, -0.3714508386815907, -0.4757907466077242, 1.1244716406229598, -0.1638141436773834, -1.333219486790689, -0.31516828855216034, -0.5847022786610543, 0.1862866082540148, 0.5897589783306422, -0.6868915664393511, 1.1103089465531228, -0.5490990544710783, -0.2495876379426766, 1.858606387307233, -0.6999869635746353, 1.2048013449345163, -1.4170495441088502, 0.8145623583086367, -0.3833193252984146, 0.5464198565158164, -0.24032323243040776, 0.8936640736525716, -0.13579562821019983, 0.035030829559830924, -2.006388569853549, 0.8569521034166467, -1.010465693248346, 0.667727703030327, 1.1539284197122779, -1.1648708075619174, -0.44873733069165106, -0.10886526918096659, -1.5058459688570411, 0.6301098213487233, -0.27151001694810556, 0.5084372407243439, 1.6167107742101023, -0.8441533453583441, -2.5768033242138317, 1.2639568922324127, -0.32801389592373054, 0.1837385338683189, -1.0664344688280152, -1.2957712828487293, 0.41260673902591766, 0.8172213853446825, 1.4225711217701489, -1.10324905530924, -0.3406060967329653, -0.015209200557298868, -0.6513435640863217, -0.7111565034442583, 0.8665796366055105, -1.951460396266099, 0.007029550867426688, 1.0839071360424462, 1.0723820988013428, 0.6141159207784744, 1.3574938863303003, -1.0210887210134587, 0.14333309135808897, -1.9930609524220646, -0.28066039609868915, -0.46426067940796917, -0.5941130680494124, 0.9316233300749175, 1.3630991892291549, 0.47263225870338105, -1.2033472565468577, 1.3360830060403341, -0.06343423951019966, 0.3550693525169207, 0.3551748940927219, -1.9328201371870737, -0.36910011005703885, 0.2100353145567073, 0.12491057881936658, -1.8550264955372915, -0.5069737770410557, -0.8846210238309686, 0.3942189855160606, 1.8601376834780214, -0.6736850998095367, 0.33837461628117615, 0.06823462821006004, -1.3878153541356886, 2.25448089321784, 1.405160207701642, 2.4501655037886088, -0.12010013617349963, 1.8746683792483507, 0.005910444162055264, 0.0369813072493011, 0.08435143412380576, -0.25226571980737894, 0.7308551079376229, 1.4009954780602427, -1.4014724789281077, 0.5518822941103981, 0.9865116104022733, -0.8796346962367741, -1.2645763092974285, -0.44027704868813183, -1.193783625724348, 0.4222717470464174, 0.41730587060781926, -0.022007480735388114, 1.0561831975680824, 0.5395348412629409, 0.5662111879804891, 0.3525856713450872, 0.026845901554771415, -1.5132517927624864, 1.5159598856035383, 0.9102482923947004, 0.07232227437485365, 0.6040928123313598, -0.4839906485484835, 0.8558179301008773, 0.7890317576917998, 0.8098878092954783, 1.155885058034934, 0.25951612057931184, -0.6314826638804726, 1.3858494111343767, -0.9227177998489337, -0.25036312317014486, -2.7512069482430737, 1.342694468220013, -0.20170489261336516, 1.815441534814134, -1.007819898811419, -1.4327451251484966, 1.053121585619417, -0.9933302753068562, -0.06193883489571919, 0.48121508188815854, 1.4421986293411475, 0.19877111562142735, -1.3034687248224266, 0.5570981342634284, -0.5644375884552666, -0.7607974434110457, -0.36762016320322405, 0.5366925902446379, -0.21111073202048913, -0.6153476639854308, -0.0554156153189568, 1.6598124922477049, 0.5302692663118362, -0.3023872488844328, -0.3396010718769546, 0.7674785503066144, -1.0951047433702574, -0.9144865291673631, -0.3017459498423891, 0.9872989969859539, 1.9436100692755274, 1.8711768129903337, -0.18853607651505902, -1.5569357613582548, 0.9248487846526576, -1.4980576294651766, -0.13899863011136962, 1.9254160435089025, -0.05434025733165812, 0.18364869574210574, -0.724048984355345, 0.4560463907430191, -0.5155468798034829, -0.41134568457575466, -0.053934530473409695, 1.2166883550695273, 1.5506999495632097, 0.36631552368999043, 0.43299713790148886, 0.3331460518713645, -1.1125648770262553, 0.08042279549238128, -1.2980602321872021, 0.24335153892187006, 0.12627123083743397, 0.4048078020262504, 1.8155312077136265, -0.13645776252883743, -1.1536284951640734, -0.13135616940931844, -0.2010997718718741, 2.0598006644474585, 0.7619181608496266, 0.12277273166607279, 0.2498949614528449, 0.7015749840477475, -0.7044956133901503, -0.31672705560099373, 0.08357195984791771, 0.21268413358780644, 0.6394534502218904, 0.3427818685137696, -0.6963030895776011, -0.06779272671766902, -0.5233822976595307, -1.011454577373401, 1.0171673697967634, -1.552621532086433, -0.07602441397641208, -0.6103896373761521, -0.2936262062501122, 1.1615949603413118, -1.7442892246625927, 0.6384137590175443, -2.3814208170824056, 0.6147084102486161, 0.7132380891482638, -0.6690503808798527, -1.0985457343668747, -0.1995346204860838, -0.19613886069676728, 1.1075404021852389, -2.4186127174270755, 1.2484748006099369, 0.1330459799009836, -0.13292851482418375, 0.23426021517333315, -0.2600642284636564, 0.8713878284897747, 0.12669225157233718, -0.3233353851255257, 1.5486115348199374, -0.8943108258595196, 1.5457847809736176, 1.8357888633306922, -0.26311662404929564, -0.7355819727142062, -1.5075782383667684, 1.342095577657747, -0.5732715045818311, -1.2423326535456085, -0.7585555179355339, -1.5646876794537863, 0.5838894093015926, 1.2204870013502045, 0.35866820004465405, -0.7407038033997484, -0.9893648634291112, -1.399436908070212, 0.8410489939175814, 0.10796074188051298, -0.5562171462748663, 0.8635881398155476, -0.2307926913957915, -0.15907703879418758, 0.6258386453567852, -1.7325790170588897, 1.2625862181800425, -0.8509462438524548, 0.46672002406301955, -0.06686910252645323, 1.77438391593553, 1.6751260801860524, -1.7246661493730844, -0.594547436318015, 0.38681835594300573, 1.3492872458744303, 0.8508670869844611, 0.32260159292678975, -1.3730483982811843, 0.19784082692807817, -0.8503058188214809, -1.6515041790555667, -0.36445877249699427, -1.020628926869544, 0.4434448622948652, -0.36109256281224783, 0.07055949782734935, 0.2250661766092002, 0.06981195090854804, 0.422234250286329, 0.599877351220134, -1.0562194361347383, -0.9685712312020194, -0.808906386704313, 0.8952853572185593, 0.925440058814193, 0.575546805306371, 0.7164145713691875, 0.0776537165227251, -2.4729201102450147, -1.7786329099819365, 1.7456451194443938, -1.9758485845759937, 0.8392751544983217, 0.9609693912289266, 1.1269412013258646, 0.14636086921183195, 1.8239011100339544, -1.355652424235108, -0.5085618092520956, -1.590519207456511, -0.6658993751437685, 0.6079358030972617, 0.6333728948845505, -1.2926805271581925, 1.2093230963337442, -1.0337822182491507, 0.7448281565491764, -1.1647731836026265, -0.9271551965288328, -1.310350879832269, -1.240473917167141, 2.6467480579201963, 1.041545099739593, -1.404747391811048, 0.7834657439655484, -0.6721632574010593, -0.8218307211214069, -0.17024926002078233, -0.027276545632571814, -1.814912318369839, -0.774839562006235, 1.2500278570245271, -0.22969450672723205, 0.7003020922156855, 1.0316381093859393, -0.340912439885628, 0.3594727833265081, -0.409927739808679, 1.0972821583486876, 1.0336263621722008, 0.35279273819440615, -1.3620383660253443, -0.6066919772223414, 0.18086697772368718, -0.3773786099778627, -1.8725406644001183, 0.33709135948429203, 0.5183852262007802, -0.10781019175572491, 0.28229858394034063, -0.061852060899294216, -0.8886980335016724, 1.1746250172581123, -0.6564304530559827, 0.8402748330364904, -2.155621228368669, -0.4275370053692115, -0.605024119233664, -0.49669239747960336, -1.673348617712448, 0.13060408135636148, 1.1333705098984184, -3.535362004808716, -1.4810630229571868, -2.3361878815766612, 0.07473869769120657, 0.7377142064501293, -1.2977414128423654, 0.35506663119002785, 1.775325398021657, 1.5010773878891568, -0.751054495857644, 0.16289780022141345, -0.9460144264010888, -0.349807529908942, 1.3130100596962455, -1.5042218557255613, -0.6605304704780566, -1.3670385546849422, -2.0121723436075825, -1.5546966574389312, -0.7852418986286329, -0.9341059666875186, -0.1735499507158202, 0.49636350662519096, -0.022507535420212155, 0.0928886300583816, -1.1673661563089834, 1.3868122154556555, 1.5670161535353941, -1.6454463857150166, 0.9352520212919094, -1.1082727765650249, 0.34135353858985584, -1.8567118452221205, 2.5856698727743392, 1.2662971922568658, 1.120610099400585, 0.30500772878668, 0.2895846383309075, 0.8640780871061361, -0.5490241567206199, -0.7724915576284445, -1.2566153183708757, -0.7858739345316847, 0.8440151034009553, -0.10211806261559023, 0.44318467269248646, -0.7874449405040445, 0.879365685100246, -0.1909476553848829, -1.1947994922951344, -0.5992752838533904, -1.5618948197250169, -2.26222626017997, -1.6123792211685715, -0.7691021668942192, -0.679261758551185, -0.7853030017743872, -1.3649423954943156, 1.8080450740778267, 0.6754846844586777, 1.2914442915346571, -1.1294185929478127, 0.1283403406273351, -0.2874776512377746, 1.1596990106986458, -0.7322805974555348, 1.0904666232203921, 1.425011430773455, -0.035660772055963116, 0.8437807356789907, -0.9492130799893814, -0.1347382467753604, 0.6297291082734203, -0.14991424588837976, -0.4716777503626242, 0.7447278368769443, -0.4179768882913802, -0.9149092293905802, -1.5546246639573842, -1.3797174299274402, -1.1479498238791246, -0.8936135176231509, -1.9350407187173857, 2.1948344020971526, 1.1236120831488259, 1.4211131283830027, 0.6147492093655593, 0.4344440888959294, -0.3826694159076684, 0.2686964526064946, 0.08552299493586282, 2.9280591186146645, 0.1920049205071426, -0.21427018194648706, -1.0724485382567577, 0.32212767905516854, -0.6702430645930209, 1.6133847751439323, -0.4148558681604266, -0.7055216230621582, -0.14964497073092495, -0.1624879920530819, -0.5004617918456666, -0.24144879464561647, -1.803750256912161, 1.283658240381345, -1.2194875323563699, 1.5159371515255204, 0.46353135841701215, 0.7837620271623745, 0.2768561263228808, -1.2012315529633604, -1.9110299200126317, -1.213533802789681, -0.14446025052278424, 1.2605989360421563, 0.7995960965037758, 0.6171118203346451, -1.288340749884654, -0.43807468140986705, 1.6481184109638378, -0.39594154571883977, -0.12050664404684688, 0.1011530261990989, 0.8622019666549412, 0.21160672976640985, 0.384180781486798, -0.8940414325770148, 1.9454765079659564, 0.12628129635194105, -0.7077153339205446, -0.9442997738929064, 1.1298444363101785, -0.5663542184882496, -0.7842766256698281, 1.3056041635946687, 0.41618687689625444, -1.526936153211983, 1.253770549069021, -1.4123106213626957, 1.5251116345446116, 0.23702725153804094, -0.4854539313623436, 0.8532626917581647, -0.5824508482656073, -0.7295347453019185, -0.9969345852013102, -0.03691590129147875, -1.1563124021715867, -0.028455507192286875, -1.3662300266388074, 0.8919278308729645, -1.8498432302999392, -0.06281706529681384, 1.085831399717125, 1.2967883454615963, -0.5880727981292111, 0.26718708347503106, -0.1070154331718225, 1.7967705062186143, 1.5400162096052232, -0.055313019868995804, -1.139629315164984, 0.7551368175664446, -0.31165623420141086, 0.9421784582797217, -1.3440135549550514, -0.8107587003357282, 0.45554756904831484, -0.5118138971879711, -0.38957497999409907, 0.1874503377076086, 0.18851548700009352, -0.287691526511735, -1.5225376327345104, -0.0429876464949879, 1.1716728731040504, -0.49984010685338254, 1.2153208164305593, 0.5700105288908687, -0.6246817306271216, -0.5782779651040679, 0.2635844718055769, 0.16193797094991508, 0.13460405181674318, 0.2986668478033585, 1.166864516615866, -0.7650886920104314, -1.162505595737298, 0.7120305018574641, -1.1597026701476896, -0.22869712620193536, 1.6641942948535242, 1.4927402093458582, 1.1075624729405522, 1.0064621339664974, -0.1739104834345236, -0.3411538148854027, 1.330351999697222, -0.8813575798297789, 0.840058679331898, 0.5101875483908368, 1.00096608085074, 0.4147799124750345, -0.6030713811585262, -0.7843953123790133, -0.19016523492518658, -1.5309672834281427, -0.7634973975367498, 0.36649844589679154, 0.40904387947401255, 1.0458307560542868, 0.02758734041609767, -0.17668079392227345, -0.6726126231795161, -1.1454081883668479, 0.887253115069707, 1.4077888739071616, 0.5559470082819162, 0.7100447023570023, -0.3883748659809843, -0.02586205789632184, 0.4548024023045847, -0.2111548857505642, 2.7288474846375865, 0.804251585267406, -1.182288630749584, 1.66134446201072, 0.4905714547226744, -0.41239895662986875, 0.1457617075335198, 0.17851445056871096, -1.2229365489952968, 0.2269934462149745, -1.1598305594314342, 0.6951534682624213, 0.21839674517205376, -1.1305662294436152, 0.13619550964174443, -0.5663209695259301, 1.144596855596826, 1.620717586540117, -1.4193972820387761, -2.3863390111151275, -0.8489888712660404, 0.515679897360244, 0.14583152971338104, 0.09365984325747095, 0.29917654584451364, 2.3099068314619435, 1.0085380196464322, -1.0633872233879176, -1.6521472986112395, -0.5766951058158364, -0.9898180452969456, 0.7818436235169502, -0.4735022962163873, 0.5300066188894058, 1.0235187006185287, -0.3072967836594772, 0.8781464505102402, -1.454473394846184, -0.2912136829014175, 0.001325587560023676, -0.6921628193920646, 0.009403213103921561, -2.007293520035276, 0.2344631349945028, 0.3223717051641838, -1.2847218752685594, 0.3754312537484771, 0.2977722840899151, 0.49116411427607526, 0.6727119088678034, -1.368229895489151, 0.8994892328270951, -0.9013823932975547, 1.144541089667396, -0.00034256596528694036, -1.334567859021209, 0.9847313531653011, 0.05445374517489077, 0.32386053285969774, -0.4379097310277699, -1.5869454150399993, 0.25719406533459893, 0.1720018443957119, -0.16254902273788852, 1.2245182969421997, -0.41171690836777536, 0.24108117380617028, -0.2187561770609582, -1.5385190092794676, -1.4675410486482956, 1.6389061172346204, -0.9781593954472556, -0.7041986559588084, 0.7119392183298511, -0.4135137900795783, -0.6278185599488114, 0.9102988977029058, 0.8945925942980147, 1.8642195802011545, -0.6462277587555387, 1.2001095161984663, 0.06512807272669421, -1.4773912331341612, 0.4548287195515942, -1.4656407912145897, -0.27892593200051163, -1.4372683525936178, -0.44360562107536294, 0.5012434339605334, -1.5160994575651805, -1.618857207098991, 0.4054539247120753, -0.10723902555437928, -0.4069400154845239, -0.4544460941729008, 0.619174935196674, -0.2947090941005665, 0.4537982948273473, -0.2548660683064119, 1.2076337217658375, -1.613843646862205, -0.18702352293777527, -0.03902397036256004, -0.8941917401085202, 0.2566170371857854, -0.5190848454995961, -1.5468141392066654, -0.5179074141856735, -0.324417905074466, -1.4283892831737124, 0.2721559932200924, 0.8173782922469932, -2.2188699734613353, -0.4381281635280353, -0.4934758612080652, -1.8837790355199568, 0.8347308460134204, -0.3886675557215619, 2.2844061760172054, -1.0106183161776305, -0.3595195214063903, -1.0236183941743688, -0.4043255275853388, 1.2219759990670993, -0.10204233103762096, 0.023254465053647262, -1.1086269638274446, 1.0496943897741882, 0.9118702920774892, -0.4365903727651897, -0.22451768929620317, 1.2358498349364897, -0.5361767306219701, 0.41738700834764647, 0.437323290576207, 1.6415568788383812, -0.2837344645334363, 1.317845513477078, 0.38149773323517966, -0.5600969370871676, -0.4890124250023166, 0.687439628595176, 2.3411633364675257, -0.21315396931810235, -0.05486113851994383, -2.763374057056719, 1.3190344739805653, -0.2791686030634928, 0.5225879058881862, 0.36762714145638153, 1.4500346204931371, -0.35495508621628924, 0.5789974726603653, 0.11970085125377433, -0.7561706068843914, 0.5078573070629162, 0.2549072856321168, 1.1051835566637307, 0.8771422223949878, -1.5599607131890516, -0.8897439708730301, -1.4895539010945311, 0.43116297427853184, -1.983060361365775, 0.5720417200538174, -0.3944342020881663, 0.8036203894695197, 0.9751964408562354, -0.21034022540483543, 0.5147404774944573, 0.4596042456791779, 0.8052003410090596, 1.3277672551935131, -0.5763483991553965, -0.1512941944763334, -1.0194689420918053, 1.9544722817354765, -2.577334113058353, 0.6814339417201897, -1.599288619855855, 0.20783652606426725, -0.23043039710614505, 0.25868062522583024, -0.08517957452016932, 0.04005662365119848, -0.5351285982262447, 1.294283031041158, 0.8736736024468355, 1.23397239385111, 1.3636134306546601, -0.3190413416859645, -0.5891586371922022, 3.2033338697804443, 0.4302054655653772, 0.2048598892730687, 1.6135873484296794, 1.3087553361283595, 0.07795398684994068, 0.06017232338056662, -1.1440674575630978, -0.39895508341467373, -0.707922738228277, 1.0282217131209757, -0.9283600492912958, 1.6371727815115629, 0.40905142258429367, 0.47273008957559676, -0.5708326476236345, 0.15981221677493443, -1.7651716089252147, 0.09737124841868929, 0.21738550941605905, -0.04254772000210557, -0.4934525243066749, -2.125133725829955, 0.42050548082283923, -0.33272922004161143, -0.663670747971507, -0.36089522910289473, -0.7677560762391656, 1.0464410913482969, -0.37643552543421366, -2.659914243352735, 0.3307138572345163, 0.3185170951111827, 0.8909827699347782, -0.4111811028137814, 0.5216517831276677, -1.7894512726954108, -0.29856749318765163, -0.4505112574806662, 0.07011343334466182, 0.3330266945799158, 0.09588967998831115, -1.2480110100387853, -1.2543859511555193, -1.1317906974402554, -0.3771862880003223, 1.6504621661781693, 0.05733111208288221, -1.3685303167520393, -0.4982664595963263, 0.9623344287041953, 0.3019407640441454, 1.319399952805701, 0.4836529710053659, -0.5175326787171225, -0.5432971997165437, -0.07076240413743651, -0.1657626610098537, 2.2683339176063346, -0.1419936593512652, 0.2247581984014297, -0.28742007712160217, 0.2564990554662083, 0.32314955420004804, 1.7842086509576425, -0.5959093719027464, 0.794948073851786, 0.3520307413212241, -0.6560515155450325, 1.590485077590985, 0.6823054745000988, -0.44399490210170245, -0.4853193080049726, 2.1194702997235537, -0.29706515495319824, 0.8559631279059987, 1.3075561509104476, -0.3268435274932489, -0.13141182510713523, 0.05968616003449988, 0.7995288306469274, 0.37596549013139685, 0.47741996547148285, 0.7411562106158492, -0.2282783910012067, 0.8004511984503828, -0.022948744597769858, -0.01911951707140444, -0.9636259178912265, 0.46904773234365194, 1.8746215132981896, 0.42963635858914573, 0.13301651292746244, -0.5113147463259088, 0.8785152096006928, -1.1583633106968834, -0.3085273666182596, 0.15779795573549313, 0.5244300724661985, 0.4086410071954687, -0.6733613445877404, 1.0602381181736364, -0.8361222724447707, -0.9535944262550321, 0.8891222954371669, -1.296521406381733, 0.9323403879451682, 1.7503145010308743, -0.6859125597548219, 0.22966343873828937, -0.052120934434058956, 2.267606172472681, 0.6828420318197961, 0.014528192208658624, -0.8112737121281355, -0.4509569225007198, -0.3586105624605621, 0.38495232279233565, -1.1871283968417814, -0.9002286118711995, 0.6453601190341816, 0.6850095914262766, -0.8077898297731725, 1.0677312585285355, 0.35998493378785035, 0.013118938231699523, 0.9580229791390023, 1.6828218293396058, 0.10680458346018255, -1.6815530797386542, -1.3600012870890532, 1.8600375730767018, -1.3482216269062735, 0.5056006296953333, 0.39889903026638723, -0.2917664202065572, 0.8870343410323484, 0.2978235051418668, -1.0788906443757131, -0.9165084803351768, 0.377940446767428, 0.7605669406402393, 1.5520823214526942, -1.2739212321827784, -2.0201557960818137, -1.4885475038155582, -0.9389864523889787, -0.16336016535212694, 2.0149716521052965, 0.45396602839290534, 1.3213230540267997, 0.2867972392825576, 0.18987022124790875, 0.8586223477192022, 0.5515171796135586, 0.8279657112984399, -1.0078619404822844, 1.5677250054022653, -1.0496994404284923, -1.3392437113771574, 0.3357410764446335, -1.2521163029581426, 0.09117459015000462, -0.9870299516952421, -1.4192199783336832, -2.0282575442814963, -0.46996382134586445, 0.4902805523901181, -0.3852005775857098, 1.483550854846361, 2.724796424918937, 0.6377679993827831, -0.35559238148836403, 0.277601962246249, -0.7223624063727835, -1.0576737240188656, 0.1267714834888679, -1.3559819093167444, 1.2364084103035788, 0.9531411645660189, -1.2444302403335838, -0.05438666727225704, -0.12624259123180961, -0.3458623963549461, -0.34443247365747187, -0.3583780568096465, 1.0668835104896246, 0.3064514191821689, 0.3705913708636493, -1.3850378100006695, 2.778428346130468, 0.7368996181360584, -0.08221506049271837, -0.29359709139641105, -0.5234471902539104, 0.21368555603503583, 0.25365799899164715, -0.4820434960083634, 0.26092091799347733, 0.15868693396021138, 0.26014338735329984, -1.8005624671422278, 1.1191904112062958, 1.4321751779212357, -1.00337836092249, 0.7417065835859613, 0.28875967134297936, -1.7735951534420624, 0.14998514962780093, 1.0275469954280165, -0.9137794270635236, -2.157484132776772, -1.0412654028217867, 0.5304597458103103, 1.3764949664248316, -0.50062902827078, -0.6205809988713152, 0.6924722529028111, 0.24395609604995852, -0.033447644643870886, 0.8152077745882443, -0.09491598801072412, 1.2970321545344945, 0.15525668752154326, -1.047318487343835, 0.5451179900245945, -0.9042925913651709, -0.6464719546586982, 0.1017133198920203, -0.24623497292205926, -1.6761483348812953, -0.2304673073083567, 1.130893071389299, -1.132303968599221, -1.2973132995581516, -0.4012816527720304, 0.1304185916013762, 0.44336403082117276, 0.10044750680194317, -0.9398387546932907, 0.5515914355807029, -1.8802116305468128, -0.8813191935785619, -1.2286705497790824, 1.6653354199565695, 0.8848978674801492, -1.9768991110704428, -0.43788740861403325, 0.338251166210124, -0.9116329169227446, 0.20156643073696945, -0.09192244350528021, 0.6161242734705296, 0.3978329045472997, 0.13084252265017185, 1.223199690170621, 1.3562237486470672, -1.1430944744295524, -0.41741996804414516, 0.33031013412105514, -0.8172193548389473, -1.2453234643881983, -0.6413337750651413, 0.039573016579026864, -0.14740008832568227, -0.4177598714639895, -0.29195610286818696, 1.3611538295492653, -0.4328302129326479, -0.762039303774468, 0.5785534347771372, -0.4510125880516439, 2.0762289137630217, -3.3646244314154394, -0.3732355112031303, -0.64487709694038, -0.006840860228930624, -1.2769171911226032, 0.9487455976873929, -1.1963308428410682, -1.7418408047158644, -0.8256546706634722, 1.4144820463064918, -0.5228252668735617, 1.093790970102805, 2.0029444686774114, -1.6976385166175143, 0.8257110072127092, 1.596910954397773, 0.3370890667638153, -0.05618769958186914, -1.054972813653601, 0.00351440928905328, 0.08952997958436928, 0.7201589500404939, -0.3654642026762838, -0.6934304886939762, -2.509035367926132, 0.6047984665681283, -0.549540924774312, -0.9963852253025338, 0.3450388360782421, 0.8120011041218427, 0.2757310056502122, 1.6439078660150421, -0.664549371566127, 0.5978128540052375, -0.5755636156915432, 1.3075709300494347, -0.07823628919776196, -0.1608094010817079, 0.01703444931713892, -0.442127556509112, 1.0278371480391881, 1.1271645361170497, 0.04476687944046609, -1.554571564627264, 1.1960959118701846, -1.3551603957504461, -1.7763609125442212, 1.1774096944292234, 0.5296409519346362, 1.0502657843981675, -1.1868425478649793, 0.7019324571968834, -1.7196948227954167, -1.8317539024738403, 0.0013058023440678166, -0.4919877087008088, 0.8274687695824142, -0.31258751159139875, -0.47041516436773945, 0.9753207411387802, 0.8217525705206938, 0.7075512713115991, -1.3328306359099529, 1.1786266391122113, -0.8590577666456538, -0.2415925718347946, -0.4876150625596988, -1.0134960526526626, 0.9803436352296506, 3.337532766222, -0.6792104326396363, -0.3161697732677392, -1.4265646486379795, -0.16716576558874566, 0.4867180561803277, -0.4533767378002276, 0.33172072762685323, -0.6043554901587045, 0.8227398425175304, 0.8897719892824261, -0.7467590413058094, -0.7587667227871666, 0.17632835280748937, 0.04823066795278035, 0.9611088453685285, 0.7918473790311834, 0.5946196954735394, -0.742600306488167, -1.0688875696369962, -0.8756920710445276, -0.6182746121028425, -2.2514369684120306, 0.8484099811376317, 2.1723531482843543, -0.9783134720571803, 0.47475152736946863, -1.8293121905392464, -0.814470596710315, 1.3479005017850563, 0.917904852022933, -1.1075910044860948, 0.33340670752434326, -0.0909802678331558, 1.3952399887375841, 0.44852888127752333, 0.16783186929560134, -0.9147379385283977, -0.07741383771643455, -0.7547447327178206, -0.3404572974061015, 0.18675924602798527, -0.16772254534773476, -0.2777359699129611, 0.03599115363577081, 0.8407367323465846, 1.1617195984147546, 1.8927006186353021, -0.012140157211059576, -0.013370051469501102, -0.3380711391977794, -0.9544740107030519, 1.3259934450971167, 1.4272821597434484, -0.03433624530890395, 1.3583775865697494, -0.7302355210395697, -2.2036912636022046, 0.24388051144186587, -0.28263133556209574, 2.159033675922345, 0.9464858846530164, 0.2805924901684015, -0.9003970985044201, -0.945458781830454, 0.5225240453151588, -0.04588442665333611, 0.4116099920729722, -1.0710189501817926, -0.15961454904552455, -0.8416421489219861, 0.5475049931638313, -0.730850650233281, -0.22526472987030796, -1.6397349113617288, -2.369588247763123, -0.6533152779876588, 0.8818672557856367, -1.3674111725360492, 0.5025253021350322, 0.8532072596683764, 0.4138571967415257, -0.007020886201338848, -0.20120476799640652, -0.5137979282909257, -0.18802494675662093, 1.223343141851714, -0.4146219198957361, -0.11991457944288515, 0.24126967938110547, 0.8485765678419261, -1.6550118705998496, 2.099194159878492, -1.2448243159787666, -0.5722541403569429, 0.9863925052513992, 0.6044826739242728, -0.20551736935818346, -0.37689674389231154, 0.7633566747989955, 1.305140758531167, -0.47438093804060727, -0.01875255476416278, -0.2616594407476744, 0.7481446469788748, 0.7558492724164426, 0.6070358825998041, 2.0103772008806566, 0.05835886780119723, -0.8681464532854981, -2.230230698749515, -1.508927219306822, 0.09921622426163006, 1.0415269232429327, 0.5851927646466683, -1.2697463759017527, -1.8896777017743198, 0.6789011159296301, -0.6830282069116685, 1.3660771191353145, 0.760135215219179, -1.8787965120013035, 0.5438388951066011, -0.07726671106478994, -0.2426014093858941, 0.7407162565079444, -0.32121196405867214, 1.5706010210039538, 1.4232642017597004, 1.202214794633655, 0.5270540587665855, -1.1744615369794393, 0.35192748847523997, 0.27562538527209335, 0.9622821203889894, 0.4059373454247389, -0.6711791384635566, -1.5406676417137308, 0.21446013686140109, -1.4710132415520152, 2.5280490426221434, 0.5063370776351088, -1.2796796233112835, -0.9486045417865002, 0.09160227584817797, -0.7582226796313788, 0.9256143352376954, 0.005794249950511474, 0.10726788827940503, -0.6023727851798905, 0.7525204697774032, 1.1169655667704326, -0.12993893772762222, -1.4292064548971826, 0.036534736952023965, 0.35825852904200556, 1.467811912609889, 0.6663369295783986, 0.5488125934468644, 0.14995499884011948, 0.01003219553769049, -0.4420729022446703, 0.0909022345351953, -0.692947132660031, -0.8459922969212518, 1.0526250456945814, 0.19775594228764848, -1.0243613974683188, -0.4368832893471368, 1.1707653537938993, -0.20978222384299858, -2.7897875452774135, -0.6749289648169978, 0.5550793127923569, -1.2253586106888956, -1.4383500412270025, 0.8128534854870193, -0.8704448005958046, -0.7921053477571187, 0.9363324942149346, -0.983890654590988, -0.832693657087493, 0.1475643709139907, -0.8499412551300556, 0.044118293875817394, 0.9607588842749406, -0.19538087882079308, 1.0790557992200747, 0.49676852902689805, 1.0064141184521507, -0.08117392817774854, -0.06104890877248835, -2.307274559833393, 1.6826437705060369, 0.42279802902970043, 0.08869208937754615, -1.5432376172616684, -0.24795348582525972, -1.4566063573893766, -1.7224894394059664, -1.1907547018801254, 0.30944298914149354, 0.10442067110009323, -1.255429773859431, 1.4190812773141965, 1.0260384077450662, 0.2047474569917333, -0.8977292444010785, -0.5394690708914636, 0.6756047632927499, 0.2736603308640937, 0.7009726219184442, -0.7051299723360156, 0.8873829564948882, 0.7529728245946036, 0.8714161914433818, -0.06706708649470511, 1.0362009003711763, -0.9584554734492333, 0.1218305819567806, -0.7229074935286037, 1.8161519041092677, 0.8201809748399228, 0.7412248646015261, -0.13991529791710539, -1.8539749373512837, 1.288660712811586, -0.8119805450174107, -0.8027924608032823, -0.8812813425071402, 3.893001122377686, 0.849220061578962, -0.2003366654530952, -0.8754596469230035, 0.5386370201590571, -0.03506682377537322, -0.7696202772606346, -0.8403900475506101, 1.644404748040145, -0.19029940765595027, 0.5897230513269756, -0.08153183880086512, -0.1913855528823283, 1.5427924454792736, -0.00360701658901271, -0.5491749701420805, 0.3466312095433482, -0.9923631228798935, -0.782851692661509, 0.37638533841775756, -1.4158417205072151, -0.9014963317481438, 0.0937167813657678, -0.13540543330217927, 1.3261179273684223, 0.9605861316396431, -0.0682175267341639, 0.08379708564190454, -0.3970546116240548, 0.3179768890393008, 0.2625140316311788, 0.16243498189848848, 0.8497322940614354, 1.535413834627376, -1.0471065379968858, -1.577389476152272, -0.5686987199790016, 1.401557590534793, 0.8829839595965904, -0.574764821624236, -0.24186034810959822, 0.5506802614147398, 1.291378767102279, 0.7883443010194817, -1.2753060947950434, -0.2657341296067026, 0.21059520186024702, 0.1522934369206285, -0.47974997449083234, -0.06243152665161488, -0.4205020430728766, 0.3835506840038855, -2.649912142961381, 0.519731103254009, 0.35998603386643396, -0.8598834838992601, -0.4298655830045274, 1.143408544274301, 1.9417417998617852, -0.6597882064049128, -0.03516075442181159, 2.487291473850302, 0.7680964901338276, 1.1686238849820798, 0.10871601925038404, 1.0089947914990967, -1.5337782801009705, 0.12815211508848168, -0.3752160604018715, 0.8478231960147563, 1.186629859535238, 2.0220454991526315, 0.7526828411267118, 1.349604004044262, -0.5224675625100886, -0.2139568822769385, -0.16912794054200242, -0.4019782503694019, -1.7975177179281785, -0.8983158071568464, 1.489112318530774, -0.28608562210691246, 0.7457709129416077, 0.30829562615469075, -0.7780006506308005, 0.10154412324834095, 1.0172593365120102, -0.5128258759087821, 0.774328884939586, -0.37208629493833095, 0.336253427016309, -2.6439789480321987, -0.2681798456352676, -0.11253719709040623, -0.4470289927729828, -1.517092757792882, -0.8097542171519149, 0.17470018148683097, 2.4730249890431444, -0.6720043863309235, 1.6946787997164052, -0.16167847704430613, -0.5867318687736559, -0.6098773387723989, -0.8440966260239577, 0.4824881050436528, 0.01511732118497475, 0.6100453524439471, 1.7288204823976292, 1.2666932066332224, 0.035669510344926575, -1.2551315631804885, -0.8633147890802134, -1.645712324838848, -0.35091294869606826, -0.657581376435619, 1.3048594245481404, -1.0676099744135932, 0.3945938853799109, 0.08206280811913245, -0.2071814849542982, -0.418970454389596, -1.058061542973806, 1.318323415827433, -1.0535427485340993, -0.40249572584638144, -0.6285547939768569, -0.6525358457555525, 0.8144181052034323, -1.5029449173824792, 1.1881133116343308, 0.45195459042631686, -0.7026434116422572, -0.5115204560333593, 0.30508850444498653, 0.6310321182072147, -0.42372950847739976, 1.3636162182116036, 0.5204072076253058, 0.7620959057534482, 0.1924756883164649, 0.964631608324006, 0.5204607295720027, -0.15599929357305664, -0.7562158750164626, 0.696292434653742, 0.07731333387284031, 1.2908149861654605, -1.4306533803685, -0.012408132811256991, -1.1275522561520546, -0.3712163506984635, -0.23714123113737526, -0.9025042108793592, -0.47865912307202596, -0.4883960760261556, -0.46324237294748527, -0.10237629529166396, 0.15402851916525923, 0.3947365620408279, -0.6469360388399067, 0.946496708791932, -0.04130426769451161, -1.5847175996396317, -0.5493611634954544, -0.3746281047457154, -1.1483124348632143, 0.3180317595664263, -1.3997546311531006, -1.5191437631952014, -1.9032144545255405, -0.2503315562051832, -1.5350642209694667, 0.07861888137360314, 0.5039716947761168, 1.6107699077768312, -0.8561933236121531, 0.3408984871700181, 1.759049439030305, -0.23939163388072746, 2.0199110552847053, -0.32316702203607534, -0.23847733532193058, -0.542131983695257, -0.9219649192788495, 0.2345524721198256, -0.9212188889463027, -0.23644843787284553, -2.1759186169035263, -1.3297171068694547, -1.7373716302006896, 1.501306019531944, -1.2856726417914146, -0.6764669063490031, 0.22651488348978574, 0.022820557758211183, 0.5982680916544982, 1.0901421870778258, -0.8586747467424157, -0.8254919104263396, -0.25304100685684183, 0.6721535064777442, -0.582075031478543, -0.4153904894518613, -0.7541248925636991, -0.5616013089554821, -0.04566587580870743, 1.7187166870762178, 0.03651956580225609, -0.15760404040267578, -0.5384666771980252, -0.27906721353522973, 0.6780715016971706, -1.1508735836770034, 0.409821576072606, -1.3889922224392408, 1.8814214631771302, 1.6504114000386834, 1.0380086549152059, 0.2623799551285097, 0.7299830237336897, 0.46046581427996364, 0.12546932915601455, 0.8141134835830225, -1.165187661988927, 0.48192999904170936, 0.48708670229959866, 1.2520747527929785, -0.88548389189973, 0.7333273455164186, 0.713815788937436, -0.7924697481020088, -1.7200009762862487, -0.0072139054406770405, -0.34446805998039787, -0.2402078592905807, 0.7873581786576417, -1.4195881037272893, -0.9601731223287959, 0.1399444468113104, 2.019135416088848, 0.10290098312584296, 0.33368304813097865, -1.8782826950961966, -0.3622760272625499, -0.499934779526553, -1.7975609096006502, 0.5931008731510118, 0.13890617387484464, -1.8459904039432637, 1.3290720206197761, -0.6156426223071589, -0.40845895098079016, 0.2154115762736504, -1.8118538149176946, -1.405306366689239, 1.6815565370795849, -1.222910518848074, -0.632694524070382, -2.0731722783557025, -0.6541095983333772, -0.33346557416065065, -0.0737869509525829, 0.2671224765096716, -1.1813109057568132, -0.6635003674880585, -1.069980556246982, 0.23009145949203935, 1.3429621574100847, 1.7952398418219706, 0.7116342913951212, -1.067519066017241, 1.5377695994148775, 0.22403758531677187, -0.9454791138181492, -0.5033722568825576, -0.8742808770173136, 0.250194000580818, 3.5785938081722697, -1.1359898705539784, 0.34134031669636306, 1.0850320645062868, -0.2908602010865008, -1.6542037038262378, -0.30519581564688303, -0.8402514882438908, 0.6862067713007763, 0.15515108968217312, 0.20450836805267827, -0.006845041292467233, 0.16720706264271165, -0.8353428521345949, -0.08035512496229573, 0.8139343060032426, -0.5740845315358747, 0.8374546955423692, -0.4172106723585224, 0.3343150021559347, 0.15167929210417544, 0.4791962684162718, -1.6092450103500031, -0.031258793182590505, -0.08653445435969391, -0.9096691701411218, 0.9662779011161025, 0.39923297693633136, 0.04042919669354875, 0.42142434349413993, -2.0241848482544347, 0.2654286978348536, -0.15605906363952193, 0.6307666706479665, 0.3082487594432088, 0.8385905632560693, -0.26546654558867167, -0.9152627281882599, -1.2308975794600066, 0.06887232710695994, 0.5595266387106016, 0.323525053175655, -0.5865211556430909, -0.4558133229470234, -1.4541733935732355, 0.2530720258885387, -0.04161606252114995, 0.1357023042645495, 0.7348313601325508, 0.30623197876260677, 1.128928130389599, -0.479309165633213, 0.9662342578550988, 0.15104562890359474, -0.5790105636303532, 0.6559084827111359, 0.09093649775834345, 0.32459988469001, -0.9421095298648774, -0.9322540760891573, 2.0648783332600744, 0.11327185590617508, 0.35317724612321494, -0.092950931821922, 0.2283446948965432, 0.48530109220638645, 0.6963698619660273, -0.7008794632381219, 0.5477093500992565, -1.661277922020763, -1.1751371360932068, 0.3687738622271585, -0.8518898164897118, -0.6901959841699947, -0.7441547359887365, -0.4668907943939649, -0.9154434516314796, -0.27946965167771826, -0.4389963748026211, -0.970400189743027, -1.943331847872309, -1.0996294996238871, -1.5730221607459904, 0.47784338254062675, 0.6087879373451379, 1.5503252088371342, 0.09611763703499557, 0.14427088982417313, 1.7211884301482698, 0.8032071960821853, -0.497132307171637, 0.13214858224473594, -0.11723824940268619, 0.7742115666024646, 0.7498166467195067, 0.16735045645525423, 0.9838313416070432, -0.7838612598805779, 1.6837314316375591, -1.1102694591090205, -0.20206475586374603, 1.0365954334434553, -0.6033864193978995, 0.06921687093694887, -1.096017005389645, 0.8027865498485999, -1.8512064696689494, 1.0324132542442375, -0.48294130655887396, 0.8812916360232209, -0.08954643730522467, 1.0355694745184236, -0.15779634652604455, -0.1357493542565353, -0.21504408419484955, 0.2686822400914704, -0.08898226049721641, -0.7756370575890431, 0.7980974498517507, -1.3468451854630095, 1.5522794056082523, -0.24964727414238233, 1.2622973963228534, 0.11424461803217661, -0.675359112326971, -0.3853825363896504, 0.3119881125019241, -0.49599684801290184, 0.9169384429056753, 1.1422288030829613, -0.9070315386394279, 0.5159221916531649, 1.0519574803205558, 0.38976445057131587, 0.6196846231451112, -0.5596453773935189, 0.5886866833377167, 0.11305498897444521, 0.7254307566088599, -0.6617868022051744, -1.0910876861742345, 0.955146588668565, -1.6281693444382388, 0.5371739512392174, 0.05910187424996667, -0.05523671534434978, -0.7738262683514399, -0.15439824188520068, -0.8243094480417664, -0.8567580091207689, -0.07390259567701253, -0.9540468092243283, 0.692580751410261, 0.30330181836635345, -1.3198513294947893, 0.8554715941289249, -0.8667047946964274, -0.8950953956247781, 1.5560921891588464, 0.41783939330638487, -0.6075537173633966, 0.5026525123522234, 1.4182303754809602, 0.16857978896022016, 0.6661432844474376, 1.63422232972763, -1.4212674657729243, -1.4940181662446765, 1.5465286790937702, 0.0647861185790021, 1.2014502160531086, -1.7281891937429266, 0.4453667924986959, 0.8694561476895452, -0.8718080841436645, 2.058255131167272, 0.058654002564805824, 0.18186243105410904, 1.1761499362644776, -2.967100691539312, 0.6457698641874433, -1.7502568954015132, -0.6792025614967001, 0.867814430056603, 0.9593273810987925, -0.42537991248963314, 2.0013881029604095, -0.7140717495367335, -1.9098791400552904, -0.30768103606705416, -2.1806976686665496, -0.38863979837863083, -0.9104165309829023, 0.2530985788046481, 1.0993752801145957, 0.5120262087520928, 0.0793954432263709, -0.8012925259309696, 0.9061021743643852, 1.3288492598428077, 0.7157332931672558, -2.176762371588892, 1.7226011289848129, 0.5200457015933566, -0.26151014755018664, -0.9409274410776267, -1.9676274649593941, -1.8511398215085573, -0.037408572636198296, 1.1924143229478388, 1.2259892167743007, 0.76583686164045, -0.8673690168220307, 2.0368099366816876, 0.5962922651687957, -0.38563517255750285, 0.7313425367632949, -1.2453467062283494, -0.20948546803040802, 0.9491599129057042, 2.438076489749152, 0.49521936754471, -1.2075796359493602, 0.49381091976690633, 0.5884251345160558, 1.2562596264832135, -0.8892610033637995, 1.0551384124984307, 1.3331553401466187, -0.3565626930074531, -0.9237604703951564, 0.9329210559170108, -0.21852215215783685, -0.38987870191162594, -0.08557518704037385, -0.5815893732935341, 1.4567428071190849, 0.8021820067958069, 0.31710943202058467, 0.0563609415065552, 0.025460789249184847, 0.46370851267494645, 1.307777474427717, -0.026059685212208937, -0.777046285634244, 0.24246422420678623, -1.4826060660477527, -1.6900457875373547, 1.5946928252548873, -0.7536654168895787, -1.8134267535856068, -0.8464102343666071, 0.20311796654975361, -0.9156066876849545, -0.3437788432801346, 0.7517392004461035, 0.1627300807235273, -0.27673022565438554, 1.2320333295197032, 1.2353190654467463, -0.6070637028144997, 0.5104545536542586, 0.8082255105983007, 0.7515622221756322, 1.8772883604856165, 0.04763430754289342, -1.3734769468631436, -0.3562788833811373, -1.0686661709181702, -0.8412655547008013, -0.12232723771732944, -0.004230929333582153, -0.6359762368681818, -0.09764304407398958, -0.24009617075961667, 1.8136176449230639, 1.1788950431979486, -1.827687099948268, -1.6166136544088858, -0.6485790126368562, 1.4322480382862985, 0.1502323838709131, -0.05600902310092328, 0.7566614167312966, -1.478712776198012, -0.38849980595323025, 0.5351452498109573, -2.471371409972142, -2.28944298382666, 0.15125851185907413, -0.062261585573263556, -0.24454039134792505, -0.8192734282377735, 0.29541028673743064, 0.2267269534755322, -0.10585776204742303, -0.999161127774261, 0.6492026849689957, 0.913509926662902, 1.1837834718245464, 0.1976945776897851, -0.5310792566692739, 1.2548404401559667, -0.008787577941111646, 0.4297634424886796, 1.9109304343411166, 0.7260170143326605, 1.0514437743789933, -0.8428818480181607, 0.751733643516116, -1.5815541196695475, 0.1041328909528132, 0.8722824680878098, -0.18234479935343767, 0.32951262145145604, 2.521943962428334, 0.31137374254939737, -0.5068754606147859, -1.4776086127060992, -0.8996200840486348, 0.027144655719261144, 0.31580953516169646, 0.7928679876498098, 0.14139619791281655, 1.3887523247224818, 0.6548784158460283, -0.6466991718743608, 1.058514788783587, 0.20762342412060197, 0.9431115083083383, -0.1885442211372901, -1.403799228651789, -0.6446687364884982, -1.4014015582293924, 1.0421951629002548, 1.1252481169923716, 0.9651030056844465, -0.17490653706115317, -0.15758551603096385, 0.12991677963220027, -1.1690502738900062, 0.5013638691463767, -0.9384134071845572, -0.025659011289136786, 0.6711940707119297, -1.0277821746428606, 1.6174882353617805, 0.06976066909312989, 0.4055512708265968, -1.3124492190493564, 0.947915091819587, -0.14081753709011857, -1.0661923406732572, 1.069482945953574, -1.3274925585448347, 0.5226549934624118, 0.17096100938126685, 0.13933516383472894, 0.8021111188676432, 0.4270561255914705, -0.9529483757333044, -0.4915215013499375, -0.8885888179740844, -1.101736446651462, -0.050456318156030265, -0.9151278667277435, 0.7283425588398449, -0.34884582315857543, 0.6912576629727383, -1.0995702055197625, -0.20618265198865113, 0.8737104434703727, -0.9397681573403892, -0.7274796939164074, -0.6326150687763115, 0.620630157607504, -0.09162539745579211, -0.6167546055883705, -0.5081759895513828, 0.09010861011213396, -0.7727115910752308, -0.1644673910769386, 1.5558646643074023, -0.46026214951340144, -0.8098528779873574, -0.7842308414414232, -1.0051500161688254, -0.7162127550648364, 0.9209574087293164, -0.24056500990160548, -0.17455442926724535, 0.7938453635796054, -1.7453183465345077, -1.1808531932349233, -0.26547810347559486, -0.3130272871339079, 1.5449103541056306, -1.6657878905724166, 0.27905449909902663, -0.4094239519427407, -0.3143226842441593, 0.7413259981271606, -1.8597752752279377, -1.8620721234276112, 1.729056312925724, -0.010346494501295768, 1.4677572509263344, -0.19167904382923076, 1.6514764650096598, -0.20964312630649334, 1.0789208245377049, 0.12169830436995176, -0.7402032190910804, -1.0795935156023293, 0.1295370260380089, 0.9436099970533811, -0.160191889014911, 0.10825460054269158, -0.4830041967346753, 0.36235416175388946, -0.4679902042567533, -0.5918278505411319, 0.7726743780095229, 1.7907623867956877, 0.2059968272100175, 0.3350189092333613, -1.1166286494156283, 1.076950240950576, -0.06482169895367272, 2.3078973263004476, 1.6598749815211526, 0.44388323057897816, -0.21264968305453066, -1.029886723302526, -0.5902234555587439, -0.050225571484313274, -1.238616862719413, -1.2073976782827602, -0.610467681606735, -2.907820826524399, -2.465159980625825, 0.12218444095189854, 1.062498274966203, 0.7060769137273087, 0.9024328116249066, -2.1118835162990526, -0.12791934533739083, 1.5688445749487883, -0.6021812307243152, 0.0624229493567452, 0.7565228799614571, -0.2750698925916309, -1.0737054248153723, 0.458166123097272, -1.415648602789372, -0.231076481204566, -1.486885912863886, 1.681545983657068, -0.8486284979999447, -0.11048034588622976, -0.36421580457384245, 0.9889015401372572, -0.07500929026747494, -0.08452906093652611, -1.4687009903744335, 0.9721226538021236, 0.24115007499045607, -1.159194451668806, -0.4719392283889831, 0.016188862103871066, -1.0219358298440093, 0.6729327702531486, -0.4471332704357502, 2.0569687349663144, 1.72806382060147, 0.5969729553035092, -0.3801229469794767, -0.9316938221288831, 0.32222891721888286, -0.8607644549518652, 0.9587320999315545, 1.2949115290354911, -0.0731196806707428, 0.14136154367362455, 0.3504582681424184, -1.9343718665427114, -0.3139433318407749, -2.0040432658814242, -0.8795521652232152, 2.4387607599420296, -1.8650906248717356, -0.16766066117638956, -0.7466247815287139, 0.9134747329494279, -0.39608503687343577, 0.6904336272608522, 0.4421309095768149, 0.36099512298427594, 0.050975252705773515, 0.5322048467498784, 2.5419391664105624, -0.7067330818648185, -0.36124898988500087, -2.0761817717986952, -0.9052363938230303, -1.086194200605348, 0.10039867978019289, -0.7433107972581985, -0.3935257572360684, 1.0037439439812414, -0.5522750587381732, 0.8293390549190806, -0.19065068137521965, -0.8184797635999712, 0.47539182982780814, 0.023284787764464736, 1.8943091170329562, -2.2370428175101114, -0.21339880352430682, -2.1793970354802688, 0.8390252991384538, -0.9405013625675358, -0.49956260288213444, -0.44785664809215164, 0.018458030645461587, 2.0731271681079857, -0.8237192892270137, -0.7808821539729602, 0.19474710575876317, 1.8549753035090786, 0.8552896043540992, -0.955875268161349, 0.5547408710103118, -0.32427314747319996, -0.5748293411633105, 1.611967345242982, -0.7190167261451973, 0.14275675941781116, 1.7900328906130616, 1.356192440431367, 0.7764181894000457, 0.5267225937209273, 1.7819133299809633, -1.3780864937101118, -0.8151677934426677, 0.3409625186669965, -0.04030673893640748, -0.9670307382999078, -0.8060294068679641, 0.36589152828818744, -1.0018570462048515, -0.6443652686138744, -0.05413968376908105, -0.39809626865175557, 0.3486749806640224, -0.39133837270234423, 0.8791265180557623, 1.098839920423552, -0.8702955712058764, -0.2879810691753638, 0.25137200536390036, 0.8297613617222472, -0.0216140966697958, -0.37008568839826056, -1.2488342387950866, 2.520501839030052, -0.265040123747572, 1.422475218575216, -1.0453104452430566, -0.3705848808071519, 1.627683194100189, 0.07519675826221775, 0.4568483653481194, 1.3550168203934285, -2.669365070279502, 1.0165747224865551, -2.2692563745785055, -1.11689578086392, 0.18476387094913332, -1.190023463727805, 2.2266742637060855, 0.7820139992994721, -1.2111992634414264, -1.5924684174273618, 1.5514826742528616, 0.654383881281109, 0.15537784558263562, -0.7697568732207918, -0.14218177326040923, 0.8091275547799809, 1.1569664717075707, -1.3296129401029029, -0.23420262523503882, 1.4201264005033158, 0.26118318375294036, 0.22300768672474036, -0.8888113417789124, 0.3070584104293462, 0.6806225506095821, -2.0654028005128358, -1.1115896997407406, 0.07865062915247718, 0.8784171307110071, 0.423280533101932, 0.7328915082826106, -2.280131881351673, -0.4618616982931395, 1.6063143760700593, -1.6807446519081402, 2.307640069270108, 2.712598747816632, 0.9745245338978606, -0.27658205013897336, -0.3137231681321499, -0.777968795216089, -0.3626623613365088, 0.4492232081021896, 0.13101760177086785, 1.3741922800474975, -1.769481926882349, -0.15514999969666146, -0.4928829374289068, -0.04149879953106251, -0.22521744394982304, 0.13841868393785375, -0.428222834187357, -0.8872234447519894, 0.8552349514272068, -0.2541122055899066, 1.1882250428753307, 0.3441276939315383, -1.4072487763287862, -1.5869583385484523, -0.7953574559837829, -0.14520285857449097, -0.7032717594381096, -0.3445573706842796, -0.02941138160089269, -0.10455488106462173, -0.535858180049692, -0.1424213460916251, -0.6646526148999914, -0.6183774282663943, -1.0601685010141242, -0.767217088612603, 0.7710718932247973, -0.20742308346482835, 0.15257636179059433, 0.48030224314152525, -0.5953209148498257, 0.08508134176214091, -0.8218227855934351, 0.31423881749905225, 0.9159528526087253, 0.1545165805896365, 0.18072286213472827, -0.4825925634196843, -0.5598535978057018, 0.9223418267475706, 0.09816576625368545, -1.222703660183648, -0.9208962823460084, 0.9630537886639668, -0.9690572224879332, -0.35278506098945844, 0.17047321911234734, -0.7951779781870193, -0.598109597918318, -0.165046826060739, 0.9261021890114304, -0.30694082997708216, -1.211249301833913, 0.020880929032768565, -0.6512387276307182, 0.4028117584245133, 0.3511407763380509, -0.32487273983227, 0.7694938407104248, -1.0792535807052221, -2.5615376372961047, -0.47428068849427635, -0.27090764517787197, -0.048029720217392644, 0.7153200293692101, -0.6372617166791275, -1.2022660186619123, 0.17443636293138437, 0.12993773215699658, 0.465532422971424, 0.36050350207252124, -1.2540084887541254, -0.9615311258945151, 0.07567383080268063, 1.6371847767303742, -0.5471396073252978, 1.113266361353495, -0.8357608051090378, 0.07328582942417924, -0.4079280608067511, -0.6348757447573246, 2.2295113977847563, -0.17429592004182007, -0.5442522136068659, 0.5258157335235653, 0.7754937023571687, 0.0034451279224196633, -0.5825036652575019, 0.7590620513544343, 0.11708017655794196, -1.8123691900101127, 0.028031165776272543, 0.4695969204692403, 1.5029889623034602, 1.2233566833889846, 0.3079759775728739, -0.3450504559424464, -0.27764321125425556, -0.5570309993201282, 0.4404090844687083, 0.43203118808139385, -0.4248502973685653, 0.2487760465287843, -0.25973264831497267, -1.0207135867877124, -0.7933291976007119, 1.6949713429287665, -1.302199696964525, 1.257741476128819, -0.14543292590173532, -0.0231936318646106, -1.018350799118245, 0.6548692776121373, -0.9714911505170913, -2.493978172079484, 1.7961687182061938, -0.47768452139322964, -1.7466903204599615, 3.4782178743541037, -1.1338885359497102, -1.4825148816003102, -2.461756292023954, -0.9523888857112474, -0.2865207581823018, 0.16650600885054467, 0.05205107942360652, -0.1995577979679313, -1.2399620265939248, -0.49419878836290876, -1.1599050897747998, 1.0156290944853261, -1.4195483432027431, 0.7538098358016886, -0.6588266904563389, -0.5061794166545047, 0.32986109222856536, -0.11665539843106904, 0.02699050294722847, -1.1990519067065748, -1.056549540699324, 0.8626275707051045, -0.43586098729257866, -0.8013362176180329, 0.32400248849599905, -0.9349057402486148, 0.9961798893997327, -1.1591238587703416, -0.7398606514889955, 0.4114226290527111, 1.4727099006178639, 0.5355229219193345, 0.4037456355160837, 1.0194181837521703, 0.1987764186107162, -0.06731504961580456, 1.077100303826227, -1.5048089902693178, 1.0815719742770955, -0.04153600574374266, 0.23417754218144224, 0.781197621688666, 0.3703396173936127, 0.00896516249263845, -1.4552700211405458, -1.6541356933195421, -0.9365302954210528, -0.5997935263381118, -1.244958566268243, -0.6220868810488216, 1.2037964527379554, 0.3481525368143948, -0.8382912771101816, -0.23178218850840449, -0.48685481071025893, 0.9031016682789638, -0.36608331967933644, 0.30830563116729237, 0.15837359455630587, 1.7621338194158787, 0.05542319681174973, 0.6467665993504516, 0.7999415527299079, -0.009007834764814468, 0.5445495624036691, -0.03485996109757253, -0.8638199967433955, 0.9902742906868331, 0.23289427599663812, 0.24741274891079584, 0.5222999829953772, 0.25277958349220264, -1.2705276713909783, 1.5037867249071528, -0.3424551339902359, -1.4059902194391916, -0.22857576463465634, 0.8979000005612842, -0.9161381482669956, -2.8178350047848526, 0.9009928609366253, -1.1745660848382573, -0.9669768557045065, -0.013704001206634531, 0.07822567346015614, -0.6959034738849771, -0.09659532680450207, 1.2006536060725461, -0.4791748941272309, -0.13842785106032252, 0.27909336054517553, -0.6202367071262818, -0.4093719042479908, -0.6007971771510583, -1.440893570625758, -1.0663122142103254, 0.6123108716660256, 0.19001022876248472, 1.266029126602857, -0.6195362574208597, -0.8403405817936878, 0.9418771126147988, -0.3658949399184171, 1.1033173247783967, -0.9840508405318619, -0.329651989137102, 0.3526136061574959, -1.0098607690169106, -1.2258388137253995, -0.30042008811207, 1.332180098104603, 0.28754283069784947, 1.4001185887876608, 1.1535867711256826, -0.3313307486604078, 0.04561161088704503, -0.6982439146689302, 0.36926585618957203, 0.19093526926482215, -1.773151088555501, 0.47165760116503785, 0.16282543253152745, -0.43104848864180845, 0.9959339657800358, -0.5396938281162809, 0.36030795303365953, 0.2117352073124349, -1.076568059158191, 0.26814545880476304, -1.448428534338607, 0.29732869154332464, -1.8543354031825745, 0.06669458698423626, 1.1329450220668382, -0.002923046560862602, -1.2335186823737887, -1.264997761872558, -1.853887900255821, -0.4720329245074301, 0.7697843291715948, -0.12180265818897948, 0.9698571455108584, -1.088507437510384, -1.5520623785612302, -2.0162091149626282, -0.5990650429055728, -0.42856585325709945, -0.582256681408691, 0.6672145590741908, -0.01168250792340712, -0.1542996068300513, 0.19097268743708823, 0.8446698190982045, -0.012214505674332694, 0.9143972961756495, -1.1175154844519273, -0.3028236526313542, -0.023891945364223385, -0.03549257310942254, -0.19891437780631985, -0.7503695279780268, -0.44214037494483266, 1.7993038119856453, 0.41814746927050006, 0.41043567005208875, 0.13727871377563913, 2.130025293983197, -0.9639116658161536, 1.4720344995393737, -2.568321133211583, -0.42035466401814475, 0.9984619020173763, 0.46186707000706256, -0.9922040380351098, 0.7321361418485498, -2.395775957571219, 0.29220434293241826, 1.6055342731234867, -0.1327174256411185, 0.9223607754796075, -0.3732262078577244, 1.0640554094590462, -1.3228537060987453, -0.6965905466059551, 0.022310149198003257, 0.041316043201674, -1.0592834689504849, 1.2462618400043564, 0.9997413220803386, -1.2540909467239492, 1.6654030123359291, -0.13592137784972347, -0.0008904656083274301, 0.5171010182035047, 0.48396639067606634, -0.838552624755586, 1.0620379785972582, -0.01706132708278494, 1.4531514770099272, 0.5993275535023389, 0.6625083372738078, -2.216680987055792, 1.042299230610277, -0.4284295320023196, 0.34674095552173634, 0.8645713931300812, -0.7274996503797193, 0.5036140275395834, 1.634415523884702, 1.6360908340056777, -0.43064399287162264, -1.7793161758912088, 0.6878058794814585, -0.467962515656624, -0.6247685264307635, -0.44869297187801727, -1.6495262567696083, -1.4554478479333126, -0.11969166270933372, 0.6235554295510506, 1.0169994915773362, 0.06747712287027027, 0.4686075492429526, -0.269412354490799, -0.22233338581537274, 0.79155325022745, -0.7916376741097403, -0.4061840754785372, -1.0674167874360927, -0.45137258345253284, 0.715635472639031, 0.6776758917373167, -1.0611449963947595, 0.09083191727645723, 1.5314477484704518, 0.44694736298639987, 0.7521594372782578, 0.8770010328016253, 0.6494553397713188, 0.6533507640706361, 0.9691219775500313, -0.19589338474014698, 0.5616946827733714, -0.7518330704224511, 2.0299885786783927, -0.5204643418388337, -2.1233235161282633, 0.5340810824765492, -1.3795545775086968, 1.6383507709760383, -0.3746129003748702, 1.3608947610225426, -0.37923854686436487, 0.2637296418837141, 1.8517875919463869, 0.639239145704484, 0.0765811654114594, -0.4985871518464738, 0.7524782623341467, -1.793027513012122, 1.327145283165612, 0.0323864034149665, 2.5487138041965456, 1.687168005043744, -0.5984725598923465, 0.5158214539132745, -1.13402975304373, -0.48192957076805704, 1.1059306322898772, -1.9390548843326043, 1.1618978612757538, -0.09740328659698323, 0.7132407185601469, -0.6265989073522856, 1.6529473406218174, -0.5724296257331399, -0.5446909357441442, 0.610662616912923, -1.9740547882551278, 0.6921374539385895, 0.030791045027804602, 1.711702139098193, 0.342569667683203, -1.5444804621246275, -0.6091754775650715, 0.14273145690968203, 0.5058372530688632, 0.6101668880697951, -0.6371353750114455, 1.4481930370759326, -0.7365977874040339, 0.4305790256794206, -0.07340166683744336, -1.4501305648745249, -0.05824453075895941, 0.33359735510255956, 1.287010011753475, 1.3507823919189332, 1.2905655918404306, -2.3068710998775352, -0.9005543862746983, -0.9744468091095576, -0.24452636219579604, -1.7451239076157223, -1.5381237152924088, -0.788126695887824, -0.19328551389774207, 2.7250774475443498, 1.2952105363428559, -2.7010347300818056, 0.00771751926300163, 1.1367581855999378, -0.5785632894883199, 1.2885638733506963, -1.2665892629028555, -0.34710101369771323, -0.7997977176777117, -0.9599965232868769, 0.32587360416572847, -1.0526546319736063, 2.156519137330207, 0.8085170232779926, 0.5017789117024696, -0.12313293037549566, 0.6368448477597902, -0.31696143592938325, -0.24143425417804157, -1.3983518621562268, 1.2404316388259298, 0.6936207343671793, 0.9284110801745873, 0.8994552879593407, -0.15050846754042133, -1.2863243251954775, 0.44156177511767397, 0.6222960234480722, 0.3659535860193293, -1.209062891232087, 0.08183357079613264, 1.1576883712088917, 1.758991337819728, -0.11640659912547527, 0.42070775609823063, -1.0340325817980922, -0.3707504961660391, 1.4557446921531734, 0.16157426059383226, 0.8999608863556466, -0.29922218405274253, 0.9730381049366635, 0.7057715788191019, 0.7198496641216012, 1.4787398919705212, 0.49525011416476034, -0.9120439941820649, 0.4443760896667819, 1.5549343365333634, 0.5038284153155123, 0.4079168755145019, -1.5113278457970658, -1.281064549267312, -0.37422860071245007, -1.847294613750061, -0.2656531621236614, 0.6676594787395362, 1.26191261849179, 0.31562052042811667, 0.7214633644604331, -0.09213127641300918, 0.2453804605900239, 0.7738859648908135, 0.886603170581514, 0.642832482133431, -0.28230582049977937, -1.1398455369316427, 2.5611642055791313, 1.927145698269446, -0.8690952726946783, 0.11696371713585002, -0.6630488753922025, -1.205265095466372, -0.06490494028299695, 0.5375772099459365, -1.3089539426370371, 0.8787579799163289, 0.2546748691209782, 0.45269619178708054, 1.045399449015589, -0.9652516085688304, 1.2452709001072448, 0.19026143848789362, -0.7601880145654283, -1.419378929748037, 0.03674661115958249, 0.2636135112616976, -0.6764089144809116, -1.506583510126601, 0.35359118523843425, 1.2609468556654007, -0.4281815438171732, 0.05709795836951904, 0.08227847340193481, -0.21981612144775178, 0.7993906551184515, 0.168170847076439, -1.3943912169241806, 0.5164445549997679, -0.7637433863431116, 0.022029178556163972, -0.08679733621263537, -0.13664851027467412, -1.1228874611025963, -1.7055654720467512, -0.6748144744663503, 2.4721499106680462, -0.05476540549569572, 0.7881065823517802, 1.2891730289005834, 0.0026895643643148107, -1.1785795288527632, 0.4158291843292993, -0.6099794160470977, 0.09584759930715733, -0.8868316828089617, -0.8682224333850811, -0.9782209362817795, -0.9138211646934574, -0.05793856956478412, -0.052898339667334024, 0.4518755532885969, 0.010729278838589167, -0.7707123870106375, -1.749448454965732, 0.16486313405500339, 1.089484540860028, 0.7390139118949102, 1.013026844437428, -0.2902493414755131, 0.6943883077542125, -0.3568675542691143, 0.7828070630784847, -0.6456139836429011, 0.11817794868347489, 0.6354981582350094, -0.6837298039015883, 0.15012916582228586, -1.175661864165225, -2.002893124673516, 0.07922408076676915, 1.0264902695613263, 0.3184844431335007, -0.8966166933485192, 0.4181473136759941, -0.4730928154659214, 0.13711922549318714, 0.4376445173750964, 1.6833807520868833, 0.5301189521651529, 0.41257772691683287, 1.105770246766894, -0.003400028101270086, 0.7340919398834173, -0.1898569095608787, 1.8068046195724532, -1.2209463133375544, -0.26363807022110675, 0.14333434023666528, -0.38205667374361446, -0.474751361740188, -0.3481088472141753, 0.3216844057186008, -0.010679533716788855, 1.2466179285483894, 0.14891435959028726, -0.15363821708000508, 1.1431769027216994, -2.0461291911002153, 0.20641778559804658, 0.36338619856696913, -1.8523247938624519, 0.4900000213011633, 0.30002249669597575, 0.19613449023830476, 1.5130359504944075, 0.0014270857397478008, 1.797951461706878, -0.5540870887377345, 0.042198238891942276, -1.077362148805503, -0.4213219017303401, 0.5851578326119706, 0.193620932925348, -0.6421280352236984, -1.0383800294134913, 1.8628012380664005, 0.328553528425515, 0.29508984166792623, 0.5133188180802681, 0.059829427928850536, -0.6934339291220432, -0.062289062533214104, -0.19393918413342415, 0.7337725148485372, 0.8199930660774671, 0.6936655179194773, -0.5156247089827657, -1.1220461364251733, -0.43648500973899834, 0.42971127323613395, 2.0888981156954247, -2.015917266978043, 1.1857323184734596, 0.8062216138763671, -0.00199116824730668, -0.6127364032315813, 0.579224216359179, -0.6683798786440454, 0.1938923765786588, -0.49934533851949897, 0.7520157837182047, 2.104570540090783, 1.8471543624118338, -1.4498619486872413, 2.1769120888774025, -1.2621142817666182, 0.2044447761443551, -0.27956764295098663, 0.07064981176686896, 1.438762695623941, 0.6318849017865765, -0.718414761128827, 2.1920698607382523, -0.07909918753463031, -0.8091635437753205, 0.7838171120809749, -0.411633784081397, -0.5810362475740718, 0.9765077278982085, -0.19634451286057591, -0.4182422483017358, -1.1066859382238712, -0.6053160895755292, -2.304719017002802, 0.1892319948099702, 0.7497065100142531, -0.49776036352584885, -0.8631265884339561, 0.6253914079905827, -0.21658733215509715, 0.5065340941743978, -0.6832121949060204, 0.5189483308307796, -0.6922406079322977, -0.691170575307535, -0.22210217577150845, -0.9000837588827207, 0.1768335028607123, 0.7837344325789011, -0.23118332229074678, -0.47087772416936213, 0.03868694027483929, -0.7455046718590381, -1.1015893786151123, 0.12718340726711658, 1.1425615418542123, -0.7153539544535215, 0.5575334799249514, 0.3484084257178149, -1.9335706458478488, -0.6318962794612405, 1.9501820203028675, -0.3275533762165144, 0.014988579888109265, -0.6339588907148066, 0.4419741695091272, -0.3597844604744565, -1.0045261562898944, 0.9579257653316787, 0.2041164441717095, 0.6991178268188254, 0.760093982650659, 0.12569793214184358, 1.3677017808789513, -0.24808873903356202, 1.0315204582048285, 2.258452079813033, 0.5970627937448695, 0.3808258149125412, -0.2902820503936394, 0.35505344125227245, 0.7085888700487235, 0.12542798193768598, 0.6277514278762437, 0.32424978732893184, -0.02039126686170003, -1.0651408582725257, -0.3973268660686457, -0.14473022863272855, 0.03744628972440927, -0.4225180190038808, -1.3265397503880232, 0.5243860365714643, 1.520713478819223, -1.7492693837160365, 0.7028480826149968, -0.8092111213934149, -0.18334528302073871, -1.4209651283889735, -2.626709147013736, 1.0543631536055211, 1.5139813363719439, 0.3405377782476383, -1.713411354413718, 0.12474818908106855, 0.3602491987935336, 0.6513844604428264, 2.490255557125721, -1.2006467616880647, -0.38980435759310267, -0.8718745221851658, 0.7590925304750415, -0.6974802367363035, 0.22025404532178783, -0.1129501944869702, 0.9911885256937121, -0.8078235520228692, 0.6193049159797467, -0.8939377044147544, -0.44603899329141866, 0.34158599264557715, 0.43607249539650705, 1.2780368098057917, 0.0721668960948079, -1.1753020287822393, -1.0650230429946663, 0.4683349819294067, 0.85424667528333, -0.21793980076306843, 0.4007157676919357, -0.9386337916943901, 1.3573477070050728, 0.2370710799905058, -1.4254543291593094, -1.273539318212206, -0.06412830959311543, -1.0048455784716823, 0.32807111776679704, -0.22137378806417038, -0.7268882866585763, -0.02701455664186407, -0.38446520306366694, 0.15689227454279098, -1.023095904776455, 1.6333842412047084, -0.6535929868718203, 0.2504935679617605, -0.34448540658253385, 0.11278996414511808, -1.3825507617960329, -0.41154607517932695, 0.11721192760347375, 0.37834265703254105, -0.5913050745113264, 2.453286407659224, -0.04091403305845723, -0.7446989053190359, -0.4649274994951691, -0.8207075293311853, 0.011419541071801554, 0.36890306507957893, 0.5277594497786754, 2.6376225867014713, -1.7507174447360443, 1.1731435162528259, 0.37871341777671624, -0.15060649488158745, -0.08908593558286389, -0.5521255404816315, -1.2017864787917822, -0.25719064779625056, -0.4684653070908226, -0.29470791388276685, -1.072119366538207, -0.4278265646671562, 0.20853285188255574, -0.22399351563260522, 1.380287971240779, 0.099504405737107, -0.06556970731746732, 1.5374039395860732, -1.0146616365574923, 0.847387875682211, -0.3598541609764165, -0.4551513390099651, 1.2066730710555078, 0.2594422485324881, -0.9543814667919934, -1.748301209132444, 0.36173087334901366, 0.02724301130944611, -0.34036993722902686, -0.7564532697717796, -0.38840399779851703, 1.2881624485876255, -0.1333141243635994, 0.15357599526826948, 0.6648430558173167, -2.44876053425674, 0.48679575103320466, -0.8794367183220139, 0.34606829704286485, 0.06251921434975607, -1.2832358655668632, 0.2865947421990325, -1.5010891402163955, -1.8955646915144395, 0.6121451998004083, 0.024656938644879587, -0.6728679356292847, -0.41026352788611836, 1.3591490420758963, -0.20952337997027043, 1.358195042714131, 0.5698204772007157, -0.19199694913584472, 0.6526827688812802, -1.8132468425672894, -0.9920177440700081, -0.4605753924467582, 1.1765000945806028, -0.7171393442760566, 0.6181876963808822, -2.3002260021508256, 0.3868042494913503, 0.15506888183780224, -0.8330880240332335, 2.25435181561047, 1.0276602790961116, 0.04326886286773482, 0.3695094436722726, 0.5457641011213773, -0.32637936648277943, -0.05651344253299876, 1.3279161812388178, -0.08098349010477775, 0.4710321539596196, -1.4261786763804987, 0.4056259432128391, 1.0795499390296928, -0.5571827425603968, -1.126111620060372, 0.5556738029862751, -0.16271482713864518, 0.7379123781675151, 0.6683439608899734, 0.9877322225894082, 1.1132786988148282, -0.08773208619656318, 0.8361749652519866, 0.029936332694779095, -0.7660901089085078, 0.7945154418026985, 0.27682757084878074, 0.8721442344836782, 0.189733225499325, -0.3964990628894718, 2.412239163440998, 0.34541487819301564, 1.0357294551352285, 1.0486302891778667, 0.28804480778428687, -1.320061710765287, -1.6165749635105182, 1.2314388868084216, -0.6178468464697553, -1.2303484631813297, -0.8891504196911455, 1.921508517465638, -0.2907477990554199, -1.756155429772106, -1.2730808971497993, 0.35903636330107364, -0.08873846043798235, -0.06779062871036935, -1.3574553597570787, 0.46250318908771787, -1.5118911958038521, 0.8266792840786578, -1.7463928968941826, -0.27952106869179916, -1.2604041848212626, -2.151469329638419, -1.1301802182822505, -0.8061137976070054, -0.262145219595016, -0.21564407228836097, 0.05268151169399719, 1.9467884575196606, 1.4958980416527035, 1.5886360774575192, 0.3631103331674393, -0.3627877644795341, -0.4061961425054697, 0.5711742844015628, 0.7799892854616772, 0.7163018560053992, 0.609274397000892, 0.26000749750923685, 0.8591417749651094, 1.6032363947594295, -2.3831744510408988, 0.516869313953463, -0.21164729122973117, -1.6536154501768898, -1.097857096077682, -1.606225182788236, -0.7931755750776345, 0.1038950336249232, 1.3034534663342972, 0.3268312876611166, -1.6077259596887152, -0.10070303184178232, -1.6758619619788755, 1.6645386852628172, -0.3084639929564355, 0.25883376930843727, 1.8277738637330794, 0.4793459813748774, -0.27290787709937653, 1.5704309739065085, 1.6594693773740865, 0.451855548630056, 1.0544386994545027, 0.6541282090420631, -0.12535607018232472, 0.48073673114060395, 0.579273729969082, 0.7425215021253185, -0.9005939113086001, 0.8790893103299212, -1.8455455161637815, -1.607363876926174, 0.13184704663387686, 0.8597054224336865, -0.7357752566203384, -3.7636660666998196, -0.2701395311844681, 0.032031736981133145, -1.5336144292157354, -0.5745098275445945, -0.6136308328892518, -1.3136750205416987, 1.0997222572580403, -1.1696532758682179, -0.9042028920492973, 0.241350623005595, 1.6085924673010057, 1.077980389548314, 1.1381354336722274, -0.8009028852614967, 0.43590188895000825, -0.9111020732028461, -1.7129162213091407, -0.30836239804690524, -1.1974334628908834, 0.28196108333089553, -1.8264309343103844, 0.29316093830742285, 1.0746144051885422, -1.8123780575687172, -0.6282966335847656, 1.9270901004365073, -0.4478754867705405, 0.06549524201791866, -1.0848022539477302, 0.25943792507841534, -1.5318804084725404, -1.051843566514572, -0.3228702617508796, -0.13768893660653983, 0.2158487812350441, -0.08368123144871518, 0.13761745231484068, -0.9707300180636799, 0.1297814205223802, 1.8952602832058896, -1.1597260208072755, -0.33203396070812435, 0.09865741475021343, 1.1232769796257143, -0.04385787916189052, -0.027872665114915224, 0.4623727555178314, -0.02359633417172779, -1.5830244257570825, -0.2369675383793512, -1.6651848206769617, 0.43838543495731475, -1.145747258496619, 1.2823702903200427, 1.2977809124144333, -0.09674509854972001, 0.46625141364655887, -1.2409257190064449, 0.8948300153818031, 0.006977330677739275, -0.2032789349583968, 1.1718206984596642, 0.8094452035647054, 1.4144773768460757, 0.20903727109506398, -0.37953875570443113, -0.008235376437457979, -1.6320049337436167, -0.7347107908548344, -0.6771217649554476, 0.5049180464539241, -1.102650553297206, 0.7931074283643506, 0.8008691006524549, 1.1228159776970283, -1.710070202241564, -0.8446804503549141, 1.5797744684819397, -0.08210526372772776, -0.6086192288232127, 0.2876532172366157, -0.8749289623931279, 1.031121337098733, 0.22763937724076017, -0.03898848917240487, -0.8161393656760437, 2.2234438200454147, 0.11768710559148829, -0.309975315492472, 0.8216210586806252, -0.8507975015141193, 0.2590588340510953, 0.27460565735746334, 0.14301549273746467, -1.2727711534671726, 1.0090018966657206, -0.14103917872429989, 0.1426116462809257, -1.173615781182447, -0.5788909011109891, -0.7077982393903935, 0.37797233940310737, -0.9533233438372545, 1.630777586194893, -0.6338122458290402, 0.5693468510516565, -0.0835333721604886, -0.44454885620062173, -0.9373386108184703, 0.4469891041314696, 0.6051095637286131, -0.48514369038422783, -0.6464337509221992, -0.7609611754478325, -0.17375504477002737, 0.19828036200452837, -0.10743232965678016, 0.9407423109794812, -1.317735623410667, -1.0773627380327622, -0.33841109411645304, 0.38789735577025874, -1.239832793260562, -2.5826129649553264, -1.0566849917987255, 0.18980623187998993, 0.0870612968199664, -0.593266719953483, 0.2372764931850981, 0.8641285289179023, -0.0288254053118929, 0.22990461280128843, 0.23262092502618845, 0.22648477241197004, -0.8059637432539307, 0.10806340798447596, 0.5486470020198722, -0.990768199338572, -0.9100542719268011, -0.39652662334482747, -0.904769762521667, -1.416894204780621, -2.100283148157254, 0.0840664256887612, -1.4652214366784138, 0.13138554234574684, 0.9264753695776543, 0.31288787247716565, 1.0981219609403012, 0.951804461281924, 0.3685031081971615, 1.5804311876436512, -0.06283056003298598, -2.5640011918292624, 1.2468568616816904, 1.3397840366896516, -1.8116759252932224, -1.0109222569072245, -0.3435549978136201, -0.03753811306567283, -1.5912865291388534, 0.25407653523770946, -0.8901670739546441, 0.4361939070952033, -0.44628839246877555, 1.318837170266754, 1.6474272531142706, -0.4546810383374629, 0.43631018154153095, 0.5581451688147583, 0.5149005249628542, 0.8843971824104845, -0.5004239402507928, -0.17508095206983998, -0.7930752999106826, 0.33039162277443357, -1.0554491123689131, 0.26594261863354457, -0.3340579223341379, -0.1315864466599005, 2.0342106726306173, 0.00044857580744589204, -0.1879787120307349, -2.6732010914814963, 1.1780864584642732, 1.6661945546159214, 0.5375754179650454, -1.5217144280634347, -0.6933927125245021, 1.4772345038228116, -0.5490154404758948, -0.7645317654037619, -0.8751895689160482, -1.2170157702645599, 0.7171747872955981, 0.5145479833329658, 0.9608529224500566, -0.804554237333319, 0.49194342708527417, -0.586860403410683, 0.4339821678739609, 0.3740150474851434, -1.4209722388861206, 1.1307094728468852, 0.4120823919799436, 0.16679418556457282, -0.5589706582794506, -1.2984734399155433, 0.5651734803865894, 0.6436368961446812, -0.8653240396679528, -0.0947379217882346, 0.48002656472233723, -0.04756218026230742, 0.08023648668441843, 0.5800092069064556, -0.4070899293462658, 1.36190618853853, -0.33487490774998185, 1.3636578426630035, 1.1277005968495664, 1.546522676078406, -1.674571748802403, 1.5486193292993111, -0.11567957608067028, 1.2328625292074955, -0.42908756860534786, 0.8565443952324904, -0.408148424297417, 0.6020194144123984, -0.9549502907738484, 0.928370198601124, -0.09616981644924874, 0.6241843979085497, -1.03157853621684, 0.3715637720479649, -0.7924751310651794, -2.0606254858337976, -1.389602612232891, -0.005930025142753465, -0.5717485705565101, 1.0315695760523858, 1.0410970963330033, -1.116623725737026, 0.0004970978248829975, 0.8441431672366891, 1.4019049945931297, 0.4049268515824579, 0.1642619490921822, 0.9062642717817307, 1.685597426845413, -0.8938088705456916, -0.24591509424129843, -1.307151628193722, -0.34523916426509743, -0.3241638109701244, 0.8068016171205578, -0.7648283516287316, 0.04177793221523165, 0.5724020684243417, 0.9767285479167813, -0.8494330579916125, -0.6875383882825163, 0.21781767728482895, -0.4683935096770616, 0.3996598896078375, -2.4526900655994557, -1.1293866840346163, -0.40060035394365323, 1.297541878321304, -0.7537050784161662, 0.9847144449009264, 1.2131276181413828, -2.225574394298503, -1.6917422845137033, -0.8551202119427792, -0.7477619975148236, -1.2468030193023574, -0.7971687372866081, 0.010561232534436197, -0.8945819774207383, 0.959242494687886, -2.166953380072864, -0.9269366439910085, -3.0806078298029655, 0.7937890255228116, -0.2688528289580728, 0.8095843461914953, -0.15078016628139204, -2.039943691690747, 0.303067312480812, 0.424890658522586, 1.0211852094166984, 0.8978359866527238, 1.0418590225757598, -1.310051004914963, 0.6542099165711528, 0.40081725136525254, 0.45749418795072005, -0.23445718369202684, 0.6823402951296087, -1.2085918487372396, 0.27636561349395056, 0.5731513617000199, -1.2803061301990126, -0.15800654294079594, -0.6610839066902062, -0.771577936230683, 0.7775091525369517, -0.22783115633122206, 0.22942923950102545, 0.41289594668938817, 0.27649461257502383, 1.3982366666362531, -0.6034410293400729, 1.9184605392669447, 0.7361954187769508, -0.7365030579063987, -0.684527796937212, 0.0007167017090057352, 1.0308110806731146, 1.694760824571815, 2.877064592198022, 0.2703178942947157, 1.8045620326070313, -0.5284229303401289, 0.05981797985466191, 0.16731912541046748, 0.11507140498888843, 0.47392325983763717, 0.3755163591461437, 0.12483402618168553, -0.1619846935130289, 0.2091033614845927, -0.4926345998529723, 1.7059990451936906, 0.21917923507233775, -0.5523100471394262, 1.1584370164568392, -1.6203327210577898, -0.08479736849748339, 0.8635700828178644, 0.3750740621726691, 0.6940829935536496, -1.910583967483056, 0.5971167348568934, -0.39378823477959884, 0.6171446916040864, -0.4361177808933694, 0.5277790438305253, 2.9967638816454176, 1.579728411970206, 1.4089965305007444, 1.3501539770466373, -0.8597955828085126, -1.702313073644816, -0.8450987800225412, 0.6270992684426738, -0.9976653290095122, 0.055191700659121004, 0.003396366599825068, -1.0342755971720834, -0.7287788998667062, -0.31098258448751187, 1.2659361870349675, -0.7916147651732875, -0.4567083078532624, -1.7745546352560517, 0.03420401107831104, 0.4614248698595793, -0.8429039834067427, -0.07865045746327784, 0.18933897684300133, 0.8044076598296848, 1.4944978146718946, -0.8296557077534822, 0.6553959398028802, 1.276287608073897, 0.1041026782030111, 0.23910044761486376, 0.8167106175942633, -0.27706591353332377, -1.895415217121232, -1.5486606524144835, 1.9398324511272067, -0.4723407597913641, 1.352332416324653, -0.3156792545339296, 1.835550813090425, -1.0315012803514534, 0.49012617193286095, 1.6666639341910763, -0.8413308251329833, -0.23929701678091478, 0.7642464047145692, -1.497625864584166, -0.4705251758121139, -0.9475459503676378, -0.5618520991187937, -0.6333429805416246, -0.6140460581516034, 0.24927873856691407, -1.1784137988375607, 1.086133252428601, 1.0400596505422524, 0.911879141146444, -0.03469703889641918, 0.3091662764811984, -0.4995114587989971, -1.0108650198900664, 1.2891040188696803, 0.3696998258980204, 1.4459000906404036, 0.9481030613831826, -0.18972584963290282, 0.7360687901355852, 1.7579754451780059, 0.7037211126898147, -1.0705857865368906, -0.5197630401893983, -0.030009032586052704, 0.7040796064431256, 1.2369943162122758, -0.6148846407379011, 0.5251931194894994, 0.6320755612790131, 1.1147741188197908, 0.40618314716555043, 1.363110130536474, 0.21178218047151803, -3.0226329279597977, 0.6776019104601919, 2.4269995760751146, 1.5966507488242025, -0.7816350979661962, 1.7752265449535929, 0.19192050515620915, -0.5127659800468832, 0.39434293174015456, 0.9019416701867972, 0.9234372749579272, -0.5459571654684783, -0.6963022729658723, 0.619784501935316, 0.7793817746580313, 0.017037853357607984, 1.1906019848039036, 2.0270875502361814, -0.308234369395069, -0.08771790942551734, 0.23704881996441038, 0.3365076605692873, -0.4500245355354219, 3.7076569400886785, 0.08230673894707735, 2.2974742809098956, 1.718875760758514, -1.0835074974215921, -1.1489290296021877, 0.7373367472757812, 1.0598782604860417, 0.35554099596409944, -0.7554607904304455, 1.8858684985507135, 1.5689499262752575, -1.6858901573934628, -2.090936877102528, -0.4929767896408076, -1.8832905420276445, -1.343421447466445, -0.7475242399302654, 1.1004970753936614, 0.8620677196667677, -0.35850703152480745, 1.9175381750652982, -0.556660608839208, 0.08523756832703246, -0.33462420943844506, -0.9558659714149507, -0.7231431962236265, -0.09024797943262777, 0.3820081482600109, 0.7035669476250427, 0.25350805966130263, 0.010178566142506324, -1.6680414300014685, -0.4416135370402425, -1.8944508226807935, -2.695586642051342, -1.2173126999948984, -0.7828903183454917, -0.45085993930748075, -0.2373378684006988, 1.4081618903836306, -1.078770444462295, -1.2898241496283391, -0.19205558959856045, -1.3079741221130095, 0.13929676555708312, 1.3846276263464874, 0.4451474702820138, 2.4643574207244194, -2.104475399783972, 1.733635457397415, -1.2005602282412875, -0.43765547649614706, -0.18309720573236574, -0.4223672684895896, -1.1017385153726882, -0.20018370924833176, -0.19539695797154563, -1.3367618531393348, -2.47475883284411, -1.8436230447664945, -0.5821390603300955, -1.5641838738500125, -0.04049679105875608, 0.9655639686907581, 0.6983296742069711, 0.056267328350418214, -0.8323969346133487, 1.3609783464547485, 0.598848115923717, 0.15100086574188393, -1.4553956514635598, -0.05094599535022901, -0.13699024326917922, -0.3182428190742117, 0.41884377461400224, -1.4069529934965639, 0.2931322390367679, -0.4588221626106889, -0.6293565678466719, -1.1387449232385463, -0.44899951951504763, 0.6236267138835786, 0.2254010468361383, 0.9197272265957949, -1.2311817581810425, 0.3862189208120681, -2.519792706800899, -0.22116225836576087, 0.7703491097483898, 1.0301584894441755, 2.3111646819492844, -0.7748030155143781, 0.6215578195912088, 0.14856750523509657, 0.7726435918462453, -0.3274274184000619, -0.818418736858241, 0.08187838798869357, 0.5828877716291353, -0.8453647376589036, -0.8505942426929186, 1.5165784368190818, 0.45821245392041277, 1.7300809069001961, 0.5369690326256914, 0.07293174222523541, 1.3561611405479148, -1.76468580785985, -1.45789566042369, 0.6358478607380375, -0.5658340551237283, -0.09708658420619011, 0.4005031410172591, 0.10857324168154339, -1.3062547801330935, 0.04890300255677172, 1.4574340242267423, -2.10872788850583, -0.1322771594269194, -2.330732623020497, 0.047423091416434214, 0.0839687369132583, -0.7717632033943863, -1.8431395494562595, -0.2692963705067569, 1.7264881466876978, -0.7892418271271749, 0.3244979477674913, -0.05555561155948585, -0.5554706076795985, 1.8678202727218631, 0.2675157280750052, -1.194111076122272, -0.7039753120135791, -1.5258888206596626, 0.4569811927300692, -1.8901241039207737, 1.7982790161425017, 0.7931101128725525, 1.5869288294208892, 0.3701455737094279, 0.7305980425323311, 0.2176469197256224, 0.9616634996687087, 0.26502462025947776, -0.8270199037975113, -0.975261192529837, -0.5969438509523634, -0.4462289080284157, 1.1986841754379212, -0.3447380329585923, -1.3718026634180471, 0.4079699658799626, 0.14962878573650257, 0.0011512792205249035, 1.01893531296695, 0.8156349483412612, -0.40642208167070754, 0.38614169618634075, -2.539787118698557, -1.432693383346153, 0.7338006315408002, 0.5568557218287238, 1.7847358834584974, 0.5499046997302506, 0.01810156412223699, -0.6815348851447757, -1.0935964502944977, 0.06508140637635695, -0.2531557614837346, 0.008834131074059599, 0.40426925925347157, 0.3235636970579442, -1.5681945477767918, 2.105595702177653, 0.035273354540415185, -0.5216373739802234, 0.3398015389149107, -0.6040330413939345, -0.4876235437558734, -0.8820181614103192, -0.22088710236748518, 0.450325131017661, -0.10019738620468674, 0.5220874613914511, -0.13728541970932615, 0.8253955859008314, 0.3095701965414044, -0.22865927698899655, -0.43462073643979854, -0.5508096904715454, -1.4436211884225338, 0.4214405081883265, 1.2786569132152177, -0.03844614862213309, 1.5188596800488514, -0.10061176657087094, -0.03598281188187017, -0.06067802601978886, -0.40889652855863184, -0.5963235374191787, -0.5881943685363844, -0.5996572383833049, 0.16344228322689713, -0.4910352595113219, 0.08532395339894476, 1.46559459122152, -1.4312172801193992, 0.551580677669115, 0.0640976793179031, 0.8502449602549468, 0.22046300594624987, -0.6876678704931651, 0.020472610841433665, 1.0972654741743635, 0.912130877974576, 0.6184836136077242, 2.8618442736630105, -0.16165677335731526, 0.08198627203787179, -2.613765712430806, 1.0467349613027135, -0.44263482141884436, -0.148073057523936, 1.071724521155842, 1.9010012039008353, -1.0485723928697335, -0.96120514326756, -2.463810458829295, 0.8221638996089681, 0.21764193906076498, 1.3361868402535872, -0.6175071240612107, -0.43724368670694763, -0.6563245068371656, 0.2773882996520994, 0.10543130018516725, -0.1335307186608825, -0.2941762487587218, 1.0233257773609499, -0.5360357407496235, -0.5751568733377186, -0.49928373306573876, -1.5385663220108206, 0.05208615631555858, 0.4265123453517644, 0.22479577841250467, -1.634406516021034, -2.3912736846595974, -1.4498348043569096, -1.0849103398609061, 0.31011640940767077, 1.0571449328261615, -1.5342370182134295, 0.39088350759153495, 0.9429212778328757, 0.7494146769753817, 0.8592173410970473, -0.7197142745914569, -1.2935091041332567, 0.330845147559336, 0.7589026377567515, -0.8493346718260961, -0.5129904312621065, -0.4629227294360768, 1.711192640491847, -0.22312175029621226, 0.31530622610302045, 0.6709531915252765, -0.07148596706450115, 0.3583600598434933, 0.484375957682113, -1.04334895153223, -0.7233512329002756, -0.38065957991868266, -0.028539295621919328, -0.7147445081562134, 0.3303493764365212, 0.8683647508277649, 0.9400746097310344, -0.9711942976651682, 0.938159645704641, -0.6338864509562273, -1.127050591352788, 1.9196923384682423, 2.045868239784464, -1.2267975815712053, 0.8586169995618584, 1.203405838142869, 0.49282194174218463, 0.1335940046531238, -0.8850623908314138, -0.6009746261293653, 0.19328951141375145, -0.1952951652463636, -0.29941631515015765, 0.764673117848566, -0.31627648200990666, -0.7846786474507047, -0.953123152596976, 1.6592835206578536, 1.2797161610462184, -1.053528276194614, 0.21038570345066726, -0.5141435573741557, -0.5657266099648405, 0.7259939716941952, -1.48995933178021, 0.27241548373284996, 0.6307343848072927, -1.401621088723595, 1.9446126282418819, 0.1905505514966797, -1.4966098115378788, -0.5885325723300268, 0.21753024112244032, 1.491234401521811, -0.4903142374981025, 1.1915829416834427, -0.5793746031920939, -0.6538242623019946, 0.23811654202755086, -0.6618823127898689, 1.4255726043024604, -0.48317980456324056, 0.09968583746490427, -1.0234487736268194, -0.5615760711955089, -0.04760020070306308, -1.2094644490774866, -0.5033247300575309, 0.7513110992297934, 1.5545730867275036, -0.4533852460434349, 0.18281953815984978, 0.42623866425707757, -1.4117041175363698, 0.36584303805855845, -1.1507149321527803, 1.8425164796321287, -0.6778496985090507, 0.40465551599852206, 0.4426954861414573, -1.8528263034196106, -0.3973414870111749, -0.07691513944387199, -2.215591875069768, 0.330544830000968, 0.26676952476523047, 1.0445864604540416, -1.5983550429272169, -0.0771815892833559, -1.1215317530471252, -0.39434526128064257, 0.08284924819723714, -0.8292909140703478, -0.7248856757623707, 1.2051013129927406, -1.9794393952622469, -0.10406958667401586, 0.3979675399089357, -0.1389348741018706, 0.5994202624051926, -1.0573590390391414, 0.2822754984378716, -0.728196345924135, -0.5585172153883304, -0.985994293068671, -0.8847119054442806, 0.6590846856503626, -0.7245679028126315, 0.07259748252646747, -0.29034385615140423, 1.020663065538009, -0.17113526098979098, 1.6456294293030436, -1.6319430514855697, -1.1180269014333075, -2.361659633850027, -0.1917896973990545, 0.027885168068837292, -1.061735391275663, -1.3745191060359347, 0.7826530421790248, 1.7636455217235876, -0.9152471471769481, -0.11519980456206431, 1.9766249722241582, -0.31414573095624904, 0.23452197649044676, -1.0038115577890558, 0.05722313651046863, -0.8051844018915374, -0.5607323938044215, -1.555690925872678, 0.08940941777160906, -0.6239342844857919, -1.8446312269424001, 1.2748263419467405, -0.05435357949177489, -0.2816797698060279, 1.8635511044371451, 1.23944251502416, 0.07700917783413183, -0.8588219902440605, 1.1215623567685, -0.3444304091044077, -0.9713575882820181, -0.32896394655150296, 0.13543943232432792, -0.006649512233441528, -0.8501461555261475, -1.3934636429990808, -1.0769816827671561, -1.3187701713660311, 1.26042143663019, -0.8104527017669834, 1.8139835717296129, 0.49916726486457663, 2.0649240471438235, -0.9469034200393797, -0.8576113654738506, 2.419395089539471, 1.1017892837111019, -1.6097113755911356, -0.8392748734686335, -2.4453639468262263, -0.11483725516008844, -0.5075645761988928, 0.6454496200080552, 0.04082937936782123, 0.3607202438357075, 1.2594217603770306, -1.170496559455573, 1.7440782546309515, -0.5551926305480182, 1.5935187124863794, -0.7389318803968226, 0.31471962703498635, -1.3824040459083466, 0.10576545709679494, 1.0049840120249318, 0.47533203752773373, 1.4510177841188443, -0.34062904035709446, -0.5230357022573356, 0.31998971163396167, -1.3339062679783613, 0.9084922454960732, 0.9735381439150803, 0.4032773604616179, 0.8389893633304345, 1.3881102633692797, -0.07280013803877942, 1.1813726842306616, 1.3373757487225229, -0.9016820438024247, 0.02277691176913443, 0.3929656626704282, 0.7168161594470462, 0.5511748491066694, 0.7306269137127014, 1.494826873251682, 1.0275161136326953, 1.8263231287536148, -0.005953752832680375, 0.17279041662542385, -0.14964413231807397, -1.0823608305460706, -1.94622227208907, 1.1705349726907441, -1.0494765525577778, -0.6614587224179899, -1.827079585743141, -0.1851812306761016, -0.6721570833662941, -1.4317610646811105, 1.403538471201747, -1.5464376403149518, 0.2364843734867682, 1.6190817363359253, 0.9094410715958542, -0.7538037857920452, 1.1464651301694848, 0.2652301959117473, -0.1534024111698694, 0.828455396810601, -0.3601862728639376, -0.10361569205737291, -1.4966137823935155, -1.0836532374496113, -0.3045514231153733, 0.41902483911358346, -0.42085793845429503, -0.8064433814983772, -0.005523364276989233, -0.13343095379018907, -1.0357460579278117, 0.4246437593375615, -1.3747278468591726, -0.43641670110043246, 1.7982736664174808, 2.4753458621624778, 2.1705869762429364, 0.49160396551693614, 0.33078618574138136, 1.5207283747838651, -0.8024598249344206, 0.24837878769118457, 0.5900573833662501, 2.208939215128128, 0.49694876037883373, 2.226100886694391, -0.26650919540241597, 0.3910278564095468, -0.7491191728258303, -0.21737063789036337, -1.4496135269332187, -1.045279112923142, -1.2877355777515287, -0.6131995405954667, 0.008708135440910779, 0.2069648941660655, -0.9747625898320514, -0.37246009067190733, 0.344014868005819, -0.26714700707470307, -0.6812440187624463, 1.5814185239328231, -1.777422212798754, 0.12839605447596228, -0.18040974397668944, -0.17248419038946922, -0.3480443578207533, 0.6330763977204762, 0.6942244115896279, 0.9443202856911823, 0.9648750519026307, 0.6735009468882888, -1.0713448052140075, -1.5773933923325034, -0.978082651952674, 1.3634987031883017, -0.009700328099807353, 0.2872431371504773, -0.4179843457019737, -0.9678368042958793, 1.9539858588506518, 0.909797148960152, -0.07133216028149367, -0.5499724492146129, -1.1172692757596179, -0.12137453689402149, -0.06241140074280496, -0.9582358086750097, -0.668329305314022, 1.9005989817960562, 0.9727835863646074, -0.5400951917659539, 1.2779251265140816, -0.35535188236796367, -1.233677873705213, 0.6987385559301061, -1.6706746056429564, 0.8661267959747826, -1.3867074448008376, -0.4489942744355476, 1.2303482836027877, 0.27460708780800225, -1.3054016623960047, 1.6983065249075768, 0.7372109835715874, -0.9391832848017717, -0.9593418321879733, -0.8856299772031738, 0.1266577923251185, -0.9668006123036255, -0.16902040055179604, 0.4979795174607774, 0.7753502916340671, -0.07780643221462012, -0.8875279805465938, 0.04543620520230683, -0.3130424123664403, 0.7494080411623055, -0.4573374437213357, -0.6572918557909941, -0.2629857341574678, 0.05214173848379069, -0.7176539150355633, 0.5914617821518725, -1.203916684007068, 0.3385991350549014, -0.12326596429233, 0.6283800025520317, -0.0039297080012438415, -0.3633304224675326, 0.856599210792878, -0.4546858069742952, 0.7623254076659183, -0.5513761383091501, 0.5520769465176473, -0.9786835952532896, 0.7510341418794653, 1.438056814551511, 0.7320900244043445, -0.2960365567123945, -1.8646038597063803, 0.7191531287296248, 1.0838056916420402, -0.48554137286043186, 0.49096617254702785, -1.0365333316447254, -1.269067731294772, -0.7197576591930597, -2.018353933829538, -1.0588170875346907, 2.0088106356551827, 0.7383199288508165, 1.5158151111677263, 0.6360471086839191, -1.150661858855931, 0.03785762305348357, 0.15841307956590664, -0.37087478269390906, 1.7994368647478904, -1.3555928543446492, -1.0062714473689667, -0.011397049604745503, -1.0864760383702659, -0.4084336042929979, -1.8017705728444526, 0.839405370675781, 1.4579992215189959, -0.18292447396594314, 0.025104550543033732, 0.38375085839013323, -1.5038015412430563, -0.047384659257432515, -0.6010362133617203, -1.144895911379773, 0.9032808135602136, 0.21487726627332712, 1.4153311895280891, 1.7837655050675654, 0.8116643038871703, 1.1818795006659322, 0.5957089571238908, -0.9703730596041845, -0.8502714083002764, 1.3368860484876866, -0.6182235594330003, 0.4850766612930029, 0.513578700377338, 0.8011085791607268, -0.5672897884540495, 1.1492306080845756, -0.0021526418138860964, -0.3418826814921292, 1.4431450468612774, -2.443900182344072, -0.017556300026030272, 1.6184301501573228, -0.6013349967662421, 0.28911187811447847, -1.4259617202187922, -0.23114989577531417, 0.8399930190735134, -0.20585021946554816, -1.2910612303814815, -1.078400220927912, 0.6873918004091338, 0.3692358519253709, 2.0996182191915547, 1.0531168216440738, -0.6080564280497346, 1.6007803608664957, 1.4181372863612787, 0.09893685870071746, -0.8274612859271264, 0.595290791216437, -0.9803107031775792, -2.914882841416498, 0.11531192996659821, -1.6380540928681728, -0.333133318523852, -0.4511870975915316, 0.6858326892483425, 0.04386485039732101, -0.07256293222280143, 0.5263477176263434, 0.20100025549325093, -1.4624278838828806, 1.03809520946445, -1.0739626376285727, 0.7800769427924968, 0.2575731479616604, 0.5555108530403888, 1.1925808215788436, 0.29679112531430857, 0.6742989075745354, -0.013076702121933114, 0.5640061868087209, -1.5002243526254804, -0.3804234881398, 2.13569301155614, 0.1444166806986227, 1.2612399783798531, 1.6249921156785785, -0.23369763673035257, -0.8474688162713747, 0.3389132464424533, -1.4563475354073614, -0.24572725154280883, 2.3058587420005927, -0.5884370743424485, -1.5148428549433564, -0.562941773327897, -0.1871267107758026, 0.315898974830703, -0.5298447899250647, 0.3545993652167756, -0.8188065815029094, -0.25138747428533115, 1.10937977890346, -1.3217041389565196, 0.677178857470545, 0.8856597221073257, -0.6491126894293161, 1.5844072200421093, 0.2624721180110085, -2.00674111177642, -1.077597979409183, 1.496899250444152, -1.0670307628542068, 1.1231124074484933, 2.865002207390543, 0.6145130179003584, 0.023253291697868272, -0.2560187467919384, 0.049114398188344455, 0.13481829586642236, -1.9379328048281435, 0.020871229465498922, 0.3740946982850382, 0.11063682509017816, -0.22912791200500726, 0.6424679085123279, 0.12260603473467696, 0.4643706415223215, -1.0021522927020414, -1.4294552310678765, -0.9834399789461634, -0.6862947542302575, -1.1346466588445094, 0.28464220711264504, 0.18747166286777536, 1.1681786602864217, 0.6658741583108871, 0.6736590170649862, -1.6013037850949834, 1.2918630296947833, -0.5550765471078116, -0.8771202050493999, 0.764425206662452, 1.390431129192817, 0.14033226007151897, -1.0889282865659722, 1.1808813229465955, -1.1781128366594047, -0.2692188969189427, -0.03083283701037031, 0.0708943796419278, -1.7279819315250897, -0.6684616361092839, 1.5834460051681605, 0.7919935099225751, 2.430427801555606, 0.6438552989283425, 0.5818660897345649, 0.15491890283139823, 0.4435265207896886, 0.42800927626975194, -1.0653525356539468, -1.825114339902109, -0.92223271359483, 0.6213555679308838, -0.6826272491246158, -0.66436932339893, 0.9601568195536264, 2.1825597940639687, -1.0557087286871918, 0.47038977771060125, 1.2990682964889355, 0.04789087431702385, -0.19097803623749401, 1.2262535560035344, -0.4415928766833748, -0.6716408636429103, -0.2717709326175304, 1.0215651264412184, 0.15131685042881501, -0.1540654053151629, -0.8264803796475134, -0.9621224631221021, -0.11821967508866597, -1.0685148518449374, 0.13725869826025033, -0.4364647526444492, 0.19146466138574042, -0.17095412091121281, -3.011313965067912, -1.4870511266194628, -1.5852562693549455, 1.1055582130436428, 1.0506111782638188, 0.5714249994814841, 0.7809927422102246, 0.15353914999790302, 0.6420410847454772, 1.1324745091923316, -0.06497225247914858, -0.1252990065515789, 1.3693536810973579, -0.33329922826181363, -1.1983328919320737, -0.9601727833710668, -0.1744471104393067, -0.815547043307775, -1.3802684283877287, -1.2110313930694405, 1.178930917212492, -0.5461100079120323, -0.8042032080177653, -0.7721006720662564, 1.9214725374220745, 1.7922282273939005, 0.13494019924984288, -0.6667216479387619, -0.721169214865725, 0.01901412305010573, -0.2197637189334962, -2.826105456310802, 0.08918444735104901, 2.1090414744588215, 0.5204810066022009, 0.6496607976743753, 0.8449176278328949, 1.5457272060463703, -2.459426184419775, -0.22316047526880742, -0.6121089619603097, -1.7114490628175671, -0.9826606547224378, 1.413467941420246, 0.4947188826084458, -0.8581066594855713, 0.7033918426726337, -0.5750942469148623, 0.6082321298339088, 0.7647094588401182, -0.016414673467487543, -0.5169719536028112, 1.40970349853228, 0.649592844738695, -0.6864927856139015, -0.35561106507483903, -0.09087138261674112, 0.7966539305367325, -0.24013085869099393, 0.919603806325122, 1.573630381965994, 0.5640858022887364, 0.3823613375714276, 1.1364536906395282, -0.43865249012403706, -0.8365625419472233, -1.0551054419096901, 0.15436659722133284, -0.08001829454848201, -1.3089193785054547, -0.20741627531988754, 0.5883325504634186, 2.1233070806719896, -2.8472722649231983, -0.3748280933744882, -0.7611336310178152, -0.9460230398135299, 1.4187068863894865, -0.2846116047262694, 1.1821251647466362, 1.6179143056871794, -1.702955689345206, 0.19250332112324298, 0.9392259500577648, 0.16896057026901795, 1.3855463552159124, 0.4585278035671782, -0.5849518600189161, -0.9414778504226928, 1.1017084830809944, -0.5787500723552057, -0.7229693298364217, 1.132919665178167, 0.1462236524161113, -0.07411242838654676, -1.6400274266639674, 0.9217038656670304, 0.4040799260652052, 1.4835642117060885, -0.320290441343378, -0.06659545228762113, -0.7757811947284287, -0.2179509111352132, -0.6375629391104792, -0.4718029422152923, -0.853535773084312, 2.4657942362446836, 2.155827688683431, -0.18541459833357957, -0.10068648235994361, -0.1988440737771765, 0.45338296461252975, 0.11956548442063555, -2.4140231417383684, 0.33358383653556634, 0.07126050737599483, -0.7186258984282614, 0.5500166737030838, -0.041438938496862206, -0.06859390345310716, -1.2291981495223705, -0.1364106745778015, 0.08265723304199481, -0.41172965788538374, 0.31049760915859725, 0.3547282965690271, 0.6760400890249776, -0.6101441676035247, 1.044905690986467, 2.742451097779623, -1.1445312122136975, -0.6528815285462091, 0.5859648001086454, -0.5518251135687775, -0.4778641500855229, -0.7056265379755983, -0.7677195700078866, -0.8799829194732363, -0.5348461374898332, -0.46983595846017223, -0.4740429419938677, -1.2352549560149404, -0.3692435196586566, -0.6914600745141506, -0.9412642137006184, 0.41472273047206726, 2.234419373286795, 0.8368671773850417, -1.3209742979648103, 0.8490111950908605, -0.23377683011665507, -0.927946936217742, 0.06051663581435041, 1.4972743515328084, 0.2398799040062657, 0.3293669133791609, 0.45125254867376374, 0.3331992517260714, 0.724704631765686, -0.46787286101100006, -0.062258208333558857, -1.7464440260942753, -1.1463997621018205, 0.9394162491373782, -0.5141741691420851, 1.4111672688697827, -0.3306517241296215, -0.8872102005693179, 0.0713540714196301, 1.1983525418318857, -0.1431716524628036, -0.8467497109970247, 0.6229086190012081, 0.7529533499385345, -0.8126327165940042, 2.3617454588011606, 0.21556647046734423, 3.0170130116601324, -0.3036530832377867, -0.3427046307953234, -0.9141522007211733, 0.3354296734361411, 0.38972251866419444, -0.7118696563120493, -1.2871839989029965, -0.577337749184957, -1.1903531391513245, -1.055988906581041, 0.5651102228951104, -1.1304774647689106, -1.7455440824669652, -1.0995251447364751, -0.3163199584942273, 1.0726767294242476, -0.43051773606597016, 0.03318132217501827, 0.3897260758891369, -0.04049764565895309, 0.04566768929777086, -0.9975837467780084, 0.46064978065099493, -0.9141208316884218, 0.5938117271399408, -0.015642226838752996, 0.8866408042224043, -1.5713739211614537, 0.16866864359825604, -0.08865132465941779, -2.0309565512484404, 0.37780209020155725, -0.3577828774315583, -0.9313389276260441, 0.12297153890646494, 0.5730928165596729, 0.10229230256215004, -0.7461778313042549, -0.12374961436486791, -0.2525343799256898, 1.7235845831911214, 0.6004346537075002, -0.17247726368499547, 0.9710428839920021, -0.42841342135201943, -0.6281512176470628, -1.8065459647336213, 0.4256229878789991, -0.24632662222339669, 0.6659317130826603, -0.9691926308367317, -0.6119977863127032, -0.1292869222358893, -0.1861584213697328, -1.2341524131619113, -1.499952902530794, 2.0185874139076883, -0.5624797984848225, -0.9945817481638225, 1.9651159121731998, 0.4484571793385537, 0.05094016071670228, -1.265113488968878, 1.42795016724362, 0.3015699981065958, 1.2259771369582129, -1.273309453224337, -0.08956793515100456, 1.5518160091270596, 0.17497064205155013, 1.4707147104149978, 1.3425587799131553, 0.9070248927336193, 1.3610543890409683, 0.7021442267469711, -0.5225117664818598, 0.5648998844169267, 0.37581129699842075, -0.5974431836891749, 1.485565662254412, 0.2832623965731645, -0.035952263623349606, -0.7574623164088075, -0.9564915255923434, 0.2828837858215735, 0.910515371259124, -0.30393986912190607, 1.9735998490705564, 1.6767094884703753, -0.5808900243677465, 0.6437015769831366, -1.9907034687818328, 0.11614162875193974, 1.0491018328553239, -0.30893184580101746, -0.14985396205093535, 0.1996412182943693, 1.4373493082242206, 0.021512071366859425, 1.4002110673880215, 0.245288137138347, 0.04532994670331136, -0.44103502580772413, -1.0073189299756922, -0.9228335733019994, 0.8665761062849427, -0.7754574599104544, 0.9541519093230831, -1.3067624956968693, -1.1616437871503285, -2.406485363670126, 0.8167055318034353, 1.2051295064513374, -0.5668396475707138, 0.6652416046514938, 0.4711637635551573, 0.9007193904936677, -0.07551322373598557, 1.284247764011225, 1.706680390576429, -0.4527180141630098, 1.0470389906685005, 0.2136988212917008, -0.8614972212074613, -0.9051679948282532, 0.5761264156326139, 1.4552764261265005, -0.09076274394208551, 1.3623124701445906, -0.05781527302110437, -2.59829873293018, -1.4736581710595795, 2.0596260650651352, -1.430023227727088, 0.1959107502120777, -0.6185828101963676, -1.3205994682169202, 1.3979548888234965, 0.705928001550244, 0.7322789385203949, -1.798416858665772, 2.972598475749054, 0.6568018006404248, -0.4716301943413396, 1.3211986715426267, -0.16976165174268038, -0.4958442836115687, -0.06378263825771943, 1.2247999716461742, 1.8781939351274974, -0.7338197723197545, 0.8398574606380553, -0.10589954868146188, 0.5242811284741052, -0.6298370295355092, 0.04858414560688335, -0.7600023199173429, -0.7007928329203793, -2.5312977033783866, -0.054104976579546556, 0.1092895287311723, -0.8642878426575681, -0.7337211632408543, 1.2011593291620326, 0.05256411068501571, 1.3514591225904777, -0.495954314539221, -0.5872847615471846, -1.7466951133458726, -1.3716093134287821, 0.8523086421806738, 0.5808214064450198, 0.9760845116134613, -0.01551811636899369, -2.104168803436697, -1.7928838933120936, -0.07015739137674416, -0.6355690917704435, -0.2989019389257143, 0.8064967186184478, -1.6878004827096589, 1.0500191956306921, 0.2173037964678811, 0.24421958584691442, 0.38619011861457364, -0.04356217791550543, -0.7150681884780414, -0.4414461695458114, 0.3428496722823342, 1.1805795284959513, 0.7353692206344246, 0.880746319338414, -0.9124398006864903, 0.15903978525862217, -1.1708513623503751, -0.15688198837952852, -0.03565701830961423, -1.2720886787520063, -0.11069896044408294, -0.24207505960289077, -0.30583370939729493, 0.2096139020672007, -0.8302958404664419, -0.1265096444593855, -1.2651063121965587, 0.24452770849759928, 0.3979023631393826, -0.09419431042247246, -0.42555339296568473, 1.5291402240302079, -0.07327089551200518, -0.6204646058848811, 0.09314491484946004, 0.04775896030628209, 0.8059564943100099, 1.9871597483146575, 1.1458996686847085, -0.31292438330671535, -1.3103695203027488, -0.6173636824716331, -1.2792238706489536, -0.1088036125076268, -1.029013760109464, -0.9129102116351986, -1.060922393668734, -0.25225835126880164, 0.5451998307633323, -1.5878651702017983, -0.5765577084083434, 0.9491991399176399, 0.945864039910622, 0.8436883492230024, 0.3139450211674978, -0.27589094286166643, 1.658317412669723, -0.2773325663042109, -0.395977103937587, -1.0991609243704055, 0.804388216622327, -0.3453872358797991, 1.5965513180258735, 1.7678081436277042, 1.4002693596306228, 0.3240426526528412, 0.1553567845036254, 0.7822497680670395, 0.300145329178312, -0.3067202392999831, -0.02863433119327455, -0.512773201036051, 0.4589512721502751, 0.40692884368732263, -0.9948784802011438, 0.13451004416758314, -1.4447380091220776, 0.3716747808856117, -0.8133495422250436, 0.8719370383462048, 1.3595855738598226, 1.961570146453794, 0.41108308696941465, -0.2935370178881958, -0.4150381008027434, -2.5220041121467847, -0.8563030745118757, -1.178076417789266, -0.59937264276189, 0.46988318339977947, 0.6461584207081326, 0.1989979135681359, -0.78856836890037, 0.7814899477369913, 1.366155435140182, 0.12596778298781888, 0.820194569278873, 0.9739391292361561, 0.935774459162121, -0.14827353996187545, -0.14678503829967177, 0.05927832208024163, 1.6067510896906883, -0.8861432026611875, 0.9410787562993191, -0.020734434869503705, -0.8426269559088049, -0.3647986459316799, -0.5689154246705248, 0.7555193529690809, 1.4931556090617826, -0.1306447208717401, 0.56372806488887, 0.5926679742797791, -0.16897927194522025, 0.21251983273376282, -0.1581948412358647, -1.5425836535330208, -0.3021139729543039, 1.8049985008147575, -1.3469657724185358, 1.15695793922865, 0.7505455406233366, 0.14079189100040557, -0.1146404620586876, -1.2131469222285125, -0.24530848028750635, -0.4806750529678847, -1.131166860657651, -0.10271084735902468, -1.1658438098936825, 1.0754860120715115, -0.4125606307871673, -0.43833119265213033, -0.31613025140058104, 1.6568423379301145, 1.8535303019798657, -1.2642588460333866, 0.5104899928451885, 0.9877411298227634, -0.5873133533122196, 0.9677280939876626, -0.7246540934326339, -0.8948780709026274, 0.30977427864418094, 1.094004116036574, 0.7638007088282518, -0.27726777189885304, 0.5885142961805429, -1.1491494533828612, -0.9310799352366598, -1.5263838507016003, 0.7524488917930127, 1.5762925748480858, -1.3640332370928145, 0.037997339536184574, 0.9330127485296369, -1.510081927872346, -0.1385701460113223, -0.5933976870408427, 0.31126663552498995, 0.6763595522190363, 0.27061060765397427, 0.7290705656055353, -1.3206081392643396, 0.31252542472041805, -0.026397577492148452, 0.1978552985814827, -1.425342582428009, -0.12048266550576002, -1.9341801206250797, -1.0075596047735695, -1.268285689838742, -0.42970178199980635, -0.34639490748214274, 0.8942413412017995, -0.02250782124231415, 2.455348774127259, 0.585504977521801, -0.5407840268652461, 0.20728006958242937, -0.44501505738945085, 1.7818909284158178, 0.3575576327245159, -0.24937559293036746, -0.0077657074441690845, -1.3950707344496756, 1.1645215587310718, -1.2188985758440987, 0.49518159033807596, 0.8631724795149729, -0.3752668317554757, 2.0428899146986397, -0.2394015385563509, -1.153906932409578, 0.3452501860032267, -1.0821030643296594, -0.23671594686580852, 0.666864412916283, -2.1038384466119537, 0.9526184444137823, 0.3409741232137134, -0.5498148825616671, -0.5452401873709929, -0.3733041147511633, -0.6278205010517696, 0.7862723444707795, 0.4702190786558303, -0.053199227013462906, 0.4271132314572739, 0.7274157766286982, -0.38563583912390326, -0.14729797513601137, -0.4615774601309802, 0.8280059117553868, 1.3405126515840031, -1.3586453875122693, -1.8507285865034044, 0.8862421675770044, -0.2709080461732961, -0.581764422915424, -0.051406861620211255, 1.275746900427683, 0.9431586486374917, 0.20164357801025157, 0.07940071647109176, 0.5572076829134525, 0.043373532015369726, -0.922307398676156, 2.0872117576510374, -1.184627662923285, -2.165732626617696, 0.15267892284044937, 0.6228750074229186, -1.5415993174479377, 0.5328836496529386, 0.030820562589286563, 1.41956951484, 0.6737070048608591, -0.5252136396548323, -0.10562831720320098, 0.27205443141092117, -0.4453837600844479, -0.7904862712613528, 1.3081085753795885, 0.28111754445865994, 1.9221004403767654, -0.06664284615186293, -0.8710426760626961, -1.1039832573413635, 1.1105314817848828, -0.7596746822044012, -1.8718387177363849, 1.1945792302287521, -0.2779717707480482, 0.2961812024940522, -1.2599269493915133, 0.07341896263620194, 0.812784716094506, 0.2362726313432637, 2.144259965207543, 1.6273596107153323, 1.0274982456090567, 1.0275013115839977, -0.06279525603752685, 1.112396326443442, -1.6957571596587198, -1.033900188793127, 1.1480841224573048, -1.130553761893211, -1.960894344185497, 0.576462938301649, 0.2526174029222071, 0.09052845736806349, 1.2440226254619777, -0.3378050812931102, 1.4232109508534647, -0.15054031867368026, 0.16538251138599688, -0.4478131066194034, 0.7636717921020678, -0.05732173298413337, 1.1747808123668668, 1.6759886995665414, 0.7825707371159325, -0.5121664121901534, 2.045540412332765, -0.7786412481007006, -0.3310618588785367, -0.750164348917276, 0.03045388263122687, 0.8996764987865042, 0.7718276405558715, -0.6229809223611861, -1.1494904482421353, 0.5553157285960085, 0.20698076139336904, -1.2997419994354455, -0.07096037910217921, 0.793620752523527, 0.13980873133941252, -0.5635507709617165, 0.12398464804189388, 0.9396406850599767, -1.4664040392401048, -0.3549510690711461, -0.010524966530172028, -0.5499909185590225, -1.6826447498120314, -0.053917445380532385, -0.35633194955981456, 0.1634819288915801, 0.23870442247578794, -0.5251090265310199, -0.6434234396787909, -0.5572194002140084, 0.22841502543786477, 0.22176874791688553, -1.035718808040657, -1.3253405980748185, -1.175461956926272, -0.6384222076438376, -0.45859278467430226, 0.9842092996348698, 0.45606377104268786, -0.4915027483275191, 0.15922082998761228, -0.6479771487984235, -1.1834976902864847, 0.041456088108888484, -0.4183737084510753, -0.04492186963942454, -0.6552270953854946, -0.21396086951636956, 1.15642648470731, 1.3213956856361295, 0.7911483787187417, 0.12226303284518736, -0.27626087381498193, 2.3294539909962197, 4.039123920042104, 0.060141714507249484, -0.16162534820921984, -0.7744196741675501, -1.6505713634016184, -0.8995063933186542, -1.174324285925337, -1.6574360787390687, -0.37467524915094297, 1.7170920773481435, 0.3989116915974739, 0.17925547624443736, 1.2539181498670324, 0.6731723239113563, -2.0928739014465236, -0.8999788122358393, -1.9144861488335536, -0.33215913707369465, 1.753799018118846, -0.05832921117184833, 0.006088121539418291, -0.8017135410069798, 0.5322492937574043, 1.5553059869209331, 0.11173463094088835, -0.45059401261608717, 0.36531371159460074, -0.18963861395023723, 0.6642117063038265, -0.20625938911788821, 0.9639930756710477, -0.6966553537324296, -1.271740099613465, -0.13463093056307046, 0.8718492875731908, 0.6591060011905912, -0.1135044020848859, 1.3773358415822903, -0.25704068019550713, 0.6498340991490578, 0.07954782874443314, -0.1973476459398525, 1.7167931344360035, -0.017606863785156947, 2.1781346792766594, -0.8932596106430953, -2.1174569307943414, -0.9729437167447107, -2.1933838911270596, 0.6131501950193581, 1.7100816338822074, -0.9925677980704052, 0.296622759063802, -0.59708205818947, -0.7898880559152841, 0.8884235549333827, -1.1320885971557957, 0.5384219737607561, 0.3077945001318444, 0.43297864844514566, 0.7916041973075195, -0.1026808412605663, -2.4929945555123645, 0.1349894151789162, 0.55468771973333, 0.6624378658006933, -0.14564605484324564, -0.8770284318627304, -0.5268844830110805, 0.43719098018614005, 0.2582820711976036, -0.2270567887486424, -0.3299835123719603, -0.8585023791431456, -0.24477411912263233, -0.5021852860965231, -1.051978629232195, -0.11518527662159553, 1.7432616876273952, 1.5880377054027217, 0.2026081899115516, 1.7091095587894314, -0.9894391401029321, -0.2100465708317291, -1.080841417962957, -0.3384348906140613, -0.6298232464852819, -2.1662428005470775, -1.8463527936963993, 1.0683453689013935, -0.1816170797587021, -1.291786488309004, -0.8295951703086881, 0.22616147032371764, -1.4698270028643539, -0.6786732482650503, 0.5914847388055507, 0.16764822285831688, -1.342807050119046, 0.7245773435594633, 0.039669152003306604, 1.281732574336169, -0.20858810710673995, 0.6187494414968608, 2.179470167076789, -0.709233507378138, -0.6210793348523117, -0.25911584194471254, 2.302623076103141, -1.6349062839366981, -0.22265804739458547, 0.09451953725757477, 0.49924861443143664, 1.0613790533973293, 1.4873598852505105, 1.018072093475246, 0.9792375498907857, -0.0021643252185993105, 1.4495878692488757, -0.5260038639747381, -0.6105780346933577, 0.6042795311131508, -1.7474832167476502, -0.5292000514635158, -0.8963885867780533, -0.6053528715050378, 1.3125357177872883, -1.97009376546889, -0.877898043987454, 1.942406541745354, -0.28161407482852724, -0.02185201646071174, 0.8503931185866895, -1.6242968572282497, -0.011846875881475805, -1.3699475736657143, 0.009947997238032373, 0.2283248714722376, 0.3077918893700264, -1.4123003082050336, -1.1962207424118114, 0.9784972377976188, -0.3715838894318451, 0.13463711712563098, -2.1429200503200976, 1.872171232919567, -0.6348008381972877, -1.8884868934287475, -1.1920961272009474, 0.009239504864360756, -0.5648806373656287, -0.457321564125815, 1.9057092189689877, -0.06190469759822664, 0.18823464321921227, 0.5964065819977132, 1.4401183763129894, 0.5235571784413903, 0.37601508862944427, -0.7972503301803399, 0.4003006085614147, 1.1810539878204451, 0.12211320674206547, 1.5116889890087626, -1.4002047770706105, -1.0584536157571045, -0.1507749331853618, 1.5181242027662427, -1.7933620958031502, 1.6769339029588464, -0.4466128340149313, 1.08233501111073, 0.11483762787848824, 0.8428285736228375, 1.243911060578713, 1.4343703213448455, -0.8685496772366631, 1.1238597900647178, 0.3273044621229932, -0.5657682647379311, -1.2715197974024222, 0.8953286710645649, 0.559754628311891, -0.8889420269952336, -0.1579027785523955, -0.8397048802106141, -0.3868906779421621, 0.29145499578053025, 0.07007943212842148, 0.3227312667816317, -0.19257770278977093, -1.549161548961198, -1.737658562979283, -0.8743190026232937, -0.6878085860332073, -0.21887963386694206, -1.0415364866710246, 0.3573810178644654, -0.1104223710063357, 0.5933424353835468, 2.096103876306561, -0.8937950851165384, 0.9648262517700404, -0.08018779174079788, 0.11672381768831402, 0.652602793950202, 0.7999141056584376, 0.13259179417665112, 0.894713098624504, -1.7008849225090983, -0.1404285851764233, 0.5090849071413464, 1.7371659786972473, 1.3051112609989897, 2.316059346308452, 1.2117665823480974, -1.450750086744651, -1.1612405614933954, -1.1482549668191397, 0.5007970435545168, 1.1300499830569257, -0.5097900652751471, -1.0881746052116477, -0.9872556073160926, -1.0247534096787057, -0.8031439817223046, 1.0389141074116879, -0.5176417751467307, 0.6619100076565393, 0.8359087166165807, 2.2457567400591225, -1.6282678629487086, -0.5981135393813696, 0.463308579328445, -0.4290134116477948, 0.9084858201812022, 2.8207566617100706, 1.1101142723755946, -0.4810770926751105, 1.6615926473547982, 0.331775665222783, 0.3994371435039283, 0.668850238976453, -0.5329990980460262, -0.632092997462879, -1.4443608944124076, -0.714493424940004, 0.1147718408391369, -0.9361017399806304, 0.5005174856796605, 1.0117683956491288, -0.21124142683165797, -0.8605610380472368, 1.9975840216421548, 0.1380556122969606, 0.1565487042661151, -0.7474198949933293, -0.36336341127860833, -0.39067875152388487, 2.0758390930868917, 0.515097228452384, 0.04262431876934506, 1.3236778538062224, 0.5470622378056529, 1.3343193567331215, 0.46190542662519474, 1.3071564576203403, -0.3900665211065578, -0.19798785266611046, 0.6594232897344954, 0.06297438071782221, 0.8297067534712113, -0.5977074424229454, 2.1847101950048975, -0.24858468094227038, -1.86401439232083, 0.11050215376888871, 0.20853777532686582, 1.2972007073523615, 1.0926580928357084, -0.10564515631062753, 0.6239703548599497, 1.176759011116622, -0.08087319897624211, 0.04201363058207838, -0.5199584515716686, 0.3692749423056631, 1.260318572256293, -1.0772934867706603, 1.1243354434731487, 0.7009218283063627, -0.1945302934761535, -1.0895081271779956, -0.8049720214921318, 0.15402355362687625, 0.06346231959845001, -0.27471404389410414, -1.5386026985493897, -1.0526143229368503, -0.18115949181096014, -1.2036056051304191, -0.9696416302407562, -0.7521743334176269, -1.5045385286766144, 1.2217387540091518, 1.24079361508698, -0.8672953239222309, -0.32008433333412994, -0.27834590649449775, 1.095877147771667, -0.46702246854449064, 1.1146180040483662, 0.4427142441721617, 0.44882415290171634, 1.6125463616184808, -0.9506178303032828, -0.3440312042383882, 0.7032448791638224, -0.034753865751068834, 1.2743138279719037, -2.420019423844482, 0.24551387729656365, 1.1372831286100262, 0.07107337563111994, 1.052133916587935, -0.08454203857717608, 0.3326976001168269, -0.3174553194183536, -0.19761112179324808, 0.0197616164538531, 1.0081311023978918, 0.9440756108451571, 0.5029648884773874, 0.4115393890407113, -0.9034623109208215, 0.09599588250126803, -0.9985915542902717, -1.1093081127608504, 1.1532312795861197, 0.18817296460382874, 1.0963454125701626, 1.9253720508269516, -0.3931265370228746, 1.201997995996085, -0.5493110995255468, 1.6329876336252656, -2.3003610942689354, -1.3547049057831935, 0.5751710372554301, 0.7421384550718977, -1.9512230467131166, 0.090551678924635, 1.2955953644361724, -0.47685273678654155, 0.6623960118673347, -0.6321467184779734, 0.43633498127032666, -1.2044708383222664, 0.6225299041799893, 0.8172004746837047, 0.4437063534697759, 0.42898098176060934, -0.18267734369478128, -0.8283644780972212, 0.24636394763933686, 0.45899011489053354, 0.5368643986603105, -0.29862231380878473, 0.11373942010422988, 0.012422363333115553, -0.15929034656458219, 0.05652102276313918, -0.9738467144505597, 1.6480008496861622, 0.2744615439631795, 0.6655605890276693, 0.7133457560794739, -0.3475861698429131, -0.8690461315526651, 0.07748562229079774, 1.3959094894107664, -1.882566765505071, -1.4277094271262465, -0.8270177185774528, 0.2523351140330964, 0.5766738664957752, -0.28339951955873977, -0.4393361857644919, 0.1887484326673964, -1.7503767496895741, 0.1826330389307398, -0.7620095790747488, 0.07630060334304245, 1.0577536459932801, 0.5800778807439528, 0.27450182440963616, -0.5076702533466193, 0.3710917573533185, 1.500428081857024, 0.6064275693083384, -0.5228534352765773, 0.03338806040588395, 0.5240639852587835, 0.5828219851982256, 1.0321457239168434, -0.07709547833247213, 0.712798177483292, -1.649359716681647, -0.9963489654346228, -0.15629467774774097, -0.05791587391118912, -0.44288172872666454, -0.9308793895339849, 0.4299951207105118, 0.5412190873301501, -0.6689783996106723, 1.246001522252777, 0.5279872361670139, -0.9993134508748692, 0.49137821446513485, 1.2294051850473136, 0.017481876434487273, 0.9287203496748098, 0.005066226326962222, 1.9885974849016408, 0.38902984252003, -0.15359628372622014, -0.18769052390603094, 1.4362385791517638, 1.5084170305580062, 1.4864169817152324, -0.2992812481799035, 1.418083629591886, -0.8752845612829191, 0.276590537316677, 0.5037701100659039, -0.3099097837776807, -2.87980137714139, -0.2847118807192538, -1.7119867069731278, 0.47022590468610304, 1.1035578355313593, -0.07721001230749944, -0.03952923828271073, 1.6463248093571845, -0.6526035421860732, -0.8693365617611761, 0.15910236390650653, -0.031691453986996417, -1.6230785734423927, 0.5214296192609564, 0.4465732799232742, 0.9175165436044336, -1.7136874764437648, 0.39230440332062017, 0.7276976141899852, -0.31463957847356655, -0.10108088646413313, 0.7476554915448029, 0.9996030910512049, 0.3928006787354174, -1.6300747073608233, 0.41714430325976976, -0.11555504236466627, 0.9344462047104272, -0.4625357450382107, -1.0839052733371752, 1.6705850766632837, -2.875153428796039, 0.42812456267061566, 1.5469604619632935, 0.9817636039733217, 0.6364772413022493, -1.2137173113212163, 0.41048155259531477, 0.6064225766508774, 0.6514638508618997, 1.494574503843962, -0.820812747838823, 2.0147644991662967, -0.29161139016414356, -1.2664606991395473, 0.7476451292704759, -0.8941159350491594, 1.8816442864604614, 0.19691454189518437, -0.33441227646906196, -0.4759268966466287, -1.3540272022001123, 0.2050725271339349, 0.6239879187385127, -0.20936595456034077, 1.050570825303706, 0.4036188863763779, 1.968707972288182, -0.602767353832308, -1.519707262500111, 0.3875009125417334, -0.23506265903527862, -0.16550911805585997, -0.838215686201269, -2.412964183075416, 0.6227680802287018, -0.29441472757523707, -0.4284873930239095, -0.5902056305325508, 0.5313014501937126, -0.458637610673566, -1.1381354405694095, 1.0241432513780833, 0.7274421402688012, 1.0405294116126214, 0.5773489503530546, -0.9514493858756133, -0.3900819895975464, -0.288036403954293, 1.1475289049865889, 0.20988467707034503, 0.008869642891365619, -1.4523882199612204, -0.575727654052536, -1.228480198044264, 0.6011737499493739, -2.8068733243608963, 1.024513946435427, 0.5096276937492012, -0.5183587119888017, -0.9226724734027645, -0.441866286626296, 0.735745700737007, 0.11503621609358011, -0.3952826914101599, -1.484953217586405, -1.1134537335865664, 1.4632448069895947, -0.7644348057443225, 0.1564290260582052, 0.21920505476124746, 1.0640440187070892, 1.2641135617415962, -1.236624921262223, 0.5903907163581471, -0.2793725552996171, 1.8757223467394315, -0.7450309107341272, 0.15523851488234938, -0.29497361350922124, 0.3010105896081227, -0.5114154433760262, -0.642364006882644, 0.8921022852609921, 1.516090009016585, -0.002692049963959917, -0.3687608357582094, -0.810342139667186, -0.31094477770721973, -0.2313506456957295, 0.3702173491447064, -1.2190600613238167, 1.0008426458996775, 0.24319301350644568, 1.130668243970097, 0.3841329311327916, 0.514262599823485, -0.40365187293934096, 2.063730058495762, -1.833071918668755, -0.4280025322430025, -0.008321507018860981, -0.5810448761494521, 0.6336043036772405, -0.8580707219919954, -0.8264402910913967, 2.4172220456491402, 1.3855888119376392, 0.2398408411284565, -0.2560512238242684, -0.02743350564691239, -0.09649537004547212, -0.6678734395186358, 2.508837871018387, 1.7106066162527545, 1.089627784623495, -1.0877217659848848, 0.10224352327300346, -1.3429671648265138, 0.4133586219708342, -0.1326825733960975, -0.3667898943534915, -0.09014439879310938, 0.7626363945492814, 0.7119030980487696, 0.8168016075716537, -0.2630180603172359, -0.06705928949886175, -0.9030506626226238, 0.6353686116676209, 0.487325427179778, -0.5223455734142467, 0.5425350817409905, -0.7738349796871634, 1.0529631357331146, -0.30146341857574405, -0.27566048375860414, 0.24828005435614617, 0.555925908360769, -1.1338096588414321, 0.14248308394502554, -1.869979564035387, -0.855760817691245, -0.4196691711709851, -0.6446806020181707, -0.8406251782419683, -1.946178882310284, 0.9112760326542072, -0.0743867773501404, 1.1838808720895007, 0.15567958222833053, 1.0789848342655113, -0.94035691411469, -1.6559426268463449, -0.29894367455626725, -0.1685763610041827, 2.123748698284609, 1.2395519537624535, 0.2706710033731567, 0.18012488286164277, 1.9566242142062147, -0.6877790679299577, 0.6516174832342949, 1.77336033540955, -1.2472885591461316, -0.1478612628288137, -0.1648009045358903, -0.8651571296136027, -0.9361786829048797, -0.32827419586037354, 1.8260393878728682, -0.08952864277790588, 2.0082465772265854, 1.061815008464454, -0.33104745323740925, -2.0910664194453745, -1.368619079694457, 1.188131350034567, -0.10435474927890911, -1.7694469202943663, -0.3763971882395112, -0.9801527219275011, 0.6802552964083636, 2.4192026246750356, 0.07975259798884489, 0.8985795239987772, 0.1719116484800913, 0.5255161725760631, 0.32798472019473035, 0.46234757315725306, 1.0745769249375048, -0.38091509824095465, 0.0947336441079891, -1.865098389018756, -1.0738299637494406, 0.2110286302748181, 1.740493269752543, 0.5417898487807806, 0.5368451252055979, -1.8083884281456464, -0.9410168707904611, 0.4642589722102138, -0.7786870057566525, -0.2549737759416148, 0.43306989540183366, 1.0950114715326336, 1.117285116883372, -0.6820784140612955, 0.3966610200275353, 0.4066064275939911, 0.06017058969395977, -0.8442101492960775, -0.5836307953314078, -0.11520666856748175, 0.23578449421343423, 1.2888347569665224, 0.3204229021866146, -0.3259242743648991, -0.9014231471618604, -0.5612111075319132, -0.12295696649380836, -0.40365226470084437, -1.1830654130459042, -0.5768279671510977, 0.4831936122579576, -0.017682583668850192, 0.19095463251578032, -0.9932875555617007, 2.2219581486083655, 0.3788738952224434, -1.0129396554813326, -0.7323827705861071, 0.37621107981185625, 0.25317551009467165, -1.651765513121206, 1.6876824402006205, -0.7786612834762844, -1.6013631946803042, 1.6998287790175863, 0.778055458884982, 0.052456791946609495, -0.5106404472343561, -0.6650325336730128, 0.9583915668803473, -0.9872945346436457, -0.7611519222755521, 2.165671003976056, 2.4444060682706357, -0.4530735794446793, 1.4677745323536413, -1.3126564754114738, -0.24614678971816006, 2.051063287239775, -1.1158818474611802, 0.23816389044139902, 1.0627994591415404, -1.0178328159664034, 2.2619334421694783, 0.9750297076232903, 1.926918173846052, 1.2990942825327954, -0.5702342023537047, -0.7368615536951821, 0.510507923091502, -1.0323985917695655, 0.6271209822050042, -1.019245021799571, 0.17361515102511102, -1.3224475169789929, -0.06745196400115405, -0.1574602078704934, -0.9952652818456044, -0.6264073748431338, 0.7182719353936461, 0.08075884751730622, -0.49030426215544615, 0.7604932773921318, 0.7226603746789295, -0.017977406579468978, 0.37420429416185735, -0.6520363429511407, -1.2599764252115027, -1.087452107604435, 0.46890250859071647, -0.907915185117421, -0.5467295835621251, -0.052737435060456056, -0.24270592337665312, -1.2820362338497973, 1.7107494098399325, 0.07825130434656566, 0.7959941722848014, 1.617430308764337, 0.7763626263050907, -0.4437397911586855, -1.0361576302613917, 1.7608357320861645, 1.8608136941130442, 0.16833723621001728, 1.6722787266988803, 1.3184296702309364, -1.3582083531195728, -0.40482243939605145, 0.5576346536149498, 0.0009554469447086275, -0.727686849080149, -0.5376756969593302, 0.23365162682618462, -0.4123309776258282, 1.069894364386746, 1.6705914239555302, -0.12788870083036508, -0.7341699837303817, 0.002833191229076034, 0.5769263360989074, -0.8897538564072324, -1.1326244974515491, 0.30558691955862227, 0.7114102804233835, -0.1439258869673803, -1.4149205168948669, 2.5685131474562257, -0.6042913908804607, 0.03421794462499237, 0.6056651435106425, -0.22315801817573097, -1.101742111993123, 0.3633134705658937, 0.5226946677411168, 1.227558150650866, 0.05146183018159959, 1.1698150705018335, -0.6639159471111269, -0.08422278603139575, -0.3827458426418594, 1.6914511636658738, 0.3089104695184366, -0.058649745694009575, -0.8568543433945411, 1.6638639981413645, 0.9909811027608405, -1.0805824556298844, -1.2602449571285363, 0.5264387087778054, 0.4810614573533538, -0.16381335909410474, -0.893641771317825, -0.13290116597534785, -0.7538442535403194, -0.2537195128933024, -0.751159385978199, -0.29761641404595, -0.47406906439795576, 0.44277412200246935, 0.13811887823251084, -1.020555899851875, -1.3316713572907193, -0.19510379633481795, 1.1454178342308325, -0.22927286121119142, -0.6896995973025548, 0.9060732563277267, -2.625361449492834, -0.8442775755660631, 0.7114993222582234, -2.3503627563734453, -0.2552306644885899, -1.223516838847093, -1.490486454853628, -0.47019983912934477, 1.65722572711445, -1.3392200141132093, 0.9276878073239937, 0.041706041443169306, -0.2685055255974149, 0.8972957513393331, 0.6730910733942327, -1.2651915017779112, -0.1025518151918655, 0.9524498471029752, 0.9524265318906878, -0.11490771906138898, -0.38233251811500035, 1.6989955457707269, 0.5570195588565594, 1.7769727669736233, -0.7263108987809576, 2.159120187147652, 0.5006457597224452, -1.3361306976932186, -0.623908707648974, -0.206401590187479, 0.7090033581125316, -0.01057126383348446, 0.020667580117566715, -0.9557340953281446, 0.6835236519921376, 0.29781299485622464, 0.4012550592210082, -0.3924442344548542, -0.2763338781439372, 0.10625615690107203, -0.32965811880039053, -1.4619404885646543, -0.39959750109870146, 2.0432377982828167, -1.8304360379914284, -1.1814634881666115, -1.3890794913741076, -0.2035954299047578, 1.1699129175805605, 0.4246981754568367, 0.8310828537744009, 1.1817278787760512, -0.20225402038725762, -0.5641360601154258, 0.47337153689631595, 0.9087647822272377, -1.0472247520745261, 0.05124043993861351, -1.3941073512754962, -0.08579593376932791, 0.5881253182958893, -1.4592655281915636, -0.020564262835356405, -0.035524256879512904, 0.9846427923600741, 0.7931545919437076, 1.3016760026379122, -1.0015024059378965, 0.4716198729518798, -1.2434066206514018, -0.5068601759213625, -1.5052236828141137, -0.6072422852014648, -0.10204716237893709, 0.10689684440209088, 0.5645639074193722, 1.0623469357961897, 0.36400577745814117, -0.5622518356403737, 0.6669957121019533, -0.004603399205425436, 2.1110211301654296, -0.2739839881540243, -0.9737298189372121, -1.9632628794655227, 0.5027319854494285, 0.5131289565489455, -0.9587940856842673, 0.6463005205652408, 0.0392380677407699, -0.017565732857497303, -0.30127246844075606, -1.7487990663283675, -0.16436660476722847, 1.7703901003258442, -0.3722640227167407, -0.7272378583332985, 0.2828723434284742, -0.6747890019274241, 1.168329075266211, 0.33482291570200867, -0.7794626681431005, -0.6199244286057456, -1.413743796327936, 0.4782928746083055, 0.3434880761058327, -1.1019485570761434, 0.008486065700998021, 1.6014910894639625, 2.6602360415891857, 0.4915258308904715, -0.9272105484481349, -0.2925919276830701, -0.6252303971389434, -0.5159900311950308, -0.7415735699751135, -2.029107894125824, -0.9548827503768114, -0.28324135253958177, -1.8779529023277837, 0.3268275569353655, 0.5329210918919577, 0.3766234989760424, 1.1793987161416273, 0.4746000263105639, -0.0902276361062027, 0.4636287693342329, 0.04222987551960534, 0.014921132818180314, 0.38551770850402917, -0.3014073557732911, 0.9859432784601896, 0.0325507336047897, -1.0083593368779824, -0.23173001574720842, 1.0156751934222654, -0.3979408304153591, 0.2584074541711058, -3.426028975960298, -0.08838124666286373, -1.0790681578789474, -0.3333754702257157, 1.2627385924321008, -0.9615709431830555, -0.25138191812817245, 1.667357111617345, 0.4696264510448916, -1.0969960541521195, -0.09632233655004264, -1.1089819674576264, -0.1339648640350045, -1.2101439919126171, -1.1722046719874606, 0.030117906016559788, 1.0476807806606063, -0.28847852789757267, -0.5296159049742502, 0.3850699094669018, -0.6051726841797906, 1.743792837015998, -0.5890013689145869, 0.7205252486897615, -0.6257464569718346, -1.4486069298880855, -2.2070264884253286, 2.570296613495435, -1.6691679083518123, -1.6063140946190266, 0.43993223165315304, 0.89645001016155, 0.6854045205327568, -0.6757814165142212, 0.8550466015833182, -0.8292171488884842, 0.3122129021898408, 0.348609311087678, 0.4581192138380687, -1.0275175791545723, 1.1551958098408395, -1.1037257363607444, 0.9468711440229464, -1.116668356754091, -0.36853027467963034, 1.307561606002306, -0.9045050297794721, 2.089318182358346, 1.2697564531723935, -0.2185364480114655, -1.1353478256291833, 1.4019715319623824, -0.2073569648923383, -0.18712592773879747, -0.8322669828780465, -0.32696419288090456, 1.1269449456585796, 0.0921885586416591, 0.5360643330203655, -0.14458306317267683, 0.5827741344040555, 1.5065446157190487, 0.9564662556338056, -0.2064220135606055, 0.4066066247103104, 0.8920845363824965, -1.687333444265061, 0.25115051769122115, -3.087314724560561, 0.552662227099403, 0.40242025716403357, 0.8455541774166637, 1.3493583850706314, -0.9373638840999411, 1.0684829486547307, 0.7131871856521549, 2.497208483160578, 0.06063069125456326, -0.5498068964156574, -0.2966920948214515, -1.9673503009095323, 0.6392853854901414, -1.5403855774858157, 0.5412608595004693, 0.8031774397040546, -0.33402070895053143, 2.2211547915154903, 0.1547794771751368, 1.250658438811136, 0.09642560033701127, -0.7869031016883532, 1.1306087463776961, 1.0303328016994209, 0.7075434459012006, 2.169773239122711, 0.20406588100518744, 0.582201171648306, 0.47693215172055514, -1.2661002409468216, 0.17518167613400848, -0.3600521910020769, 0.5301850707200975, 0.14212077387677297, -0.9153611866215424, 0.5142228024419792, 0.8427554549885937, 0.2869123939017634, -1.0365620086409142, 0.6412319730883957, 0.14461519609693893, 0.41946245994612236, -0.044806178419063515, -0.7145393803288129, 2.1746421812875805, 0.4311324178378428, 0.3638954669335885, -0.6299095993892612, 0.2913223877504286, 0.3422374954422665, -1.4663978194158782, -1.8537424632147388, -1.0610327402398974, -0.5963001262725427, -0.45338383844760943, -0.7844829003349754, 0.22888399386070574, -0.2579000806798469, 2.1256002026714436, 1.1037234216134235, -0.30185535666454577, -1.5591108489375356, 0.04044532462752151, -1.5312417320717286, 1.3591599789938142, -0.800401004691487, -0.2909900944357517, -0.5557327256983641, 1.8274389138537177, 0.4039322872984253, -0.1096456948691529, 0.6466022334293074, 1.3076554305335648, -0.1307267959255158, -1.090803837119706, 0.5475764949249535, -0.08892706751940653, 1.2995847186651965, -1.0658941902364742, 0.20581729760239548, -0.946555772856501, -0.4349476874406704, 0.03182827247832419, 0.4288974202289274, -0.7547499512173587, -0.38202886664107627, 1.6146025218501499, -0.11641179041117729, 0.28968932763371985, -0.8397313726424692, 1.107975694445645, -0.6634574666802118, 1.1328933468779807, 0.14593057603543705, -0.07643383561951916, -0.319683496585479, 0.15402256364199216, -0.17227476648117873, -0.03235684481982826, 2.066306680139809, -0.5417929195685166, -0.24796913902788004, -0.055962225384033414, 0.8953434803071326, 0.7626258086624974, 0.11278225360011547, 1.2907173912114598, -0.7401152998151863, 0.29370158285181475, 1.9106210134789334, -0.7051753925419283, -0.8624865977865118, -1.6257706061826087, 0.6405067991486333, 1.0351022396828726, -0.1945521529679426, 0.9124838208371605, 1.6947897902160745, 0.7466805610250826, -0.8427990137255152, -0.0897837350149166, -0.04629347836738154, -0.5520921516141535, -0.04183774195746743, -0.43210744325657857, -1.6595805891834092, 0.13021641933654796, 1.2468997043563634, 0.5611655682915757, -0.1931176800407618, -0.35575818771406803, -0.016471491229618395, 1.4018435365643085, 0.6729200991113797, 1.7306648103985107, 0.26155890492282413, -1.4119247657253522, -0.536642852471466, 0.8161979265324547, 0.28881483872854646, 0.9953199309134731, -1.074862554465327, -0.6915221742519653, 1.3262989034538268, 0.5036746230545647, 0.2741496533189119, 1.0250004260939036, 1.3027014069125125, 0.07304866219523914, 0.8307040405418483, -0.9328906562469579, -1.07537146068521, 1.0390573673082142, -1.556237557046523, -1.055217543935034, 0.4119029609362089, 0.41559871784051666, -0.5995878514762731, 0.11434151244258878, 0.6082471328066417, -1.6901785004094858, 0.5615962159707336, 2.5441462902067853, -0.09904731988170654, 0.6143264614051129, -0.5768142155846036, -0.3657814866533247, -2.366763573335492, 0.08043174988698716, -0.5200597625351723, 0.18417624299474875, 1.319477406853208, -0.8400516933896708, -0.15571113105831894, -0.14742321093029578, 1.11807516939711, -0.45697940901863926, -0.5578511609263658, 0.5502895098744847, 0.9660538794410772, 1.4579890638820623, 0.05366879536427961, 0.6189254901628001, -0.12046570560301695, 0.5137449547159674, 0.7818944507193448, -2.4276165618951078, 0.5584181925564372, -0.3039758057221719, -0.8661129480071078, -0.15086384823031887, 0.10800342901703337, -2.2447138546831713, -0.4673850892302704, 0.5564768356614425, 0.5677183940832365, -1.0288708137957627, 0.12022638994577513, -1.1539986399922364, 0.15596398455102556, 0.11401071020981281, 0.3266878234138714, -1.157405494018358, -0.12569722067261385, -1.1578235192912938, -0.18502053466814242, 2.196008118181597, 1.6099677884864527, -0.13327510143845545, 1.9400552332875265, -0.15326379529718875, -0.5908824557020724, -1.0490707817512552, 0.22260301852491757, 0.46716520014171375, -0.051574869649722806, -0.5558444219332767, -0.28662434511428553, 0.2119757602246415, 0.29652834657962734, -0.41715200947932696, 1.307948949105823, 0.3264820512402649, 1.2242791042972185, -0.8970269698125111, 1.3308325214614385, 0.6544392508485325, -0.2583307403510932, -0.21971106485684788, -0.48641991170864757, 0.4227486890223868, 0.5325172210188613, -0.853158985460927, 0.2228830906146431, 0.608674013772409, 0.6977060614246242, -0.8082558193848478, 0.4713572711836045, -0.40333613769561666, 1.9700273170382208, -1.5941313233849246, -0.14164192517934968, -1.0369036826948126, 0.7627932504455187, 0.9098760268515351, 0.3949412958846806, 0.7950821831671001, -1.2352281272569363, -0.29938927924128883, -0.04678612039872688, 1.3289728677762793, -0.9755999301415357, -0.541179006151585, -0.6151063786405665, -0.26555454791593175, -0.1735649963711706, -0.084275411661303, 0.0015041805164873454, -2.4679087052871385, -0.2868323039761702, -1.0058948548081723, -2.0281380392020893, 0.0990695132197888, -1.061882072637671, -1.113988071355143, -1.1288876632162994, 0.6334500125100618, 1.6228765831205854, 1.6498667593682552, -0.3781395451129745, 0.007873789649936349, -0.2839127309993609, 0.39328967779661633, 1.0671172571079492, 0.022139011972254295, -1.43863697908932, -0.35263414464559967, -1.2359484435480286, -0.6714407938171849, -0.18852290442924188, 0.42533892526557104, -0.2312972332838178, 0.34052137994789117, 0.22957434132460455, 0.4578254563611022, -0.43707211882711167, -1.2541346493940206, -0.31159781127305197, 0.7386901920926476, -2.2059670263152724, -0.929054221974727, 0.020876428940090813, -1.4674709749511916, -0.454525866071964, 0.8497725089710036, 0.968935438233409, -0.9534116494342382, -1.0664090901462573, 0.16388817372312062, 0.34544741920818584, 1.0893738937616835, -2.0700376581021946, -0.3879270620089293, -0.7101681294463702, -1.5897611470336748, 0.6139054675585629, 1.0676122639752352, 1.850851744680686, 1.1684966740936344, -1.2361103682130417, -0.6496826322014737, 0.7927299053574088, -0.8930245932662801, -0.8528789755324491, 1.2328960575805448, 0.4118248812500695, -0.5110550391726805, -1.1675010303197837, -0.1593996935956913, -0.0921872188156618, 0.73078919856966, 0.9600050187827244, 0.5537996046823891, 1.020251566837135, 0.18179166697231838, -1.3187917454940299, -0.902176038530939, -0.9773703475497321, -0.6042816795380243, -0.979926286951029, 0.2623912399027498, -0.16300932112385402, -1.6655291604442763, 0.4253855274659304, 1.0059519597687427, -0.18950962655204404, -1.163184975193616, -0.9022201282917935, -1.4624741376316566, 1.894097809183694, -1.5515880048999264, 1.701798780699197, 1.3930337845282246, 1.9030320224445803, 0.16852702305547787, -1.4242240752557043, 0.5410239639322069, -0.49388041003223665, 1.3101064713629966, 1.6874231706097274, -0.0064562485749251695, 1.0498943242170882, 1.177234120739733, -0.753321569832069, -0.2214210755435908, 0.07061292633574365, -0.8122667844749445, -0.4011861410604677, -0.5153361646698988, -0.6793989608231691, -0.199533995222437, 0.03350925890408956, -1.0048732927735031, -0.6467957547467025, 1.2878012144037227, 0.23469021351425348, -0.02764130678241475, -0.8711183595048515, 0.4373920057741844, 0.47160402467697987, 0.005835722161182186, 0.6222478219419615, -0.007704781080732572, -0.9887002432877935, -1.481368789922432, -0.6791110876327582, 1.9679775692215835, 0.3777666035920986, 1.0516375345568665, -0.07320122129970005, 0.5217442721920773, 0.31624517287291676, 0.10612476923665701, -0.14667195632713134, -1.4551386987655024, 0.975313478125792, -0.7130571533003189, -1.932262018424577, -1.463312112024345, -1.0448692289030985, -0.09360536356504244, -1.2594760737575783, -1.9026720078679407, 0.3736393196159072, 1.256019535070929, -1.4866541969214233, 0.7861732372691665, -0.7345602844673632, 0.17558959645570793, 0.7135646961879947, -2.558819582145577, -0.3877824877616655, 0.9987432556868299, -1.0243944701025416, 0.5391856620360088, 0.8258112379903654, 0.4969939042824614, -0.37849700398439323, -0.6419373661558186, 0.12970086564345407, 0.10008836621445383, -1.1351002273093105, 1.0873793676755923, 0.7378892672094283, 0.1621621647785523, 0.07783379970840722, 0.9031774559759238, 0.2514618722880795, -0.5171390183939307, 1.0159033589721378, 1.1799180907537463, 0.09226636021536158, -0.46461737452610175, 1.184167038635391, 0.22018517412088123, -1.6479982625289447, -0.5538533524815814, -1.784507695721631, -1.3075364220975778, -0.4940669895543336, -0.018838700732319698, 0.5721712917482961, -0.3112378753734494, 1.1298506569178923, -2.090543738576634, 1.3217310616716786, 2.8898976556545337, 0.511993864323963, -0.573230206148398, -0.6168245953631619, -0.28385941340443316, 1.5779006322474258, -1.7217566306981062, 0.775780151720179, -0.8134993943002145, -2.1454814688729424, -0.2826285564706954, -0.7798217980558246, -1.4604008900595917, -0.7227738068532183, 0.19973606441175204, -0.7595004395476335, -1.9429205813709158, 2.3305809516427654, -0.2759782857692038, 1.0878626470410935, -0.7312214984448049, 1.82409338009935, 0.3829478708607996, -0.4958632927298974, -0.955463814458039, 0.7843898904973547, 0.19575227193504924, 0.9867583907696775, -0.4133169035314498, 0.08593282481648717, -1.0641963941720138, -0.7984482341073631, -0.18178959972380668, 1.8391249270818433, 0.1678513689122584, -1.1009701600827684, -0.48810828324353883, 0.5584626028023366, 1.0390312452420696, 0.9509584333628126, -0.3629305853593807, 0.8542260226747266, -0.5963748035623012, 0.8287761897088813, -0.6996419296857278, 1.338755472784433, -1.8882207884537066, -0.43844485765428715, -1.3052738640141572, 1.2155350165352, -1.0998528291712342, -0.4685116712084461, -0.051302858923628965, -0.5774725564206468, 0.23896291097046565, -0.030038915879750015, -1.1090747287493639, -0.8163727819487747, 1.439838856729992, -0.45926139950394745, -0.2936259995921459, 1.0769683211150416, -0.10835750333973582, -0.5204114097110729, -1.7613550370441882, -1.2536452277499839, -1.8262012387505022, 1.4204783941301857, 1.8108439979564046, 3.4240134752578024, -1.416927248034948, -0.6989735567103372, 0.9829326626160749, -0.32008828273794376, -0.14728825354162384, -0.13648806324193283, 0.5109183355469399, -0.610240645521461, -0.20706539780042185, 0.28926843950782044, 0.7024107312767902, -1.4899225662885986, -0.28593664554794784, -0.9889911133857701, 0.08824827955803455, -0.6280868624928221, 0.17188930362316002, 1.4904239762770009, -0.17359620322236555, 0.5154210366548183, 0.14439040866399852, -0.11099408148985115, -0.31347396266480115, -1.2641885971701803, -0.5312479179114601, 0.7325086701931919, 1.4427703222832584, -0.5071820435387345, 2.3065600494710368, -1.4240197521665021, -0.7466998984173129, 2.234104947744427, 1.5460599457035946, -1.1401677129448642, -0.5445118037207385, 0.4445211039015867, -0.6398984303787681, 1.17163486740704, 0.449371115219302, 1.6007879842381916, 0.5555574193695064, 0.9417376392688548, 0.607430597280248, -0.46122985440483005, -0.5763438240667159, 0.19011344294712398, -0.03693366302340252, 1.0604314184589596, -0.34593352468671773, 0.00220620721077582, 1.4279524749015367, -1.1942201485509552, -0.6924417025320725, 0.49280038719387903, 1.6799231710533922, 0.49780953354361174, 0.3494113961141056, 0.5430820987070413, -0.1844551383451273, -0.7649765031823218, -0.2370199422035091, -0.9871851084941298, -0.5056768902263454, -0.5614666920654803, 0.25199079621820003, 1.4268376937856468, 1.3938298155608995, 0.6604038831406075, 0.8795431350915137, 0.4644849891822895, 0.7138007148472494, 1.534170138938479, 0.06969178608830051, -2.016482452652592, -0.36433545077427354, -0.37078981873050637, 1.014850820618886, -0.5657575191600218, -0.6728463853154721, -1.188567199665525, -0.7182268960576632, -0.41731966020445904, -0.2438344033455038, 1.6154087020420282, 1.1575641013959985, -0.05386223160658934, -0.17823400043710325, -1.3494602571252399, 0.6653825059796076, -1.3567049788747025, -0.8386303145126045, -1.5273074850704802, -0.7555488654908927, 0.8519911640942451, -0.05572234595096151, 0.5264347696967824, 1.4567194540230965, -0.14690791163495082, 1.6010851164760695, 0.46838825707017157, 1.9437609673364884, 0.7133428275909439, -0.6838234693919121, -0.8838374713607184, -0.9976275288581391, -1.650793847025122, 0.22393646005038229, 0.13600798851707868, -1.910141387226992, -0.2766435588708206, -2.635699290037955, -0.6247748392158117, 0.2066044498130097, -0.2604827216500916, 1.227418870740341, 0.37508999579301855, 0.478631816249361, -0.6643807705620892, 1.7443490879248158, 0.8675487728727754, -1.4130269684533823, 2.158817659065511, -0.9187016765253394, 0.3279755021979337, 0.28835936480483226, -1.4890312855352865, 0.3615160181016362, 0.14137474471047667, 1.6211072751010622, 0.5901286023180309, 0.07292918195548913, -0.6909105168067734, -0.5550878702113113, 1.199724933294451, 0.804000498461474, -0.239167148828647, 0.0506561317094295, 0.12436064422439205, 0.09178399028384901, 0.054008341110280945, 0.7186082649680988, -0.15344843935753444, 2.5045185839594164, -0.9639927668663514, -0.5396938051763854, -0.6426045635252902, -0.5061939879620896, -0.9866123364822982, 0.3460206404869637, -0.8592876163840912, 0.2878433073153012, 0.8390334870809691, 0.8602739624649636, 1.8034800427518547, 0.5343046204736994, 1.0294398290216444, -0.21667411047195442, -1.5244800055222967, 0.7230259803727533, 1.9580932394432806, -0.614372627596384, -0.2041856683585125, -1.1387135261934238, -0.5868616568541403, 1.1135188688866382, 0.615087753691409, 0.16117202563953165, -0.37406349083186324, 0.28442324635336624, 0.8989754370956776, -0.09996093235190613, -0.07184221378168888, 0.5903291129649719, 0.31824457865671774, 0.4408787673689416, 0.10389664955219251, 0.5198303565136372, -0.9864847832628109, -0.7980386910282822, 0.17808663394005908, 0.8631857957185779, -0.47169289316753316, 0.17161314618124462, -0.800443621057119, -0.4837155593723551, -0.7053453907101688, 0.09983206738431002, -1.5268167760719815, 2.1221363153316584, -0.28230846239602325, 0.9157538901986613, -1.3684930389222483, 0.32897812383682723, 1.014794321955848, 0.9023436499497665, 0.22608570833316838, -1.3125688526350756, -1.0809729614785362, 1.3233831179954585, 0.9825762046751062, 0.05179967431177796, 2.45826596239605, -0.4876185997583777, 0.5774412283252003, 0.7219718605674222, -1.511293826285413, -0.11612635149670787, -2.2542877260183927, 1.0103857447764912, -0.7228086052151187, 1.7670270426499777, -0.1684912058025487, -0.9553556951833498, 1.3133179599497555, -0.2930687241389692, 0.029579678386278112, 0.06622812791188536, 0.705757599360155, -1.32960896623075, 0.11611745789313846, 1.1487704900410307, -0.8014257572665985, 1.1807392752092842, 1.037568113792674, -1.9078080396471877, -0.2409238676601114, 0.2244439224770368, 1.0028773497705694, -0.04847802280804654, -0.8971429321548219, -0.3852044279847569, -0.5866335506906322, -0.8844634525873737, -0.4020123943070644, -0.11568317399839796, 0.13348681874200438, -0.08924401739223002, -0.5874203042070345, -0.4278101470502891, 0.7079087266260906, -2.072642066675433, -1.6147863432349774, -0.09496833688156363, -0.7990083191198813, 1.2642936516620609, -0.9273435798069349, 0.17224547154184533, -0.7558714044885944, 0.39769546899073616, 0.18780736789666147, -2.5174003192460392, 1.6762815812128231, 1.114582268800495, 1.05099713268743, -0.7235110474949725, 0.25670677238247214, -0.17906911914330131, -0.2914142713244307, 0.30604124070227556, 0.046729484197559346, 0.477004031196878, -0.004003508140081526, -0.16293253898000118, -0.32941484738546145, -0.7057334267407867, -1.0252318121222592, 1.234718605532032, 1.164344769912117, -1.3217793354966705, -0.2018982620971897, -1.6300518465607676, 0.762913615561976, -0.5874039224816443, -0.1832955899615041, -0.28801812539603133, -0.04481094031187419, -1.123669580858842, -0.4361611598380923, 1.374234236280749, -0.16808922895557318, 0.1725774505475889, 1.1514443344550847, 1.6181732265789572, 0.07290164699729748, -0.6993009444148158, -0.25250299032475704, -1.0909308148179306, -0.3324362394510387, 0.6771194663328605, -1.8659806698816064, 1.5196887912317227, 0.058986437535992205, 0.19160984016575308, 0.34516403513687527, -0.15146937403692595, -0.777476579942889, 0.7907216473659774, 1.0202322458286828, -0.10196093274463379, 0.1757102821286656, -1.8150719117688516, -1.7020848289900083, -0.4781283934236987, 1.5999994680358829, -1.2705969904296697, 0.22149542436438724, 1.8394196926582855, -1.7294164741154892, 0.4948783520843171, 0.9309105739080806, 0.8680542095941882, 0.10054807676238739, -0.3319637381896005, -1.3949028254575218, 1.1490097945592688, -0.15461470639227845, 0.1893199146697887, -2.271001670381982, 0.5934646377130465, 1.1663879989754178, 0.05856080915652508, -0.31209200836778295, 0.3255428548187977, 0.5733989530109639, -0.8044586194509914, 0.410936676320903, -0.4160815491228722, 2.157789958761052, 1.035459945503275, -0.3640904848784806, -0.4610344723350519, 1.6487172704400392, -0.8275403671903245, 0.833199995182308, -0.514552318506983, 0.005935045328943543, 0.7490472278175093, -0.1815229307952521, 0.09297622326737531, -1.0923620320513654, 1.1364919020271231, -0.5415326937845844, -1.0804163488015923, -1.032039953854115, 0.3707042816348388, -0.7461804301267039, -0.2721497054903402, 1.0037943860491148, 0.5396508146288226, 0.5472307039695794, 0.44214556730142224, -0.85303473470932, -2.271477966341062, -0.7420524430740321, -1.2312577495700507, -0.5615113250592734, -0.10310591708232854, -0.5701863275111697, -2.16896675170326, -0.281950826888411, -0.8356420412774489, 0.015891821372175065, 0.03139635479837853, -1.5821933290177481, -0.7058942968714265, 0.5858028682788889, 0.26193584835787287, -0.7560023383589234, -0.08387872997249989, -0.5755997580211494, 0.5159065755808048, 1.5015645732890608, -0.9997178238035175, 1.228674787709117, 1.2007641403615124, -0.8234628966608337, -0.19954089484520593, -0.42785621106395916, -0.6802809376053494, 0.06422776009184457, 0.3170270742518519, -0.3453842748954601, 0.4519572831185558, 0.6286286143217723, 0.5206654799603331, -0.967524283583655, 1.1319754498917005, -0.5021254123730597, 0.013942258585643687, -1.3786118561070986, -0.5655237425937132, 1.8892237097687605, 1.0715934597838082, -0.17273934837372884, -0.29091428456654994, -0.9248791917544719, -3.121151152020245, 1.7597594352173624, -0.45240792799939017, -0.40328606258021443, 0.08178759212717351, 0.5442453475241126, 1.1982633465883064, -0.6740267402834469, -0.5485513870019412, -1.0462032689302334, 0.330326743121853, 0.26030886906092476, 1.6181694899599557, -1.2893351940326712, -0.009985844564016227, -0.6358304057588778, -1.4392090980421075, 2.3269875121114283, 1.0634079853876537, -0.13822671258270505, 0.36794328545346705, 0.7051550447521886, -1.2962224463327228, 1.2089552806816686, -0.6194651438541035, -1.0197507462155064, -0.021803922663614486, -0.5427931731618937, 2.1802684630793387, 1.0285520792922256, -0.4573056196137208, -0.3263257913068628, -0.64410777366593, 0.09866031123925063, -0.26719510208714053, 0.033247393029501734, -0.447045725062274, -1.5335475182131757, -0.26374418190121884, -1.2033490686400803, -1.5126305640495306, -0.7455412267507566, -1.238936527413228, 1.1383455350568243, 0.48893872978801795, 0.7878092416252528, -0.5029186946479395, 0.9298031468377308, 0.6224883693975046, -0.6970173552313371, -0.38327471894044, 0.7585294818268623, -1.0292279973941831, -0.871017048951613, 0.9267926573032195, 1.2440644372779186, -1.3647151225405103, -0.7561878533207639, -0.14439121663304647, 0.524591096028193, 0.048848480467872886, -0.6978109894332069, -0.5470184313965899, 0.2561256654673463, 0.6828514206389635, -0.7727531370321153, -0.48095727359782364, -0.9567410875798043, -1.293377234874767, 0.4800391108668602, 0.9349064360490145, -0.2891217733469266, -0.11817442848114497, -0.40254129268971894, 0.8741273874276365, -0.9029483760114311, 1.4646492289153683, 0.874726801097279, 0.29974967361611415, 0.006985897924188662, -0.15104699723598802, -0.58827352018504, -0.13392470231348907, 1.842981523695109, 1.392481498926135, -0.6604676817559371, 1.5304354630691066, 0.548744712505418, -1.5321619918300715, 1.7506856449563082, 0.6848893879116233, -1.358081543557913, -1.2971812351231122, 0.8826844538646332, 0.5295352698364426, 0.38620690437216904, 0.05437444372663633, 1.3327386060854096, -0.21466907184899067, -2.6674968725478094, -0.06644396029427628, -0.36232539266783054, 0.22598965533848345, 0.2549460988196095, -0.15970557033251293, 1.0712159266568593, 1.2422550477556176, 0.5271947399805738, 0.09308657629776015, 0.4359349271649725, 2.774376123918792, 0.8772999795343547, -0.4148004130352152, -1.6448767933193311, 1.1713932272756988, 1.7075736172050036, -1.851579461665887, 0.8174361990057989, 2.8394573865096895, -1.1314779306147162, -1.3840968769636246, 0.5813654999237472, -0.18454525618278603, -0.4141061637300568, -0.9039237268360191, 0.14101879763459535, -0.3174175097504598, -1.0504547516682594, -0.2737602014249936, -0.28223525786531783, 0.6076142598779016, 1.6299196963658804, 0.5415431991854384, 0.3231453837524334, 0.7626800648661881, 1.0519235356932086, -0.24547251859796443, 0.2678082174228175, -1.180437956481748, 1.1530185898946634, -0.17199715072549424, 0.16391084034003314, -0.7179693659807904, -0.16611051885620085, -0.13388045875719534, -0.03150740295821682, -1.5154837755435018, 0.6979975591830219, 0.22581494943305283, 0.05123558641323327, 0.07770618383403186, 2.0174825174967537, -1.7346733563539103, 0.11360140017755418, 0.5037209752537916, -0.09449129885713675, 0.08454305218703255, -0.5650474338722489, 0.29688172354820597, -2.235058367991114, -0.21481929993406357, 1.2858603870963603, -0.9777979577060388, 1.1454091086909368, 0.08868078037131212, -0.09969070541632341, 0.5783291853157446, 0.40436607350580145, 0.6172247165846138, -0.9913944115373071, 0.3111319584670159, -0.02036728775137993, -0.8125286164006552, 1.3876624918724847, -0.12453318283688543, -2.3259134219223943, 0.667136071268013, -1.3235170215478245, -0.7563709989517554, 1.2448388747125587, 0.11281818181876926, -0.6846136263815076, -1.1057392592021649, -0.07130004791082804, 1.3485649162951883, -0.22660499658276487, -1.674844120900672, 0.2603806062162232, 0.7595132306998643, -0.21207165928324817, 1.7875748099330802, -1.8758491305436953, 0.22927868708252214, -1.057945598448364, -1.2308892962298181, 1.303335300475327, 0.3353620148059584, 0.11382321203732611, -1.025653402522536, -0.5868455053384136, 0.9399449774841686, -0.9226248105614743, 0.06342727895779636, -0.27754260675675785, 0.6682678110918008, 0.5844980441838555, 0.2786689940519397, 0.8343879936184927, 1.0891087023368513, 0.6643859161547184, -0.6104003666094469, 1.9814281580976405, 0.8836383104996751, -0.3412897517927099, -0.5746639856661229, 1.744382333000498, 0.18592719750637596, -1.3542547274819998, -1.391006250395983, 0.028653641722237024, 0.1805265532081399, -0.39465915671863117, 0.3948412351360877, 1.1224808607747199, -2.1414416747282123, 0.9249627887480376, -0.973724463169134, -1.218419735768636, -2.155731419353773, -0.4039652734160698, -0.5469149325211714, 2.1252379030602513, -1.191941862732265, 0.3637802484723452, -0.8814626161168677, 0.7556645675756953, 0.8744157155019863, -0.7456779971241341, -2.20442115668948, 0.8917834790044955, -0.3468825309153771, 0.33053218495156894, -0.1916441407411809, 0.6487880229480943, -0.6284232826982178, 1.119238423618974, 0.9156928901892195, -1.2902190122208144, -0.24243878648232794, 0.8340626759517202, 1.4724233840164518, -0.4862919414363865, -1.2709990123812849, -0.63854119578783, 0.11692772209749494, -0.002527902220929994, -0.47976927693198407, 0.5550494427965704, 0.41934270735035545, -0.2789527944044878, -1.3893966484488747, 0.9152486196244304, 0.8512573442326911, 1.3353636059315308, -0.5142649298618283, 0.8217977812535732, -0.11302595690225602, 0.9369606689948806, -1.6274662560859063, -1.6269032262429457, 0.334052215471101, -0.504063320171449, -0.7295007228990518, 0.4379816501960268, 2.1305608437473156, 0.2881455536366652, -1.2168277485309442, -0.4617084073146353, -0.5795829865075125, 1.2975136341940774, 0.6220376079482799, -0.22071987507099822, 0.11954680749171577, 0.5699565823062849, 1.2824540503179234, -2.185694447250245, -0.47804998491582595, 0.3507939630724271, 0.24253285263301758, 2.310230319835077, -0.7024645100518296, -0.16350565445917117, -0.32904143093697774, 1.6204578841752222, -0.3511827454503214, 0.5058734062566701, 0.6326137358505406, -0.4294107070367522, 0.19547085436407607, -1.0041011173377454, 0.5427088405174091, -1.2368895174650738, -0.5164341992826328, 1.1761229235092938, 0.28126064074409773, 2.8991390803313815, -0.22012152314572858, -0.9300581815299817, 1.6712735821500437, 0.3738720462817518, -0.2476423296704199, 0.4115530506831467, 0.08602043818482168, -1.0186957227475026, 0.5884483759325211, -0.47029901258868023, 0.47023857221782106, -1.8101755476095798, 0.18444831312324794, 1.3355218046436488, -0.9900283991202115, 1.3942393540482523, 0.8042514817938333, -1.8640691944016912, 0.6089926919458287, 0.4877418047635751, 1.2706218931229147, -1.1102531817067898, 1.2898327425060836, 0.5462234912614835, 0.511061400355233, -1.3263656491816538, -0.9551842658204308, 2.583699338092952, 0.13419193172744528, -0.19064459082126384, 1.083281533723345, 2.4296393663565974, 0.3986015148083804, 1.1271081431050265, -1.3399190535264196, -0.557950993984825, 1.0280765690607394, 1.7218283456240076, -1.3136345569079555, 0.9638333627427814, 0.4941226349561243, 0.5653112397490259, -0.686530171048383, 2.073730847242551, -0.7127178858211781, -0.44550370908185133, 0.010941644309504214, -0.7548509874560936, 0.35036784885250666, -1.6893850438986895, 0.16434120146193537, 0.5674861318202522, -1.6321055896080359, 0.47935258817918636, 0.6525238644284049, -0.16541229116834372, -1.1218314721342801, 2.0431714115122, -0.5184015915150612, -0.8901964715538866, -1.135847496111901, -0.3048656086521285, -0.0970271824921184, 1.0478014634566761, 0.6379923503375518, -0.17264396068925214, -2.1967236121795177, 1.5140534856798094, -0.32229343553949097, 0.8593472087361084, 1.8252374856991074, -0.15458260890965217, -1.3292704393823254, 0.42534416657091123, 0.22027546445479718, -0.25850550248271364, -0.002488245884381733, -0.6725289743636982, 0.9270219141955441, -1.510187154433093, 0.2844563803841583, 0.787577098245649, -0.2807308375627286, -0.2135578543583862, -0.16847184964200632, -0.5071011500594931, 1.9074000345614683, 0.10853261486620452, -0.15932233790177075, -1.5302598956449012, -0.0059872056638414625, -0.4265403798715017, 1.558188323414305, -0.23636388634745636, 0.8238611715560108, 0.028995547189037265, 0.010853179807443755, 0.48764256571582926, -0.048259736719506875, -0.05478076535879752, 1.184779202753829, 1.0937162995907754, -0.00421719086468483, -0.6961001700641598, 0.8651915474401242, -1.9568802853267746, -1.1253272877273777, -0.6909854414477201, -1.8280154419999737, -0.668421906438285, 1.35242836091627, -1.100758557696482, -0.3091813518855311, 1.2698114453372769, 1.1786611609816227, 1.6093023026554056, -0.15200581691460446, -0.16553965577043298, 0.4118303953304962, 1.068116481424891, 1.9032064944387836, -2.2889597352485307, -0.20720888594108267, 0.9717462988210377, 1.2577730227495274, 0.46071784206851446, 0.09262080788908372, -0.9904638864672547, -1.017950847208624, -0.7503575446938572, -1.292604054021513, -0.05185990045423197, 0.7255385036877903, 1.155405868107563, -0.6980327522905108, -0.10530444347856768, -1.102174376074844, 0.10076641285470848, 0.6911476748491832, 0.33373535879934435, 0.42746438860521774, 0.33848285274185286, 1.0103503506511466, 0.1759839911521745, -0.8439178593220346, 0.6995145443305211, 2.220420236126339, 0.09594255785263713, -0.7482871860136223, -0.11757934365094096, -0.15746026471445349, -0.1138254454865641, 0.17672384483634337, -0.47233673384512553, -0.054153712497904904, 0.5810539964119575, 0.40732572129410627, -1.09345378550107, 2.3575214041939767, -0.13835940730845925, 0.8122060432500419, -0.5351497276972822, -1.2590229500258623, 2.1536993200556984, -0.7904811758017222, -1.7196874079180369, 0.494070807322018, 0.8054961841084863, 0.127584774931788, 1.1801280705143034, 0.014134312347130496, 0.12348150478353244, 1.5652000065962388, -1.4011035579488162, 0.11854926705167006, 2.439969161826286, 0.4280406332701762, 0.2335876692084254, -0.5614357870255299, 0.6504234366033198, -0.746256858120194, 0.6387093369515309, -0.30809380728752783, -0.2531326910257395, -1.2523650658692809, 1.358178349919767, 0.4403142634162898, 0.40502602448645164, 2.4578673309738095, 0.11490578405664634, 0.19642713165944464, 0.3706860470458455, 0.3192375329279509, -0.8684677447356852, -0.8051013786971005, -0.625626998470187, -0.18061089074852993, 1.3292820350783159, 0.6804587845885066, 0.8326784876398233, 1.640397838610617, -0.3187411061418519, 1.2790778059157906, -0.8847020728483818, 0.23881071269238063, -0.21858811903348116, -0.6327742838349898, -0.9061531400390104, -0.9368753639766441, 2.3823723389038642, -1.2112567623870814, 0.08594318434378817, -1.1557848604558512, 1.0724139976972515, -1.7082390303154584, 0.4534148398214107, 0.7381362846708576, -0.3992995948899219, 1.4301751459516663, -0.4711055537022741, -0.5757341850709574, 0.6079218175899928, 0.11133809848105014, -0.11913062462664892, 1.1667234959000048, -0.7728950885548144, 0.5505878071620596, -1.2525836827504995, -0.028988171337080062, -0.6157133299885261, 0.16654624609929994, -0.44274388140670184, -0.8480422623702875, -0.4184250334997923, 1.0521293646750354, 0.25339496584311144, 0.37398706143405247, 2.4585967035279905, -0.2882141427589165, -0.6901163178284665, -0.154928415495509, -0.7594546953094005, -0.583892838030641, -1.0933258177210907, 2.2721080683991217, -0.6446279816412058, 1.6445048501600104, 0.028278253800910282, 1.9813103411473694, 1.8767596277771137, 1.3875510548054095, -1.1698358926398387, 0.888224046822485, 0.01822034125024245, -3.45903930747716, -1.8136621209347472, 0.6077902805091664, 1.6524821181754332, 0.8998700264963829, -2.016025922006993, 0.3313369538457319, 0.2447590076717094, -1.5002641194161923, 0.056705451361113934, -0.6957146470527078, -0.5643116732911082, 0.36729901980046276, -0.1645861266165215, 0.7623846086061593, -1.1825832498609554, -0.27255301501013923, -0.08328068933905927, 0.3572212826214836, 0.24549845309151547, 0.941010346984573, 0.3552222360314704, -0.07827116996389619, 0.12988661768056353, 0.6393938959467328, 0.9291535290198757, -1.1147313887251, -0.9733430668930081, -0.8422903057748042, 1.3285948371018612, -0.12434527199521371, -1.1277630880996767, -0.5899115280376002, 1.104277677853426, 1.7400355820325017, -0.9444363927948579, 1.3436614227878574, 1.5896652179679416, -1.1621833911051125, 1.7266529056659656, 1.4167694924029572, 0.5724050356169059, -0.27963047409604835, -1.1364485099938266, -0.8678369734905366, 0.9637930187352718, 0.8972365969820302, 0.8896509367542216, -0.33521820496588195, 0.21203692574483993, 0.838226233999891, 0.7587289650159269, 0.07066367332151935, -1.6182756355403356, 1.152380745889692, 1.5544420942763784, 0.8294951800267586, 1.0680134367156349, -1.2778662989087954, -1.0780553719214263, -0.2550855315108289, -0.06971292522504718, -0.06254806685347493, 0.7310897415534668, 0.18322220148162136, 0.2539105342753652, 2.4254649678085918, 0.1790632586576656, -0.7765134159549396, 1.4881196061026134, -1.3003936973516628, -2.609032285481858, -1.848602939050909, -0.8191486476316258, 0.2060027946475805, -0.18015746239495614, -0.28699075481234304, 2.008004653564705, 0.599766359421155, 0.3944593608047079, -0.7419654574720514, -1.5042702431162975, 0.49811948872652784, 2.375205118929842, 1.6048504159879884, 0.8829399465190939, 1.7720321230906417, -0.16547810963781565, 1.5072069101124252, 0.48103621568344795, 0.3531109808849671, 0.8276223703542874, -0.5254043398539393, 0.10480821484283812, -1.3115301236254862, 0.037256976131780625, 0.5204421695683431, 2.2395649802536157, -1.4188035816302018, 0.5150481121922671, 0.8897049391961427, -0.6976329025465516, -0.9226284817493996, -0.07092485926033466, -1.2420580501766294, -0.17517976227741583, -1.513574365805436, -0.16370847474623104, 0.4484764776839662, 0.7109726097468271, -0.30546611301473986, 1.9188897995496357, 0.8280561059060081, -0.17600647989948412, -0.1313493192099925, -0.13963150978797126, 1.0288923259502103, 0.35860523347396844, -1.1632705446337714, -0.641905713752709, -2.3502567390110536, 0.3335085909447216, 0.3344237666845417, 0.7612257360918527, -1.234459734975167, -0.19117063916217567, 0.3709425801136325, 1.1310338220809935, -0.03451937468959762, 0.45486034931074354, -0.6019146123358634, 0.1301311412948299, 1.6492384200098165, -1.0254567284414098, 0.5803844655775813, 1.5452647609902725, 0.39903960913030856, 2.009922563979464, -0.04860380307265902, -0.9899343343051813, -0.049007513079954455, -1.6056898721834545, -0.15734646107773567, -0.027527849039810117, 0.5780204494965211, 1.2028373430976453, -1.5024673856432447, 1.658072107337095, -0.40386929124620663, -0.6564764350606291, -1.1236717774063665, 0.12718281110076912, -0.5114954423707937, -0.573199929595955, 0.6780528117055373, -1.9650728828008395, 0.18283822121454077, -2.258204837168739, 0.024141131179602964, 0.720454491726919, -0.6123475394516863, 0.5984616547688743, -0.9308478729295666, 0.054875820693704, 0.3954636462095131, 0.7731296134680435, -1.0029684838293031, 1.4606840501672085, 1.5923675836709985, 0.14985652993218915, 0.28255604240423754, -1.8458131504756243, -1.1028471978256564, 0.6253519109348123, 1.4144203442714447, 0.28674016486480347, -1.694908781878213, -1.4991541612257442, -1.2040333456049572, 0.8973448201887918, -0.03593795714924578, 0.024680511411846143, -0.43659894282684075, -0.6420256101715909, 1.9939642670183713, -1.6501620734292317, 1.8753839362256173, -0.07656723782485365, -1.4638861520945883, 0.3551715530538202, -0.10603212523521398, -1.4756288496021526, 1.1674922848895235, -0.13526603173228366, -0.21035526054358802, -0.41029362434524635, 1.0864435638240495, -0.015178006514505508, 1.761719169132903, -1.1728257239124529, 0.46111850770376533, 0.9074415245621315, 1.8164132717482369, 0.3192339257932533, 0.8044614520688687, -0.2188345360466563, -0.9494391484025547, -0.8667516314113308, -1.2722581709002887, -1.1752371740473981, -2.1778421637358094, -1.2576468244834473, 0.4929610186777221, 0.05901730498249412, 0.9091875924176934, 2.737790723869676, 0.31260384901941224, -0.8463273585697532, -0.11633352513925103, 0.8727483474899925, 0.21885563746471692, -0.33379792974288247, 0.45998752653974095, 1.0171810424472758, 0.8140044307653779, -0.21062180157982588, 1.1674372242145776, -0.9112605642770853, -1.6062713338302714, -0.6437020209654917, -1.0280526498853866, -0.9466344397497534, 0.33580541591491514, -0.055538925220550754, -0.6300738767829172, 0.5758515301244356, 1.00013989699497, 0.15641436116091234, -0.18249688127133523, 0.3915733246842027, -0.6295142982243549, 0.5165249998246338, 1.4846333425263996, -1.4749457457239723, 0.35743273400907605, 0.8473735495200666, -0.739877440967924, 0.4669162593804016, -0.294946695116607, 0.2579931111329446, 0.9803013817651303, -1.0533916861666366, 0.19788499744685897, 1.9876181532220485, 0.6490101369970592, -0.12473521834861842, -0.33266647420440093, 1.6721293246288482, 0.17477824057091734, 1.0011239556645246, 0.7756298422973555, -0.6544677382294658, 0.30696128996352395, 1.599065803748924, -0.30505290554217657, 1.0603873792407235, -0.842366137453558, 0.8913204066367314, -0.5188620298164142, 0.3567541172433484, -0.12947596547240298, 0.6410413915673729, -1.2586598618879523, 1.0203267244934187, 1.7864019783675928, 0.7379028525425476, -0.28398272194813434, 0.5224773838708854, -1.4537235835685036, -0.4736036266022222, -1.4081891502298671, -0.5189954813683653, -0.31624429257339315, -1.4988158192062753, -0.6608332355104236, 0.23797281750140223, 1.3954076113273113, 0.06252275832290592, -0.6307723713667721, -0.8988847975151728, -2.2812091607103837, 0.22727884423010694, -0.47540162366740907, -0.5108230092037601, 0.21100778655133282, 0.10924428542243443, 0.5578731462386339, -0.6120352831954512, 0.4104784207612234, -0.09398494239583051, 0.20044300676851, -1.0453062558246797, -0.2617735084133025, -0.6999167819658367, -0.9238558861499051, -0.270935014546651, 0.812854033933896, 0.22905034603676694, 1.7191445425053002, -2.430475938283011, 0.7268083652885193, -0.9362325905444171, -0.6973060677583022, -0.0437178623314012, 1.1418828194043265, -0.4146116830242902, -0.6983064857364584, 0.9103277733105479, -0.6329666518302473, 0.9543150987085331, 0.9067013544789703, -0.4279006081802176, -0.3094023892879811, -0.44003830216883455, -1.1626083083678138, -0.11257298085809354, 0.14561972644816604, -0.8308208717093991, 1.6039255493555424, 0.4973921069626525, 0.3090428067445524, -1.028158978764749, -2.267206779731806, -0.21027902708409738, 0.4000300246698068, 0.10301633790387042, -0.8637049171488531, -0.06845042078356157, -0.19416065069378738, 0.18504204613821532, 0.14481504566495126, -0.1109267144778595, 0.5605632903264096, 0.697815261240686, 0.4549264577528405, 1.7130271730528548, 1.3641858058625769, 0.6560398937360046, 1.2126390312282518, 1.0109474296643466, -0.10584159343111284, 0.684134848618188, 1.1690436796238584, -0.3959993865293687, 1.2045930686964965, -0.5479303595553696, -0.5739767728053554, -0.9839563410664937, -1.985966246349066, -0.2533765731440389, -1.8015526462986875, -1.361469978932154, -0.5791195708393073, 0.07161949866329057, 0.5586548257762898, -1.6174587023112477, -0.3668363971361414, -1.8691619812768303, -0.8497331941066025, -0.5995451340572384, 0.32140102911243207, -1.283669399031622, -0.6288044824303626, -0.5596420850570051, 0.3856435155258846, 1.1018136647329417, 0.24393490677964685, 1.7214582236076457, 1.2309389586829693, 0.18105117312359897, -0.7212039782024828, 0.0895008280962562, 0.40610482384960517, -0.1895545117286571, 1.3406870677792542, 1.5119955455893819, 0.14450588990820126, 0.6150575012635583, 2.5221349203278307, 0.9831444160939161, 0.8910016814334037, -0.6800538570500427, 0.46463331329111196, 1.6464582091764244, -1.1246861676979598, -0.1605850302959075, 0.5405903076086032, -0.49525440692915057, 0.9116872257399922, -0.8352993413193712, 0.8493693044802583, 0.9194979653428031, -0.7211108703555363, -0.7899499063910674, -0.20892562768767345, 0.49617630723404127, -0.12293513064986006, 0.7266587820808497, -0.7391643209833404, 1.4690173859548916, 3.027869463251728, 0.3452613223468839, 0.10641088664739595, -1.4096693726748086, -0.6553219521689015, 0.21014856595236817, -0.9792911619822335, -1.1455057478243695, 1.532803820483829, 0.35962784036177753, 0.7507564939174499, -1.7505011939201274, 0.12121914728845819, -1.7149480258857663, -0.8625700983488558, 1.3177229146941964, -1.1611145437440538, -1.0602418531850342, -1.4909028269089801, 1.2615803489619815, -0.09541238550993748, -0.9273414019729835, -0.06115215840339293, -0.7789748325457377, 1.1854001598472261, -0.0167047412598901, 0.11960083306750144, -0.12906295471298737, 1.198639056068212, 0.8644875250436895, -0.9442063487312928, -0.5283405605992436, 1.7828573440436501, 0.9977925407617271, 0.8183025846141175, 0.7175367121439862, -0.1965755015331782, -0.401264176798996, 0.2762131832214002, -0.2939265363697102, -0.6123746526714332, 1.8632780492204972, 1.9145045732704287, -0.16063009026695083, -1.0146866313756908, 1.0116696529399714, -0.3722291446408603, 0.6523509913773932, 0.26270686649507763, -2.132491188112079, -0.48121459329290356, 0.6556384304932068, 0.30955932952365767, 0.09705821180175613, 0.4964229655326541, -0.4651932995227877, 0.15035753581825267, 1.2113872834663597, -0.2602036377769263, -0.5458243824256276, 0.5258581791825792, 0.01128765282585991, 0.48086352675773786, 0.1772207507689526, 0.1998560967413806, -0.49682152256146844, 0.7116759413696424, -0.5436585549172824, -0.4772186002641368, -0.5497398966062572, 0.6648210197915516, -0.3764545968693683, 0.5156087537450191, -1.8930633292815515, 0.09602377979553584, -0.36476470419701335, -0.44960540831697754, 1.6614943943684386, -1.1897079939972326, -0.2061444795144075, -0.774924959875354, 1.8874858351974884, -0.35504744916252456, -0.8123751875452042, -0.9868642076467562, -1.1327240710967486, -0.6114952244629146, -0.8091800043752455, -0.7396041010346478, -0.5453560675740712, 0.8260677037009799, -0.5495595127289257, -0.6577297695270001, -0.8667999695411056, -0.4654320202608271, 0.09834985565491089, -1.4380047016881803, -0.9002983067131447, 0.16434935325149946, 0.9929788559528306, 0.792439766750764, 0.04372654939200391, -0.08822178759862641, -0.500800099007238, 0.6722203682949548, 1.297633765219759, -0.7080615304736225, 0.26003432707976687, 0.07810427593336505, -1.0294879603609346, 0.9128876622980139, -0.5951294074236083, -0.2335869260354282, 1.3984365574155713, 0.30650264967101887, 1.682143120374547, -0.5615713626186858, 1.6650782001503248, 0.45132076709416763, -0.9387459814836479, 1.1872819543484632, -2.1654625737768454, 0.3688377832560089, 0.9524880031900945, -1.0847308949595655, -1.1725887203641798, 0.205210579501347, -1.5524375354583801, 0.7166203252197678, -0.29175576994710456, -0.32675798667795036, 0.7689982839290697, 0.4266574059667486, -1.2538565334410101, 1.7362327645974571, 0.3744696669404752, -1.7164096856313817, 0.01715559265601565, -0.8182588239406245, -0.6853182085951822, -1.4407517886971934, 0.31203230411963706, 0.37283898050292236, -0.9670424239521642, -0.8250842494431467, -0.837468950626371, 0.8963116369661384, 1.2007973296543906, -0.5743181134353579, -0.5251897635121626, 0.3628611570754943, 1.475676585393475, 1.4158729320635741, -0.3186905538611573, 0.39466146918132944, 0.4304426722614669, 1.3980361099898853, -0.8370697434322173, -2.9701980845008795, 1.738913500309292, 0.10871255113789555, -0.21815697496570816, 0.034269976592766066, -2.508373399600925, 2.7146192861435114, 1.1920579991836528, -0.4283893753022851, -0.9439717134553991, -0.6113666737287122, 0.009744521453838986, -1.174806412156155, -0.12966418330008417, 0.543842206831943, -0.7066702200291497, 1.0330455044351126, 0.6346924570703958, 1.15176553998569, -0.6827483063008752, -0.43297331819131846, 1.3129722494735994, -1.056119281324084, -1.4529450433388467, -0.5663641946445821, 0.7429245855080778, 0.40260400908909316, 0.5816922424087869, 0.08050138738759319, 1.0415010499396287, 0.36002758799745266, -0.7660584668281636, -1.3001391578055796, 0.10165534133760566, 0.31195513706900596, 0.3420829506157914, 0.2686314743830838, -0.30888175359454634, -0.6562386675832685, -0.09391312229142278, 0.03503473473924051, -0.29551398885859953, 2.4317055590343433, -0.8551668643098878, -0.9511251275040175, -1.2449775434324817, 0.5998010862495667, -1.186779811084099, -0.4916527708917316, 0.4983450883600064, -2.0322142394555223, 0.3741562841555367, -0.600086129935848, 0.11301381193985734, -0.6836402745764212, 0.05977678653436424, 1.0055663897695535, 1.7397776754037626, 0.7464455404500676, 1.0359525029582861, -0.40010719168609565, 0.0862019760210504, -0.3872039936481991, -0.8975743613284443, -0.6571326129886382, 0.10182795441538718, 0.8266757484455164, 1.123189671041877, 0.25736797072853446, 0.44744179467470835, 0.3177863330153605, -1.4904688541348894, 0.5037663245194203, 0.9156058958419195, -0.34416387033493906, 0.3983343995259203, -1.017426638257725, 0.6089490391467373, 1.1554364788616773, -0.44618868280365925, -1.6779610031154022, 0.34506009453086434, 0.3344299329319404, -1.096007466297231, 0.4049936482585803, 1.6687919397852522, 1.007090209840806, -1.53356643810342, 0.6308663685750434, -1.4820917857370925, -0.24708191381363526, 0.5115530619954587, -0.5494653207107051, 0.6103633197073254, -0.4854606886482304, -0.21186723931443605, -0.5585423870704255, -0.25667887241816334, 0.5805695041386237, -0.3616065683766251, -0.4560957690375142, -0.6099466300279556, -0.2788970146836174, 1.9776315299077727, -1.011216616902811, -0.9657276262236116, -0.07558918425018518, -3.534137610057448, -1.16297822651491, 1.3824721184373594, -0.5325491850013357, -0.2556715081032973, 0.07172228103301816, -0.014263208567516839, 0.13940187263853035, -1.550146245500362, -0.8967462418621588, 1.4297977691952497, 0.6335704841729086, 0.6824416796678716, 0.21713859094353066, 0.5470717882732414, -1.1753094012057366, 2.901565612960417, -2.156166871130225, 0.09029787169735586, -0.9895333613450967, -0.27950479506242704, 0.04975223104264048, 0.6197809644791233, -1.5193835832541682, 0.7938333203401906, -1.600046222203884, -0.13148541220482504, 1.9276722922911163, 0.7800123528792285, 0.24519637163061536, -2.0444573069571703, -1.0843643441540263, 0.9582428690223158, 0.3935587295011603, -0.6460528124775651, 1.018891721118135, -0.05531248272541589, -2.222575945645367, -0.36389072874657374, 0.48174975877790915, -0.17494674970561522, -1.2089893072921134, -1.0846077457224916, -0.7021821151327472, -0.15435406463011267, -1.4018784699257751, -0.705771217869065, 0.3015723491205318, 0.6358571446991458, 2.1938773481067075, 1.4196280593683777, 0.9082646075483732, -0.019224134551589257, -1.0243658154106756, 0.3311885774722545, -1.7061115339974589, 0.7379175672940714, -0.5272588064732209, 0.20076284886985046, -1.012038591315661, 1.6745936088058009, -1.3467227185407349, 0.4394446991778989, -0.915487572250015, 1.2316512784910614, 1.5385141823735269, 0.9460039554459698, -0.8652979405922541, 0.3295176648283545, -0.5335217397864014, 0.8074277575756277, -1.0391795639877643, 0.6894070400167266, -1.614108795976345, -0.5205313225794101, -0.2565363144816739, 1.2634631555355842, 0.3823677548509836, 1.4231389100812786, 0.6598153689189699, -0.7158368180834108, 0.7547977861841626, 0.2919150931015294, 0.1360771948436702, -0.2497619200466654, 2.3721712773007457, 0.8870521276168685, -0.44598543790128853, 0.44365418266605555, -0.4476091421869155, 0.7315484546638163, -0.5042778039165176, 2.3245310523447995, -1.2609323805672945, -0.7086002234456227, -0.77034538609863, 1.5305284994591057, 0.7246032691734314, -0.8942714294492393, -0.9400789447083366, -0.5181291471692103, 1.084842825668402, 0.7119466389927347, 0.9611954647768417, -1.3289958065200216, 0.458026706262399, -1.207141092537975, -0.4318521456716135, -0.11081898425823385, -0.9575361082228255, 0.8558536603487477, -0.1608346155845481, 1.7637324947463593, -0.07055989206385421, -0.10068013945170928, 1.3786878508702294, 1.2135287854378918, 0.06137555953649848, 0.042390908589617776, 1.7899159481978195, 0.13171207578188818, 0.09822288171611587, 0.16839260137732345, 0.3689181979365938, -1.1873446895187092, 0.3899731939515589, -0.5894230586341299, 1.8950221503337938, -1.742065137738527, 0.5743125143728213, 1.011795555035391, -1.4288222588901176, 1.2313379281151169, -0.1184456795528877, 0.08951204251355449, -0.5396880309331541, -0.8820331148881576, 0.8868970820821604, -0.8122056891528218, 0.42532845713914885, 0.8371217095241406, -1.9527964291123479, 0.46042933452073603, 0.8557977320235924, 0.30300299442030254, -0.6467237567813912, -0.9342956680111805, 0.09539357388626143, -0.8048259049635289, -0.860890998456288, -0.37468483400191843, 0.3144165643271951, 0.6010174795646098, -0.8452231780528386, 0.8424424716985351, 0.32525412971800616, -0.42565806910194853, -0.5198423244598829, 1.0760505706725338, -1.7259547228197092, 0.6520822452936238, -0.9189628786154151, 0.5035260989251268, 0.8835973484199514, 0.05556172111224716, 0.05397472636284298, 0.1909944820324445, -0.43531517817758153, -1.1461721593039946, 0.8612573963363644, -1.0399237444510188, 0.1782984880566005, -1.3494058733717351, 0.024097502898573517, -1.5381510876114821, -1.1105242046832224, 1.9492227575322856, 0.4098022561477732, -0.08908746102648603, -2.4839598591634844, 0.6365482700410628, 0.846047507253216, 0.8642256510315856, -0.30053272871655257, -1.4120466799458113, -1.0600259797367226, 0.029684341072576913, -0.8506643773239672, 0.30502954641137936, -1.7903530423265894, -0.09057480472746976, -0.9961300850926043, 1.4508036592688247, 0.05200949726540044, 0.1161157039674807, -1.9063488473267527, -0.3152075269435172, 0.285205939358293, 1.2311536044637004, 0.9294887702433284, -0.1333611032312626, 0.02257678192015784, -2.039669116284704, 0.5911698154445122, 0.317968310284475, 0.5670739518486807, 1.1166844458166056, -1.5495475126729479, 0.1665652358753292, -1.1721778205363234, 1.9177354893033134, -2.020041132430792, -0.27759062420201763, -1.3913870998806777, 0.6705965727833171, -1.0513162923339903, 0.16247585750922558, 0.23473056087447533, 0.950387163319971, -1.1585313121280207, -0.6952111575687717, -0.5273448947529586, -0.036812910313439334, 0.09947357216207806, -1.1568119668109729, -0.301012270457189, -0.26861957892546023, -0.3199261477047115, -0.6971911212248229, -0.23936379457427875, -0.722338619915773, -0.633299312670272, -1.7032150535397368, -0.02296242624935952, -1.6203362404635395, -0.5887275435558785, 0.43687863447610203, -0.4948427753035094, 1.0824867562261506, -0.7291211398518966, -0.3806443257862858, 0.5075673263366, -0.8292784839886973, -0.06343405297201214, -0.47534644232384504, 0.9763064663670793, -1.1570511943065351, -0.7998512347314198, -0.27111808681166083, -0.06209269865114243, -1.1247571145537891, -0.811210665464483, -0.10342935851569315, -0.3697452763464194, 1.078198502191502, -0.8438049636559195, -0.9655181220936451, -0.03436565433917227, 1.2533257036006562, 1.1232617261273512, 1.0127815549751675, -0.7514312256707905, 1.4764887049736843, -0.3724069246481054, -2.5321930330690625, -0.3042714587044858, 0.908927511674516, -1.5336656438908651, 1.4952228087703203, 0.5032421312921392, -1.0946854485079485, 1.9372202336948503, 0.3729938324747681, 0.2733829449845444, -0.5370722484385193, 1.5662828903373238, -0.3289219311410521, 0.9472523835410793, -0.04071913033603268, -0.5537042276839981, 0.5680986433991678, 0.12917974246193215, 1.3508173249864848, 1.45571092473589, 0.4857628284684401, -0.6612295823364244, -0.585088048458845, -0.43888270593242484, -0.8305949430312471, 1.4025807810423643, 0.016769730871775385, 0.0172049777268674, -0.7065597584305198, 1.358587845011048, 1.6154878688018983, -2.0768159675799582, -0.6136690681299541, 0.9091440435226656, 2.105791507101793, 0.30630857207313766, -1.134196726548747, -1.1978328870270933, -1.272228135308712, 1.502213969009871, 1.129153241454289, -1.569511377141721, -0.36823606252247093, 0.5226289271946591, -0.6402868186641666, -0.4168527542391739, -2.3847684261617528, -0.72708897411938, 0.6642191313685897, 0.21146162450206848, -0.6114588090959913, -1.9529552238332912, 0.9324292768718748, 0.835301342963696, 0.2528847366681905, -0.42145591141414346, -2.0498541538651653, -0.23387596573026673, 0.6037924428252944, -0.5380730309749732, -0.37596142165621727, -0.04883688124350724, 0.8779314846849524, -0.942372025057587, 0.48046071278473856, -0.7562706097638593, -2.2386451440545407, 1.480959848635439, -0.07339407460595117, -0.05715108518323763, -0.5757003354529086, 0.5968479114484088, 0.34076656527150584, -0.7847023032139184, 1.3735830245402838, -1.0460389676610469, -0.789997712340165, -1.0661996138898047, -1.1606483763299518, 2.639056726525918, -0.7884096520572235, 0.1552966023782574, 0.9279025507155978, -1.9019370275021117, 1.0926993110759786, -0.9729757322409986, -0.5110341523216554, 0.45982873780916084, -0.8382112317925383, -0.6912131124578283, 0.2002913601335516, 0.6264846504715301, 0.8373762635274329, -0.7437732971679951, 1.5620233696823642, -0.5998727718010823, -0.49290137743505985, -0.5958350944169313, -0.25459577255024446, 0.15564381121246473, 0.24277596689890263, 1.087983778053077, 1.1467008032369328, 0.5441717181374907, 0.22603477560076876, 0.26413472246808134, 1.3166106921295397, -0.23333545394106084, -1.0035100524354181, 0.12431275973547533, 1.1403083402976966, 2.222768226671714, 0.3319924033937947, -0.6606553317390287, 1.0664837673853136, 1.347073285322416, -1.4018716661764918, 0.6405431578128974, -0.13311544720843738, -1.290933328667715, 0.4678653193016667, -0.25943491934486, 1.8239626774448938, 1.0607314205284293, 0.9546690943101674, 0.4102430551684126, 0.7059055909475211, -0.7489315468198782, 0.9817789947211176, -0.14049501646308835, 0.9859170980149151, -1.6154933479632083, 1.4299578465228775, 0.2563993936981765, 2.7186809129001617, -0.055038282898480034, -1.279562461258897, -0.8884029945944594, -0.8336157242985287, 0.8465711193505142, -0.06729426811093892, 1.162540582638116, 0.415752444606187, -0.6328892575307565, 1.7909974901663686, 0.4116367923496384, -0.23603464825455014, 0.14873377226452308, 0.07798709441302361, -1.9196562998139899, 1.571652043613968, 0.321868332070493, -0.8455297237752567, -1.5441382041334413, -0.6627770008697482, -3.4616373633967945, 1.4508671580667258, -0.9094548298007138, 0.9345391144678793, 0.001433243516049541, -0.5369530105112014, -1.1012663829057008, -0.42243544217826323, 0.5633298397427902, 0.21777554272935923, 0.43858208952385885, -0.07088134135691129, 0.699758809365054, -0.24074444789343025, 0.4411072220824932, 0.7875237716530074, -1.0195760117413344, 0.3609370807132118, -0.7251957969032997, -0.16613563413234114, -0.12431248295331739, -1.5715489382989805, -0.4109214527143248, 0.6745500600478915, -0.352438379483137, 0.20320403982208618, -1.3988735192105684, 0.2523959873292301, -0.24311976181741002, -1.1913903810170765, -0.5441213038793791, -0.97473456437491, 0.08334049545203966, 1.1614801862478605, -1.2616739797022687, 0.22800552308876623, -0.4327516600970347, -1.027215626707777, 0.21091684464475935, 0.4005274563336377, -0.2709469843802076, 0.8077853325157794, 0.12005956380188244, -0.2715532846019195, 0.05283852850555139, 1.914099792579632, 0.5688832666848652, 1.4849310087302148, -0.12398751733352435, -1.5718551447605913, -0.6098203677040126, 1.6273715112220064, 0.7896941230814792, 0.7096990532854635, 1.2210473621640325, 0.38542058416227687, 0.40199814534172945, 0.7237529373290613, 0.38663801131011055, 1.0236773252403164, -0.9931991813095032, 0.4619086267461362, -0.3437577512180504, -0.3021698234728134, -0.869536889576273, -1.3813952621752341, -0.8205868748897452, 0.008838391611219467, 0.3039899856632202, 0.2786540699142701, 0.12245377272453659, 0.44202229800365855, 1.4507247974847173, -0.29677244406101105, -0.7192813502744217, 0.986356335014031, 1.826106610791292, 0.08551262299676174, 0.5195224870936507, -0.10672629856446185, 1.0012664892785936, -0.3499987497764455, 1.1992847737618788, -0.6855887822170444, -0.5960047162339209, -0.158642940805349, 0.89700104740005, -0.548653171808934, -0.7387353873991623, -0.718919448467309, 1.2211331300317756, -1.0991127515445622, 2.008153213292273, 0.17584872332609966, -0.18753901899895128, -0.18314497401734897, 0.5036715165097619, 0.09733188568944662, -0.2890896736728851, 0.47035465564040074, 0.6425669997574857, -0.18827898664542092, 0.8580474989026752, 0.7117804961120735, -1.2992573462691974, 0.03979650010851483, 0.28532815048175797, -1.3964357659869386, -0.7533776000491825, 0.5228648784827724, -1.5891995212431549, 1.0651743989421263, 1.2668022099077458, 0.08737180978668864, 0.06326419412844493, 1.472295643519121, 1.9186458586677606, -1.1375641127811087, 0.18891036406815892, 0.6798076516716556, 0.8262651261289894, -0.790196401848652, -2.7255563128328757, -1.453777019743305, 1.2983443867870292, 1.1804971017351757, -0.6636546879155101, 0.5802738236177988, -0.007326289852121741, -1.1918576165976194, -0.6930910097448597, -2.5869572748817258, 0.5399176899557232, 0.8323234228033116, -0.1631981986841856, -1.0558459748629205, 0.47437903677812676, 0.591688386436707, -0.6938716645718132, 0.2344639010944374, 0.09098685401321102, 1.3285559269457823, -1.8138467431164822, 2.822213118189385, -1.5708921160406304, -0.03297487119135641, 1.109227055922088, -0.7024421855944591, 1.9203603209981246, 0.777473034850822, -0.6739409656607532, -0.07644566871436839, 1.2335333820432854, 0.7483656062040231, -0.5830974700572152, -0.7816373924264353, 1.786497034067412, 0.9472566464070291, 0.08332867918179446, -0.16571971939322128, -0.5561373047591884, -2.448972196043935, -1.0404868168775756, 1.245836419616266, -1.7128077616694601, 0.40348674744344104, 1.8919070273310097, -0.007958397616264986, -0.2554915998402642, 0.4815387768196753, 0.6050347528364849, -0.732728952214344, 0.44772891373624363, 2.3204835118772866, 0.24997823655345094, -0.4595124203192002, -0.31013482577001517, -1.0544532754847853, -2.4413374607226093, -1.5119361357638863, -0.742157396854379, 1.6173343317922384, -1.307994932593428, 1.1823287140860863, 0.7405406729794834, -1.905953133693494, -0.6692572273294743, 0.5528249714909477, 0.5508110848776935, 0.11576240840719822, 0.3666652160402086, -0.29080450907671573, -0.07617264868315043, -0.5321214931501149, -1.6269188862794965, -1.3305399830029982, -0.8528229688093871, -0.1916960231477581, 0.7356504572018908, -0.6375779494673595, 1.1769046718415284, -0.17043087025844633, 1.8683844305650732, 0.45608696252131675, -0.9796029611101404, -0.7099989118987449, -0.8914930787857752, -0.177968307688968, -0.1800969810913453, -0.14029224965249565, 0.8227299571352319, 0.3969098007690361, -0.02117686631367398, 1.0787504298610422, -1.5918504964587998, -0.8798825171930091, 0.7227098483046123, 0.8920230447239665, -0.4200402904154117, 1.0586856018174866, -1.796871614109642, -0.7686685626734495, -1.9856307800089232, 1.3479216606946205, -2.123324994729507, -0.9041332551111833, -1.6035267289921953, 1.5561357857763127, 0.21559500490946756, 0.14856003409113527, -0.6579443836091491, -1.599378501973448, 0.31629178043879946, 0.3353724428415914, -0.13515816712131037, 1.5369052384498323, -0.3860859002213162, 0.09462681099674808, 1.4324198004506334, 1.127044250042211, 0.1261079881176495, -1.5810737181154644, 0.5562003451629789, -1.443424567280637, -1.2585903352403447, 0.8572158431864066, 2.033404364127585, 1.5434678985458459, 1.1724191946549412, -0.5500160703919741, -0.9418463640977999, -1.1871505291385513, 0.373608163880819, 0.4021774851802289, -1.0133527453236613, 0.004304021599628354, 0.6778224104058812, 1.7084189314334564, 1.5946656101702346, -0.30578451685088015, -2.316417361902039, 0.4984345142191827, 1.2374898589945584, 0.5291543607175034, 0.08603381670269504, 0.8979050800579088, -0.5623867293139998, 1.1447316127279932, 0.10091173602981629, 0.7135417102489731, -0.8737857918854659, 0.6086335171098907, -1.2282515340866569, 1.2609449595944584, -2.478742915574357, -0.5825569609067572, -0.6356033584291946, 0.5963356253910387, 1.2811498458920743, -0.19308626041631766, -0.40688047515957604, 0.3343267494364485, -1.5206390596403263, -1.6018894327148678, 1.6204185793420636, -0.5558389637428017, -0.4828412240168826, -0.9217765586805703, -0.8376907491987633, 1.73375309769239, -0.7079721620092662, -0.023063283194961, 0.026295474014551637, -0.4115785136085633, 0.5987759901854128, -1.999709417898603, 1.7421563111172058, -1.42272413723955, 0.4456760168196543, 0.24384207235424574, 0.6285100481730452, 2.1763535771640803, 0.12478323772436903, 0.7517097719641864, 0.07353203025160704, 0.3606016084834739, 1.3285228785964203, 0.13415712013228473, -0.41967229266013645, -1.3016538459477098, 0.6180939037646163, 2.426626878318483, -2.232117376192337, -1.3786123492237192, -1.2048971300729832, 0.08755598656856961, -0.12765954015193284, -0.8145658554209606, -2.3401028155677057, 1.3742227563672174, 2.4459502511413285, 0.6584051856002944, -2.0788367193718003, -0.6178576458718168, -0.9938866089655509, 0.6340153922320736, -0.7515227662635975, 0.4518108487882033, 0.7310615135403982, -0.500984811503641, 0.06673662519141256, -0.4463280453154426, -2.1885824126040374, -1.3548015225954688, -1.9461101960445677, 1.639063245597297, 0.10810678599329956, 2.153074503886544, 1.0159253471083478, -0.6545255017365653, 0.10584254986596925, -0.12811079516092042, 1.0440247646425147, 0.26784217353042, 0.8406564224893627, 0.44897738008713406, 1.575159288643756, 2.5542626615594615, 0.27284085721711276, 1.7125473786187373, 0.3399562838126918, 0.7303233019317061, 1.6429321924777809, 0.139733626535436, 0.9702561619568201, -0.8054649615492219, 0.05863940915225111, -0.39265330978469365, -2.267544454550555, -0.5338883710210156, 0.8636440991104777, -0.012770357238888407, -1.514270866994947, -0.6812185158815091, -1.3791980327858586, -1.413402292074907, -0.17845947105698456, 0.5487043806219425, 0.13382668840806297, 1.0456728091431027, -0.6214694440018242, -0.5059107742409428, 0.20618135491878156, -0.4664739972675464, 1.454818550662369, 0.14753567399914438, -0.13459917963799362, -0.5635919003426604, -1.3925523205513373, 0.705335757072448, 0.7500134296563332, -0.821147213191914, 0.3198578859861377, -1.170677873730989, 0.1132493038194148, 1.6035343913697027, -1.0190185916568362, -0.55926062024367, 1.2966252792711634, 0.5538219517576226, 0.04451781262494592, 0.23498496086022067, -1.1538308803969137, -1.0410544319776556, 0.6080286210672503, 0.6301294538458277, -1.0511050829403163, 0.29562020594458305, -0.449215025519943, 0.19089842452900221, -1.9038025097482378, -2.0144039438402843, 1.4511566739956328, -0.3082602895200836, -0.07118552072734499, -0.2983690576413478, 1.9649483795246598, -0.4800599167190723, -1.087287100020521, -0.6350032792268816, 0.010090628568973982, -1.4699299897146307, 0.374193609077308, -0.8429731232257268, 0.33529920831631976, -0.16555095642786455, -0.05137480643065541, -1.3868332173900701, -1.4243227162503167, -0.22825503883876277, -0.08781514377793294, 1.6046789468665827, -0.8485106119190726, -0.19305294133611944, -0.14749769124812367, -0.09062056723054651, 1.9191070091993259, -1.327714563235684, 0.25674657595275713, -0.5410655386141415, 2.135712589674456, -0.9233113631701511, -1.2204088097312462, 2.4091675222450157, -0.3840538625674566, 0.24316491772645737, -0.5335905784107348, 1.754706466648291, 0.7255100913832154, 0.6061203616205882, -0.2955058218792681, -0.9035515335321018, -0.02099670347500125, 0.6980581558173713, -0.9190103628146036, 1.6799814860368458, 0.6035486466001392, 1.0076247458569276, -2.1652216936572706, -0.23529644214763754, 0.43300798677922103, 1.0547871110408593, -1.75458156098876, -0.6677883487372385, 0.19533940352918225, 0.5880917772393297, 1.503178807068472, -2.1565370404414717, 1.3192231549539806, -0.5264282640390544, -1.4473116504560641, 0.40728295937161957, -0.5520958854946737, 0.1197975457383238, -0.6257229835989391, 0.6129474607484249, -0.9506318636918516, 0.13829383684344415, -0.17969700637359776, -0.40533629329590376, 0.06803801880772599, -0.8280405812859796, 0.9502573131770525, -0.9412888123459896, -0.1649135069687798, 1.9261847338584266, -0.7175680768462035, 0.18560242077215736, -0.580006880626071, -0.04320690608183507, -1.323504113502811, 0.16088289932458866, 1.1768648781399247, -0.2566657199714612, -0.26503640881803336, 0.5262090332392585, 0.9886677998898714, 0.8039825482577142, 2.5447009921793287, -0.16923803675897045, -0.018820005524840498, -0.0788777472140089, -0.17310595046931745, 1.044668949487116, 0.8467712702064397, 1.7088063586475397, -0.5530774516789183, 1.1640305154596344, -0.12608878121529385, -0.6577431225564077, 0.919754102463909, -1.0256618668271216, 1.2226607823036322, -0.42412632152991886, -0.4749175474223524, 0.8517926615091567, 0.816889117697306, 0.9614888802669141, 0.685753487326845, 0.8546333905870068, -0.07599516625669049, -0.11404753567490787, -0.33981965345771825, -0.6854495619381814, -0.5777657465749763, 0.8107655429066045, -1.7002156282026442, 1.7144680241709171, -1.035603895762442, 0.2672824879477873, -0.4362423349980208, -0.7791822447050909, -0.8293667297658945, 0.546060604083801, 1.2317491916617318, 0.3891523770753319, -2.170131365232707, -0.6220335285839907, 0.29378825254735796, 0.34430808585397704, -1.0681693312289449, 0.7944693691571053, 0.0771894984677681, 0.05226673791561551, -0.49674829882232135, -0.25582873404328366, -0.05738407038514201, 1.7020385033495506, -0.7116865760279123, -0.17400399918813692, 0.0010836802590611018, 1.4429833852205007, 1.3595382141852985, 1.4203965374612018, 0.11359144860730787, 1.3923756806919012, -1.7320315059959581, -1.0973127515947834, -2.254636287599541, 0.7103371440326868, -1.201990843335622, -0.14186907241411076, -1.56715578859107, 0.03833058018168712, 0.060682674577291366, -0.6704644269432561, 1.8628381256749118, -0.009984512115026184, 0.5078807938262582, -0.9945893308584919, -0.4506717321910877, -0.006105715838012916, 1.2582192693920446, 2.1058008606620526, 0.9133324092940385, -0.8112497117275183, -1.5454042971423287, 1.8209548352168414, 0.3865057138994139, 1.1983957541651937, 0.6862787792799643, -0.6684973155235963, -0.09383612711612413, -1.6253480927897928, 0.4302481824790036, 1.0812779975062325, -0.6493386651324079, 1.1430841485765508, 0.15824976305967095, 1.0087865989437341, -1.2384133134599284, 0.7966097893066736, 0.11648905979476311, 1.1509053229957096, -0.9879586609016917, -1.032086341356866, -0.3183779020522694, 0.5741753330197521, -0.5314428910992862, -0.45486639660215444, 1.5442868916715857, -1.1390694100080367, 0.7256653982516685, -0.5707926549681804, -1.0797894393548393, -1.2846468364556363, 0.2761099966727111, 0.12143747499485641, 0.5267530963826473, -0.1406641659948694, -0.22165795005720718, -0.5236954048075343, -0.276164904644695, -0.37556882339106584, 1.593530026058463, -1.8812232888205058, 2.1618875429176203, -1.709445478226443, 0.7532699752611125, 0.14293956580106934, 0.694755017679386, -0.42490360593151316, -0.7961496304574324, 1.3079425498481603, 0.72385885146319, 0.8469957214700496, 1.4603167604106146, 0.4280303884903734, -0.7140316625502526, -0.5148556254013263, -1.9540242829529284, 0.4918033879549447, -0.4388338097956193, -0.6358903294713442, 0.9278994709495694, 0.7958125900899983, 0.8836792523185284, 0.9105571913840419, -1.3352821903150427, 0.4679522906148306, 1.0200850207942356, -0.23301042823558804, 0.581284902625997, -0.1159884035245922, -0.3182263701873219, 0.16588362239730797, -1.5770592427476415, 1.0956971278831806, 0.14464606961947832, 1.865472959098687, 0.0067127958028497525, -1.2483022638122232, 0.36141957093925736, -0.06236271997228329, -1.0181444901663101, 0.2592793448150984, 1.3715249160203233, 0.29153882002704196, 0.6520980932771413, -2.2541253515127604, -0.9947594815180631, 1.7323945773794822, -0.4450244787767927, 0.6734806676708283, -1.0174987140750638, -0.10686418782596152, -0.9248003233218615, 0.2083291380600665, -2.4972409965485114, -1.4938448561133724, 0.3808467965819051, -0.5320138043447623, -0.8386449618099465, 0.9838409377426094, 0.1796937287884363, 0.5420124766428452, -1.1107921125202846, -0.3352948747235211, -1.6678842011266608, 1.3751892255479414, 0.001360019844005714, 0.03433412046808128, -0.03626125574119427, 0.4989739322823514, 0.6410480220788565, -0.40730654424373236, 0.7795798686778568, -0.3781377148573601, 0.15730586680995395, -0.50883951186029, -1.0529363075867173, 0.2687483344910474, -0.012952777654701994, 0.7039456606208848, 1.1633463233384764, 0.35284063772943997, -1.201280347121334, -0.0042187676527259115, 0.652678359133171, 1.081047099983536, 0.24822185681231015, 0.13382528848900999, 1.1438015040424592, -0.20444115618541703, 0.9445355378694598, 0.6293216047285091, 0.21598641462397322, -0.40788889471433704, 0.3037719130706313, -0.42307034127526233, -0.5679629459094795, -1.0949373948431629, -1.46860965178356, 0.10746008660256491, 0.4981740193030285, -0.2630866645979182, 0.7808873986369508, 0.2387175046518649, -0.6510103912631272, -0.6639688589939018, 0.3249268574848415, 0.2542759178579851, -0.09058575313308863, -0.7579963805500839, -0.16481698281600107, 0.32511457685161227, -1.0369333687585398, 1.6070196666457455, 0.054003634426434674, -0.22862221213036646, -1.3988726008764476, -0.7718414902521845, -0.46535987554773656, -1.1197091773697405, -1.6331677708151433, 0.8758246255975, 1.1220484010729284, -0.010507781139377453, -1.265251637434064, 0.4007133621592017, 0.02723488043865629, 0.9253453782128572, -0.6313477481352309, -2.0483108618993953, 0.7724459809322815, -0.7197307431168793, -0.4306910167786561, 1.68277684363029, -0.7076820220571018, 0.7762698484650697, -1.6312112554271694, -0.6737981498807807, 0.06331960323635896, 0.011632378298765593, -0.3184861288311488, -0.02701452090167375, 2.930298018180097, 1.2171735936823076, 1.0892033722415828, 1.0513186384867848, -0.1836237572622473, -0.689622603793967, -0.4535928534278545, -0.9829398846245481, -1.2280470556701393, 0.26977997389687663, -0.17700835567648449, 1.2301781431333807, 1.5069453280708076, -0.3334625919630868, -0.20314420369426772, -0.041773683384965864, -0.015626584784361693, 0.23966153926295036, -0.8315258707779345, -1.1388396437267045, 1.8385882725894285, -2.0129147878590725, 0.1962500200581172, -1.4442015089666196, 0.6662548746856924, -1.4681012382241285, -0.07689754112390727, 0.6480475855749869, 0.06793617479084438, -0.5926616490822242, -0.7564519143554899, 0.8464046701244125, 0.5467740723171609, -0.736343732474066, 0.40226402105325765, 1.1525833667410754, -1.0345959428000013, 1.754213040096695, -0.8788420092208179, -0.34899272316400554, -0.0854957220560934, 1.6474470496130016, -0.7469529617483502, -1.127880159206604, 2.2687388569899176, -1.5802924729014096, 2.6253118169382175, -0.290535068220549, -0.36873180275232775, -2.2048934055767897, 0.5707826901397336, -0.8630413386916059, -0.734548308233665, -0.8546693472063259, -0.23118423624033585, 1.757775669048617, -1.0385722455400586, 0.7130463380132674, -1.71869393033814, -0.3240826535869561, 1.3907217224222475, 0.6624454596291172, -0.46255292597133535, 0.6569453240491039, 0.2972701843677067, -0.013737397470066142, 0.2658011267851174, -0.12533752227317332, -1.3995222818520832, 0.5357057339604433, 0.12051633693931316, 1.7277104855647338, -0.2607345520563989, -0.5178527794434474, -1.996643852688606, -2.1908579624865614, -1.8950203255428533, -0.27436658725468044, 1.0925037633797787, 0.19182771649781458, 1.9552377785495256, -0.6833814305291817, 1.3917653756043777, -0.8598406255873982, 0.2707381829085897, 0.14510104274444655, 0.11234095969819424, 0.15685377877207776, 0.9290070498572918, 0.39885097081703375, -1.1861585797392118, -0.14069892207725362, 0.8501838768426122, 1.3187186045761312, -0.1730155927841994, -0.49669472447128993, 0.03225973283482416, 1.0346320107807885, -0.9299726207644735, -1.010599845381413, -0.7410395013105915, -1.2945776448737394, 0.42238279520540734, 0.19847731979120548, -1.2954721154926605, 0.1478629711904725, 0.23984986670781971, -0.2950117194687699, 0.9022709789718545, 0.5820463975523205, 0.984993856527619, -0.11607243516837804, -1.5571275048566133, -1.4797107049274298, -0.004176971495278139, 0.2476753828667472, 1.2919708662906917, -0.07887967090841465, 0.5345362873635165, 0.252466494467843, 0.6510332850208744, -1.7942740710565146, 0.7137762292036347, 0.21177789402249633, 2.5502888488820967, -1.9694783009535093, -0.5904871915488702, 1.4634915422051913, -0.603693340466804, -0.8594482578322122, -0.3116055338405836, -2.110419220997179, 0.5444136916241288, 1.297738967920247, 0.008231718140644023, 0.27239640750145655, -0.6991154057480785, -0.10014316508495322, -0.5131560431931014, -0.3463325084125859, 1.4743019965329511, 0.3808081961745093, -0.15437192638347827, -2.181048462049037, 1.3615103349862514, 0.9794673045813179, 0.7155769428407228, 0.5484582797534632, -0.13776265888922373, 2.1876627184021786, -0.2754255353683069, 0.6808417921355209, 1.2813269562586782, -0.17346502625678523, -1.2279721038068088, 1.770024345774683, 0.5463748831855663, -0.8220902844859089, 1.0775928316429122, -0.16424344541463354, -1.0428485651482293, -0.24373103777494542, -0.762818819736985, 0.6395887109023347, -1.645898812888001, -0.25842892675974216, 0.4384583079979299, -0.4236577356204103, 1.5940702144452559, 0.3542086979846208, -0.6129244342991342, -0.5956393703731103, -1.7690805524739386, -0.2169354505788207, 0.32974555087747265, -0.539224963938172, -0.2815675070299241, 0.03214199468823622, -0.5863496414539029, 1.7671464283957568, -1.1811599939944002, -1.0840637132415538, 1.0539632208057645, -1.7546133314298502, -0.9547294956043578, 1.2478438342895066, -0.3993783280595314, 1.3899485021083426, -0.09742032239496447, -1.0196394426940947, 1.0839235082719267, -0.29101429976319004, 1.3012728961089677, -0.3453911339667266, 0.2656164904136542, 0.028372985960279283, 0.38445224500067393, 0.42362431384781907, -1.6987550345530633, 0.4121643099917901, -1.0926744592875095, 1.4508175449172696, 0.44988232351522706, 0.4602188268970295, 0.5925780433060487, -0.3836276827369674, -0.07616500983930836, 0.33155450538846115, 0.40529148427849404, 1.4211225884180114, -0.3025666495962783, -1.4410780627320143, 0.958527411412656, -0.674847096820993, -0.7258886230496453, -0.7007475698532317, -0.48117042278898836, -1.6318837434363636, -0.09492548719513665, -1.4772629640274484, -1.4971235843973187, 1.4269163654058554, 0.9104919831852529, -0.6325578200184581, -0.025127100436726734, 0.9346110072622588, 1.0452336553487738, -0.9739401472830851, 1.13796111142338, 1.9948324639915787, 0.05333127584069555, 1.102885602726484, -0.19251309206591866, 0.44042397452808646, -0.3872263165617181, 1.3171918939278981, -0.5394563242247868, 2.0087424152193476, -0.1232067373871824, -0.15869398882809183, -0.022603772196326203, 0.11475725470012281, 0.27746325245549974, 1.48983806562862, 1.3307705919713346, -0.4029337514413016, 0.659468665947171, 0.974345811761794, 0.846057783875372, 0.1917986962992013, -0.9452313533924293, 1.6782771956180156, -0.47236157146178703, 0.8766829243818631, 0.14343037206925613, 0.20909908642413802, -1.6578163741388539, -0.7692831941291459, -0.8365128387010754, 1.000897055794537, -0.10820329819587474, 0.3678387248000091, -0.14571737910448576, 1.0321235301147185, -0.10773373549201688, 0.6021969232138237, -0.4549021978990976, 0.8573072310036777, -0.48583432174326996, 0.2800474084208337, -0.2951088972025984, 0.6225919524640704, 0.3927117156143525, -1.8922034734620445, 0.47840799147222285, 0.9119879904146665, -0.9227446969826226, -1.032091733950457, 0.434875692909876, 0.6253218252889499, 1.2632008759159332, -0.26034190438552796, -0.7955052165626592, 2.1281385277158757, 0.2687305969456394, 0.7960992974748975, -0.22957760405126976, -0.7742871033855651, 0.4237947101792343, 1.0227214423626745, -1.126032457992592, -1.1690590492118018, -0.6736790942869911, -0.41302993824041984, 0.29836073855360584, 0.7479073966541745, 1.2878947394911684, -0.1728284811038806, -0.64750931885444, -0.12108912694028598, -0.933246251994382, 0.7016520739519821, 0.8881844684855705, 0.9456924810930659, 0.6123906165912514, 1.1199936425144112, -1.593229327701817, -0.2694903255822569, 0.44305842694571906, 0.729642380586531, -1.061966572120475, 2.122350502750328, -1.1938113703816728, -0.5188096893588654, 0.2141852924611393, 0.8398287884655464, -0.8704747202570323, -0.12078976855899683, -0.05142946643776242, -0.1875490628110522, 1.411784005983052, -0.7508899728548818, -0.4432762199867836, -2.118479775030056, 1.0200087001567086, -0.5573732195107337, 2.117966553604946, 1.53608857665616, -0.6930353587374593, 0.6057468393590162, 0.5032661687546973, 0.7181117154452082, 0.49537404088478965, -1.3445221261311777, 0.9266351417408127, -0.04284664198039658, -0.5552512506543232, 1.2485024195480416, -0.3930938850200609, 0.11490915977068654, 0.1156946138046302, 0.5207598797352646, -1.206722242245763, 1.2286362162171345, 0.6909001206228669, 2.0660718584846456, 0.7349813172545204, 0.7907006749028218, -0.8502919883425171, -1.6214338453393284, 1.0951900075141625, -0.07479626992147105, 0.7899694625009749, 1.8903227496410422, -0.8036098468917681, -0.22639867223729201, 2.279694693592723, 1.7128611155953186, -0.7826714045625902, -1.0030418576167979, -1.7403394113928574, 0.38199847353214084, 1.500697545180426, -0.5775780668061958, -0.584160155179384, 0.5166879796608689, 1.9892571696387817, -1.3467543037910175, -1.750754372366437, 0.5252697537343664, -1.1624113085934942, 0.20932019238274657, -2.033429797295681, 0.2520506232194735, 0.7448449211968402, -0.38738670370028033, 0.5987006494642552, -0.5758675634692917, -0.8766249113881579, 1.1440194417137604, 0.07867404828901603, 0.16341009476471358, 1.032824985613164, -0.21195721475709592, 0.09921777470157647, -0.2010263538206561, 0.35354022449227385, -0.47488537340836573, 0.8070548675771195, -0.3353358868370434, 0.7793427640754657, 0.7855712223619498, 0.08604821410266915, 0.581158749709159, -1.105628150732361, -1.619265373362055, -1.675997246840406, 0.4410069804044143, -0.771289863872198, 2.001509627126098, 0.4177551288543598, -0.7456623903439515, -0.8809866964046581, 1.0236536096073534, 0.7851773067822622, 0.9850105548681801, 0.05492177081531686, 0.31137325453134285, 0.9317592630846722, 0.03237771433716339, -2.01653718050558, -2.492359529473755, -1.0105450197781012, 0.12928206234483466, -1.1649279611164294, 0.05500812190941443, 1.1187025666711974, 0.03750692159066278, 0.13539635040790565, -0.07292532455266959, -0.6561442271407995, -0.15092069287034304, -0.4126948770558556, 1.6730543828994484, 0.590713423597678, -0.758516016890168, 0.9859909769642469, -0.5505701580592229, -0.17948229571618193, 1.2589956654219263, 0.009439749566203848, 0.0963924619476759, -0.6200205120182092, -0.8180181792082399, 0.9062192095184362, -0.30137666838826477, -0.42586791606139235, 1.0245119255105068, -0.23871261869195268, -1.6734339979502577, -0.029677880419072464, -1.4311725956806796, 0.5132491382627776, -0.302440389208308, -0.33539002937972745, -0.3874992010165831, 1.0538934182478434, -0.9849833012385735, -1.1647216184335287, -1.093198072438701, 0.967574114892303, 1.0039371364560703, -1.2259195959940619, -0.3146868138673047, 2.0751019649432507, -0.019235958373416698, 0.1793865857590562, -0.007794650886279092, -1.0976157003898592, -0.113924277574972, 1.0816415861400122, -0.1475808608065475, -0.8995454803211306, -0.6386844013207446, 0.5554269239661626, 0.2055138054078723, 0.9771920856837805, 1.2422461513304837, -0.13533042941342258, -0.24445083174321086, 1.2797054937956716, -0.9165575655268297, -1.2708923847736784, 0.21550629219348566, -0.9202968946381563, -2.010816040408813, 1.0273779767819222, -0.5485146620732567, -0.16677243166158146, 0.5974447893425876, -0.15050363033124217, 0.1458137177482718, 0.7605788447397824, -0.1817085301543812, 0.23914917540569883, -0.3227274899401206, 1.0650539539815285, -1.4226731407368447, 0.4269257591629039, 0.23973590771915818, -0.6469610282215827, 1.3403381045388867, -0.08866660437779783, 0.1422306905220404, -0.9750998922953333, 0.3558777475630977, 0.3531021155400286, 0.7458295719374519, -0.02218221165317802, -0.285921774537747, -0.17326348443612596, -0.0972158593026529, -0.6599061293640336, 0.40826499186715726, 0.9967085863951116, -1.1122335826477812, 1.1228837170374346, 0.4150791317735346, -0.41723894574469594, 1.8133556692764248, -0.15694976578582145, 1.0912185403770975, 0.4259410577746352, 0.5492535535630274, 1.4082147529691016, 0.4455117962574171, 0.23896829844876427, 0.7371290793627872, 1.0576718957142217, -0.3440366188485694, 1.153569420420533, 1.3410258021402828, -0.19518420558752236, 0.4796550843676823, -0.5256247738353127, -0.4637983017992016, 1.4196430912411255, -1.47283900147028, -2.281256177161089, -1.5405158443737428, 0.22027761210700117, -0.34258307380922953, -0.4165970521317757, -0.6022566676917175, -0.40791554829103344, 0.58073051432462, -0.3183704405595262, -1.3851301559672689, -0.9999634906977461, 1.3111735834553861, 1.5408207665369882, -0.7003691778065395, -0.9108439517900452, 0.2464967189197391, 1.3936110415103047, 1.8659133839566395, -0.7604142916323656, -1.2858488465202111, 0.23951821247164296, -1.7659918480206722, -1.7864939110389058, -0.7581383139197276, 0.11631529067309948, 0.7162977347994675, -0.4728210597784938, -0.03816707090145523, -0.4216264774717755, 0.42805716879853933, 0.29839001771986584, -1.861467727480499, -1.3244208781319462, -0.11202929951227582, 1.0725361993376203, 1.1662127075071935, 0.2152176576799663, 0.3933355012752348, 0.32208795403963225, 1.0769860951722026, 0.5198585579531663, -0.2057724835596193, -0.046603401899104474, -1.0976896670295329, -1.388059770526241, -0.4364776898926083, -0.04167856388954533, -0.3675279122586425, -0.27309799103168336, 0.7086184291496472, 0.546271778967444, -0.32572397907684186, -0.9576133624038811, 1.1819670300874043, -1.5047633090173171, 0.6778813983855899, 0.9226869149168541, -1.666243864540422, -1.7101706060915676, 0.06863372141353855, -0.5116410658593955, 0.6725474378402949, 0.5088773400296377, 0.4151468120611392, 1.5027796671470368, 1.669624486056263, -0.1848482872866448, 1.4991441536521706, -1.4851888989254347, 0.06829945731966547, -1.4442959894327148, -1.2842592674350157, -0.5713487273395739, -1.505308248368931, 0.45105505939071217, -0.6664847329788524, -0.27339672318421265, 0.4722104326460227, -0.8985436252891137, 1.2596262561103522, -0.9447508803199443, 1.1718395534823516, 0.7226918993247263, -0.6654271743522637, -1.3688031044268756, -0.7783602858348858, 0.1346274956029324, 1.1347772882307425, -0.018754068301212054, 0.1570007389202367, -0.5353367562218847, 0.2802716213958626, -0.09621308940617854, 0.042872497792448956, -0.23958487122430186, 0.253728996729884, 0.5054406312352003, 0.10162960386080984, 0.531729592698463, 0.24613060361547592, -0.7006675707412102, -0.40584309200720353, -2.524455072191598, -0.35670376543571386, 2.3667158930576373, 0.4370793538036594, -0.5441500501966309, -0.630510247484613, 0.7694165509174948, 0.08049432833687747, -0.3564516300446701, 0.3138766178924097, 0.5318900059300548, -1.9127676634470996, -0.35678393029752337, -0.6859857208713153, 0.9775774889347121, 0.7175491057504156, 0.029006879800879064, -0.7833685344465496, 1.8368777982934255, -0.4234151008439218, 0.32812264976628974, 2.50490752644054, 1.4198987927979512, -0.20185140933418108, 0.48250309449131873, 1.6716561190949208, 0.1378114417903986, -0.5737977828257005, -0.2428225923358492, 0.2983199394596406, -3.295102017970013, 2.9599580864027675, -1.1511995194024423, 2.078367588797217, 1.2240617080442167, -0.6873679116678123, -1.4614753093165689, 0.46579709654491513, 0.09868401903665895, -0.3168986488984841, -1.8034430407514936, -1.5510494568721758, -0.08542447019358983, 1.0534700767158136, 1.1292775918873592, -1.413096692278072, 0.06869877275661909, 0.41732652776436097, -0.5393530517484764, 1.2867374483279637, 0.8338291425562082, 1.2859179566136885, -2.246289878076061, 0.03212763336591817, 0.4668280892374855, -2.349044797437633, -0.501924327920523, -0.03409061294998997, -0.11346279801989367, 0.7105713074609413, 0.5363296859303606, 1.7856937175784455, 1.3992166382815105, 1.5264957656147389, 0.309694240424287, -0.9486772911387341, -0.6998493237381969, -0.1183680572806323, 2.7929361989310415, -1.25774709073257, 1.5358831008749507, -1.1850385490246886, 0.16665584393317295, 0.6407850460280642, -0.4175987988549907, -0.5453142647535051, -1.010138600022178, -0.39183631750802134, 1.2160680605457448, -1.1046142498964322, 0.7676915560489563, 1.4677718929970622, -0.9146284407327385, -0.5710848759376392, -0.28746581621831097, 2.3151135949519213, -0.8811462431978171, 0.47715587540087095, -0.028233324427634907, 0.8323580924862568, 0.908773990995258, -1.1203021127746822, -1.1405143699987317, 0.7285490447620431, 1.201897362724208, -0.3549690062986673, 0.6293385353533341, -2.015126280777875, -0.5932814538465968, 1.106365052880675, -0.3282847316625501, 0.7433428038831538, 0.08893460024367801, -1.5106351113158718, -0.3766692043590554, 0.19133465686909368, 0.9548683477806844, -0.6232065496982602, -1.1669347127525962, -0.1365518024101071, -0.31774283371818807, -0.6406347636726154, -0.7393910423377048, 0.16085637806070918, -1.6083575105190018, -0.9835374331490736, -0.3560647204431311, 0.7717852237748213, -0.3499916205936959, 0.4366354450326631, -0.0021534665455407226, 0.8834878562569181, -0.9101011969871359, 0.379711955376758, 0.6600174087237279, -1.3066592404338464, 0.05377979863111198, -2.562336446258998, 0.9250989183185748, -0.497672281712488, -0.7395788355561596, 1.1115012388136283, 0.6395090628109898, -1.2898419064493123, -1.0391870182333354, -0.31914329221602206, -1.1110314056971315, -0.7490359984872239, -0.7865008475718845, -0.1561057507129075, -0.6194133987758751, -0.7049303949121439, 0.7022799681238582, 0.8196450238521352, 0.2044760831777552, 0.2470059603642607, 0.19890619034161072, -1.1064092402297818, 0.032055637878247834, -0.09759830025692104, -1.5238020644186283, -0.6135774484195767, -1.4217581060607116, -0.6113049641459528, -0.514316309156013, -0.2797631423857913, 1.6620656072942852, -1.5629808112328163, -1.0255725780628384, 0.3890999414677203, -1.0393049474591918, 0.7974087558105982, -0.8628298091124498, 0.33386604155756106, -0.5741223492353114, -0.05806399174292645, -0.02588003376415642, -0.23028354608295035, -0.18024715648561898, 0.2176984337099013, 1.1772260363809997, 0.8499112085134268, -0.2577264482421477, 1.485342497212812, 0.7819301017671331, 0.5275465161999127, 1.0272760327563377, -0.24223582277616476, -0.8292980813022223, 1.1382501730378878, 0.40107156571377084, -0.3748009064632565, -1.3656226110168075, 2.1732789819610794, 0.7817282896154772, 0.3296089032089634, -0.10824832631474841, -1.3948245999215316, -1.561494077981237, -0.24314748262194985, -0.3011135498602202, 1.9362318712854953, 1.8872466141802846, 0.040354909963327995, -1.7060851003048143, -1.5790535269938906, 0.08462341754381145, 0.28445920123754864, -1.5841238349192777, -0.29368965546920495, -0.9345146304929386, -0.2443707950066015, 1.099029212048459, -0.5722512792961573, -0.4910206638824119, 1.0088804812202092, -0.45037806461923785, 0.9538132847828412, 0.35479120984715273, 0.3436858210174198, 0.10659482142651774, 1.4099445548653344, -0.6971804697820568, 0.400124418041374, 0.39400781861309336, -0.35067374272707086, -1.1236532148139282, 1.658396040077977, -0.3582031670093823, 1.1606605599559745, 1.8738711882326808, -0.13728680216310052, -0.06802303221058943, -0.4454782658263149, -0.3401356894171939, 2.360794288305948, 1.8165793868888707, 0.6829756544603439, -1.0473664971291967, -0.826065021755741, 0.19243815314824472, 1.4812158484195317, -1.0310377825131039, 1.8723864552721743, -0.13131896747957636, 0.9584273762032756, -0.08411585739158164, -1.334661502873425, -1.5749997077499107, 0.5530387949837204, 1.5288040493798123, -0.22735449725584195, -0.40491648253595736, -1.945028693429308, 0.7471412140664675, -0.544321294016232, 0.7444830478196429, 0.31512036861455694, -0.5304592157560867, -0.3588305531737574, 0.6205330965441437, 0.354871940080171, -0.2940259972383157, -0.0883688575159539, 0.8568892306464178, -0.2162596352128511, 0.9444313164909719, -3.006037284694638, 1.212403166946686, -0.3770094264330466, 0.3716468329494334, -1.1793803146084683, 0.14925212214629374, 0.3276542576887342, 1.6808065461592518, -0.10882840658485586, 1.135181029594938, -0.12183032554431973, -0.21830201315060033, 0.6135536209304762, 1.4451536036265344, 0.5054645831513149, -0.35561396566023334, 0.03682202969343718, 0.3205364854101555, 1.5004267909355258, -0.652981019404987, -0.874756491797165, 0.6838088245457695, 1.7635100051866401, -0.3836911469389884, -1.7888082890478498, 0.005300071086212911, 0.3768749533230968, -0.8309255822034887, -0.812989529784002, -0.5469532381363615, 0.01817887497452911, 0.48576767369983226, -0.001057873396274965, 0.3355098948590999, 0.19310392483902428, 0.4708774616723409, 1.0181541015353788, 1.5498339042190072, -0.5906664630807663, -0.6519644277356074, -0.4319700616365359, 0.7682212426366042, 0.014368907794345923, 0.8981203244431195, -1.698021544227015, -0.5466756139684869, 0.9257118648016092, 1.1035041743708387, -0.19716029811095057, -1.8392545786107706, 0.7271097704879776, -0.5993738795632393, 0.3393343745089616, 0.972763313699474, 1.1910671132252617, -0.3335927213842233, -0.27297206380475775, -0.13020435617946405, 0.410372561451577, 0.9244693421892811, -1.5424550558211474, -0.6995936175295511, -0.026512175055268282, -1.2675345724907094, 0.10888723249174227, 0.27356563924599864, 0.38968495552953214, 0.35886286746728646, 0.05956066597231136, 1.1838092676999576, 1.4375312440008832, 0.21885335085264696, -1.0643166075872672, -0.14658018340018106, -0.6360147268789162, -0.4696520359051551, -0.22995028050165187, -1.9140380741923668, 1.639055372424453, -0.12221262538216447, 1.0299576141153426, -0.8299723447266154, -0.0034809074827985126, -1.4985611764947124, 0.8728951343516366, 0.6779945992037555, 0.26037725233565645, -0.5516566625935951, 0.17530246973569394, 0.9497527005138486, 1.109117895720217, -0.5378102723517397, 0.6207110204742985, 1.114408932875061, 0.49547503070979465, -0.49024029285676823, -1.3561245098596835, 0.8587774626018813, -0.36468381832045976, -0.12117247277088623, 0.8473639527914598, -0.6815982521413632, 0.37751098617955564, 0.1775648442201898, -0.06375855231876067, -0.6018023554312929, -0.2874299224196696, 0.15085183222074386, -1.0948693118809942, 0.022102191875694184, -2.612833436782797, -0.44387620839987646, -0.18721359613345803, -1.0398778224947909, -0.05838871001621926, 1.2261865805120011, -0.03840289693373393, 0.7209197528645405, -0.04882044355089787, -0.3582621397425847, -1.1309781989857515, 1.1931444749602937, 0.7451403838189391, 0.7881151875511551, 0.040166616430407226, 0.1618576144520718, 1.0190230582802546, -0.46252356065402084, 0.9185404987728383, -1.6543792581171972, -0.1321913747146151, -1.3839157024338453, -0.7999026399860523, -0.448759671910703, -0.9682760456256249, 0.6136216237475074, -1.3112115543308107, -0.6419947180629912, -0.10107804744120241, -0.31305666529852466, -1.5461485252133147, 0.09157689259206932, 0.5848701151863642, -0.6118190174420483, -0.5324909189013064, 1.3659170049107245, -2.0163624468519057, 0.05574362413550955, 2.685603981269749, -1.5669446161077332, -0.726448143282917, 0.05579312249129096, 0.5424811174611704, 1.803629608004206, -1.7007151687215487, -0.011125120728539203, -1.0158839820674628, 0.510187370339702, -2.212479901014669, -0.2254769885533295, -0.3397273911074057, -1.6888749759383295, 0.6892848852608902, -3.146651324340894, -0.2001633331041374, 0.8177385233323844, -1.0228163527024436, 1.0802657785987821, 1.10476487091134, -0.20458289741792243, -0.6462274163698136, 0.7110502948270497, -1.8447102120786247, -1.620145802407043, 2.208170647004589, -1.5003792339437159, 0.5769996495917423, -2.2926898170291636, 0.969025513046213, -0.36415533587970444, 0.20015036510361564, -0.1585923466685592, -0.7991302833316587, 1.3712370214459209, 1.6952113488213856, 2.067526054907139, 0.752851486963147, 1.6528371651605693, -0.22722819500012123, 0.6893639225926801, 0.3945824652855835, -0.6623102303562559, 1.6751048319914856, 2.40607630093836, 0.40709477783115466, -0.7557503982421532, -0.43467426275304744, -0.15460980834108407, -1.836408477002677, 0.16767339379964877, -0.3136950536664924, 0.1945141438497489, -0.8638148977321108, 0.605526116814913, -0.01870625316853859, -1.266356520614463, -0.49996878620434065, 0.03994909170898943, -0.7921026465749835, -0.7653694885015245, 0.20391074500218115, -0.5044031358478173, 0.5040918020564698, 0.1370703059158752, 0.1051789504698896, 0.29596297742821437, -1.7041417404532415, -0.6472654013528298, -0.3538411665354551, -0.7753985313951337, 0.7737181984721924, -0.20239284811393335, -0.6395103376045543, -1.1930707190592498, 1.261653585254636, -0.14294192388010932, -1.4771371515144773, 0.7564577532746624, -0.14671651235022268, 0.2054279622513477, 0.4641572197890687, 1.504670365572067, 1.0928433885974855, 0.44756964057173604, 0.2312554243583731, -0.5901042736506934, 0.9217218351120822, 1.6617411945182778, 0.5230230911149756, -0.01596954957594868, -0.5030987267009118, 0.2546750915667949, -1.0803852806463623, -0.9235866825064845, -0.13425791049337651, -0.36508924099694606, 1.370502479583614, 2.4638468348574456, 0.9544282238926938, -0.4686335654352878, -2.165132153874144, 1.1774460012281625, -1.2829490806872186, 0.09704680698278535, 0.37214624084054576, 0.22670289719921607, -0.844052739627991, -0.32154623406516963, -0.4196593959386586, 1.4135913983313122, 0.9697174139185505, -0.856704413636062, -0.15401930712892595, -1.127980797230706, 0.22683393829665782, -1.1583391687053706, 1.0434421174917339, -0.33043543321303903, 0.15085197983312346, -0.22767613498975744, -0.7158139675369622, 0.8216825831010793, -0.27231822686122664, 0.3988463006157723, -0.4935766174968621, 0.3401198096273618, -1.709038723797954, 0.8332303695722993, 0.12063607194295499, -0.8499427296662978, -0.44032486842136315, -0.4124556566724739, 0.1349381419877473, 1.133911873947987, -1.7721588372281818, -0.5550498766182275, -2.9106002239760738, -0.09141059601826801, 0.7338457040576682, 0.6593261999921005, -1.1426872309100546, -1.1627612314839681, -0.21297359012371042, 0.8287660666402913, 0.7482396619702263, -0.43456546486874364, 0.8315948934348271, 0.3203850196091982, -1.2861147559115027, -1.1191122803905544, 0.17254503585919245, -0.6813303138227155, -0.7525888285853221, 0.2066586063030328, 0.5108891742590883, 0.7994476098911454, -0.04696107228750733, 1.7140334043663619, -1.5128055031916483, 1.1762164053130106, -0.8278936214093982, -0.44510950431937496, 1.0845077823445526, -0.08601711288829016, 0.49194387256642985, -1.3717747598634924, -0.8512829494430391, 1.264812118222973, -0.5856640824466192, 2.3066435914194847, -0.8974582771966558, 0.9011922122964268, 0.8258518210134398, 0.45603682344325086, 0.2983017549615804, -0.6830614569654088, -0.8533809238305274, -0.5129071320991583, -0.9708083408397292, -0.9069191851921972, -0.3103177581058532, 1.7250422729003714, 0.6943738910592949, 1.3602238441284726, -0.4235198862332973, 0.4276507758723528, -0.5768766840906362, -1.356649353706955, 0.4052362583153796, 1.1411443467387028, -0.5779288951741722, 1.0687869455059562, 1.2840947573816426, 0.753970238699247, 0.10946606908468319, -0.7463791227624855, 0.8408160137397914, -0.5374916403264969, 0.168102867535821, 0.24531586896385313, 0.808513989598865, -0.4914917733079005, -0.11094393514875796, 0.9379078246455934, -0.08978588726230502, 1.0577039647547253, 0.28305369324043067, 0.02589885264983348, -0.21021281229045347, 0.41069564625646854, -1.4027266898200559, 0.8682875816993658, -1.6968614574646657, -1.6061635000667296, 1.0359115691246172, 1.1463900940075822, -0.18858754849425038, -0.8756821295886325, -0.49229232178920124, -0.3883919557916845, -0.7855533194864323, 1.9499073719701456, -0.3201049624647473, 0.7339696019367421, -1.1847790247141718, 0.362725894652905, -2.1931528718680395, -1.5029828448672349, 0.09512995834422851, -0.18810075099120935, 1.3028591458434111, -0.5123327355165102, -1.576897911752305, -0.7330743743595678, 0.45640941783313455, -0.363184029933905, 1.420785911960242, -0.7980419105146384, 0.5598910663403058, 0.11840948928911828, 0.5215432696142082, 0.3831411683507469, -1.0770992858803725, 1.5234689766357692, 0.14724152093357862, 0.9741964808391651, 0.5352126360394593, -0.3527844747329641, 0.6148323832769994, 0.825962048545456, 0.27184021794609825, 1.7182896102516254, 1.0253998327643903, 1.984668646080481, -0.31919011030139327, -0.02636279361932087, 1.1675348802728065, -1.414966132681714, -0.7438927698250729, -0.9154888339017758, -1.1706769810035533, 0.3498771713564856, 0.18789034140473476, -0.3493199811238662, -0.37861238116657475, 2.797580848723674, -1.6342326776625662, 0.09484152533837482, -0.39265353673795866, 0.3874969995222466, -1.8474216271118868, 1.1841585412089646, -0.49733910925975067, -0.23456424106716953, 1.8161257262343342, 0.6110307647219909, -0.4634699834576784, 0.8951755395566444, 1.615963613680643, 0.005293681068768919, 0.15250339123520562, 0.5297094560861275, -0.620008221887937, -1.5355808693591684, 0.6536604601341498, -1.0765163076819542, -0.9254332599667641, 0.8489006940231708, -0.5022838022449738, -0.4813916002473833, -1.2873885382315164, -0.828884077824458, -1.129710899476054, -1.3630285149768049, 1.0500262921803627, 0.746529346708121, 1.4187166144381504, 0.9370794907614288, -0.4463764659269821, -0.7135839738157992, 0.41742105295164655, 0.2750405323817366, -0.7061216251690796, -0.32963299335796564, -0.9147606259678943, -0.8182004205378476, 0.031032840307519127, -0.45669574711397065, -0.6952831490837211, 0.9953444790506621, 1.409906974113032, -1.3899357284562728, -0.9769817178820316, -1.6757683095749452, -1.3713311077758699, -0.5687231374792752, 0.4130185561056202, 0.8063276422918065, -1.9626068528304743, -0.28536334214699616, -0.036988237920732026, 0.39418654031109374, -1.1112148624851659, 0.24639081180421923, -1.5666634028163482, 0.8905665290793945, 1.72173260761658, 0.12439469772278512, 0.2568628990552835, 0.8545627596858427, 0.8257044259616557, -1.4330981899288315, -0.6894880518282704, -0.06831263535034988, 0.42762017949043757, -0.7598773885345182, 0.006286907465600932, -1.3103915897817118, -1.1946866744168825, -0.4128557473101878, 0.6622928828267743, 0.9607867057360195, -0.4323207867162306, -0.621693575243041, -0.09226380774261335, -0.5899739501024781, -2.6172691731288293, -0.35970964583199416, -1.1988930079612232, -1.3778515208968043, -0.6844068185555096, 1.0491234985847147, -0.4026800996591549, -0.7136244932989946, -0.27475954630956106, 0.7903765575050743, -0.28671244819513925, 0.7000462399278197, -0.2310247636761846, -0.9304978648938675, 1.6700124765096862, 0.341789038557582, 1.8320051861192308, 0.48553649585520603, 0.161038636121515, 0.4153761137896622, -0.6166490493896732, -0.8552864418230446, 1.3193498518855407, -0.08352060832859079, -1.5469554440611184, -1.7065799132010242, 0.9953836650378179, -0.8021177341509309, -0.6847275705959053, 0.22345313905913872, 0.002590672977280001, 1.3081704822964482, -2.5618122206101743, -1.4198514032705514, 1.1898699425349109, -1.1663971631988999, 0.03759182462710775, -1.0436191117634757, -0.5082637153239994, 0.24160781525742023, 0.2598738968568465, 1.4707561644707223, -1.3756379468481594, 1.3062370132217687, 1.188143148780199, 2.7723998987169893, -0.3077175457197141, 0.2766519188489703, 1.326137717956066, 0.5454640215352636, -1.4486871328104103, 0.3528473877688915, -0.7051534032462864, -1.1437065773735393, 1.038204465101767, -0.35756652410015227, 0.45181570153287015, 0.7076148481933016, -0.8376920699232248, 1.497243459573403, -0.618567408124703, -0.1990319249014526, 1.6684263667765011, 1.938156578223903, 0.6280853887993072, -1.2325136052242884, 0.9879098263395352, 2.0572234829163856, 3.218022989600567, 0.6327580161815328, -0.38274824038660554, -0.6282742484718362, -1.959443568749998, -0.6748993409578974, 0.853958390256035, -0.17933525998533842, -0.38076214631941346, -0.8496756643448978, 0.4689388982736632, 0.5396823674357166, 0.13526080617182926, 0.3011374585635623, -1.093264023210619, 0.7070147302497596, 0.8395389791450109, -1.3933267453732383, 1.7974781683966294, -0.19974361242002336, 0.34966278045933347, 0.5105246705669502, -0.3759119910460433, -1.2761011748197275, -0.5154464518737455, -0.0489544336835884, -0.7759576838826778, -0.3479761625181225, 0.8421516245614293, 0.16035284099644198, 0.4794991344067904, -0.37983594019471334, -0.07424505405052319, -0.2339464642392089, 1.2052625436667532, -0.3279624258224441, -0.02422755544981707, -0.22010568721815185, -0.3914721853020157, 1.112051645536948, 0.23181856635788542, -1.0911617525591077, 0.04537176144931201, -0.8551319232170297, -0.011067071034318426, -0.8522676061484745, -0.6128291514334907, -0.8614699339895647, -0.3102561435431842, -1.1607806470280784, 0.1639765898326519, 0.14645484241476986, 0.9433621985841348, -1.8175309394652597, 0.3124289611852468, -0.2880361774472563, 1.920212028598021, -0.7656320583291134, -0.4357858480443343, -0.41818366985851607, 2.2112203456853448, 1.1487611170478162, -0.913920949859643, 0.35079430364945363, -1.0230188077224642, 0.4277724970001866, -0.149414183546035, -0.29054923965613105, -0.9701073812299855, 0.1489266565082426, -0.1627226554982851, 1.4733118904821747, -1.0207372053848178, -0.17796435134939118, 0.325817563332113, 1.0095788830901251, -0.108716931504277, 1.2432036960886539, 0.8003990372626316, 0.32514513877005974, -0.5951332516143373, 0.19559211271253493, -1.1040763218344682, -0.6057695069678196, -1.0685450019874785, 0.8889659890404606, 1.0375659890317923, 0.22799954388656396, -0.3020185004609015, -0.7836199015174387, 0.4976240706326893, -0.3851498905555453, -0.8540267714046379, 0.6449023996783496, -1.380651827295634, -2.5946258631883223, 1.698228512512025, -1.0696933815324197, 0.9750006409258928, -1.805397393722461, -0.012797837347157977, 0.7373873366677136, 0.6759693261079215, -0.247785437198569, -1.3195431683082097, -0.8313470184536979, 1.701865695454735, -0.6495667361922753, -0.3591739329777213, -0.7084544396537656, 0.9158262592100433, 0.46621925927231966, -0.3094440537605187, 1.3339962760612412, 0.2807264509410926, -0.4530351729578085, -1.030300072406938, -1.9635140150141712, 2.218745710040611, 0.9587996996065925, 1.2517647752510692, 1.416968425401045, 1.9678221220559176, 2.1115619285373413, 0.5626773933207467, 1.2906088086988834, 0.300758225092189, 1.399087606253767, -0.1266998461522552, 0.2607803485341827, 0.704122295083889, -0.47109376245600343, 0.6011516620433206, 2.196730641415604, -0.5707919018016863, 0.1825266924716458, -0.10517671959574978, -0.16889524194822367, -0.5033224729636634, -0.7604113674483258, 0.17409705210049656, 1.1081007336789939, -0.7910561163623785, -0.20339981399810766, 0.9649855019795028, -0.3085500637038326, 0.22626033095980624, -0.8376865297606283, 0.8943462723331164, 0.17804680220494765, -1.6735835585475278, 0.3305034305622107, -0.31630929686951487, -0.840303183618435, -0.2811847412085953, -1.3469557138071595, -0.6031254663732455, 0.8365224871503815, 0.7965878187902232, 0.005306852457014832, 0.9439119129552648, 0.8936469594715213, -0.1947685444948609, -1.401859554766669, -0.7334139647664176, 1.0513240110743467, 0.5160052318089977, 0.3296631922538629, -0.6181070422994236, -1.1285767199584595, 0.041650810805041814, -0.583011896915632, -1.7138117349337187, 0.34525878639095103, -1.051836852255024, -0.21884755666186886, 1.1887466520166738, -0.6030857018120177, -0.9014820546287898, -0.21259990209011856, -0.43574323035871304, -0.7469338909591388, -0.5427527953723635, -0.15435649837278287, -1.0417886565076522, -0.13106986654492847, 0.11594781254822689, -0.4562534007395053, 0.21613532425422177, -0.10979128601106337, -0.5692864251114016, -0.8174303324041273, -0.48866784513763784, -0.9434683231915961, 0.543911774595872, 0.7841680056488312, -0.7351217941476297, -2.204441106800378, -1.2427642577162024, -1.1045063226079173, 0.99473283492124, -0.9495208495819941, -0.7205540256952688, 0.021766854556895966, -0.9431537497714474, 0.7892765179842011, 0.2638208521192498, -1.5387843626338262, -1.6847290208179575, -2.8565265473934844, 0.04481574490559972, -1.4852869286847339, -0.04158610645549274, 0.2177812289014101, -0.2545097783033808, 1.5242986884132124, -1.2257181379028723, 0.24805456112689067, -1.1010274029981855, 2.03739168318986, 0.15742261866651167, -1.334559854512176, 0.046869989573816453, 1.3328118362617787, -0.4315798518823305, -0.48932575918561266, 1.0265443085198287, -1.885689885835894, -1.9672531964679858, 1.8780529565160216, -0.7867146558863669, 1.0133407379068209, 0.00017791939193136425, -1.0062181152401588, -0.1651186244253437, -1.6264179448822902, 0.43662802691499464, -0.5898785158774964, -0.5742154861002995, 0.20387183468141798, 1.1450061597870362, 1.7162903932442182, -0.7733576343846675, -0.5915548708393328, -0.42114159036244375, 0.5121731421448862, -0.9722004154392807, -0.6885770288796227, 0.15410034293478317, 1.2354863290659404, 0.7836702810472632, -0.09814361109614961, -0.4485705881439494, -0.30303325546402, 1.060973769521873, 1.6887911563910898, -0.4699518963276534, 1.3675363771993874, 1.2967258229292864, -0.13327648958627852, -1.2056321259499208, 0.2401669164382363, -2.090497860769348, 0.8984005032709296, 2.073662668770905, 0.9687183987593113, -0.520847695324501, 1.6717045352155877, 1.9372551884827416, 1.255200796726739, -1.5708246527956229, 1.1342078890284282, 0.8289147784782448, 0.7151375448189278, -1.020382299391852, -0.16797968906867897, -0.8823776412368116, -0.05507887222249636, 0.18549264193348106, -0.1581646678344181, 1.0857067771112179, -0.05414573796986333, 0.7862691543732456, -0.6424484944298203, 0.6315243417828503, -0.33739964030206054, 0.22937094369788863, -0.06371001472224279, -0.5888264388642772, -1.0873200400197576, -1.2594233043805123, 0.39311188230881183, 0.4018005497368595, 0.11413077313946234, 0.38168457253138915, 0.8659145333958438, 0.4882114012633489, 0.2619786656295134, 0.4058508842390163, -0.5142087674276049, -0.4926341394678374, 2.325945208549592, -0.8722307876551122, -0.5874158702558906, -0.9913701289006289, -0.45575191349675687, -0.31434656703164515, -0.8405952349423854, -0.02549690894744389, -0.6488450884226706, 0.1545031300567055, 0.4433113648854134, 2.0836300155140997, 0.4659642614035413, -0.5601968624314922, 0.8574961577183849, 0.978896827384901, 0.2857375652925143, -0.12491886461807411, 0.6965751230598803, -0.19913171476353952, 0.7234042783915067, -0.11255738029955305, 1.4918331941235023, 0.24314758693929392, -1.1357809930647083, -1.128130194075753, 1.0614016600300396, -1.8425605680199855, 2.523945201414974, 1.2657163422098108, 0.16249931853592817, -2.913189021949629, -0.11180151165886922, 1.30849680990027, -0.6484293161016812, -0.473524906838021, 0.24473459158190802, -1.6518633371764828, -0.12573719918915435, 0.41602247361347333, 0.7596468455771097, 1.8787325383885958, 0.7533213610502849, 0.7615882516004756, 1.1304061413080617, -0.4923648174086246, -0.07768435199034694, 1.361946769427221, 1.699178008818844, -0.8069785307508417, -1.176557483128017, 0.47433332753871754, 1.155010127504099, 1.2681780455071796, 0.08361307444046524, 0.5488504110023706, -0.5266512356822415, 0.4529649044893573, -0.13816562044870168, -0.05775233535012525, -1.1366992315188191, -1.0042433458472604, 2.767812256416937, 0.028077256557326676, 1.09463933328801, 0.01921703030149869, -0.055242270925204645, -0.08529132545617121, 0.8739037137044384, 0.768740745780547, -0.0057709260027909515, 0.37085833709981336, -0.4664294715376108, 0.42205752174902894, 0.044073499403340766, -0.7493822078870025, 0.25009127559577654, 1.8728053813018615, 0.11478067092597859, -0.47231072228105686, 2.3476633611143014, 0.08111398520073174, -1.0814452032761492, -0.36855367686802015, 1.3975293074956672, -1.3839389861244977, -0.7154512220791323, 1.0898024563439794, -0.381244654219406, 1.241428814492691, 0.007142376654096733, -0.7321355149574831, 0.22784151199881178, -1.02358696106476, -0.4150144351469499, -0.6977221483223515, -0.9146152575116406, -1.3933873565177017, -0.012505130768414216, -0.02321568883089801, -0.5004984367052465, 0.2231324609353024, 0.6391057154168313, -0.13868565578146275, 1.8937666257465293, -1.146920460299589, 0.9600661649529945, 0.00999659316136028, -0.8442741189160688, 0.24320474953163296, 1.2033361502125868, 0.32178394608459143, 2.208373549885246, -0.05042145121589211, -0.3332736401306217, 1.6792758547603894, -0.3223941153685351, -1.5794905675530064, -0.4323158814542194, -0.12769691150847626, 1.3937011338396852, 0.32824989710418095, 0.6156166730985836, -1.672546801449317, -0.07186418227015354, 0.36923286044475007, -1.1052721919802309, -0.0875163159043562, 0.3908612071482655, -2.2443197722981227, -0.30015795373529114, -1.9980792719959135, -1.4876949216361417, -1.1925228616337205, -0.6381739678424364, -0.863983295375376, -0.3263130479976947, -0.6367966185011066, 0.7811662194264161, -0.5170483186923933, 0.4079164862361819, 1.0930846298505417, -0.9551008274395495, 0.1794228539430886, 0.8511435448226808, -2.544002955428453, 0.7007349138657851, -0.3393566169036324, 0.5619868595843333, 0.04374919287023174, -1.703238850378886, 0.06710537522702616, 1.2300151333282396, 2.6214195083847662, 0.1497866235395789, -0.8762634367563116, 0.6166932491702459, -0.5351134634713608, 0.22415831351022697, 0.710683540998383, 0.6123555829467792, 1.1599581920644684, 0.8949368441964449, 0.28345802956719096, 1.7383430264267654, 1.256437679747796, -0.24425625335972154, 0.557900939844579, 0.8226709688287376, 0.6497919237637017, -0.7525301090943224, -1.8100503249887754, -2.46922086071596, -1.2565612821611478, -0.3938194294933189, -0.49147147441988437, -0.2207494368433972, -0.8315155337673864, -1.2590506267407335, 0.231112255885804, 1.65106075487828, 1.198753437327529, -0.7738285368044362, -0.3217130511680687, 0.02091263014984281, -1.3908229144534072, 0.0348534389921345, -0.20472934717164853, -0.5019998633760715, 0.34865668457242666, 0.6222732544413199, -1.3500734261026348, -1.3205466810763902, -1.7005184057717064, -0.9994049645463674, -0.1923866270538156, 1.149108836377995, 0.3170958601027148, -3.119645995271271, -1.3354726294455788, -0.5464116799151978, 0.2119491298782153, 0.5268211986899677, -0.061212630734765405, 0.9038120393230595, -1.1779019090454699, -1.0851521629667114, -1.2782155320673336, -1.816010791462753, -3.692915366092956, 0.8372565445568737, 0.25926730812890636, 1.3533783570019045, 0.17244850679008458, 0.3871527088636909, -0.04194348500060642, 0.08694825443936396, 1.3121570312443482, 1.1492133853223971, 0.661396649765471, -0.3889815900170476, -1.5813049580705405, -0.9484300163169502, -1.0040496529885818, -1.368317310159126, -0.21526830726432863, -0.39666986018583666, -0.6839452158910195, -3.315325116872939, -0.21645351074124616, 0.013054996084456824, -1.4625235787473971, 1.2770056721282992, -0.818801354139801, -0.7027410297032715, 1.2613251691214693, -1.1736229124358066, 1.8872873623647806, -0.8047915076720797, -1.2320152041841954, 0.3229250964543406, 0.09365695484181846, 0.5755024611346478, 0.4046244942348213, 0.2062066948696438, 0.22297071364233423, 0.7051797658122491, 2.010441539021139, 0.17736317836123255, -1.256770894111145, -0.9721144392341846, 0.35833318156361954, -0.49188144747714724, 0.4189353332038479, -0.5361567806102406, -1.0942307852807296, -0.6973529394139917, 1.1081905996918615, -1.1754041570117217, -0.4827020012567718, -0.6079837356362178, -0.284296354129528, 0.8149175050581275, 0.4564410705062138, 0.4423771682934943, 0.32271905257874633, 1.2917221864187378, 0.3885795878297703, 0.13799711971037584, 1.9157170493645794, 1.3646787537960012, -0.26095117665138484, 0.25863882112034964, -0.4303616126659715, -0.07796638205035201, 1.3520852149743805, 0.25183230674720797, 0.4003271227939281, -0.8790062674264025, -1.0398280333049184, 1.44733933555037, 2.076133084364766, 0.9598598931850746, 1.0204579094876063, 2.1177183995666216, 1.2999233426486814, -2.3473385907042723, 0.6682730029496131, 1.855369370459347, 0.3395689001975376, 1.687195093869165, 0.9990286324716642, 1.5696640630587082, 0.8306507135179597, -0.08477876686520541, -0.474919525585187, -0.5868042217893666, 0.5829533356153811, 1.2370405629812171, 0.3590489762724443, -0.4985259435269309, 0.25199936490136954, 0.7371671935361107, -0.20603083092799407, -0.485999575366084, -0.38578603072478845, -0.6124579434020365, -1.3093204911771004, -0.8567251721193262, 0.9916939529719495, -0.7554912313341746, -0.43263649973582036, 0.21241172012929768, 0.18197792002197996, 0.05521364130650288, -0.8201894347773783, -0.08271819653104819, -0.36249127144575655, -2.6494340060267447, 0.2857703716427833, -0.5105055152354917, 0.012598418382362642, -0.6095942057610537, 0.6698318491197839, 0.315585997629557, -1.3069169032673513, -0.8166836754396434, -1.1969106495720157, 0.7250019001965428, -1.4770395160192027, 0.07162779609471297, -0.7408876476813634, -0.18276830404206154, 1.4251502488573558, -1.7394487082996792, 0.00951530793228516, -1.753304878946716, -0.08017833493730805, 1.1446131207947345, 2.253545193208126, -0.773038088598277, -0.03414230876769331, 0.49665150816590686, 0.9191111789685338, -0.05978848603231256, 1.2382455068334732, 0.18097008753255758, -0.2530867610048889, 1.8777580829600762, 0.5188681570993315, -1.0789470694756345, -0.31268645544957646, -1.3092668804575145, -0.020301263565127542, -1.2315665504629796, 1.660961033786735, 1.4667224125476641, -0.30955690084407894, -0.3551108842211653, 1.149733835998926, 1.6670668838137868, -0.16973838023911111, 0.8995312865976175, 0.32011455798163285, 1.1473031639920082, -0.07554011581517121, -0.6654823098133964, 0.4315769462835547, 1.610229592364263, -0.2855402576346299, 0.7468285243570877, 0.31887774887663883, -0.4469659511125939, 1.7771699906061997, 1.0437580677766094, 0.8954061371446317, -0.6564576935810218, -0.9465210541940621, -1.1004366314775422, 1.6095864222287366, -0.09175470596151453, 0.5977805654743775, 1.0538771259212298, -1.3293283574816146, 0.8923065273879237, 0.4803537187039372, 0.9923750962400736, 0.35660504799634923, 0.08395959136344472, 0.4796899558625404, 2.7097681533094176, 0.3851109856564786, 0.8143879958254354, -0.30625847741989065, -1.5161165658318527, -1.4077044081920502, -0.7022142993650855, -1.27977541858514, 2.8567925050282956, 0.1291483987675368, -0.0441913880256536, -0.07050094512226596, -0.37431783696330767, 1.2328866127392701, 0.9955324586709157, -0.829368762106104, -0.5118518254386758, 0.11437998365748922, -1.6404724018533183, -1.9873481040163317, -0.7835274122596516, 1.6803707925277749, -0.636130780718772, 1.5521831862212612, -1.2149907686033727, -0.3370247735723272, 0.8337709527573809, -1.4188804841663574, -0.7997924466667126, 0.8586753479468927, 0.736445654777789, 0.22394720370344295, 1.5868792418665052, 0.5650339143766572, 1.0455959834004533, 0.21948119460294335, -1.2693084165650401, -0.7090468538064243, 0.818126951209295, 0.20560477814511943, -0.8207935702002337, -1.8427322887030468, 0.7138737583999812, -0.9321564369581137, -0.2472371851182249, 1.2563088412579615, -0.295325668926048, -0.1656798468298435, -0.1704275697158914, -0.722875494634832, -1.9557545798315046, -2.1242862046244197, 0.3828159763825678, 0.7992295264467071, 0.2639853646948679, -0.35721282839677493, -0.20737488891906877, -0.9971074815692542, 0.4965335967224975, 1.1738270452261295, -0.853391620903996, 0.03538301311303626, 1.8926068904311173, 0.47014468810669435, 0.22917899131537262, 0.13636357355052856, -1.5286745251850753, 0.4286967694601131, 1.2154039520706377, 1.1726994368540846, -0.3912756648662489, 0.7172140397673371, -0.016640721258664094, -0.2324130194441508, -0.26768702655437043, 1.650649867061355, -0.8645383656811876, 1.4305140658981714, -0.33922279665481314, 1.9921252263327773, 0.5717116297427037, -0.7462836420461796, 1.572126832344551, 1.1482360377292957, -0.589284885139266, 0.5669264587715914, 1.2127064626571218, 1.1990560662490575, -0.9083860101876767, 0.17085003753647546, 0.3000072111522947, -0.1996618292521616, -1.2210875956619571, -0.7333196719111349, -0.8936670536289882, -0.8104662674339504, -1.628758465825292, 0.7039593516780207, -0.4613246899429304, -0.7499446989848663, -0.09133308282040896, 0.127178636796504, -1.1956084251537944, -0.4393391013141879, -0.6085204369172953, 1.4332955174590882, -0.4806999349081135, 2.0919341772853706, -2.7379429115707197, -0.5019755101769856, 1.1220126925281422, 0.6868808003254818, 0.6265512923004908, -0.2209890489846423, 0.19078261974058947, -0.9925428337033645, -0.1317799495543243, -0.7081553733676273, 0.23634122028465965, 0.039429481418736034, 0.042882283861340735, -0.7139407771594556, 0.41255098605298296, 0.3106777619389967, 0.6909486151080414, -0.951118596397508, 0.9340219066851844, 0.7112186952582759, -0.07769828920067978, 0.1656052786614646, 0.3364623289714596, -0.23815278442430368, -0.5215572001071296, 0.8321186268712734, 1.290214870946475, 0.0950838668343401, 1.0585374347601046, -2.192021952716579, 0.05611071073778189, 0.8129519806338719, -2.058761647861046, -1.3465907836336357, 1.1316487538524245, -1.4655886708403854, 0.8735448499608268, 1.0262206037786172, -0.6453627188218974, 0.10883945195460239, 0.8258949925075294, -1.8993973533480775, 0.18019018026694053, 0.3445117564786714, -0.1931062285555929, -0.017598643841327175, -0.5815275855937299, 0.2647222780024499, 2.3986990923865963, 0.529689849046929, 1.013677807234553, 1.7944423024477563, 1.2496170561268707, 0.9858672389607203, 1.245682755839362, -0.7932458788592934, -0.6409087549728993, -0.007450177275879678, -2.2692587424130024, 0.8403461415243442, 2.107164493555598, -1.0152558502245312, 0.3733351278322608, 1.0770057999137288, -0.04984403239443417, -0.14884599164590245, -0.3501755871139306, 0.946457690960828, 2.8153656654595465, -0.4548447768604472, 0.5133168770831192, 0.037170619338067125, -2.1642489057224354, 0.8250456947730845, -0.6990471281431718, 0.48386744308228274, -0.14103767293685845, -0.7798911824825899, -0.6585951630372114, -1.5061460811899259, -0.5450079323650872, 1.710533362344323, 0.21612076521800344, 1.402156153383158, -0.16159871996555053, -1.241497154898998, 0.11346029445202628, 0.1508749020672463, -1.289219780668927, 0.09294362971465538, -0.37376225190918877, -1.0327567328254863, -0.051542343859175874, 0.6033833834895015, -0.6006862573919867, -0.289335101767342, 0.4187133728014659, -0.24334698694343868, -1.6390132489604488, -1.2949529719023118, 2.284636537167094, -0.07240045388799206, 0.639992924144202, -0.2680854623840238, -0.36421644598381187, -0.15290141239016392, -1.3972372907143753, -0.54170697449796, 0.8134268108913567, 1.0989925140520247, 0.4079192261102665, 0.10988726746563093, -0.8305999416372445, 1.0647820884995418, 1.9576406663383423, -0.11728020173301022, -0.24188552653457177, 1.2194524793125359, 0.9463626772935134, -0.3835657723774656, 1.410607177147978, 0.40384919269837427, -0.9450535957213736, -0.31679177725297475, -0.17631931927540986, 0.5602225807610826, 0.01222200076780507, -1.3470886076171897, -1.5494386959362594, 0.6248237181268927, 0.1812787608116184, 1.4895582289628897, 1.6353394578741869, -0.17679870964854535, -0.3628912347136867, 0.4145823162938073, 0.3829942444919715, 0.37131925387213205, -0.5300013916155102, 0.43539002267116944, 1.2227907897969263, -0.2667177745048859, -0.8973709219256006, 0.554525137666933, 0.7489694059956586, -0.27063567110610476, 3.416832287639718, -0.6877439924397984, -0.3288639244374878, -0.33789480253713133, -0.2102226041006557, -1.0323789366078964, -0.23411362172169267, -1.1441250242308103, 0.9787006472186519, -0.49431243174854045, -2.738018318808598, -1.3299424949024292, -0.5147767436466467, 1.7524370892237926, -1.6207510902224427, 0.8341840975084613, -0.2947939032164067, -0.5334962800195677, 0.7987032173137227, 0.5577514666632689, 0.5008066990723662, 0.4353141762297394, 0.3879568037271739, 1.3532824889696582, 0.5762686182323623, 0.5860146911523494, -1.9766626485444252, -0.16690065746960164, 0.28779268475319214, -0.33149339543481826, -0.9745992439720108, 0.19650747303009344, 0.6141443364720107, 0.44107200607902214, 0.10447501368854129, -1.7491530080747657, 0.5276888090930743, -1.9309315287672555, 1.2674838025155073, -1.5489536662549954, -0.7648022783745537, 0.4751294476638438, 0.8162615110253829, -0.559523595756151, 0.3636286469215261, -1.438372847938455, 1.0488601950483556, -0.9266915374758817, 0.2605085900802295, 2.136456033932555, 0.1572419824877318, 0.0005490986426931236, -0.9025138953028139, -0.06497705484741108, 1.1111840896703962, -3.776817286375631, 1.27258059827893, -0.44710196244692785, -0.7948276785721813, -0.3033813811983129, -0.9436585908491214, 0.42971018015775536, -1.1325699379373038, -0.835582474824359, -0.8814873918586776, -0.5592626197280276, -0.09268040022400473, 0.38766197411205194, -1.3988034877636697, 1.8370101452487462, 0.16346333837160354, 0.407448205555305, 0.06246966543387062, 0.37577018464906137, -0.21672307661278248, -0.5929417378246082, 0.021783065903784343, -1.0640012927261837, -1.137568691509761, -0.3217996123209327, 0.2857764507699093, -0.3692684773535177, 0.3464238718623467, 2.2234661132404248, -0.7873154809832321, 1.021886564560402, 0.2887028819871863, 0.01268146649053514, 1.5373825235597207, -1.094459661177341, -0.17805943509654557, 0.652683878403593, 2.081493238201718, -0.4919947403156714, 0.2714193361234396, 0.5427845648578093, 0.8324638943052031, -0.7463164675620637, -0.4210495408238061, 0.1370806918717036, 0.8736126707299088, 0.5940814503807673, -0.3453042806194584, -1.9005190915275045, -1.97347065335221, -0.9575725726568423, 1.2672055728221112, -1.1524756246071737, -0.3447590949727183, -1.2575845437285667, -0.19049323373467983, 0.008328154525085936, -1.1152322472038732, 0.8761120793368676, -1.434138499371414, -1.9243510218084245, 0.2803656062234644, 1.9079285743999943, -0.7644150742147005, -1.0505347086909593, 0.93077005199575, -0.14443202904945002, -0.998769192292076, 0.48445869853435614, -0.11574389455709985, 0.7816333356899812, -1.5692436284009523, 0.6614957359460126, -1.4745625309372081, -0.23452591937647374, 0.7854026554892433, 0.20838130475202468, -0.8616748419942933, 0.9878091811077573, 0.846803123232909, 0.0205141247870932, -0.2287627975779642, 0.0955649374446763, 0.5575600354239613, 0.06578079792668302, 1.9288021553099657, 1.124836971534214, 0.768897992743162, -0.12748934600269846, 2.391257513502467, 2.006814457003392, -0.2940169090568891, -1.7414233580788336, -1.2214967282705462, -1.434498690578616, -0.6015919368624393, -0.014642297056539454, 0.9802202633537554, -0.3182276837781222, 0.056964958947256616, -0.12386980784544126, 0.266328483724977, -0.4733276050012505, -1.3004922756672557, 0.2491348324128973, 0.011978827022900288, -0.10729483680157094, -0.16794328419883048, -0.6157067905129098, 0.009898849115422485, -0.39318274130141534, -0.17695216795133192, -0.6831461451911987, 0.3924121319232696, -1.1078615973014245, -0.5017385159255702, -0.8126577532685952, -1.0705905496892412, -0.565924682240727, 0.05240309639531079, 0.09017487708514065, 0.9364293394339404, 1.2498769438150832, -0.7128241338417882, -0.9150047859906888, 1.6762528584563667, 0.09458968079577722, -0.19579483416026128, 2.6834742698481073, 0.1959378751018318, -0.4256381855237687, 0.3667739809678315, 1.0938737536549763, -0.005942904816406596, 0.05631618110678834, -0.9359192154918002, -1.1412185424667023, 0.9061389197653081, 1.372054692513869, 0.5243040876181434, -2.9664647612930555, -0.5105975490372147, 0.16647357652172234, -1.2753829772787613, 0.7001115831255067, -0.8340770850173719, -0.6890153108560761, -3.0343079251448497, 0.5563834179226875, 1.9628358853587375, -0.13086307220494817, 0.2727528729470168, -0.12435839585554227, -0.6298786884921851, 0.3094583648573128, -0.292170882327814, 1.022718139935933, -0.5001717096087307, -1.1105828805880096, -1.2682388019702806, -0.11495307838185766, 0.15582781140157562, 2.018593053689294, 0.9347920761914021, -1.6009953429445178, 0.18076727185275593, -0.25928249860123304, -1.186327790443474, -0.0700514149764877, -1.3521892003433178, -0.9931751171508554, 0.7448485245145667, 0.4693198614831728, 1.3012814659994398, -1.9503850662697753, 1.017267795289082, 1.4304812431840823, 1.0991394008875852, -0.26399223503818525, -1.2229722369976874, 1.4784444771358896, 0.5761376104348966, 0.15233044887707098, -0.0860632951561779, 0.3535704758973534, 0.7938587957348633, 0.21947555234064536, 0.9828489297278087, 0.308357519585605, 2.035787680276575, 0.8109410666618121, -2.1345965955134667, 0.7152931538853967, -1.0146733185444514, 0.6184862963741131, -0.648798787724971, -0.16407088358810992, 0.719487886248254, 0.8087430578565628, -0.8291778935063319, 0.07597664363815368, -0.5008266821300854, 0.006723896793736643, 1.2997557512488669, -0.0031917483566596787, -0.7021552369055961, 0.750700373794187, 1.7575846837144413, 0.12486579254878599, -0.6935961585714291, 0.11474369275678008, 0.6195103528176331, -1.257186437472582, -0.7257726708299624, -0.18997553167774728, -0.3141075538611249, -0.20802864584309128, -0.26871161385834186, -0.41786195234883666, -1.198322705918091, 1.2226558552121947, 0.8473797131398685, -0.05970946447265344, 1.1976714287404078, 0.33673199007228616, 1.2235044366431012, 0.9344036220246792, -0.6467144794083687, -0.1060301230402806, -0.16975422532707082, -1.0200317901932403, 0.5081539692736545, 0.47000701423625274, -0.18774825311914375, -0.6294439711256112, 0.5293696320098646, -0.4684967718879571, 1.286332367269106, -0.8420420641573906, 0.970696384227347, -0.35440488078839866, -1.8643325767186336, 0.4514347183891348, 0.7486518859485842, 3.439851500254737, 1.2119949724740486, -0.7184100810641596, -1.0626031101336326, -1.1924363858463884, -0.18819824937523624, -1.526287509596417, -1.1044584941057785, -1.4765364260383649, 2.0257113784040532, 0.9239451322327357, -0.7976722138655739, 0.3569474476106718, 0.5477576090172236, -1.0009524551850497, 2.5312504562187517, 0.42780421854821526, 0.4514539496608898, -0.030959231333474748, -1.3318566716231615, -0.1513489207580844, 0.6708514485981023, 0.7952684156102907, -0.6963691442595829, 0.4820202566239856, -1.1644579869729634, -0.17929402518639434, 0.361652751481679, -1.1749773732435465, -1.4339979777814604, -1.2137509104645223, 0.4816281105422327, 1.0013655675429685, -0.043341923611576336, 0.005885103349792462, -1.1064415216717327, -0.8790755468687979, -1.459734907607114, 0.21751472987427461, 0.4370769038007802, -0.3739144726890134, 1.0741566592346592, -0.8047721146910494, -0.03860223218205406, -0.28268409024937563, 0.7221943160609899, 0.4012845678886611, 1.5172860470676053, -1.7685015906328478, 0.8202024156588468, 0.2925961460045953, 0.09946499865350711, 1.6869173758996987, -0.7543467122734181, 0.21708071434322693, 0.5310443010479343, 1.488131445251009, 1.963609689044989, 0.8456957466301708, -0.4226475634949487, -0.6432071541733061, 1.2107531461238836, 1.255865718432144, -2.4372958637760935, 0.8289032712301773, -0.42951484083562635, 0.18057468796879705, -1.791940733580636, 0.8047038443568836, -0.8320717148112566, -1.0087439049595648, 0.21893779336045835, 2.409844904347255, 1.5120325817149594, 0.5991439084675594, 3.0191810560943435, 0.6510455053486414, -1.3302278723300371, -1.4976241682123221, 1.0035195712342475, -0.3239878039161188, -0.009334070874705114, 1.4050462606969245, 0.15061435751029503, 1.1051469188134824, 0.4985276816071266, 1.7902425266302708, -1.5561731340583336, 0.2123191735312808, -0.5266613948973925, -0.8517004925699047, -1.5955785958257882, -1.3027379799308227, 0.3896336310747602, -0.032943144513553575, -1.357778283225744, -1.1966744581798496, 0.9266213340936003, 0.904494599169234, 0.8686176958371893, 0.3026126269378779, -1.3975872620425374, 1.6775200773706294, 0.6402694897817551, -0.3643807354046086, 0.4079145062141631, 0.06919803439526098, -0.26277074369868614, 1.4189568313590442, -0.05664802326510115, 0.8897486257393188, 0.18772867137964272, 0.8514132781306788, 0.743666939660642, 0.12608952507187693, 0.8545662007557964, 1.9589625524461058, -0.27905467160113273, 0.7921651634551357, 0.2302636318828535, -0.8654360651170675, 0.3430127644711562, -0.21050817201410768, 0.5449130035935806, -0.8660629234915205, -2.1769470162138935, -2.3602539228579356, -1.2187551147904447, 0.8005607577258752, -0.023235579393585514, -0.467788938354669, 0.04690768316772083, -0.24841518514135316, -0.008724462898396236, 1.2290762890650342, -1.1804280380890848, 0.6098362494313991, -0.679207340275229, -0.5419767226881544, 1.6736575993969356, -0.25536622442596546, -1.0927554079116857, 0.06780222928838558, -0.9249752736921061, 1.510241367224499, 0.11513225896847257, 0.8999929496381567, -0.18091482610723802, 1.978836522432789, 0.08508625093249705, -0.4797248537510383, -0.23115555557550346, -0.14003949496992146, -2.1362203823718686, 0.6971164411592087, -0.6624591498133822, 0.27283566481883964, 1.3374474951228086, -0.37106509828013945, -0.44353562276164715, -0.9160450203219229, -0.464230049746341, -0.6713930347522411, -0.6469277242685996, 0.8513142916087015, 1.7875988137904424, 1.11949595579475, -1.9229572023265458, 0.07236555189884794, -1.146216343810153, -0.8019730630421147, 0.49390922978190527, 0.5216991400649136, -0.09113855188803383, 0.9840031821411686, 1.49416799370402, -1.6511227324801938, -0.3261348923437492, 0.6616831091244777, -0.06363830749064421, 1.2945532273629865, -0.15428347527829608, -0.24284949697313385, 1.3279938053603675, -0.44772001266989264, -0.4735902312956159, -0.3887629484897901, -0.08444346834390046, 0.37072560711103275, 0.39399151149492695, -1.0712448778443338, -0.45319261691000257, 0.9208419829869133, 1.0435181172045727, -0.4624622150557288, -0.8570296467842382, -0.8245496632505752, -0.3627209023835253, -0.14246370006098305, -1.328331190718745, -0.6393622406557894, 0.22609600987195314, 0.7036140687573552, 0.38183685401711165, 1.5414291184093631, 0.906522613023109, 1.7943337843199187, 1.253492960627776, 1.339693781314367, -0.43019888822256497, 0.6390139968405832, -0.049972186072589395, 0.2990018865286382, 1.6561269094360245, -0.4278622695127776, -0.3946067709065338, -1.2255287192567146, -0.8634269118934466, -0.8117980515469173, 0.305239138138496, -0.7819872960095321, 0.0996105270483193, 0.7695500308163643, 0.8011049017187275, -0.12832888308388563, 1.247629770129481, 0.04935753461789743, 0.5791593484120091, 1.4614677255522104, -1.8479971813556009, 0.024777968662820147, 0.5493488599239189, 0.8190127659618781, -0.37083764028071275, -1.18766196156111, 0.4753459916554224, -0.4208587323568347, 1.387369277113372, -0.3004193757381033, -0.22525879404005192, 1.4459549259743627, 0.38500048066070874, 0.1446511317877969, -1.3382459069687977, 0.800134277801901, 0.3398991869881441, 0.508254768170048, 0.19546424562071898, -1.8590069632431325, 1.5334380467681035, -2.3240741242376397, -0.8811237320813905, 0.8507341070834016, 0.9848979581668617, 0.5980051580246241, 1.1635909928889008, -0.2269208872416002, 0.08514292590431342, -0.4386401020967214, 0.652758382811929, 0.3114055633822225, 0.2809939081099737, 0.9759389595774607, -0.8747068501315548, 0.029746282516330068, 1.6034075195967443, 1.0604356796529169, -0.2508145924001158, 0.02466401694535895, -0.5477199247367924, -0.1293325322381908, 0.7986518821935705, 0.6849402830245276, -0.950801382067319, 0.21308336087388993, -0.5585499002036112, -0.6503910073965294, 0.60189401065408, -0.7232263379270716, -0.17236928150999437, 0.07778233019573914, 0.30324424436267056, 1.659759642980059, 0.36278538156324835, -0.2080260986647193, 0.11183646228491749, -0.8814226007571128, 0.6078622543585244, 2.2104933886636124, -1.045708722520493, 0.5504369252526224, -0.14899958669446003, 0.6101656775688308, -1.0980696157200092, 0.26534297042081584, 0.37308003364100434, 1.1590413361248801, -0.08590854585979558, 0.5573551300615098, 1.1267253975954148, 0.27544092608703086, -0.06519232626167186, 1.0120580477746484, 1.3545979044280676, 2.541311620479797, -1.3603148606122561, -0.0793089741659549, 2.3295485815292456, 0.9665892146780685, -0.25068745967577644, -2.2010760363934554, 0.5486999494902052, -0.08583448872528404, -0.6123367758077463, 0.649761014721107, 0.6938194253876326, 0.029333690468769002, -0.97566128411101, -1.0564048439526994, 0.6175865326803492, 1.3021953102599673, -0.6960159038631518, 0.4776711504233898, -1.4256437882077515, 0.2599873207916705, -1.4954387221721384, 2.2474304060810066, -0.40846845755462585, 1.7678851016251191, 0.5309388260482161, 0.8615715041777015, -2.6325694590797695, -1.705751276457153, 1.6262510511138424, -0.23835439078826828, -0.6782435621763953, -0.8141625617846109, 0.21995294720419373, 0.4445937706115554, 1.1845227138519216, -1.5163740235017098, -1.013649018082391, 0.224230500215687, 0.5627560904665914, 0.7443091584558574, -0.03894225809963789, 1.5448135035799615, -0.8495653196808007, 1.1287074514737734, 0.8890283924499146, 1.490497622354185, 0.5227145745859036, -0.937623258850452, -0.1493399850894965, -0.022314728617833755, -0.07096256906805418, -0.6983398127255481, -0.24975633111049686, 1.7954930493786099, -0.23220588697809527, -0.024153210035370735, 1.5824846573046882, 0.9680671653518811, -1.188342655510062, -2.0858535113005616, -0.7318047732760613, 0.27731799997751355, 1.2645171248332945, -0.1508859683170717, -1.3639489488560288, 0.06367820753150985, 0.23776496296174823, -1.2151110403355778, 0.14512066357220968, 0.2945064857369822, -1.4296680065725542, 1.2277069154031495, 0.010213106560923097, 0.6130986986622938, 0.9843395259692422, 0.004236621902682475, -1.1964945027429674, 1.0015148584436766, 0.08240851842107312, -0.5943652668730253, 0.7899573176918867, 0.5140924814878565, 0.926080185272814, 0.9446059230329479, 0.35013747533913114, 1.6370969845436114, 0.5383246077488929, 0.4755937325091395, 0.08806702215566425, -1.0251931277876158, 0.20404942018185032, 1.1107512609131378, -0.16456570641802934, 0.10849738026909359, 0.573718830736166, 0.5054997091915894, -0.41107856674969584, -1.401668104131278, -1.4806087619040618, 0.07034211999156066, 0.9024522442953702, -1.1989458737377514, 0.014662459561222254, -0.8902489704537728, 1.4598616464976402, -0.1155243598963234, 1.1529197476291344, 0.7229580069823155, -0.6555577845950263, 0.6030479387775592, -0.4339356209201833, 0.06693849421253527, 1.2630680861478027, 0.7504702542854251, 0.18423428347275314, 0.21778951651913772, 1.0408361752230069, 0.8091440134527719, -1.0028325142231755, -0.451254394290237, -0.9494698617009785, -0.5674520818223923, -0.9171306274664389, 0.25205472382147887, 1.1087677415533652, 1.3183617060106292, -1.0520311181125723, -0.6622990360329118, 0.8718383858157444, -0.797064692654259, 0.29980127866907547, -1.155363867826444, 0.7079647055828273, -0.6706659273758775, -0.414972142171588, 0.5615409141796855, -1.4976808551597283, -0.636458124419391, -1.4868599484824214, 1.257910194416278, -1.053343625980387, -1.0831049266789696, 1.591815031848466, -0.7883635964957606, 0.8613907347873234, 0.9675103400459303, -0.16447255820261944, 0.8433915482580127, -0.4300230005171194, 0.7099266375229408, -0.12885886460688079, 0.12643184879831873, 1.0253958558599405, 0.6911939175340387, 0.9331416548467726, 0.12551436161966967, -0.526370976398182, -1.1251852233488946, 1.7561489715718164, 0.747346843544785, 0.750102416195893, -0.2555153074406647, 1.8875095439731127, 1.4129448056037386, 1.2083753648441495, 1.6319453398017707, 0.1928487958607208, -1.3229950230897738, -0.15660955926231385, -0.24977342758279142, 1.5365309253691466, 0.9400804875737725, 1.2713515379687177, 0.45236629973627945, -0.3437172378320212, -0.9264542144155722, 0.8327621074475389, -0.2752460436990361, -0.9576238828669978, -1.1632604878592319, 0.8846831219058702, -0.5775558677686683, -0.14652248322850706, -1.1007686357984672, 0.27668184039929805, 0.7899720015715129, -0.004403184882330436, -1.777124214222089, 1.0069534853932487, -0.8072001185526407, 0.7867356596168493, -1.5249283974170469, 0.8247709955548297, 0.00567437751704238, -0.5459459085865208, 0.7312910411370321, -0.7235335698059623, 0.7379136509776095, 0.41205818313303333, 1.8413093397944649, 1.2049475725985743, 1.8547636073495273, -2.7403945748623193, 0.8693499777977632, 0.7815320756282401, -1.1483854970390766, 0.7814060537564586, 1.273272671939311, -0.4698517278148781, -0.1734240853154941, 0.6700069368252978, -1.3522046274827224, 1.1950010157155724, 0.7972489991694769, 0.3509406284960419, -1.5856409746329507, -0.3476550680955005, -0.44623377503667633, -0.598251078316341, 0.17469846088493893, -0.9032139224225529, 0.6855797685939858, 0.22918305966907448, 0.6369081542443223, -0.6016946012319021, -0.528110908584856, 0.46058480863025064, -1.466913563400944, -0.8414894712884726, -2.0223534523043973, 0.08844808038947227, 0.027118648515423692, 0.9255588736739797, 0.11994474050000142, -0.8189989108595498, -1.6324248667460317, -0.7289159540833675, -0.22516246007928065, -1.5384353684376557, -0.7686171319680827, 0.12266233137367634, 0.8484808559938214, 1.2127314779482827, 0.5102684896944125, -1.286070068780876, -0.1740717775654313, -0.3073349285469212, 0.06320004324769704, -2.159797512041772, 0.4487677371815488, 2.0738966578907494, 1.258519752547094, 0.009751115914846122, -0.8216098489508644, -0.23588752230174015, 0.13222583661588166, -0.005693364996140906, 0.7678008620760206, 0.6002126917633337, 1.5859182900588917, 0.3472501496118697, -0.4522818040351257, -0.6261870288280781, -0.47141687913532815, -0.4794569069426323, -0.7596661052972189, 2.184791919129315, -0.8858749937230853, -1.197549475756497, 0.9765979866395971, 1.4527411278097513, 1.5134094925725432, -1.3231540227489278, -0.1845927482747341, -0.5437201523082154, -1.4215213794028183, -0.20833128908222898, -0.3636661294445154, 0.009976657189020051, 0.6907736642736653, 0.7769598305826941, 1.316313099448077, -2.0294145871641143, 0.6095961944232082, 0.4939600974715206, -1.0552440915416452, 0.754227156187468, -0.7668724648555539, 0.4145482354352458, 0.03675114528675649, 1.1795886506458348, -1.1898927026817128, 0.38700263841476973, -0.24486184942772682, 1.7862070136804689, -0.009025229148035892, -0.9967336653666017, -0.5299599861056681, -0.40394580240347283, 1.779369963353484, -0.280705814124676, 1.2931707147321418, 1.1838287405982975, -0.15221904305179745, -1.155257337283049, 0.761788532027422, 0.6078163668008096, -1.038394757519876, 0.11947370228042306, -0.4497900090434216, -0.17196112440091976, 0.8201520854679427, 1.8662041684141937, -0.8739038724155972, 0.2974648983795417, 0.7396614496037339, 0.561016466253033, -1.2210091819226574, -0.6902857840760672, -2.3821494860201327, 1.0646764536067748, 0.3384154912270826, 2.434608545117788, 2.1087067419146814, 0.9781894411688441, -0.905252780696986, 1.9752451263727933, -0.4263074649898116, -0.1828130630758379, -0.8328642945666853, 1.2967317705732677, 0.11217504613667037, -0.9886010626036771, -0.6114782476740337, 0.5821799315480095, 1.6922730162512083, 0.21753774293565586, -0.0800789041441017, 0.049694504225551606, 0.492217230261311, -0.3332788537747187, -0.44115337078874456, -0.39736782683954747, 0.12204732029769597, 0.050968986048076426, -0.6633446144190148, 0.30935243253156375, 1.4299798900373857, -0.28345814676723735, -1.2531444177148956, -0.7553759184721841, -1.305054551577509, -0.8283228417928344, -1.2982246582958137, 1.422231260687782, -1.6253663335588464, -0.924577952511675, -0.22034906576976013, 0.5534832698523908, -2.275251874986614, -0.7441879328336615, 0.8190112710359231, -1.0256095542565227, 0.2714552453512443, 1.6341230209991475, 1.213915187646053, -0.05111234244193258, -0.4950274261240683, -0.8089897413205743, -1.5118846515019129, -1.326056870512339, 1.6677256258909756, -0.1469399652321424, 0.6215363446332267, 1.7058194107300122, 0.09833312944537877, -1.4514688185367732, 1.4240857600215646, -0.48938319456859647, -1.1729367583279415, -1.9462108049419127, 1.8511071308079416, -1.286170750807933, -0.8658963571535532, 1.3586134490050141, 1.456779044821539, 0.8817371831980354, -1.3450007302453884, 0.22636064397411595, 0.1188782600916283, 1.2034636692012555, 0.8024273614557113, 0.12582430657539317, 1.0189481126845616, 0.5885511633444996, -1.0301394254250569, -1.1839459877446892, -1.1136695139782067, 0.8475767309914407, -0.7711840396721539, -1.1994601251186359, 0.20151585498160865, 0.2635273764573148, 0.7152097293005756, -1.3982837761398401, 1.0039707728420055, 0.3631974053180865, -1.8812102611557566, 1.262588003376759, 0.4343766716711583, 1.8720897032285013, 0.14445761467436008, -0.4564149289187833, 0.02792303108527734, -2.4662686805221297, -1.010911826425615, 0.10164375588858279, -0.6357224175007044, -0.982967361833287, -1.077398018747121, -0.4259744307377979, -1.0983905747856542, 1.3328240551702117, 1.0221536934564133, 0.2163913579751135, -1.0511524710307314, 0.14858982009544155, 0.7578536398055542, 0.84382119656423, 0.10991797084953663, -0.24931251857925762, 0.4516896446433508, -0.06544256868067769, 0.484066484883799, -0.4891129345986713, 0.025286643112666474, -1.2323056432999007, -0.24440643749295374, 0.0748143876668267, 0.10736214753406101, 1.9907503149098407, 1.4913170025029145, 0.12488004008972584, -1.5658024581355932, 0.14636865495957377, -0.21265230214423045, -0.35089518050422697, 0.07759725952606311, -0.17132052557113037, -0.5394050513872447, 1.000891801659646, -1.0255463035222725, -0.6647178361510537, 1.0384188709258833, -0.1416763347496951, -1.4290639733158574, -0.41825070835495026, -2.531241472959515, 0.4291910342487894, -0.12913667107628515, 1.0158480894675939, -1.7793000357355218, 0.6527140557366656, 0.18244001970499055, -0.22714284093501838, -0.3069496471914937, -0.03584326354562117, 0.15517231714195934, 0.03254106448636108, -2.1650957945245244, -2.1325167446234703, 0.2004585522994578, 0.2293058371847188, -0.7024373834404458, -0.5336524389617735, 1.1190182831635018, -0.6494635277165817, 1.313547580882957, 0.7855383403596203, -0.6620367525191421, -0.9836101736615006, -0.4799881283441007, 0.5853825423673402, -0.5768599137912664, 0.2819597179201451, -1.3535148131437118, 1.6019704746525916, -1.3185365893812104, 1.2122303454325476, 0.09740896384224758, -1.4999077025961653, 0.06282280415725859, -0.5273210409136319, 1.0109588422610445, -1.3262006148371286, 0.2699701982882051, -0.33890510443997496, 0.04064201345284593, 1.8331657561205335, -0.7173068591426912, -1.6243036395943888, 0.11754918029833493, 0.8851866999816229, 1.1887180924540264, -0.29911142989345857, 1.4770228259590652, 0.06149805050746516, -0.41503792762948144, 1.6222777710328191, -0.4008079414499443, -0.19615399779805784, -0.6825618121682888, -2.17320547169256, 0.04541630506066217, 0.37927563612298265, -1.69468877557179, 0.6092537857727047, -0.5473849536197511, 1.036995801584316, 0.7079602791068089, -0.7664564820159703, 0.45657825765250465, -0.17863441460900345, 0.1790092699961863, -0.22767121144465208, 1.798955773083424, 1.2302017408869221, -0.34975876625196795, -0.503925636782732, -1.3953432145244635, 1.0454256030476083, -1.7674218825338226, 1.8833635305023535, -0.5719754526276535, -0.2452973234014148, 0.05986916362087742, 0.02550368588872201, -1.2681476923559807, -0.2564866338481892, 1.4244797714950437, -0.6223469247904576, -0.22244467703050036, -0.7137793137692575, -1.181505378962061, 0.8697055811653828, -0.6389147370306967, -0.5490341713505786, -1.4913921304684208, 0.36793426916085187, -0.997638505215076, 0.35363276490913736, 0.058988018657153814, -0.3732218471570528, 0.005946216154165352, 0.19045359608335238, -0.5027787765951819, -0.1292832694884984, 0.1062463112447376, -0.7043909318350536, 0.6660108697801526, 0.8131888098688547, -0.21784934149624893, -0.05037938814782582, -0.6919806423428793, -0.8665593875598685, 2.049884905975855, 0.6487769274235826, 0.2737216062272465, -0.2566570866214369, -1.8175095857330463, -0.43017007468569496, 0.4849705858274106, 0.6765114555973617, 0.40558595321550983, -0.4470408975418293, -0.4595581103449999, 0.3456452930309536, -1.9504504589566867, -0.808872432271055, -0.2606765579058116, -0.2472269070120336, -0.005965860759153887, -0.05753292836056627, 0.6921394909271942, -1.2817262263018727, 0.43239041504509723, 1.566130513707073, 0.8226867058132585, 1.8644262073706905, -0.5102958795060658, 0.8090425112833199, -1.1846068872901776, -0.2761257549582232, 0.1481902552567193, -1.7217798932856527, -0.7587074503276457, 0.8026189858904346, -1.0320286584444927, 0.3220077558256002, 1.9132324836146384, 0.8042018593363692, 2.229182183894594, 2.326908308862751, 0.3503999282265636, 0.06020635083627721, -1.282199437278425, 0.2126369325481894, -0.6887667171322939, 0.7212020919147657, -0.2590270351062167, -0.44786312766207254, -0.3920780742413193, 0.13209623582897895, 0.006312098697974202, -1.2440013698321422, -0.8455253937600634, 0.4545045984311116, 0.7641857679745092, 1.682549544418273, 0.8324673702653053, -0.013603555983162546, -1.2444120980880828, 0.5490549495371428, 0.7202353564707118, 0.9194135416280429, -0.3899184086383573, -1.8152334600876319, -2.2179672409419005, -1.0279293006740904, 0.20028364824734055, -0.4224693748003618, 0.4609281028771975, -0.07812178095485599, -0.3105213487901092, -0.21571701906452023, 0.29859055140877083, -0.8594710069425372, -1.125749769507762, -1.6315612982520655, -1.6756401343042306, 0.8004987615887894, 0.26989151097808495, -0.6728213242775611, -1.3750233398589817, -1.1119790093846253, 0.7154629400499787, -0.8053907111704522, -0.8895551444469819, -0.4627014607150523, 0.6393186894049929, -0.6830890743107959, 0.2012113635533625, -1.305445859887132, 1.6676003779159254, 0.9365165361321734, -0.10928394096622576, 0.9147132158147192, -0.29812550780389513, -0.847436382356511, 0.7402509569422134, 0.2196925429849651, -0.1933718506568398, -0.37794056557001354, 0.27270523129429985, -0.6916684893072308, -1.6635844839452925, 0.5387459125120835, -1.2113641658124559, -0.2821018499906952, 0.7170640910702897, 1.7612786733649501, -1.3890663408010462, 1.1709944216879056, -1.3540315685080857, -0.9682390580834128, -1.4587012066695835, -1.1129861595572892, 0.04888627904211273, -1.5478348129061463, 0.9092102913956853, 1.3302890943243684, 1.1700859551333118, -0.7883611058827142, -1.570132810856963, 0.6025345818749969, 0.8762011212827876, 0.27768904638325054, 0.6434086844018088, 0.46938283981691276, 0.427291607507413, 1.0422834533543923, 0.6874157008295528, 0.884550452206278, -0.10336064398358583, 1.5994390871858066, 0.7318897215946529, 0.5076769433851286, 1.1765976690791424, -1.027896951711389, 0.2775334634255528, 0.11540248602581583, -0.5339201844168951, -0.3010756338407811, -0.021867890347447693, 0.4983073827864087, -0.03981704041750024, -0.6919370836695318, 0.9209429390801966, 2.92230757505794, -1.0634022666866838, 1.9403960558942421, -0.42042873581612, -0.0010417628103961594, 1.265504448131912, 1.6210911245578439, -1.3175221422570038, -0.811473629963674, -0.49152436519951653, 1.7012550833246824, 0.5783631934970541, 1.3726765014728086, 0.7035305985634654, 1.1210949255740974, -0.024782599775203296, 1.9112929479106515, 0.10803322371020924, -1.963909742328533, 0.7576582957787734, -0.39115703507328375, 0.45456378277436443, -1.7618219407790763, -1.8010720496847525, 0.9474255706898734, -0.24677556150458588, 0.39117656300772663, 1.2968662067433192, 0.392004305830245, 0.3669141416437935, -1.0118269542034872, -1.6911805678446177, 1.0400910872362652, -1.5241698682148863, 0.5511185472282539, 2.0895310941656695, 0.40606439264232475, 0.43473554836869266, -0.030966059937668714, 1.7722324005355838, 1.394538965140751, 1.0877254607198472, 0.7724560185653851, 0.7455955274397922, -0.3818834737552086, 0.6163874069117518, 1.3296818361466978, 0.07997155903501806, 0.011132168845603927, -0.6660277866365946, 1.125709854080934, -0.0571596838063051, -1.639761342527412, -0.04946245383711003, -2.612116380780476, 0.6735842648839676, 1.2824214587351532, 1.6155981530082006, 1.1199675594296088, 1.1187696187190657, -0.523414509578738, 0.04446189524736646, -0.7283625241151986, -2.3133030322507677, 0.245084216918803, -0.09849935313968702, 1.5588269233039271, -3.0475683873907764, -1.7880945012906957, -0.7172683121359985, -1.330823409762302, -0.4139689229234397, 0.93686389001584, 0.40695925584727666, -1.391678254168924, -1.6099940256301004, -0.28399919192142925, -2.444393798232975, 0.8460372000822292, 0.30183199239573505, -0.12608559967511582, 0.19692504149390908, -3.1782728726679528, -1.8754997536175089, -0.9116157365074532, 0.5854486789459561, -0.036532284702461185, 0.3256718572142498, 1.9365719083481856, -0.01870486526805283, 0.2769333832870749, -0.5663522637537894, -0.44290826545811757, 0.3832319583190464, -0.541071162404052, -0.10413547156719076, 0.6042159444167609, -0.1626068773595875, -0.5305554608407146, 0.8727721049276307, -0.044540573425406495, -0.10746455161428467, 0.22119665994706736, 0.9132964113978093, -0.14805928203120788, -1.3636107680850666, -0.6368446718865105, 1.1958465347890106, 1.0305303229436205, 1.7418213997544423, -0.44281951246038, -0.7755287476788979, -1.124429911396352, 0.766594307744827, 0.8843453961825722, -1.9903859886098172, 1.5128115840697016, 0.9674207371653009, -0.9076387703396743, -0.1674966102898746, -0.12210636639363832, -0.26300323324014924, -0.8002122625640754, 0.7749818322892551, -0.018439861565620132, -1.634366543732494, -0.5255659946578167, 1.5892266765177128, 0.8953660852705765, -1.0458659458487856, 0.864448966509322, -0.7079784887335392, -0.453640248895523, -0.3152786238005118, 0.805880111360824, 1.8865262357098307, -0.8962447032423028, -0.46717275048290363, 0.32560646342419647, -0.20807794949068678, 0.34672553727272765, -0.8602033454288841, 0.6067345659142864, 0.35650815020098475, 0.2153075072093943, -0.5654981479916843, 0.19983681408258736, -1.3790652832869352, -0.7048099183394263, 0.23045585521158898, -1.073498032285864, -0.031268813818763, -1.5762635140916978, -1.1867309264377173, 0.4261769974645049, 0.9683677070107469, -0.1688165620226303, 0.47176957124523056, 0.05241049243056614, -0.46613078180563544, 1.544687329493147, 1.3034898351876525, 0.4007232829227076, 0.716597509511239, 0.5121702980822127, -0.8347941496455036, 0.29954463564595507, -0.8794145611083888, 2.406411274175384, -0.5933461123749002, -0.26311615451113823, 0.3214148376774754, -0.506078727895364, 1.0670400566673048, 0.767399778545163, -0.9170016465886389, 1.112966286098916, -0.13753405856090012, 1.0934285913813717, 1.0510488207472575, -0.9916295378173743, -0.5587163384482964, 0.38331868617941567, -0.5515557945698619, 1.9297314111284902, -0.2795593184189093, -0.14651621400299186, 0.9032642921231272, -0.19664158567734163, -0.004531458144525205, 0.06278760798850458, 0.4653683799253966, 0.0671477728621566, 0.5976224838693307, 1.1371732210343515, -0.23439097618332075, -0.0412273759126595, 0.21204135650984116, -0.34002065144492843, 0.33370522014578863, -0.18718462074615283, 0.7279839685606174, -0.731694545713499, 0.8656604611849719, 1.398705302299043, 0.40775117874560757, 0.27767289236863085, -2.1703067680630754, 0.3235452598098675, 0.25793078195998753, 1.108934997876009, 0.19682065415057026, 2.014121310183235, 0.9224301119972002, 0.39278663500752825, -0.96634090986771, -0.4620584045260059, 2.115432610738514, -0.2406335723700628, -2.087205859852138, -0.6104646157588778, -0.36679136473177465, -1.2848765497780135, -0.033618312489867366, 0.3657168955574018, -0.36415520220687037, 1.0390589372784151, -0.2335802896702867, -0.06241393851556972, -0.1981536611547559, 0.15098350581292416, 0.9430272482630261, -0.2836225406982463, -1.170608280180506, 0.49384542471368476, -1.2806836584675507, -2.6909162077789848, 0.5630685836841621, 0.1854264551048403, -0.3217571722363893, 1.1688251767568356, -0.40973325567420144, 0.8556296200567798, -0.3443418889522325, 0.9618680010242173, -1.4295057321266609, -0.3884093013438468, 0.4141917853404121, 0.11749109033693104, 2.0856910376967233, -0.02252947162160706, -0.2243817626553552, 0.132547714444861, 0.9856457620549346, -1.106721465954658, 0.5468688602514049, 0.647876198380187, -1.4505621555214687, 1.002319576738151, -0.4862594416823708, 1.2578813680732162, 2.1528193404381692, 0.8882513544509267, 1.5249189726009653, -0.7205354208922079, 0.47881460541557674, 1.0330613338787809, 0.01263496358229843, -0.6361100403137634, 0.8360722054356369, 0.16388220090095787, 0.026869071734966558, 0.557146428494051, 0.7288527381087174, -0.3116941190715436, 1.5348948810706016, 0.14991569814500075, -0.4819935968274056, -1.4602293612151778, 1.292929159378442, -0.0612662815241481, 1.079157942176677, -0.2986025498173332, 1.0463398668393398, 0.5810957797207322, 0.07861968594343187, -0.12528155061443433, 0.17397422553675185, -0.5725391536975726, 1.0464875374262066, 1.256039508885161, -1.0901879359265152, 0.5365447071056423, 0.5856206118128672, -0.9202795918901139, 2.2527574862298922, 0.4012896555960024, -1.1343904227541528, -0.7194176208787593, 0.2947914923784026, 1.564903126528879, 0.5520959318433588, 1.2808385239490934, 0.44458779594958137, -0.6201483966250144, 0.1334687940884685, -0.02381100888553568, -1.1483796196194673, 0.17749245975504865, -0.3551908823272989, -1.0139653217142972, 1.7836780885805468, -0.17877620926956625, 2.90857638349601, -0.8548299893722238, 0.035135798933258994, 0.5612331586623959, -0.6836687068277885, -1.362258460203056, -2.556597112988243, -0.9016634059035981, 0.8718788754105313, -0.3609510398304794, 0.6054807499785009, 1.5125383559012386, -1.9930340325919969, -1.2363520000517063, 0.6002494468674143, 1.33788741018175, 0.8273264378116848, 0.602076091855988, 1.0971515060129609, -0.38528645565406067, -0.6481989403309407, 1.7401931893279945, 0.3876718917448163, -1.5443128930510397, 0.3579749527552983, -0.17041120536445362, 1.3573087221969018, 0.7896538701806833, 0.295951076894189, -0.17371271552327347, 0.20952582575475148, 1.9437974777289964, -1.3085017252818472, 1.2422316136595017, 0.41701488967767636, -0.40846902143249253, -0.23114392208203516, -0.20820688764566828, -0.08234280621311307, 0.23096220750757634, 0.09002619053569454, 0.7217084325776114, -0.5668905517998484, 0.024150724751067356, -0.7390971919446613, 0.7190084334595918, 1.8990169983285434, -0.49547266687642666, -0.4106568768193365, -0.009262648803350705, 1.2966901958070682, 0.16719765609358575, 0.1592310212907396, -1.3842440576849613, -1.4785046537355095, 0.11322142872158435, 0.5117267556839927, 0.2621439658270802, -0.08677126145236215, 1.4312272964872008, 0.9968753997777053, -0.6856775804905298, 1.2713926117045715, -0.2950037427401628, -0.20824933281879746, 0.3196810254268073, 0.8179377427506114, 1.2485763670119303, 1.2860096504426228, -0.5091307272740795, -0.057459944042909224, -0.6707265428414223, 0.008047391649165096, 0.7376228715716234, -1.7885424077797756, 1.6442733167526182, -0.4051949317402498, 1.2366025255283546, 0.6304500681322003, -0.3192604202818063, -0.37436266702346055, 0.43611553386757446, 0.1780338782688598, 0.3337472598521216, -0.4661979407182446, -0.3469785640776091, -1.001488477095695, 0.0214258215662668, 1.4220238384380417, -0.5762852918233248, -0.3699054368395187, -2.9894247164530334, 0.004029464172936581, -0.5646560072203117, -1.3557841376192308, -1.0521170647565659, 0.9873165617314672, -1.143113843408636, -0.3351037575955327, -2.2814727136566013, -1.5710647358073042, -1.326682372123696, -0.27791135028926817, -0.6918857296328781, 1.8621401677016, -0.6390575120225486, -0.8459968527276007, 0.17022987245574356, 0.3897629649070698, 0.9562084219051352, 0.1406281992267726, -0.7219086142186044, -0.37388201477498656, 0.26685726854577924, 1.4519119342666493, -1.7439803158225127, 0.5998462223705359, -0.4865671215141743, 2.0401848112442904, 0.12173176301223892, 0.5345075848318751, 1.3500007884564431, -0.6550614590339001, 1.0810305869158334, 1.0509913722187672, 2.245218273514393, 0.910780629984959, 1.1603906278150153, 0.7020880546750176, 0.6414124360914429, -0.08286504685660641, -0.8935308142969303, 0.44427066059500325, -1.4310683694595996, 0.9931432353156127, 0.8458509526599884, -0.39192547455265986, 0.3884917705755622, -1.6380619660813822, 2.3914849698182667, -0.12697902500800992, 0.9412670885181582, -0.2447407221881656, -0.14657781354682936, -1.4823507313507576, -0.6544531116902951, 0.1908926476280873, 1.542664919898668, 0.2926441954027795, -0.7466824353431071, 0.5968251624190036, 0.1795562472047445, 0.8428233087350854, -0.7913485879154357, 0.8170108497134637, 0.7964700062729452, -0.41309306211247354, 0.5908450252578025, 0.7170072624431602, 1.964140147326688, 0.3758520311253327, -1.1767665402113516, -0.27809422926867317, -0.8922231571180327, -0.6274713867245432, -1.1854571269707768, -1.153975368876903, 0.4308491291675931, 0.9490719824271794, -0.26782582790721443, -0.6912039409835995, -0.2708012330461534, 0.1502157543993175, -0.6909551637965327, 0.7954625552736395, 0.6814569667632818, -0.4728531335610819, -0.4527324903433756, 0.23845389866353983, 1.1298189236371896, 0.005210904108558345, -1.4490514109185424, -0.06725138153984211, 0.3861536906356708, -0.22472737469829557, -0.589967662984524, 2.12939597059336, -0.6505218945586464, 0.08983045499109567, -0.6798873071695218, -0.5281612910338355, 0.8247234380325853, 0.06480472041424194, -0.2468479782998895, -0.8683688037110104, 0.7945862231688409, 1.088940634846306, -1.0531095282337624, -0.4371133304245342, -1.015444704185478, -0.21120521905019274, 0.5347708498535493, -3.153217114534004, 0.4310664908802813, -0.05745180555959641, -1.2517291591768152, -0.3736922479044136, 0.6596780265932133, -0.5864508831187981, 0.6557228110318758, 1.37047210300926, 0.2280462125547974, -1.823428280861358, -0.8583449050337811, -1.4023980426063187, 1.805147237345576, -0.4734937165556982, -1.5034382862616904, 0.030869226525726583, -0.21707225459909832, -0.7898145542571552, -2.1542500322596143, -0.9678325553217387, 0.21461140345950042, -0.7180715363650998, 0.32255122538088205, 0.31098057015653946, 1.997425998413676, -1.0805275774674499, 0.06628351942228318, -0.7532098770357996, 0.21637735859011847, -0.3577359454501437, 0.348409039321425, -0.7134315162801267, -0.7708649512734534, -0.07971333061421973, 0.41031100476267257, -1.3036969571494585, 1.8408501155948123, -0.1503157135595321, -0.5079809621419721, 0.8321570112622986, 0.2737467462713032, -0.4714091391210021, -0.448737056054843, 0.14993686625492844, -0.19199467505598208, 0.32160765689031756, -0.7349672343472788, 1.7340686416180011, -0.7047183858144288, 0.8064126011930131, 1.1674734577293804, -1.83250287092173, -0.10211765647384617, 1.844969427805673, -0.5035047631715522, -0.40938857669829515, 0.32233902993905, 0.08402698461969667, -0.06049440411285241, 0.5673759197257274, 1.8423162417937162, 0.5967905515275799, 0.7531506044427485, -1.0073891819473761, -0.5303154405421642, -0.38737953513151197, 0.10036358615530051, -0.9480386617935225, -0.9461736807388643, -1.3627400506501535, -1.0937006707995633, 0.04307712466089011, 1.3193858930354847, -1.0212662220171183, 0.19368024081384716, -1.4491961953352692, -0.8246026517116406, 0.5184136036509986, 0.04304957106116016, -0.20749011984866622, 2.3747550047422377, 0.06745906820064075, 0.6948266451351451, -0.5026725858658864, 1.035980473471681, 0.20751583396176204, -0.04352526780530449, -0.6345987687480845, 1.5118769409252855, -0.5693167821168293, 0.5034086172866756, -0.16923621414340723, 1.5747427159048097, -1.231440738794151, 0.41666726753249617, -0.2110844855052152, -1.8357420358698906, -0.2764691209273054, 0.8669514169617465, 0.8346343559006801, 0.17487177633250492, 1.8156616117393318, -0.23243018761224704, 0.5246060432392665, -0.12668343531241352, 1.0265290758743681, 0.1627215693437361, 0.4939431069921471, 0.5731238226483231, 1.2271838058214217, 0.8914419053145086, 0.959825744399467, -2.2392409695947553, -1.0214535896893566, 0.8707141923793441, -0.9625220886981682, 0.2843618917122167, 0.1885885768159036, 0.5834036147089336, -0.6146058010286287, -0.2923926520366376, -0.9616829940617693, -0.25800426084800354, 1.107563208434291, -1.091917411329386, -0.08091347640219078, -0.8668444170938817, 1.5061972524485112, -0.03821872491518662, -0.5706644175454604, 0.11537842112414523, -0.22141654253379875, 1.6959651020877384, 0.6423743528480816, 1.1466348575411596, 1.0360170001462965, -0.5696543626460021, -0.9780926699589165, 1.9317164935330058, 0.6348242298748581, -0.8095388054748119, 0.13781117742963972, -0.5503242609691154, -1.828869570054614, 1.342656197582433, -0.44809545042323334, -2.471251499013111, 1.3555489735746795, -2.083838618911239, 0.18588750897549647, 0.7338943138390402, 0.2775656178860738, -0.8867791646919588, 0.23215238517808548, -0.5318789188458907, -1.0884526295164616, 1.0764137245712975, 0.11808510505197205, -0.2222788428613505, 1.891707531110137, -0.6557872715207909, -0.039334342283599215, -1.17296349751462, -0.05765029699342988, -0.8659158118392171, -0.26547012774875184, 1.5922585594752727, -0.9751117795468852, 0.12119081967026173, -0.15857261907578385, -0.4725028950113143, 0.7197265948093311, -0.18867967242715605, 0.5565666457285634, -0.646559431040286, 0.3601305120522075, 0.03504565892973578, 0.28892230776391115, -0.2885124185152415, -0.4719095578958954, 0.2757402561232949, -1.054824699088363, -0.34882098861826477, -0.7874242608341134, -0.8950119509691069, 0.5771566916395906, -0.2851621320633437, -1.9987523643997045, -0.23330408619094942, 3.434645778376806, -0.9275521470786278, -0.9852967467497062, -0.6308933432523216, -1.59222924704363, 1.705187899473432, -0.36721285325438985, -0.7679473216340762, 0.20497187859300586, 0.04982989136951738, 0.2512736487775847, 0.6466303438399829, -1.082433256010048, -1.2969465270822254, -0.003088198310003587, 0.6884053377246994, -0.25228996410448956, 2.360336437741023, -0.040642975128778375, 0.327055495933988, -0.5239018822608806, 1.6406140446226947, 1.4826233796075279, -1.5789330306763494, -0.819469416611721, -0.811963832703458, -1.4921996633487022, -0.6153008829763007, 1.1073159048029018, -0.1430655018928088, -1.185459821685872, 1.0672479889998738, 0.5448883010841414, 1.0037947031211156, 0.2923755654760829, -1.2250170840647812, -0.5061742318448462, -1.9263905985258263, 2.528516680942423, 1.5460307886220688, 0.5321245043003167, 1.5774606801999427, -1.520920443690044, -0.7947646280513448, 1.292191448137946, -1.1952478824882713, -2.3673244546442564, 1.7093921914235735, 1.0752036954932185, -0.9360257621013963, -1.5016077009116955, -0.6040770879969042, -1.490563035097727, -1.0925268534153374, 0.6171281411574362, -0.4749422366992423, 0.8909980851713234, -1.3311014851298084, -1.476777440609134, 0.6736963063753637, -0.7138915287433454, 1.2803000234111537, -0.622164831724137, -0.8035841659962633, -1.3727875985072424, -1.6858341600821007, -0.6845069384770509, 0.004046389611046783, 2.0740836832727267, 0.34512378205268773, -1.1390081773988148, -0.700295313651844, -0.7607653062097323, 1.254317080516342, -1.1718002262987106, -0.08916577325465003, -0.635583570537483, -0.5631181512899325, 1.6845419754979376, -0.34528601101304, -1.600787746933116, 0.7771723918384783, -0.5369038493430175, 0.2105741753117103, -0.6100785645884751, 0.25606732803866444, -3.1308702822258576, 0.3821076264258038, -0.3159778674088099, 0.42052397087419346, 0.1496088180203262, -0.7357207050006923, 0.32498980587127, -0.5619035405793511, 0.03019581260804769, -0.25849716980038423, -0.81349063842798, -0.7690574474723769, -1.577299413848155, 1.3871013403534627, -0.3729401483014036, -0.5216373402424486, 0.28419625024731904, 1.0575142428017874, 0.21495053736755812, 0.817730861947808, 0.03544119979146099, -0.2784209767034414, -0.25042541284126363, -1.4238427969458183, -0.21803236232250756, -0.4484366836283189, -0.31431125720816194, -1.5979553015229497, -1.03160350530497, -0.03982024173834636, 1.7871627622612012, 0.10949069223691509, -1.1874854211409471, 0.3850709148042831, -0.3730139670001099, -0.4785950359087755, 1.0952493990504566, 1.918399700615243, -1.6205833915130157, -0.027937699023930108, 0.5683541306097846, 0.5553008070801392, -0.299202272675575, -1.5522222385939917, -1.3873700621804772, 0.37744438618092874, -0.4260877564862182, -1.296742681777314, -1.3076260403789353, -0.4180658057219336, 0.8265429746107956, -0.33468053673402587, 1.1613569407103472, -0.3172633035904955, 1.1804279979109549, -0.7938224036936076, -1.418921998648305, 0.5403066464268623, 1.8875686045812152, -0.130753753951153, 0.4519143938017072, -0.3290468726466517, -0.9709581910745063, -0.20609134880856286, -0.025868257017060567, -0.5163140300045187, 0.06480368482423565, 0.8979565167474685, 0.16610242038471115, 0.17479654168828557, 0.5485641140355556, -1.221289666155675, -0.06482312436303553, 0.29151668913442175, 0.0468242984705795, -0.1410757982077607, 0.011573704267206417, 1.1124520064248828, -0.823296564126298, 0.23624549730085279, 0.459780794949071, -0.4692249871070452, 0.3296764026778724, 1.0895446934397373, 0.4070818836100833, 0.9052004047901698, 1.2625262091454292, -0.7621571890873776, -1.2168535794387352, -0.7404356981835366, 0.07448272651400784, 0.7391752829245395, -1.7662832666794535, -0.24184821306228804, 0.018150314312351853, 0.22234364258340225, 0.99469448712696, 0.29629036861980534, -0.8869702676416381, -0.25268227305448676, 0.17357519879100292, 0.7442287068028656, -0.20831249261431065, 0.46409394902368656, -1.2335811373139167, -0.20094177753340456, 0.5074295273235938, 0.9549043604847907, -0.41732938348428694, 0.6696272761718398, 1.1073859559383976, 0.18602491657629133, -1.0998418028542594, 0.41838749952439247, -1.3256270561978174, -0.8964152119262442, -1.1378572864279421, 1.8080611749104873, 0.4181380554705161, -1.1834238707430829, 1.4158092340950639, -0.5763818830231885, -1.450747114506494, -0.9925834431051481, 0.41936799482847226, -0.9850433161265202, -0.4395463061598118, -0.26521543824768246, -0.7765193314926712, -1.5889898694113185, -0.7561198700981208, 0.028118938643123637, 0.20581680381839643, -0.2894509873648121, 0.3542451639018199, 0.004541662153540853, -1.0602915714843326, -0.31663731440061293, -1.7372532907266063, 1.2071762598503362, 1.740472438168435, 0.6115217936170682, 0.45590189570783674, -0.38994269030284207, -0.463259599296341, 0.04811205024669488, -0.8902695460495719, -0.678926392700328, 2.5404623927603516, 0.5594061890201697, 0.7643560325618033, 0.48088992553973536, 0.26753073388909226, -1.0268253568903853, -0.7997607280317492, 0.626606217900646, -1.9892379191897775, -0.6583320616619802, 0.28490060660955735, -0.7939920605093086, 1.1527107652309678, 2.1339142576026195, 0.07675384787949988, 0.3670353940061477, -1.4724830572898422, -0.63272228585708, -0.5856546281191709, -0.21160337042761448, -0.8512493437723163, -0.8100101757052319, 0.9975934275126851, 0.47399389064390074, -0.6042836952678149, 0.10931357464667023, -0.1229841360537922, 2.209729464429299, 0.24467942457815564, 0.2354904846208621, 1.2642892018346659, 1.164629391962068, -1.1192806500585823, -0.06184440886078085, 0.982693628219723, -3.334476109229912, -1.6861830311194024, 0.24123830016158035, 0.3926407076041515, 1.9372727939438779, 0.49235332132106335, 0.5693259666312172, 0.6075110192029063, 0.7279872710196696, 1.5038181154559656, 0.020444969312058803, -1.7374571957895277, -0.6033995584046111, 1.6625736203593422, 0.2783231093816295, -0.14715420095938606, 0.39835450804314043, 0.729881239528241, -1.5391974317067934, -0.9034919209311568, -0.3072431666452081, 0.8304873161113513, 0.18383386139804905, 0.5767450705331179, -0.5543080231192176, 0.3129256503083498, -0.7732388138284698, 1.0107511368903388, 0.45653293677942786, 2.1139946768238262, -0.4845647643796474, 1.8594106224906526, 0.22152112974962238, 0.6992151941327218, 0.2863517661358197, -0.7894505708000954, 0.8419575581809656, -0.7017573466948388, 0.0733597649855065, -0.8453894975298117, -1.021954889845827, 0.15790545113547805, 1.1369575940797825, 0.04700123991470616, 0.6453690645669174, 1.018999668073413, -2.5927957730078983, 0.1658941127583743, -0.12943757639901343, -0.643677747662026, -1.3998987102146903, 2.843087914861815, 0.33031050866919703, -2.7651163222381197, -0.11745932484368325, -0.16307422724063309, 0.4327416552802379, -0.24533392760827932, 1.2637719213132925, 0.0715456469289932, 0.34170467683656613, 2.836749686159509, 1.9167126069488987, 1.3779676311982851, -2.5042894430227447, 0.49653280099649566, -0.6456601479500332, 0.32853227541522506, 0.17176828023896323, -0.10783008675385516, -0.1591377570284436, 0.6675488866247892, 0.880498210916424, 0.20035207246202646, 0.1378621669879439, -1.3238528692828224, 1.2486052560552015, -2.238994702448354, 2.0395196837796736, -0.1880801894718829, 0.46049658544042926, 0.5531692720373648, -0.6977530748093813, -1.952706017097002, -0.04543654055843468, 1.2103312565696378, 0.13762621586077164, 0.7877786670163479, 0.7886991663958819, -1.8299812208742592, -0.1999138497497405, -0.6491159135446428, -1.3556899480328113, -0.27727595560162344, -1.3667063006625921, -0.2558367929567936, 1.587956055599158, -0.4613571566221768, -0.6301624201812221, 1.773566838961187, 0.37054330878556985, -0.6577334111269816, -1.4179127015863235, 1.084807435513107, 0.269594135772373, 0.7267446017880792, 0.39631673197944867, -0.2081750311281734, -0.16637906294550028, -0.7566862288734537, -0.7297163421412146, 0.036391810350415416, 1.7781175682640644, 0.047098444855832595, -0.19608775835849362, 0.585722712391677, -0.7250552895304253, -1.0021678748699927, 0.16750825652740783, -0.9892391371576917, -0.08049582451575156, 0.9119260736452812, -0.3940396953396491, 2.153807900885939, -1.790852603991941, -0.9625909296557119, -1.8700456928523992, -1.2787390084643093, -0.11189996122119751, -1.4542979792752349, 0.23929817970643172, -0.07028933557100622, -0.4530935896118432, -0.6594040732242386, -0.8951413642106143, 0.21461813393987622, 1.0296787400815732, -0.21189510556875865, 0.9235389065189854, -1.2460814154222666, 0.6635831637847335, 1.6205415018856646, 0.5091524647762028, 1.1790445253509523, 0.5905273842494931, 0.49866871336008756, 0.5752772562767983, -2.2905163440149034, -0.2720872684099327, 1.458901869815694, -0.11114381534250414, 1.812468316106093, -1.6983904613767244, 0.3448012450537866, -0.3293664600774243, 0.16415488601853825, -0.3058817120237744, -0.14337924122912263, 0.2959361246908177, 0.924423044489696, 0.4017834241051695, 1.4139034486961932, -1.5180000955920352, 0.06442375289466354, 0.8988871469825984, 1.0256365218701162, -1.4693111366721043, -1.206153614598456, -1.0875049248057316, -2.4131354324164596, 0.5527393618589059, 0.42772479947417724, -1.074063796711912, -0.05536743457666547, 0.10539234516621221, 0.03365548674038871, 1.9137355372527556, 1.6960747296937055, -1.3204403886734444, -1.284372125828426, -0.8899627768536512, 0.0999850219400953, -0.43544585897501614, -0.8534739300878241, -1.0364947310557826, -2.4009443172335225, 0.18669832071227083, -0.16962186013600075, -1.6811872091217686, 0.6393724885272785, 2.36096085696573, 0.9469686198772301, 0.34855991146084575, 1.3000380193774492, -2.521543916279417, 0.24057077709351601, 0.24515950289284108, -1.2416489510300919, -1.8465196234125258, -0.9143044609729929, 0.6702041870793946, 0.8785903546141682, 1.6948541909235835, 0.4746848509176055, 0.13419139493518, 0.2719354311274935, -0.014417952882118269, 1.2273797732091147, -0.07978923174460652, -1.219323590515406, -0.8312313383924319, 0.020315683921282107, 0.9195623335552925, -1.4289491999566113, -1.093791126509258, 0.8851155232244746, 0.40830658468424486, -0.3844722576276738, 0.785944223231589, -0.2859169643785196, -0.2749116003486808, -0.3953511300866631, 0.05413906136282784, -0.2347195728505301, -1.3133236265727073, 0.08705325652953866, 0.037983318462756176, -0.06359531585606579, -0.5220351700651883, -0.371487715688649, 0.7690483923524378, -0.04055876375609702, 0.6460514536499956, -0.5333242105303722, -0.6050335976703338, 0.24352267341023803, 0.7712052038984576, -1.6248326347730144, 0.18329444808523282, -0.009751980621668694, -0.057696546614289745, 0.051289171203158165, 1.1422945224539893, -1.1340023325822084, -0.7331025766259788, 0.5348114181974908, 0.34915430197403674, 0.16223743734641935, 0.8841924462405661, -1.3919927006330048, 1.2292833940389964, -0.8934109797493687, -1.4866722075111725, 0.45742692762047754, 0.5450595443556288, 0.43988926864296035, 1.319999109936789, 0.5159831255974733, -0.3024608923362105, -0.967390852616081, -0.5747325068951707, 0.44314941096523924, 0.9461563175369943, -0.6504564983914527, -1.5682963213931254, 0.929514510269638, -1.6091398336892229, -1.752209471111125, 0.4571492821441919, 0.19104307016564653, -0.9131409355877732, 0.18980919367939206, 1.1294060602479727, -0.8170564248043762, -1.1675925374301181, 1.5143739501124358, 0.9682649429007674, -0.5942390887101483, 0.8321975268817944, -0.5495797886576591, -0.43895807500867484, 1.0135365742540108, -0.17687441095705078, -0.36478723395030516, 0.5733595970625022, -0.1496610544175881, -1.9642927865867548, -0.4709551386827356, 0.9577595620121927, -0.7532849857505378, -0.4932372331332199, -0.10094238841721578, -1.9652474571960268, -0.9915184219751557, -1.6148507031480288, -0.17163000415534008, -0.3172112791377574, 0.24876156493112217, -0.8241109368850675, 2.727108318652604, -0.30341732187487996, 0.08795606532138722, 1.672292972368206, 1.2274491605738131, -1.0024203901511672, 1.5366830368074875, -0.00800497591849733, 0.728266331389085, -1.1261219871577322, -0.03724345039969088, 0.7366738484377523, -1.8322420448129177, -1.4413567554536444, -1.0127810303024758, -1.2724056660405736, -1.655255659985472, 1.9805759569562533, -1.105498677875451, 1.3893021758692794, -1.2092251973700887, -0.6587287586220067, 0.8087192433540331, -1.5095801779533122, 0.2396840836819389, -1.8554925134545386, -0.3399294743406096, -1.1687673649648553, 1.3884287149544332, -0.002888449014763636, -0.9366395597384394, -0.6554015938289761, -0.31581093496949364, -2.93931789907424, 0.3309301832019485, -1.4984051999243335, 1.577601082414153, 0.7690403638658692, -0.004774782327696412, 0.6213767071670127, -0.18081222860692037, -1.9799305182030107, 0.2503133133422968, 2.096159740612018, 1.9806861681645527, -1.3887603338156689, 0.6592249340395778, -0.2936738365565511, -1.734884197122774, 1.3357869829518554, -0.4891429679861173, 0.6977410651985001, 1.246464861417475, 0.41086093514286426, -1.532686264374829, 0.7059074547010065, 0.9249287020243839, 1.4184731753461113, -0.23468670104138428, 0.9238503203411559, 0.18842592020584417, 0.3080252316416744, 0.026988000109265328, 0.04691885875337248, -1.067797019972482, -1.9066567615144874, 0.0778260740053401, -0.5115674060405387, 0.25047913529213306, -0.6952026443360421, 0.4088124200108358, -0.45844055283865204, -0.404586891198454, -0.5618036231713164, -0.8865526353761316, 1.353656507306876, -0.0007914849607398698, 0.20296343238763467, -0.25959875188441006, 0.6207515418911912, -0.31371031199113864, 1.0931684555117833, 0.06640802774310527, 0.21768022430628714, 0.833073715193127, 0.8706367647058724, 0.275902159159791, 0.2770067177805788, -0.8388573890082066, -1.2623226784106156, -0.07500099930097087, -1.2218916423748158, -1.2907908687842828, -0.8017028241427223, -1.6715828801849302, 1.057864069977239, 0.0974010421201772, 0.5073984340530832, 0.5041514021393069, 0.07189317436527079, 0.5371914331126401, 1.4081589348649475, -0.07350171772039671, -0.2792091549463978, -0.05373329900068205, -0.289028234837779, 0.816183025289541, 1.074259039095241, 1.800373298526147, 0.48130729528178906, -0.9818367684101775, 0.7529745314429875, 0.03300495675960481, -0.01134847498722638, -1.225136650859218, -0.6063845881590499, -0.6570892984751855, 1.2738398210844566, 0.16694045573308686, -2.4170458922138076, -0.10731718808888514, -0.23900780599201524, 0.8405118682374876, 0.9560656296810426, 0.514240620779793, 1.1631070161501182, 1.7054541013680868, -0.04261256752675733, 0.49750974292426814, -0.37652159731122464, 1.0727472826191586, 0.6921340578973284, 0.10998573303386253, -0.08163718894056475, -0.842064932817622, 0.6359266976017216, -0.9420236437161209, -0.9557302906891016, 0.6658686988205568, -0.2227434855744563, 0.09972602300828064, -0.9555941541872717, 0.16842691732339365, -0.053209118667214894, -0.41510493885037075, -0.13408222924079707, -0.3465290331162982, 0.7695897280369235, 0.633218968233295, 0.04325037778364259, 0.45876036010391186, -0.5542029581865031, -1.260187586570086, 0.07817976716362716, -0.514543818841589, -0.7412801605498053, 0.1698359746459188, 0.3912972866762643, 0.38845238099123885, -0.4579748715882624, -0.8553641131824714, -1.2961060868381855, -1.2347317006416703, -1.3832290531928515, 0.7372235663482493, 0.07799076354080477, -0.025284889660010922, -3.1299492759755037, 1.7496374818514673, -1.3048851291608914, 1.8130096181319497, 0.8802636426638771, 2.324874881151526, -0.2995644600468685, 0.604181469866881, 1.0082526523856246, 1.5568611243841417, -2.3362842252616423, -1.7223459322227308, 0.2492279130703886, -0.6994704013923307, 0.6250008243426064, 0.9440557049931011, 0.9729014837263007, 1.7327223949226076, -0.6994488443933345, -0.28445604725115564, -1.804441309704949, 1.412766794645928, -1.1809608383026728, -0.9783692983448496, -0.09580162892107703, 1.9800724907058758, -1.9411921933243748, -0.6804345636554173, -0.01314877886526877, 0.4798323170881551, 0.9649035004091142, 0.2544862231497812, 0.27622007263451503, 0.7335488946125448, 1.1171356542267674, -0.5454268173468604, -0.769800764232858, -1.3693151510088821, -1.8378271794428014, -0.29143210547032294, 0.49346544968356276, -1.1818901735499971, 1.2877119231796685, -0.4415570164012757, -1.0595958083028152, 0.6473123884733331, 0.30801741075978284, 1.3072472589357673, -0.25217899021844076, 0.5765369340905424, -0.536008800909535, -1.1134256278581234, 1.1973852723176588, 0.6737193460894307, 0.7800426523438554, -0.3533033918574779, -1.1513649419724474, -0.9086003624551594, 1.0782246796615327, 0.5591344052992491, 0.14499326299972645, 0.6028037659437363, -0.4723408766480499, 0.13837626166028535, -0.7597978668640896, 0.6272856936579155, -0.9248478404189237, -1.4669905488535528, -0.7561546785342893, 2.2135689474522886, -0.37105642847591136, -0.07336094400037983, 0.5461129527009608, -0.7764923296693659, 0.05031788431711647, 0.05471441370092831, -0.016155385478882, -0.3006699473449007, 0.0926881670977929, -0.5655544846372872, -0.2164221444906742, 0.7265155681886545, -0.7715076856450934, 0.3282016081743677, 0.4214372654892477, 0.4770851836834376, -0.49101923698933625, -2.718431035879114, -0.1867885064358102, -0.201053515145396, 0.11745796399931689, 1.0765206017927196, -1.502388471787492, -1.280441655902777, -1.2008994242611877, 1.053335530965634, -1.99438840547162, 0.6066884099557361, 0.7889379936349372, -0.2835925894432601, -2.3472458678014205, -0.9833698140197833, -1.3669311213402748, -0.2346878228107604, -0.16485682114913947, 1.1689993408731651, -0.6510700574956868, -3.0225033384912736, 0.2316906433405939, -1.6232551542409093, 0.137140478222126, -0.5579994393284724, -0.3542921857658881, -0.3162668433052101, -1.88403114885307, 1.8018314319448616, 0.03602655547402624, 0.26001764298717944, -0.9388304294831613, 0.016613748882280368, -0.6555391094442525, 1.7060339013368027, -0.7407363698607871, -0.8458941758650703, -0.7266479908318133, 0.8318084687039103, 1.192718735789199, 0.7170565064258589, -0.5505825745437799, 1.2114635023280824, 1.4649854605001178, 0.20559633645903075, 0.7133029905143449, -0.493315573238088, -2.1111672896790736, -0.08910178496948416, 2.202612500784384, -1.1167191699142054, 0.15398033247821144, -0.7806031710900537, 0.1881878725457422, 1.4898229315890001, -0.19880108485457743, 0.5157078022634424, 2.092734415198194, 0.6666977895130635, -0.6206067702989908, -1.0174981717955052, 0.6062067218217416, -0.939003252491932, -1.5102646820682026, -0.7997490127796835, -1.2955120274545546, 0.3021535693829199, 0.022481733467647466, 2.1586857081162725, 0.22905316648661714, 1.300805105637086, -0.10453382255274142, -0.3042815391003304, 1.2688720300536203, 0.09492848132316596, 0.3237153896500072, 0.5428633936027274, 1.8646740493002354, 1.0856654273089896, 1.9105228498335662, -0.541574462601291, -0.03292347023504428, -1.1517998126703175, 1.5758532736427437, -0.16792592285624966, 0.48805852601158467, 1.4236099821927666, -1.6330516118148695, -1.832649576663834, 0.9582249942415066, -0.9566343789851675, 1.1572111993020584, -0.13077617916449877, -0.7499164012819863, -0.7854178371942673, -0.631324187589955, -0.30494980754728346, 0.5860292028209305, -0.22658281404613762, 1.5903322923367145, 1.8850557383875128, 1.7266288767827833, 1.253178176841778, 1.0562186952521195, 0.037226836790841426, -0.4757659292949983, 0.2925081972038565, -1.4150366383872228, -0.24948132597564188, -1.5084657876982832, 1.5810477889646979, 0.4847988685873549, 0.29505291746434475, -2.3602417970039826, -1.0425272363480906, 0.10244699288472786, -0.513308810550628, 1.235725293959331, 0.5523571321631042, 0.641063138602622, -0.2666163680134662, 0.05517876599108078, 1.2663404657093238, -0.3914902834663909, -1.6265043148409162, 0.01227749614924154, 0.7535000569795693, 1.1564120506823252, -0.03294079241390398, -0.6005981157223396, 0.29476589798748254, -0.5270903999583949, -1.3961509870661097, 0.2584430203052467, 0.2792464646481935, -0.03747276214275109, 0.2603489031422287, -1.1776911525962261, 0.13513531154840286, 0.35619882937468317, 2.3458023211079304, 0.2416949722312258, 0.2603453699043936, -0.9917002456767767, -0.7672801512296618, 1.4696183958065376, -0.12631837777114588, -0.034461128111743504, -0.46598044546350104, -0.06815498556576409, -0.34532100969297935, 0.08984730497764383, 0.01812330340866944, -0.749129863974954, -0.852131537873635, -0.6692504022007868, -0.7024650467623481, -1.725694931904565, -1.6666421518880083, -0.6806559736113346, 0.7006305433342674, -0.5488490032409099, -1.015113096373474, 1.1864338027482046, -0.3086664080747103, -1.3497727603952367, -0.18843336463207452, 1.8753068578004424, -1.0892581990134527, -1.4305428193618772, -1.9111164616038476, -0.18927661836777696, -1.301711662345534, 0.483930174377079, 0.2680566763670234, 0.22003665187860855, 0.760493650089196, -0.7423124568155551, -1.0376409936678654, 0.276785988589309, 0.5482622503240281, -1.9855920164415148, 0.22971177499838488, 0.2981818377662303, 1.029135156327986, 1.2464704236075848, 0.4256433435493322, -0.6544728620765057, 2.4193949677322593, -0.10305765690726512, 0.3401737567045686, -0.7062176620124728, -0.24735879427665422, 1.688386171263696, -0.9073835384581801, -0.4057485356135544, 0.829686358477528, 1.0017304816448713, -1.9116693953033528, -0.4801510036186157, 1.5714327194443938, 0.3263123496566354, 0.24978614521602457, -2.3170543811815105, 0.5289851339026204, 0.7525569040961169, -0.7735180114781632, 0.24170731744960516, 0.34137506677070556, -1.1637874107839734, 0.15235655857741578, 1.2078983165442094, -1.5162702667129162, 0.36799843182146924, -0.6138038748572622, 0.16869168203277948, -0.5270241617988074, 1.9062290656989225, 0.24023708698493976, 0.6572436299123973, 0.5292159235765533, 0.9262428670008004, 0.2264581767454636, -0.6192454012294877, 0.3098753384657028, -1.0453257623620005, 0.5676908330676504, -1.033886367416825, 1.089270436873048, 1.0146658115023903, 0.3210217815368124, -0.751820872992359, -1.2559150773868881, 0.41018945097566895, 0.9678490461597669, -0.8609935788797536, 0.43308381887998054, -1.1819249827118943, -0.5256530550038987, -0.4349513134597255, -0.3577939284075158, 0.6861038071405015, 0.7227107149137735, -1.1753348694876504, 1.6250073666173002, 0.5283268508966098, -2.608267315784025, 0.8571466931590448, 0.7481080246121702, 0.08541332661465899, -1.0491709956829984, 0.8318360356049654, -0.44895534609002247, -1.2471167058502077, -0.590517913564251, 1.3228586854598359, 0.23624922309873828, -1.2658187393659908, -0.03788756542018038, 0.2663932303069553, 1.939730358954371, 0.1240820498228247, 1.1707577227341055, -1.3430312887795068, -0.16640404046680338, 0.578224846830247, 0.6424954046521263, -1.2007889477427034, -0.21948772967805377, -0.33997833139582506, -0.8305824319649324, 0.6314595771137039, -0.9483408406947571, -0.1801308403712381, -0.6032254663926837, -0.27540023510005635, -0.006125262791671831, -0.2123212317306302, 0.8553615009528179, -1.2405082657329694, -1.6020577163804728, -0.5602838211045504, 0.7950129295091256, 0.626174854803034, 0.012317089156654379, -0.39937915214598196, 0.800424231313461, 0.8915433612615058, -0.7615719968373394, 0.9811301460554221, -2.4775401481514074, 0.9883511271885418, -1.1084429386202463, 0.27515765981502166, -0.898671791590823, 1.8945206749695627, 0.07047527066637752, 0.38138860484913384, 0.08494693122256877, -1.1340161468201118, -0.17728555181923059, -1.1310549849026441, -0.08764492639204174, 0.03886652536734263, 0.9869230913363656, 0.9525319223186394, -0.49286307301483245, -0.18436554949760064, -0.7387012624451531, 0.594906002450907, 0.6358958567125094, 1.141322216604399, -0.8951238087715296, -0.3612166202588574, 0.10186406838612835, -0.7192510776855047, 0.9226495009099391, -1.1582234781740057, -0.4952902909475704, 0.5882259911910318, -1.3858969260418725, -0.468071649557662, -0.6313600293796588, -0.695013786138358, 0.23580913029957154, -1.7180767940948278, 0.2779575615432816, -0.3294951929554362, 0.3348722987952219, 0.5589580369852843, 0.4100911405559775, 1.6479233939423714, 0.9960094228578749, -0.3631941982330507, -0.8638908213703839, 2.1655753704791225, -0.58741539700973, 0.02167800102550079, 1.3050542498429978, -0.6217971516891396, 1.86585241006543, 0.4165148966316571, 0.7082398926288229, -0.868590385799501, -0.05904734480813956, 1.6886004661527716, 0.8422692002433659, 1.7102220675210213, -0.27993319125986643, 0.08356046074296633, -0.7922282560950314, 1.5164008085845038, 1.3967916416982546, 0.5470586246581127, -0.9648530225878723, -0.8932918301042411, 0.32537318213858357, 0.9143033028756622, -1.5876290656939593, 1.501524390474356, -0.9548154166640216, -0.6251634579393182, -1.401380468268782, -1.289556984291149, 0.3035231195516949, 1.221132716915613, -0.931267970839613, -1.5011585003378467, -0.8851775039195552, 0.029631952539637556, 1.627182594637359, -1.6861395842059839, 0.6292290481847, 0.682406008509432, -0.5095030531653545, -0.9521722099621089, -0.6388344300460318, -0.5772777683838791, -1.768504048657444, -0.12486828822740705, -2.710759762541675, 0.0023258489785380324, 0.014426360922160668, 0.2369356613466511, -0.4229037653298213, 1.3097439434976956, 0.26604542532799075, -2.588127243208425, 1.594888396143651, 0.5925052644888796, 0.9705909006719786, 1.9448684641798724, -0.6662175357090948, 1.4201551440019127, 1.1144289943783716, 1.0339639318917435, 0.16236693974018668, 0.22866058379488519, 0.9756516437634999, 0.7827670007075528, 1.4291605184214111, 0.1425635709512114, -0.8298121705707726, 0.3808594689734864, -1.190827084305862, 0.24489332415355847, 1.537473504658689, -0.16435909871673574, 0.729043323064235, 0.3718664106649431, 0.8759685861446177, 1.3503287760208544, -1.876829877710602, 1.1869487294836043, -0.46360906843898575, 1.6319952781144886, -0.4679078892844178, 0.3019566853324881, -0.5911167575079511, -1.4394645379205677, 0.5577929931605736, 0.859783419341385, -2.730038809684732, -2.2046752020318707, 0.3178392950964248, -0.5405708467616278, -1.5853035306265457, 1.0472347618444413, -0.12868803569777576, -1.334506234783953, -0.2002447504170924, -0.8312158586489473, -1.0700864299667487, -0.5816575083386339, -1.444564720125141, 0.9881368634176234, 0.41559237120919934, -2.203228009393384, -1.3124156747116504, 0.8571552505820109, 0.13531874651144254, -0.4675631669026671, 0.46047984309596296, -1.2448804035880707, -0.6963897857140944, -1.5268032046077107, 1.5793192762828934, 1.3861500154147615, 0.3976329760516122, 0.33210097269712074, -1.029633034378541, 0.5036360744624591, -0.15310091506548074, -0.8202318877376544, -2.3522021442980665, 1.1727191156893433, 0.21132508721576324, 0.02809988895898547, 1.147583098140012, -1.2243972789001756, -1.0814149347615167, 2.4020614852937054, -1.0239197787768017, 0.17378640951329344, 1.3960851849781097, -0.24143668660477977, 0.2443110712560301, 0.009072583297063778, 0.9057206536914701, -1.6605725358192576, 1.2439317777852614, -1.994040010674294, 0.42624297192851096, -0.4520961258382193, 1.395422650355219, -1.5470053495610279, -0.6582614386860598, -0.6663087600476137, 1.6662309560670145, -1.0047296700732027, -1.6966244538121587, 0.5693209643385663, -0.33356410878312276, 1.3294924856265335, -0.05002491039850508, 0.7741007381550039, 2.7913841845632863, -0.5281867289372747, -1.3050671422350357, 0.9124525458651733, -0.5094719402634744, 0.9862217201686728, -0.371219624001536, 1.8731660164221733, -1.7374111063059474, 0.31654724546717994, -0.18747183724329983, -0.16670333251375402, 0.6382065313017116, 1.1210924413531107, 0.031356069321599796, -0.9542733459717523, -1.8263418008342494, -0.997506705259313, 0.976142766012272, 1.367653772220269, 0.09155111719634791, -1.2988133404256614, -0.45565885852196714, 0.2771977447392619, 1.7859221455972791, -0.7496082966908489, 0.598291958532036, 1.7576941297147837, -0.8694883023582128, 0.7557578109179657, -0.14463126883678534, -0.2999625793633344, -1.448895495516814, -1.0543253925693397, 0.5805139035360578, -1.0691217297184346, 0.8506835629644812, 1.6541395809606374, -0.02843157068985434, 1.7120633926020938, -0.5113762931039515, -0.15302992574080354, 0.8396809934229943, 0.7106285926274712, 0.31323163354999384, -0.707640744257204, -0.20422623347929544, -0.11310605714961819, 2.1840509664938477, 1.8004224186003726, 0.125481238942537, -0.8543692253398093, -0.25432319557234523, -0.8729979211417636, 0.2495244961155749, 0.5017854314348171, -1.5205591516322896, 1.0123849696118543, 1.3670228663125663, 0.7689210667975727, 0.7639572057277669, -0.10416908237852608, 0.036745950099793936, 1.4190094182084394, 0.6540910833930397, -0.26802640035571484, 1.7325665189285162, 0.08057749477046285, 0.6741991405191651, 1.1298319751085053, -0.14310266889919243, -0.5136604623632087, -0.1272709544048546, -0.7916674911337476, -0.9466815729805322, 0.9598853611130898, 1.187796819839448, -1.9650998938125388, -0.6547540730263598, -0.48279669282379145, -1.070933354450657, 0.4993487014918935, 0.8900708862566701, 0.27048559537100414, -0.60383039322369, 0.8306182596926222, -1.3474809023545886, 0.9650584886155402, 0.39789975023401647, 0.9416479649416464, 0.7805936235894291, -0.27486273060120686, -0.2080409885142518, 0.2470955746787485, 0.58596629912089, -1.1716119798598499, -0.9357050298849697, 0.4961499837746186, 1.852444390402921, 0.8958840058370087, -0.12251405030424802, -0.84714297827275, -0.1482672482559491, 0.207385561282133, -1.1827832895967394, -0.37001494395232526, 0.7497762505098375, -1.019838131220492, -0.16491618124061347, -0.3265530839531316, 0.5065714194654531, 0.8200643172908139, 0.9867898887317708, -1.4464101510228244, -0.7202718507420872, 1.1172344843849797, 1.5557706528251687, 1.494234811595722, -0.05983708486284751, 0.7760156787185841, 0.43254695071560884, 0.41463572121203746, -0.016775226790628362, 0.1169960107329504, -0.6876621363442342, 0.1682620551308916, 0.34137892203287246, -0.4194141090269014, -0.6047883663778385, 0.9861460109467771, -0.3443024148303092, -0.9451159647314477, -1.6155317228606196, 0.12910435869779974, -0.5295881066372612, -1.6153279170031654, -0.2674706751205753, 0.8022962151356974, 0.10247195694970049, -0.6367860733543881, -0.7979073045899985, 1.74925610676478, -0.7496463732971325, -1.352374981187035, 0.3824215588285709, -0.5279646300807116, -1.4170418311101807, 1.330094586653077, -0.22184455800574857, 0.27441224433819, 1.2014022554345205, -0.37869552670059986, -1.26672005253288, 1.9413065350557945, -1.3113667068497026, -0.3116956342960997, 0.636309003491219, 0.8369686257759157, -1.520963061863125, -0.33220663755318486, -1.2241268015091604, 0.35064067909236246, 0.03866255645538502, 0.9951669184605654, 0.8389051960653813, 0.6727579766503049, -0.591432586964897, -1.1027147658820875, -0.36466399597390325, -0.47436061990012, 0.40462549372983003, 0.7786309655199851, 0.6684769748908265, -0.6151721974228563, 1.2708290369454978, -0.5471806911179216, -1.5466073878959463, 0.6649368914246189, -0.24705365686699696, 0.18060597975027307, -0.568607976304292, 1.3016348903715922, 0.22722471624690296, -1.3524762958884906, 0.8026993550013525, -0.43691188112014984, 0.9510014445061135, 1.1868900427625304, -0.13936840753844656, -1.0378655370593852, 0.3666430364780286, 0.5400378839854768, 0.26449040647515376, -0.26325321078659764, 1.21960757051074, -0.9063141861433198, -1.5954881755755463, 0.9684313407230268, 0.7003728728910575, -0.12275170501622358, 0.057524045855927526, -0.8246453599779323, 0.23424203349125175, -1.6490012941021737, -1.5139903355174404, -0.07952698092825648, 0.7704598842576387, -0.3026785858818762, 0.2296048751452608, -1.853235079134317, 0.13773870913232955, 0.9100874408229894, -0.4848112059224724, -0.8447231623671091, -0.1658320144470764, 0.17984192661039963, -1.4810924992238497, -0.7051469780458047, -0.7295021452878757, -0.32829636851356314, 1.0545491599714762, -1.3544981081925338, -1.9829599457263636, 1.347132349937602, 0.51127609480956, -1.6871677034114667, 0.8588989448425522, -1.317728120958595, -0.008895708608480738, -0.699869408209324, -0.012739373751743608, -2.2110453093544393, 0.0810290613016803, -0.09075450805115734, 1.5123422786359617, -0.9044640416946038, 0.42937157779053936, -0.061324057689929594, 0.9651849382335129, 0.01665900795268448, -0.7296696109540901, 0.4588593993597933, 0.21584344612049883, 1.919985761592406, -0.9382478211345652, 1.3547289039509796, 0.16316761817104813, -0.5377027457638788, 0.499308058846432, 0.3219906586517345, -0.9748769377970311, -0.25126229697082963, 1.4384938437093573, 0.4352491565539647, 0.29810691026513636, 0.40282193481726397, 0.4200743096339161, 0.0362650386523446, -0.35885446645640834, -1.2454224355003032, -0.7159866343152436, -2.307802917532492, 1.2911784825744077, 1.3346874198859953, 0.06093895301408101, 0.7051958480558016, 0.08474066581660433, -0.8094465999296525, 1.6350528888774065, 2.3007303172367077, -0.6094246071157527, 0.10265467604842406, -0.1516065959878869, 0.7746045450504284, -0.38343790293826907, -0.832585785350589, -0.13017647322903925, -0.6995555890382341, 0.2352797351249864, 0.36100627051303713, -0.4885118614463778, 0.8059533945855513, -0.2771328990574352, 2.1122630384136296, 1.6266871679719672, 0.9392655818930974, -1.2337389239640584, 0.2514265237820802, 0.6563096109235985, -1.1987494267577123, 0.29367847288891585, 0.5098881980147509, 0.6713284797974832, -0.2631452118423369, -0.00698066236305024, -0.4686976621309279, 0.6796995467022994, 0.47306275056749103, 0.6334456454434237, 0.5380303756518591, -2.84332961927779, -0.24113322439347787, -2.035220208209266, 0.17060615599112638, -0.40892264193357786, 0.014649811991517294, -1.508588558935951, 1.8496123452025404, 2.140268355293433, 1.0464968105259569, -0.22785253812626274, 0.4157783864721383, 0.8205973248291486, -1.400948131687456, -0.052117082410144344, 0.9546685791961403, -0.45342619550216406, 0.13575974163255586, 0.39170600679556555, 1.228108896568591, -0.13818931927321237, 0.5024792540226676, -0.18921642563271013, 1.2399642689057442, -0.5330637373696535, 0.7297718353029875, 0.6168337158805175, 1.5471736576437236, -0.285006963277032, -0.9882113679279215, 0.05953064519313646, 1.7333941514662183, 0.984772193639826, 1.1108306774982448, -0.6686602790804739, 0.8407999996562073, -0.8608120397289979, 1.0019528431126377, 0.1384159843826418, 0.8419563611066063, -0.9015970299352091, -0.1860848160236182, -0.9527342191480876, 0.6509234961558064, -1.4973761415069233, 0.2966493746345238, -0.9487122210449613, -0.9754853616828151, 0.5313473368234518, -0.7979994597142024, -0.5373243483482543, -0.2530882586846621, 1.2502367975027313, -0.2640847648311163, 0.5726907509054766, -0.6786691975064917, -0.42052915477530256, -1.1922589370630492, 0.7649490879847941, 0.47092662898576065, -0.65248117774918, 0.05911422112921095, -0.02178853967047464, 0.018967304864487534, -1.5582464960236686, -0.3153349620214353, -0.21991973575572668, 0.3140603323293498, -0.9733475953849224, -2.4509018421863162, -0.9600917342694734, -0.12058704728261381, 1.2175899112663289, 0.24886152830022454, -0.8701990686729053, -1.270595790298058, -2.9934237257439094, -0.014535303676602296, 0.5577996122853824, -0.22980908295521535, -0.049535405240140794, 0.49857537291568865, 0.8547164600650927, 0.4886663326296541, -0.8096580363517644, -0.5620195850085686, -0.696754141010888, -0.10522936933004914, 1.086061303494308, 0.08440952512087632, 0.38832815770187445, -0.8749767929680096, -0.2907949924195056, 0.024897247318250056, 0.9633404868556761, 0.5483888145729515, 0.8461354845848542, 0.20934233011581954, -1.4361410410817512, 0.9007814116768239, 0.7808139861762853, -0.7600937730596098, 0.7073930169778673, -0.9250269570082682, -1.8066068154771802, -0.047749331453493714, 0.4914941869359262, -0.17221581086560803, -1.7726293773648067, 0.506345458151043, 0.8945499789224047, -0.03858790510260642, -2.5521706522662413, 0.2889011371403715, -1.300686849508186, 0.4450674628190938, -1.2887781075185538, -0.6695771513879318, 0.8040180216064652, -0.9414127555533114, 0.8513659089083636, 1.6858918837433954, 0.9735797125556291, -1.2219405625598105, 0.49349130587755374, 1.8753877862893147, -0.8382085963196297, 1.1109867263114714, 0.5006972422406678, -0.21148958482923974, -0.8927143145773998, -1.1205199243074078, -0.39578822124780316, -0.9542311347662703, 0.21262173551839808, 1.0613730954832188, -1.6618986882786995, 0.21876874885558703, 0.5627655497437042, 0.32016469151703014, -1.1631007552449957, -1.6294291855366954, -0.1733078660715968, -1.8661363971004865, -0.6913790257250731, -2.0546253037371165, 0.9212415181920405, -1.6095913698416136, 1.7918721646362767, -0.042009163631768036, -0.2123920095725748, 1.1217828297555847, 1.6420262628239066, 0.3711278786527237, 1.2502804120816358, -0.7769177573716023, 0.23773644276198522, 1.1193614409726447, -0.24263242549767464, 0.10572649540122489, -1.5907185683443097, 0.7233967547073898, -0.9251558356800031, 0.19474218950433364, -2.3172092797963537, -0.49505923979726074, -0.344969640558167, -1.9776802016479396, -0.6384390060813618, 1.868588341297947, -0.2018506673042714, -0.5843804952396426, -0.0985188164601046, 1.1856438540529508, 0.030037071454674616, 0.10958620336886035, -1.0157354371453642, -1.0651610100343196, -0.07838570570198013, -1.4634576056890471, -0.8699774689159254, 0.3301097473983105, -1.2586448994278283, -0.5904355726277902, -1.4968699329185724, 0.0842266034183036, 0.5039016410235594, 0.9322629467086956, 0.32779923599660166, 0.7852686469728479, 1.1037229808432556, 0.5636363063278512, 0.4704159872021162, -0.005174249725419392, 0.006153114326899546, 1.0004542199697941, -0.7121495322527626, -1.1984566570190278, -1.7305389123120907, 1.3864091466404727, 0.04452667764045776, 0.4107870504091736, 1.4476780037069963, 1.3611863196124865, 0.2934293991065782, 1.0413345144091637, -0.4321711772058179, -0.36608826099482417, -0.27093087772807484, -0.3017185398642782, -0.45969278505495187, -0.4184280085408068, -1.0193889238414702, 1.3360007719220979, 0.09691845276375138, 1.0383029395735375, -2.031920980887669, 0.752657099195872, -0.9905726587473235, -1.4023476147058482, -0.7106421272491177, 0.07246800485005381, 0.3068454058220046, -1.0469438001497693, -0.15719285900454094, 0.8860622580565193, -0.08806827777388075, 1.3902626648775436, 1.1550908148196306, -1.9549979729486269, 0.5224495784470977, -0.4879705505600223, 1.4017968312431557, -0.7436545667653945, 0.28242065190073423, -0.9504932673116974, -0.8717655110957921, -1.7975283160769295, 0.3432852775623934, -0.8410844686010314, 0.42536297264972656, -2.0722629943589106, 1.1320003178399483, -0.819993800632521, -0.8194479952615606, 1.7734855214019174, -0.40338572763237557, -0.8925739545442315, 0.6683175802047355, 1.2901603980544096, -0.49331523621329443, 0.8961540391195003, 0.7879323253873389, -0.2336774801881814, -0.01759947191042878, 0.025429407355577388, 0.14794749405727678, -0.747041341736786, 0.29261263076530236, -0.2989083255182447, -0.046089124498206284, 1.0283886802372137, -0.08494171692432996, 0.6753096273638811, 1.927728991227815, 0.0511186211706223, 0.1024858150210262, 0.3586960906263001, -0.0754012098878702, 0.7260349743385635, 0.8381707760442922, 0.04809100902636533, -0.34995252360069795, 1.0019624500734217, 1.654288010074898, 0.43899583585928986, -2.670569666056147, 0.34181003713576186, 0.5698898272392939, 0.7105540647856504, -0.31364486495710064, -1.07964967193972, 1.667789942450146, 0.6025845135155427, 0.3869801869482356, 1.2567779382641189, -0.8667825660232241, 0.7090254239840327, 1.5502507171637518, 0.7768697854660773, 1.548503686070617, 0.9746736760751781, -0.4945196553787016, 1.4085559241676948, -0.12832570425201087, 0.033090714695604484, 0.8606564806217012, 1.1127860957547784, -0.29344565753458907, 1.349707233076594, 0.0996204660836322, -0.5838092840682403, -0.5691124723989703, -0.7867510623495466, 0.4231747804142869, 0.5311570424703035, 0.49460012273604864, -1.1415638234948196, -1.6571335542155172, -1.0394824801049531, -0.3869875554156757, 0.42394905466689087, -0.17303222090185028, -0.17310010146523655, 0.39142157956624773, 0.012377837845760568, -0.2543401573567044, -0.199929635876547, -0.5425359978567162, 1.2204999563700194, 0.6242240777335115, 1.4568574389470845, -1.7534402161074452, -1.0518555085026715, 2.4096489187463157, 1.1895587320903787, 1.8446227288091979, 1.3199112285853842, -0.583539201625334, -0.26132330663924896, -2.174106504500153, -0.5680208073800986, 0.25795341929535887, -1.5577450063827274, 0.4910567296210606, 0.37979687520579464, 2.1264866066162473, -0.004774378462075724, 0.48370008690465865, -2.592198812389165, -0.11647833529972221, -1.7630784784038542, 1.2617400607673008, -1.8045012734063597, 0.5612585406846196, 0.5279616089312724, -0.7293104205294869, -0.08350775164068498, 1.3488966044404123, -0.8900655669355296, 1.6322617679759603, 0.43481963527823225, -1.182182721115204, 1.042686090224293, 1.5363893165112803, 0.37504538252648323, -1.5704579280017317, 0.7346168637645737, -3.274269750142222, -0.4513614439650183, 0.4083494763364217, -1.2853329941494276, 1.3736458991988543, -0.26591189290898753, -0.9362404272090832, 0.10713185228117678, -0.8462153428442165, 0.7496675511901779, 0.2966862317082561, 0.40432597464125375, -0.1584404098100615, 1.9281125519110258, 0.38262725763221156, -0.31474953826986307, -1.1849807026717352, 0.26551682858834563, 1.125010493910388, -0.189118561759541, 0.13295256071162895, -2.2086629668919433, 1.0258855783770457, 0.6817582079232513, -0.09795026331158962, 0.6010432821673601, -0.9963780148460979, -0.6525080156682604, 0.324494422937741, -0.2555744331890727, -1.2370227487307237, 0.10344522084005478, 0.5223672753554187, 0.07374049129837335, 0.6343407680335289, 0.44269679087814856, 0.4133887960069559, 0.5634875655308352, 0.8588311710209116, 0.14489724476422866, 0.08354531121988615, -0.9394721462566739, -0.13588385424839394, -0.6956229471288392, 1.1282558848430546, 0.795896453494474, -0.6417013132367779, -0.7991696160360222, -0.6041876430718995, -1.1552140546330267, 0.3275057928851274, -1.838624807036838, -0.6083448016360302, 3.1157439714734076, 0.7777313609614047, 1.8014544129077108, 0.7835880011332367, 1.4607184424492432, 0.3990869272635291, 0.2022520896865562, 1.0918383273267938, 0.7935144434841079, 0.5873655594579891, -1.0069046232838204, -0.05708662015131034, 0.9433666774937481, 1.1430026405567149, 1.9526575371186556, -0.18286844789961648, 0.5598821376777084, 0.946846974065569, -0.4403207490148434, -2.9476884744045138, 2.2467758115866983, -1.6341068419740767, 1.304542573427752, 0.12429222344212065, 0.1823766763509023, -0.9025230245999754, -0.5145057570093466, 1.1827646485050405, 0.16981495325614973, -0.5642832690763334, 0.4190431341760655, 0.5154194835619988, 0.3460535477964218, -0.2963521903754045, 0.5737269091888291, -0.7998233582498773, 1.1276382000190333, 0.804045872918595, 1.5306447288909686, -1.108659083751385, -0.3906924296880526, -1.165088166681864, -0.7099273959310108, 0.07481385750098381, 0.14592968034948547, -0.017394746982836967, -0.4139818078466887, -0.4705308245083749, -0.7329771804816974, 2.0033195319526493, -0.7210661076499472, 1.5572575999151155, 0.14169818949756513, 0.4689739947147696, 0.688991391878157, 1.0753837349275508, 0.41673942532261443, 1.2950598221819714, 0.9089628705130085, -0.7239694456403886, 0.2785547387611756, 0.09029159034915567, -1.4990491687445977, -0.15101294663022427, -0.4774778338945309, -1.1694566413989445, 0.5501931236481263, -0.28934761744687854, 1.1474728922558826, 1.4041266327852917, 1.5682706460025393, -0.68504365090819, -1.0060490258898702, 0.40360944631588136, 0.2700539456573973, -0.19565104130479605, 0.44615544088172704, 0.11527091722168054, -0.4297419983211934, 1.3327643371630762, -0.9135989982055771, 0.07289495645285966, -0.9102294021284778, -1.5403628581266602, 0.4520388361524522, 0.38407446239109866, 0.6497053224944023, 1.6974935743310133, 0.7768808706783039, -0.8090997723410462, -0.2718604924834557, 2.1758516130542747, 0.6271596544607086, -1.1462817470271824, -0.13979497153144363, 0.3164251158333902, 1.0262892398233852, 0.6323323573684613, 1.253918832846227, 1.0650768919584004, -1.2073784258905902, -1.0257710143974903, -0.8803356359211165, 1.8628264313203735, 1.3964987962945357, -0.002414077954566654, 2.4781028540694185, -0.42080218523849183, -1.4818056375053223, -0.30164387810204185, 0.38894044733242544, 0.790790259210817, 1.0217526282130815, -0.9721939014156862, -0.25560348744327227, -1.003733026463808, 0.2818868184784364, 0.8379861496819625, 0.30848753956197394, 0.24136850849726216, 0.3139397848264698, 0.25893200230024643, 0.5256379322015687, 1.8337060446574878, -0.5312026690105296, 0.07236278356524886, 0.8493773651561872, 0.3743756078962967, 0.09114302094460254, -0.043442344429705834, -0.898220379303931, -0.29281169502224436, -0.38040823469480317, 0.5972860264714817, 0.04575570206035714, 0.23386893552064442, -1.2749854757626105, -0.637499119763946, -0.3354097748450265, -0.32983116373808957, 0.871713487208256, 0.5510013580406301, 0.2672069445083893, 0.570409865244786, -0.23768779354608732, -0.0051106778005059975, 0.0005747332646779241, 1.1664325414853947, -1.5390587995126401, 1.8148153707081125, -0.15910195189442422, -1.9185356551221107, -0.11919996866626888, -0.749786719199211, 1.1040920072630371, -0.30078467127318126, 0.8304854014067167, 1.9259423817146428, -0.5875784788320833, 0.0693423341667778, -0.7931090511526768, -0.001012849214337737, 0.07492692889282138, -1.1127131600355367, 0.28728920940293595, 0.34276926513353234, -0.6471410091942363, -0.9168952303357447, 1.1832998573022169, -0.01998779783818494, 0.5293039658334983, 0.024771429661875864, 0.15557190245444402, 2.866473465879619, -0.8092686218197054, -0.07821402673610879, -0.45238568003627994, 0.41292628708286544, -0.3234493358714611, -0.5790488492427831, 1.3115954878568838, -0.21212064749121454, -0.7737465342619847, 0.4531776367919562, 1.6575508220725794, -0.2597836434335015, -0.020685524182653032, -1.7633992535394947, -0.08361464583407299, 0.8391976363100334, 0.44519749210201387, 1.416657522957605, -0.5999337514614985, 1.4608058635880021, 1.1096804458762348, 1.163311698542779, -1.4228876341336234, 0.0885193201108121, -0.9024045717719368, -1.3884304638738143, 1.2769889447385114, 0.016059513441568415, 0.6426901103422343, 2.113412654731452, 1.1626784452536505, 0.2563053696141628, 1.5390121321360741, -1.0237653697770575, 0.7971046348177337, 1.164982048860181, -0.7500822307196515, 0.7064501511418232, 0.1908383217028716, -0.7310234764788558, -0.18802483333441244, -1.3872470260034606, 0.9186320317632458, -0.3592182942753926, 1.9692885316669066, -0.494170429170751, 0.9593197500647517, 1.542146437077228, 0.90962372247144, -0.19192442300477094, 0.22346897073153052, 0.8789757887367955, 0.4375954087834384, 0.6689604253253106, 0.21551950283636467, 1.4157238186473375, 1.0724335310355584, 0.012278293709900447, -0.7034938997809038, -1.300829195476268, 0.8097842324929564, 0.7738885542754105, -1.4944275245241136, -0.9221128623248576, -1.5638748050154325, 0.4877710416042417, -0.3772665768484571, -0.3046778505133001, 0.6745030960352407, -0.38547811479163346, 0.045432115764823734, 0.6101285864049172, -0.3432845629963041, 0.042061424680248156, -0.85395439096975, -0.3420970936106032, -0.3045130226089879, 0.01567013427559793, 0.5602520424994625, -0.329790882644846, -1.3416172007418343, -0.28213345854932986, -0.36751146530048456, 0.42717125879338513, 1.6518300489915245, -0.18264758339636084, 0.14460582122141477, -1.597154113960814, 0.9745898176327715, -0.38756353602275717, 0.6880241572986769, 0.6843326397834256, 2.063274262298994, 0.7080459223177676, -1.2093285642885345, 1.3394256534414497, -1.5202366177405604, 1.5059950209165964, -1.1353093196069357, 0.05755375478267787, -0.22719127758262087, -0.7407268126226441, -0.1347597537137448, 0.5944041596811759, 0.6639712995552193, -1.7023032112392664, -0.6562898216863825, 0.13380890864756978, 1.508536108291432, -0.6837053448890353, 2.7293943854095746, 0.919788383868631, -0.05157055581524487, 0.16691983618137196, -0.7666025914227209, 1.1033851386771796, -1.506764043678734, -1.5202609022629956, -1.1097095885877162, 0.3006788650684246, -0.8277568187038222, 0.5393502594646936, -0.2522462106826474, 1.3040364681429557, 0.3999527772881722, -0.33161190729753276, -1.0476959566228865, 0.29836238334366344, 0.5101686586292423, 0.8835813717413972, 1.280682757027406, -0.681552130971029, -0.30570443985687534, 1.2068144211967113, 0.2129182849498326, -0.5741384812670383, -1.334552893868016, 1.3852757741672097, 0.4376555397795512, 1.6163815630395515, -1.0333361361749287, 0.5293645441949069, 0.5994631268658339, 0.05970537228612306, -0.3524294525464673, -1.0541475456629283, 0.09926047341018272, 0.4540597203303289, -1.4092714659747105, -0.9966097773379425, 0.13548191517426209, 1.240873187248956, 0.4575272143333469, -0.17123793750353272, -1.452660879884997, 0.6960827072458362, -0.7123380069070409, -1.1302216207237743, 0.3886646826078261, -0.1642189059934075, 0.7206298431775927, 1.405484864969816, 0.06692211319610335, 0.7738692384433011, -0.9305603741619283, 0.2290808685919225, -0.03544877370461037, 1.0078329232426997, -1.3023646044163806, -0.41236155010645753, 1.54816413997891, -0.4599700345877566, -1.0907425374818716, -0.3105648137102514, -0.2212578920871339, -1.1064317105712451, -0.6627672942879448, -1.0547320681027792, 1.1336052132304326, -0.5717534238594898, -0.5794248593350664, -0.02397397767861959, -2.3110747882117866, -0.785646920119158, -1.6882158736095856, -2.0080200371120016, 0.771667488952856, 0.9846253305266753, -1.0027036204800404, -0.7166939784064452, 2.192656419635805, -1.2329380417836961, -0.8509056381355499, -0.8886257355963112, 0.32128490373502655, -0.054307065149682913, 1.293847060080512, 1.4748545293983657, -0.7866832727369362, 0.4151030649919218, -0.4521034504041851, -1.0293112981586032, -0.1393120840026181, 0.8107801054021673, 0.3277377540829989, 2.275532004133502, -1.0759468191846444, -0.31959125988355147, 0.6941863451982412, -1.719312317756494, 0.16450448518950234, -0.8121570064179248, 0.5416734441168997, -0.072763050133951, -0.7501896953483614, -1.0126868979476342, 0.9452430127163977, 2.277777949262384, -0.8707170192851867, -0.22779460541634525, 0.4316251678069271, 0.06978116595233981, 0.3656150399283647, 0.03601097138885497, 0.7753427420173298, -1.5212949267039815, -1.8981437903104297, 1.3335155683049706, -0.43667977203541203, -0.7329580116232806, -0.7453709755293848, 0.279036072262081, 0.4587979614698795, -0.6018151098898399, -1.0586401103863787, 0.12950006597303626, 0.5774076866499765, -0.29625365173337215, 1.3233393625982541, 0.6509769770820069, -0.324394278767805, 0.9122164894617196, 1.2330120212745286, 0.8413170080682144, 0.09266076632595796, -1.2665691720444003, 2.1281484567704947, -1.5854406386333417, 0.6195615409289059, -0.3530431462325574, -0.2130059057099421, 0.09462362449469028, -0.23088575178817794, -0.20974353683022146, 1.030505990986575, -0.6408178216075837, 0.15050196585576692, 1.1807566779551477, 0.38250941106753095, 0.005824894585503291, -1.3043725578046526, 1.4359511266474156, -0.06484683496623489, -0.9100683831658798, -0.6685578994843432, 1.1471125518299734, -0.17179787151571904, -2.124123899374798, -0.28337077706006514, -1.5661057802864344, 0.9995071124935793, 0.9233141394330963, -0.4350174711034363, 0.2650134379928303, -0.16622605045758845, 0.9311202505357846, 0.35404769119059354, 0.7665835986784345, -1.8436937554845925, 0.5045212444301456, -0.10823492350993859, -1.0171299433629244, -0.2455832233449096, -0.33518630056966664, -0.05039358747425595, 0.16525300551981298, -0.7668067750567544, 0.5362211040543814, -0.23397395875253804, -0.2556391286055139, -0.45252768936606064, 0.6272678838235423, 0.3993063897279738, -1.2110287527693906, -0.695631909008293, -0.2011208518418418, -0.27011060508604234, -0.7397103027224621, -0.38223398759700355, 0.47176736537151664, 0.3504971280094897, 0.5439453831538343, -0.3258020325402663, -0.23740933126777078, 0.219153138488317, -0.382560250599931, 0.5776141651364656, 0.60089548440598, 0.23305903462345895, 1.1630032009610023, 0.15075176507404456, -0.6894410070169079, -0.07670040483141886, 1.2310903020666901, -0.7193994879884065, 0.8411680707695341, 1.130413333713237, -0.2399189721040934, -0.1754343089929726, 1.1770807032695678, -0.3057656947404155, -1.7569580016990847, -0.9980934491750802, -1.137306669205609, 1.870553761775206, 0.6234174097265065, 0.07273310904560532, -0.023291221352843314, -0.7407857020793305, 1.5910660707874387, -0.3021082799016345, -0.860398849017683, -0.9803932809681773, 0.6738701308386537, 0.17110927293180547, -1.7178284618217603, -0.7975065019681215, -0.49893098723702745, -0.3731973947183247, 0.10126654438439446, 0.3569039984649947, -0.22573308738355932, 1.0026759866456778, -0.7148585912357719, 0.4989822497375221, -1.0512712750113722, -0.6109096381469589, 1.264289106188138, -2.429152885563398, 0.8649886621052874, 0.5296559819296408, -0.8031620706934257, -0.06100577733185255, -0.9365253350922872, -0.5899826254813618, 1.381032851737412, 1.0822274971340806, 0.10561129113038775, -0.9172757075748799, -0.7083138384921468, 0.40523822179035573, 0.43229549941467876, -1.457586755016106, 0.6285530339610375, -0.26015675673444827, 0.3535028488338672, 0.7142225596767381, -0.11291667755921095, -1.0568366319001583, -0.6083302891672946, 0.1401102488751251, -0.15747839083461573, 1.1329901552458854, -0.19354375621922287, -0.04453249790684557, 0.8224949317764464, -1.0368024361051453, 0.8480924860147512, -1.3763476143295668, -0.4236206672960226, -1.2273689821416789, 0.5556238436525356, -1.1712789780671802, -0.49303627231830993, 0.6867466908551778, 0.9011541423872066, -0.0025683544471791523, -0.5780900357145816, -0.7383840547501856, -0.08940129287282413, -0.3945487094697961, -1.2003061636990462, 1.5128060034179969, 1.8456211483415634, -0.22357664934430072, -0.044178713314854255, -0.2831302833337364, 0.20068715802647974, -0.3456269542004741, 1.028161422573437, -1.800721751788094, 0.07841534902950457, 2.0492076866524624, 0.8047984314970286, 1.5932037909729295, 1.437589281658774, -1.3874431116884767, 0.4209289511141472, -0.0185913264774283, 0.5195112027174997, -1.584977394071786, 0.7178610552513681, 0.09229215888826908, -0.2787102058369039, -0.31201116848355853, 1.3132329692439357, 0.582782997520692, 1.1635773863586285, 0.24542247570909312, -0.4792579553671258, 1.9271593624725696, 0.6309719515730005, -0.3083524286215313, 1.095995013098013, 0.5543126477153816, 1.4983884783277734, 0.527536385916855, 0.046645815902169194, -0.06138574678146682, -1.2671020577023724, 0.27212817064374456, -0.027255169737538713, 1.0208756134601364, -1.801607121091521, 0.929253192464232, -0.2778979747786694, 0.5019863011256254, 0.5665654402469856, -0.3564130238534907, -0.33885445373994555, -0.6375642908444171, 1.811290644144917, 0.5569646105193741, -0.9537438412031285, -0.5956970226130401, 1.1003539793858197, 0.2138480971465866, -0.05735132219343522, 2.2627661951537372, 1.9079642107116237, 2.185664786208806, 0.5666708645418773, 0.9552741873304011, 0.2828632586913295, 0.25917731384590087, -0.33006230594202957, -0.4178099820637831, 0.30178442376838466, 0.31497020806244663, 1.8964683520171708, -0.2085954516163079, 0.6853902915180586, 0.9606987455469127, -0.11104098207830854, 0.8655540276851632, 0.3634254211846703, -1.3504245454783443, 0.46603018536034824, -0.3337755518879285, -0.16133838769626985, -1.0864335241198078, 0.9160524768270547, 0.5050291394574244, 0.6085264035550987, -0.3685653642341368, -1.6619666722937805, 1.1370376888938485, 0.8471439091399526, -1.6244781531687948, 0.7355398982146457, 0.7698366489600756, -0.9402579526481496, 0.14409249713233133, -0.23473533266056926, 0.5178793183116647, 0.638139003008223, -0.3324663087908985, -0.10285394435585778, -0.8498281003144492, 1.7280151924619165, 1.1222306386353575, 0.1415691637465364, 0.8666850697870183, 0.3150247593631394, 1.4092135862405881, 1.2104706551769724, -0.5170990970050717, -1.6118182119909321, 0.6475991804174331, 1.415306126298424, 1.2118245232993161, -0.5294019832142208, -0.7264249193934444, -1.604752891961398, 1.7663132018619243, 0.4490182172839704, -0.020151940518778763, 1.2681989711126844, -0.5488347332069115, -0.011840413808833928, -0.7773035885723855, -2.27260750497085, 0.026883716575915616, 0.19453415152245424, 1.113218748093015, 0.7956441645943375, 0.5563653591163122, 0.36334968264559564, -0.05316392660881118, -0.04955296166577576, 0.771540522026642, 0.6175067481078124, 0.22593112014885827, 1.9474793508383574, -0.21451877688150878, -1.201113595585325, -0.7091284183901908, 1.1192244956922694, 0.37560396607125407, -1.0532050365471914, -0.0010127330122183, -1.1286763999361924, 2.0537352857306908, -0.03057264443732015, -0.1919621952399767, 0.32538531493040723, -1.2517670506513787, 0.8931740233608697, -0.9879349574197156, 1.9208819252458884, 0.19891676113054826, -0.27705972992140443, 0.9037428953728172, 1.7262422092358676, 0.2068713269891942, -1.5948227884445059, 1.4790097729820162, -1.444301608001848, -0.9393108320026938, 0.5651910266079966, 0.4202092978238679, 1.5400873478166563, -0.22776558345610678, 0.5922799377033867, 0.9861874371328639, 1.8425436530577644, -0.9113072674812183, -0.1915223314214309, -0.07414328377309795, -1.3931455790233795, -0.6973731549994968, -0.42249659730852335, -0.39145706416132287, -0.47708989906214494, -0.7706548071783146, 2.5041060398981654, -2.0818105061906067, -0.05526550086368636, -1.3704710842859873, -0.32323318259646305, 0.5309858391829257, -0.09998444369052914, 0.7207329791427733, 0.7947431215378468, -2.0354773672960422, 1.4588313913275754, 0.13190684189457894, 1.566528271775994, -0.5629687464817834, -0.6954111575207863, -1.8172277489334392, 1.2629333596207333, 1.199495488287343, 0.7691237453517062, -1.952210797156453, 1.4254031058532555, -0.23324821020458053, 0.6535408532130107, 0.11344909551746787, -0.20730312115647048, -0.4237605753047904, -0.5597030084475542, -0.03971571412715133, -0.8648049718021299, 2.503004592434702, 1.591676453590184, 1.2681887935645215, -0.05099461112013773, -1.7953849875468932, 1.1645174109085628, 0.15857448142245562, -0.2488508995917448, 1.4002847183256886, -0.999967396358136, 0.12943426372171138, -0.8916397021082814, 2.36672718589343, 0.45152770306954326, -0.37135832519400963, 0.6829861037007481, -1.092916903590921, -0.173099866237782, 0.12896575165462743, 0.6228359674914183, 0.16397156657751807, -0.4819919494536288, -0.3191810585311024, 0.11524874874316951, -0.9341937847270345, 1.0500511621483355, 0.2400220738999616, -0.4047317373660004, 0.61076014095006, 0.7584879335513488, -0.5211507488939751, 0.23665202048742537, 0.0001335832835163413, 0.20676274487390264, 1.4001330980469069, 0.8662243745425411, 3.0563844407906626, 0.3170256588960693, -0.15099417428998024, -0.9021664596267246, 1.2506792387558323, 0.34224889762698857, -1.655525126462317, 0.9578120107233596, -1.1715695362645595, -0.6443348058710999, -0.11510853057760126, 1.0261846337797538, -0.6567008055586223, 0.9087956295798215, -0.47376432812439945, 0.01852015030304731, -0.7722961004053932, 0.18739949542108994, -0.5461966358396709, 0.8640890337082676, -1.161707948964597, -0.9203857188915379, -0.21781273697261105, -1.443527336372092, -2.0954674677627945, -0.7989147625403227, 0.2556465749520296, 1.2879464963324818, -0.4062856060960831, 0.3038194720535158, 0.38013588723118885, -0.0297112861179982, 0.058166576747782826, 0.19932704823173653, 0.6737842828290965, -0.15532925430634362, -0.4199880511848547, 2.1502650150905, -1.1487816943605842, -0.5799754460007435, 0.41872617169025034, -1.2573436229553143, -2.791760511538524, -0.954165658882307, -0.6888608896315681, -1.293200673499341, -0.23339976886445102, -0.022470669588825973, 0.3277255633221679, -2.7761128597894977, 0.4650038397133708, -0.6628591720946089, -1.1163525532407028, 1.0131342187248018, 0.4532359853539363, -0.2005541222164737, 1.4518923551017038, 2.789292496989627, -0.8821866725174761, -0.8228757304298673, 0.5506566643161845, -0.2310195289898113, 2.432452380960216, -1.0441036980112994, -1.2281067554701852, -0.8423244505864641, 0.24616909496832137, 0.29664137780468086, 0.17163972052424506, -0.9394530645107567, 0.1841450092299021, 0.2679000236534305, -1.4611144844364266, 1.0995937903482178, -1.0440013329939528, 0.23584377625844186, 0.2244218028809109, 0.5865317052293683, -0.5087603348830189, 0.24493552225279971, -0.07897075853547574, -1.6881792225956536, 0.2936196002964932, -0.7648768736059132, 0.4678214028976303, -0.9128557819098557, 0.4313007662392358, -0.6072112509618712, -1.730160606463231, -0.6159122039756624, 0.8166280703811757, 1.1592349867942575, 1.4775830658683033, 1.118936024230429, 0.26295552553205137, -0.27848706834148723, -0.041899991050332326, 1.2464649300475543, 0.3645588824479645, -0.5045689257601953, -0.3003745538740725, -0.42890197963639476, 0.5034915051021104, -1.7880772086361738, -0.3562394022885134, 0.091071565028988, 1.6637469855244127, -1.5126651792538686, 0.588113515365406, 0.6199450870582531, -0.657513340086041, 0.6564123101162456, -1.441789837863388, -2.0925591516851663, -1.1261527439477075, -1.763438199428286, 1.0318430195851145, -0.6375157614649074, -0.9368578521426157, 1.2089097360137713, 1.6552872609632243, -0.3505356180599346, 0.7641572197674014, -0.8895233191389793, -1.6425467757008958, -0.22472344277560682, 1.9364845509987183, -0.6880174785947274, -0.7550829073365397, -0.07457180062203603, -0.3021367778315559, 0.6751568049632063, 0.7425629019318082, 0.2259877198836669, 0.4984052019925365, -0.6406995494820158, 1.8617299357915313, -0.03554804522441791, -0.3823870295147862, -0.43070999082560113, -0.06948401632892064, -0.48804071220032164, -0.6818858100416897, 0.9220039681281424, 2.0772935409234288, 0.5000696818614911, 0.522622113325042, -0.5771130693344587, -0.10075271494050193, 0.1730151405287958, -0.04598926208143001, -0.5778594812952389, 1.1806608305564683, 0.2666819330631513, -2.177012068066148, -0.4047332989743306, -1.473209769235922, -0.19926678068818315, 0.34066899115242266, 2.118862791753505, 0.9618912402448354, 0.0918598353323613, 0.9532223063578259, 0.4578878046548545, -0.38417512875615994, -0.24340926010973024, 0.8764652117900549, -1.585830940795163, 0.20650422930421442, -0.9838291694202858, 0.46254922198429754, -1.2031709787548297, 0.4999037288130697, 0.6609498170702346, 0.797548035691083, -0.04717500316054872, -0.7428796967097727, 0.06500719434970793, -0.05449182146956941, 2.7345877203409685, 0.5500963785399293, 0.34865983799069, -0.9593135210195503, -1.9218891945470062, -1.2017650885493387, 1.4707640795947052, 0.5955832980225864, -0.037555652799121556, -0.4765482344722562, 0.5936703239168746, -0.09676140004130672, 0.4054605212662787, 2.499991380379017, -0.5029808830051699, 0.4494591064279264, 0.22966555721239684, -1.9442361662447856, 1.2533282999572888, 0.8746024862968613, 1.5371269239655903, -0.08285892705778092, 0.663983423111583, -1.2272922771076151, 0.10992246148197518, -0.003126766332454217, -0.17342316139296834, 2.6629684182950806, -0.12059052711231022, 0.9860119526252081, 0.621294240148525, -0.8506596015430694, -1.9692200547926502, -0.02232919297474199, -0.8982364424264004, -0.8828858394145346, 0.588820005693429, 1.6126304870539205, -1.0660771173957873, 1.3824847178539341, 1.4619029642098569, -1.7540767723323958, -1.3193623435130317, 0.003612025196819212, 0.3494393837877734, 0.07878879698225326, 0.8779873036939356, -0.1837829695258845, -0.17641088643441508, 1.2421079976377378, -0.3628134091049174, -0.7881448549892983, -0.4303448604020054, 0.036138516905567665, 1.1941168305715393, 2.9728753302817985, -0.576665914187961, 0.44979962871883244, -0.3114636909983607, -0.5470254644690072, 0.5701339857531714, -0.8340051076741241, -1.1551144304801229, 0.4188932536584184, 0.018828063319239065, 1.164880130523489, 0.4109979404914735, -1.6559522741182942, 0.3247924959621863, -0.24503204868096062, 0.2460952293581786, 0.6213550414064116, -1.4389018350187022, 1.156245849965857, 1.4537847469414527, -0.1957740008879344, 1.2942232171910304, 0.08415391422635231, -0.08108408543819333, -0.01710719771838065, 0.8409744461900939, -1.284098081259562, -0.4481431481116692, 1.0951428887189454, -1.3058128629273118, 0.5252084829822992, -0.08192986780632307, 0.7145006340618858, -0.861592194304922, -1.0411095607847083, -0.257671656569959, 0.24030873531949587, 0.2784232663025096, -0.3748308796405524, -0.43463422153984566, 0.89447766579159, -0.8519915377275966, -0.8111422579731726, -0.34998891484719946, -1.2181716515020646, -0.33955132309656927, -0.45644358825755066, 1.7945510677102718, -0.3707571772215267, 0.38138497952210576, 1.168963948447733, -0.9569025182623069, 0.43618031110990724, 0.09827531447434987, 0.23666804870917374, -0.2317750853256228, 0.33822628369450847, 0.48452002522526716, -0.07175503942920718, -0.28701910060216596, -1.0023989032444371, -0.1998027551503894, 0.8287337204744126, -0.030026980645511705, -1.0441396174254454, 1.783346125513293, -1.549832189016408, 1.0217410904393693, 0.6529567663889206, 2.879445417277535, 1.7954958422549656, 1.4633761229130955, 0.6500433353412184, -1.0286107827035211, -0.12105400979029551, -0.3543025126470231, -0.38933029291500787, 1.136968276165245, 1.2026536757259292, -0.13151757269203823, -0.17755056905928485, 1.6252162677086204, -0.33087350517631514, -0.9744693958519202, 0.5387075280660379, -0.3081266363793832, 0.08881918411043997, 0.947351393647083, -0.48895963543057386, 1.0206945972538624, 0.15909034702600777, 0.4078109275789273, -0.8910996751562166, -1.6908304243139853, 1.1291344846738265, 0.5396032082465456, -0.24663257158655896, 1.7672660322062934, -0.37171264657053177, 1.407064205417326, -0.060096466217478675, -1.3637078380455714, 0.08415071790866506, 0.7925468734127371, 0.66020423645761, -0.3831205357934156, -0.03700944261620504, 0.24640331387804146, 1.8342815218221535, -0.07320923603520667, -0.5348156391219911, -1.2835936618339983, 0.986761103509736, 1.1144129952248214, -0.002511776870821462, 0.5333769681201087, 0.38660978306592203, -0.5419731779924577, 0.16503665539026205, 0.9938731975918293, 1.196655106665253, 0.007739505213598281, 1.205811809072525, -1.5870723596953673, 0.254753300668626, 0.07407102202490694, -1.3520773469022822, 0.06780077356779358, 1.4910007544958352, 0.5929341436286903, 0.8287261635771029, -0.7880985229653202, -1.293418122940514, 0.2919709327203891, -0.34959959400671914, -1.1494564331302584, 0.794281227433223, 1.9975223956106058, 0.5238213503085394, 1.0171052050351446, 1.6877364249216291, 0.10421934205122434, -0.15509039039644387, -0.4135729677554714, -0.4459906206278242, 0.04436658281721691, -0.6492802646495731, -0.05424676545446974, 0.6029840121530231, 0.11652352565065657, -0.2528268192305017, 0.7433036861782331, -0.23253606517460698, 0.05012724529189402, -0.32836104693945906, -0.17039761237202, -0.6631218908030658, 0.9991389202134672, -1.3894682297249838, 0.14289877422230587, 0.3415603630458308, -0.0605260984108552, 0.44356559205468543, -0.8942474153708823, -1.6935450427502647, -0.09868335703897547, 1.1806318180011401, 1.219059845558937, 0.843298907820624, 1.5865542108036323, 0.9069626235555242, 0.36172762389032836, -0.6421705952398258, -0.4409868793825361, -0.8912838277476577, 0.8369205202579716, 1.3831153223775756, 0.062353371167997766, -0.7340351739779462, 1.2779836677193563, 1.0114738812022865, -1.9213470095673637, 1.5219468202763224, -0.0953650213580089, -0.8822296260926764, 0.43922996009568843, 2.895113483783414, 2.910541846162439, 0.580720406135802, 0.6393270976511559, 0.8314868206001266, 1.3539194312256828, -0.46848348686489905, -1.051116282860114, -0.5041503956607895, 1.1011627361958178, -0.32159333338356555, -0.7863254838259426, 1.1985594752856221, 0.002007143315665137, -0.12481872757498325, -1.3083661608614634, -0.3153262572183356, -0.20876037339041859, 1.519493232619449, 0.07362007680868636, -1.3665034432510026, 0.7316085618482466, -1.466136192193828, -0.6594064264786359, 1.074201619412769, -0.7217905178135605, -0.9640619238015367, -0.3657918746450322, 0.12152349320146451, 1.3734655819217878, -0.6416617522463227, 0.6443200529674186, 0.1723866400090246, -1.1392804454963334, 1.6585362038738665, -1.4585874327094985, -1.879830772441746, -0.3505848251269135, 0.19093584716728715, 0.7867189494012041, -0.8643817669511422, 0.6398557072636298, -0.8812266160510961, -1.7440995857783619, -1.3789179105142673, -1.1312164851197555, -0.08933815285479006, 0.9759348816244025, 0.16185438673982425, 0.05848026223289177, 0.899248809104245, 0.38276729169586093, -0.6608265131985894, -0.7553675495022956, -0.8047161104303023, -0.8870175112105108, 2.0060917362735466, -1.11464325946496, -0.08330320791988519, 1.2931533071069277, 1.3995284132629786, 0.019746392820418058, 0.5063132794228892, -1.0184942878896555, 1.2935303140096894, 0.15973886955612462, 0.5268189358517565, -0.1941513491203963, 0.22092863098458015, 0.4202646543132488, -0.997385889368672, -2.459644589804502, -1.0772022824574332, 0.37715107092883643, -1.3314848966949515, 1.6666382329103246, -0.7802050163109154, 0.8308824961623049, 1.446021388536125, 0.048996230002973436, 0.29159327341131897, -0.8062235852032206, -0.5440595895925566, -0.9653753943015618, 0.3819660811441096, -1.4176073218444865, 0.8786895902260704, 0.669723332462788, -0.557651812628268, -0.015818046845982696, -0.900245379751405, 1.1802020013455148, 0.27326122241784195, -0.7859587572621475, 0.6617228859582558, 1.6269801318321861, -0.779062409665752, -0.05123110480250803, 0.3986443409495378, 0.24013371664358402, 0.5054264495223112, 0.45040641547106336, 2.1002327997172925, 1.2445310017769446, -0.9605974875211489, 1.7907989900795482, 0.1359002679348895, -0.9612214563438742, 1.032805267172274, 0.7306919090309034, 2.271979085917875, -0.024630018392410816, 0.47424512641732014, -0.8813518389220563, 0.323431598876575, 1.102610131791179, -0.539972619344748, -1.0028117911535446, 1.9238067488600754, -1.2548251358296794, 1.3246854050789365, -1.2830763188071002, 0.41112635363630207, -1.5456628878778802, -0.41228439599415106, -0.2454910751895879, -1.490508200969437, 0.07275724869592086, 0.5738022486013552, -0.39555443312921035, 1.2325836756832, 0.08916622494535513, 0.3067721336711147, -0.6853005140635128, 0.006671861524338217, 1.682362743753597, 0.09056195689290539, -0.11911165421273147, -1.8541064651968173, 0.47867877336784276, 1.792430376901015, -1.103651623888948, 0.8483409093380547, -0.0802713768916872, 0.24624409708527736, -0.36077313101458014, -0.3227978250660389, 0.707540918261593, -0.08224281759886531, 1.199422936109907, -0.2258429860010606, -1.1714339227615755, -0.0676172196835854, 0.2798727420632191, -0.28109441635152566, -0.7481222352596325, 1.280960072010006, -0.35088098750930413, 0.7443380943373836, -0.1688791639010695, 0.04667181892209468, -1.2441991838224609, -0.09468955968514976, -0.1470747317549352, -1.8672373670249336, 1.0276905701957122, -0.32581652477555684, 0.2870525556468467, -1.3936669368213874, -0.27750391303672584, 0.19177882266319377, -0.24438926475906408, 0.6172675850699796, 0.07240977189513431, 0.45549922402648774, 0.11225613869786163, 0.3492274201465962, 0.37551651103228584, -0.3237179832988163, -0.7837862853481143, -0.06959070362486583, -0.6989384690506337, -0.18681694698514403, -0.10493091953098457, 1.189696167329207, -2.5297102585717237, 0.044316591583839444, 1.1578453414053982, -1.1296522023556166, -1.0255108474545964, 0.10977679277716786, -0.08491610684776857, -0.3016622835332665, -0.022769201931955634, -1.3769844185701514, 0.17169810376017913, 1.6651023979447281, 1.5873755131433005, -0.3876088607837323, -0.10851513763707514, 0.13282621512689305, 0.5785653469314961, -0.1552376464512879, 0.005679583804589771, 0.925175607169759, 0.8051141391054696, 0.809235457305787, -0.8436302068928486, -0.2613937423666387, 0.859070781357631, -0.009683545899015003, 1.2026176786723275, 1.4079426146663274, 1.2648086239730427, 0.5521422201003288, -0.8990826436914103, 0.8299266947767747, -0.30220707596382335, -0.9841624845828564, 1.7110478946452323, 1.761675886596425, 0.22835634400189164, -0.5835665688691126, 0.240342684652003, 0.5144602183317019, 0.07603507601505775, 0.07318931496883734, -0.3686475234445061, -0.28588909520728334, -0.44926018162631154, 1.2468687528263132, 0.17611626595762708, -1.4706358164381033, -0.17722936155384023, 2.0827660930764815, 0.40394360298599813, 0.18776854931516287, -0.3202551817933309, -0.6387829022443451, 0.4407789899677997, 0.7067808978773444, -0.2978373335401194, -1.2034436621500904, -0.7606546843446379, 1.1438800444810182, -0.6158810019931333, -0.7880444279614381, 0.22062176195026495, -0.14161400806849492, 1.4190344937766228, -0.4274330931913508, -0.8503848732162012, -0.1906400232527132, -0.9732571374039158, 0.414443362948438, 0.2343517385818133, 0.4436119102671196, -1.0607521777378726, 0.21759247689133707, 1.2790133112250572, 0.011787338214700065, -0.4702385911795614, -1.1576901693885815, 0.11864537943508377, -0.298174435901613, -0.669739178041112, -0.5946439064273255, 0.2442012591536386, -2.286712940707148, 2.0850292273916318, -0.8088683540665319, 0.46881586404026876, -0.7294778190272209, 1.4810729162151715, 1.0825864868136252, -0.42417863405884265, 0.5485993322045374, -0.32913290395517547, 0.10876245268237528, -0.9466102820833004, 0.4867858184206878, -1.313855020793669, 1.089836767777219, -1.2640743676043709, 0.4665804422332719, 2.550795864081508, 0.6025337515063647, 0.028774093899477406, -0.4192777043627994, 1.6879577352078121, 0.7285009786929713, -0.09348658703372428, 1.4077582343514776, -0.9438603449591744, 1.9072451127785166, 0.6371297005978169, 1.1533749388501708, -0.9189755274697633, 0.27475159649302733, -0.0835009933779276, -0.3753745569465283, -1.7976912730996952, 0.4561162627655736, 0.49563423015824704, 0.8375463942784488, -0.28925499305071445, 1.2669001507983668, -0.8896487804651698, -0.8957004579816962, -0.7541376752357719, 1.216046796856972, 0.1817781227167471, 3.485395925076131, 1.4061409564718177, -0.043877703369260515, 0.09135996673762214, 2.3276149122975642, 1.284305391635586, 0.24531309427212014, -0.485340124436228, 0.6894893800790168, -0.4592223053565031, 0.05577100640906682, -0.7720321026391471, -2.3689165157721352, 0.328922954591967, 0.1219646031486013, -0.6855138630121872, -1.0495713943822669, 0.041118293892730216, 0.5030566353265167, -1.4658788233579072, 0.19368455527896491, 1.4304886181227887, -0.11888153712910846, -1.8531393990755023, 0.30682593425443544, -1.8552567001310378, 1.6913752364631407, -1.6128156134777734, -0.4164259936236049, -0.12008804566282187, 0.8360547749718112, 0.26797090744089913, -0.5542536273815373, 1.9882612566012456, -0.5717458546427552, 0.7023218838660852, 0.6117103285983082, -0.5810826323861239, 0.019283977102678564, -0.7720061747683987, 0.8512995270706164, -0.2659093280865109, -0.3672547401235217, 0.6185823257905357, -0.8815933348588931, -0.01976061913359437, 0.12258231182116924, 0.357207093850019, -1.191317043362194, -0.4142926492423708, 0.2918498026701435, -0.7905991980373612, 0.6138383997329755, 0.927486263419465, 1.4397302933385294, 0.5776300300545029, -0.442792838359525, 0.9693247409411911, 0.44782459886428194, 0.6348356631763036, 0.26123750534455836, 0.931062805092602, -1.119833873251402, -0.9267594081183692, 0.5931327480785107, 0.6030418621452488, -0.14737596959655536, 0.6813555253700663, -0.03230095919788209, 3.6063427189680777, 2.5125281723984254, 0.41236132586608987, 1.173330612086669, 1.2791106015718856, -1.5126165906712974, -0.22922655366672023, 0.12565133303716094, -0.27991550473450816, 0.14886595629641072, 0.1345656804883295, -0.2175065799623003, -1.5476997693814942, -0.3140687104334718, -1.2249986634531205, -0.7121104237851053, -0.41035818658784157, 0.5940759218291204, -0.735987910289222, 0.08006147340048084, -0.2810075071303484, 1.1899913180523418, -1.2634222707984626, 0.36414934646693886, 1.8747065584060747, -0.5400677075741738, -1.7116646771650976, -0.7182203686272074, -0.22426065449898153, 1.2450729018058417, 0.5979906099671163, -1.0747070086244086, -1.0257546727399973, -1.0754583525639358, -1.1498915954173747, -0.9330593391342558, 0.6124781904876024, -0.2605003040493196, 1.5064988019454015, 1.2293471732920433, -0.7515578954274243, -1.2976596384822425, 0.7486117349821392, -0.5129197713401995, 0.6633776687117985, 0.4975019369716786, 1.6365475878328133, -0.02634264108964983, -0.024569676511926843, -0.8697270277518832, 0.3108371570560469, -1.0062366352938672, -0.017881560923587364, 0.6060245863803159, -0.871085844974539, 1.3784429923117747, 0.048590059271510146, -0.8150290703819275, 0.44873442545078074, 1.3235943702169426, -0.45568193538952095, 0.11644379940116978, -0.7172119099980604, -0.4978890231013253, -1.168278963902631, -0.194169351713455, 0.6316588556093213, -0.8488317339406115, 0.42812234192357135, 0.057071653897462216, -0.45114512039706706, -0.6171709736823012, -0.05309312835620356, 0.2441086411706536, -0.09048917271078626, -0.3616279987714553, -0.7752510636943012, 0.3762791794345275, -0.22094593395787546, -1.9325454670772713, -0.24844287432120438, 1.935963993642539, -0.22910433007576017, -1.6043400486151216, -1.4071927519495522, 0.4039231647866688, -0.9791527016357647, -0.02596385359673335, 0.06494009687299132, 0.5136439717240799, 0.6505319923825429, -2.1926089785550804, 0.3666665977272362, -0.699102850402773, 0.48130718515444243, -0.1780249495874323, -0.0937622963737271, 0.6390036879142641, 1.004553745798002, -0.19994950166062317, -0.04048994038937191, 0.7489111118094219, -0.19000578963101258, 0.7258442564552522, -0.912135431510542, -1.379420550758666, 0.7824303110970571, 0.9975227346953193, -0.47247319302116453, 2.836227413855786, 0.743420568346913, 0.69816704270199, -0.6320675496987879, -0.00641865423722834, 0.38827746360669346, -0.9142342366334931, -0.7486762883150286, 0.32763655348254717, 0.8137682853761418, 0.46132715952945325, -0.5885846058274977, 0.5217808628252142, 0.402341051362826, 0.7196088934335942, -1.5619458667482786, 1.170095386793357, -1.11677426031789, -1.7432662968302812, 1.1932865350311288, 0.23391394970478405, 0.384058764181616, -0.9923675541531303, -1.3726555131580127, 2.167021383135332, 0.2009645320494251, -0.7002286610607538, 0.5585079950139984, 1.160325682189091, -1.2087266996026746, -1.3794928457424598, 0.11365439808463836, 1.5682645746381678, -0.3504965095598564, 2.1126115936725243, 1.0623624681469286, -0.9776571813594928, -0.6226366463881414, 1.2908980528297676, -0.9657186073070293, -1.141811398261331, -1.5068118755613513, -1.0290669118309361, -1.1600960263777713, -0.8846287060704515, -0.2848484096438286, 0.6204932347611608, -0.7698015062693605, 0.8765223846255705, -0.9086161672050561, -0.49163918512513693, -0.6070231184345015, 1.4806926658215005, -0.4217756432080986, -0.28927937474577264, 0.3671652671326452, -1.5702114317386349, -0.13641212283204848, -0.37763446433332876, -1.2112037903864086, -0.44106944010078114, -1.7565048383616482, -1.8429011182020754, 0.611082234521074, 0.7016606933005243, -0.33392403856808583, -0.40445424895005905, 0.7954853955607155, 0.27713603538318193, -0.22251875719561454, 0.11409410767324601, 0.6375256854111636, -0.3059022833293606, 0.013436034598682, -0.03100730431742145, 0.0774504293096386, 0.8685468081811184, -0.39193756383551853, 0.5018037078458015, 0.6108739193258876, 1.4970259002012025, -0.022601070718101864, -2.74028805760411, -0.24731527535298245, -0.6661114067105456, -1.1754824550754248, 0.9473313121799114, -0.8087186202795271, 0.5109844297579731, 1.0320014013751508, 1.2935924151494003, 1.0000215661089815, -1.3001925610568843, -0.23877663551587558, 0.4219614168698917, -0.8390934117465514, 0.5096790491179403, 1.9777294843951334, -0.5216416561440291, 1.2285752351922175, 0.40064319662483733, -0.7394118979383371, -0.5866330243614909, -0.18228019764209952, 0.6800898544153574, 0.17158514720707768, 0.2509660935082452, 2.2674583757586793, 1.766771926977926, 0.00897017222423594, -0.2243931372967342, 0.27624017696800024, -0.8337209038090392, -1.770335860935915, -0.4237758051678595, 1.030262832177538, 1.2686769531814972, 0.14533431813490855, -0.8348219007244808, -0.3873373740711521, -0.5655027123444183, -0.09384813069405684, -0.44928069162538325, -0.6510332211085541, -0.9635380321470504, -1.8636032640108644, -1.7244701755757412, 0.44362052334218455, 0.9648946487484102, 0.5347249947697671, -0.8923537067854509, -0.9378081224600873, 0.5664151468441233, -0.0312115874560847, 0.3487775579648501, -0.1931549588526621, -0.669026276547112, 2.0304591252471416, 1.671703273050107, -0.7822984650191223, -1.2100123082845404, -0.13130949789874494, 0.8969079253184581, -0.9708787277011494, 0.0840049921362817, -0.9620815002572682, -0.24321589040663028, -0.9036059683073746, -0.9160659833811291, -1.8594689392470618, -0.02034566001706925, 2.076054553167827, 1.3214069161711217, -1.1055543746484984, 1.257209130942052, -0.41724826425322264, 0.22577167284859503, -0.18311158688339568, -0.07481959639854234, -0.7111362433579821, 0.6621071108605477, -1.4606655778115514, 0.7304134843122904, -0.9274064140504644, -1.5086177140301498, -0.08339263277569901, 0.5007595662666741, 1.2595223495298324, 0.012958378475506429, 0.9558720984900283, -0.2522106252500808, 1.6664865608631558, 0.1670746396615597, -0.9647006949926417, 0.17108036464566978, -0.32448021991744785, 1.8884540967552201, -2.1352443029008037, 0.307236994982871, 0.43612102937310926, -1.844673878769152, 0.8863656987355275, -0.08401033669345928, 0.44422852519747874, -1.0640713641868642, 0.5654843388999935, -0.22403955664602013, -0.16280113065404936, -1.6260574634918086, -0.38260191934726717, 1.0966173932559367, -0.8763373515148078, -0.47868473440595743, -0.5571555271375207, 1.3618065373983856, -3.0359426142641985, 0.9619132421438964, -0.2960806753104474, 1.176149521439439, -0.39380992117160224, -1.1586663511594208, 0.7025992362124875, -1.3606978038795268, -0.1557913879576893, -0.6749036407818405, 0.46721634557336217, 0.37799617305281985, 1.702925603879059, -0.806513969338624, -1.2359051051328491, 1.0150480211558741, -0.6165298747059769, 0.7586646803776003, -1.3490302290531342, 2.065021866855778, -1.1879348555041775, -0.7856996064388423, 1.8296279190769071, 0.6963352961269815, -0.7460413831420752, 0.4139333010746225, -0.30771536364099217, -0.9850195618248908, 0.8559141865282444, 0.8179499135764576, -0.33059563283430465, -0.3572417281290813, -0.9290446900324218, -0.1550515296510064, -1.3196005931114, -1.1692687236474677, -0.9493875038236067, -0.8173368848365932, 0.23475407313454488, -0.4276039288173471, -0.49374029854667445, 0.6369387218888795, -0.5265240722768745, 0.9338530291817646, -0.14881374458316063, -2.7594257309388635, 0.004625434334848615, -0.1171794687195259, 0.3417878372272078, -0.27627553425986096, -0.12373652131843307, 2.543461060546698, 1.0673573828903082, 1.3353966531393386, -0.4420793395851032, 1.4049213902540325, -0.0325650382908991, -0.7032891839008552, -0.3830025198261854, -1.482595089052468, 1.5740621623461921, -0.7885325005817909, -0.12959531342585934, -0.3429809093016933, -1.4748701997040792, 1.0317969193393297, -0.3350312679404773, -2.1616374370347957, -0.5171863217842976, 1.4900893055763305, -0.9958298066468344, -1.3637377447923469, -0.23443734718829048, -0.4195450356024094, 0.8936447732220345, 0.7854219357789037, -2.695073237216508, -1.5933595621562209, -0.5189975600122327, -0.09153099853850041, 0.11931793013561709, -0.23604717872487918, -0.3021169757913708, -0.9532511186868122, -1.6881474787704256, -0.18014123177211813, 0.36461654626312134, 1.6414239047824162, -0.2897160003532384, 2.0540995422516226, -0.6758317261656805, -0.8962116017442275, -1.95462754998182, -1.539610165904318, -0.9908062687817156, -0.06378455949183134, 1.0459402368259425, -0.5257410642549586, 0.2566602175457108, 0.7076023916628027, -1.5592408164183718, 0.3325677954805205, -0.2613895024980509, -0.544351034564985, -0.37288032550238354, 1.641396559957961, 0.2032466147204443, 0.6104776501162641, -0.6805805653272987, -0.4790614491649183, 0.19417931094425067, -0.29040490649990397, -0.0023550147947540047, 0.07321487644855411, 1.0374560625263272, -0.509709086246247, 1.0262429325061895, -0.427225918579908, -0.7197284983463076, -0.9470363127266437, 0.20997118229153922, -0.5995012275706358, -0.6240550089110919, 1.4427390479346744, -0.18966582973066887, -0.4279057054106058, 0.0009642770218615644, -2.506611656713095, -0.10656220864335485, -0.302290777656494, -0.2978962063115572, -1.792355316318746, -0.5268905560298871, 0.300861174582315, 0.2946925577711325, -0.849173105983063, 0.971584748943559, 1.4263703957133806, -0.6768184434745017, 0.20534211548128675, 0.23903057631936794, 0.709134691421536, -0.989037616469263, 0.8012677099370656, -0.4007188742288544, 0.9190569602395573, 0.8810424363368379, 0.5249662617291813, 0.2477230768236046, -0.7461239156470092, -0.2594784900168338, -0.13701785226919638, -0.46735565088447295, -1.196530263494907, 1.162844267938665, 0.8518106561371918, 0.33620898206456734, 0.11427196252215052, -1.4560112920718342, -0.4892396736555297, -1.0140580550114282, -0.6130045239863144, -0.9271808348144478, 0.6103864671582636, -1.500311047776156, -0.7999638991692719, 0.06501184657057969, 0.6189153027894545, -0.006248719527174947, 0.4101850759003927, -0.8596642208359273, 0.800686441764468, 1.2512949460578593, 0.6957395957645579, 0.16298672735069816, -0.7834589722492573, 0.5654212501998679, -0.22487992876486015, -0.4402821034451436, -0.9185463875584661, 1.0089275438919887, -1.4155404268010465, 0.7496167442028565, -0.9248010561400608, -1.8199880571608469, 0.21541136188534254, -0.4848340163873162, 1.0552263092999192, 1.138525527921427, 0.9026575470501814, 2.045845310404837, 0.043015394878425095, 0.5498967757112927, -0.9411209914186204, 0.02281445670434491, 0.0375473967166501, 0.9111410292528924, 1.4628285599538773, 0.6460192438312424, -0.242627483409143, -1.0793117724715133, -0.30107097563144986, 0.47252294497183633, 0.5997716863534314, -0.057637714085568496, 0.6135747152160238, -0.2565817546727599, -0.024039201763716156, 0.3550034558882333, -1.3964544822354439, 0.28478754853379856, -0.4637427892179198, -0.022598355124093084, 0.36208088027215407, 1.9914162096174353, 0.048538991674147304, 0.028834589799023178, 1.2687618630010289, 0.07045411598303844, 1.5959977529678988, 1.3269492090206887, -0.9604206679086652, 0.6306036243518349, 0.5783402001352528, -0.6233174627865636, 1.009484964133078, 0.8378836549073787, 0.02125927055356528, -0.11662823674674822, 0.3498960719707691, 0.4328385348404751, 1.1351115601449118, 1.7735050443602258, -1.3842039474347025, -1.7804571565169252, 1.980989723566112, -0.6465862383675393, -0.11237716678260389, -0.6527205140252135, -0.6207808102903257, 0.652191210155235, -0.0429508173651832, 0.7178475183759979, 1.154316437862887, -0.9032819302937563, -0.20889607766208457, -0.32205191031383107, -0.0060147018489964555, 0.8440272007250367, 1.9627770095061248, 1.243672321121322, 1.445538314376426, -0.6268408203418971, -0.2905125798047546, 1.184059251987099, 1.0852868606381558, 0.3198526033736907, -0.8680264774619783, 0.08650668967079021, -0.45879470438199743, -0.5520748426605124, -1.1877393315574052, -0.5350829642421285, -1.3609572023917869, -0.13954186775008448, 0.3047073913915746, 1.6190132284044063, -1.6309531106313682, -0.2494910946116742, -0.2482764004426573, 0.8487276460405834, 0.622920441785798, -0.0157782979538073, 0.06888232113082096, -0.14112100462717195, 0.30912070592041857, -0.6252923850466149, 2.001814790800513, 0.39816071057912367, -0.6975723532460221, -0.24255389988033443, 0.9142671986561416, 1.0067554537209695, 0.19780407332069141, 1.1781912714714944, 2.3011819102641247, -0.4634164447680495, -0.9822829058865995, 0.034030591916652045, -1.1719457964453053, 1.247203324752605, 0.9679855449608806, 1.7585051739108735, -1.5044711544096538, -1.3511795838054423, -0.4225454606355988, -0.9035130820678747, -0.997245029179387, 0.5888967775931577, 0.13589151370007096, -1.0996635987020225, -0.3562148966482436, -0.5713993552893417, -0.13274666811159308, 0.08203414540349417, -0.8186599201811645, 0.7605602655375042, -0.49046346701374, 0.7857083310410551, 0.46419814111431046, 0.43397423158864123, -0.0717502558468007, 0.22234389607571903, -0.540126772826021, 0.8574201661156421, -0.17411279191002516, -0.6569103389156495, 0.7531329131054201, 0.19675994442463268, -1.243883574156569, 0.8595452793724817, 0.20132756651924671, 0.8193137008890059, -0.5554341446271671, -0.3977995660479132, 0.23248713083759232, 0.443067122821856, -0.8331483704183151, 0.31134794703782914, 0.12323809421473675, -0.5370394813123507, -1.5313833318323045, -2.0739200627072756, -0.7685270692492555, 0.027208855183236156, 1.2372171429762602, 1.5406604586176855, -0.6599152871269874, 0.4592440191496657, -0.16802431684318336, 0.7440111237344017, 0.9692156143966604, -0.5486620985320682, 0.6283216297872722, -1.2219038770341895, -1.1467594715495575, 0.04242965052655008, 1.6333454187152878, 0.8598460917148404, 1.7854422318637342, 0.03729634318084113, -0.4692235496779905, -0.06633632403392811, -0.7874062792927279, 0.8472881560175695, 0.28472660950099765, -0.44112647952645945, -1.418844029750617, 0.16368194458676302, -0.8039134365792999, 1.448577718561287, 0.35725533390644043, 0.37576868815546055, 0.5568714103927404, -1.2322251771380202, 0.18582688288934435, 0.253697062105914, 1.459797164970602, -1.0686138629749722, 0.6075503182254341, 0.5653321399231014, 1.537797814929488, -0.5341600615677542, 0.9844310673963586, 0.26122686783230115, 0.14555426048648432, -1.226194144094168, -1.32060162801267, -1.1247511869041338, 0.3952263050170084, -0.7514893849570626, 0.19589582357157878, -0.9214143247149695, -0.007043573329470636, -1.2553385669196115, 0.638238290021108, 0.6924190978640424, -2.64759920521491, 0.38766695781240695, 0.7096284274116653, 0.3409674794816516, 0.10693087434522143, 0.28464970194047323, 0.42015843118332097, 0.5660333439399844, -0.16696998731665372, -0.5453259039335621, -0.1979317295672803, 0.5217549353631558, 0.2844877732799767, -0.05798481521878196, 0.3317787552332686, -1.6701961126852531, -1.1251457177497806, -0.4448354737785873, 0.09761441589432016, -0.2976557823359191, -1.08831477968973, 1.2373360732354346, -0.17111424030803402, -0.872615517709271, 0.23627047376966268, 0.779482331579918, -0.3791845428614696, 0.5374703677182602, -0.1586852966191093, 0.26184197568335177, -0.0237958357027192, 1.312315373865039, 0.10559323348085936, -1.4651410505836857, -2.5910707233184853, -0.15573151874997812, -0.440153005600879, -1.5598432888952236, 1.464474094902936, 0.9943493398545146, 0.252484898780997, 0.627533505323071, 0.7819895241981563, 1.3190404814385503, 0.7359390646122115, 0.705994992069803, 0.7525641426832681, 1.1548006439846683, 0.9880869506073213, 0.151753591000283, -0.27113728343574933, -0.439754578149234, -0.5443390879093911, -1.2964858188425035, 0.9248677893933415, 0.6452599766259177, 1.9058755142498374, 0.3497694126886746, 1.0541166012861363, 0.6108563100859765, 0.30738961836328715, 0.5345040342769739, 0.45179542804954315, -0.08636894685988006, 0.2640679615947502, -0.010424135364498035, 1.6067027822446367, 0.6483639183610668, -0.7914628117418331, -0.0678236372200337, -0.9124913803698153, 0.3401889380500292, 1.2158849467544501, 0.33162828690213525, -0.4006119669568513, -0.5685751640654436, 0.37217716339575757, -0.575071330935776, 0.30039574750784764, -0.7856166902520373, -0.8138746091577205, 0.044779712770922554, 0.5031282320672207, 1.716643389586327, -0.6147493131840426, 2.2251105676151877, 0.4170277445088611, 0.1101246402213538, -0.4575219115606794, 0.9677979892714295, -0.03738548228751941, -0.5873218298646442, 0.45648765381504786, 0.040227085615659845, -0.79600795769009, 0.3197165015100081, -0.7390852105462328, -0.5319236692959212, 0.5279308639233438, -0.31312181046438586, -0.7964583325738624, 1.056650891198144, -0.40285696428020734, -0.5582100645306903, -0.06451402601669773, 1.4510568065324312, -0.542932366703465, 0.6368897016033904, -0.25818132984536724, 0.7438934296128636, 0.3931022509617637, -1.063883439520906, 1.3838036240367615, 0.7182857884152077, -0.34703184111420204, 0.29355665937559244, -0.13052791781907228, 0.7754370946568073, 0.11382659304979112, -0.8768327462864244, -0.5594794657250569, 0.006940185402709971, 0.04019608057222632, 0.2778788230666646, -0.6342595797737821, 0.8479555490707343, -0.3284394905058072, -1.90038505750629, -0.8443096638449569, -0.7029629850368982, -1.0273965348099459, -1.2818202787048523, -0.7037852789205861, -0.4559297005280954, 1.6393404481417713, -0.3282954273270721, -0.40628826913655364, -0.9363831231303511, -0.991697749728861, -1.1815388998536973, 0.5326797345835425, -1.145375048156654, -0.4703297149130761, 0.44963606772935016, -0.7021081018853582, 0.21377049556730937, 1.8793333685979445, 0.2679611566438503, -0.8167560170654781, -1.551663810827421, 2.5994284290129706, -0.3585138444977026, 0.1515229193517361, -1.518347063801485, -0.3728101657732758, -0.19217011478723844, 0.7424723702521053, 0.043734934435934826, -0.9276505750324865, 0.43163516567449145, 0.5344240257383535, 0.1261937500528385, 1.3719089635997062, 0.4191526023320103, 0.3994314641938475, -0.9925915310771658, -1.702638655139593, -0.44527082158579184, 1.405940206916688, -0.24526086694100482, 0.015494337357347607, 0.6193070034500363, -0.021159315308931236, -0.6520118823897958, 1.5513691827236533, 0.5412340418600259, -0.6554432571594411, -0.0002460096850178365, 2.0145908292612296, 0.16450419553674633, 0.3834236846552463, 0.25526736390956006, -1.149072166750453, -0.3651202148494726, -1.2477865108146604, 1.3000134897726539, 0.12901673045551312, 0.37420444549873755, -0.781828143176121, 0.3682445698086389, -1.685609861325732, 1.4168113146215706, 0.2107639847729862, -0.7510099961144766, 1.0867802335587677, 1.9336662473815152, -1.3925732113007703, -1.1067216272820148, -0.1921565657911832, -0.2684706521362234, 0.5980012929077106, -0.2942122454558923, -2.476051996574704, 1.662559254346361, -2.021865881788543, -0.9084722114713186, 0.030214742211358853, -0.510242802188296, -1.1975014133368391, -0.3674848251392534, 0.18097659210517966, 0.5467768221297816, -2.209196882623504, 0.7864819940486409, 1.2992864564310649, -0.7556802960372594, -0.40836619342519326, -1.1049487921315069, -0.4513848329289261, -1.0912364375433496, -1.0661408593649975, -1.109021021581716, 0.18231852942907065, -1.3352095166285616, 0.5641222946703457, 0.6916511575764138, 0.19351569235030291, -0.20372716448738273, 0.38655302058049773, 0.05497857990466103, 1.961824402405852, 1.5793141622735203, 0.15475735409147143, -0.4838728753462619, -0.32868044174247213, 1.0551752921333828, -0.3077524967730871, 0.41258784538146653, -0.9882660682648481, -0.3615439618843195, 1.9133780189166403, 0.7185159728794762, 1.1747442949183606, -0.12466446674622662, -0.32758383243962347, -0.3682399183245923, -1.5286234241518148, 0.3715641657833156, 0.03578180458969475, 0.6275084721450748, 2.264693107648267, 0.00646673998950045, 0.5097794031204624, 0.8620269641076211, -0.27406025426211533, -0.9328544774241603, -0.48516430214261713, 0.9411037855752709, 0.06221404284572057, -1.6746190243085188, 0.16871752910440888, 0.9766515383735993, -0.7118165820483087, 0.16723221778633157, -1.9719257073787757, 0.6493665050503891, 1.664472070027167, -0.46636927218652646, 0.6401588896385151, -0.9167700585054414, 1.5243897109018776, 0.10954003457330143, 0.279744641831393, 1.793565420067488, 0.4055018446965047, 1.4530192566421885, -0.17860695911010996, -1.0599318288949697, 0.8121259293659837, -1.781104812361576, 0.1313544532174974, 0.303274593841105, -0.7550776480285232, 0.8722390617832947, -0.24018095585073695, -1.0518007244302892, 0.9478464268776612, -0.9911223289592155, -0.7613856805783692, -0.4116816764531166, -0.03934519485845343, 2.5226491741180666, -1.5235822699955006, 0.24069960276075575, -0.8950083431172194, 0.045085914131197974, 0.8071155544167263, 1.3084930193150148, -0.7068839227945133, -0.6826401658830514, -0.510777002118647, 1.4730280791503136, -1.1638477368196916, -0.4633113629695042, -0.8199891972113084, -0.5831263126031941, -0.7793000385788919, -0.6843518475856311, 0.44896418492860996, 0.8375488717044927, 0.47323402041906143, -0.010099651205864542, -0.15943328142817795, 1.5930055675368102, -0.1489841163153436, -0.6931930137657447, -2.5570577309066342, -1.1149599334367613, -0.3155310817173745, 1.2472498207474214, 0.9576254234017681, -1.2923118225180243, -1.4953512620578244, -1.194337974713033, 1.3590208921434195, 0.7348434982005333, -0.6694656904654122, -1.6106587796614071, 1.8307429008658094, -0.11774575803493056, -0.05483735788421145, -0.5728883743650521, -0.3841606064453026, 2.57449007875128, -0.3056411971926705, -1.289479950583775, -0.3124563213095288, -0.1632523060938177, 0.5155504726223379, -1.7942484091094075, -0.259827079531458, 0.03207304669720044, -1.7748924066564489, -0.8861142395260005, -0.07206562513957426, -0.38124790216903615, 0.5227924174323048, 0.7402989132830832, 0.626002209399407, -2.5195235844088995, 0.4892693729205916, -0.3457813625347892, 0.367220420745776, -0.08675820929970367, -1.7707900317528378, 0.6479710218868091, 0.667241653087062, 0.6766794898314579, -0.24347446360376046, -1.8266212828477921, 1.6057944646769904, 1.8508443308923943, 0.27531385399083613, -0.2891644106025013, 1.3691415941680458, 0.5632284179800023, -0.5774673997681751, 0.1862184438631949, -0.07521953063009114, -0.1680806814688212, -0.21183951565712067, -0.015135185417879693, -1.4643741956005476, 0.2998216079315391, 1.545936143847267, -2.5308838643251064, -0.33296624091194593, -0.6705811880313068, 1.3857874518132334, -0.07502828148790158, 2.1148679732863407, -0.6670553596459519, 0.6291223283942355, -1.4708175110666872, -0.2832591764891406, 0.5506261437431454, -0.8542460140818265, -0.9661945166251895, -1.8154713019179745, 0.25170157753224925, -0.5386783801306655, 1.9805355150194965, 0.7622890080736658, -1.4515042955747952, -0.09999224234849562, 0.3225871113977054, -0.9914638384517553, -0.7134405302920891, 0.19954596044942827, -0.3727824532335114, 0.11413530095802697, 1.720186758142971, -1.6372626590368982, 0.19552977203851393, 1.6330392762906456, -0.25867073936357043, -0.17233002353876578, 0.25863823708151285, -0.76746874595927, -0.0029412307206365205, -0.5932353844740923, -0.23710392132591632, -0.269741965701696, 0.19147396355983134, 0.2703025477862204, -1.3497606532921511, -0.36305627359207193, -0.39635729779263074, -0.09788825990381905, -0.17393677039083372, -2.370134058981619, -2.0273191426345583, 0.33521149130030037, 0.667048607827253, -1.2201442175922577, -0.7946897391074245, 0.1948877042614166, -0.3842161051217376, 0.5070570804569504, -0.47779853462936317, 1.3856811438617262, 0.08005352819610817, 0.25524373110638965, 2.093925816533592, -0.4618191035657198, -0.08580237278149157, -0.09446406090325923, 1.5178618257039316, -1.4088031919572883, 0.9273176587217082, 0.5728295651329418, 1.6927642513807848, 1.338629421466342, -0.8299952578934097, 0.11076860360692982, -0.2139805663400053, -0.2801491300195081, -1.1288358993617964, -1.7331997589837185, -0.8620874943461048, -0.040310890479845735, 0.088298632131515, 1.0717048839365146, -1.2856684114725883, 1.1075730317239778, -0.6038651423920457, 0.2117376413915133, 0.1331577175248887, 0.08633660840565831, -0.7252331618685467, -0.8864202746060909, 2.177798932214079, 0.7186941003758623, 1.1664614267926723, -0.4111218496321483, -1.003043376515656, 0.30264893059058373, -0.09477878804657852, 0.1571852381254324, 0.23631045692143965, -2.849616064833536, 1.4994375111524545, 0.8397940981814362, -0.9901255698321946, -1.0749107327717342, -0.8182622351293286, -0.3297275521328313, 0.18524347138570318, 0.677310408507164, 1.030705274616116, 3.4814567286491047, 0.45532274906337716, 1.1279397927435364, -0.8564782869774062, 0.5729249410528752, 1.1970659632725715, -0.1772705495618872, 0.7239900272679948, 0.09875923835136086, 0.2912027787443929, 0.13617930229721734, -0.08305745508562884, 0.3919722823297464, 0.18059385114627816, 0.16279188084730611, 0.23172519657028748, -0.43999004017355475, 0.3643540567567925, 1.0233319424397944, -0.5730981980737946, -0.3215841847625891, -0.9338491328706012, 0.6389910950515205, -1.241275968274641, -1.0260795669537375, 0.12259993366602565, -1.7448949820660975, 0.3420560137692515, -1.57073337385681, -0.6861014992576169, 0.4375821826761159, -0.6195885486064071, 0.6891159970962146, 0.2833305987495607, -0.9675344868698511, -1.9103357472895661, 0.9472022746623971, -0.24917954590336208, -0.16290995928448468, -0.884393489774036, -0.015101854561253104, 0.4998237384329955, -1.0025784663948667, 0.31262308489054585, -0.582247880608244, 0.4232515223979922, 0.10111577702686958, 0.6750767507195171, 0.1427441810124358, -1.2144564296609996, -1.3579069786149265, 0.8617302062803188, -0.9532768830538745, -0.39729053154249466, 0.00288900188760916, -0.2789400648317577, -0.6137438037547706, 0.5163836507014065, 0.5795262808148709, 0.3377107056144512, -0.5680776927502589, 0.9563792600113534, -1.6009542499259872, 0.5747250797632468, 0.5824184601084486, -0.4576678392277286, -0.22791799946726896, 0.9729447233527436, -0.35442646081866236, -0.005807964376112092, -1.6094141564482694, 0.8263762994174441, -0.8758778123914845, 0.3260914463287803, -0.5256339741626843, 0.6687061360542629, -0.7985425630507271, -0.5568041458323186, -0.7736648287401712, 0.8667110315292085, 1.825311235140642, -0.760189222823621, -0.26382542829479855, -0.013454908775425545, -0.7051983873168577, -0.5961016379932287, -0.9611591762737006, -0.6702454909681516, 0.7030456754122164, -0.21044611351572673, 0.2839608775152032, 0.0238287298127284, 0.8365842831284181, 2.4876054486031745, -0.8941672007277696, -0.23665636284934133, 0.7659660591871066, -1.4760273280649832, 1.3714364934582712, 0.5983950815989787, -0.17033839881706664, -0.8569049786098808, 0.8110170171200171, 1.149933482640401, 2.2726828472001785, -1.4443435439716874, -1.0775512913339962, -0.45208562350739157, 0.589969721510795, 0.2468462608139061, 0.4212424739208058, -0.014349875007326646, 1.8001546020707482, 1.6683614230791024, -1.2664698338431752, 1.3526876725532857, -0.038454753702780065, 0.2034009722956233, 0.04791922302128134, -1.0291596283273041, -1.1842310842542911, -1.4454496323493948, 0.9285858536494594, 0.7181498450698396, 1.477276653151547, -0.9492933782707158, -0.6399739541144044, 0.9709397426597007, -1.678696718585995, -0.6091593306964094, -0.7464006920126853, 0.8532950095017188, -0.160314320080354, -0.17531999600287093, 0.5932640407179658, 0.9554117356044881, 2.7745358543058987, 0.17043560370813143, -0.5630125415968213, -1.0130186732146338, 0.49185530729072624, -0.5999435124247383, 0.07793821771887148, -0.1534344598793066, 0.1708001000256855, -1.681016792448486, -1.6073506163833913, 0.1445213296579692, -0.11705966591766317, -0.802422038945642, 0.48941981460905765, 0.28063983719251745, 0.25569799479244226, 0.5782615991190064, 1.9402126171190792, 0.3508073095280473, -0.09013715008728339, 0.4976371202748926, 1.4753531719202193, 0.841644002503975, 1.3454494758562352, -1.7630173720743152, 1.5759617839146671, -0.18442020385946933, -0.1844338304405449, -0.6967666895683623, 0.4051109651333499, 0.6344767971126328, -1.3905699331047483, 1.6554246831032764, -0.3893919528517418, 0.5927038658493464, -0.19833118867079344, -1.094954133704274, 0.21592851415074218, -0.3599328330681023, 0.04887554831701813, 0.004892130780856128, -0.4268753971424008, -0.507416927866528, -0.6380343193332121, 1.2030156692056546, 0.9280627917498822, 0.21200550869009127, -2.952876706238187, 0.1244616319203318, -1.0240716214027237, 0.0469052269564347, -0.0755177103772678, 0.12034319648358227, -0.5245067141459696, -0.5387107751773944, -1.204231769895348, 0.52218568888347, 0.0029723986539315606, 0.4429448960503429, -0.22373130660461682, 0.40383907945601766, -0.6041798609863388, -0.4395205976169331, -0.11359653233745864, -0.09590960740038787, -0.3221527784542245, 0.2622136297470514, -0.4605016454869711, -0.17737388941926235, 1.2976797376258007, -0.9991633579217256, -0.8574745806905741, 1.3447324523182147, -1.3974291073212592, -1.6706312209983363, 0.02271692314601213, -1.0793534064918955, -0.3680104390181698, -0.28727015856320215, 0.2004024698546666, 0.30269418269220055, -0.0499984383650111, -0.030905812431497225, -0.6305472183902553, -0.8818783359188513, -0.31099622391561094, 2.955117069971462, -0.12625639164121288, 0.4047071626158717, -0.39171667312542574, 0.3562387907097295, 0.36276171546124686, 0.4911628316855861, 1.175607837516761, 0.6208269588793761, 0.41763861038806754, 1.0833205908849486, -0.15878621382191677, 0.7227866215846377, -1.3605574008752719, 1.7967215574616482, 1.42887852365222, -2.6315994736178547, 0.14528744607990374, 1.7824562965489374, -1.3529684214704862, 0.08057881019941822, 0.732677076906911, 0.4641940175944704, 0.8569954079046729, 1.2680292538269886, 0.5341964025300822, -0.32612234962633074, 1.371486232933786, 0.3156286746047203, -0.6120105069131799, -0.9893552998182319, -0.2893907079276898, 0.423046218003394, 1.807309611003279, 1.8994711896267942, 1.6940705260524382, -0.19561094311226082, -0.470329975255166, -1.0860687516626126, 0.16258612384026538, 0.4115138267540515, 0.4477614673388661, 0.6503688669381418, -0.7235420664188142, -1.140064542807156, 0.2240828119988441, 0.0764779964566899, 0.47612279809221575, -0.9070019091476477, 0.7092388980732504, -0.1881629792263416, 0.04803063927577991, -0.05957838363731983, 1.7209375244236442, 1.4692680673456808, 0.17496469611089416, 0.9955767637752887, -0.34941688131115434, -0.007267603874723405, -0.6322761061638251, 1.0963399772002862, -0.3990225596244998, -1.593210517712613, 1.637685241756969, 0.15154370445283502, 0.41135466077754307, -1.8142227280018213, 0.22100585347093343, -0.7373693466648874, 1.0782922132986579, 0.891194252069619, 0.5961311950589354, -1.4201789829327522, -0.17742483245348706, 0.3999777817447935, 2.8336056608965765, -0.007743604578364474, -0.8620286749911322, -0.7208196232501715, -0.7647678756312573, 0.7675801416271044, -1.2223985523390597, -1.6312078501866518, 1.442831979730243, -0.21474114468242148, 0.3830072109147128, 1.5952673520501053, -0.3691828647018916, 1.4158547259366996, -0.12608076110040245, 1.8369843300200315, -1.1638075186536643, 2.2374036875381016, -1.5528662493874306, 0.9922101150712042, 1.7996662594287514, 1.8765683855407753, 1.2743283401032903, -0.7435848893411131, -0.08498158517093853, 0.20965795298524795, 0.9948683949715984, 1.1427728959036882, 1.7681047385223743, 0.5728519709959918, -1.7182377529633595, 0.8054436772989773, 1.4054228865025362, -0.08900408532501007, -0.7005932896472289, 0.3801641498024661, -1.0508841600848402, -0.1910940143994484, -0.41268347308163206, -0.6076517939192133, 0.8307004570223787, -1.1326933714419007, -0.13578506537205395, -0.2100459920839861, -1.1154967077547662, 0.044221103885371565, 0.5312884751130832, -1.8141291835836484, 0.6369608202751222, 1.3733418361105256, -0.4106676596242879, -0.7752994056068943, 0.016442481743881975, 1.290529516239029, 0.31942774864040974, -0.9977107843247062, 0.07161985409700458, -1.9363454143253618, 0.44301127398459583, 0.8633169949324477, -2.255154493544508, -1.2479768385462595, -2.1950754868271374, -0.4449118403357737, -0.19707733916936213, -0.4700865430355463, -0.22917524072776027, -1.0242777603560083, -0.2858592036386607, -0.9120024398545472, 1.0546166499144594, -0.35486633124485195, 2.2209563596013235, 1.14055221629478, 0.777187130698901, 0.6308651376136464, 0.4236704734596584, -1.0220191950145934, 0.35928231222717777, 0.41622274313694063, 0.4659271295741506, 0.22884974406884026, 0.33030393789246115, 0.8912661380613505, -0.5037965332265534, 0.8231423598401236, -0.5714377562291099, 1.799258985835063, -1.4571293665326983, 0.7445722869196723, 1.2991095889068565, 0.5726754997702801, -1.8472906426617852, 1.3479720062489449, 0.4362463966717203, 2.0580583511157684, 0.2654549722195639, -0.7526245865348997, -0.05553945167331653, -0.21170300993775087, 0.3765191619654275, 1.1838969948496367, 1.8344677323017686, -0.46645584193121226, -1.2256228571218077, 1.0471749964848802, 0.07641673214824256, 0.8490300013322002, 0.03528964709106928, -0.3160630312965959, 0.5449740411636796, -0.12694288414588695, 1.3548171597569707, -1.5417050720931136, -2.353766837516531, -0.23912606304128625, -0.3680469092580522, 0.7125785906638685, 2.5365225627063874, 0.353349721653618, -1.5587183544882486, -1.5145835204439904, 0.13316335590670672, -0.7140148900269099, 0.6505892427325471, 0.8339211569347984, -0.7495737202066183, 0.539405079940055, 0.6212805535445283, 0.4655560454715347, 0.8934680776367024, -0.4723484040682083, -0.44278116286229807, 0.1042982871214991, -0.038212567133977395, -0.1584211882479411, 0.382325609412024, -0.10928445904136112, -0.547438668738518, 0.771554668480078, 0.11985594483532418, 0.31199089473956476, -0.8293248232157513, -0.5700107758021837, -1.4001004692915853, -0.885661683197746, -0.70224548963148, -1.6624190986991105, 0.882635405880964, 1.0403237508262713, 0.555001467409749, 0.13413607362958957, -0.13499344310953887, -0.10932607899280164, -2.388139777978236, 0.029761193215880402, 1.922025970027175, -0.9659748776420785, 1.4337965020199464, -1.6590743861067991, -1.710033390824147, 0.17107054432854088, 0.48919306729136885, -1.4031193807652984, 0.19034629405946327, 0.04643760866802154, -2.036013762099705, 0.0364039182806068, 0.23393325743779728, -0.6815813407970182, 0.2600342291061335, -0.015634492031666766, -0.6681546895951713, 0.25506794712765324, 0.27422693305726975, 0.2337216535897763, -0.3770091949891577, 0.6097198464879092, 0.8305217897894736, -0.40622494568247597, -1.0519954525197506, 0.5368151304343568, -0.9900750602627976, 0.6236574313826915, -0.9925903938660384, -0.6782548678603546, 0.31342001944808784, 0.31926599925193067, -0.960433366666034, 0.015609312568290777, 0.3515595729344812, 0.9740357432320995, 1.002146242290052, -0.5034082041869289, -0.6379619825057267, -1.1659601483961946, 0.47858563768569756, 0.07066722464884251, -0.5217273536120876, -0.7602121683807199, 0.3144910821882782, 0.8226845717219321, -0.9093790664028658, -0.09945032179191003, 0.15038821156592297, -0.47719323821792753, -0.46375480239112443, -0.5357618448150674, 0.6408220045361686, 1.0648343288185373, 0.48097394730036824, -0.871590762320771, -1.1693724146341673, 1.850295422176942, 2.0672314540599572, 0.33302933243946176, -1.378246648125437, 0.6804157109720478, 0.23295055772245163, -0.9650065497015847, 0.5018475594665808, 0.29116561792669865, -0.9186531490309048, 1.2159939929423331, -0.6965325860835224, 1.413782362229297, 0.30139911703526995, -0.498738927709269, 0.46823963567634497, -1.277180172876616, 0.1691639750563758, 0.4526206346446659, -0.5195574209297192, -0.0387513687767077, -0.12789616804674922, 1.1606911052189004, 0.3590792885004866, -0.6916413172111701, 0.6122788143682848, -0.4387594649648636, -0.70024797561037, -1.0133717972863776, 0.6850121399550674, -1.076975008238685, 0.6170704636302756, 0.04824956603227372, 0.7388722734221806, -1.075215395919073, 0.33624744602032414, 0.9708879929753873, -0.3334732378030247, 0.3527170592434111, 2.4592519301544598, 0.6837653057959213, -0.392538954428628, -0.3118559838100643, -0.3545007380447334, 0.4860329603197318, -1.2765936468264578, 0.4321733869979137, 1.085019895712025, 1.8516133154215486, 0.3442910123430671, 0.0797852362648468, -0.3690327755622414, 0.6420809542714813, -1.633749360751521, 0.15034431463826917, -0.6322037267560228, -0.7184797572309808, 0.1309788878233118, -0.909843659956144, -1.546651876636204, -0.014274386936621426, 0.007686909107571996, -0.24791412186219133, 0.11026902815565018, -0.21649597171637688, -1.7181830842718986, -1.7059406498550969, 1.0950413443120115, -0.5994180722074175, -0.5884080584490251, -0.9386216671471848, 1.4475485609728629, -1.6151499306113228, 0.11656549936578711, 0.16960541895463466, -0.2984338702671333, 1.80956298697076, 1.8299387494120691, -0.3208727547203949, -1.5102505893468998, -0.7144417048365631, -0.8713335141743771, 1.0602518010291522, 0.16896381338088556, 0.6731235896341824, -0.6463387975601729, -0.9286165331208766, 2.5025244211386752, -0.7723559739402781, -0.7834942781175157, -1.9312757265061609, -0.33043510188601277, -2.3968111490804866, -0.35334900053167523, 1.5446838854611558, -2.0716161258870147, 0.19376449526641662, -0.08362555271403938, -1.2656427973818392, 0.42328012124921505, -1.855829389663579, 1.139530359237596, -0.28801401605007265, 0.022521039922430156, 0.917914149844657, -1.0038861165003914, -0.2540934466042418, -2.7961225540461303, -1.0770252170918544, -0.5096869056720607, 0.22585798216716624, 0.5881062798217396, 0.7968560484722933, 1.8612986049521718, 0.43926694271154126, 1.2892060445037268, -0.29083807380081655, -0.5061850409094757, -0.5704615477855776, -0.5224785570224745, 0.6550373306402569, 0.9939736027284318, -0.6211868299783057, -0.12385162737214635, 0.9117736025810489, 0.4682965166145394, 1.1507077879657277, -0.682831916957853, -0.27300833873593494, 1.0371462244546032, -0.16345371464092362, 0.3571732811230634, 1.4379151748071448, -0.6491004859820183, -1.1279247093804348, 0.3392963821110958, -1.235301637982561, -1.2782641653403541, 1.1403673548678888, -0.4869854619487631, -1.3063703092048888, 0.28459301130920345, -0.5254789111237098, 0.537266734498309, -0.7628345675600112, 1.1058201879501597, -1.1535582925395442, -1.100480405935566, 0.007970319495364121, -0.10424384725312624, 1.394381326608476, 0.033143892409658406, -0.35875220220300297, 0.5464611813255179, -0.7231754893927546, -0.1321054439427197, 0.3084534446823872, 1.0635138302176146, -0.03577938286682973, -1.4349360825253963, -0.3218852704313735, -1.0635247422465635, 0.34330148408405103, 0.032289778523305314, 1.4914260836687439, -0.45118457434627945, 0.21349899984693152, 1.962240666582235, -1.593274058859323, -0.5004583296447016, -0.34117809372051483, 0.6970206639569777, -2.444159504273869, 0.14729859513985388, 0.47878794086715143, 0.2749673585139895, -0.4770717188796703, 0.2148736810156065, -1.4779449435113543, 0.6728918158220056, 0.297526198902661, 0.9879229305898644, 0.31224467322444627, 0.20464746746065424, 0.31099819821786956, -1.589851742300023, -0.053226025274545126, 0.9856645197054321, 0.8110538565361903, 0.9235180346352558, 0.42532897877707254, 0.6395692878420295, -0.09452997278051165, -0.40331535129041773, 1.7282545036710801, -0.22633847510304345, 0.30364734548961986, -0.6834069188807966, -0.15547739527487067, 0.49152761656774113, 1.0098357154788202, 0.09421507767433432, -0.2435077707622859, -1.0994083704258328, -0.43316684602220407, 0.7355740852510394, 0.5267861558189425, -0.2538278182292869, -3.187080190306481, 0.3480419803846011, -0.06623916967716957, 0.5495054886340699, 1.7732505155418452, -1.5231120718012918, 1.7878917849837215, 0.7325504896044078, 1.4876314888031223, 0.6374358466493779, 1.3215139976485215, 0.35465142338967454, 0.1537399842357383, 0.8102206586897169, -0.050178684110913724, -0.6417777919229635, 0.39243355171481376, 0.244681935504353, 0.9434269041929274, -0.7575270803047055, -0.6176148297328561, 0.0579426225461068, -0.8988402371821027, 0.12781054162402386, 2.3837553919056504, -0.22680276493025336, 0.850529026346665, 0.223822845419059, -0.3109146393752587, -1.0582418104061984, -0.32606270693970885, 0.9512701197106698, -0.04695470747564542, 1.3146336328506543, -0.37226364873594575, 1.8511032361561304, 1.099455875341227, -0.2588435445482019, -1.1744558834299037, -1.650872648902938, -0.7484844256532623, -1.33077859030909, 1.5991958558609665, 0.014590303629696584, -0.9635099898442653, -0.06960807195690376, 0.042998479870353774, 0.9150175289046062, 0.5789069954378755, -0.7489612444268603, -0.7281639532596088, 0.5814360782379278, -0.9089614864854929, -0.10693171447674117, -1.3877734369773227, -1.0772015831079282, 0.14561587120793976, 1.5789297086232716, -0.4331040763252192, -0.9953331446059577, -0.21230602237498628, -0.30275967336012966, -1.091669951257878, 0.6220675069628128, -0.3332045378236093, 0.4143122567137048, 3.3853770760612067, -1.0964454777814838, 0.9713411501074276, 1.072497253309754, 0.22495515570135394, -1.5931083076906154, -0.6207393689596888, -0.8613414724369438, 0.2570387327594738, -2.0994375955970073, -0.8594689691038199, 0.3751799696960433, 0.373016619414607, 0.26839507813064395, 1.3530639422924773, -0.49802286244333693, 0.8729939239967092, -1.3473111107195348, -1.3265069970893415, -1.2008126809127633, -0.2062254876557951, -0.003387425764250697, -1.051226225463247, 0.23316269503156029, 0.3174935671294273, -0.37145668610919697, 1.0666413152939922, -0.00844513977608579, 0.722923473951842, 1.441373375835407, -0.993696104673679, 0.8614113383463458, 0.5056252170401412, 0.5171358998260691, -1.209883506254599, 0.21544449126390236, -1.0871378471073787, 0.585245566858854, 0.49829541223686347, -2.2375466318045776, 1.0835885236771927, 0.9969932209821392, 2.7357867577050587, -1.5141186035527112, 1.670973861125451, -0.21399721184854043, 1.071058520232209, 1.7157034771051995, 0.5858797185588877, -0.3748481839409836, -1.1570926501722547, 0.7654089500298077, -0.352207122112559, 0.5567583957677816, -1.0219534106983559, 1.770941035438719, 0.2372274916737864, 1.674381178931409, 0.11360507756172936, 0.8529775727557344, 0.16819661775119749, -1.341789416615605, 1.9393272205665213, -0.6999574582143824, -0.5151460002795136, 1.4551598130078156, 0.8268034427372644, -0.5603770323665312, 0.7101374687467898, 0.6299141633420283, 0.19757225772836007, 2.8195712422116506, 0.8686526045743422, 0.8538269963036526, 0.4311889917846858, 2.700708427776867, -0.3720634404305855, 1.588918936250494, -0.5626885712800768, 0.9174240233103865, 0.9998513397107394, 0.7026405330102202, -0.6154106727190096, 0.03643997533939675, -2.0504512036436515, 1.5976081299179752, -0.0061507523265308, -0.422635775494488, -0.19396989451858024, 2.0627391273945705, 0.11355873516869293, 0.5244461864178561, -0.8964821138134219, -0.43039778493843034, -1.3034256162087516, 1.5019055587341494, -0.958274716282998, 0.784979972969151, -0.5598738538502411, -0.69798998062517, -1.2372921054924868, -0.34862749836306794, 1.0257992703273402, -2.2530969181023037, -0.9409629097197084, -0.4134883892846218, 0.08651188947875335, 0.5740447988211336, 0.5492235530816871, 0.454633845842494, -0.2857652179086285, 0.8662845719334425, 0.48132378140260085, 0.058947562415571524, 0.07387381012344484, 0.0866601468288129, 0.006676690880946912, -0.8458990224418514, -0.5436792404984003, 1.301432548680146, -0.2527539458907146, 0.11022984070945059, 0.520267292955451, -1.0840625134863504, 0.22304810648065101, -1.2128061853149943, -0.6926031873424344, 0.030144436649417624, 0.23926031876773352, -0.5988539395268694, 1.379731486268688, 0.09555826340040142, 0.9409697071006325, 1.420225028610652, -0.8448755716137031, 0.5879509654190794, -0.9509862322168265, -2.315328726136612, 0.9336699891835182, 0.36815891196853734, 0.8300763930792534, -1.3780409252681434, -0.19883842479626707, 1.9915408905879215, 0.6522280745312469, -2.0150544261859085, -2.1305097063859755, 0.416839694382653, 0.04443386003443773, 0.027763782420934094, 0.04896210028360064, 1.7375915113814633, 0.6471931153277066, 0.8843147949098421, -0.7949957824804119, -0.34130387080623176, 1.2198557317790806, 1.6964887732549403, -0.35930898663612865, -0.08056379532055337, 1.9144403073116327, -0.2431027351466058, 0.5327391877724429, -0.6175812642204263, -0.5324074506415125, 0.6638760407735707, 1.0436009655696463, -1.803847042088494, -1.8145178201943057, 1.271519561684799, -0.390899396256712, 0.4532147671732079, -1.8697896287313522, 0.6110300920907777, -1.6061674370334094, -1.6970647142300983, -0.3091534453134726, 0.8263155915069732, -0.4153394249294948, -0.12365824367420891, 1.7125998246103145, 0.5902987928123145, -0.49070764033479297, -0.14493183755779462, 0.1270916209059894, 0.1708841138142404, 0.627214953845115, 0.5107992356988736, 0.3998786272382746, 0.9123085688233947, 1.6693741740655703, -1.1626942654656751, -0.7818056457677397, 0.9601598660404312, -0.2519521293402249, 0.9200366335409381, 1.1031758654819006, -1.4802513030611995, -0.7523417631179534, 0.8881045643168031, 0.5864503837372635, -0.11889645063823319, 0.3924757115568024, -0.6669856063835858, 1.6354203391068478, -0.41120697387266797, -1.2024989795915422, 0.37394588633777714, 1.1962412538038543, 0.07213002507758645, 0.002777603068228363, -0.07492245774902219, 0.7964881630811406, -0.45932857025440166, -0.48214918212250424, -1.0462437515057326, 2.063701438116704, 2.112104380780627, -0.5894722732694929, 1.6580140564579642, 0.7854798038064524, -0.8569964926632924, -2.0951965818872953, 0.8774508052130917, -1.389244869690391, -0.17027477988947562, 0.5515983471657016, -1.0160382397967969, -0.3356332247473731, -1.0307757298392932, -1.284161882748709, -0.06705488550458258, -0.1861176259799045, 0.8407157696833862, -2.733310119270185, 0.579890608816783, 1.7883655766394853, -2.010479295481365, 1.6693555046503423, -1.0444311404092972, -0.49993568420409634, -0.8364874118829069, 0.9730236074333845, -1.269079144699827, -0.3692380815616313, 0.01415188076755249, -0.23519141822968487, -1.5561786729696219, 0.43275404388864946, 0.2947941773178657, 0.8160703189589603, 0.5253024313981903, 0.630493309830323, 0.5998952522828931, 2.4400656024894243, 0.7144144711702725, -0.8925891723979107, -0.099643279256904, -0.12063269566710877, 0.4529148100867098, -0.7920385646108143, 0.9237558902761236, -1.116546721611839, 0.2965133360030689, -0.9436717277686504, 0.32168388525975755, -0.14209387499989082, 1.4170874210286846, -0.624654834798869, -0.2547279530619779, 0.3030286964253128, -0.06257258361708035, -1.4097310013781517, -0.6713112871908584, 0.06946490465677906, -0.8418392141287983, -0.8718243492671247, -0.24476485552476743, 0.4633069319431249, -0.4733814344182637, 0.17012465869389745, -0.8391706749173049, 0.8649845017556566, 1.3453307788365345, -0.9216450645802295, 0.35678587012018076, -1.3495958867204374, -1.3132481695934832, 1.6145624006775343, 2.094873589667836, -0.6315802079875318, 0.8533107951611801, -2.6625485163327545, -0.47724272513639915, 0.577045219555348, 0.5026358218971528, -0.3979414282492465, -1.7133698635041126, 0.6455326744577541, -1.3128204298152037, 0.488201163408656, -1.2570088875948346, 0.621220666344242, -0.14904854062451367, 0.8697258866604948, 0.34140430041317593, 0.42331458420553264, 0.08185746766858899, 1.6104261762090752, 0.7989388993138844, -0.8758563969093652, -0.15691710134113043, -0.107632885278329, 0.1894185966120079, 1.8439933861546833, 1.2233453744353289, 0.9276372861871899, 0.5054666117634131, -0.7845164807129351, 0.23310515718916866, -0.8667925740890141, 1.187887540027739, -0.01883421625660958, 0.2713471294739534, -3.011397955418674, 0.9495777130327285, -0.6958682111322214, 0.3901771704064756, 0.36943827254663164, -0.8285298561077, -0.29321087261411777, -0.06452685940141382, -0.5843633765663584, 1.0500304315521423, -0.33081378573039777, 0.6012602607827077, -1.084139869245077, 1.3107600302346103, 0.9821344157123579, -0.4803230468407274, -0.5021029819577855, -1.4495848563743456, -0.32382872129808926, -0.48630529503353476, -0.1766500211542533, 0.3268421118419477, -0.3154235869058609, 0.19136009477119517, -1.0560605894497888, 0.2776455752660773, -0.19186544349864468, -2.0505605771722353, -1.4302287960818978, 0.7496704992678412, 0.2739938181765603, -0.1811121177368692, -2.926868880142684, -0.1528671274050011, 0.3140906775343265, -0.022298968574602295, 1.2357043572273834, -0.3562613528157239, -1.509955199626031, 0.40879956812022, -0.6428954267350301, -0.8813434390713897, -1.4692798705123986, -1.289425889628345, -0.542888511421542, -0.7690658764977869, -0.29684809016906233, 0.44611629100077704, -0.5052660228686657, 0.7659188536422521, -2.2324951262856993, 0.5809133497431543, 0.22379310452204412, 1.353707460614003, -1.6146027122202284, -0.21156879567100506, -0.3659619265969675, 0.7067903041594537, 0.24732126163342433, -0.1578223178240722, -1.193484477428812, -0.22300045278142291, -0.825246213757605, -0.983205715238481, -0.10326927718259325, -0.8956395298689875, -0.5397378161485243, -0.447212799368259, 0.4447978951551442, -0.08065079488648749, -1.1819336628060977, -0.5810504128161839, 1.9281888713488442, -1.5734641567331842, 0.6482711678560356, 1.3681510728175725, 1.2072672630193124, -0.6946606283707489, 1.6701400646897255, -0.5399935239606167, 0.7095391602094931, 0.6632272473660461, -0.9165222737068408, -0.4454263975362408, -0.11476450057738034, 0.562368458531537, -1.5488368836969193, 1.0970095612860034, 2.8375993054836086, -0.34718902665549867, -0.43318588358490456, -0.5159741100756864, -1.248599583648327, 0.6690562939753941, -0.4748151232009611, 2.0965409027930844, 0.9468414357305364, 0.4385953928292148, -1.849728016331115, -2.763823135911633, -1.1643436559341254, -0.6425843399844381, -1.1543692163601738, -0.801830677431519, 1.4844536311895367, -0.05813312436011995, 1.929673169393522, 0.04722795423119915, -0.21417416701243217, 0.39428829087772055, 1.6911935851027984, 1.9977539506488478, 0.2465549473643168, -0.46211181937945867, 0.19391940634375157, -1.432419451449421, 0.5295599764976059, 0.8045307410655159, 0.5974703184468976, 1.5778932782277946, -1.2537943810262546, -1.0185497961851833, -1.4941513000036053, -0.8138595977873686, -2.284859488225588, 0.9878291964155032, -2.5111095123089466, -1.251755804372244, -1.175447637505462, 1.957276863490104, 0.3358395751791698, -1.081121040489907, 0.13215354400328172, -0.8568861490027719, 1.2086072789154374, -0.0022451676144258316, -0.4109374323584299, -0.7999336021881349, 0.1375509777019349, 0.053966433148878515, -1.0920648829131936, -1.4875633483353505, 1.1867955873680427, 0.8876223388653051, -0.750433194084348, -1.1248334428387567, -0.5732185808079651, -1.4781828404342037, 0.3952955878783337, -2.0069645997568153, -0.8782692655279836, 1.1592232213118192, -0.45628962762759395, -0.6948281647280776, 0.7264540271465845, 1.49660348202755, -0.3652104401268574, -1.0042086176734266, 0.574966828825161, -0.16023947282280523, -0.5057190135505422, 0.04087498779135139, -1.091661582892711, -0.55699184465153, -0.29285061156909864, 0.1148136629343723, 0.718798293681097, -1.2841153044696136, -0.5185657771723752, 0.8974057190991839, -0.7977673628313464, -1.3792353272003288, -0.9054295398037062, -1.9474151015638494, 1.044869377008405, -0.7933479500677901, 0.9023375323038998, -0.10604365931075599, -0.4333232621662606, -1.1008026901313808, 1.3741465120993226, -1.5086913743488048, -1.0361408951763331, -0.359181196126807, 0.6881550621123499, 0.518306917340889, 0.5611615866698442, 1.0530050763085808, 0.24581783377269373, -0.1363831058456642, -0.6235603616480456, 1.1642866598044748, -1.786508492863917, 0.4868516208482737, 0.8434162597858519, 0.27244395965464235, -0.42342728797789925, 0.3798359639909458, -0.4682197838553004, -2.1763797753554193, -0.14074791795069175, -1.168494085359605, 0.5288044169221369, 0.22685174475622885, -1.0326453681391223, -1.8014758357200826, -1.4036595960628215, 0.09561725456268258, 1.2403020325539516, -0.12135634148232584, -0.26192338618491023, 0.7221571267710493, -0.5718394749255319, 1.3409460805725013, 0.2819052739474544, 0.2923561803198393, -1.4320407228568761, 0.5594514576176723, -0.39501634900484284, 1.708298045031243, 0.5982470001013405, 0.5679053606652357, 1.7005944076961386, 0.1272829355776467, 0.8758138742503525, 1.6923412711404826, 0.03885619226030475, -0.687117102196487, -0.9266650897095551, 2.0300231295280278, 0.12101011223364401, 0.33723387219597334, -1.9095252922749, 0.1386380755979541, -0.9300247435777522, -0.054343383514480016, 0.4038049005537485, 0.7856958451398032, 0.9680638065932121, 0.4461545054724244, 0.025725294034542455, 0.9191536142538979, -0.9274967179947105, -0.321902355347619, -0.23393123973715113, -1.7499275310932696, -1.087559240582746, 0.546889818980622, 0.9421170114812909, 0.679082740235661, -0.15371599809775857, 0.25998417984772987, 1.5517724695275292, 1.8479796475663095, 0.9838674136131517, -2.414882435996836, -0.20398642950522997, -0.42719031170480487, -0.813239728977235, 0.7322370946200153, -0.09738751409452777, 1.0249887093824177, -0.1022418917061284, -0.9704650829429897, 0.40031899948630173, -0.25035936282155846, -0.8761112908531132, -0.5497402065298094, -1.1429096591786618, -0.7261164020577819, 0.8230885850725417, -0.08181715095919381, -0.999265967349469, 0.2945362318431397, -1.914523560751671, 0.8754604585864699, 0.3054499803100467, 1.247072714711865, 0.7451151139683062, 0.3055700912871777, 1.4448230159476756, -0.6845676724748191, 0.11026282793927449, -1.2592041851197278, 0.08194096137690067, 1.5420545927768068, 0.5666625266706321, 0.7211835256031627, 0.3165574682207997, -0.13449040034796975, 1.9045047068505445, 1.6376034137686715, 0.9866681041735388, -1.2405210362004644, 0.1718716254937843, 1.752220490608465, -1.2106908179953868, -0.11131722082764513, 0.8385325051650916, 0.777851536920146, 1.2174373980107855, -0.3644110421480918, -0.054144850892823594, 1.720615424167539, -1.3379592962972158, 1.092781642434078, 0.6220151487543099, 1.2435225714867726, -0.27893726001235464, 0.7334293128061424, 0.5882284638877306, 0.4542389518044875, -0.5182777983959669, -1.7594971025631687, -1.0869790521420797, -0.15145062039111487, -0.6295910070854004, -0.694703492194189, -1.1680628794062624, 0.06321566914917495, -0.023295726992281635, 0.2239073131583425, 0.8464420356725212, -0.09025099785757595, 2.6337378426382236, -1.2198682255139432, 0.14281741339343682, 1.2066352616160572, -0.560437721324383, -0.4142350682014753, -0.44999847534075627, 0.2393113281560263, -2.277095318670063, 2.1243500353854277, 0.25440726428833715, 1.318358216296337, 0.8544573815312361, -2.25740664677089, -0.15920548989366215, -1.2341462725963592, -0.0785205539921854, -2.3375003842593665, -0.15524964916183998, -1.1651708541968375, 0.8578254155176389, -0.5914586007115027, 2.1648410666825577, 0.043717443068376556, 0.7285148031627768, -0.26647004696251814, 0.43944000882830125, 1.2757245553911871, -0.26661371591217503, 1.1057447352739842, -1.5843707534390974, 0.6418466739723682, -1.5660527356885916, 0.5567528705893291, -0.45119845935708974, -0.6640167641319407, 0.1400799428008658, -0.5831092321000261, 0.04724536863302461, 1.4729869983028208, -0.1313016554257611, 0.5388634570694221, 0.6617982183028804, -0.8084865306299425, -0.062029222421116914, -2.091969845498863, -1.4759508853696437, -0.21650562648583374, 1.6839913383256226, 1.3699526134696052, 0.9127913140168632, 1.3083415225074575, -1.1319551571360251, 0.3284360350713444, 1.1950164567753399, 0.10665860755484853, 1.2653574844317899, -1.076750099325663, -0.7156308020781056, 0.5829728417848159, 0.7726668384510079, -0.7794679212327994, 0.5268616256699166, -0.13240817781334052, -1.106020321757988, 1.0466933565944851, -0.07139742309730854, 0.6585782783676221, -0.033878806603030484, -0.5793108250406553, -0.9590599637492735, -0.7528438860375695, -3.3233212342119285, 1.1391441085447849, 0.9407599855388028, -0.29759588825701666, -0.9201006816937654, -2.36345868489474, -1.4629725151069712, -1.053515105340139, 0.6352211920348864, 1.5599798561078728, -3.1452168779803413, -1.4516216991446735, -0.3404394541593115, -2.2969334771472507, 0.09287458261243184, 1.3213533046509445, -1.823591755699513, -1.0731652791868802, 0.3835177005417218, -0.5355307113065072, 0.7072694236541536, -0.1758183158877079, 0.2885240749751386, -0.9461148064189697, 0.42093036069145445, -0.3226067617315253, 0.2869343801312382, 1.0667788913563783, -0.5046672631756776, 1.4666306268922156, 0.6077514947579891, -0.1630238423925389, -0.4252143817698944, -0.4922251716331858, -2.3108033367793146, 1.5837328322213091, 0.2255616723611847, -1.236784862423731, 1.1793823301680697, -0.8508597933323755, -0.2148668990629094, 0.22490572715558813, -0.21516622442763636, -0.9722416329105378, 1.4019698482345178, 0.5263820013778243, -0.7528904475140612, -0.3364793687136503, -0.1672891015659351, -1.033427915641949, -1.3014295810425547, -0.5619274813295322, -0.11144299287249727, -0.16473522259516382, 1.9207726024073872, 0.7569997342654654, -0.8726772002049126, -0.2792765837653176, 0.9845181974265188, 1.6707997272925277, 1.3323151503532142, -0.581439158035746, -1.4333366641811383, 0.47877390141361714, 0.9692036478140716, 0.6720009994603162, -1.162115129622496, -1.0849150534692242, 0.11405798662728117, 0.8349357042541657, -1.2921790968943923, 0.08589817721776821, -0.17309598761794276, 1.2603336333523412, -1.3939854509975986, -0.8928202359261785, 0.10148717220730914, -1.1099468332780795, 0.509555744211926, -0.07837928405604509, -1.0246446097925983, -1.9696190336716433, 0.5371468712728256, 0.051357279370140126, 1.3136737436173476, 0.14644878950976103, -0.04744290932805473, 1.8593306827564893, 0.8696707054422385, -1.1905371725884615, 1.412121281921633, 1.1010968067750075, -0.016777439798315974, 0.23330708035643774, 1.310471485506223, 0.3624464412307304, -0.45413817803599305, -0.751766082574162, -0.08099494091039111, 1.8712782210812082, 1.5928429906923813, 1.251226729696428, 0.18911908837469157, -1.295926677266825, -0.14678485865881194, 0.5591267440494575, 0.4615989921443929, 0.7103002541926178, -0.2954415372684173, 0.7510080926798136, 2.209118353776986, -1.1753991477971533, -0.08125326566604328, -0.3778442618507345, -1.9180667785966645, 0.12337677086271283, 0.8167348819814549, 0.4315582644285484, 0.8669453452371657, -0.9396538627173596, -0.27168179630349193, 0.5635274292267789, 2.5060164620920906, 0.9780139939060987, -0.4149143851630852, -1.0650749308381608, 0.05971449944845743, -1.903619718092879, 1.9151534226191278, 1.146220260576559, 0.13852235019020265, 1.707708238807331, -0.7206768617176851, -0.3916542860830755, 0.6873866375107216, -0.8097087486785024, -1.6928875539842565, -1.1134653983950555, 0.5572116780791646, 1.4026417295695646, 1.2173424827060153, 1.3197085334980978, -1.2362877796309393, 0.6376614841641174, 0.2862684569726484, 1.2204298731035503, 1.4908310885526845, 0.5728618953095582, -0.1696488655643884, -0.8920912213489326, 0.046799411700825015, -0.5792644827122878, 0.5782847823871332, 2.3878774596776955, 0.9137577356555128, -0.35636788964878346, -0.6943278668100649, 0.3827252784216046, 1.1044764033336871, -0.044928463453919404, -0.7574319627322609, 1.1192911263564944, 2.411897280145179, 0.3867034906895467, -0.5062116812270782, 0.38016604677867766, -0.6125736184356703, -0.555904702602614, 1.2664785948895136, -0.21212026504054193, 0.8971674647562113, -0.1584060459825305, -0.7629351777758557, 1.619155459021917, 1.0866573122046173, -1.351906748110964, -1.2307314190747374, 0.8777941369642454, 1.1279178395460143, 1.0692658625952691, -0.5898105343568407, 0.39655511892239687, 2.644006588637767, -1.3278309852969814, -0.7771552231562925, 2.2059998081785004, -2.2865338109087805, 2.6593370083836194, -2.2833730239608316, 0.43888347158920066, -0.6691039324708423, 0.31075403953514197, 0.20556667205443704, -2.1461420852231408, 0.9735063452831453, -0.260399710516298, -0.22689383148479036, 1.0620655252460172, -0.4535513197390121, -0.1075723421978662, 0.6173911378588774, -0.5949949337882273, 0.6377545306127227, 0.08482315996402842, -2.638629077980654, 0.34990513161933084, -0.30971745043565735, 1.0891024552328061, -0.9525514578756826, 0.5603493767689609, 0.3441215337110275, -0.9486410270164034, -0.9803118541160665, -0.5019375860026483, 0.37758984300230247, 0.720428345444474, 1.0860205780375165, -1.380307448181342, 0.33056786652928194, 0.410545010607208, -1.0827755765270648, -0.21129484124970183, 1.5523897408719787, 0.6364115901337387, -0.08511748631631559, -2.8296571718281904, 0.8950440233191648, -1.3073154928038488, -0.956118139040212, 2.5170905078873793, 0.2035941835361198, 0.5747120608942193, -0.9287936203987673, 1.628598278193135, 0.4911356715863883, 0.6707045361459752, 0.12139998095204407, -0.025589804800398398, 0.1726782202613245, -0.6876771636529294, -0.11298111367328648, -1.0992096460151475, -1.0436783066981699, 0.03201632992138136, 0.21522510698326294, -1.0207595038806125, 0.171373725512121, 0.24808454338460056, -0.011172048629272784, -1.957142860521999, 0.3305232622708946, -0.12906987708884723, -0.151187793489331, -0.28647816071768845, 1.5299431575109599, 0.797934767816002, -1.8391527196213238, -0.988166988532911, 1.0912396051447568, -0.13547688963305704, 0.4278427079844998, -0.04449156168625981, 1.4788850795899793, 0.30084810961561426, 1.6519649869258972, -1.0383616101475188, 0.36795737205251694, 0.3757570000248039, 1.292873482355675, 0.9694598722583677, 0.9410941153573785, -0.29916242527711023, 1.2211645660053103, 0.26353747101071795, -0.21258418339734045, -0.1786678555785236, 0.2677189473588363, -0.5274470124824383, -0.228170971326345, 1.1472037299351314, 1.031277460966551, 1.188093673501805, -0.1275880791842245, -0.6523407882193903, -0.3013421972578181, 0.5698688649031661, 1.4238190317562553, -0.354258381650444, -0.2288889774935907, -0.8194928121628586, 0.07516961795503807, -0.050668017511287945, 1.4167893838173578, -0.8685266058439246, -0.27387198575458954, 0.6603417392964209, -0.4998992871707613, 0.1344797861301617, -0.13748401473517377, -0.15340438089829636, -1.3496585806291315, 0.0006611924027843418, 2.090170034131965, -0.46774160193064723, -0.32511302914125445, 0.6580321728661294, 0.7568567221820582, -0.7517240096117658, -0.5472517970394193, -0.33096623285579024, -1.8476024826531703, 1.4783662799002093, -0.5963071339974858, 0.8874163094118903, -0.9912479560542908, -0.9347039554732857, 1.0016781436963484, -0.010066803463913558, -0.6959010152335517, -0.5494909828093211, -0.5446757270539013, -0.7431705655951876, 1.254137183580568, 0.03263915428106869, 0.48745503464155815, -2.1017041706523893, -0.7635163737700926, 1.5100701753080636, -0.7006460003643932, 2.9144328306935297, 0.3275228729221029, 0.05527037857074617, -0.6045690040121826, -1.0727384305030034, -1.5036511574299853, -1.1227326260993635, 0.09467255157180239, 0.8134265889114799, -0.0948538081528822, -0.06058203308917737, 1.125845932715319, -1.2049253125309283, -0.6739631613198243, -0.8590761626500547, -1.63054593983355, 1.7218931835716733, 0.5304428455909946, 0.5860785844857955, -0.5079132545607048, -0.6824579588286157, -1.0428008260263604, -0.687511007724906, -0.2602221796510427, -1.520772722957856, -0.6819445100060461, -0.43630872729032444, 0.06814597179845998, 0.1571716728314442, 1.1496516533932324, -1.387064651544561, 0.4898454779239427, 0.08960945379146709, -0.30725813302612726, 0.1620758337845013, -1.1939209570469578, -0.23059088712310263, 1.484402578365381, 0.25432943262853247, 0.7556179006615843, -0.21863389191583962, 1.5921199665896437, -0.7218317557649834, 1.6496097067086513, -0.9361100506574662, -0.5473919462090366, 0.5846554583968951, -1.5298526004014865, 1.579869280197715, -0.8042456894711224, 0.9526386557401456, -0.7611176677320105, 0.5577675744622214, -1.2059952702293097, 0.2693303495663811, 0.33245726582749996, -1.577117585781449, -1.0161094301594216, -1.7173995250433403, -1.3747508581631929, -0.7821328070310452, 1.7220478449000425, -0.36671910319147455, -0.6512840982796978, -0.8542016133282413, -0.8656493347505391, 1.4585173886288696, 0.6379592660042115, 0.030908082458424472, 2.587715644186547, -0.0291439654760264, -0.70193139629173, 0.01760688966218384, 1.0558845773723413, -0.3391704829382601, 0.38266616975574635, -0.5308275670821653, -0.2895283773214109, -1.1255886884953048, -1.3937427367695352, 1.2434933992411676, 1.4075766187668968, 0.6151652457920491, 0.11637066116215827, 0.5026469075160435, 1.57320639832302, 0.19800955463348088, -1.1427850696844213, 0.27582162423231904, 0.7750323050231938, -0.17645661811048893, -0.05812620928683808, 1.989119383227092, -0.32347510118290174, 0.2096546928543783, -0.5320425675823729, -0.31527842735962686, -1.6013836065616491, -1.0158900942534972, -0.49245341503826706, 0.05208513764816899, 0.789674003083402, 0.027747078926708618, 2.3052253191897973, 0.2966445149928769, -2.5570968350145775, -0.09543051634691696, 1.837819588872624, -0.3718943581253157, -0.8718556356311771, -0.45928228880663363, -0.04924949507204911, 1.0253978590459873, 1.2699900597054419, 1.3363022002282288, 0.8019266837732391, 2.866042348215894, 0.6200708864962475, -0.8210775968852959, -0.2731450318154859, 0.6790519860331226, -1.584738135076795, -0.9143213198980531, -1.2374703531938824, 0.23224881078742507, 1.5815571005208104, 0.48205275390727886, -0.21986040274118804, -0.2231712792455568, 1.1100542938252909, 0.22371211902819046, -0.5451733139830784, -0.02207580116475046, 0.4210181105662767, -1.3632773026374396, -0.4527913452848704, -0.10906107480484313, 0.19674175145710907, 0.10307379820359829, 1.128239907844913, -0.22107655193850453, 0.8245165432407103, -0.6674130174414395, -0.5450156650186287, 0.19438878120933464, 0.5326814872148152, -2.7356018297586076, -0.8353578074928569, -1.9883863783107671, 1.397807895835274, -0.9749108502339209, -0.6482958048661612, -0.7493816993778888, 0.3959579380590117, 0.9042395011626347, 0.1016180651227589, 0.2348298044964142, -0.5215727932716213, -0.18848323792701205, -0.23018407488605475, -0.284947972280161, -0.31364745107187675, -0.851414728128538, -0.16800978552800516, -0.4552843968115745, -0.49100858429004046, -0.17178433776473756, 1.7079583542587564, -0.967331454235227, -0.44472483376472177, 0.19424980731831548, -0.25432371840578033, 1.216299932642224, -0.40680852759143576, -1.882646111144308, -0.8792220430885035, 1.4208929564739672, 0.7311419263349994, 0.6049387974690337, 0.29465516076433007, 1.41896699482255, 0.26391750313325646, -1.0314111929082173, -0.28834162886299425, -0.4248486966346862, -0.36784634281000933, -1.9877294281446054, 1.7775813490134371, -1.1646533253343865, 0.8955567822551596, -0.18397972001411486, 1.453775461284798, 0.5621004724979121, 0.018534650268976747, -0.03512467859417959, -0.1947575732495532, -0.5544012788393263, -0.6336852767855804, 0.8040641094243339, 0.2969568525992697, -0.6768052488930593, -0.8727906047541683, -0.6728739561365745, -0.9281826509274923, 1.369483864903108, -1.7817628050931043, -1.7388280873560076, 0.08077229381844502, 0.9728016016647875, -0.7631284644713007, 0.38702585280965063, 0.022213783422092646, -0.5682134623148496, 0.6391488004466702, 0.13714298951373155, -1.1401752673392744, 0.5505920569254382, -3.3368136066254745, -0.7884521207258972, 0.9042251783542209, 0.4401749958740226, -0.47304679509616154, 0.43636421483080073, -0.22492172478594946, -0.1339078500110159, 1.0476510378801387, -0.9675325039591482, 0.15502823091238122, -0.12911118896223947, 1.3909354596384202, 0.6302533647939111, 0.32918724229300045, 1.128215736918102, -0.24936930158000298, -0.8106290539514999, -1.9252701088995396, -1.2289531242685656, -0.6597134179609219, 1.5166880568712433, -0.3535235901049978, -0.5073402882236636, 0.0035748661172609114, -0.3185396491448768, -0.5949696287294551, -0.8816854850372354, 0.06699187401027527, -1.1510928829590592, 0.7843933994018097, 0.015123787714246566, 1.1577634774949932, -1.8725841606601512, -2.201458161105382, 0.24248539285718262, -0.40840948090781665, 0.6982115711587412, -2.8740616825213356, -1.3664897523614887, -0.059485990377076005, -1.0511746372916535, -0.9769635186001576, -0.24452838435453436, -0.11683611155524475, 0.26481169972766994, -1.0149320578595378, -0.4416348268024248, 0.06367286641427038, -1.1739048686459905, 0.32633527159484277, -0.6783589841242564, -0.07375565540548591, -0.01445291146134963, 1.1193841785608771, -0.2996899711445209, -0.19298996224916456, -1.6234641201252844, 0.2050533636997747, 0.47133389139370224, 1.0592428417591604, -0.14511835241115723, 0.15587954781988395, -1.2459569392027738, 0.6626613741508033, -0.39130678195190255, -0.7828201040421331, -0.5634975249883207, 2.227484462864323, -0.46608836526160796, -0.8319403837322153, -0.4942408689935203, -0.5262261946105461, -0.4830221015994973, 0.43793359633924017, 0.11638886072450819, 1.037274470100979, 2.5819707283924807, -1.3872111873659403, -0.2635134183333602, 0.6672650875833132, -1.3645141991342562, 0.4231666927988353, -0.6948509804089162, 1.4572829077603777, -0.37334615321211634, 1.722376492216022, -0.21291782063685458, 0.9746803763976767, -0.9108430796832133, 0.7978722934276837, -0.6837817180997431, 1.18166528349693, 0.5260382102875517, -1.3502939871849085, -0.7496317679479646, -0.8890912570360758, 0.1268688085223892, -0.4178343049503111, -1.879537376698308, -1.5299406075877413, -0.6390790372162466, -0.8843762101141575, -0.22504322768886695, -0.7283925250543863, -1.1438887870700682, -0.5114007892861762, -1.4998501564158755, -0.9351007432270109, 1.1112751624556572, -0.4491711909975288, 1.4042312736382057, 0.9321599331785008, 0.6095570641761761, 0.14829644746490525, -0.9038418995169326, -0.9842950729424014, 0.496984257724647, 0.23182184205966902, 0.22805109839140944, 0.3198035858436882, 0.3134828792586655, -0.06719733384086879, 2.1259608583877667, 0.33824006285333025, -0.43717803741233746, 0.4318161682308315, -2.6122609644931623, -0.6997074280298079, 0.5144963289806032, 0.05651590418244137, 0.14804875181883714, -1.2600580026761423, -1.1099577967488323, 0.4766050071699995, -0.5841741333061419, 1.617493114649336, -0.6595725717513025, 0.6472647162497241, 0.3688284000869439, 1.1093022908053058, -0.46165772743097927, -2.1353806361234997, 1.6773370033720079, -1.204396045525006, -0.5344628989734751, -3.2134501909308515, -0.8150835601292014, 0.8826010862416196, -1.4882598005556258, -0.7695450792203028, 0.021094724577908647, 0.010205613801061272, 0.1663240871037339, -0.5946456978166414, -0.24763050957993432, -0.030151843895480326, 0.07101878581680134, -0.32492713989153693, 0.766531481995533, -1.0667264593346741, 0.4657602598968884, -0.07362501795314011, 0.4473858006552252, -0.429172513903168, 0.6807920774154147, -0.5897242734827811, 0.6845973415162611, -0.9512499568842849, -0.3565501105366005, 1.4518484869509156, -0.32145613082655755, -0.2916176929195348, 0.16355932484626942, 0.5173145207547497, -0.24453212685499917, -1.9414883672926686, -0.212859058063452, -0.6605631272746186, 1.4827298560863822, -0.6513180541849882, 0.6724758549477491, -0.14017832691040938, -1.8880715092070024, -0.7503639793882452, -0.5063896871524187, 0.2448455713921547, -0.5153996156091584, 0.7840674051789135, -1.0556078827816187, 1.664392435536143, -0.8535241424425237, -0.7723375094609317, 0.2117826287615558, 0.108040729371209, 0.04028120231579016, 0.9395671551157299, 0.7287180164061652, 0.9511783391865821, -0.04918070962182983, -0.023841479053338818, 1.2063023016782388, 0.19090779659228105, -0.9695229891988846, 1.4777269936065518, 0.7675761667611376, 0.8510524608280117, 0.8682635408010854, -1.369462964268613, -1.3340688539506471, 0.744969184335938, -0.7518485803962862, -0.1422366881224944, 0.22496794973351308, -0.4578536005997885, -0.18202381353196534, -1.6260782735242965, 1.2957494278990358, -0.9649365515637904, -0.03439045118753631, -2.236177264992564, 0.7612829123704644, 1.8641014535404632, -0.29707420366888226, 0.9738584560772886, 0.5208602932462543, 0.7198274653862429, -0.7969513280685245, 0.17537586373522265, 0.10553189705421098, -0.2652548314704643, 1.0987978732167478, -0.49025438762643575, 0.0675070472580129, 0.13377754598938205, -0.8084365687239247, 0.11775896635306098, -0.3832806435061706, 1.2658020479831351, 0.4624635909324614, -0.5443767558046503, -0.6034472136319616, 0.6071927380365083, 0.11054472325633231, -2.1478556958762076, -1.1244316499918057, 0.04030947598396944, 0.5915729266458355, -0.1667760370595469, 0.9548618079616752, -0.9615177315790241, -0.6849561466829177, -1.154393835356694, 0.6454420039481406, 1.2810450406914702, -1.812709423112673, 1.462795903843146, -1.257823299556858, 1.411946076458547, 1.1421416691403483, 0.5517785938269258, 0.06467549438321074, -1.7213014536926978, 1.275780163867678, 0.8504896738209606, 0.4167203373850572, 0.6107998462811738, -1.7400734575531767, 0.7101154535243805, -0.29807524721134104, -0.6352957805228283, -1.3064232030611476, -0.5536640124886686, -0.1691592023932854, -0.9287672468567164, 0.8172517262200283, 1.3186784517321215, -1.1799901063950375, 0.8091698705230459, -2.9218728384475496, 1.6490999249146814, -0.8832476041514031, -0.8096460453350635, -1.5468999054904635, -1.3951302934682333, -1.288518839675267, 0.5615723561300497, -0.6563716801834586, -0.662745542653008, 1.5143906259450828, 0.4001462387015671, -0.09996591852703379, 1.824019208710039, 1.0238112375959239, -0.28619922512562707, -1.2666941500421862, -0.2835463111104605, -0.7632678143924629, -0.9332007004060868, -0.474823000658191, -0.030482854276359467, 0.9498981627011178, 0.30061420867914734, -0.9064871956378975, -0.8459338783899564, 1.0442898197171606, 0.906850746886046, 0.0006970890911782222, -0.3289214212147488, 0.8889637375964722, 0.2876846418732788, 1.4921560648314134, 0.8215914167568649, -0.2678682682569288, -0.24153405390435362, -0.28268973385268087, -0.8895858522338826, 0.10790438145108781, 2.053555231540818, 0.19376875149286193, 0.11364768531120033, 0.2864796585190118, -1.469391619323565, 0.323737687706099, -0.7006179797688717, -0.8522379763255976, -0.9827490616469862, 0.9426820814620033, -0.42057213964293594, -0.898587330126139, 1.9463945922214192, 0.2298251154878355, -0.7674747825523263, 0.1164285104706657, -0.7288273335936456, 0.45798650508663735, -0.06969502306372034, -1.3947880827990742, 0.10965615130910611, -0.7447497109078013, -0.033939222764769364, 0.9743743779874803, 0.15768532665515272, -0.41521191472208113, -0.09524170515918318, -0.2972541574552231, 0.37216510358070426, 1.3447481539517108, 0.6465734184505931, -0.9387308067267649, -1.471656787576621, -1.590787932141196, -0.3806030046722262, 0.017432043466107675, -0.6068991537687187, -0.07001379896453039, -0.48421443790449675, 0.6994263304953742, 0.17189084092265547, 1.1350702066399252, -1.001067710054214, 0.37069566300474194, -0.2558818062935809, 0.24018180922649174, 0.32856339049706834, -0.6409721350123994, -0.030885217586216474, -1.5582805077418682, 1.3351748574779112, -1.4325539445536009, 1.1159155269073544, 0.7271761182872339, 0.26659282455031935, -0.1725544672341241, 2.0207853982786146, 0.5184283648958948, -0.528775061441535, -0.888795421200171, -0.5085062889749427, 0.9482124065935376, 0.035260110425671544, -0.05553868216464384, 0.7956330478227597, 0.29461481051420163, 1.2708952374096243, -0.6655261857747652, 0.8484399164607764, 1.32965417380789, 0.05200889133067852, 0.6042598320135926, -0.36787651585557846, 0.7948988663109254, 1.2568918457539415, -0.10596508290575968, -0.16449387905980145, -0.819159591377676, 0.3347495896585915, -0.8011705410656206, 1.7317840758263665, 1.6679952316545053, -0.6318309596723187, -0.11786269089384498, -3.017784936493293, -1.0324331147270138, 0.05098617205159069, -1.55762775574553, -1.2844322187643868, -1.9067130434065778, 0.3251729920032587, -1.0402881133857345, 0.8182220347784838, 2.151889873804937, 0.7429851888339049, 0.2886381641706872, 1.0058438498980644, 0.8274151784325058, -0.6590156517711508, -1.7379337323602655, 1.2729188807737843, -1.352898782775187, 0.07419909031424844, -0.5936695792016135, 0.7216697140698949, -0.1585778404187945, -2.8959292729178636, 0.516502102835974, -1.084096494083324, -1.2495005039328537, -0.36426083458185565, 0.06493120446239933, 0.7222612006999598, 0.3802420144947946, 0.2032068852818164, 2.100868332965366, -0.30038972945230663, 1.6916940177499928, -1.7896154143740388, 0.5908310684365491, -1.5330945864607248, 0.19911721902136217, 0.09440759509345135, 0.2621022213842291, 0.2337376769516187, -0.32346159468697755, -1.6843424557740068, 0.8305187039030801, 0.2861077408088504, -0.7014785356251018, 3.2420035053508656, -0.7631794104656827, -0.1927031491817015, -0.8083179958051174, 1.4336959589310556, -1.528557886621611, 0.3241519888768782, 1.4843250306690432, 0.5951169969969071, 0.29187737738486363, -1.305618594324813, -0.487704596471894, 0.3734586984579013, 0.20672431916380019, 0.31440812558265824, -0.011536508894218934, 1.0901041759682695, 1.3579161780719289, -1.7605086224892914, 0.6955690649414406, -1.7849327824158425, 0.7285475949212437, -0.9563610927525134, 0.7636157627802236, 0.07691866769330909, -0.8190428615998414, 0.47256822840180895, -0.22238778285728775, 0.7989710382231009, -1.553131847689741, 0.8739462117763064, 1.175355071223816, -0.5980752885069343, 0.24486667862932676, -0.22563004426398742, -0.4666688363708112, -1.388036664174069, 2.2657300572622834, 0.1820886424630999, -2.6204916409234125, -0.08658740910265585, 1.5530734617606499, -0.14062899921553507, 0.5659518064551944, -0.5419180668239113, 0.7123262822648069, -1.5676966354755295, -0.6892861371815134, -0.2388877862688213, -0.5132582828049207, 0.059980613081183624, 0.6684372086224472, -0.5073338443716263, 0.17476995055267405, 0.38205194285272515, -0.6414442950643019, 0.21858907558369944, 0.31055735957526126, -0.9743766162096973, -0.9642457607772894, 0.8123823858559259, 0.8752878415420694, 0.4202057895962068, 2.3907358677583606, -1.29279729191458, -0.09030211490984354, 1.179745114999493, 0.07289371116679806, 1.2442133939229578, 0.15309210726632397, 1.3285366385497395, -0.8883247031885015, 0.877992914127865, -0.5957087257757218, -0.7157932693273359, -0.24787778524218543, -0.4943397130585879, 0.48974613433242103, -1.1902932048314798, 0.814995201388691, 0.6796488267065625, 4.0334478757873065, -0.9212158143381707, 0.2452574483443604, -1.7956609833818178, -1.6920472794358736, 0.6705654053023582, -0.5409909527196273, -2.136987599729963, 1.9483994427791147, -1.9030544439146386, -0.5215270642833268, 0.1791419036658827, 1.862168624559999, -1.1714849219358414, 0.07147184229718294, 0.9212717310095809, 0.4884864115269138, -1.8281363097790342, -0.5292252206126318, -2.0739543876944553, 0.3548247908474187, -0.07293565219258169, -2.2436665270818024, -0.8245144674214941, 1.4199386683083541, 0.8273772826368543, 0.8401701301157236, 0.13652740791084036, -0.11405307578319686, 1.5701570327067664, -0.8877808666739483, -0.8283226787607108, -1.1873719762281156, -0.20224923606799927, 0.14768598252649054, -0.009529173410792471, -0.07690782463137043, 1.2743002665791632, 1.3740740965669347, -1.7983428282827174, 0.8805460559400042, 0.16133629555845186, -0.7828614365022153, -0.5325075374019106, 1.635789765262921, -0.40533579825555704, -0.5340738893035718, 1.1052395515593936, -0.37735365762291484, -0.006272240034511313, -1.323406346967919, 0.2611734280443723, 0.3657682913882984, -0.243438624362314, 0.5188796246768447, -0.8388240494523658, 0.26089380950290386, 0.6822168037101979, 0.012675372834917457, 0.25063209762882427, 1.0440252789762967, 0.3367045696811463, -0.4230899237432986, -1.6638994944509793, 0.07788286968775414, 0.1931548273694619, -0.04115274830785402, 0.8454891007872631, 0.6417030713190266, -0.3806534489824083, -0.7805234732094096, 0.2940218636177634, -0.7875639939893648, -0.6664950563632375, 0.926411269776692, 0.2371411124664722, 1.2689272683600343, -0.23525116442379906, -0.9705561278173626, 1.276820949169948, 0.1798951179686059, 0.6686858579068066, -0.51497238563566, -0.32393336707060494, -1.2377215497845193, 0.9434606548434903, -1.3594328528822273, -0.13285367966896233, 0.17383325040093564, 0.5513871555136508, -0.41106274363249407, -0.08945404207343127, 0.5507103348517107, -0.03135743197057053, 0.5971730873111041, -0.8676141611332625, 2.0209154728992904, 1.7280097814449882, -0.7205487029415172, 0.027520397463144376, -0.3267331778872937, 0.764218772626596, 0.7148758815624564, 1.6170212185295867, -0.7971018369928616, -1.776295081900571, -1.0069795900293872, -1.284069060643766, -1.4688732252151082, 0.5436853438747838, 1.810852768809265, -0.25526962347160587, -1.12692595408743, -1.6117427428915274, -0.49574481668604786, -0.7815225915125645, -0.15060033076328697, -0.17951629251457457, 0.14319868977759156, -0.4418553132320667, -2.3508688320806166, -0.10172144668944827, -0.3020165554255116, -1.2373763314726058, -0.5746401674024111, -0.6253543810177299, -0.6213828668248695, -0.6484187709802138, 0.5193023950285843, -0.3513849974910839, -0.49176151459171846, 1.0841228994204744, 0.7796201283835864, -0.6481933495096277, -0.38647733485583696, 1.0814582564656565, 2.8835173636980387, -0.7039326889482121, 0.6268369333556333, -1.0800386006364895, -1.5332563416348948, -0.28428596561885155, 0.11270481099137465, 1.5955864101050667, -0.38186898474601155, 0.7168838018835736, 0.9186363815263298, -0.8686147539125794, -0.6428412745234651, 0.46314142164972394, 1.0244592261076677, -1.5411227618371264, -0.3306794627823458, 0.22770607421454125, 0.6278492419179479, 0.5435980513925985, 1.609437079638076, -0.9083647740906858, -1.0833963324131066, -0.2215686432259167, -0.3952084972078314, 0.4499139406479371, 1.2010632717032992, -0.2900771831286922, -1.4721452381960862, 2.5566374502474507, -1.0807168480620974, -0.8245958066846649, 0.3125792741760802, -2.02068583366501, 0.7085052713418235, -0.2970499946347354, -0.20498298098143736, 0.3651313799579744, 0.32337798525769457, 0.8503024521973035, 1.6743429351042647, 1.5662998984592513, -1.1336165289576399, -0.20270426733299662, 0.08333724375444482, -0.12338582430355155, -2.267862520609561, -0.2635898936411982, 0.7563150888672838, -1.6931200739298142, 0.15419986582452194, 0.4214873476505866, 0.6318702990270317, -0.6917531368353614, -0.24664557117447772, 0.05472517417028599, -0.07514648084663673, 0.18115899663038873, -0.09283023401684101, -0.8044061217466543, -1.0272296967389136, 0.14540818190902727, -0.1169093014742454, -0.8191241494866173, 1.1372671550466298, -1.5184345237893766, 0.3147616024053867, -0.23117628985111532, 1.698028543876325, -0.486134485631765, 0.4679010473957138, -0.2348835630368153, -0.08028704112396734, 0.4559921843991347, 0.61040686719971, -0.9930520773753785, -1.3398881708474202, -0.34695032469910203, -0.24812151586813294, -0.05263311592496186, 0.7377613227627003, 2.0386588413369178, 0.6658992727093432, 0.7863260150737836, 1.321034200929683, -0.9656618878734213, -0.10618165828493153, -0.04449006280666143, 0.08397789649309888, -0.5554915418021481, -0.5578052908647, -2.2478281527725326, 1.2121267525273713, 2.303937401558037, 1.0891848531813872, 0.2505914851686798, 0.03993102535166137, 1.637968781070919, -1.9533040744604289, -1.0951891601999946, 0.30997190940555763, 0.02722451970024092, -0.060450474060744386, 2.1742061119258684, 0.5321884971520754, -0.2894879942662693, -0.25479584031079056, 0.4533875106687319, 0.5912948581857665, 0.11115751497124854, 1.4653276793292223, 1.3482927461679897, -0.34766952727798356, 1.4082702454495704, -0.4065189209452197, -0.7387691141426456, 0.545878098838919, 0.15618695082984854, 1.0733221457145083, -0.5973187289255708, -0.1593253434270989, 0.40583212131110274, 1.0336538732397742, -1.2957165875937195, 1.1271013218289738, 0.6562318340334902, -0.4835430893721334, -0.09821702774943149, -0.4207344324184642, -0.07848240675177852, -0.15195694785301792, 0.5116864323941376, 0.33164088605179787, -0.157617099815929, -0.3800158632081154, -1.012378770157342, 0.7409926772629555, -2.109757493358683, 0.8662213307640856, -0.2877038433747326, -0.7153034365809222, 0.47725971154572255, 1.019265724090774, 1.060960558012433, 0.6860720098754921, 0.6109647867316557, 0.0530725885803181, -1.0570520171677757, -0.593476726441866, -2.137197092520296, -1.4480737107210293, -1.339753479633594, -1.1244345380819893, -1.7267154306500956, -0.31667673237772553, -0.6144999358032197, -0.13927808987762375, 1.0272942665180151, 0.28739880053142264, -0.7723926346911469, 0.1631785013151319, 0.9057696362680646, 0.5486810198178145, -0.9570956319113193, -0.7358294709888922, 0.34334120731592427, -2.506293901273404, 0.024089214740150425, 0.02415864697065127, 0.9960227150651769, 1.3324769137380321, -0.9810780929613986, -1.2325268236527298, 0.2746557854669319, 2.05138316892124, 1.1680407455009938, -1.3626464173715804, 1.0224762491688073, 0.25882169247652875, 2.1727680443885298, -0.21923439916742682]\n", + "Histogram bin edges: [-4.321882426849608, -4.313180338280591, -4.3044782497115746, -4.295776161142558, -4.2870740725735415, -4.278371984004525, -4.269669895435508, -4.260967806866492, -4.252265718297475, -4.243563629728459, -4.234861541159442, -4.226159452590426, -4.217457364021409, -4.2087552754523925, -4.200053186883376, -4.191351098314359, -4.182649009745343, -4.173946921176326, -4.16524483260731, -4.156542744038293, -4.147840655469277, -4.13913856690026, -4.1304364783312435, -4.121734389762227, -4.11303230119321, -4.104330212624194, -4.095628124055177, -4.086926035486161, -4.078223946917144, -4.069521858348128, -4.060819769779111, -4.0521176812100945, -4.043415592641078, -4.034713504072061, -4.026011415503045, -4.017309326934028, -4.008607238365012, -3.999905149795995, -3.9912030612269787, -3.982500972657962, -3.9737988840889455, -3.965096795519929, -3.9563947069509124, -3.947692618381896, -3.9389905298128793, -3.930288441243863, -3.9215863526748462, -3.9128842641058297, -3.904182175536813, -3.8954800869677966, -3.88677799839878, -3.8780759098297635, -3.869373821260747, -3.8606717326917304, -3.851969644122714, -3.8432675555536973, -3.8345654669846807, -3.825863378415664, -3.8171612898466476, -3.808459201277631, -3.7997571127086145, -3.791055024139598, -3.7823529355705814, -3.773650847001565, -3.7649487584325483, -3.7562466698635317, -3.747544581294515, -3.7388424927254986, -3.730140404156482, -3.7214383155874655, -3.712736227018449, -3.7040341384494324, -3.695332049880416, -3.6866299613113993, -3.6779278727423828, -3.669225784173366, -3.6605236956043496, -3.651821607035333, -3.6431195184663165, -3.6344174298973, -3.6257153413282834, -3.617013252759267, -3.6083111641902503, -3.599609075621234, -3.5909069870522172, -3.5822048984832007, -3.573502809914184, -3.5648007213451676, -3.556098632776151, -3.5473965442071345, -3.538694455638118, -3.5299923670691014, -3.521290278500085, -3.5125881899310682, -3.5038861013620517, -3.495184012793035, -3.4864819242240186, -3.477779835655002, -3.4690777470859855, -3.460375658516969, -3.4516735699479524, -3.442971481378936, -3.4342693928099193, -3.4255673042409027, -3.416865215671886, -3.4081631271028696, -3.399461038533853, -3.3907589499648365, -3.38205686139582, -3.3733547728268034, -3.364652684257787, -3.3559505956887703, -3.3472485071197537, -3.338546418550737, -3.3298443299817206, -3.321142241412704, -3.3124401528436875, -3.303738064274671, -3.2950359757056544, -3.286333887136638, -3.2776317985676213, -3.2689297099986048, -3.260227621429588, -3.2515255328605717, -3.242823444291555, -3.2341213557225386, -3.225419267153522, -3.2167171785845055, -3.208015090015489, -3.1993130014464723, -3.190610912877456, -3.1819088243084392, -3.1732067357394227, -3.164504647170406, -3.1558025586013896, -3.147100470032373, -3.1383983814633565, -3.12969629289434, -3.1209942043253234, -3.112292115756307, -3.1035900271872903, -3.0948879386182737, -3.086185850049257, -3.0774837614802406, -3.068781672911224, -3.0600795843422075, -3.051377495773191, -3.0426754072041744, -3.033973318635158, -3.0252712300661413, -3.0165691414971247, -3.007867052928108, -2.9991649643590916, -2.990462875790075, -2.9817607872210585, -2.973058698652042, -2.9643566100830254, -2.955654521514009, -2.9469524329449923, -2.9382503443759758, -2.929548255806959, -2.9208461672379427, -2.912144078668926, -2.9034419900999096, -2.894739901530893, -2.8860378129618764, -2.87733572439286, -2.8686336358238433, -2.859931547254827, -2.8512294586858102, -2.8425273701167937, -2.833825281547777, -2.8251231929787606, -2.816421104409744, -2.8077190158407275, -2.799016927271711, -2.7903148387026944, -2.781612750133678, -2.7729106615646613, -2.7642085729956447, -2.755506484426628, -2.7468043958576116, -2.738102307288595, -2.7294002187195785, -2.720698130150562, -2.7119960415815454, -2.703293953012529, -2.6945918644435123, -2.6858897758744957, -2.677187687305479, -2.6684855987364626, -2.659783510167446, -2.6510814215984295, -2.642379333029413, -2.6336772444603964, -2.62497515589138, -2.6162730673223633, -2.6075709787533468, -2.59886889018433, -2.5901668016153137, -2.581464713046297, -2.5727626244772805, -2.564060535908264, -2.5553584473392474, -2.546656358770231, -2.5379542702012143, -2.529252181632198, -2.5205500930631812, -2.5118480044941647, -2.503145915925148, -2.4944438273561316, -2.485741738787115, -2.4770396502180985, -2.468337561649082, -2.4596354730800654, -2.450933384511049, -2.4422312959420323, -2.4335292073730157, -2.424827118803999, -2.4161250302349826, -2.407422941665966, -2.3987208530969495, -2.390018764527933, -2.3813166759589164, -2.3726145873899, -2.3639124988208833, -2.3552104102518667, -2.34650832168285, -2.3378062331138336, -2.329104144544817, -2.3204020559758005, -2.311699967406784, -2.3029978788377674, -2.294295790268751, -2.2855937016997343, -2.2768916131307178, -2.268189524561701, -2.2594874359926846, -2.250785347423668, -2.2420832588546515, -2.233381170285635, -2.2246790817166184, -2.215976993147602, -2.2072749045785853, -2.1985728160095688, -2.1898707274405522, -2.1811686388715357, -2.172466550302519, -2.1637644617335026, -2.155062373164486, -2.1463602845954695, -2.137658196026453, -2.1289561074574364, -2.12025401888842, -2.1115519303194032, -2.1028498417503867, -2.09414775318137, -2.0854456646123536, -2.076743576043337, -2.0680414874743205, -2.059339398905304, -2.0506373103362874, -2.041935221767271, -2.0332331331982543, -2.0245310446292377, -2.015828956060221, -2.0071268674912046, -1.998424778922188, -1.9897226903531715, -1.981020601784155, -1.9723185132151384, -1.9636164246461218, -1.9549143360771053, -1.9462122475080887, -1.9375101589390722, -1.9288080703700556, -1.920105981801039, -1.9114038932320225, -1.902701804663006, -1.8939997160939894, -1.8852976275249729, -1.8765955389559563, -1.8678934503869398, -1.8591913618179232, -1.8504892732489067, -1.84178718467989, -1.8330850961108736, -1.824383007541857, -1.8156809189728405, -1.806978830403824, -1.7982767418348073, -1.7895746532657908, -1.7808725646967742, -1.7721704761277577, -1.7634683875587411, -1.7547662989897246, -1.746064210420708, -1.7373621218516915, -1.728660033282675, -1.7199579447136584, -1.7112558561446418, -1.7025537675756253, -1.6938516790066087, -1.6851495904375922, -1.6764475018685756, -1.667745413299559, -1.6590433247305425, -1.650341236161526, -1.6416391475925094, -1.6329370590234928, -1.6242349704544763, -1.6155328818854597, -1.6068307933164432, -1.5981287047474266, -1.58942661617841, -1.5807245276093935, -1.572022439040377, -1.5633203504713604, -1.5546182619023439, -1.5459161733333273, -1.5372140847643108, -1.5285119961952942, -1.5198099076262777, -1.511107819057261, -1.5024057304882446, -1.493703641919228, -1.4850015533502114, -1.476299464781195, -1.4675973762121783, -1.4588952876431618, -1.4501931990741452, -1.4414911105051287, -1.4327890219361121, -1.4240869333670956, -1.415384844798079, -1.4066827562290625, -1.397980667660046, -1.3892785790910294, -1.3805764905220128, -1.3718744019529963, -1.3631723133839797, -1.3544702248149632, -1.3457681362459466, -1.33706604767693, -1.3283639591079135, -1.319661870538897, -1.3109597819698804, -1.3022576934008638, -1.2935556048318473, -1.2848535162628307, -1.2761514276938142, -1.2674493391247976, -1.258747250555781, -1.2500451619867645, -1.241343073417748, -1.2326409848487314, -1.2239388962797149, -1.2152368077106983, -1.2065347191416818, -1.1978326305726652, -1.1891305420036486, -1.180428453434632, -1.1717263648656155, -1.163024276296599, -1.1543221877275824, -1.1456200991585659, -1.1369180105895493, -1.1282159220205328, -1.1195138334515162, -1.1108117448824997, -1.1021096563134831, -1.0934075677444666, -1.08470547917545, -1.0760033906064335, -1.067301302037417, -1.0585992134684004, -1.0498971248993838, -1.0411950363303673, -1.0324929477613507, -1.0237908591923341, -1.0150887706233176, -1.006386682054301, -0.9976845934852845, -0.9889825049162679, -0.9802804163472514, -0.9715783277782348, -0.9628762392092183, -0.9541741506402017, -0.9454720620711852, -0.9367699735021686, -0.9280678849331521, -0.9193657963641355, -0.910663707795119, -0.9019616192261024, -0.8932595306570859, -0.8845574420880693, -0.8758553535190527, -0.8671532649500362, -0.8584511763810196, -0.8497490878120031, -0.8410469992429865, -0.83234491067397, -0.8236428221049534, -0.8149407335359369, -0.8062386449669203, -0.7975365563979038, -0.7888344678288872, -0.7801323792598707, -0.7714302906908541, -0.7627282021218376, -0.754026113552821, -0.7453240249838045, -0.7366219364147879, -0.7279198478457714, -0.7192177592767548, -0.7105156707077382, -0.7018135821387217, -0.6931114935697051, -0.6844094050006886, -0.675707316431672, -0.6670052278626555, -0.6583031392936389, -0.6496010507246224, -0.6408989621556058, -0.6321968735865893, -0.6234947850175727, -0.6147926964485562, -0.6060906078795396, -0.5973885193105231, -0.5886864307415065, -0.57998434217249, -0.5712822536034734, -0.5625801650344568, -0.5538780764654403, -0.5451759878964237, -0.5364738993274072, -0.5277718107583906, -0.5190697221893741, -0.5103676336203575, -0.501665545051341, -0.49296345648232437, -0.48426136791330776, -0.47555927934429115, -0.46685719077527454, -0.45815510220625794, -0.4494530136372413, -0.4407509250682247, -0.4320488364992081, -0.4233467479301915, -0.4146446593611749, -0.4059425707921583, -0.3972404822231417, -0.38853839365412507, -0.37983630508510846, -0.37113421651609185, -0.36243212794707524, -0.35373003937805864, -0.345027950809042, -0.3363258622400254, -0.3276237736710088, -0.3189216851019922, -0.3102195965329756, -0.301517507963959, -0.2928154193949424, -0.28411333082592577, -0.27541124225690916, -0.26670915368789255, -0.25800706511887594, -0.24930497654985934, -0.24060288798084273, -0.23190079941182612, -0.2231987108428095, -0.2144966222737929, -0.2057945337047763, -0.1970924451357597, -0.18839035656674308, -0.17968826799772647, -0.17098617942870986, -0.16228409085969325, -0.15358200229067664, -0.14487991372166004, -0.13617782515264343, -0.12747573658362682, -0.11877364801461023, -0.11007155944559363, -0.10136947087657704, -0.09266738230756044, -0.08396529373854385, -0.07526320516952725, -0.06656111660051066, -0.05785902803149406, -0.049156939462477456, -0.040454850893460854, -0.03175276232444425, -0.02305067375542765, -0.014348585186411052, -0.005646496617394452, 0.0030555919516221473, 0.011757680520638747, 0.02045976908965535, 0.02916185765867195, 0.03786394622768855, 0.04656603479670515, 0.055268123365721754, 0.06397021193473836, 0.07267230050375495, 0.08137438907277154, 0.09007647764178814, 0.09877856621080473, 0.10748065477982133, 0.11618274334883792, 0.12488483191785452, 0.13358692048687112, 0.14228900905588773, 0.15099109762490434, 0.15969318619392095, 0.16839527476293756, 0.17709736333195417, 0.18579945190097077, 0.19450154046998738, 0.203203629039004, 0.2119057176080206, 0.2206078061770372, 0.22930989474605382, 0.23801198331507042, 0.24671407188408703, 0.2554161604531036, 0.2641182490221202, 0.27282033759113683, 0.28152242616015344, 0.29022451472917005, 0.29892660329818665, 0.30762869186720326, 0.31633078043621987, 0.3250328690052365, 0.3337349575742531, 0.3424370461432697, 0.3511391347122863, 0.3598412232813029, 0.3685433118503195, 0.37724540041933613, 0.38594748898835274, 0.39464957755736935, 0.40335166612638595, 0.41205375469540256, 0.42075584326441917, 0.4294579318334358, 0.4381600204024524, 0.446862108971469, 0.4555641975404856, 0.4642662861095022, 0.4729683746785188, 0.48167046324753543, 0.49037255181655204, 0.49907464038556865, 0.5077767289545853, 0.5164788175236018, 0.5251809060926184, 0.5338829946616349, 0.5425850832306515, 0.551287171799668, 0.5599892603686846, 0.5686913489377011, 0.5773934375067177, 0.5860955260757342, 0.5947976146447508, 0.6034997032137673, 0.6122017917827839, 0.6209038803518004, 0.629605968920817, 0.6383080574898335, 0.6470101460588501, 0.6557122346278667, 0.6644143231968832, 0.6731164117658998, 0.6818185003349163, 0.6905205889039329, 0.6992226774729494, 0.707924766041966, 0.7166268546109825, 0.7253289431799991, 0.7340310317490156, 0.7427331203180322, 0.7514352088870487, 0.7601372974560653, 0.7688393860250818, 0.7775414745940984, 0.786243563163115, 0.7949456517321315, 0.803647740301148, 0.8123498288701646, 0.8210519174391812, 0.8297540060081977, 0.8384560945772143, 0.8471581831462308, 0.8558602717152474, 0.8645623602842639, 0.8732644488532805, 0.881966537422297, 0.8906686259913136, 0.8993707145603301, 0.9080728031293467, 0.9167748916983632, 0.9254769802673798, 0.9341790688363963, 0.9428811574054129, 0.9515832459744294, 0.960285334543446, 0.9689874231124626, 0.9776895116814791, 0.9863916002504957, 0.9950936888195122, 1.0037957773885289, 1.0124978659575454, 1.021199954526562, 1.0299020430955785, 1.038604131664595, 1.0473062202336116, 1.0560083088026282, 1.0647103973716447, 1.0734124859406613, 1.0821145745096779, 1.0908166630786944, 1.099518751647711, 1.1082208402167275, 1.116922928785744, 1.1256250173547606, 1.1343271059237772, 1.1430291944927937, 1.1517312830618103, 1.1604333716308268, 1.1691354601998434, 1.17783754876886, 1.1865396373378765, 1.195241725906893, 1.2039438144759096, 1.2126459030449261, 1.2213479916139427, 1.2300500801829592, 1.2387521687519758, 1.2474542573209924, 1.256156345890009, 1.2648584344590255, 1.273560523028042, 1.2822626115970586, 1.2909647001660751, 1.2996667887350917, 1.3083688773041082, 1.3170709658731248, 1.3257730544421413, 1.3344751430111579, 1.3431772315801744, 1.351879320149191, 1.3605814087182075, 1.369283497287224, 1.3779855858562406, 1.3866876744252572, 1.3953897629942738, 1.4040918515632903, 1.4127939401323069, 1.4214960287013234, 1.43019811727034, 1.4389002058393565, 1.447602294408373, 1.4563043829773896, 1.4650064715464062, 1.4737085601154227, 1.4824106486844393, 1.4911127372534558, 1.4998148258224724, 1.508516914391489, 1.5172190029605055, 1.525921091529522, 1.5346231800985386, 1.5433252686675552, 1.5520273572365717, 1.5607294458055883, 1.5694315343746048, 1.5781336229436214, 1.586835711512638, 1.5955378000816545, 1.604239888650671, 1.6129419772196876, 1.6216440657887041, 1.6303461543577207, 1.6390482429267372, 1.6477503314957538, 1.6564524200647703, 1.665154508633787, 1.6738565972028034, 1.68255868577182, 1.6912607743408365, 1.699962862909853, 1.7086649514788697, 1.7173670400478862, 1.7260691286169028, 1.7347712171859193, 1.7434733057549359, 1.7521753943239524, 1.760877482892969, 1.7695795714619855, 1.778281660031002, 1.7869837486000186, 1.7956858371690352, 1.8043879257380517, 1.8130900143070683, 1.8217921028760848, 1.8304941914451014, 1.839196280014118, 1.8478983685831345, 1.856600457152151, 1.8653025457211676, 1.8740046342901842, 1.8827067228592007, 1.8914088114282173, 1.9001108999972338, 1.9088129885662504, 1.917515077135267, 1.9262171657042835, 1.9349192542733, 1.9436213428423166, 1.9523234314113331, 1.9610255199803497, 1.9697276085493662, 1.9784296971183828, 1.9871317856873993, 1.995833874256416, 2.0045359628254324, 2.013238051394449, 2.0219401399634656, 2.030642228532482, 2.0393443171014987, 2.048046405670515, 2.0567484942395318, 2.0654505828085483, 2.074152671377565, 2.0828547599465814, 2.091556848515598, 2.1002589370846145, 2.108961025653631, 2.1176631142226476, 2.126365202791664, 2.1350672913606807, 2.1437693799296973, 2.152471468498714, 2.1611735570677304, 2.169875645636747, 2.1785777342057635, 2.18727982277478, 2.1959819113437966, 2.204683999912813, 2.2133860884818297, 2.2220881770508463, 2.230790265619863, 2.2394923541888794, 2.248194442757896, 2.2568965313269125, 2.265598619895929, 2.2743007084649456, 2.283002797033962, 2.2917048856029787, 2.3004069741719952, 2.309109062741012, 2.3178111513100284, 2.326513239879045, 2.3352153284480615, 2.343917417017078, 2.3526195055860946, 2.361321594155111, 2.3700236827241277, 2.378725771293144, 2.3874278598621608, 2.3961299484311773, 2.404832037000194, 2.4135341255692104, 2.422236214138227, 2.4309383027072435, 2.43964039127626, 2.4483424798452766, 2.457044568414293, 2.4657466569833097, 2.4744487455523263, 2.483150834121343, 2.4918529226903594, 2.500555011259376, 2.5092570998283925, 2.517959188397409, 2.5266612769664256, 2.535363365535442, 2.5440654541044587, 2.5527675426734753, 2.561469631242492, 2.5701717198115084, 2.578873808380525, 2.5875758969495415, 2.596277985518558, 2.6049800740875746, 2.613682162656591, 2.6223842512256077, 2.6310863397946243, 2.639788428363641, 2.6484905169326574, 2.657192605501674, 2.6658946940706905, 2.674596782639707, 2.6832988712087236, 2.69200095977774, 2.7007030483467567, 2.7094051369157732, 2.71810722548479, 2.7268093140538063, 2.735511402622823, 2.7442134911918394, 2.752915579760856, 2.7616176683298725, 2.770319756898889, 2.7790218454679056, 2.787723934036922, 2.7964260226059388, 2.8051281111749553, 2.813830199743972, 2.8225322883129884, 2.831234376882005, 2.8399364654510215, 2.848638554020038, 2.8573406425890546, 2.866042731158071, 2.8747448197270877, 2.8834469082961043, 2.892148996865121, 2.9008510854341374, 2.909553174003154, 2.9182552625721705, 2.926957351141187, 2.9356594397102036, 2.94436152827922, 2.9530636168482367, 2.9617657054172533, 2.97046779398627, 2.9791698825552864, 2.987871971124303, 2.9965740596933195, 3.005276148262336, 3.0139782368313526, 3.022680325400369, 3.0313824139693857, 3.0400845025384022, 3.048786591107419, 3.0574886796764353, 3.066190768245452, 3.0748928568144684, 3.083594945383485, 3.0922970339525016, 3.100999122521518, 3.1097012110905347, 3.118403299659551, 3.1271053882285678, 3.1358074767975843, 3.144509565366601, 3.1532116539356174, 3.161913742504634, 3.1706158310736505, 3.179317919642667, 3.1880200082116836, 3.1967220967807, 3.2054241853497167, 3.2141262739187333, 3.22282836248775, 3.2315304510567664, 3.240232539625783, 3.2489346281947995, 3.257636716763816, 3.2663388053328326, 3.275040893901849, 3.2837429824708657, 3.2924450710398823, 3.301147159608899, 3.3098492481779154, 3.318551336746932, 3.3272534253159485, 3.335955513884965, 3.3446576024539816, 3.353359691022998, 3.3620617795920147, 3.3707638681610312, 3.379465956730048, 3.3881680452990643, 3.396870133868081, 3.4055722224370975, 3.414274311006114, 3.4229763995751306, 3.431678488144147, 3.4403805767131637, 3.44908266528218, 3.4577847538511968, 3.4664868424202133, 3.47518893098923, 3.4838910195582464, 3.492593108127263, 3.5012951966962795, 3.509997285265296, 3.5186993738343126, 3.527401462403329, 3.5361035509723457, 3.5448056395413623, 3.553507728110379, 3.5622098166793954, 3.570911905248412, 3.5796139938174285, 3.588316082386445, 3.5970181709554616, 3.605720259524478, 3.6144223480934947, 3.6231244366625113, 3.631826525231528, 3.6405286138005444, 3.649230702369561, 3.6579327909385775, 3.666634879507594, 3.6753369680766106, 3.684039056645627, 3.6927411452146437, 3.7014432337836602, 3.710145322352677, 3.7188474109216934, 3.72754949949071, 3.7362515880597265, 3.744953676628743, 3.7536557651977596, 3.762357853766776, 3.7710599423357927, 3.7797620309048092, 3.7884641194738258, 3.7971662080428423, 3.805868296611859, 3.8145703851808754, 3.823272473749892, 3.8319745623189085, 3.840676650887925, 3.8493787394569416, 3.858080828025958, 3.8667829165949748, 3.8754850051639913, 3.884187093733008, 3.8928891823020244, 3.901591270871041, 3.9102933594400575, 3.918995448009074, 3.9276975365780906, 3.936399625147107, 3.9451017137161237, 3.9538038022851403, 3.962505890854157, 3.9712079794231734, 3.97991006799219, 3.9886121565612065, 3.997314245130223, 4.00601633369924, 4.014718422268256, 4.023420510837273, 4.032122599406289, 4.040824687975306, 4.049526776544322, 4.058228865113339, 4.0669309536823555, 4.075633042251372, 4.084335130820389, 4.093037219389405, 4.101739307958422, 4.110441396527438, 4.119143485096455, 4.127845573665471, 4.136547662234488, 4.145249750803504, 4.153951839372521, 4.1626539279415375, 4.171356016510554, 4.180058105079571, 4.188760193648587, 4.197462282217604, 4.20616437078662, 4.214866459355637, 4.223568547924653, 4.23227063649367, 4.2409727250626865, 4.249674813631703, 4.25837690220072, 4.267078990769736, 4.275781079338753, 4.284483167907769, 4.293185256476786, 4.301887345045802, 4.310589433614819, 4.3192915221838355, 4.327993610752852, 4.336695699321869, 4.345397787890885, 4.354099876459902, 4.362801965028918, 4.371504053597935, 4.380206142166992]\n", + "frequency within bins: [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 2, 0, 0, 0, 1, 0, 0, 2, 0, 0, 2, 2, 0, 2, 0, 0, 1, 0, 2, 3, 1, 0, 4, 1, 2, 2, 1, 1, 0, 0, 2, 2, 2, 3, 1, 1, 1, 3, 0, 0, 2, 2, 0, 2, 0, 2, 1, 6, 3, 3, 3, 1, 4, 2, 5, 5, 3, 4, 1, 2, 2, 3, 5, 0, 4, 2, 4, 3, 2, 5, 3, 4, 2, 4, 7, 6, 3, 4, 5, 3, 7, 9, 4, 5, 3, 11, 10, 5, 3, 9, 4, 7, 5, 7, 10, 5, 4, 7, 7, 8, 3, 4, 9, 8, 9, 11, 10, 9, 9, 6, 14, 7, 17, 10, 9, 17, 12, 13, 12, 15, 9, 11, 18, 15, 13, 12, 11, 11, 19, 9, 15, 13, 19, 16, 16, 18, 14, 13, 15, 16, 23, 19, 25, 20, 21, 17, 22, 16, 34, 16, 20, 25, 29, 22, 26, 28, 23, 26, 32, 33, 26, 35, 31, 38, 27, 26, 35, 36, 36, 33, 27, 36, 33, 31, 36, 38, 43, 40, 36, 37, 37, 32, 49, 36, 57, 41, 42, 45, 37, 48, 47, 44, 57, 45, 47, 47, 55, 59, 53, 52, 56, 53, 78, 68, 56, 57, 74, 46, 76, 80, 91, 78, 70, 71, 66, 81, 76, 61, 84, 84, 78, 74, 89, 70, 72, 83, 95, 76, 92, 104, 92, 103, 92, 106, 96, 91, 98, 101, 112, 112, 105, 91, 118, 124, 110, 94, 137, 120, 116, 133, 106, 102, 109, 118, 119, 137, 144, 117, 113, 142, 145, 147, 139, 152, 146, 128, 152, 148, 145, 165, 143, 155, 159, 163, 165, 163, 137, 172, 179, 169, 172, 171, 174, 176, 173, 190, 222, 182, 159, 194, 204, 214, 221, 179, 198, 195, 194, 196, 207, 202, 203, 199, 199, 194, 198, 217, 232, 207, 252, 207, 216, 243, 217, 250, 249, 236, 231, 250, 251, 260, 217, 243, 243, 241, 253, 238, 266, 259, 263, 277, 277, 259, 249, 271, 260, 262, 297, 285, 273, 282, 303, 267, 262, 282, 269, 294, 283, 280, 272, 276, 314, 269, 306, 308, 313, 289, 299, 301, 282, 334, 311, 331, 327, 317, 316, 305, 341, 324, 333, 304, 320, 346, 336, 360, 317, 327, 310, 302, 368, 333, 356, 355, 353, 344, 331, 319, 326, 339, 349, 327, 362, 335, 354, 332, 355, 361, 342, 358, 356, 322, 336, 333, 325, 343, 364, 316, 346, 341, 342, 333, 352, 334, 349, 338, 353, 351, 341, 334, 351, 339, 332, 341, 317, 363, 326, 372, 338, 336, 327, 370, 320, 361, 351, 373, 332, 364, 325, 375, 345, 335, 346, 335, 358, 330, 355, 306, 334, 320, 328, 304, 324, 335, 317, 356, 349, 313, 332, 320, 342, 337, 315, 338, 324, 323, 318, 296, 327, 291, 328, 309, 314, 325, 314, 334, 314, 302, 275, 295, 291, 323, 296, 279, 279, 302, 265, 302, 312, 309, 312, 283, 268, 296, 292, 291, 236, 257, 241, 272, 309, 291, 285, 275, 262, 249, 231, 279, 258, 235, 289, 254, 270, 251, 256, 226, 260, 250, 212, 224, 236, 222, 226, 232, 223, 227, 219, 218, 234, 202, 195, 208, 188, 211, 181, 196, 221, 218, 198, 204, 200, 215, 171, 167, 179, 183, 182, 176, 175, 169, 168, 164, 174, 193, 168, 164, 181, 154, 175, 172, 172, 180, 145, 174, 157, 141, 156, 167, 147, 142, 162, 154, 139, 127, 162, 145, 115, 114, 148, 142, 153, 142, 122, 107, 101, 122, 121, 126, 99, 127, 113, 88, 117, 122, 98, 109, 100, 113, 81, 99, 108, 95, 88, 92, 113, 93, 102, 87, 104, 90, 109, 101, 82, 75, 72, 72, 77, 91, 80, 65, 76, 60, 74, 73, 75, 67, 66, 78, 63, 75, 51, 64, 59, 61, 60, 52, 65, 56, 69, 65, 59, 76, 53, 53, 53, 45, 49, 46, 45, 34, 48, 45, 48, 40, 36, 41, 41, 35, 43, 38, 30, 34, 41, 35, 27, 38, 51, 27, 31, 35, 28, 15, 40, 34, 40, 19, 27, 24, 26, 40, 18, 22, 22, 31, 21, 17, 22, 19, 21, 14, 20, 30, 25, 18, 11, 22, 22, 18, 18, 14, 16, 22, 19, 12, 12, 9, 19, 18, 19, 8, 15, 18, 9, 13, 18, 10, 8, 8, 13, 8, 5, 11, 11, 10, 12, 6, 6, 12, 8, 11, 9, 8, 13, 8, 6, 8, 7, 9, 6, 13, 5, 5, 8, 10, 10, 1, 5, 5, 5, 7, 6, 4, 10, 6, 5, 3, 1, 3, 4, 2, 4, 2, 5, 4, 3, 5, 7, 2, 2, 2, 3, 4, 1, 1, 2, 3, 3, 1, 0, 4, 1, 2, 0, 1, 1, 4, 2, 3, 1, 0, 1, 1, 1, 0, 0, 3, 2, 1, 1, 0, 2, 0, 4, 0, 0, 1, 0, 2, 0, 0, 0, 4, 2, 3, 0, 0, 2, 2, 4, 1, 1, 3, 0, 0, 0, 0, 0, 1, 1, 1, 2, 1, 2, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]\n", + "Cumulative Sum List: [1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 1e-05, 2e-05, 2e-05, 2e-05, 2e-05, 3e-05, 3e-05, 3e-05, 3e-05, 3e-05, 3e-05, 3e-05, 3e-05, 3e-05, 3e-05, 3e-05, 3e-05, 3e-05, 4e-05, 4e-05, 4e-05, 4e-05, 4e-05, 4e-05, 4e-05, 4e-05, 5e-05, 5e-05, 5e-05, 5e-05, 5e-05, 5e-05, 5e-05, 5e-05, 5e-05, 5e-05, 7e-05, 7e-05, 8e-05, 9e-05, 9e-05, 9e-05, 9e-05, 9e-05, 9e-05, 0.0001, 0.00011, 0.00011, 0.00011, 0.00011, 0.00012, 0.00012, 0.00013, 0.00013, 0.00015, 0.00015, 0.00015, 0.00015, 0.00016, 0.00016, 0.00016, 0.00018, 0.00018, 0.00018, 0.0002, 0.00022, 0.00022, 0.00024, 0.00024, 0.00024, 0.00025, 0.00025, 0.00027, 0.0003, 0.00031, 0.00031, 0.00035, 0.00036, 0.00038, 0.0004, 0.00041, 0.00042, 0.00042, 0.00042, 0.00044, 0.00046, 0.00048, 0.00051, 0.00052, 0.00053, 0.00054, 0.00057, 0.00057, 0.00057, 0.00059, 0.00061, 0.00061, 0.00063, 0.00063, 0.00065, 0.00066, 0.00072, 0.00075, 0.00078, 0.00081, 0.00082, 0.00086, 0.00088, 0.00093, 0.00098, 0.00101, 0.00105, 0.00106, 0.00108, 0.0011, 0.00113, 0.00118, 0.00118, 0.00122, 0.00124, 0.00128, 0.00131, 0.00133, 0.00138, 0.00141, 0.00145, 0.00147, 0.00151, 0.00158, 0.00164, 0.00167, 0.00171, 0.00176, 0.00179, 0.00186, 0.00195, 0.00199, 0.00204, 0.00207, 0.00218, 0.00228, 0.00233, 0.00236, 0.00245, 0.00249, 0.00256, 0.00261, 0.00268, 0.00278, 0.00283, 0.00287, 0.00294, 0.00301, 0.00309, 0.00312, 0.00316, 0.00325, 0.00333, 0.00342, 0.00353, 0.00363, 0.00372, 0.00381, 0.00387, 0.00401, 0.00408, 0.00425, 0.00435, 0.00444, 0.00461, 0.00473, 0.00486, 0.00498, 0.00513, 0.00522, 0.00533, 0.00551, 0.00566, 0.00579, 0.00591, 0.00602, 0.00613, 0.00632, 0.00641, 0.00656, 0.00669, 0.00688, 0.00704, 0.0072, 0.00738, 0.00752, 0.00765, 0.0078, 0.00796, 0.00819, 0.00838, 0.00863, 0.00883, 0.00904, 0.00921, 0.00943, 0.00959, 0.00993, 0.01009, 0.01029, 0.01054, 0.01083, 0.01105, 0.01131, 0.01159, 0.01182, 0.01208, 0.0124, 0.01273, 0.01299, 0.01334, 0.01365, 0.01403, 0.0143, 0.01456, 0.01491, 0.01527, 0.01563, 0.01596, 0.01623, 0.01659, 0.01692, 0.01723, 0.01759, 0.01797, 0.0184, 0.0188, 0.01916, 0.01953, 0.0199, 0.02022, 0.02071, 0.02107, 0.02164, 0.02205, 0.02247, 0.02292, 0.02329, 0.02377, 0.02424, 0.02468, 0.02525, 0.0257, 0.02617, 0.02664, 0.02719, 0.02778, 0.02831, 0.02883, 0.02939, 0.02992, 0.0307, 0.03138, 0.03194, 0.03251, 0.03325, 0.03371, 0.03447, 0.03527, 0.03618, 0.03696, 0.03766, 0.03837, 0.03903, 0.03984, 0.0406, 0.04121, 0.04205, 0.04289, 0.04367, 0.04441, 0.0453, 0.046, 0.04672, 0.04755, 0.0485, 0.04926, 0.05018, 0.05122, 0.05214, 0.05317, 0.05409, 0.05515, 0.05611, 0.05702, 0.058, 0.05901, 0.06013, 0.06125, 0.0623, 0.06321, 0.06439, 0.06563, 0.06673, 0.06767, 0.06904, 0.07024, 0.0714, 0.07273, 0.07379, 0.07481, 0.0759, 0.07708, 0.07827, 0.07964, 0.08108, 0.08225, 0.08338, 0.0848, 0.08625, 0.08772, 0.08911, 0.09063, 0.09209, 0.09337, 0.09489, 0.09637, 0.09782, 0.09947, 0.1009, 0.10245, 0.10404, 0.10567, 0.10732, 0.10895, 0.11032, 0.11204, 0.11383, 0.11552, 0.11724, 0.11895, 0.12069, 0.12245, 0.12418, 0.12608, 0.1283, 0.13012, 0.13171, 0.13365, 0.13569, 0.13783, 0.14004, 0.14183, 0.14381, 0.14576, 0.1477, 0.14966, 0.15173, 0.15375, 0.15578, 0.15777, 0.15976, 0.1617, 0.16368, 0.16585, 0.16817, 0.17024, 0.17276, 0.17483, 0.17699, 0.17942, 0.18159, 0.18409, 0.18658, 0.18894, 0.19125, 0.19375, 0.19626, 0.19886, 0.20103, 0.20346, 0.20589, 0.2083, 0.21083, 0.21321, 0.21587, 0.21846, 0.22109, 0.22386, 0.22663, 0.22922, 0.23171, 0.23442, 0.23702, 0.23964, 0.24261, 0.24546, 0.24819, 0.25101, 0.25404, 0.25671, 0.25933, 0.26215, 0.26484, 0.26778, 0.27061, 0.27341, 0.27613, 0.27889, 0.28203, 0.28472, 0.28778, 0.29086, 0.29399, 0.29688, 0.29987, 0.30288, 0.3057, 0.30904, 0.31215, 0.31546, 0.31873, 0.3219, 0.32506, 0.32811, 0.33152, 0.33476, 0.33809, 0.34113, 0.34433, 0.34779, 0.35115, 0.35475, 0.35792, 0.36119, 0.36429, 0.36731, 0.37099, 0.37432, 0.37788, 0.38143, 0.38496, 0.3884, 0.39171, 0.3949, 0.39816, 0.40155, 0.40504, 0.40831, 0.41193, 0.41528, 0.41882, 0.42214, 0.42569, 0.4293, 0.43272, 0.4363, 0.43986, 0.44308, 0.44644, 0.44977, 0.45302, 0.45645, 0.46009, 0.46325, 0.46671, 0.47012, 0.47354, 0.47687, 0.48039, 0.48373, 0.48722, 0.4906, 0.49413, 0.49764, 0.50105, 0.50439, 0.5079, 0.51129, 0.51461, 0.51802, 0.52119, 0.52482, 0.52808, 0.5318, 0.53518, 0.53854, 0.54181, 0.54551, 0.54871, 0.55232, 0.55583, 0.55956, 0.56288, 0.56652, 0.56977, 0.57352, 0.57697, 0.58032, 0.58378, 0.58713, 0.59071, 0.59401, 0.59756, 0.60062, 0.60396, 0.60716, 0.61044, 0.61348, 0.61672, 0.62007, 0.62324, 0.6268, 0.63029, 0.63342, 0.63674, 0.63994, 0.64336, 0.64673, 0.64988, 0.65326, 0.6565, 0.65973, 0.66291, 0.66587, 0.66914, 0.67205, 0.67533, 0.67842, 0.68156, 0.68481, 0.68795, 0.69129, 0.69443, 0.69745, 0.7002, 0.70315, 0.70606, 0.70929, 0.71225, 0.71504, 0.71783, 0.72085, 0.7235, 0.72652, 0.72964, 0.73273, 0.73585, 0.73868, 0.74136, 0.74432, 0.74724, 0.75015, 0.75251, 0.75508, 0.75749, 0.76021, 0.7633, 0.76621, 0.76906, 0.77181, 0.77443, 0.77692, 0.77923, 0.78202, 0.7846, 0.78695, 0.78984, 0.79238, 0.79508, 0.79759, 0.80015, 0.80241, 0.80501, 0.80751, 0.80963, 0.81187, 0.81423, 0.81645, 0.81871, 0.82103, 0.82326, 0.82553, 0.82772, 0.8299, 0.83224, 0.83426, 0.83621, 0.83829, 0.84017, 0.84228, 0.84409, 0.84605, 0.84826, 0.85044, 0.85242, 0.85446, 0.85646, 0.85861, 0.86032, 0.86199, 0.86378, 0.86561, 0.86743, 0.86919, 0.87094, 0.87263, 0.87431, 0.87595, 0.87769, 0.87962, 0.8813, 0.88294, 0.88475, 0.88629, 0.88804, 0.88976, 0.89148, 0.89328, 0.89473, 0.89647, 0.89804, 0.89945, 0.90101, 0.90268, 0.90415, 0.90557, 0.90719, 0.90873, 0.91012, 0.91139, 0.91301, 0.91446, 0.91561, 0.91675, 0.91823, 0.91965, 0.92118, 0.9226, 0.92382, 0.92489, 0.9259, 0.92712, 0.92833, 0.92959, 0.93058, 0.93185, 0.93298, 0.93386, 0.93503, 0.93625, 0.93723, 0.93832, 0.93932, 0.94045, 0.94126, 0.94225, 0.94333, 0.94428, 0.94516, 0.94608, 0.94721, 0.94814, 0.94916, 0.95003, 0.95107, 0.95197, 0.95306, 0.95407, 0.95489, 0.95564, 0.95636, 0.95708, 0.95785, 0.95876, 0.95956, 0.96021, 0.96097, 0.96157, 0.96231, 0.96304, 0.96379, 0.96446, 0.96512, 0.9659, 0.96653, 0.96728, 0.96779, 0.96843, 0.96902, 0.96963, 0.97023, 0.97075, 0.9714, 0.97196, 0.97265, 0.9733, 0.97389, 0.97465, 0.97518, 0.97571, 0.97624, 0.97669, 0.97718, 0.97764, 0.97809, 0.97843, 0.97891, 0.97936, 0.97984, 0.98024, 0.9806, 0.98101, 0.98142, 0.98177, 0.9822, 0.98258, 0.98288, 0.98322, 0.98363, 0.98398, 0.98425, 0.98463, 0.98514, 0.98541, 0.98572, 0.98607, 0.98635, 0.9865, 0.9869, 0.98724, 0.98764, 0.98783, 0.9881, 0.98834, 0.9886, 0.989, 0.98918, 0.9894, 0.98962, 0.98993, 0.99014, 0.99031, 0.99053, 0.99072, 0.99093, 0.99107, 0.99127, 0.99157, 0.99182, 0.992, 0.99211, 0.99233, 0.99255, 0.99273, 0.99291, 0.99305, 0.99321, 0.99343, 0.99362, 0.99374, 0.99386, 0.99395, 0.99414, 0.99432, 0.99451, 0.99459, 0.99474, 0.99492, 0.99501, 0.99514, 0.99532, 0.99542, 0.9955, 0.99558, 0.99571, 0.99579, 0.99584, 0.99595, 0.99606, 0.99616, 0.99628, 0.99634, 0.9964, 0.99652, 0.9966, 0.99671, 0.9968, 0.99688, 0.99701, 0.99709, 0.99715, 0.99723, 0.9973, 0.99739, 0.99745, 0.99758, 0.99763, 0.99768, 0.99776, 0.99786, 0.99796, 0.99797, 0.99802, 0.99807, 0.99812, 0.99819, 0.99825, 0.99829, 0.99839, 0.99845, 0.9985, 0.99853, 0.99854, 0.99857, 0.99861, 0.99863, 0.99867, 0.99869, 0.99874, 0.99878, 0.99881, 0.99886, 0.99893, 0.99895, 0.99897, 0.99899, 0.99902, 0.99906, 0.99907, 0.99908, 0.9991, 0.99913, 0.99916, 0.99917, 0.99917, 0.99921, 0.99922, 0.99924, 0.99924, 0.99925, 0.99926, 0.9993, 0.99932, 0.99935, 0.99936, 0.99936, 0.99937, 0.99938, 0.99939, 0.99939, 0.99939, 0.99942, 0.99944, 0.99945, 0.99946, 0.99946, 0.99948, 0.99948, 0.99952, 0.99952, 0.99952, 0.99953, 0.99953, 0.99955, 0.99955, 0.99955, 0.99955, 0.99959, 0.99961, 0.99964, 0.99964, 0.99964, 0.99966, 0.99968, 0.99972, 0.99973, 0.99974, 0.99977, 0.99977, 0.99977, 0.99977, 0.99977, 0.99977, 0.99978, 0.99979, 0.9998, 0.99982, 0.99983, 0.99985, 0.99986, 0.99986, 0.99987, 0.99987, 0.99987, 0.99987, 0.99987, 0.99987, 0.99988, 0.99988, 0.99988, 0.99989, 0.99989, 0.99989, 0.99989, 0.99989, 0.9999, 0.9999, 0.9999, 0.99991, 0.99991, 0.99992, 0.99992, 0.99992, 0.99992, 0.99992, 0.99992, 0.99992, 0.99993, 0.99993, 0.99994, 0.99994, 0.99994, 0.99995, 0.99995, 0.99995, 0.99996, 0.99996, 0.99996, 0.99996, 0.99996, 0.99996, 0.99996, 0.99996, 0.99996, 0.99996, 0.99996, 0.99996, 0.99996, 0.99998, 0.99998, 0.99998, 0.99998, 0.99998, 0.99998, 0.99998, 0.99998, 0.99998, 0.99998, 0.99998, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999, 0.99999]\n", + "The bin value for which probability<0.9 is: 1.2822626115970586\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "O9TtDE76enD-", + "colab_type": "text" + }, + "source": [ + "For Probability=0.9, the z-score is 1.28 approx. This also equals $x_{90}$ when $\\mu=0,\\sigma=1$. Therefore, $x_{90}$= 1.28$\\sigma$ for $\\sigma$=1 using Gaussian Distribution." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "TXLsDhpJhzdR", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "outputId": "5c39fcc4-3786-4e25-88ba-8391a3d9e7ff" + }, + "source": [ + "#Histogram graph\n", + "import numpy as np\n", + "%matplotlib inline\n", + "import matplotlib.pyplot as plt\n", + "plt.hist(normal_lst,bins=1000)" + ], + "execution_count": 333, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "(array([ 1., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,\n", + " 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,\n", + " 0., 0., 0., 0., 0., 1., 0., 0., 0., 1., 0.,\n", + " 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,\n", + " 1., 0., 0., 0., 0., 0., 0., 0., 1., 0., 0.,\n", + " 0., 0., 0., 0., 0., 0., 0., 2., 0., 1., 1.,\n", + " 0., 0., 0., 0., 0., 1., 1., 0., 0., 0., 1.,\n", + " 0., 1., 0., 2., 0., 0., 0., 1., 0., 0., 2.,\n", + " 0., 0., 2., 2., 0., 2., 0., 0., 1., 0., 2.,\n", + " 3., 1., 0., 4., 1., 2., 2., 1., 1., 0., 0.,\n", + " 2., 2., 2., 3., 1., 1., 1., 3., 0., 0., 2.,\n", + " 2., 0., 2., 0., 2., 1., 6., 3., 3., 3., 1.,\n", + " 4., 2., 5., 5., 3., 4., 1., 2., 2., 3., 5.,\n", + " 0., 4., 2., 4., 3., 2., 5., 3., 4., 2., 4.,\n", + " 7., 6., 3., 4., 5., 3., 7., 9., 4., 5., 3.,\n", + " 11., 10., 5., 3., 9., 4., 7., 5., 7., 10., 5.,\n", + " 4., 7., 7., 8., 3., 4., 9., 8., 9., 11., 10.,\n", + " 9., 9., 6., 14., 7., 17., 10., 9., 17., 12., 13.,\n", + " 12., 15., 9., 11., 18., 15., 13., 12., 11., 11., 19.,\n", + " 9., 15., 13., 19., 16., 16., 18., 14., 13., 15., 16.,\n", + " 23., 19., 25., 20., 21., 17., 22., 16., 34., 16., 20.,\n", + " 25., 29., 22., 26., 28., 23., 26., 32., 33., 26., 35.,\n", + " 31., 38., 27., 26., 35., 36., 36., 33., 27., 36., 33.,\n", + " 31., 36., 38., 43., 40., 36., 37., 37., 32., 49., 36.,\n", + " 57., 41., 42., 45., 37., 48., 47., 44., 57., 45., 47.,\n", + " 47., 55., 59., 53., 52., 56., 53., 78., 68., 56., 57.,\n", + " 74., 46., 76., 80., 91., 78., 70., 71., 66., 81., 76.,\n", + " 61., 84., 84., 78., 74., 89., 70., 72., 83., 95., 76.,\n", + " 92., 104., 92., 103., 92., 106., 96., 91., 98., 101., 112.,\n", + " 112., 105., 91., 118., 124., 110., 94., 137., 120., 116., 133.,\n", + " 106., 102., 109., 118., 119., 137., 144., 117., 113., 142., 145.,\n", + " 147., 139., 152., 146., 128., 152., 148., 145., 165., 143., 155.,\n", + " 159., 163., 165., 163., 137., 172., 179., 169., 172., 171., 174.,\n", + " 176., 173., 190., 222., 182., 159., 194., 204., 214., 221., 179.,\n", + " 198., 195., 194., 196., 207., 202., 203., 199., 199., 194., 198.,\n", + " 217., 232., 207., 252., 207., 216., 243., 217., 250., 249., 236.,\n", + " 231., 250., 251., 260., 217., 243., 243., 241., 253., 238., 266.,\n", + " 259., 263., 277., 277., 259., 249., 271., 260., 262., 297., 285.,\n", + " 273., 282., 303., 267., 262., 282., 269., 294., 283., 280., 272.,\n", + " 276., 314., 269., 306., 308., 313., 289., 299., 301., 282., 334.,\n", + " 311., 331., 327., 317., 316., 305., 341., 324., 333., 304., 320.,\n", + " 346., 336., 360., 317., 327., 310., 302., 368., 333., 356., 355.,\n", + " 353., 344., 331., 319., 326., 339., 349., 327., 362., 335., 354.,\n", + " 332., 355., 361., 342., 358., 356., 322., 336., 333., 325., 343.,\n", + " 364., 316., 346., 341., 342., 333., 352., 334., 349., 338., 353.,\n", + " 351., 341., 334., 351., 339., 332., 341., 317., 363., 326., 372.,\n", + " 338., 336., 327., 370., 320., 361., 351., 373., 332., 364., 325.,\n", + " 375., 345., 335., 346., 335., 358., 330., 355., 306., 334., 320.,\n", + " 328., 304., 324., 335., 317., 356., 349., 313., 332., 320., 342.,\n", + " 337., 315., 338., 324., 323., 318., 296., 327., 291., 328., 309.,\n", + " 314., 325., 314., 334., 314., 302., 275., 295., 291., 323., 296.,\n", + " 279., 279., 302., 265., 302., 312., 309., 312., 283., 268., 296.,\n", + " 292., 291., 236., 257., 241., 272., 309., 291., 285., 275., 262.,\n", + " 249., 231., 279., 258., 235., 289., 254., 270., 251., 256., 226.,\n", + " 260., 250., 212., 224., 236., 222., 226., 232., 223., 227., 219.,\n", + " 218., 234., 202., 195., 208., 188., 211., 181., 196., 221., 218.,\n", + " 198., 204., 200., 215., 171., 167., 179., 183., 182., 176., 175.,\n", + " 169., 168., 164., 174., 193., 168., 164., 181., 154., 175., 172.,\n", + " 172., 180., 145., 174., 157., 141., 156., 167., 147., 142., 162.,\n", + " 154., 139., 127., 162., 145., 115., 114., 148., 142., 153., 142.,\n", + " 122., 107., 101., 122., 121., 126., 99., 127., 113., 88., 117.,\n", + " 122., 98., 109., 100., 113., 81., 99., 108., 95., 88., 92.,\n", + " 113., 93., 102., 87., 104., 90., 109., 101., 82., 75., 72.,\n", + " 72., 77., 91., 80., 65., 76., 60., 74., 73., 75., 67.,\n", + " 66., 78., 63., 75., 51., 64., 59., 61., 60., 52., 65.,\n", + " 56., 69., 65., 59., 76., 53., 53., 53., 45., 49., 46.,\n", + " 45., 34., 48., 45., 48., 40., 36., 41., 41., 35., 43.,\n", + " 38., 30., 34., 41., 35., 27., 38., 51., 27., 31., 35.,\n", + " 28., 15., 40., 34., 40., 19., 27., 24., 26., 40., 18.,\n", + " 22., 22., 31., 21., 17., 22., 19., 21., 14., 20., 30.,\n", + " 25., 18., 11., 22., 22., 18., 18., 14., 16., 22., 19.,\n", + " 12., 12., 9., 19., 18., 19., 8., 15., 18., 9., 13.,\n", + " 18., 10., 8., 8., 13., 8., 5., 11., 11., 10., 12.,\n", + " 6., 6., 12., 8., 11., 9., 8., 13., 8., 6., 8.,\n", + " 7., 9., 6., 13., 5., 5., 8., 10., 10., 1., 5.,\n", + " 5., 5., 7., 6., 4., 10., 6., 5., 3., 1., 3.,\n", + " 4., 2., 4., 2., 5., 4., 3., 5., 7., 2., 2.,\n", + " 2., 3., 4., 1., 1., 2., 3., 3., 1., 0., 4.,\n", + " 1., 2., 0., 1., 1., 4., 2., 3., 1., 0., 1.,\n", + " 1., 1., 0., 0., 3., 2., 1., 1., 0., 2., 0.,\n", + " 4., 0., 0., 1., 0., 2., 0., 0., 0., 4., 2.,\n", + " 3., 0., 0., 2., 2., 4., 1., 1., 3., 0., 0.,\n", + " 0., 0., 0., 1., 1., 1., 2., 1., 2., 1., 0.,\n", + " 1., 0., 0., 0., 0., 0., 1., 0., 0., 1., 0.,\n", + " 0., 0., 0., 1., 0., 0., 1., 0., 1., 0., 0.,\n", + " 0., 0., 0., 0., 1., 0., 1., 0., 0., 1., 0.,\n", + " 0., 1., 0., 0., 0., 0., 0., 0., 0., 0., 0.,\n", + " 0., 0., 0., 2., 0., 0., 0., 0., 0., 0., 0.,\n", + " 0., 0., 0., 1., 0., 0., 0., 0., 0., 0., 0.,\n", + " 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,\n", + " 0., 0., 0., 0., 0., 0., 0., 0., 0., 1.]),\n", + " array([-4.32188243, -4.31318034, -4.30447825, ..., 4.36280197,\n", + " 4.37150405, 4.38020614]),\n", + " )" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 333 + }, + { + "output_type": "display_data", + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXcAAAD4CAYAAAAXUaZHAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0\ndHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAASAElEQVR4nO3dfaxkdX3H8fenLKKptkC5pdvdTS+x\nWw3aupjblcYmVfABxXQxsQ00RdrabBMxkYY+rPpHtZGEPiiNaUuzFOvaEi3xIWwErSslMSQVvOCy\nCGjZIpbdrOz1CTVNacBv/7hnddyduzP3zsydmTPvVzKZM79zzsz3njnnM7/5zZm5qSokSe3yY+Mu\nQJI0fIa7JLWQ4S5JLWS4S1ILGe6S1EIbxl0AwFlnnVXz8/PjLkOSpso999zz9aqa6zZvIsJ9fn6e\nxcXFcZchSVMlyVdXmuewjCS1kOEuSS1kuEtSCxnuktRChrsktZDhLkktZLhLUgsZ7pLUQoa7JLWQ\n4S5JLWS4S1ILGe5Sn+Z33TruEqS+Ge6S1EKGuyS1kOEuSS1kuEtSCxnumll+QKo2M9w1EwxyzRrD\nXVojXzA0yXqGe5JnJrk7yX1JHkjyrqb9A0m+kmR/c9nWtCfJ+5IcTHIgyYtH/UdI/TKQNSv6+QfZ\nTwIXVNX3kpwK3Jnkk828P66qjxy3/GuArc3lJcD1zbUkaZ307LnXsu81N09tLnWSVXYAH2zW+xxw\nepKNg5cqSepXX2PuSU5Jsh84CuyrqruaWdc0Qy/XJTmtadsEPNax+qGmTZp6DutoWvQV7lX1dFVt\nAzYD25O8EHgb8Hzgl4EzgT9dzQMn2ZlkMcni0tLSKsuWJJ3Mqs6WqapvA3cAF1XVkWbo5Ungn4Dt\nzWKHgS0dq21u2o6/r91VtVBVC3Nzc2urXpLUVT9ny8wlOb2ZfhbwSuBLx8bRkwS4BPhis8pe4I3N\nWTPnA09U1ZGRVC8NmcMuaot+eu4bgTuSHAA+z/KY+yeAm5LcD9wPnAW8u1n+NuAR4CBwA/DmoVct\nDWClADfY1SY9T4WsqgPAeV3aL1hh+QKuHLw0aX3M77qVR6+9uO92aRr4DVVJaiHDXeri2BDN8dfS\ntDDcpSHyRUCTwnCX1sAQ16Qz3DXTuoW0wa02MNwlqYUMd0lqIcNdGhGHdzROhrtm0iDBa2hrGhju\narVxBLHhr0lguEsYyGofw12tZ3BrFhnuktRChrtaa1g99n7ux3cHmjSGu1pjEgN2EmvSbDDcpSEx\nyDVJDHe10iQH7STXpvYw3DUzJjFUJ7EmtYPhrlYxLKVlPcM9yTOT3J3kviQPJHlX035OkruSHEzy\nr0me0bSf1tw+2MyfH+2fII2PLyaaVP303J8ELqiqFwHbgIuSnA/8BXBdVf088C3gTc3ybwK+1bRf\n1ywnjcQkhOsk1CAdr2e417LvNTdPbS4FXAB8pGnfA1zSTO9obtPMvzBJhlaxNGU6w98XAq2Xvsbc\nk5ySZD9wFNgH/Bfw7ap6qlnkELCpmd4EPAbQzH8C+Kku97kzyWKSxaWlpcH+CqmDASr1Ge5V9XRV\nbQM2A9uB5w/6wFW1u6oWqmphbm5u0LuTJHVY1dkyVfVt4A7gV4DTk2xoZm0GDjfTh4EtAM38nwS+\nMZRqpSnR692D7y40av2cLTOX5PRm+lnAK4GHWA75NzSLXQHc0kzvbW7TzP/3qqphFi1JOrkNvRdh\nI7AnySksvxjcXFWfSPIg8OEk7wa+ANzYLH8j8M9JDgLfBC4dQd2SpJPoGe5VdQA4r0v7IyyPvx/f\n/r/AbwylOqkl5nfdyqPXXjzuMjRD/IaqNCEch9cwGe6S1EKGu6aWPV1pZYa7JLWQ4S5JLWS4qxUc\nopF+lOEurZOTvQD54qRhM9w1dQxCqTfDXRozX6w0Coa7JLWQ4S5JLWS4a+o5rCGdyHCXpBYy3CWp\nhQx3SWohw12SWshw11Rq84eobf7btH4Md00Vg0/qj+EujYkvVBqlnuGeZEuSO5I8mOSBJG9t2t+Z\n5HCS/c3ltR3rvC3JwSRfTvLqUf4BkqQT9fwH2cBTwNVVdW+S5wD3JNnXzLuuqv66c+Ek5wKXAi8A\nfhb4TJJfqKqnh1m4Zo89Xal/PXvuVXWkqu5tpr8LPARsOskqO4APV9WTVfUV4CCwfRjFSm3nC5iG\nZVVj7knmgfOAu5qmtyQ5kOT9Sc5o2jYBj3WsdoguLwZJdiZZTLK4tLS06sI1G+Z33WrgSWvQd7gn\neTbwUeCqqvoOcD3wXGAbcAR4z2oeuKp2V9VCVS3Mzc2tZlVJUg99hXuSU1kO9puq6mMAVfV4VT1d\nVd8HbuCHQy+HgS0dq29u2iRJ66Sfs2UC3Ag8VFXv7Wjf2LHY64EvNtN7gUuTnJbkHGArcPfwSpYk\n9dLP2TIvBS4H7k+yv2l7O3BZkm1AAY8CfwBQVQ8kuRl4kOUzba70TBmtRedYu+Pu0ur0DPequhNI\nl1m3nWSda4BrBqhLkjQAv6EqSS1kuEsTyGEoDcpwl6QWMtwlqYUMd2lCOTSjQRjuktRChrsktZDh\nLkktZLhLUgsZ7pLUQoa7NCU8e0arYbhLE8xA11oZ7pLUQoa7JLWQ4a6xc+hBGj7DXZoCvgBqtQx3\nSWohw10Tw3+rJw1PP/8ge0uSO5I8mOSBJG9t2s9Msi/Jw831GU17krwvycEkB5K8eNR/hCTpR/XT\nc38KuLqqzgXOB65Mci6wC7i9qrYCtze3AV4DbG0uO4Hrh161NKN8R6N+9Qz3qjpSVfc2098FHgI2\nATuAPc1ie4BLmukdwAdr2eeA05NsHHrlkqQVrWrMPck8cB5wF3B2VR1pZn0NOLuZ3gQ81rHaoabt\n+PvamWQxyeLS0tIqy5YkncyGfhdM8mzgo8BVVfWdJD+YV1WVpFbzwFW1G9gNsLCwsKp11T7Hhhsc\ndpCGo6+ee5JTWQ72m6rqY03z48eGW5rro037YWBLx+qbmzZJ0jrp52yZADcCD1XVeztm7QWuaKav\nAG7paH9jc9bM+cATHcM3klbJdzNai3567i8FLgcuSLK/ubwWuBZ4ZZKHgVc0twFuAx4BDgI3AG8e\nftmSwODXynqOuVfVnUBWmH1hl+ULuHLAuiRJA/AbqpLUQoa7JLWQ4S5JLWS4S1ILGe7SFPIsGfVi\nuEtTzqBXN4a71p1hJI2e4S5JLWS4S1ILGe4aG4dnpNEx3DUWBvtwuT11PMNdmlIGuk7GcJekFjLc\npSljj139MNwlqYUMd60re53S+jDcJamFDHeNlT15aTQMd0lqoZ7hnuT9SY4m+WJH2zuTHD7uH2Yf\nm/e2JAeTfDnJq0dVuKaPvfTRcxvrmH567h8ALurSfl1VbWsutwEkORe4FHhBs87fJzllWMVKkvrT\nM9yr6rPAN/u8vx3Ah6vqyar6CnAQ2D5AfZKkNRhkzP0tSQ40wzZnNG2bgMc6ljnUtJ0gyc4ki0kW\nl5aWBihDknS8tYb79cBzgW3AEeA9q72DqtpdVQtVtTA3N7fGMiRJ3awp3Kvq8ap6uqq+D9zAD4de\nDgNbOhbd3LRpRvkBnzQeawr3JBs7br4eOHYmzV7g0iSnJTkH2ArcPViJagNDfvTcxurUz6mQHwL+\nA3hekkNJ3gT8ZZL7kxwAXg78IUBVPQDcDDwIfAq4sqqeHln1kk7QGfIG/uza0GuBqrqsS/ONJ1n+\nGuCaQYqSJA3Gb6hKLWSPXYa7RsJwkcbLcJekFjLcJamFDHdJaiHDXZJayHDXyPnhqrT+DHdpRvgi\nO1sMd0lqoZ7fUJU03eyxzyZ77pLUQoa7JLWQ4a6h8K3/dPB5mh2Gu4bK8JgcPhezzXDXyBgu0vgY\n7hqYIS5NHsNdklrIcNfQ2ZOfbD4/s6Gf/6H6/iRHk3yxo+3MJPuSPNxcn9G0J8n7khxMciDJi0dZ\nvCSpu3567h8ALjqubRdwe1VtBW5vbgO8BtjaXHYC1w+nTE0ae3/t4XPZTj3Dvao+C3zzuOYdwJ5m\neg9wSUf7B2vZ54DTk2wcVrGSpP6sdcz97Ko60kx/DTi7md4EPNax3KGmTZK0jgb+QLWqCqjVrpdk\nZ5LFJItLS0uDliFpFRyKab+1hvvjx4ZbmuujTfthYEvHcpubthNU1e6qWqiqhbm5uTWWIUnqZq3h\nvhe4opm+Arilo/2NzVkz5wNPdAzfSJLWSc/fc0/yIeBlwFlJDgF/BlwL3JzkTcBXgd9sFr8NeC1w\nEPgf4HdHULMmlG/1p4/PWXv1DPequmyFWRd2WbaAKwctStNhftetPHrtxeMuQ1IXfkNVA7HnJ00m\nw12rYpi3h89luxnuktRChrv6Zk9Pmh6Gu1bNkJcmn+Guvhjo7ebz2z6Gu07Kg362+Hy3h+GurjzI\npelmuEvqiy/408Vw14o8mGeTz3s7GO6SAEO9bQx39eRBL00fw11ST77ATx/DXdIJDPPpZ7hLWpEh\nP70Md0ldGezTzXCXpBYy3CWphQx3/YBvw6X2GCjckzya5P4k+5MsNm1nJtmX5OHm+ozhlKr1YMBL\n7TCMnvvLq2pbVS00t3cBt1fVVuD25rYkaR2NYlhmB7Cnmd4DXDKCx9AI2XtXJ/eH6TRouBfw6ST3\nJNnZtJ1dVUea6a8BZ3dbMcnOJItJFpeWlgYsQ5LUacOA6/9qVR1O8tPAviRf6pxZVZWkuq1YVbuB\n3QALCwtdl9H6sXcmtctAPfeqOtxcHwU+DmwHHk+yEaC5PjpokZKk1Vlzzz3JjwM/VlXfbaZfBfw5\nsBe4Ari2ub5lGIVKGr/Od3iPXnvxGCtRL4P03M8G7kxyH3A3cGtVfYrlUH9lkoeBVzS3NWEchtEw\nuB9NrjX33KvqEeBFXdq/AVw4SFFaXx6gUvv4DVVJQ2VnYTIY7jOi2wHnQSi1l+E+Qwx4DZP7zmQz\n3CUNxJCfTIb7jPFAlGaD4T6DDHiNwsn2K/e59We4S1ILGe4zwF6TRs19bPIY7pLUQoZ7i3iqoyaF\n+934Ge4tdOzA8gDTOM3vutV9cIwM95Yx2DVp3BfHw3CXtG46g96OyGgZ7i3gwaFp4v66Pgz3KXH8\nAWGvR5Notfuj++/oGO5TZqWDwYNE08Rvs46e4T6B+t25PQg0TfrZX+28DI/hPgF69WKOH4JxR1fb\ndBt29FTKwRjuY3SyLx25U0sn6hb4HivdjSzck1yU5MtJDibZNarHmQYOs0i99RqS8fhYnZGEe5JT\ngL8DXgOcC1yW5NxRPNY49drZVnqr2TnvZDuuO7O0spV68X5Yu2xUPfftwMGqeqSq/g/4MLBjFA80\n6JN1/Jcq+u0ldAvnlaa7PY6ktesV6isdj93uo9t6vTpbwzqGR5kFqarh32nyBuCiqvr95vblwEuq\n6i0dy+wEdjY3nwd8eeiFdHcW8PV1eqxp4nbpzu3SndvlROPYJj9XVXPdZmxY50J+oKp2A7vX+3GT\nLFbVwno/7qRzu3TndunO7XKiSdsmoxqWOQxs6bi9uWmTJK2DUYX754GtSc5J8gzgUmDviB5LknSc\nkQzLVNVTSd4C/BtwCvD+qnpgFI+1Bus+FDQl3C7duV26c7ucaKK2yUg+UJUkjZffUJWkFjLcJamF\nZjbck1ydpJKcNe5aJkGSv0rypSQHknw8yenjrmmc/PmMEyXZkuSOJA8meSDJW8dd0yRJckqSLyT5\nxLhrgRkN9yRbgFcB/z3uWibIPuCFVfVLwH8CbxtzPWMzKz+fsQZPAVdX1bnA+cCVbpcf8VbgoXEX\nccxMhjtwHfAngJ8mN6rq01X1VHPzcyx/N2FWrdvPZ0yTqjpSVfc2099lOcg2jbeqyZBkM3Ax8I/j\nruWYmQv3JDuAw1V137hrmWC/B3xy3EWM0SbgsY7bhzDEfkSSeeA84K7xVjIx/oblDuP3x13IMWP7\n+YFRSvIZ4Ge6zHoH8HaWh2Rmzsm2S1Xd0izzDpbfft+0nrVpeiR5NvBR4Kqq+s646xm3JK8DjlbV\nPUleNu56jmlluFfVK7q1J/lF4BzgviSwPPRwb5LtVfW1dSxxLFbaLsck+R3gdcCFNdtfgPDnM1aQ\n5FSWg/2mqvrYuOuZEC8Ffj3Ja4FnAj+R5F+q6rfHWdRMf4kpyaPAQlXN/K/bJbkIeC/wa1W1NO56\nxinJBpY/VL6Q5VD/PPBbE/Qt67HIco9oD/DNqrpq3PVMoqbn/kdV9bpx1zJzY+5a0d8CzwH2Jdmf\n5B/GXdC4NB8sH/v5jIeAm2c92BsvBS4HLmj2kf1Nb1UTaKZ77pLUVvbcJamFDHdJaiHDXZJayHCX\npBYy3CWphQx3SWohw12SWuj/AU28QZqYdFAXAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "tags": [] + } + } + ] + } + ] +} \ No newline at end of file diff --git a/Labs/Lab-1/Copy of Lab-1.ipynb b/Labs/Lab-1/Copy of Lab-1.ipynb new file mode 100644 index 0000000..cdac2d7 --- /dev/null +++ b/Labs/Lab-1/Copy of Lab-1.ipynb @@ -0,0 +1 @@ +{"nbformat":4,"nbformat_minor":0,"metadata":{"kernelspec":{"name":"python3","display_name":"Python 3"},"colab":{"name":"Copy of Lab-1.ipynb","provenance":[{"file_id":"https://github.com/afarbin/DATA1401-Spring-2020/blob/master/Labs/Lab-1/Lab-1.ipynb","timestamp":1580927815123}],"collapsed_sections":[]}},"cells":[{"cell_type":"markdown","metadata":{"id":"O5vg8KKRq0sy","colab_type":"text"},"source":["# Lab 1\n","\n","## Python Notebooks on Google Colab\n","\n","Data 1401's Labs, Homework, and Exams will be all in form of iPython notebooks. You may already be familiar with python notebooks if you have used Jupyter before, for example in Data 1301. If so, you are welcome to use whatever means you have to run Jupyter notebooks for this course, though you may get limited support. Our primary means of running python notebooks will be through [Google Colab](https://colab.research.google.com) and we will be storing files on google drive.\n","\n","You will need a google account. If you do not have one or you wish to use a different account for this course, please follow [these instructions](https://edu.gcfglobal.org/en/googledriveanddocs/getting-started-with-google-drive/1/) to make an account.\n","\n","Once you are ready with your account, you can continue in Colab. Click on the following badge to open this notebook in Colab:\n","\n","[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github//afarbin/DATA1401-Spring-2020/blob/master/Labs/Lab-1/Lab-1.ipynb)\n"]},{"cell_type":"markdown","metadata":{"id":"FVt_1hPt1dAK","colab_type":"text"},"source":["## Notebooks in Colab\n","\n","You now are presumably in Colab. Word of caution, by default, Google Colab does not save your notebooks, so if you close your session, you will loose your work.\n","\n","So first thing: from the file menu above select \"Save a copy in Drive\"."]},{"cell_type":"markdown","metadata":{"id":"x0JBL_RFrDDj","colab_type":"text"},"source":["## Storing Notebooks in Google Drive\n","A better way to work is to save your notebooks directly into Google Drive and upload directly to Git (where you will be downloading and uploading your homework). In order properly setup Git, we'll need to work more directly in your Google Drive.\n","\n","On the left sidebar, press the file icon to see a listing of files accessibile to this Notebook. Then press \"Mount Drive\" and follow the instructions to mount your Google Drive in this notebook. A new cell will be inserted into this notebook, which after you run by pressing the play button will instruct you to follow a link to log into your Google Account and enable access to your Drive in another tab. Finally you will copy a link from the new tab back into the cell in this notebook. Once you are done, press refresh under files in the left sidebar and you should have \"drive/My Drive\" appear."]},{"cell_type":"code","metadata":{"id":"-hTCcZiCrcrt","colab_type":"code","outputId":"9d70af97-e576-48e2-8889-c459d1fe1353","executionInfo":{"status":"ok","timestamp":1581091101633,"user_tz":360,"elapsed":93951,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":124}},"source":["from google.colab import drive\n","drive.mount('/content/drive')"],"execution_count":5,"outputs":[{"output_type":"stream","text":["Go to this URL in a browser: https://accounts.google.com/o/oauth2/auth?client_id=947318989803-6bn6qk8qdgf4n4g3pfee6491hc0brc4i.apps.googleusercontent.com&redirect_uri=urn%3aietf%3awg%3aoauth%3a2.0%3aoob&response_type=code&scope=email%20https%3a%2f%2fwww.googleapis.com%2fauth%2fdocs.test%20https%3a%2f%2fwww.googleapis.com%2fauth%2fdrive%20https%3a%2f%2fwww.googleapis.com%2fauth%2fdrive.photos.readonly%20https%3a%2f%2fwww.googleapis.com%2fauth%2fpeopleapi.readonly\n","\n","Enter your authorization code:\n","··········\n","Mounted at /content/drive\n"],"name":"stdout"}]},{"cell_type":"markdown","metadata":{"id":"hwJ6wJk3tiLv","colab_type":"text"},"source":["## Github\n","All the class material will be stored on github. You will also submit your homework using github. To do so, you will need a github account.\n","\n","If you do not already have a github account or wish to create a new one for this course, create one:\n","* Browse to [github.com](https://github.com).\n","* Click the green “Sign up for GitHub”\tbutton.\n","* Follow instructions for creating an account.\n","* Make sure you remember your github username and password.\n","\n","Write an email to the course TA titled \"Data 1401: Github account\" with your github username (not your password) as the contents.\n","\n","## Google Groups\n","\n","Class annoucements will be made via google groups. If you did not already receive an invite to the class google group, had trouble with the invite, or wish to use a different email address, write an email to the course TA titled \"Data 1401: Google Group\" with your preferred email.\n"]},{"cell_type":"markdown","metadata":{"id":"TjfIzdQZqvzk","colab_type":"text"},"source":["## Introduction: Unix, Git, and Jupyter\n","\n","This lab aims to introduce you to basic Unix, familiarize you with iPython notebooks and get you setup to submit your homework.\n","*italicized text*"]},{"cell_type":"markdown","metadata":{"id":"C_LmOgzFqvzp","colab_type":"text"},"source":["\n","\n","### Terminal, Shell, and ssh\n","\n","\n","The terminal is a simple program that generally runs another program, taking mostly keyboard input from you, passing it to this other program, and taking the output of the program and displaying on the screen for you.\n","\n","The terminal usually runs a program called a shell. Shells present a command prompt where you can type in commands, which are then executed when you press enter. In most shells, there are some special commands which the shell will execute. Everything else you type in, the shell will assume is a name of a program you want to run and arguments you want to pass that program. So if the shell doesn't recognize something you type in, it'll try to find a program with a name that is the same as the first word you gave it. \n","\n","### Shell in Colab\n","\n","Unfortunately, google Colab does not allow you to open a terminal window. Jupyter does, so if you are running in Jupyter (which most of you will not be), you may choose to open a terminal window by returning to the jupyter file list tab and selecting new terminal from the top right.\n","\n","For Colab, we will have to do something non-ideal, but functional. There are several ways to execute shell commands from within a python notebook. For example, you can use any shell command by putting \"!\" in front of the command:\n","\n","\n","\n"]},{"cell_type":"code","metadata":{"id":"KJ5f-WO0wcAv","colab_type":"code","outputId":"04ee6d5a-6a6e-493e-bf2c-8d220844631e","executionInfo":{"status":"ok","timestamp":1581047763612,"user_tz":360,"elapsed":3848,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":104}},"source":["!ls\n","!echo \"----------\"\n","!ls sample_data"],"execution_count":0,"outputs":[{"output_type":"stream","text":["sample_data\n","----------\n","anscombe.json\t\t mnist_test.csv\n","california_housing_test.csv mnist_train_small.csv\n","california_housing_train.csv README.md\n"],"name":"stdout"}]},{"cell_type":"markdown","metadata":{"id":"8f-n4AXFw-dD","colab_type":"text"},"source":["Unfortunately, every time you use \"!\" a new environment is created and the state reverted to the original state. Try to understand the difference between the following two sets of commands:\n"]},{"cell_type":"code","metadata":{"id":"99nrBYTWxZJr","colab_type":"code","outputId":"82f4aaf7-a527-4760-c760-e911ff744207","executionInfo":{"status":"ok","timestamp":1581048405235,"user_tz":360,"elapsed":5142,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":69}},"source":["!echo \"Technique 1:\"\n","!ls\n","!cd sample_data\n","!ls"],"execution_count":0,"outputs":[{"output_type":"stream","text":["Technique 1:\n","drive sample_data\n","drive sample_data\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"2-Znf97Lxl-Z","colab_type":"code","outputId":"507cb2d6-301f-4e7c-da5f-08df4bdb2bc8","executionInfo":{"status":"ok","timestamp":1581048440373,"user_tz":360,"elapsed":3420,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":104}},"source":["!echo \"Technique 2:\"\n","!ls ; cd sample_data ;ls"],"execution_count":0,"outputs":[{"output_type":"stream","text":["Technique 2:\n","drive sample_data\n","anscombe.json\t\t mnist_test.csv\n","california_housing_test.csv mnist_train_small.csv\n","california_housing_train.csv README.md\n"],"name":"stdout"}]},{"cell_type":"markdown","metadata":{"id":"4x9n1rAkxyYl","colab_type":"text"},"source":["Notebooks allow a bit of \"magic\" (using \"%\") to avoid some of these limitations:\n"]},{"cell_type":"code","metadata":{"id":"vLBPTX4rx3gd","colab_type":"code","outputId":"62560f0d-593d-4e5d-fbb2-2253f2f2b221","executionInfo":{"status":"ok","timestamp":1581052654820,"user_tz":360,"elapsed":4475,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":121}},"source":["!echo \"Technique 3:\"\n","!ls \n","%cd sample_data \n","!ls\n","!exit"],"execution_count":0,"outputs":[{"output_type":"stream","text":["Technique 3:\n","drive sample_data\n","/content/sample_data\n","anscombe.json\t\t mnist_test.csv\n","california_housing_test.csv mnist_train_small.csv\n","california_housing_train.csv README.md\n"],"name":"stdout"}]},{"cell_type":"markdown","metadata":{"id":"U8XpvPjcyH0w","colab_type":"text"},"source":["For our purposes, we are just going to explicitly start a new shell and interact with it in the output cell. Execute the following cell. You will be able to type and execute commands. Look around a bit using \"ls\" and \"cd. You can stop the cell from running by typing \"exit\"."]},{"cell_type":"code","metadata":{"id":"MIDFitLZyuZy","colab_type":"code","outputId":"739355fa-4576-439e-e3e7-8436053cb618","executionInfo":{"status":"ok","timestamp":1581052622163,"user_tz":360,"elapsed":222147,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":121}},"source":["!/bin/bash --noediting"],"execution_count":0,"outputs":[{"output_type":"stream","text":["bash: cannot set terminal process group (119): Inappropriate ioctl for device\n","bash: no job control in this shell\n","\u001b]0;root@f23b3c4c052e: /content/sample_data\u0007\u001b[01;32mroot@f23b3c4c052e\u001b[00m:\u001b[01;34m/content/sample_data\u001b[00m# \n","\u001b]0;root@f23b3c4c052e: /content/sample_data\u0007\u001b[01;32mroot@f23b3c4c052e\u001b[00m:\u001b[01;34m/content/sample_data\u001b[00m# \n","\u001b]0;root@f23b3c4c052e: /content/sample_data\u0007\u001b[01;32mroot@f23b3c4c052e\u001b[00m:\u001b[01;34m/content/sample_data\u001b[00m# \n","\u001b]0;root@f23b3c4c052e: /content/sample_data\u0007\u001b[01;32mroot@f23b3c4c052e\u001b[00m:\u001b[01;34m/content/sample_data\u001b[00m# ^C\n"],"name":"stdout"}]},{"cell_type":"markdown","metadata":{"id":"q-4hfZBywW25","colab_type":"text"},"source":["While in this instance your shell is running in a this notebook, you can also run terminals natively on your own computer. On Linux or MacOS, you just have to run a program called terminal. In Windows you can start a \"command prompt\". \n","\n","\n","Type in \"ls\" into the terminal and press enter. The shell will find a program called \"ls\", a standard tool in Unix, and run it. \"ls\" lists the contents (files and directories) of your current directory. If you are just starting in this course, you probably only see the git repository you cloned. \n","\n","A subtle point to realize here is that while the terminal is running in the browser that is running on the computer in front of you, the shell is actually running on a machine on google hardware. The shell prompt typically displays the name of the machine you are using. What you are not seeing is that there is an intermidate program between the terminal running on your computer and the shell running on google. This intermidary program is taking your input from the terminal sending it over the network to google and bringing back the responses for you terminal to display.\n","\n","A bit of extra information. If you start a terminal on your own computer, the shell runs locally. The \"ls\" command would then list contents of a directory on your computer. You can typically connect to Unix computers by evoking a shell running on that machine over the network. In this case, you would have to initiate this intermidiary program yourself. The program is called \"ssh\" (secure shell). You can \"ssh\" to another machine from your machine, by simply typing \"ssh\" followed by the machine name or IP address. Most likely you would be prompted for a password, after which you would dropped into the prompt of a shell running on the remote machine. \n"]},{"cell_type":"markdown","metadata":{"id":"51Eya4LBqvzs","colab_type":"text"},"source":["!history## Programs and Environment Variables\n","\n","You have a listing of your current directory, but you don't know where that directory resides. You can see what directory you are using the command \"pwd\" (print working directory). Issue the command and look at the response. You'll get a slash (\"/\") separated list, known as the path, of the directory hierarchy of your current working directory. On Colab, this will start with \"contents\"\n","\n","Now back to thinking about the command prompt. Since \"ls\" is a program, it most be stored somewhere. It is clearly not in your working directory, because you didn't see it when you executed \"ls\". We can ask the shell to tell us where it found \"ls\" using the \"which ls\" command. Note that \"which\" is also a program. \"which ls\" comes back with \"/bin/ls\", telling you the \"ls\" program is sitting in \"/bin\" directory of the system. \n","\n","Lets see what else is in there by issuing a \"ls /bin\" command. You will get a long list of programs. You can run any of these programs by just typing their names and pressing enter. You may be able to guess what some of these programs do, but if you want to know, most of them provide you help, using \"--help\" or \"-h\" flag. For example execute \"ls --help\". For more information about a program or command, you can use Unix's manual pages using the \"man\" command. Try typing \"man ls\". Note that you will need to press space to scroll through lengthy manual pages and \"q\" to exit back to the shell prompt. \n","\n","Another command interesting is \"echo\". \"echo\" simply prints whatever you put after it to the screen. Try executing \"echo Hello World.\"\n","\n","At this point, you may wonder how was it that the shell knew to look for programs in \"/bin\"? The shell keeps a list of places to look for programs an environment variable with the name \"PATH\". The shell keeps a table that map string variable names to string expressions. When the shell starts, its configuration files set some environment variables that it uses. You can see the full list of defined environment variables using the command \"printenv\".\n","\n","You can use a environment variable in a shell by prepending name of the variable with a dollar sign character (\"\\$\"). So you can print out the PATH environment variable using the command \"echo $PATH\". What you will see is a colon (\":\") separated list of directories that the shell will search (in order) whenever you type in anything.\n","\n","You can set you own environment variables. Different shells have different syntax. Lets first figure out what shell we are running. \n","\n","*Exercise 1:* Use the \"echo\" command to print out the value of the \"SHELL\" environment variable:"]},{"cell_type":"code","metadata":{"id":"JIxMyGk5PH_d","colab_type":"code","outputId":"e3279448-6018-43d0-a6d4-3c9c55b96c52","executionInfo":{"status":"ok","timestamp":1581055273498,"user_tz":360,"elapsed":1006,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":35}},"source":["!echo $SHELL"],"execution_count":0,"outputs":[{"output_type":"stream","text":["/bin/bash\n"],"name":"stdout"}]},{"cell_type":"markdown","metadata":{"id":"YS7YFiPwqvzu","colab_type":"text"},"source":["!/bin/bash --noediting"]},{"cell_type":"markdown","metadata":{"id":"YoEgruUhqvzw","colab_type":"text"},"source":["## Navigating Directories\n","\n","You can change your current directory using the \"cd\" shell command. Note that \"cd\" is not a Unix program. Once in a directory, you can use the \"ls\" command to list the contents or \"pwd\" to remind yourself your current working directory. You can move back one level in your current directory hierarchy using \"cd ..\". In general \"..\" represents the path to a directory one level above your current directory, \"../..\" represents two levels up, and so on. \".\" represents the current directory. If you look at the PATH environment variable, you'll notice that the last item is \".\", telling the shell to look into your current directory for commands. Finally the \"~\" character always refers to your home directory.\n","\n","Some other file manipulation commands:\n","\n"," - The \"mkdir\" command creates new directories. \n"," - \"cp\" and \"mv\" allow you to copy and move (or rename) files, taking 2 arguments: the original path/filename and the target path/filename. \n"," - The \"rm\" and \"rmdir\" commands remove (delete) files and directories.\n","\n","\n","*Exercise 2:* Using the \"cd\" command, navigate into \"drive/My\\ Drive\" directory. Create a new directory called \"Data-1441\", and another directory inside \"Data-1441\" called \"Lab-1-Solutions\". Perform the rest of the lab in this directory."]},{"cell_type":"code","metadata":{"id":"GFb4Iy2NHP-p","colab_type":"code","outputId":"d4908338-c15a-4bf0-9d79-081c0e60cba4","executionInfo":{"status":"ok","timestamp":1581055078647,"user_tz":360,"elapsed":406,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":35}},"source":["cd /content/drive/My\\ Drive"],"execution_count":0,"outputs":[{"output_type":"stream","text":["/content/drive/My Drive\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"7tLHS2_IOgRB","colab_type":"code","colab":{}},"source":["mkdir Data-1441"],"execution_count":0,"outputs":[]},{"cell_type":"code","metadata":{"id":"brglBiW6OlHd","colab_type":"code","outputId":"feacdccd-c8a0-443a-93ad-e96a65258fae","executionInfo":{"status":"ok","timestamp":1581055108141,"user_tz":360,"elapsed":349,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":35}},"source":["pwd"],"execution_count":0,"outputs":[{"output_type":"execute_result","data":{"text/plain":["'/content/drive/My Drive'"]},"metadata":{"tags":[]},"execution_count":92}]},{"cell_type":"code","metadata":{"id":"xzFeL-oWOnys","colab_type":"code","outputId":"5259f398-6820-4134-a39e-1bb3132caf1e","executionInfo":{"status":"ok","timestamp":1581055143520,"user_tz":360,"elapsed":285,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":35}},"source":["cd /content/drive/My\\ Drive/Data-1441"],"execution_count":0,"outputs":[{"output_type":"stream","text":["/content/drive/My Drive/Data-1441\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"pibHXpbXOwyL","colab_type":"code","colab":{}},"source":["mkdir Lab-1-Solutions"],"execution_count":0,"outputs":[]},{"cell_type":"code","metadata":{"id":"4AdJGbGBO2oo","colab_type":"code","outputId":"168af087-61da-46c8-c5d4-08460aee075c","executionInfo":{"status":"ok","timestamp":1581055216631,"user_tz":360,"elapsed":447,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":35}},"source":["cd /content/drive/My\\ Drive/Data-1441/Lab-1-Solutions"],"execution_count":0,"outputs":[{"output_type":"stream","text":["/content/drive/My Drive/Data-1441/Lab-1-Solutions\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"A16VzZ3G0J8x","colab_type":"code","colab":{}},"source":["!/bin/bash --noediting"],"execution_count":0,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"o38c4lbsqvzy","colab_type":"text"},"source":["## Exploring Unix Filesystem\n","\n","You can look at the root directory of the system by issuing \"ls /\". As explained in lecture, Unix uses the file system to communicate with devices and between processes. \"/etc\" keeps the configuration files of the system. \"/bin\" and \"/sbin\" store most of the standard Unix programs. \"/usr\" stores installes programs and their associate files, with \"/usr/bin\" usually storing the commands you can run. \n","\n","*Exercise 3:* List the \"/dev\" directory. How many SSD storage devices do you see? How many partitions does each device have? (Answer in box below)"]},{"cell_type":"code","metadata":{"id":"w_4Ld52SLhk7","colab_type":"code","outputId":"2863e734-7baa-446f-8de9-77e2d05d5d57","executionInfo":{"status":"ok","timestamp":1581054455359,"user_tz":360,"elapsed":303,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":35}},"source":["cd /dev/"],"execution_count":0,"outputs":[{"output_type":"stream","text":["/dev\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"WCLDvWoEMgx0","colab_type":"code","outputId":"7691f6a7-e765-4046-e5c8-71ca28423f77","executionInfo":{"status":"ok","timestamp":1581054566709,"user_tz":360,"elapsed":1549,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":52}},"source":["!ls"],"execution_count":0,"outputs":[{"output_type":"stream","text":["core full mqueue ptmx random stderr stdout urandom\n","fd fuse null pts shm\t stdin tty\t zero\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"81QKmsYpQLV0","colab_type":"code","outputId":"be452f92-65e9-4d48-d12e-1a9fc4078f7c","executionInfo":{"status":"ok","timestamp":1581055551361,"user_tz":360,"elapsed":1329,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":52}},"source":["ls /dev"],"execution_count":0,"outputs":[{"output_type":"stream","text":["\u001b[0m\u001b[01;36mcore\u001b[0m@ \u001b[01;33mfull\u001b[0m \u001b[30;42mmqueue\u001b[0m/ \u001b[01;36mptmx\u001b[0m@ \u001b[01;33mrandom\u001b[0m \u001b[01;36mstderr\u001b[0m@ \u001b[01;36mstdout\u001b[0m@ \u001b[01;33murandom\u001b[0m\n","\u001b[01;36mfd\u001b[0m@ \u001b[01;33mfuse\u001b[0m \u001b[01;33mnull\u001b[0m \u001b[01;34mpts\u001b[0m/ \u001b[30;42mshm\u001b[0m/ \u001b[01;36mstdin\u001b[0m@ \u001b[01;33mtty\u001b[0m \u001b[01;33mzero\u001b[0m\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"yNj2LXzP2ksl","colab_type":"code","colab":{}},"source":["!/bin/bash --noediting"],"execution_count":0,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"7P9EG0KOqvz2","colab_type":"text"},"source":["## Text File Manipulation\n","\n","As explained in lecture, Unix stores most information in text files. For example, the list of all users and their home directories are stored in \"/etc/passwd\". Let get some familiarity with the most commonly used commands to manipulate files.\n","\n"," - You can see the contents contents a file using the \"cat\" (concatenate) command. Try executing \"cat /etc/passwd\". You'll get a huge list that will go by your screen quickly. \n"," \n"," - To go through the file page by page, you can use the \"less\" or \"more\" commands. \n"," \n"," - You can see the first or last N (N=10 by default) lines of a file using \"head\" or \"tail\" commands. For example \"tail -20 /etc/passwd\" will list the last 20 lines. \n"," \n"," - You can search a test file using the \"grep\" command, which takes a string keyword as the first argument and a filename as the second, and by default prints out every line in the file that contrains the string. So for example you can do \"grep \\$USER /etc/passwd\" to find the line corresponding to your account. Some useful flags: \n"," \n"," - \"-i\" ignores the case of the keyword\n"," - \"-v\" display those lines that do NOT match \n"," - \"-n\" precede each matching line with the line number \n"," - \"-c\" print only the total count of matched lines \n"," \n"," For example \"grep -c \\$USER /etc/passwd\" should show that you are in the password file just once. \n"," \n"," - The \"wc\" (word count) command counts the number of lines, words, and characters in a file. By default \"wc\" gives you all three numbers, but \"-w\", \"-l\", or \"-c\" flags \n","\n","*Exercise 4:* Count how many lines in the password file contain the letter \"w\". "]},{"cell_type":"code","metadata":{"id":"qS0IxohGXXq0","colab_type":"code","outputId":"fb80880e-8a3f-412f-90c8-d65bc4fc4b0f","executionInfo":{"status":"ok","timestamp":1581057554121,"user_tz":360,"elapsed":1702,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":35}},"source":["!grep -c w /etc/passwd"],"execution_count":0,"outputs":[{"output_type":"stream","text":["3\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"colab_type":"code","id":"RA9ZhpphV4R_","colab":{}},"source":["!/bin/bash --noediting"],"execution_count":0,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"SZuhLbD8qvz5","colab_type":"text"},"source":["## Redirection\n","\n","Unix provides programs \"pipes\" for input and output. Most of what you see on the screen when you run a program was written to the \"stdout\" (standard output) pipe. Other pipes are \"stdin\" (standard input) and \"stderr\" (standard error), where error messages are written.\n","\n","As discussed in lecture, the basic commands of are simple, but you can chain them to do complicated things. Redirection is how you chain these commands, directing the output of one command to the input of the next.\n","\n","As an example, consider the \"cat\" command. Cat takes stdin and outputs it to stdout. Type \"cat\" and press enter and confirm. You can get back to the command prompt by pressing \"control-c\" (sends terminate singal) or \"control-d\" (end of file character). Note that from now on we will use the convention: \"control-d\" = \"^D\"\n","\n","*Exercise 5a:* Using \"cat\" and indirection you can write things into a file. The \">\" symbol directs stdout into a file. Try \"cat > favorite-colors-list.txt\" and then type in your 3 favorite colors, each on it's own line. Use \"^D\" to end your input."]},{"cell_type":"code","metadata":{"id":"XsisQZkCYfgs","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":35},"outputId":"73d32e4c-08a3-47f4-e1f8-701c3cc46a34","executionInfo":{"status":"ok","timestamp":1581091258493,"user_tz":360,"elapsed":223,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}}},"source":["cd /content/drive/My\\ Drive/Data-1441/Lab-1-Solutions"],"execution_count":6,"outputs":[{"output_type":"stream","text":["/content/drive/My Drive/Data-1441/Lab-1-Solutions\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"QHaz4w2KbyTl","colab_type":"code","outputId":"7c7701b7-e497-4ce5-b329-216ee12fa78c","executionInfo":{"status":"ok","timestamp":1581091722101,"user_tz":360,"elapsed":451367,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":139}},"source":["!cat > favorite-colors-list.txt"],"execution_count":7,"outputs":[{"output_type":"stream","text":["Blue\n","Green\n","Yellow\n","^D\n","^C\n","\n","^C\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"54Xz7AFZaVXE","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":121},"outputId":"0d4c3b79-94ed-4717-ce76-e7ce974da289","executionInfo":{"status":"ok","timestamp":1581091780700,"user_tz":360,"elapsed":1116,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}}},"source":["!more -d favorite-colors-list.txt"],"execution_count":8,"outputs":[{"output_type":"stream","text":["Blue\n","Green\n","Yellow\n","^D\n","^C\n","\n"],"name":"stdout"}]},{"cell_type":"markdown","metadata":{"id":"H5vxtcXnqvz6","colab_type":"text"},"source":["Use \"cat\", \"more\", or \"less\" to confirm that you file is as you expect it. \">>\" allows you to append to the file. \n","\n","*Exercise 5b:* Append 2 more colors to your file."]},{"cell_type":"code","metadata":{"id":"zX6dLX8BeWpB","colab_type":"code","outputId":"1703f5e4-f8ec-44c9-ea2a-24804e73b57f","executionInfo":{"status":"ok","timestamp":1581091830636,"user_tz":360,"elapsed":22077,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":69}},"source":["!cat >> favorite-colors-list.txt"],"execution_count":9,"outputs":[{"output_type":"stream","text":["Black\n","White\n","^C\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"qoW-u59FWOw7","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":156},"outputId":"9bfa07b0-3c48-4b0c-980a-5f619c96a62e","executionInfo":{"status":"ok","timestamp":1581091853768,"user_tz":360,"elapsed":989,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}}},"source":["!more -d favorite-colors-list.txt"],"execution_count":10,"outputs":[{"output_type":"stream","text":["Blue\n","Green\n","Yellow\n","^D\n","^C\n","\n","Black\n","White\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"twRKNaGy3XGw","colab_type":"code","colab":{}},"source":["!/bin/bash --noediting"],"execution_count":0,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"DZODNKiAqvz8","colab_type":"text"},"source":["The \"sort\" command sorts what it sees on stdin. Instead of taking input from the terminal, you can direct the shell to take stdin from a file using \"<\". Try \"sort < favorite-color-list.txt\" and \"sort < favorite-color-list.txt > sorted-favorite-color-list.txt\".\n","\n","Finally, instead of piping input / output into files, you can directly chain one program into another using \"|\". So for example, you can do \"cat /etc/passwd | grep -i \\$USER | wc -l\". \n","\n","*Exercise 5c:* Use indirection to count the number of users on TACC with your first name. Copy the command you used into box below."]},{"cell_type":"code","metadata":{"id":"_qa5Imp8bGTI","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":156},"outputId":"68216355-0164-478e-c6dd-9f60d7f3b953","executionInfo":{"status":"ok","timestamp":1581092314508,"user_tz":360,"elapsed":1173,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}}},"source":["!sortsorted-favorite-colors-list.txt"],"execution_count":0,"outputs":[]},{"cell_type":"code","metadata":{"id":"R0VvASrTc6bn","colab_type":"code","colab":{"base_uri":"https://localhost:8080/","height":156},"outputId":"ea422a56-ec9c-4fc5-db1f-e5f5f798fd8f","executionInfo":{"status":"ok","timestamp":1581092424577,"user_tz":360,"elapsed":1199,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}}},"source":["!more -d sorted-favorite-colors-list.txt"],"execution_count":15,"outputs":[{"output_type":"stream","text":["\n","Black\n","Blue\n","^C\n","^D\n","Green\n","White\n","Yellow\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"jD7_FU9rf-eF","colab_type":"code","outputId":"66097962-b62a-411a-8ad5-622dff0aabef","executionInfo":{"status":"ok","timestamp":1581059824458,"user_tz":360,"elapsed":1688,"user":{"displayName":"Anugrah Singh","photoUrl":"","userId":"06892280493299180892"}},"colab":{"base_uri":"https://localhost:8080/","height":35}},"source":["!cat /etc/passwd | grep -c Anugrah"],"execution_count":0,"outputs":[{"output_type":"stream","text":["0\n"],"name":"stdout"}]},{"cell_type":"code","metadata":{"id":"oP9XlZl_3iZD","colab_type":"code","colab":{}},"source":["!/bin/bash --noediting"],"execution_count":0,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"v5IaZXNyqvz_","colab_type":"text"},"source":["## Git\n","\n","`git` is a Version Control System (VCS), typically used to organize the source code of software project but also good source of documents or web-pages. An instance of `git` server stores repositories, each typically containing the code relevant to a specific project. Users create local `clones` of repositories, change and develop the local copies of the code, `commit` the changes to their local repository, `push` to the server as a contribution, \n","`pull` updates from the server, and `merge` changes between local and remote versions. \n","\n","Besides cloning, repositories can be branched or forked. A repository generally starts with a `master` branch that evolves as push requests are merged in. Creating a new branch from an existing branch creates a snapshot of the which can evolve independently or be merged in later. Branches are easy to make and delete, and can serve various purposes. They can represent a stable version of software package. Or a parallel development for different operating system. A fork of a repository is a standalone instance of the repository which can be stored and managed independently from the original, where you can work independently without constraints or interference. \n","\n","[GitHub](github.com) provides a massive publically accessible instance of a `git` system besides sharing code, projects can be developed by the open source community. It provides tools for managing your repository and a wiki for documentation. Contributions to public software on GitHub generally require making a merge request which would be judged by the managers of the repository. That's why most software packages enourage you to create a new fork, so you can work independently.\n","\n","Lets take a look at some repositories:\n","\n","* [This class](https://github.com/afarbin/DATA1401-Spring-2020)\n","\n","\n","\n"]},{"cell_type":"markdown","metadata":{"id":"J_R64sQDqv0A","colab_type":"text"},"source":["## Plan\n","\n","You made a clone of the class repository at start of this lab. We will create a new fork where you can keep track and submit your work, following [these instructions](https://help.github.com/articles/fork-a-repo/).\n","\n","Goto to github.com and log in.\n","\n","Next, lets create a fork of the [class repository](https://github.com/afarbin/DATA1401-Spring-2019). Click the link and press the \"Fork\" button on the top right. Select your repository as where you want to place the fork.\n"]},{"cell_type":"markdown","metadata":{"id":"edTvE6rOqv0C","colab_type":"text"},"source":["Now we will check out your fork in your Google Drive / Colab.\n","\n","Note: Jupyter allows you to run shell directly in a notebook. We will use `!` and `%` to call shell commands directly in this notebook. Follow along yourself. Either create a new notebook or open a terminal. \n","\n","Start by listing the contents of your current directory."]},{"cell_type":"code","metadata":{"id":"e5tXg0f8qv0D","colab_type":"code","colab":{}},"source":["%cd /content/drive/My\\ Drive\n","!ls"],"execution_count":0,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"WYsyYcg1qv0J","colab_type":"text"},"source":["Make a new directory:"]},{"cell_type":"code","metadata":{"id":"Z7noY1hMqv0L","colab_type":"code","colab":{}},"source":["!mkdir Data-1401-Repo\n","%cd Data-1401-Repo"],"execution_count":0,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"fwsBdTnYqv0Q","colab_type":"text"},"source":["From the github page for your fork, press the green \"Clone or download\" button and copy the URL.\n","\n","Goto to your notebook and use the following command to clone the repository, pasting the URL you just copied:\n"]},{"cell_type":"code","metadata":{"id":"8w42MH6Jqv0S","colab_type":"code","colab":{}},"source":["# What you past here should look like:\n","#!git clone https://github.com//DATA1401-Spring-2020.git"],"execution_count":0,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"cOAuqTVUqv0V","colab_type":"text"},"source":["Go into the directory:"]},{"cell_type":"code","metadata":{"id":"b1Ew4tEZqv0X","colab_type":"code","colab":{}},"source":["%cd DATA1401-Spring-2020\n","!ls"],"execution_count":0,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"IrhWToc-qv0a","colab_type":"text"},"source":["We will now connect your fork to the original so you can pull changes from there. \n","\n","Check remote status:"]},{"cell_type":"code","metadata":{"id":"JxtMYR-9qv0c","colab_type":"code","colab":{}},"source":["!git remote -v"],"execution_count":0,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"9ud3X0fBqv0f","colab_type":"text"},"source":["Now use the original class URL to set your upstream:"]},{"cell_type":"code","metadata":{"id":"pgJlKxBqqv0h","colab_type":"code","colab":{}},"source":["!git remote add upstream https://github.com/afarbin/DATA1401-Spring-2020.git"],"execution_count":0,"outputs":[]},{"cell_type":"code","metadata":{"id":"id2yUEt9qv0k","colab_type":"code","colab":{}},"source":["!git remote -v"],"execution_count":0,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"sAkgeJ6Iqv0n","colab_type":"text"},"source":["From now on, you can get the newest version of class material by using:"]},{"cell_type":"code","metadata":{"id":"AGDsfTFLqv0o","colab_type":"code","colab":{}},"source":["!git pull"],"execution_count":0,"outputs":[]},{"cell_type":"markdown","metadata":{"id":"u9RAhs5b4vXY","colab_type":"text"},"source":["We will submit your Lab 1 using git at the next Lab."]},{"cell_type":"code","metadata":{"id":"PPfGmFQI40HR","colab_type":"code","colab":{}},"source":[""],"execution_count":0,"outputs":[]}]} \ No newline at end of file diff --git a/Labs/Lab-2/Lab_2_Solutions.ipynb b/Labs/Lab-2/Lab_2_Solutions.ipynb new file mode 100644 index 0000000..ad19ba6 --- /dev/null +++ b/Labs/Lab-2/Lab_2_Solutions.ipynb @@ -0,0 +1,1187 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "colab": { + "name": "Copy of Lab-2.ipynb", + "provenance": [], + "collapsed_sections": [], + "toc_visible": true + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "uk7yc0nadBGa", + "colab_type": "text" + }, + "source": [ + "# Lab 2\n", + "\n", + "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github//afarbin/DATA1401-Spring-2020/blob/master/Labs/Lab-2/Lab-2.ipynb)\n", + "\n", + "## Submitting lab solutions\n", + "\n", + "At the end of the previous lab, you should have set up a \"Solutions\" directory in your Google Drive, with a fork of the class git repository that pull from Dr. Farbin's verison and pushes to your own fork. \n", + "\n", + "Unfortunately due to a typo in the previous lab, you probably forked the 2019 version of the gitlab repository for this course. Unless you noticed and corrected the error, you'll have to fork again.\n", + "\n", + "In addition, due to some problems with the setup in Google Colab, we will be submitting our solutions to your fork using the web interface. Instructions on how to use the command-line are in this notebook, but we suggest you do not follow them unless you are working in a jupyter notebook and not Google Colab." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "ISE8-HtQHF7A", + "colab_type": "code", + "outputId": "936be0dc-ce53-41b4-dd5b-0b981520f6c3", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 124 + } + }, + "source": [ + "from google.colab import drive\n", + "drive.mount('/content/drive')" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Go to this URL in a browser: https://accounts.google.com/o/oauth2/auth?client_id=947318989803-6bn6qk8qdgf4n4g3pfee6491hc0brc4i.apps.googleusercontent.com&redirect_uri=urn%3aietf%3awg%3aoauth%3a2.0%3aoob&response_type=code&scope=email%20https%3a%2f%2fwww.googleapis.com%2fauth%2fdocs.test%20https%3a%2f%2fwww.googleapis.com%2fauth%2fdrive%20https%3a%2f%2fwww.googleapis.com%2fauth%2fdrive.photos.readonly%20https%3a%2f%2fwww.googleapis.com%2fauth%2fpeopleapi.readonly\n", + "\n", + "Enter your authorization code:\n", + "··········\n", + "Mounted at /content/drive\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "OMNaOnRksNK3", + "colab_type": "text" + }, + "source": [ + "You may also choose to delete the fork from your GitHub account. " + ] + }, + { + "cell_type": "markdown", + "metadata": { + "colab_type": "text", + "id": "J_R64sQDqv0A" + }, + "source": [ + "## Repeating last steps of Lab 1\n", + "\n", + "### Create your own fork\n", + "We will create a new fork where you can keep track and submit your work, following [these instructions](https://help.github.com/articles/fork-a-repo/).\n", + "\n", + "Goto to github.com and log in.\n", + "\n", + "Next, create a fork of the [2020 class repository](https://github.com/afarbin/DATA1401-Spring-2020). Click the link and press the \"Fork\" button on the top right. Select your repository as where you want to place the fork.\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "colab_type": "text", + "id": "edTvE6rOqv0C" + }, + "source": [ + "### Make a local clone (Advanced)\n", + "\n", + "Before we get started, please mount your Google Drive using by clicking the file icon on the left, then clicking \"Mount Drive\", and following the instructions as you did in the previous lab.\n", + "\n", + "If you did complete Lab 1 and therefore created a 2019 fork and a local clone in you Google Drive, delete the local clone:\n", + "\n" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "2u6B-rfNr1wN", + "colab_type": "code", + "colab": {} + }, + "source": [ + "!rm -rf drive/My\\ Drive/Data-1401-Repo" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "BDVI5nu8-2RH", + "colab_type": "text" + }, + "source": [ + "Now we will check out your fork in your Google Drive / Colab. If you will be doing everything on your own computer instead of Google Colab/Drive, you are welcome to install Git on your computer and perform the following steps (appropriately modified) on your computer instead.\n", + "\n", + "Start by listing the contents of your current directory." + ] + }, + { + "cell_type": "code", + "metadata": { + "colab_type": "code", + "id": "e5tXg0f8qv0D", + "colab": {} + }, + "source": [ + "%cd /content/drive/My\\ Drive\n", + "!ls" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "colab_type": "text", + "id": "WYsyYcg1qv0J" + }, + "source": [ + "Make a new directory:" + ] + }, + { + "cell_type": "code", + "metadata": { + "colab_type": "code", + "id": "Z7noY1hMqv0L", + "colab": {} + }, + "source": [ + "!mkdir Data-1401-Repo\n", + "%cd Data-1401-Repo" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "colab_type": "text", + "id": "fwsBdTnYqv0Q" + }, + "source": [ + "From the github page for your fork, press the green \"Clone or download\" button and copy the URL.\n", + "\n", + "Goto to your notebook and use the following command to clone the repository, pasting the URL you just copied:\n" + ] + }, + { + "cell_type": "code", + "metadata": { + "colab_type": "code", + "id": "8w42MH6Jqv0S", + "colab": {} + }, + "source": [ + "# What you past here should look like:\n", + "#!git clone https://github.com/=0:\n", + " game()\n", + " break\n", + " elif p1 == 'rock':\n", + " if p2 == 'scissors':\n", + " print(\"1 wins!\")\n", + " else:\n", + " print(\"2 wins!\")\n", + " elif p1 == 'scissors':\n", + " if p2 == 'paper':\n", + " print(\"1 win!\")\n", + " else:\n", + " print(\"2 wins!\")\n", + " elif p1 == 'paper':\n", + " if p2 == 'rock':\n", + " print(\"1 wins!\")\n", + " else:\n", + " print(\"2 win!\")" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "ooR2ldZBdBHf", + "colab_type": "code", + "outputId": "0559fb10-fc6d-419f-9eb6-958cefa2b43f", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 170 + } + }, + "source": [ + "# Test your solution here\n", + "game()" + ], + "execution_count": 20, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Player 1 enter Rock, Paper or Scissors: rock\n", + "Player 1 enter Rock, Paper or Scissors: rock\n", + "It's a tie!\n", + "Player 1 enter Rock, Paper or Scissors: paper\n", + "Player 1 enter Rock, Paper or Scissors: paper\n", + "It's a tie!\n", + "Player 1 enter Rock, Paper or Scissors: rock\n", + "Player 1 enter Rock, Paper or Scissors: paper\n", + "2 wins!\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "dJQzXNKzdBHh", + "colab_type": "text" + }, + "source": [ + "*Exercise 8:* Write a function that takes a integer `n` as input and \n", + "outputs a list of the first `n` Fibonnaci numbers.\n", + "\n", + "The Fibonnaci seqence is a sequence of numbers where the next number in the sequence is the sum of the previous two numbers in the sequence. The sequence looks like this: 1, 1, 2, 3, 5, 8, 13, …)" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "G_4ooRXTdBHh", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Write you solution here\n", + "def fibo(n):\n", + " n1, n2 = 0, 1\n", + " count = 0\n", + " if n <= 0:\n", + " print(\"Please enter a positive integer\")\n", + " elif n == 1:\n", + " print(\"Fibonacci sequence upto\",n,\":\")\n", + " print(n1)\n", + " else:\n", + " print(\"Fibonacci sequence:\")\n", + " while count < n:\n", + " print(n1)\n", + " nth = n1 + n2\n", + " n1 = n2\n", + " n2 = nth\n", + " count += 1" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "rzK5FskJdBHj", + "colab_type": "code", + "outputId": "96f7abda-6953-4a2f-8094-2f8ea04779de", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 121 + } + }, + "source": [ + "# Test your solution here\n", + "fibo(5)" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Fibonacci sequence:\n", + "0\n", + "1\n", + "1\n", + "2\n", + "3\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "q6c_AskadBHl", + "colab_type": "text" + }, + "source": [ + "*Exercise 9:* Write a function that takes a string of consisting of several words and returns a string that reverses the order of the words.\n" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "aJdXX6FHdBHl", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Write you solution here\n", + "def stringReverse(str): \n", + " i = len(str)-1\n", + " start = end = i+1\n", + " result = '' \n", + " \n", + " while i>=0: \n", + " if str[i] == ' ': \n", + " start = i+1\n", + " while start!= end: \n", + " result += str[start] \n", + " start+=1\n", + " result+=' '\n", + " end = i \n", + " i-=1\n", + " start = 0\n", + " while start!=end: \n", + " result+=str[start] \n", + " start+=1\n", + " return result" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "nQyhnLZ_dBHn", + "colab_type": "code", + "outputId": "77defc54-f456-46a7-8d6f-8cfc1f2c5841", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 35 + } + }, + "source": [ + "# Test your solution here\n", + "str=\"DATA 1401: Intro to Scientific Computing\"\n", + "print(stringReverse(str))" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Computing Scientific to Intro 1401: DATA\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "NFSmRaSydBHq", + "colab_type": "text" + }, + "source": [ + "*Exercise 10:* Write a guessing game program that will repeatedly guess a number that the users picks, with the user indicating higher or lower, until it correctly guesses the number." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "vlB0rXKIUwb9", + "colab_type": "code", + "colab": {} + }, + "source": [ + "#Write your solution here\n", + "import random\n", + "def guess():\n", + " print(\"Pick a number between 1-10\")\n", + " num=random.randint(1,10)\n", + " mini=1\n", + " maxi=10\n", + " print(\"Is my guess high, low or exact-\",num)\n", + " answer=input()\n", + " i=0\n", + " while i>=0:\n", + " if answer==\"high\":\n", + " maxi=num-1\n", + " elif answer==\"low\":\n", + " mini=num+1\n", + " else:\n", + " print(\"I guessed your number\")\n", + " break\n", + " num=random.randint(mini,maxi)\n", + " print(\"Is my guess high, low or exact-\",num)\n", + " answer=input()" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "6T8YdWSMdBHs", + "colab_type": "code", + "outputId": "1b6acee0-4d88-4b53-e9ef-651fd26cee94", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 221 + } + }, + "source": [ + "# Test your solution here\n", + "guess()" + ], + "execution_count": 21, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Pick a number between 1-10\n", + "Is my guess high, low or exact- 2\n", + "low\n", + "Is my guess high, low or exact- 4\n", + "low\n", + "Is my guess high, low or exact- 7\n", + "high\n", + "Is my guess high, low or exact- 5\n", + "low\n", + "Is my guess high, low or exact- 6\n", + "exact\n", + "I guessed your number\n" + ], + "name": "stdout" + } + ] + } + ] +} \ No newline at end of file diff --git a/Labs/Lab-3/Lab3_Solutions.ipynb b/Labs/Lab-3/Lab3_Solutions.ipynb new file mode 100644 index 0000000..9e8c4f8 --- /dev/null +++ b/Labs/Lab-3/Lab3_Solutions.ipynb @@ -0,0 +1,692 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.10" + }, + "colab": { + "name": "Copy of Lab-3.ipynb", + "provenance": [], + "collapsed_sections": [] + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "cTu9VHYVwzsf", + "colab_type": "text" + }, + "source": [ + "# Lab 3- Tic Tac Toe\n", + "\n", + "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github//afarbin/DATA1401-Spring-2020/blob/master/Labs/Lab-3/Lab-3.ipynb)\n", + "\n", + "In this lab your will build a n x n Tic Tac Toe game. As you do the exercises, make sure your solutions work for any size Tic Tac Toe game. " + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "K-8BNO9Uwzsj", + "colab_type": "text" + }, + "source": [ + "*Exercise 1:* Write a function that creates an n by n matrix (of list of lists) which will represent the state of a Tie Tac Toe game. Let 0, 1, and 2 represent empty, \"X\", or \"O\".\n" + ] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "bedZQagAwzsl", + "colab_type": "code", + "outputId": "b63675be-4006-4001-8c56-e0d8175ef6b3", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 35 + } + }, + "source": [ + "# Write you solution here\n", + "n = input(\"Enter the dimension (nxn)\")\n", + "matrix= [0] * n\n", + "for i in range(n):\n", + " matrix[i] = [0] * n" + ], + "execution_count": 1, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Enter the dimension (nxn)5\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "awTJq-X4wzsq", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 104 + }, + "outputId": "a06a3b1e-da41-4c7c-a143-8f9f4ec2809c" + }, + "source": [ + "# Test your solution here\n", + "matrix" + ], + "execution_count": 2, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "[[0, 0, 0, 0, 0],\n", + " [0, 0, 0, 0, 0],\n", + " [0, 0, 0, 0, 0],\n", + " [0, 0, 0, 0, 0],\n", + " [0, 0, 0, 0, 0]]" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 2 + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "deletable": true, + "editable": true, + "id": "RznXxXuPwzst", + "colab_type": "text" + }, + "source": [ + "*Exercise 2:* Write a function that takes a `n` by `n` matrix representing a tic-tac-toe game, and returns -1, 0, 1, or 2 indicating the game is incomplete, the game is a draw, player 1 has won, or player 2 has one, respectively. Here are some example inputs you can use to test your code:" + ] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "8PkP7UyNwzsu", + "colab_type": "code", + "colab": {} + }, + "source": [ + "winner_is_2 = [[2, 2, 0],\n", + "\t[2, 1, 0],\n", + "\t[2, 1, 1]]\n", + "\n", + "winner_is_1 = [[1, 2, 0],\n", + "\t[2, 1, 0],\n", + "\t[2, 1, 1]]\n", + "\n", + "winner_is_also_1 = [[0, 1, 0],\n", + "\t[2, 1, 0],\n", + "\t[2, 1, 1]]\n", + "\n", + "no_winner = [[1, 2, 0],\n", + "\t[2, 1, 0],\n", + "\t[2, 1, 2]]\n", + "\n", + "also_no_winner = [[1, 2, 0],\n", + "\t[2, 1, 0],\n", + "\t[2, 1, 0]]" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "nJMWrWsTwzsz", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Write you solution here\n", + "def matrix(A):\n", + " \n", + " for each_list in A:\n", + " result = all(elem == each_list[0] for elem in each_list)\n", + " if result:\n", + " return int(each_list[0])\n", + " \n", + " for i in range(len(A)):\n", + "\n", + " result = all(elem == A[:i][0] for elem in A[:i])\n", + " if result:\n", + " return int(A[:i][0])\n", + " \n", + " list_diagonal_check_1 = []\n", + " list_diagonal_check_2 = []\n", + " for i in range(len(A)):\n", + " list_diagonal_check_1.append(A[i][i])\n", + "\n", + " for i in range(len(A)):\n", + " for j in range(len(A) - 1, -1,-1):\n", + " list_diagonal_check_2.append(A[j][i])\n", + " \n", + " result = all(elem == list_diagonal_check_1[0] for elem in list_diagonal_check_1)\n", + "\n", + " if result:\n", + " return list_diagonal_check_1[0]\n", + "\n", + " result = all(elem == list_diagonal_check_2[0] for elem in list_diagonal_check_2)\n", + "\n", + " if result:\n", + " return list_diagonal_check_2[0]\n", + "\n", + " else:\n", + " return 0" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "IDfMOr6Mwzs3", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 322 + }, + "outputId": "ad0ef35e-42b2-412d-e4e9-0cc737205194" + }, + "source": [ + "# Test your solution here\n", + "A=[[2, 2, 0],\n", + "\t[2, 1, 0],\n", + "\t[2, 1, 1]]\n", + "matrix(A)" + ], + "execution_count": 23, + "outputs": [ + { + "output_type": "error", + "ename": "IndexError", + "evalue": "ignored", + "traceback": [ + "\u001b[0;31m\u001b[0m", + "\u001b[0;31mIndexError\u001b[0mTraceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0;34m[\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \t[2, 1, 1]]\n\u001b[0;32m----> 4\u001b[0;31m \u001b[0mmatrix\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mA\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;32m\u001b[0m in \u001b[0;36mmatrix\u001b[0;34m(A)\u001b[0m\n\u001b[1;32m 18\u001b[0m \u001b[0mresult\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mall\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0melem\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mA\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0melem\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mA\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 19\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mresult\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 20\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mA\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 21\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 22\u001b[0m \u001b[0mlist_diagonal_check_1\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m[\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mIndexError\u001b[0m: list index out of range" + ] + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "deletable": true, + "editable": true, + "id": "fQUo_-Lywzs7", + "colab_type": "text" + }, + "source": [ + "*Exercise 3:* Write a function that takes 2 integers `n` and `m` as input and draws a `n` by `m` game board. For example the following is a 3x3 board:\n", + "```\n", + " --- --- --- \n", + " | | | | \n", + " --- --- --- \n", + " | | | | \n", + " --- --- --- \n", + " | | | | \n", + " --- --- --- \n", + " ```" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "FLHNeoDnkShy", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Write you solution here\n", + "def mat(n,m):\n", + " matrix= [' '] * n\n", + " for i in range(n):\n", + " matrix[i] = [' '] * m\n", + " print matrix" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "0xHUFg7i2eJH", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 35 + }, + "outputId": "f67b9394-9254-485d-9691-6ac23fd8e56c" + }, + "source": [ + "# Test you solution here\n", + "mat(3,3)" + ], + "execution_count": 51, + "outputs": [ + { + "output_type": "stream", + "text": [ + "[[' ', ' ', ' '], [' ', ' ', ' '], [' ', ' ', ' ']]\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "deletable": true, + "editable": true, + "id": "7-RHpsddwztF", + "colab_type": "text" + }, + "source": [ + "*Exercise 4:* Modify exercise 3, so that it takes a matrix of the form from exercise 2 and draws a tic-tac-tie board with \"X\"s and \"O\"s. " + ] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "wGZJfG_9wztG", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Write you solution here\n", + "def mat(n,m):\n", + " matrix= ['X'] * m\n", + " for i in range(n):\n", + " if (i%2==0):\n", + " matrix[i] = ['O'] * n\n", + " else:\n", + " matrix[i] = ['X'] * n\n", + " print matrix" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "V59JwAxHwztK", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 35 + }, + "outputId": "0c6047e8-4e3c-4712-b6fa-c83c901b945f" + }, + "source": [ + "# Test your solution here\n", + "mat(5,5)" + ], + "execution_count": 65, + "outputs": [ + { + "output_type": "stream", + "text": [ + "[['O', 'O', 'O', 'O', 'O'], ['X', 'X', 'X', 'X', 'X'], ['O', 'O', 'O', 'O', 'O'], ['X', 'X', 'X', 'X', 'X'], ['O', 'O', 'O', 'O', 'O']]\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "deletable": true, + "editable": true, + "id": "O5qm8KuRwztN", + "colab_type": "text" + }, + "source": [ + "*Exercise 5:* Write a function that takes a game board, player number, and `(x,y)` coordinates and places \"X\" or \"O\" in the correct location of the game board. Make sure that you only allow filling previously empty locations. Return `True` or `False` to indicate successful placement of \"X\" or \"O\"." + ] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "kG5sbUMUwztO", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Write you solution here\n", + "def game():\n", + "\n", + " player_1 = 'X'\n", + " player_2 = 'O'\n", + " \n", + " for i in range(10):\n", + " printBoard(matrix)\n", + " print(\"It's your turn,\" + player_1 + \".Move to which place?\")\n", + "\n", + " move = input() \n", + "\n", + " if matrix[move] == ' ':\n", + " matrix[move] = turn\n", + " else:\n", + " print(\"That place is already filled.\\nMove to which place?\")\n", + " continue" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "ItZjpiFEwztQ", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 311 + }, + "outputId": "02136bb0-eead-4826-bfd4-fb15f837fa21" + }, + "source": [ + "# Test your solution here\n", + "game()" + ], + "execution_count": 67, + "outputs": [ + { + "output_type": "error", + "ename": "TypeError", + "evalue": "ignored", + "traceback": [ + "\u001b[0;31m\u001b[0m", + "\u001b[0;31mTypeError\u001b[0mTraceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mgame\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;32m\u001b[0m in \u001b[0;36mgame\u001b[0;34m()\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 6\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mrange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m10\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 7\u001b[0;31m \u001b[0mprintBoard\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmatrix\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 8\u001b[0m \u001b[0;32mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"It's your turn,\"\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0mplayer_1\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;34m\".Move to which place?\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36mprintBoard\u001b[0;34m(board)\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mprintBoard\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mboard\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 6\u001b[0;31m \u001b[0;32mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mboard\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'7'\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;34m'|'\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0mboard\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'8'\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;34m'|'\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0mboard\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'9'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 7\u001b[0m \u001b[0;32mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'-+-+-'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0;32mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mboard\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'4'\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;34m'|'\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0mboard\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'5'\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0;34m'|'\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0mboard\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'6'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mTypeError\u001b[0m: 'function' object has no attribute '__getitem__'" + ] + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "deletable": true, + "editable": true, + "id": "RheyjVbTwztU", + "colab_type": "text" + }, + "source": [ + "*Exercise 6:* Modify Exercise 4 to show column and row labels so that players can specify location using \"A2\" or \"C1\"." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "zYpahL-IwztV", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Write you solution here" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "Z3iFrWBOwztY", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Test your solution here" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "deletable": true, + "editable": true, + "id": "1Tr1CqT3wzta", + "colab_type": "text" + }, + "source": [ + "*Exercise 7:* Write a function that takes a board, player number, and location specified as in exercise 6 and then calls exercise 5 to correctly modify the board. " + ] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "9B6BWa8Qwztc", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Write you solution here" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "fbd_afBNwztf", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Test your solution here" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "deletable": true, + "editable": true, + "id": "cN3HpCxGwzth", + "colab_type": "text" + }, + "source": [ + "*Exercise 8:* Write a function is called with a board and player number, takes input from the player using python's `input`, and modifies the board using your function from exercise 7. Note that you should keep asking for input until you have gotten a valid input that results in a valid move." + ] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "VOmeBwIcwzti", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Write you solution here" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "bG6zeXcDwzto", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Test your solution here" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "deletable": true, + "editable": true, + "id": "SFIsRFOkwzts", + "colab_type": "text" + }, + "source": [ + "*Exercise 9:* Use all of the previous exercises to implement a full tic-tac-toe game, where an appropriate board is drawn, 2 players are repeatedly asked for a location coordinates of where they wish to place a mark, and the game status is checked until a player wins or a draw occurs." + ] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "MrfLE37Kwztt", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Write you solution here" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "ST0bmfonwztw", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Test your solution here" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "deletable": true, + "editable": true, + "id": "WovpkNNAwzty", + "colab_type": "text" + }, + "source": [ + "*Exercise 10:* Test that your game works for 5x5 Tic Tac Toe. " + ] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "RoWzsDE9wztz", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Test your solution here" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "deletable": true, + "editable": true, + "id": "oTUr3ZQPwzt3", + "colab_type": "text" + }, + "source": [ + "*Exercise 11: (Extra Credit)* Develop a version of the game where one player is the computer. Note that you don't need to do an extensive seach for the best move. You can have the computer simply protect against loosing and otherwise try to win with straight or diagonal patterns." + ] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "vVagDNnlwzt4", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Write you solution here" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "deletable": true, + "editable": true, + "id": "6J7DDmsDwzt7", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Test your solution here" + ], + "execution_count": 0, + "outputs": [] + } + ] +} \ No newline at end of file diff --git a/Labs/Lab-4/Copy_of_Lab_4.ipynb b/Labs/Lab-4/Copy_of_Lab_4.ipynb new file mode 100644 index 0000000..edd4ae0 --- /dev/null +++ b/Labs/Lab-4/Copy_of_Lab_4.ipynb @@ -0,0 +1,1228 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.0" + }, + "colab": { + "name": "Copy of Lab-4.ipynb", + "provenance": [], + "machine_shape": "hm" + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "NRp9_yqqrAbJ", + "colab_type": "text" + }, + "source": [ + "## Lab 4\n", + "\n", + "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github//afarbin/DATA1401-Spring-2020/blob/master/Labs/Lab-4/Lab-4.ipynb)\n", + "\n", + "In this lab we will become familiar with distributions, histograms, and functional programming. \n", + "\n", + "\n", + "### Uniform Distribution\n", + "Lets start with generating some fake random data. You can get a random number between 0 and 1 using the python random module as follow:" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "6_I6IDUGrAbM", + "colab_type": "code", + "outputId": "2208455f-4ec4-4571-e5cd-78a9590b6e75", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "import random\n", + "x=random.random()\n", + "print(\"The Value of x is\", x)" + ], + "execution_count": 3, + "outputs": [ + { + "output_type": "stream", + "text": [ + "The Value of x is 0.11216294497338641\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "qod3nmiwrAbT", + "colab_type": "text" + }, + "source": [ + "Everytime you call random, you will get a new number.\n", + "\n", + "*Exercise 1:* Using random, write a function `generate_uniform(N, mymin, mymax)`, that returns a python list containing N random numbers between specified minimum and maximum value. Note that you may want to quickly work out on paper how to turn numbers between 0 and 1 to between other values. " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "H3BQWqJsrAbU", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Skeleton\n", + "def generate_uniform(N,x_min,x_max):\n", + " out = []\n", + " ### BEGIN SOLUTION\n", + "\n", + " # Fill in your solution here \n", + " for i in range(N):\n", + " out.append(x_min+(x_max-x_min)*random.random())\n", + " ### END SOLUTION\n", + " return out" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "EXSgMnszrAbX", + "colab_type": "code", + "outputId": "2bbbba01-7595-4afe-c5b0-b61e1aeb8502", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 101 + } + }, + "source": [ + "# Test your solution here\n", + "data=generate_uniform(1000,-10,10)\n", + "print (\"Data Type:\", type(data))\n", + "print (\"Data Length:\", len(data))\n", + "if len(data)>0: \n", + " print (\"Type of Data Contents:\", type(data[0]))\n", + " print (\"Data Minimum:\", min(data))\n", + " print (\"Data Maximum:\", max(data))" + ], + "execution_count": 5, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Data Type: \n", + "Data Length: 1000\n", + "Type of Data Contents: \n", + "Data Minimum: -9.996239947115985\n", + "Data Maximum: 9.953934501339386\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "BvnbLZJRrAbb", + "colab_type": "text" + }, + "source": [ + "*Exercise 2a:* \n", + "Write a function that computes the mean of values in a list." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "zMr6HuAnrAbc", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Skeleton\n", + "def mean(Data):\n", + " m=0.\n", + " \n", + " ### BEGIN SOLUTION\n", + "\n", + " # Fill in your solution here \n", + " m=sum(Data)/len(Data)\n", + " ### END SOLUTION\n", + " \n", + " return m" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "6_KBumNyrAbf", + "colab_type": "code", + "outputId": "03a50291-ab72-4c90-8c83-502537191372", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "# Test your solution here\n", + "print (\"Mean of Data:\", mean(data))" + ], + "execution_count": 7, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Mean of Data: -0.17088827715215185\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "IVwtA9wIrAbj", + "colab_type": "text" + }, + "source": [ + "*Exercise 2b:* \n", + "Write a function that computes the variance of values in a list." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "vfT7wKjCrAbl", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Skeleton\n", + "def variance(Data):\n", + " m=0\n", + " \n", + " ### BEGIN SOLUTION\n", + "\n", + " # Fill in your solution here \n", + " var=0 \n", + " for i in range(len(Data)):\n", + " var+= (mean(data)-Data[i])**2\n", + " m=var/(len(Data)-1)\n", + " ### END SOLUTION\n", + " \n", + " return m" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "Rp_-3rWTrAbp", + "colab_type": "code", + "outputId": "a383fe59-bccf-4dd7-fe9b-a0db1b67cbef", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "# Test your solution here\n", + "print (\"Variance of Data:\", variance(data))" + ], + "execution_count": 9, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Variance of Data: 33.48842533253748\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "WF3jqM6MrAbr", + "colab_type": "text" + }, + "source": [ + "## Histogramming" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "iNk2AwvMrAbs", + "colab_type": "text" + }, + "source": [ + "*Exercise 3:* Write a function that bins the data so that you can create a histogram. An example of how to implement histogramming is the following logic:\n", + "\n", + "* User inputs a list of values `x` and optionally `n_bins` which defaults to 10.\n", + "* If not supplied, find the minimum and maximum (`x_min`,`x_max`) of the values in x.\n", + "* Determine the bin size (`bin_size`) by dividing the range of the function by the number of bins.\n", + "* Create an empty list of zeros of size `n_bins`, call it `hist`.\n", + "* Loop over the values in `x`\n", + " * Loop over the values in `hist` with index `i`:\n", + " * If x is between `x_min+i*bin_size` and `x_min+(i+1)*bin_size`, increment `hist[i].` \n", + " * For efficiency, try to use continue to goto the next bin and data point.\n", + "* Return `hist` and the list corresponding of the bin edges (i.e. of `x_min+i*bin_size`). " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "z4RwK-BRrAbs", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Solution\n", + "def histogram(x,n_bins=10,x_min=None,x_max=None):\n", + " ### BEGIN SOLUTION\n", + " #x = [1,1,1,5,5,5,9,9,9,9] \n", + " #n = int(input(\"Enter number of elements : \")) \n", + " #for i in range(0, n): \n", + " #xi = int(input())\n", + " #x.append(xi)\n", + " x_max=x[0]\n", + " x_min=x[0]\n", + " for i in x:\n", + " if x_maxi: \n", + " x_min=i\n", + " #x_max=xmax\n", + " #x_min=xmin\n", + " bin_size=(x_max-x_min)/n_bins\n", + " hist=[0]*n_bins\n", + " bin_edge=[]\n", + " for i in range(len(hist)):\n", + " bin_edge.append(x_min+(i*bin_size))\n", + " for j in x:\n", + " for i in range(len(hist)):\n", + " if (j>=(x_min+i*bin_size)) and (j<=(x_min+(i+1)*bin_size)):\n", + " hist[i]+=1\n", + " bin_edge.append(x_max)\n", + " ### END SOLUTION\n", + " return hist,bin_edge" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "6-ZuoIJGrAbw", + "colab_type": "code", + "outputId": "07802c39-a4a0-458b-dd85-80832435f686", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "# Test your solution here\n", + "h,b=histogram(data,5)\n", + "print(h,b)" + ], + "execution_count": 65, + "outputs": [ + { + "output_type": "stream", + "text": [ + "[199, 222, 190, 198, 217] [-9.996239947115985, -6.006205057424911, -2.0161701677338364, 1.9738647219572378, 5.963899611648312, 9.953934501339386]\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "TNYjhQY4rAb1", + "colab_type": "text" + }, + "source": [ + "*Exercise 4:* Write a function that uses the histogram function in the previous exercise to create a text-based \"graph\". For example the output could look like the following:\n", + "```\n", + "[ 0, 1] : ######\n", + "[ 1, 2] : #####\n", + "[ 2, 3] : ######\n", + "[ 3, 4] : ####\n", + "[ 4, 5] : ####\n", + "[ 5, 6] : ######\n", + "[ 6, 7] : #####\n", + "[ 7, 8] : ######\n", + "[ 8, 9] : ####\n", + "[ 9, 10] : #####\n", + "```\n", + "\n", + "Where each line corresponds to a bin and the number of `#`'s are proportional to the value of the data in the bin. " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "JDMu_IZ4rAb4", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Solution\n", + "def draw_histogram(x,n_bins,x_min=None,x_max=None,character=\"#\",max_character_per_line=20):\n", + " ### BEGIN SOLUTION\n", + "\n", + " # Fill in your solution here \n", + " h,b=histogram(data,n_bins)\n", + " for i in range(len(h)):\n", + " print(\"[\",b[i],\",\",b[i+1],\"]:\",character*h[i])\n", + " ### END SOLUTION\n", + "\n", + " #return hist,bin_edges" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "gG1tOSx7rAb7", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 353 + }, + "outputId": "5985aecd-1a84-4005-9571-c4c7cd67d2aa" + }, + "source": [ + "# Test your solution here\n", + "draw_histogram(data,20)" + ], + "execution_count": 103, + "outputs": [ + { + "output_type": "stream", + "text": [ + "[ -9.996239947115985 , -8.998731224693216 ]: ############################################################\n", + "[ -8.998731224693216 , -8.001222502270448 ]: #############################################\n", + "[ -8.001222502270448 , -7.003713779847679 ]: ################################################\n", + "[ -7.003713779847679 , -6.006205057424911 ]: ##############################################\n", + "[ -6.006205057424911 , -5.008696335002142 ]: ###############################################\n", + "[ -5.008696335002142 , -4.0111876125793735 ]: ###################################################################\n", + "[ -4.0111876125793735 , -3.013678890156605 ]: ######################################################\n", + "[ -3.013678890156605 , -2.0161701677338364 ]: ######################################################\n", + "[ -2.0161701677338364 , -1.0186614453110678 ]: #######################################################\n", + "[ -1.0186614453110678 , -0.02115272288829928 ]: #####################################################\n", + "[ -0.02115272288829928 , 0.9763559995344693 ]: ######################################\n", + "[ 0.9763559995344693 , 1.9738647219572378 ]: ############################################\n", + "[ 1.9738647219572378 , 2.9713734443800064 ]: ###########################################\n", + "[ 2.9713734443800064 , 3.968882166802775 ]: #######################################################\n", + "[ 3.968882166802775 , 4.9663908892255435 ]: ######################################################\n", + "[ 4.9663908892255435 , 5.963899611648312 ]: ##############################################\n", + "[ 5.963899611648312 , 6.961408334071081 ]: ##########################################################\n", + "[ 6.961408334071081 , 7.958917056493849 ]: ################################################################\n", + "[ 7.958917056493849 , 8.956425778916618 ]: ###################################################\n", + "[ 8.956425778916618 , 9.953934501339386 ]: ############################################\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "kVchoCfErAb9", + "colab_type": "text" + }, + "source": [ + "## Functional Programming\n", + "\n", + "*Exercise 5:* Write a function the applies a booling function (that returns true/false) to every element in data, and return a list of indices of elements where the result was true. Use this function to find the indices of entries greater than 0.5. " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "iNyhcNTGrAb-", + "colab_type": "code", + "colab": {} + }, + "source": [ + "def where(mylist):\n", + " out= []\n", + " \n", + " ### BEGIN SOLUTION\n", + " def myfunc(x):\n", + " if (x>0.5):\n", + " return 'true'\n", + " else:\n", + " return 'false'\n", + " for i in range(len(mylist)):\n", + " result=myfunc(mylist[i])\n", + " if result=='true':\n", + " out.append(i)\n", + " # Fill in your solution here \n", + " \n", + " ### END SOLUTION\n", + " \n", + " return out" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "xqOBrDc7rAcB", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 1000 + }, + "outputId": "a2b61c58-2d5a-458a-e5cf-2ebf313047a9" + }, + "source": [ + "# Test your solution here\n", + "where(data)" + ], + "execution_count": 111, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "[1,\n", + " 3,\n", + " 5,\n", + " 7,\n", + " 9,\n", + " 16,\n", + " 18,\n", + " 20,\n", + " 26,\n", + " 27,\n", + " 28,\n", + " 29,\n", + " 31,\n", + " 34,\n", + " 35,\n", + " 37,\n", + " 39,\n", + " 41,\n", + " 42,\n", + " 43,\n", + " 44,\n", + " 49,\n", + " 50,\n", + " 52,\n", + " 53,\n", + " 55,\n", + " 56,\n", + " 59,\n", + " 60,\n", + " 62,\n", + " 64,\n", + " 65,\n", + " 66,\n", + " 67,\n", + " 68,\n", + " 69,\n", + " 74,\n", + " 75,\n", + " 79,\n", + " 81,\n", + " 86,\n", + " 88,\n", + " 91,\n", + " 92,\n", + " 93,\n", + " 95,\n", + " 98,\n", + " 99,\n", + " 100,\n", + " 103,\n", + " 106,\n", + " 107,\n", + " 109,\n", + " 114,\n", + " 120,\n", + " 122,\n", + " 123,\n", + " 125,\n", + " 126,\n", + " 127,\n", + " 130,\n", + " 133,\n", + " 134,\n", + " 138,\n", + " 141,\n", + " 142,\n", + " 146,\n", + " 147,\n", + " 148,\n", + " 150,\n", + " 152,\n", + " 156,\n", + " 157,\n", + " 160,\n", + " 162,\n", + " 165,\n", + " 168,\n", + " 170,\n", + " 172,\n", + " 173,\n", + " 174,\n", + " 177,\n", + " 178,\n", + " 179,\n", + " 180,\n", + " 181,\n", + " 182,\n", + " 186,\n", + " 187,\n", + " 191,\n", + " 193,\n", + " 198,\n", + " 202,\n", + " 206,\n", + " 207,\n", + " 209,\n", + " 211,\n", + " 213,\n", + " 217,\n", + " 218,\n", + " 220,\n", + " 222,\n", + " 224,\n", + " 225,\n", + " 227,\n", + " 228,\n", + " 229,\n", + " 232,\n", + " 233,\n", + " 234,\n", + " 238,\n", + " 240,\n", + " 241,\n", + " 242,\n", + " 244,\n", + " 245,\n", + " 246,\n", + " 248,\n", + " 249,\n", + " 251,\n", + " 252,\n", + " 256,\n", + " 258,\n", + " 259,\n", + " 263,\n", + " 267,\n", + " 269,\n", + " 270,\n", + " 272,\n", + " 273,\n", + " 277,\n", + " 278,\n", + " 279,\n", + " 282,\n", + " 284,\n", + " 286,\n", + " 289,\n", + " 290,\n", + " 291,\n", + " 297,\n", + " 299,\n", + " 302,\n", + " 307,\n", + " 311,\n", + " 312,\n", + " 314,\n", + " 315,\n", + " 319,\n", + " 321,\n", + " 326,\n", + " 327,\n", + " 328,\n", + " 331,\n", + " 332,\n", + " 334,\n", + " 335,\n", + " 336,\n", + " 339,\n", + " 340,\n", + " 341,\n", + " 342,\n", + " 344,\n", + " 345,\n", + " 348,\n", + " 349,\n", + " 353,\n", + " 355,\n", + " 356,\n", + " 357,\n", + " 362,\n", + " 365,\n", + " 366,\n", + " 367,\n", + " 369,\n", + " 370,\n", + " 371,\n", + " 372,\n", + " 377,\n", + " 380,\n", + " 382,\n", + " 386,\n", + " 387,\n", + " 390,\n", + " 391,\n", + " 392,\n", + " 394,\n", + " 397,\n", + " 401,\n", + " 403,\n", + " 406,\n", + " 407,\n", + " 408,\n", + " 409,\n", + " 417,\n", + " 418,\n", + " 419,\n", + " 421,\n", + " 422,\n", + " 423,\n", + " 426,\n", + " 427,\n", + " 430,\n", + " 433,\n", + " 434,\n", + " 435,\n", + " 437,\n", + " 438,\n", + " 440,\n", + " 445,\n", + " 448,\n", + " 452,\n", + " 455,\n", + " 456,\n", + " 462,\n", + " 463,\n", + " 466,\n", + " 468,\n", + " 470,\n", + " 472,\n", + " 474,\n", + " 475,\n", + " 476,\n", + " 477,\n", + " 481,\n", + " 483,\n", + " 485,\n", + " 486,\n", + " 487,\n", + " 488,\n", + " 490,\n", + " 491,\n", + " 492,\n", + " 495,\n", + " 496,\n", + " 497,\n", + " 501,\n", + " 504,\n", + " 507,\n", + " 508,\n", + " 509,\n", + " 512,\n", + " 514,\n", + " 517,\n", + " 518,\n", + " 520,\n", + " 521,\n", + " 526,\n", + " 530,\n", + " 531,\n", + " 534,\n", + " 538,\n", + " 540,\n", + " 543,\n", + " 546,\n", + " 549,\n", + " 551,\n", + " 553,\n", + " 556,\n", + " 557,\n", + " 559,\n", + " 561,\n", + " 563,\n", + " 564,\n", + " 566,\n", + " 567,\n", + " 573,\n", + " 578,\n", + " 579,\n", + " 580,\n", + " 581,\n", + " 582,\n", + " 584,\n", + " 585,\n", + " 586,\n", + " 587,\n", + " 591,\n", + " 592,\n", + " 595,\n", + " 596,\n", + " 597,\n", + " 599,\n", + " 600,\n", + " 602,\n", + " 603,\n", + " 606,\n", + " 607,\n", + " 611,\n", + " 613,\n", + " 614,\n", + " 616,\n", + " 617,\n", + " 619,\n", + " 620,\n", + " 622,\n", + " 624,\n", + " 625,\n", + " 626,\n", + " 629,\n", + " 631,\n", + " 632,\n", + " 634,\n", + " 637,\n", + " 639,\n", + " 640,\n", + " 642,\n", + " 644,\n", + " 646,\n", + " 649,\n", + " 650,\n", + " 651,\n", + " 652,\n", + " 654,\n", + " 655,\n", + " 656,\n", + " 657,\n", + " 659,\n", + " 660,\n", + " 662,\n", + " 664,\n", + " 667,\n", + " 669,\n", + " 675,\n", + " 686,\n", + " 688,\n", + " 691,\n", + " 692,\n", + " 696,\n", + " 699,\n", + " 702,\n", + " 711,\n", + " 712,\n", + " 714,\n", + " 715,\n", + " 717,\n", + " 718,\n", + " 722,\n", + " 723,\n", + " 724,\n", + " 727,\n", + " 729,\n", + " 732,\n", + " 736,\n", + " 739,\n", + " 747,\n", + " 751,\n", + " 756,\n", + " 761,\n", + " 762,\n", + " 768,\n", + " 769,\n", + " 770,\n", + " 771,\n", + " 772,\n", + " 778,\n", + " 782,\n", + " 786,\n", + " 787,\n", + " 790,\n", + " 792,\n", + " 796,\n", + " 799,\n", + " 801,\n", + " 804,\n", + " 806,\n", + " 808,\n", + " 811,\n", + " 813,\n", + " 814,\n", + " 818,\n", + " 819,\n", + " 821,\n", + " 825,\n", + " 826,\n", + " 832,\n", + " 833,\n", + " 835,\n", + " 836,\n", + " 837,\n", + " 838,\n", + " 840,\n", + " 844,\n", + " 845,\n", + " 847,\n", + " 848,\n", + " 852,\n", + " 853,\n", + " 855,\n", + " 857,\n", + " 858,\n", + " 861,\n", + " 865,\n", + " 866,\n", + " 869,\n", + " 871,\n", + " 873,\n", + " 877,\n", + " 879,\n", + " 882,\n", + " 884,\n", + " 886,\n", + " 889,\n", + " 890,\n", + " 891,\n", + " 897,\n", + " 898,\n", + " 903,\n", + " 905,\n", + " 908,\n", + " 912,\n", + " 913,\n", + " 914,\n", + " 915,\n", + " 916,\n", + " 918,\n", + " 920,\n", + " 922,\n", + " 924,\n", + " 931,\n", + " 933,\n", + " 938,\n", + " 939,\n", + " 940,\n", + " 941,\n", + " 943,\n", + " 944,\n", + " 951,\n", + " 953,\n", + " 955,\n", + " 956,\n", + " 957,\n", + " 958,\n", + " 959,\n", + " 962,\n", + " 963,\n", + " 966,\n", + " 968,\n", + " 969,\n", + " 970,\n", + " 971,\n", + " 973,\n", + " 974,\n", + " 984,\n", + " 987,\n", + " 988,\n", + " 990,\n", + " 992,\n", + " 993,\n", + " 994,\n", + " 995,\n", + " 996,\n", + " 1000,\n", + " 1001,\n", + " 1002,\n", + " 1003,\n", + " 1004,\n", + " 1005,\n", + " 1006,\n", + " 1007,\n", + " 1008,\n", + " 1009,\n", + " 1010,\n", + " 1011,\n", + " 1012,\n", + " 1013,\n", + " 1014,\n", + " 1015,\n", + " 1016,\n", + " 1017,\n", + " 1018,\n", + " 1019,\n", + " 1020,\n", + " 1021,\n", + " 1022,\n", + " 1023,\n", + " 1024,\n", + " 1025]" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 111 + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "95fjDN_XrAcF", + "colab_type": "text" + }, + "source": [ + "*Exercise 6:* The inrange(mymin,mymax) function below returns a function that tests if it's input is between the specified values. Write corresponding functions that test:\n", + "* Even\n", + "* Odd\n", + "* Greater than\n", + "* Less than\n", + "* Equal\n", + "* Divisible by" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "qK4IB3WSrAcG", + "colab_type": "code", + "colab": {} + }, + "source": [ + "def in_range(mymin,mymax):\n", + " def testrange(x):\n", + " return x=mymin\n", + " return testrange\n", + "\n", + "# Examples:\n", + "F1=inrange(0,10)\n", + "F2=inrange(10,20)\n", + "\n", + "# Test of in_range\n", + "print (F1(0), F1(1), F1(10), F1(15), F1(20))\n", + "print (F2(0), F2(1), F2(10), F2(15), F2(20))\n", + "\n", + "print (\"Number of Entries passing F1:\", len(where(data,F1)))\n", + "print (\"Number of Entries passing F2:\", len(where(data,F2)))" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "QK4TJskSrAcJ", + "colab_type": "code", + "colab": {} + }, + "source": [ + "### BEGIN SOLUTION\n", + "\n", + " # Fill in your solution here \n", + " \n", + "### END SOLUTION" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "geL0bgDYrAcL", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Test your solution" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "YaI-KVKfrAcN", + "colab_type": "text" + }, + "source": [ + "*Exercise 7:* Repeat the previous exercise using `lambda` and the built-in python functions sum and map instead of your solution above. " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "9_InCpGzrAcN", + "colab_type": "code", + "colab": {} + }, + "source": [ + "### BEGIN SOLUTION\n", + "\n", + " # Fill in your solution here \n", + " \n", + "### END SOLUTION" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "IulmepeKrAcQ", + "colab_type": "text" + }, + "source": [ + "## Monte Carlo\n", + "\n", + "*Exercise 7:* Write a \"generator\" function called `generate_function(func,x_min,x_max,N)`, that instead of generating a flat distribution, generates a distribution with functional form coded in `func`. Note that `func` will always be > 0. \n", + "\n", + "Use the test function below and your histogramming functions above to demonstrate that your generator is working properly.\n", + "\n", + "Hint: A simple, but slow, solution is to a draw random number test_x within the specified range and another number p between the min and max of the function (which you will have to determine). If p<=function(test_x), then place test_x on the output. If not, repeat the process, drawing two new numbers. Repeat until you have the specified number of generated numbers, N. For this problem, it's OK to determine the min and max by numerically sampling the function. " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "M2OvPsA4rAcR", + "colab_type": "code", + "colab": {} + }, + "source": [ + "def generate_function(func,x_min,x_max,N=1000):\n", + " out = list()\n", + " ### BEGIN SOLUTION\n", + "\n", + " # Fill in your solution here \n", + " \n", + " ### END SOLUTION\n", + " \n", + " return out" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "b-KrDl4PrAcT", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# A test function\n", + "def test_func(x,a=1,b=1):\n", + " return abs(a*x+b)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "YQU9A8uGrAcW", + "colab_type": "text" + }, + "source": [ + "*Exercise 8:* Use your function to generate 1000 numbers that are normal distributed, using the `gaussian` function below. Confirm the mean and variance of the data is close to the mean and variance you specify when building the Gaussian. Histogram the data. " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "Vj_ibEanrAcX", + "colab_type": "code", + "colab": {} + }, + "source": [ + "import math\n", + "\n", + "def gaussian(mean, sigma):\n", + " def f(x):\n", + " return math.exp(-((x-mean)**2)/(2*sigma**2))/math.sqrt(math.pi*sigma)\n", + " return f\n", + "\n", + "# Example Instantiation\n", + "g1=gaussian(0,1)\n", + "g2=gaussian(10,3)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "b6i0YgmurAca", + "colab_type": "text" + }, + "source": [ + "*Exercise 9:* Combine your `generate_function`, `where`, and `in_range` functions above to create an integrate function. Use your integrate function to show that approximately 68% of Normal distribution is within one variance." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "635HB8rKrAcb", + "colab_type": "code", + "colab": {} + }, + "source": [ + "def integrate(func, x_min, x_max, n_points=1000):\n", + " \n", + " return integral" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "5aUMIj4arAcd", + "colab_type": "code", + "colab": {} + }, + "source": [ + "" + ], + "execution_count": 0, + "outputs": [] + } + ] +} \ No newline at end of file diff --git a/Labs/Lab-5/Copy_of_Lab_5.ipynb b/Labs/Lab-5/Copy_of_Lab_5.ipynb new file mode 100644 index 0000000..9a8fe34 --- /dev/null +++ b/Labs/Lab-5/Copy_of_Lab_5.ipynb @@ -0,0 +1,1263 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.1" + }, + "colab": { + "name": "Copy of Lab-5.ipynb", + "provenance": [] + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "qzAF95NXM9TH", + "colab_type": "text" + }, + "source": [ + "# Lab 5- Object Oriented Programming\n", + "\n", + "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github//afarbin/DATA1401-Spring-2020/blob/master/Labs/Lab-5/Lab-5.ipynb)\n", + "\n", + "For all of the exercises below, make sure you provide tests of your solutions.\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "6HO1hrBGM9TJ", + "colab_type": "text" + }, + "source": [ + "1. Write a \"counter\" class that can be incremented up to a specified maximum value, will print an error if an attempt is made to increment beyond that value, and allows reseting the counter. " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "oxnnKcdkM9TL", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class counter:\n", + " def __init__(self,max_val):\n", + " self.max_val=max_val\n", + " self.cur_val=1\n", + " \n", + " def increment(self):\n", + " if self.cur_val>self.max_val:\n", + " print(\"Max value reached.\")\n", + " else:\n", + " self.cur_val+=1\n", + " \n", + " def reset(self):\n", + " self.cur_val=1\n", + " " + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "B-1BJOhkM9TS", + "colab_type": "code", + "colab": {} + }, + "source": [ + "my_counter=counter(3)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "_sW8rZ-JM9TY", + "colab_type": "code", + "outputId": "42971be1-4d99-4b10-f558-3911816cf748", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 51 + } + }, + "source": [ + "my_counter.increment()\n", + "my_counter.increment()\n", + "my_counter.increment()\n", + "my_counter.increment()\n", + "my_counter.increment()" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Max value reached.\n", + "Max value reached.\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "6kLcl7e5M9Tn", + "colab_type": "text" + }, + "source": [ + "2. Copy and paste your solution to question 1 and modify it so that all the data held by the counter is private. Implement functions to check the value of the counter, check the maximum value, and check if the counter is at the maximum." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "dgfSpEQgM9Tn", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class counter:\n", + " def __init__(self,max_val):\n", + " self.__max_val=max_val\n", + " self.__cur_val=1\n", + " \n", + " def increment(self):\n", + " if self.__cur_val>self.__max_val:\n", + " print(\"Max value reached.\")\n", + " else:\n", + " self.__cur_val+=1\n", + " \n", + " def reset(self):\n", + " self.__cur_val=1\n", + " \n", + " def cur_val(self):\n", + " return self.__cur_val\n", + "\n", + " def max_val(self):\n", + " return self.__max_val\n", + "\n" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "OQKK53j7M9Ts", + "colab_type": "code", + "colab": {} + }, + "source": [ + "my_counter=counter(3)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "RhiWqjmTM9Ty", + "colab_type": "code", + "outputId": "f8eb98d3-6e28-4e6d-9b61-17cd749ec66b", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "my_counter.cur_val()" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "1" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 12 + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "HQNUyHNJ4srn", + "colab_type": "text" + }, + "source": [ + "" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "sjsNeXcAM9T7", + "colab_type": "text" + }, + "source": [ + "3. Implement a class to represent a rectangle, holding the length, width, and $x$ and $y$ coordinates of a corner of the object. Implement functions that compute the area and parameter of the rectangle. Make all data members private and privide accessors to retrieve values of data members. " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "RZtVfDt8M9T7", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class rectangle:\n", + " def __init__(self,width,length,x,y):\n", + " self.__width=width\n", + " self.__length=length\n", + " self.__x=x\n", + " self.__y=y\n", + " \n", + " def area(self):\n", + " return self.__width*self.__length\n", + " \n", + " def perimeter(self):\n", + " return 2*(self.__width+self.__length)\n", + " \n", + " def x(self):\n", + " return self.__x\n", + " \n", + " def y(self):\n", + " return self.__y" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "IdrmrbiX41J6", + "colab_type": "code", + "outputId": "b911e06e-4e61-423e-c222-cf19c8cc3815", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "rect=rectangle(4,2,3,3)\n", + "rect.area()" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "8" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 20 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "VutV6dGl5maO", + "colab_type": "code", + "outputId": "71dcedc0-bb5b-4ba3-9476-29834d7144e5", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "rect.perimeter()" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "12" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 21 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "MTVBGqAz5ocQ", + "colab_type": "code", + "outputId": "b2582794-2b71-4d67-a5a6-6108e30ff99f", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "rect.x()" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "3" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 22 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "Z8aToHVK5qmN", + "colab_type": "code", + "outputId": "d90a315b-c251-4477-fa22-9530b012b0b4", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "rect.y()" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "3" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 23 + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "zyWa-csgM9UA", + "colab_type": "text" + }, + "source": [ + "4. Implement a class to represent a circle, holding the radius and $x$ and $y$ coordinates of center of the object. Implement functions that compute the area and parameter of the rectangle. Make all data members private and privide accessors to retrieve values of data members. " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "72c58nzx5yO6", + "colab_type": "code", + "colab": {} + }, + "source": [ + "import math\n", + "class circle:\n", + " def __init__(self,radius,x,y):\n", + " self.__radius=radius\n", + " self.__x=x\n", + " self.__y=y\n", + " \n", + " def area(self):\n", + " return math.pi*pow(self.__radius,2)\n", + " \n", + " def perimeter(self):\n", + " return 2*math.pi*self.__radius\n", + " \n", + " def x(self):\n", + " return self.__x\n", + " \n", + " def y(self):\n", + " return self.__y" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "GyV3al7Y62C0", + "colab_type": "code", + "outputId": "c56021f6-5ccc-4731-e665-7ef01ee83afa", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "cir=circle(3,1,2)\n", + "cir.area()" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "28.274333882308138" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 27 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "bABHZ4Ln7OZw", + "colab_type": "code", + "outputId": "3e46b00c-0ea6-4629-e62b-4952da7d67cb", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "cir.perimeter()" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "18.84955592153876" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 28 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "hta6Xzym7ZzW", + "colab_type": "code", + "outputId": "740ee5b0-eec3-4c43-aa43-0dc5a8dc9d1d", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "cir.x()" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "1" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 29 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "k1TNj-Sy7b05", + "colab_type": "code", + "outputId": "d4677f1d-a7f8-4d91-a967-a210c33c481a", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "cir.y()" + ], + "execution_count": 0, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "2" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 30 + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "SFxuy1rPM9UA", + "colab_type": "text" + }, + "source": [ + "5. Implement a common base class for the classes implemented in 3 and 4 above which implements all common methods as dummy functions. Re-implement those classes to inherit from the base class and overload the functions accordingly. " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "v3vGTcCtA2as", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class base:\n", + " def __init__(self,width,length,x=0,y=0):\n", + " self.__width=width\n", + " self.__length=length\n", + " self.__x=x\n", + " self.__y=y\n", + " \n", + " def area(self):\n", + " return self.__width*self.__length\n", + " \n", + " def perimeter(self):\n", + " return 2*(self.__width+self.__length)\n", + " \n", + " def x(self):\n", + " return self.__x\n", + "\n", + " def y(self):\n", + " return self.__y\n", + "\n", + "class circle(base):\n", + " def __init__(self,radius,x,y):\n", + " super(circle,self).__init__(x,y)\n", + " self.radius=radius\n", + " \n", + " def area(self):\n", + " return math.pi*pow(self.radius,2)\n", + " \n", + " def perimeter(self):\n", + " return 2*math.pi*self.radius\n", + "\n", + "class rectangle(base):\n", + " def __init__(self,width,length,x,y):\n", + " super(rectangle,self).__init__(width,length,x,y)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "hGh_gzlpEg7g", + "colab_type": "code", + "outputId": "43b3c229-e250-4a08-c74e-81856eb41dbc", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + } + }, + "source": [ + "cir=circle(3,1,2)\n", + "cir.area()" + ], + "execution_count": 95, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "28.274333882308138" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 95 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "1WhxJXQ3TNe5", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "dbc2e594-ab39-40f6-ccee-724d6e2a2117" + }, + "source": [ + "cir.perimeter()" + ], + "execution_count": 96, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "18.84955592153876" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 96 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "tjMrPIZsUnPj", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "0e870196-6a8c-41ec-ee2c-da6a1b2bd697" + }, + "source": [ + "cir.x()" + ], + "execution_count": 97, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "0" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 97 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "vtx7nO6LUoyO", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "3576255b-6f03-4ca8-866a-67bb192d27c2" + }, + "source": [ + "cir.y()" + ], + "execution_count": 98, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "0" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 98 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "4cT5HsW0Uvcc", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "691a3701-5d0e-47ca-95f4-cb44dba510f9" + }, + "source": [ + "rect=rectangle(2,4,0,0)\n", + "rect.area()" + ], + "execution_count": 99, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "8" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 99 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "NyQlPaxWU3J5", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "ba908cf4-c382-4a33-a67c-fd6ce7478ad2" + }, + "source": [ + "rect.perimeter()" + ], + "execution_count": 100, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "12" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 100 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "rDCICktGU48C", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "a20f6819-99f2-4919-8564-21750bd83011" + }, + "source": [ + "rect.x()" + ], + "execution_count": 101, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "0" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 101 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "b1nVRnT1U7s0", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "a63ca391-e50c-48e5-dbe7-08218ec2d2b7" + }, + "source": [ + "rect.y()" + ], + "execution_count": 102, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "0" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 102 + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "XR6q6Y5PM9UB", + "colab_type": "text" + }, + "source": [ + "6. Implement an analogous triangle class." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "CMm4VLlPU_m5", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class triangle(base):\n", + " def __init__(self,base,height,side1,side2,x,y):\n", + " super(triangle,self).__init__(x,y)\n", + " self.__base=base\n", + " self.__height=height\n", + " self.__side1=side1\n", + " self.__side2=side2\n", + "\n", + " def area(self):\n", + " return 0.5*self.__base*self.__height\n", + "\n", + " def perimeter(self):\n", + " return self.__side1+self.__side2+self.__base" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "0AAzq7RFZPaf", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "716965f4-98b9-45a5-8efa-385cf1f94a15" + }, + "source": [ + "tri=triangle(2,2,2,2,1,2)\n", + "tri.area()" + ], + "execution_count": 110, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "2.0" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 110 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "5eGhPAwNZZF5", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "1b9555ad-33c2-4a21-f663-ee24dd4be37a" + }, + "source": [ + "tri.perimeter()" + ], + "execution_count": 111, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "6" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 111 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "AzoJf4bvaem3", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "677ddd0b-94a8-4f45-d34f-887ef1b0bfd2" + }, + "source": [ + "tri.x()" + ], + "execution_count": 112, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "0" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 112 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "aNoxqlMTahWG", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "f3369fb3-d114-46ba-8c6e-ba37f025b231" + }, + "source": [ + "tri.y()" + ], + "execution_count": 113, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "0" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 113 + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "ZL3FZF9hM9UD", + "colab_type": "text" + }, + "source": [ + "7. Add a function to the object classes that test if a given set of $x$ and $y$ coordinates are inside of the object." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "Mwb9nfYcbP9a", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class base:\n", + " def __init__(self,circle_x,circle_y,x1=0,y1=0,x2=4,y2=2):\n", + " self.circle_x=circle_x\n", + " self.circle_y=circle_y\n", + " self.x1=x1\n", + " self.y1=y1\n", + " self.x2=x2\n", + " self.y2=y2\n", + " width=self.x2-self.x1\n", + " length=self.y2-self.y1\n", + "\n", + " def area(self):\n", + " return width*length\n", + " \n", + " def perimeter(self):\n", + " return 2*(width+length)\n", + "\n", + " def isinside(self,x1,y1,x2,y2,x,y) : \n", + " if (x > x1 and x < x2 and \n", + " y > y1 and y < y2) : \n", + " return True\n", + " else : \n", + " return False\n", + "\n", + "class circle(base):\n", + " def __init__(self,circle_x,circle_y,radius):\n", + " super(circle,self).__init__(circle_x,circle_y)\n", + " self.radius=radius\n", + " \n", + " def area(self):\n", + " return math.pi*pow(self.radius,2)\n", + " \n", + " def perimeter(self):\n", + " return 2*math.pi*self.radius\n", + "\n", + " def isinside(self,circle_x,circle_y,radius,x,y):\n", + " if (pow((x - circle_x),2) + pow((y - circle_y),2) <= pow(radius,2)): \n", + " return True; \n", + " else: \n", + " return False;\n", + "\n", + "class rectangle(base):\n", + " def __init__(self,x1,y1,x2,y2):\n", + " super(rectangle,self).__init__(x1,y1,x2,y2)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "IsyKzjVrey6G", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "853cdc4f-803c-426f-a52d-df903f6aba0d" + }, + "source": [ + "cir=circle(0,0,3)\n", + "cir.isinside(0,0,3,2,2)" + ], + "execution_count": 159, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "True" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 159 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "4hbrO3-9vgJZ", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 34 + }, + "outputId": "a68e6df7-477e-46b5-ce24-a7f6b564ab2e" + }, + "source": [ + "rect=rectangle(0,0,4,2)\n", + "rect.isinside(0,0,4,3,2,2)" + ], + "execution_count": 165, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "True" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 165 + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "BI6MEkghM9UD", + "colab_type": "text" + }, + "source": [ + "8. Add a function to the object classes that return a list of up to 16 pairs of $x$ and $y$ points on the parameter of the object.\n", + "\n" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "-17urJwWFaSK", + "colab_type": "code", + "colab": {} + }, + "source": [ + "import random\n", + "import math\n", + "class base:\n", + " def __init__(self,circle_x,circle_y,x1=0,y1=0,x2=4,y2=2):\n", + " self.circle_x=circle_x\n", + " self.circle_y=circle_y\n", + " self.x1=x1\n", + " self.y1=y1\n", + " self.x2=x2\n", + " self.y2=y2\n", + " width=self.x2-self.x1\n", + " length=self.y2-self.y1\n", + "\n", + " def area(self):\n", + " return width*length\n", + " \n", + " def perimeter(self):\n", + " return 2*(width+length)\n", + "\n", + " def isinside(self,x1,y1,x2,y2,x,y): \n", + " if (x > x1 and x < x2 and \n", + " y > y1 and y < y2) : \n", + " return True\n", + " else : \n", + " return False\n", + "\n", + " def perimeter_points(self,x1,x2,y1,y2):\n", + " lst=[]\n", + " for i in range(16):\n", + " temp=random.uniform(x1,x2)\n", + " lst.append(temp)\n", + " for j in range(len(lst)):\n", + " return y1,lst[j]\n", + "\n", + "class circle(base):\n", + " def __init__(self,circle_x,circle_y,radius):\n", + " super(circle,self).__init__(circle_x,circle_y)\n", + " self.radius=radius\n", + " \n", + " def area(self):\n", + " return math.pi*pow(self.radius,2)\n", + " \n", + " def perimeter(self):\n", + " return 2*math.pi*self.radius\n", + "\n", + " def isinside(self,circle_x,circle_y,radius,x,y):\n", + " if (pow((x - circle_x),2) + pow((y - circle_y),2) <= pow(radius,2)): \n", + " return True; \n", + " else: \n", + " return False;\n", + "\n", + " def perimeter_points(self):\n", + " lst_1=[]\n", + " lst_2=[]\n", + " for i in range(16):\n", + " lst_1.append(3*math.cos(i))\n", + " lst_2.append(3*math.sin(i)) \n", + " lst_3=zip(lst_1,lst_2)\n", + " lst_3=set(lst_3)\n", + " return lst_3\n", + "\n", + "class rectangle(base):\n", + " def __init__(self,x1,y1,x2,y2):\n", + " super(rectangle,self).__init__(x1,y1,x2,y2)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "dC_7mDR6SV7R", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 286 + }, + "outputId": "b2d3286d-edff-4ead-fa08-b768eaee761d" + }, + "source": [ + "cir=circle(0,0,3)\n", + "cir.perimeter_points()" + ], + "execution_count": 187, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "{(-2.9699774898013365, 0.4233600241796016),\n", + " (-2.7333907856540307, 1.2363554557252698),\n", + " (-2.517214587229357, -1.6320633326681093),\n", + " (-2.279063738576464, 1.9508635204713505),\n", + " (-1.960930862590836, -2.2704074859237844),\n", + " (-1.2484405096414273, 2.727892280477045),\n", + " (-0.4365001014258406, 2.9680747398701453),\n", + " (0.013277093964152355, -2.9999706196521103),\n", + " (0.41021165462350084, 2.971822067084611),\n", + " (0.8509865563896788, -2.8767728239894153),\n", + " (1.6209069176044193, 2.5244129544236893),\n", + " (2.2617067630299137, 1.9709597961563672),\n", + " (2.5315618761974763, -1.609718754001305),\n", + " (2.7223403443505885, 1.2605011104799226),\n", + " (2.880510859951098, -0.8382464945967776),\n", + " (3.0, 0.0)}" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 187 + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "XCXTfx03M9UE", + "colab_type": "text" + }, + "source": [ + "9. Add a function in the base class of the object classes that returns true/false testing that the object overlaps with another object." + ] + } + ] +} \ No newline at end of file diff --git a/Labs/Lab-6/Lab_6_solutions.ipynb b/Labs/Lab-6/Lab_6_solutions.ipynb new file mode 100644 index 0000000..3cbcfd0 --- /dev/null +++ b/Labs/Lab-6/Lab_6_solutions.ipynb @@ -0,0 +1,651 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.1" + }, + "colab": { + "name": "Lab-6 solutions.ipynb", + "provenance": [] + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "I_e0U8LvpZct", + "colab_type": "text" + }, + "source": [ + "# Lab 6\n" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "ryFrBTWXlYCd", + "colab_type": "code", + "colab": {} + }, + "source": [ + "import numpy as np" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "HsfA3kdNpZcv", + "colab_type": "text" + }, + "source": [ + "Matrix Representation: In this lab you will be creating a simple linear algebra system. In memory, we will represent matrices as nested python lists as we have done in lecture. \n", + "\n", + "1. Create a `matrix` class with the following properties:\n", + " * It can be initialized in 2 ways:\n", + " 1. with arguments `n` and `m`, the size of the matrix. A newly instanciated matrix will contain all zeros.\n", + " 2. with a list of lists of values. Note that since we are using lists of lists to implement matrices, it is possible that not all rows have the same number of columns. Test explicitly that the matrix is properly specified.\n", + " * Matrix instances `M` can be indexed with `M[i][j]` and `M[i,j]`.\n", + " * Matrix assignment works in 2 ways:\n", + " 1. If `M_1` and `M_2` are `matrix` instances `M_1=M_2` sets the values of `M_1` to those of `M_2`, if they are the same size. Error otherwise.\n", + " 2. In example above `M_2` can be a list of lists of correct size.\n" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "eUcY-fw08zrx", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class matrix:\n", + " def __init__(self,n,m,c=1,N=[[2,2,2],[2,2,2],[2,2,2]]):\n", + " self.n=n\n", + " self.m=m\n", + " self.c=c\n", + " self.N=N\n", + " self.rows = [[1 for self.n in range(n)] for self.m in range(m)]\n", + " print(\"Matrix: \",self.rows)\n", + "\n", + " def __getitem__(self, i, j):\n", + " return self.rows[i][j]\n", + "\n", + " def shape(self):\n", + " s=np.array(self.rows)\n", + " return s.shape\n", + "\n", + " def transpose(self):\n", + " t=np.array(self.rows)\n", + " return t.transpose()\n", + "\n", + " def row(self,k):\n", + " return self.rows[k-1]\n", + "\n", + " def column(self,l):\n", + " lst=[]\n", + " for i in range(self.n):\n", + " lst.append(self.rows[i][l])\n", + " return lst\n", + "\n", + " def scalarmul(self,c): \n", + " for i in range(self.n+1): \n", + " for j in range(self.m+1): \n", + " self.rows[i][j] = self.rows[i][j]*c \n", + " print(\"Scalar Product Matrix is : \") \n", + " for i in range(self.n+1): \n", + " for j in range(self.m+1): \n", + " print(self.rows[i][j], end = \" \") \n", + " print() \n", + " \n", + " def add(self, N):\n", + " if ((len(self.rows) != len(N)) or (len(self.rows[0]) != len(N[0]))):\n", + " print('Dimentions don\\'t agree')\n", + " for i in range(self.n+1):\n", + " for j in range(self.m+1):\n", + " self.rows[i][j] = self.rows[i][j] + N[i][j]\n", + " print(\"Addition of Matrices is : \") \n", + " for i in range(self.n+1): \n", + " for j in range(self.m+1): \n", + " print(self.rows[i][j], end = \" \") \n", + " print()\n", + "\n", + " def sub(self, N):\n", + " if ((len(self.rows) != len(N)) or (len(self.rows[0]) != len(N[0]))):\n", + " print('Dimentions don\\'t agree')\n", + " for i in range(self.n+1):\n", + " for j in range(self.m+1):\n", + " self.rows[i][j] = self.rows[i][j] - N[i][j]\n", + " print(\"Subtration of Matrices is : \") \n", + " for i in range(self.n+1): \n", + " for j in range(self.m+1): \n", + " print(self.rows[i][j], end = \" \") \n", + " print()\n", + "\n", + " '''def mat_mult(self, N):\n", + " result=[[0 for self.n in range(self.n)] for self.m in range(self.m)]\n", + " for i in range(len(self.rows)):\n", + " for j in range(len(N[0])):\n", + " for k in range(len(N)):\n", + " result[i][j] += self.rows[i][k] * N[k][j]\n", + " for r in result:\n", + " print(r) '''\n", + " def mat_mult(self,N):\n", + " if ((len(self.rows) != len(N)) or (len(self.rows[0]) != len(N[0]))):\n", + " print('Dimentions don\\'t agree')\n", + " a=np.array(self.rows)\n", + " b=np.array(N)\n", + " c=np.dot(a,b)\n", + " print(\"Product of matrices: \")\n", + " return c\n", + "\n", + " def element_mult(self, N):\n", + " if ((len(self.rows) != len(N)) or (len(self.rows[0]) != len(N[0]))):\n", + " print('Dimentions don\\'t agree')\n", + " for i in range(self.n+1):\n", + " for j in range(self.m+1):\n", + " self.rows[i][j] = self.rows[i][j] * N[i][j]\n", + " print(\"Elementwise product of Matrices is : \") \n", + " for i in range(self.n+1): \n", + " for j in range(self.m+1): \n", + " print(self.rows[i][j], end = \" \") \n", + " print()\n", + " \n", + " def equals(self, N):\n", + " token=0\n", + " if ((len(self.rows) != len(N)) or (len(self.rows[0]) != len(N[0]))):\n", + " print('Matrices not equal')\n", + " for i in range(self.n+1):\n", + " for j in range(self.m+1):\n", + " if self.rows[i][j]!=N[i][j]:\n", + " token=1\n", + " if (token==1):\n", + " print(\"Matrices not equal\")\n", + " else:\n", + " print(\"Matrices are equal\")\n", + "\n", + " def __mul__(self, other): \n", + " return self.rows*other.c\n", + " \n", + " def __add__(self, other):\n", + " if ((len(self.rows) != len(other.N)) or (len(self.rows[0]) != len(other.N[0]))):\n", + " print('Dimentions don\\'t agree')\n", + " for i in range(self.n+1):\n", + " for j in range(self.m+1):\n", + " self.rows[i][j] = self.rows[i][j] + other.N[i][j]\n", + " print(\"Addition of Matrices is : \") \n", + " for i in range(self.n+1): \n", + " for j in range(self.m+1): \n", + " print(self.rows[i][j], end = \" \") \n", + " print()\n", + "\n", + " def __sub__(self,other):\n", + " return self.rows - other.N\n" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "cYIgOE619CGG", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 397 + }, + "outputId": "41504e34-a7d0-411e-ea23-163a71e64306" + }, + "source": [ + "M_1=matrix(3,3)\n", + "M_2=[[2,2,2],[2,2,2],[2,2,2]]\n", + "print(\"Matrix M_2: \",M_2)\n", + "M_2=M_1\n", + "print(\"Matrix M_2 after assigning M_1: \",M_2.rows)\n", + "print(\"For given i,j, M[i][j]: \",M_1.rows[2][2])\n", + "M=matrix(3,3,2)\n", + "print(M*2)" + ], + "execution_count": 52, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Matrix: [[1, 1, 1], [1, 1, 1], [1, 1, 1]]\n", + "Matrix M_2: [[2, 2, 2], [2, 2, 2], [2, 2, 2]]\n", + "Matrix M_2 after assigning M_1: [[1, 1, 1], [1, 1, 1], [1, 1, 1]]\n", + "For given i,j, M[i][j]: 1\n", + "Matrix: [[1, 1, 1], [1, 1, 1], [1, 1, 1]]\n" + ], + "name": "stdout" + }, + { + "output_type": "error", + "ename": "AttributeError", + "evalue": "ignored", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 6\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"For given i,j, M[i][j]: \"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mM_1\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrows\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0mM\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mmatrix\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 8\u001b[0;31m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mM\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;32m\u001b[0m in \u001b[0;36m__mul__\u001b[0;34m(self, other)\u001b[0m\n\u001b[1;32m 105\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 106\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m__mul__\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mother\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 107\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrows\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0mother\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mc\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 108\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 109\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m__add__\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mother\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mAttributeError\u001b[0m: 'int' object has no attribute 'c'" + ] + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "s4TNIc7qpZcx", + "colab_type": "text" + }, + "source": [ + "2. Add the following methods:\n", + " * `shape()`: returns a tuple `(n,m)` of the shape of the matrix.\n", + " * `transpose()`: returns a new matrix instance which is the transpose of the matrix.\n", + " * `row(n)` and `column(n)`: that return the nth row or column of the matrix M as a new appropriately shaped matrix object.\n", + " * `to_list()`: which returns the matrix as a list of lists.\n", + " * `block(n_0,n_1,m_0,m_1)` that returns a smaller matrix located at the n_0 to n_1 columns and m_0 to m_1 rows. \n", + " * (Extra credit) Modify `__getitem__` implemented above to support slicing.\n", + " " + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "f7y8HRtOG9ym", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 118 + }, + "outputId": "b5b69319-65b3-4bca-e544-7911cbf23784" + }, + "source": [ + "print(\"Tuple: \", M_1.shape())\n", + "print(\"Transpose: \", M_1.transpose())\n", + "print(\"row(n): \", M_1.row(2))\n", + "print(\"column(n): \", M_1.column(2))" + ], + "execution_count": 453, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Tuple: (3, 3)\n", + "Transpose: [[8 8 8]\n", + " [8 8 8]\n", + " [8 8 8]]\n", + "row(n): [8, 8, 8]\n", + "column(n): [8, 8]\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "D5U0sygUpZcy", + "colab_type": "text" + }, + "source": [ + "3. Write functions that create special matrices (note these are standalone functions, not member functions of your `matrix` class):\n", + " * `constant(n,m,c)`: returns a `n` by `m` matrix filled with floats of value `c`.\n", + " * `zeros(n,m)` and `ones(n,m)`: return `n` by `m` matrices filled with floats of value `0` and `1`, respectively.\n", + " * `eye(n)`: returns the n by n identity matrix." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "OMhtWitPSUp0", + "colab_type": "code", + "colab": {} + }, + "source": [ + "#contact function\n", + "def constant(n,m,c):\n", + " c_mat=[[c for n in range(n)] for m in range(m)]\n", + " const_mat=np.array(c_mat)\n", + " return const_mat.astype(float)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "1Sj-nANuTBL9", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 84 + }, + "outputId": "f2fe718e-4231-445f-d1c2-278da9cf16f3" + }, + "source": [ + "#test\n", + "constant(3,4,5)" + ], + "execution_count": 444, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "array([[5., 5., 5.],\n", + " [5., 5., 5.],\n", + " [5., 5., 5.],\n", + " [5., 5., 5.]])" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 444 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "c5OL9XizViiC", + "colab_type": "code", + "colab": {} + }, + "source": [ + "#zeroes & ones function\n", + "def zeroes(n,m):\n", + " z_mat=[[0 for n in range(n)] for m in range(m)]\n", + " zero_mat=np.array(z_mat)\n", + " return zero_mat.astype(float)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "EiEFFUbnWvQI", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 84 + }, + "outputId": "3c6c2c55-fcd3-4a87-a5fb-d37521b01025" + }, + "source": [ + "#test\n", + "zeroes(3,4)" + ], + "execution_count": 450, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "array([[0., 0., 0.],\n", + " [0., 0., 0.],\n", + " [0., 0., 0.],\n", + " [0., 0., 0.]])" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 450 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "HV9F1t6dW0Z6", + "colab_type": "code", + "colab": {} + }, + "source": [ + "def ones(n,m):\n", + " o_mat=[[1 for n in range(n)] for m in range(m)]\n", + " ones_mat=np.array(o_mat)\n", + " return ones_mat.astype(float)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "pUarwxliW79A", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 84 + }, + "outputId": "05a68daf-df7d-4fec-d23a-7b7165d2e15d" + }, + "source": [ + "#test\n", + "ones(3,4)" + ], + "execution_count": 448, + "outputs": [ + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "array([[1., 1., 1.],\n", + " [1., 1., 1.],\n", + " [1., 1., 1.],\n", + " [1., 1., 1.]])" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 448 + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "G5pmZWjbpZcy", + "colab_type": "text" + }, + "source": [ + "4. Add the following member functions to your class. Make sure to appropriately test the dimensions of the matrices to make sure the operations are correct.\n", + " * `M.scalarmul(c)`: a matrix that is scalar product $cM$, where every element of $M$ is multiplied by $c$.\n", + " * `M.add(N)`: adds two matrices $M$ and $N$. Don’t forget to test that the sizes of the matrices are compatible for this and all other operations.\n", + " * `M.sub(N)`: subtracts two matrices $M$ and $N$.\n", + " * `M.mat_mult(N)`: returns a matrix that is the matrix product of two matrices $M$ and $N$.\n", + " * `M.element_mult(N)`: returns a matrix that is the element-wise product of two matrices $M$ and $N$.\n", + " * `M.equals(N)`: returns true/false if $M==N$." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "s8dDLwild8Ye", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 302 + }, + "outputId": "c327324a-6b3f-43d4-90c3-b0226f512915" + }, + "source": [ + "M=matrix(3,3)\n", + "M.scalarmul(5)\n", + "M.add([[2,2,2],[2,2,2],[2,2,2]])\n", + "M.sub([[3,3,3],[3,3,3],[3,3,3]])\n", + "M.mat_mult([[2,2,2],[2,2,2],[2,2,2]])" + ], + "execution_count": 39, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Matrix M_1: [[1, 1, 1], [1, 1, 1], [1, 1, 1]]\n", + "Scalar Product Matrix is : \n", + "5 5 5 \n", + "5 5 5 \n", + "5 5 5 \n", + "Addition of Matrices is : \n", + "7 7 7 \n", + "7 7 7 \n", + "7 7 7 \n", + "Subtration of Matrices is : \n", + "4 4 4 \n", + "4 4 4 \n", + "4 4 4 \n", + "Product of matrices: \n" + ], + "name": "stdout" + }, + { + "output_type": "execute_result", + "data": { + "text/plain": [ + "array([[24, 24, 24],\n", + " [24, 24, 24],\n", + " [24, 24, 24]])" + ] + }, + "metadata": { + "tags": [] + }, + "execution_count": 39 + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "UCIcMJ1ELcif", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 101 + }, + "outputId": "37782e52-f1dc-45e7-de10-5de8dccd13a6" + }, + "source": [ + "M.element_mult([[5,5,5],[5,5,5],[5,5,5]])\n", + "M.equals([[20,20,20],[20,20,20],[20,20,20]])" + ], + "execution_count": 40, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Elementwise product of Matrices is : \n", + "20 20 20 \n", + "20 20 20 \n", + "20 20 20 \n", + "Matrices are equal\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "RITRuV6NpZcz", + "colab_type": "text" + }, + "source": [ + "5. Overload python operators to appropriately use your functions in 4 and allow expressions like:\n", + " * 2*M\n", + " * M*2\n", + " * M+N\n", + " * M-N\n", + " * M*N\n", + " * M==N\n", + " * M=N\n" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "RKrAIYT5OXde", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 363 + }, + "outputId": "0f869d09-7614-48df-ba65-8e97e3cf53ca" + }, + "source": [ + "M=matrix(4,4)\n", + "N=matrix(4,4)\n", + "M+N" + ], + "execution_count": 55, + "outputs": [ + { + "output_type": "stream", + "text": [ + "Matrix: [[1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1]]\n", + "Matrix: [[1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1]]\n", + "Dimentions don't agree\n" + ], + "name": "stdout" + }, + { + "output_type": "error", + "ename": "IndexError", + "evalue": "ignored", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mIndexError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0mM\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mmatrix\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m4\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m4\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0mN\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mmatrix\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m4\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m4\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 3\u001b[0;31m \u001b[0mM\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0mN\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;32m\u001b[0m in \u001b[0;36m__add__\u001b[0;34m(self, other)\u001b[0m\n\u001b[1;32m 112\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mrange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mn\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 113\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mj\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mrange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mm\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 114\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrows\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mj\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrows\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mj\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0mother\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mN\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mj\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 115\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"Addition of Matrices is : \"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 116\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mrange\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mn\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mIndexError\u001b[0m: list index out of range" + ] + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "p4aag6BepZc0", + "colab_type": "text" + }, + "source": [ + "6. Demonstrate the basic properties of matrices with your matrix class by creating two 2 by 2 example matrices using your Matrix class and illustrating the following:\n", + "\n", + "$$\n", + "(AB)C=A(BC)\n", + "$$\n", + "$$\n", + "A(B+C)=AB+AC\n", + "$$\n", + "$$\n", + "AB\\neq BA\n", + "$$\n", + "$$\n", + "AI=A\n", + "$$" + ] + } + ] +} \ No newline at end of file diff --git a/Labs/Lab-7/Lab_7_Solutions_Anugrah_Singh.ipynb b/Labs/Lab-7/Lab_7_Solutions_Anugrah_Singh.ipynb new file mode 100644 index 0000000..bee090e --- /dev/null +++ b/Labs/Lab-7/Lab_7_Solutions_Anugrah_Singh.ipynb @@ -0,0 +1,955 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.0" + }, + "colab": { + "name": "Lab-7 Solutions_Anugrah_Singh.ipynb", + "provenance": [] + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "7L66iZAYWfaR", + "colab_type": "text" + }, + "source": [ + "# Lab 7\n", + "\n", + "[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github//afarbin/DATA1401-Spring-2020/blob/master/Labs/Lab-7/Lab-7.ipynb)\n", + "\n", + "Here are the \"Gradebook\" classes from lecture. For this lab, you will use these classes and are encouraged to modify them as you need." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "82sVH9UceVg0", + "colab_type": "code", + "colab": {} + }, + "source": [ + "import pandas as pd" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "jEHVJb2ai_nQ", + "colab_type": "code", + "outputId": "4590da87-9cd3-4fe4-bab5-d15e17616f23", + "colab": { + "resources": { + "http://localhost:8080/nbextensions/google.colab/files.js": { + "data": "Ly8gQ29weXJpZ2h0IDIwMTcgR29vZ2xlIExMQwovLwovLyBMaWNlbnNlZCB1bmRlciB0aGUgQXBhY2hlIExpY2Vuc2UsIFZlcnNpb24gMi4wICh0aGUgIkxpY2Vuc2UiKTsKLy8geW91IG1heSBub3QgdXNlIHRoaXMgZmlsZSBleGNlcHQgaW4gY29tcGxpYW5jZSB3aXRoIHRoZSBMaWNlbnNlLgovLyBZb3UgbWF5IG9idGFpbiBhIGNvcHkgb2YgdGhlIExpY2Vuc2UgYXQKLy8KLy8gICAgICBodHRwOi8vd3d3LmFwYWNoZS5vcmcvbGljZW5zZXMvTElDRU5TRS0yLjAKLy8KLy8gVW5sZXNzIHJlcXVpcmVkIGJ5IGFwcGxpY2FibGUgbGF3IG9yIGFncmVlZCB0byBpbiB3cml0aW5nLCBzb2Z0d2FyZQovLyBkaXN0cmlidXRlZCB1bmRlciB0aGUgTGljZW5zZSBpcyBkaXN0cmlidXRlZCBvbiBhbiAiQVMgSVMiIEJBU0lTLAovLyBXSVRIT1VUIFdBUlJBTlRJRVMgT1IgQ09ORElUSU9OUyBPRiBBTlkgS0lORCwgZWl0aGVyIGV4cHJlc3Mgb3IgaW1wbGllZC4KLy8gU2VlIHRoZSBMaWNlbnNlIGZvciB0aGUgc3BlY2lmaWMgbGFuZ3VhZ2UgZ292ZXJuaW5nIHBlcm1pc3Npb25zIGFuZAovLyBsaW1pdGF0aW9ucyB1bmRlciB0aGUgTGljZW5zZS4KCi8qKgogKiBAZmlsZW92ZXJ2aWV3IEhlbHBlcnMgZm9yIGdvb2dsZS5jb2xhYiBQeXRob24gbW9kdWxlLgogKi8KKGZ1bmN0aW9uKHNjb3BlKSB7CmZ1bmN0aW9uIHNwYW4odGV4dCwgc3R5bGVBdHRyaWJ1dGVzID0ge30pIHsKICBjb25zdCBlbGVtZW50ID0gZG9jdW1lbnQuY3JlYXRlRWxlbWVudCgnc3BhbicpOwogIGVsZW1lbnQudGV4dENvbnRlbnQgPSB0ZXh0OwogIGZvciAoY29uc3Qga2V5IG9mIE9iamVjdC5rZXlzKHN0eWxlQXR0cmlidXRlcykpIHsKICAgIGVsZW1lbnQuc3R5bGVba2V5XSA9IHN0eWxlQXR0cmlidXRlc1trZXldOwogIH0KICByZXR1cm4gZWxlbWVudDsKfQoKLy8gTWF4IG51bWJlciBvZiBieXRlcyB3aGljaCB3aWxsIGJlIHVwbG9hZGVkIGF0IGEgdGltZS4KY29uc3QgTUFYX1BBWUxPQURfU0laRSA9IDEwMCAqIDEwMjQ7Ci8vIE1heCBhbW91bnQgb2YgdGltZSB0byBibG9jayB3YWl0aW5nIGZvciB0aGUgdXNlci4KY29uc3QgRklMRV9DSEFOR0VfVElNRU9VVF9NUyA9IDMwICogMTAwMDsKCmZ1bmN0aW9uIF91cGxvYWRGaWxlcyhpbnB1dElkLCBvdXRwdXRJZCkgewogIGNvbnN0IHN0ZXBzID0gdXBsb2FkRmlsZXNTdGVwKGlucHV0SWQsIG91dHB1dElkKTsKICBjb25zdCBvdXRwdXRFbGVtZW50ID0gZG9jdW1lbnQuZ2V0RWxlbWVudEJ5SWQob3V0cHV0SWQpOwogIC8vIENhY2hlIHN0ZXBzIG9uIHRoZSBvdXRwdXRFbGVtZW50IHRvIG1ha2UgaXQgYXZhaWxhYmxlIGZvciB0aGUgbmV4dCBjYWxsCiAgLy8gdG8gdXBsb2FkRmlsZXNDb250aW51ZSBmcm9tIFB5dGhvbi4KICBvdXRwdXRFbGVtZW50LnN0ZXBzID0gc3RlcHM7CgogIHJldHVybiBfdXBsb2FkRmlsZXNDb250aW51ZShvdXRwdXRJZCk7Cn0KCi8vIFRoaXMgaXMgcm91Z2hseSBhbiBhc3luYyBnZW5lcmF0b3IgKG5vdCBzdXBwb3J0ZWQgaW4gdGhlIGJyb3dzZXIgeWV0KSwKLy8gd2hlcmUgdGhlcmUgYXJlIG11bHRpcGxlIGFzeW5jaHJvbm91cyBzdGVwcyBhbmQgdGhlIFB5dGhvbiBzaWRlIGlzIGdvaW5nCi8vIHRvIHBvbGwgZm9yIGNvbXBsZXRpb24gb2YgZWFjaCBzdGVwLgovLyBUaGlzIHVzZXMgYSBQcm9taXNlIHRvIGJsb2NrIHRoZSBweXRob24gc2lkZSBvbiBjb21wbGV0aW9uIG9mIGVhY2ggc3RlcCwKLy8gdGhlbiBwYXNzZXMgdGhlIHJlc3VsdCBvZiB0aGUgcHJldmlvdXMgc3RlcCBhcyB0aGUgaW5wdXQgdG8gdGhlIG5leHQgc3RlcC4KZnVuY3Rpb24gX3VwbG9hZEZpbGVzQ29udGludWUob3V0cHV0SWQpIHsKICBjb25zdCBvdXRwdXRFbGVtZW50ID0gZG9jdW1lbnQuZ2V0RWxlbWVudEJ5SWQob3V0cHV0SWQpOwogIGNvbnN0IHN0ZXBzID0gb3V0cHV0RWxlbWVudC5zdGVwczsKCiAgY29uc3QgbmV4dCA9IHN0ZXBzLm5leHQob3V0cHV0RWxlbWVudC5sYXN0UHJvbWlzZVZhbHVlKTsKICByZXR1cm4gUHJvbWlzZS5yZXNvbHZlKG5leHQudmFsdWUucHJvbWlzZSkudGhlbigodmFsdWUpID0+IHsKICAgIC8vIENhY2hlIHRoZSBsYXN0IHByb21pc2UgdmFsdWUgdG8gbWFrZSBpdCBhdmFpbGFibGUgdG8gdGhlIG5leHQKICAgIC8vIHN0ZXAgb2YgdGhlIGdlbmVyYXRvci4KICAgIG91dHB1dEVsZW1lbnQubGFzdFByb21pc2VWYWx1ZSA9IHZhbHVlOwogICAgcmV0dXJuIG5leHQudmFsdWUucmVzcG9uc2U7CiAgfSk7Cn0KCi8qKgogKiBHZW5lcmF0b3IgZnVuY3Rpb24gd2hpY2ggaXMgY2FsbGVkIGJldHdlZW4gZWFjaCBhc3luYyBzdGVwIG9mIHRoZSB1cGxvYWQKICogcHJvY2Vzcy4KICogQHBhcmFtIHtzdHJpbmd9IGlucHV0SWQgRWxlbWVudCBJRCBvZiB0aGUgaW5wdXQgZmlsZSBwaWNrZXIgZWxlbWVudC4KICogQHBhcmFtIHtzdHJpbmd9IG91dHB1dElkIEVsZW1lbnQgSUQgb2YgdGhlIG91dHB1dCBkaXNwbGF5LgogKiBAcmV0dXJuIHshSXRlcmFibGU8IU9iamVjdD59IEl0ZXJhYmxlIG9mIG5leHQgc3RlcHMuCiAqLwpmdW5jdGlvbiogdXBsb2FkRmlsZXNTdGVwKGlucHV0SWQsIG91dHB1dElkKSB7CiAgY29uc3QgaW5wdXRFbGVtZW50ID0gZG9jdW1lbnQuZ2V0RWxlbWVudEJ5SWQoaW5wdXRJZCk7CiAgaW5wdXRFbGVtZW50LmRpc2FibGVkID0gZmFsc2U7CgogIGNvbnN0IG91dHB1dEVsZW1lbnQgPSBkb2N1bWVudC5nZXRFbGVtZW50QnlJZChvdXRwdXRJZCk7CiAgb3V0cHV0RWxlbWVudC5pbm5lckhUTUwgPSAnJzsKCiAgY29uc3QgcGlja2VkUHJvbWlzZSA9IG5ldyBQcm9taXNlKChyZXNvbHZlKSA9PiB7CiAgICBpbnB1dEVsZW1lbnQuYWRkRXZlbnRMaXN0ZW5lcignY2hhbmdlJywgKGUpID0+IHsKICAgICAgcmVzb2x2ZShlLnRhcmdldC5maWxlcyk7CiAgICB9KTsKICB9KTsKCiAgY29uc3QgY2FuY2VsID0gZG9jdW1lbnQuY3JlYXRlRWxlbWVudCgnYnV0dG9uJyk7CiAgaW5wdXRFbGVtZW50LnBhcmVudEVsZW1lbnQuYXBwZW5kQ2hpbGQoY2FuY2VsKTsKICBjYW5jZWwudGV4dENvbnRlbnQgPSAnQ2FuY2VsIHVwbG9hZCc7CiAgY29uc3QgY2FuY2VsUHJvbWlzZSA9IG5ldyBQcm9taXNlKChyZXNvbHZlKSA9PiB7CiAgICBjYW5jZWwub25jbGljayA9ICgpID0+IHsKICAgICAgcmVzb2x2ZShudWxsKTsKICAgIH07CiAgfSk7CgogIC8vIENhbmNlbCB1cGxvYWQgaWYgdXNlciBoYXNuJ3QgcGlja2VkIGFueXRoaW5nIGluIHRpbWVvdXQuCiAgY29uc3QgdGltZW91dFByb21pc2UgPSBuZXcgUHJvbWlzZSgocmVzb2x2ZSkgPT4gewogICAgc2V0VGltZW91dCgoKSA9PiB7CiAgICAgIHJlc29sdmUobnVsbCk7CiAgICB9LCBGSUxFX0NIQU5HRV9USU1FT1VUX01TKTsKICB9KTsKCiAgLy8gV2FpdCBmb3IgdGhlIHVzZXIgdG8gcGljayB0aGUgZmlsZXMuCiAgY29uc3QgZmlsZXMgPSB5aWVsZCB7CiAgICBwcm9taXNlOiBQcm9taXNlLnJhY2UoW3BpY2tlZFByb21pc2UsIHRpbWVvdXRQcm9taXNlLCBjYW5jZWxQcm9taXNlXSksCiAgICByZXNwb25zZTogewogICAgICBhY3Rpb246ICdzdGFydGluZycsCiAgICB9CiAgfTsKCiAgaWYgKCFmaWxlcykgewogICAgcmV0dXJuIHsKICAgICAgcmVzcG9uc2U6IHsKICAgICAgICBhY3Rpb246ICdjb21wbGV0ZScsCiAgICAgIH0KICAgIH07CiAgfQoKICBjYW5jZWwucmVtb3ZlKCk7CgogIC8vIERpc2FibGUgdGhlIGlucHV0IGVsZW1lbnQgc2luY2UgZnVydGhlciBwaWNrcyBhcmUgbm90IGFsbG93ZWQuCiAgaW5wdXRFbGVtZW50LmRpc2FibGVkID0gdHJ1ZTsKCiAgZm9yIChjb25zdCBmaWxlIG9mIGZpbGVzKSB7CiAgICBjb25zdCBsaSA9IGRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoJ2xpJyk7CiAgICBsaS5hcHBlbmQoc3BhbihmaWxlLm5hbWUsIHtmb250V2VpZ2h0OiAnYm9sZCd9KSk7CiAgICBsaS5hcHBlbmQoc3BhbigKICAgICAgICBgKCR7ZmlsZS50eXBlIHx8ICduL2EnfSkgLSAke2ZpbGUuc2l6ZX0gYnl0ZXMsIGAgKwogICAgICAgIGBsYXN0IG1vZGlmaWVkOiAkewogICAgICAgICAgICBmaWxlLmxhc3RNb2RpZmllZERhdGUgPyBmaWxlLmxhc3RNb2RpZmllZERhdGUudG9Mb2NhbGVEYXRlU3RyaW5nKCkgOgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAnbi9hJ30gLSBgKSk7CiAgICBjb25zdCBwZXJjZW50ID0gc3BhbignMCUgZG9uZScpOwogICAgbGkuYXBwZW5kQ2hpbGQocGVyY2VudCk7CgogICAgb3V0cHV0RWxlbWVudC5hcHBlbmRDaGlsZChsaSk7CgogICAgY29uc3QgZmlsZURhdGFQcm9taXNlID0gbmV3IFByb21pc2UoKHJlc29sdmUpID0+IHsKICAgICAgY29uc3QgcmVhZGVyID0gbmV3IEZpbGVSZWFkZXIoKTsKICAgICAgcmVhZGVyLm9ubG9hZCA9IChlKSA9PiB7CiAgICAgICAgcmVzb2x2ZShlLnRhcmdldC5yZXN1bHQpOwogICAgICB9OwogICAgICByZWFkZXIucmVhZEFzQXJyYXlCdWZmZXIoZmlsZSk7CiAgICB9KTsKICAgIC8vIFdhaXQgZm9yIHRoZSBkYXRhIHRvIGJlIHJlYWR5LgogICAgbGV0IGZpbGVEYXRhID0geWllbGQgewogICAgICBwcm9taXNlOiBmaWxlRGF0YVByb21pc2UsCiAgICAgIHJlc3BvbnNlOiB7CiAgICAgICAgYWN0aW9uOiAnY29udGludWUnLAogICAgICB9CiAgICB9OwoKICAgIC8vIFVzZSBhIGNodW5rZWQgc2VuZGluZyB0byBhdm9pZCBtZXNzYWdlIHNpemUgbGltaXRzLiBTZWUgYi82MjExNTY2MC4KICAgIGxldCBwb3NpdGlvbiA9IDA7CiAgICB3aGlsZSAocG9zaXRpb24gPCBmaWxlRGF0YS5ieXRlTGVuZ3RoKSB7CiAgICAgIGNvbnN0IGxlbmd0aCA9IE1hdGgubWluKGZpbGVEYXRhLmJ5dGVMZW5ndGggLSBwb3NpdGlvbiwgTUFYX1BBWUxPQURfU0laRSk7CiAgICAgIGNvbnN0IGNodW5rID0gbmV3IFVpbnQ4QXJyYXkoZmlsZURhdGEsIHBvc2l0aW9uLCBsZW5ndGgpOwogICAgICBwb3NpdGlvbiArPSBsZW5ndGg7CgogICAgICBjb25zdCBiYXNlNjQgPSBidG9hKFN0cmluZy5mcm9tQ2hhckNvZGUuYXBwbHkobnVsbCwgY2h1bmspKTsKICAgICAgeWllbGQgewogICAgICAgIHJlc3BvbnNlOiB7CiAgICAgICAgICBhY3Rpb246ICdhcHBlbmQnLAogICAgICAgICAgZmlsZTogZmlsZS5uYW1lLAogICAgICAgICAgZGF0YTogYmFzZTY0LAogICAgICAgIH0sCiAgICAgIH07CiAgICAgIHBlcmNlbnQudGV4dENvbnRlbnQgPQogICAgICAgICAgYCR7TWF0aC5yb3VuZCgocG9zaXRpb24gLyBmaWxlRGF0YS5ieXRlTGVuZ3RoKSAqIDEwMCl9JSBkb25lYDsKICAgIH0KICB9CgogIC8vIEFsbCBkb25lLgogIHlpZWxkIHsKICAgIHJlc3BvbnNlOiB7CiAgICAgIGFjdGlvbjogJ2NvbXBsZXRlJywKICAgIH0KICB9Owp9CgpzY29wZS5nb29nbGUgPSBzY29wZS5nb29nbGUgfHwge307CnNjb3BlLmdvb2dsZS5jb2xhYiA9IHNjb3BlLmdvb2dsZS5jb2xhYiB8fCB7fTsKc2NvcGUuZ29vZ2xlLmNvbGFiLl9maWxlcyA9IHsKICBfdXBsb2FkRmlsZXMsCiAgX3VwbG9hZEZpbGVzQ29udGludWUsCn07Cn0pKHNlbGYpOwo=", + "ok": true, + "headers": [ + [ + "content-type", + "application/javascript" + ] + ], + "status": 200, + "status_text": "" + } + }, + "base_uri": "https://localhost:8080/", + "height": 74 + } + }, + "source": [ + "from google.colab import files\n", + "uploaded = files.upload()" + ], + "execution_count": 5, + "outputs": [ + { + "output_type": "display_data", + "data": { + "text/html": [ + "\n", + " \n", + " \n", + " Upload widget is only available when the cell has been executed in the\n", + " current browser session. Please rerun this cell to enable.\n", + " \n", + " " + ], + "text/plain": [ + "" + ] + }, + "metadata": { + "tags": [] + } + }, + { + "output_type": "stream", + "text": [ + "Saving Data1401-Grades.csv to Data1401-Grades.csv\n" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "9589jc1LhnlZ", + "colab_type": "code", + "outputId": "2e5f8b7f-4d66-4152-f8b6-98fe950e433c", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 322 + } + }, + "source": [ + "!cat Data1401-Grades.csv" + ], + "execution_count": 22, + "outputs": [ + { + "output_type": "stream", + "text": [ + "l1_n,l1_1,12_n,l2_1,l2_2,l2_3,l2_4,l2_5,l2_6,l2_7,l3_n,l3_1,l3_2,l3_3,l3_4,l3_5,l3_6,l3_7,l3_8,l3_9,l3_10,l3_11,l3_12,l3_13,l3_14,l4_n,l4_1,l4_2,l4_3,l4_4,l4_5,l4_6,l4_7,l4_8,l4_9,l4_10,l4_11,q1_n,q1_1,e1_n,e1_1,e1_2,e1_3,e1_4,e1_5,e1_6,e1_7,e1_8,e1_9,e1_10,e1_11,e1_12,e1_13,e1_14,e1_15\r\n", + "1,10,7,0,10,10,8,10,10,10,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,1,9.5,15,9,9,0,9,8,0,0,0,0,0,0,0,0,0,0\r\n", + "1,10,7,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,1,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\n", + "1,10,7,0,0,0,0,0,0,0,14,9,10,10,10,7,10,3,6,3,3,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,1,5,15,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0\r\n", + "1,10,7,10,10,3,9.5,10,10,9.5,14,10,10,10,8,5,10,5,10,3,0,10,3,10,8,11,10,10,10,10,10,10,0,0,10,5,0,1,10,15,9,9,10,9,7,9,0,0,10,10,9,5,10,8,10\r\n", + "1,10,7,10,10,9.5,0,10,10,0,14,9.5,0,0,10,0,10,5,10,7,0,10,6,10,0,11,10,10,6,0,0,0,0,0,0,0,0,1,0,15,0,0,0,0,5,0,7,0,3,3,3,0,3,0,0\r\n", + "1,10,7,10,10,10,9.5,10,10,9.5,14,5,9.5,9.5,8,10,10,8,10,8,0,5,6,0,0,11,0,10,10,10,0,5,0,0,0,0,0,1,9.5,15,9,9,10,9,9,10,7,0,9,9,9,0,5,0,0\r\n", + "1,10,7,10,10,0,5,10,10,9.5,14,9.5,10,10,8,10,8,9,0,0,0,0,0,0,0,11,0,10,10,0,0,10,0,0,0,0,0,1,10,15,9,9,10,9,0,0,0,0,0,0,0,0,0,0,0\r\n", + "1,10,7,10,10,10,9.5,10,10,9.5,14,10,10,10,10,0,0,0,0,0,0,0,0,0,0,11,10,10,10,10,3,3,0,0,5,0,0,1,10,15,9,9,10,0,10,0,7,5,9,9,9,0,0,0,0\r\n", + "1,10,7,0,10,9.5,0,10,10,0,14,10,10,10,10,0,0,0,0,0,0,0,0,0,0,11,10,10,10,10,5,3,0,3,10,7,0,1,9.5,15,9,9,10,5,10,0,9,9,9,9,9,10,5,0,0\r\n", + "1,10,7,10,10,0,10,10,10,10,14,10,6,10,0,0,0,0,0,0,0,0,0,0,0,11,10,10,0,7,0,0,0,0,0,0,0,1,9.5,15,9,9,10,9,5,9,7,9,10,10,10,5,10,5,0\r\n", + "1,10,7,10,10,0,0,10,10,7,14,10,10,10,10,7,10,6,3,10,10,10,10,10,10,11,10,10,10,10,10,5,10,10,10,10,10,1,0,15,9,9,9,9,9,10,9,9,10,10,10,10,10,5,10\r\n", + "1,10,7,10,10,9.5,9.5,10,10,9.5,14,9.5,10,10,10,8,10,8,10,10,7,5,0,0,0,11,10,10,10,10,5,6,0,0,0,0,0,1,10,15,9,9,10,9,8,9,7,9,10,10,10,10,0,0,0\r\n", + "1,10,7,10,10,5,9.5,10,10,9.5,14,5,9,9,10,7,10,10,10,10,7,10,3,5,10,11,0,0,0,0,0,0,0,0,0,0,0,1,10,15,9,9,9,8,7,10,0,9,10,9,10,9,5,0,0\r\n", + "1,10,7,10,10,9.5,0,10,10,0,14,9.5,10,10,10,10,10,10,10,0,0,10,5,10,10,11,0,10,10,0,0,5,0,0,0,0,0,1,0,15,9,9,10,0,8,9,7,9,10,10,10,10,10,0,0\r\n", + "1,10,7,10,10,9.5,9,10,10,9.5,14,10,10,10,10,10,10,9,10,3,0,3,3,5,2,11,0,0,0,0,0,0,0,0,0,0,0,1,0,15,9,9,10,5,5,0,0,10,10,10,10,0,10,5,10\r\n", + "1,10,7,10,10,3,7,10,10,9,14,10,10,10,10,0,10,9,10,7,7,3,7,5,8,11,10,10,10,8,5,3,0,0,7,0,0,1,9.5,15,9,9,10,10,7,10,10,10,10,10,10,10,9,8,2" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "7W0YOjpuWfaT", + "colab_type": "code", + "colab": {} + }, + "source": [ + "import numpy as np\n", + "import math\n", + "\n", + "# Create some virtual classes\n", + "class base:\n", + " __name=\"\"\n", + " \n", + " def __init__(self,name):\n", + " self.__name=name\n", + "\n", + " def name(self):\n", + " return self.__name\n", + "\n", + "class data(base):\n", + " def __init__(self,name):\n", + " base.__init__(self,name)\n", + " \n", + "class alg(base):\n", + " def __init__(self,name):\n", + " base.__init__(self,name)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "OUoi44blWfaX", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class grade(data):\n", + " __value=0\n", + " __numerical=True\n", + " __gradebook_name=str()\n", + " __letter_grades=[\"F-\",\"F\",\"F+\",\"D-\",\"D\",\"D+\",\"C-\",\"C\",\"C+\",\"B-\",\"B\",\"B+\",\"A-\",\"A\",\"A+\"]\n", + " \n", + " def __init__(self,name,numerical=True,value=None):\n", + " if value:\n", + " if isinstance(value,(int,float)):\n", + " self.__numerical=True\n", + " elif isinstance(value,str):\n", + " self.__numerical=False\n", + " self.set(value)\n", + " else: \n", + " self.__numerical=numerical\n", + " self.__gradebook_name=name\n", + " data.__init__(self,name+\" Grade Algorithm\") \n", + "\n", + " def set(self,value):\n", + " if isinstance(value,(int,float)) and self.__numerical:\n", + " self.__value=value\n", + " elif isinstance(value,str) and not self.__numerical:\n", + " if value in self.__letter_grades:\n", + " self.__value=value\n", + " else:\n", + " print (self.name()+\" Error: Bad Grade.\")\n", + " raise Exception\n", + " \n", + " def value(self):\n", + " return self.__value\n", + " \n", + " def numerical(self):\n", + " return self.__numerical\n", + " \n", + " def gradebook_name(self):\n", + " return self.__gradebook_name\n", + " \n", + " def __str__(self):\n", + " return self.__gradebook_name+\": \"+str(self.__value)\n", + "\n", + "class student(data):\n", + " __id_number=0\n", + " __grades=dict()\n", + " \n", + " def __init__(self,first_name, last_name,id_number):\n", + " self.__id_number=id_number\n", + " self.__grades=dict()\n", + " data.__init__(self,first_name+\" \"+last_name+\" Student Data\")\n", + "\n", + " def add_grade(self,a_grade,overwrite=False):\n", + " if overwrite or not a_grade.gradebook_name() in self.__grades:\n", + " self.__grades[a_grade.gradebook_name()]=a_grade\n", + " else:\n", + " print (self.name()+\" Error Adding Grade \"+a_grade.name()+\". Grade already exists.\")\n", + " raise Exception\n", + "\n", + " def id_number(self):\n", + " return self.__id_number\n", + " \n", + " def __getitem__(self,key):\n", + " return self.__grades[key]\n", + " \n", + " def print_grades(self):\n", + " for grade in self.__grades:\n", + " print (self.__grades[grade])\n", + " \n" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "NuOx7jhpWfaZ", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class calculator(alg): \n", + " def __init__(self,name):\n", + " alg.__init__(self,name)\n", + "\n", + " def apply(self,a_grade_book):\n", + " raise NotImplementedError\n" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "4cCT9uKWWfab", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class grade_book(data):\n", + " # New member class to hold arbitrary data associated with the class\n", + "\n", + " __data=dict()\n", + " __students=dict()\n", + " \n", + " def __init__(self,name):\n", + " data.__init__(self,name+\" Course Grade Book\")\n", + " self.__students=dict()\n", + " self.__data=dict()\n", + " \n", + " # New method to access data\n", + " def __getitem__(self,key):\n", + " return self.__data[key]\n", + " \n", + " # New method to add data\n", + " def __setitem__(self, key, value):\n", + " self.__data[key] = value\n", + " \n", + " def add_student(self,a_student):\n", + " self.__students[a_student.id_number()]=a_student\n", + "\n", + " # New method to allow iterating over students\n", + " def get_students(self):\n", + " return self.__students\n", + " \n", + " def assign_grade(self,key,a_grade):\n", + " the_student=None\n", + " try:\n", + " the_student=self.__students[key]\n", + " except:\n", + " for id in self.__students:\n", + " if key == self.__students[id].name():\n", + " the_student=self.__students[id]\n", + " break\n", + " if the_student:\n", + " the_student.add_grade(a_grade)\n", + " else:\n", + " print (self.name()+\" Error: Did not find student.\")\n", + " \n", + " def apply_calculator(self,a_calculator,**kwargs):\n", + " a_calculator.apply(self,**kwargs)\n", + " " + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "jqBeOZzsWfad", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class uncurved_letter_grade_percent(calculator):\n", + " __grades_definition=[ (.97,\"A+\"),\n", + " (.93,\"A\"),\n", + " (.9,\"A-\"),\n", + " (.87,\"B+\"),\n", + " (.83,\"B\"),\n", + " (.8,\"B-\"),\n", + " (.77,\"C+\"),\n", + " (.73,\"C\"),\n", + " (.7,\"C-\"),\n", + " (.67,\"C+\"),\n", + " (.63,\"C\"),\n", + " (.6,\"C-\"),\n", + " (.57,\"F+\"),\n", + " (.53,\"F\"),\n", + " (0.,\"F-\")]\n", + " __max_grade=100.\n", + " __grade_name=str()\n", + " \n", + " def __init__(self,grade_name,max_grade=100.):\n", + " self.__max_grade=max_grade\n", + " self.__grade_name=grade_name\n", + " calculator.__init__(self,\n", + " \"Uncurved Percent Based Grade Calculator \"+self.__grade_name+\" Max=\"+str(self.__max_grade))\n", + " \n", + " def apply(self,a_grade_book,grade_name=None,**kwargs):\n", + " if grade_name:\n", + " pass\n", + " else:\n", + " grade_name=self.__grade_name\n", + " \n", + " \n", + " for k,a_student in a_grade_book.get_students().iteritems():\n", + " a_grade=a_student[grade_name]\n", + "\n", + " if not a_grade.numerical():\n", + " print (self.name()+ \" Error: Did not get a numerical grade as input.\")\n", + " raise Exception\n", + " \n", + " percent=a_grade.value()/self.__max_grade\n", + " \n", + " for i,v in enumerate(self.__grades_definition):\n", + " if percent>=v[0]:\n", + " break\n", + " \n", + " a_student.add_grade(grade(grade_name+\" Letter\",value=self.__grades_definition[i][1]))\n", + " " + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "code", + "metadata": { + "id": "w4FQOvTKWfah", + "colab_type": "code", + "colab": {} + }, + "source": [ + "class mean_std_calculator(calculator):\n", + " def __init__(self):\n", + " calculator.__init__(self,\"Mean and Standard Deviation Calculator\")\n", + " \n", + " def apply(self,a_grade_book,grade_name,**kwargs):\n", + " grades=list()\n", + " for k,a_student in a_grade_book.get_students().iteritems():\n", + " grades.append(a_student[grade_name].value())\n", + " \n", + " a_grade_book[grade_name+\" Mean\"] = np.mean(grades)\n", + " a_grade_book[grade_name+\" STD\"] = math.sqrt(np.var(grades))\n" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "collapsed": true, + "id": "Sd-ODq_7Wfak", + "colab_type": "text" + }, + "source": [ + "## CSV Reader\n", + "\n", + "*Exercise 1*: The data for a class are stored in a \"camma separated values\" (CSV) file name `Data1401-Grades.csv` in the directory of this lab. You can see the contents using the `cat` shell command:" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "iEhqz8sBWfal", + "colab_type": "code", + "outputId": "b3dde20d-fdea-4d2e-f385-73b4c2ec5011", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 322 + } + }, + "source": [ + "!cat Data1401-Grades.csv " + ], + "execution_count": 29, + "outputs": [ + { + "output_type": "stream", + "text": [ + "l1_n,l1_1,12_n,l2_1,l2_2,l2_3,l2_4,l2_5,l2_6,l2_7,l3_n,l3_1,l3_2,l3_3,l3_4,l3_5,l3_6,l3_7,l3_8,l3_9,l3_10,l3_11,l3_12,l3_13,l3_14,l4_n,l4_1,l4_2,l4_3,l4_4,l4_5,l4_6,l4_7,l4_8,l4_9,l4_10,l4_11,q1_n,q1_1,e1_n,e1_1,e1_2,e1_3,e1_4,e1_5,e1_6,e1_7,e1_8,e1_9,e1_10,e1_11,e1_12,e1_13,e1_14,e1_15\r\n", + "1,10,7,0,10,10,8,10,10,10,14,9,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,1,9.5,15,9,9,0,9,8,0,0,0,0,0,0,0,0,0,0\r\n", + "1,10,7,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,1,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\r\n", + "1,10,7,0,0,0,0,0,0,0,14,9,10,10,10,7,10,3,6,3,3,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,1,5,15,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0\r\n", + "1,10,7,10,10,3,9.5,10,10,9.5,14,10,10,10,8,5,10,5,10,3,0,10,3,10,8,11,10,10,10,10,10,10,0,0,10,5,0,1,10,15,9,9,10,9,7,9,0,0,10,10,9,5,10,8,10\r\n", + "1,10,7,10,10,9.5,0,10,10,0,14,9.5,0,0,10,0,10,5,10,7,0,10,6,10,0,11,10,10,6,0,0,0,0,0,0,0,0,1,0,15,0,0,0,0,5,0,7,0,3,3,3,0,3,0,0\r\n", + "1,10,7,10,10,10,9.5,10,10,9.5,14,5,9.5,9.5,8,10,10,8,10,8,0,5,6,0,0,11,0,10,10,10,0,5,0,0,0,0,0,1,9.5,15,9,9,10,9,9,10,7,0,9,9,9,0,5,0,0\r\n", + "1,10,7,10,10,0,5,10,10,9.5,14,9.5,10,10,8,10,8,9,0,0,0,0,0,0,0,11,0,10,10,0,0,10,0,0,0,0,0,1,10,15,9,9,10,9,0,0,0,0,0,0,0,0,0,0,0\r\n", + "1,10,7,10,10,10,9.5,10,10,9.5,14,10,10,10,10,0,0,0,0,0,0,0,0,0,0,11,10,10,10,10,3,3,0,0,5,0,0,1,10,15,9,9,10,0,10,0,7,5,9,9,9,0,0,0,0\r\n", + "1,10,7,0,10,9.5,0,10,10,0,14,10,10,10,10,0,0,0,0,0,0,0,0,0,0,11,10,10,10,10,5,3,0,3,10,7,0,1,9.5,15,9,9,10,5,10,0,9,9,9,9,9,10,5,0,0\r\n", + "1,10,7,10,10,0,10,10,10,10,14,10,6,10,0,0,0,0,0,0,0,0,0,0,0,11,10,10,0,7,0,0,0,0,0,0,0,1,9.5,15,9,9,10,9,5,9,7,9,10,10,10,5,10,5,0\r\n", + "1,10,7,10,10,0,0,10,10,7,14,10,10,10,10,7,10,6,3,10,10,10,10,10,10,11,10,10,10,10,10,5,10,10,10,10,10,1,0,15,9,9,9,9,9,10,9,9,10,10,10,10,10,5,10\r\n", + "1,10,7,10,10,9.5,9.5,10,10,9.5,14,9.5,10,10,10,8,10,8,10,10,7,5,0,0,0,11,10,10,10,10,5,6,0,0,0,0,0,1,10,15,9,9,10,9,8,9,7,9,10,10,10,10,0,0,0\r\n", + "1,10,7,10,10,5,9.5,10,10,9.5,14,5,9,9,10,7,10,10,10,10,7,10,3,5,10,11,0,0,0,0,0,0,0,0,0,0,0,1,10,15,9,9,9,8,7,10,0,9,10,9,10,9,5,0,0\r\n", + "1,10,7,10,10,9.5,0,10,10,0,14,9.5,10,10,10,10,10,10,10,0,0,10,5,10,10,11,0,10,10,0,0,5,0,0,0,0,0,1,0,15,9,9,10,0,8,9,7,9,10,10,10,10,10,0,0\r\n", + "1,10,7,10,10,9.5,9,10,10,9.5,14,10,10,10,10,10,10,9,10,3,0,3,3,5,2,11,0,0,0,0,0,0,0,0,0,0,0,1,0,15,9,9,10,5,5,0,0,10,10,10,10,0,10,5,10\r\n", + "1,10,7,10,10,3,7,10,10,9,14,10,10,10,10,0,10,9,10,7,7,3,7,5,8,11,10,10,10,8,5,3,0,0,7,0,0,1,9.5,15,9,9,10,10,7,10,10,10,10,10,10,10,9,8,2" + ], + "name": "stdout" + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "RmnSGOIBWfaq", + "colab_type": "text" + }, + "source": [ + "You will note that the first line has the names of the \"columns\" of data, and that subsequent lines (or \"rows\") have the data for each student, separated by cammas.\n", + "\n", + "Recalling that in lecture we created a file reader, create a CSV reader function that takes a filename as input and returns data structure(s) that store the data in the file. Note that you are not allowed to use a library. The point here is for *you* to write the CSV reader. Some options for your data structures (pick one):\n", + "\n", + "* A list of dictionaries, where each element of the list is corresponds to a row of data and the dictionaries are keyed by the column name. For example `data[5][\"l3_5\"]` corresponds to the 6th student's grade on lab 3 question 5.\n", + "\n", + "* A list of lists (i.e. a 2-D array or matrix) and a dictionary, where each element of the \"matrix\" corresponds to a a specific grade for a specific student and the dictionary maps the name of the column to the column index. For example `data[5][column_names[\"l1_5\"]]` corresponds to the 6th student's grade on lab 3 question 5.\n", + "\n", + "* A dictionary of lists, where each element of the dictionary corresponds to a column of data and the lists contain the data in that column. For example `data[\"l3_5\"][5]` corresponds to the 6th student's grade on lab 3 question 5.\n", + "\n", + "* (Extra Credit) A class that simultaneously supports all of the above methods." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "ZyPoSVCZWfaq", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Your solution here.\n", + "\n", + "def csv_reader(filename):\n", + " data=list() # if you choose first option\n", + "\n", + " try:\n", + " lines = open(filename, \"r\").readlines()\n", + " \n", + " if len(lines) > 0:\n", + " keys = lines[0]\n", + " keys = keys.split(\",\")\n", + " keys[-1] = keys[-1][:5]\n", + " \n", + " lines.pop(0)\n", + "\n", + " for line in lines:\n", + " grades = line.split(\",\")\n", + " data.append({keys[x]: float(grades[x]) for x in range(len(keys))}) \n", + " \n", + " except OSError as e:\n", + " print(\"File not found\")\n", + " \n", + " return data" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "tLY-BY5HWfas", + "colab_type": "text" + }, + "source": [ + "## Creating a Gradebook\n", + "\n", + "*Exercise 2:* In lecture we used pandas to read the CSV file and create the grade book. The example below works for the CSV file for this lab. Modify the code below to use your CSV reader instead." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "_cpuB1PeWfas", + "colab_type": "code", + "colab": {} + }, + "source": [ + "not_data = csv_reader(\"Data1401-Grades.csv\")\n", + "\n", + "a_grade_book = grade_book(\"Data 1401\")\n", + "\n", + "for student_i in range(len(not_data)):\n", + " a_student_0=student(\"Student\",str(student_i),student_i)\n", + "\n", + " for k in not_data[student_i].keys():\n", + " a_student_0.add_grade(grade(k,value=not_data[student_i][k]))\n", + "\n", + " a_grade_book.add_student(a_student_0) " + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "-UXVSoh4Wfau", + "colab_type": "text" + }, + "source": [ + "## Grade Summing\n", + "\n", + "*Exercise 3:* In lectre we will change the design of our algorithm classes and then update the `uncurved_letter_grade_percent` calculator. In lecture we also created a `grade_summer` calcuator that takes a prefix (for example `e1_` and a number `n`) and sums all grades starting with that prefix up to `n` and creates a new sum grade. Update this calculator (below) to the new design of our algorithm classes. Test your updated calculator by using it to sum the grades for all labs, quizzes, and exams of each student." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "AV5S-imyWfau", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Note this is the OLD design... you will need to modify it.\n", + "\n", + "class summary_calculator(alg): \n", + " def __init__(self,name):\n", + " alg.__init__(self,name)\n", + "\n", + " def apply(self,a_student):\n", + " raise NotImplementedError\n", + "\n", + "class grade_summer(calculator):\n", + " def __init__(self,prefix='all',n=None):\n", + " self.__prefix=prefix\n", + " self.__n=n\n", + " calculator.__init__(self,\"Sum Grades\")\n", + " \n", + " def apply(self,a_grade_book,overwrite=True):\n", + " \n", + " prefixes = a_grade_book.names()\n", + " prefixes = list(set([x[:3] for x in prefixes]))\n", + " \n", + " predefined = True if self.__n is not None else False\n", + " \n", + " for prefix in prefixes:\n", + " for k,a_student in a_grade_book.get_students().iteritems():\n", + " grades=list()\n", + "\n", + " if not predefined:\n", + " self.__n = int(a_student[prefix + \"n\"].value())\n", + "\n", + " for x in range(1, self.__n + 1):\n", + " grades.append(a_student[prefix + str(x)].value())\n", + " \n", + " a_student.add_grade(grade(prefix+\"sum\",value=sum(grades)), overwrite)" + ], + "execution_count": 0, + "outputs": [] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "SMRjmcmmWfaw", + "colab_type": "text" + }, + "source": [ + "## Curving Grades\n", + "\n", + "*Exercise 4:* Use the `mean_std_calculator` above to calculate the mean and standard deviation for every lab, quiz, and exam in the class. Add a new print function to the `grade_book` class to print out such information in a nice way, and use this function to show your results.\n" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "4xK4JU8KWfax", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 346 + }, + "outputId": "97f9acbb-4587-489f-cd33-083286b88822" + }, + "source": [ + "add = grade_summer(\"all\")\n", + "msc = mean_std_calculator()\n", + "\n", + "add.apply(a_grade_book)\n", + "msc.apply(a_grade_book)\n", + "\n", + "a_grade_book.print_data()" + ], + "execution_count": 59, + "outputs": [ + { + "output_type": "error", + "ename": "AttributeError", + "evalue": "ignored", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0mmsc\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mmean_std_calculator\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 4\u001b[0;31m \u001b[0madd\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mapply\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma_grade_book\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 5\u001b[0m \u001b[0mmsc\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mapply\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma_grade_book\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 6\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36mapply\u001b[0;34m(self, a_grade_book, overwrite)\u001b[0m\n\u001b[1;32m 15\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mapply\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0ma_grade_book\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0moverwrite\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mTrue\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 16\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 17\u001b[0;31m \u001b[0mprefixes\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0ma_grade_book\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mnames\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 18\u001b[0m \u001b[0mprefixes\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mlist\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mset\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mx\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mx\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mprefixes\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 19\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mAttributeError\u001b[0m: 'grade_book' object has no attribute 'names'" + ] + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "-TSbdkWkWfa0", + "colab_type": "text" + }, + "source": [ + "*Exercise 5:* In lecture we will change the design of our algorithms classes and then update the `uncurved_letter_grade_percent` calculator. Do the same for the `curved_letter_grade` calculator below and by curving all the lab, quiz, and exam grades." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "5obtU-u5Wfa1", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 370 + }, + "outputId": "62b7f492-3db5-402a-ae25-2a7feb323846" + }, + "source": [ + "class curved_letter_grade(calculator):\n", + " __grades_definition=[ (.97,\"A+\"),\n", + " (.93,\"A\"),\n", + " (.9,\"A-\"),\n", + " (.87,\"B+\"),\n", + " (.83,\"B\"),\n", + " (.8,\"B-\"),\n", + " (.77,\"C+\"),\n", + " (.73,\"C\"),\n", + " (.7,\"C-\"),\n", + " (.67,\"C+\"),\n", + " (.63,\"C\"),\n", + " (.6,\"C-\"),\n", + " (.57,\"F+\"),\n", + " (.53,\"F\"),\n", + " (0.,\"F-\")]\n", + " \n", + " def __init__(self):\n", + " calculator.__init__(self, \"Curved Percent Based Grade Calculator \")\n", + " \n", + " def apply(self,a_grade_book,overwrite=True):\n", + " prefixes = a_grade_book.names()\n", + " prefixes = list(set([x[:3] for x in prefixes]))\n", + " \n", + " for prefix in prefixes:\n", + " mean = a_grade_book[prefix + \"Mean\"]\n", + " std = a_grade_book[prefix + \"STD\"]\n", + " \n", + " for k,a_student in a_grade_book.get_students().iteritems():\n", + " max_grade = 100. #a_student[prefix + \"n\"].value()*10\n", + " \n", + " try:\n", + " a_grade = a_student[prefix + \"drop_sum\"].value()\n", + " except:\n", + " a_grade = a_student[prefix + \"sum\"].value()\n", + " \n", + " \n", + " #grades.append(a_student[prefix + \"drop_sum\"].value())\n", + " \n", + " if not std == 0:\n", + " percent = a_grade / max_grade\n", + " shift_to_zero = percent - (mean / max_grade)\n", + " scale_std = 0.1 * shift_to_zero / (std / max_grade)\n", + " a_grade = scale_std + 0.8\n", + " \n", + " else:\n", + " a_grade /= max_grade\n", + " \n", + " for i,v in enumerate(self.__grades_definition):\n", + " if a_grade>=v[0]:\n", + " break\n", + " \n", + " #a_student.add_grade(grade(prefix+\"curved\",value=a_grade), overwrite)\n", + " a_student.add_grade(grade(prefix+\"curved\",value=self.__grades_definition[i][1]), overwrite)\n", + "\n", + "\n", + "curver = curved_letter_grade()\n", + "a_grade_book.apply_calculator(curver)\n", + " \n", + "a_grade_book.print_grades(\"e1_curved\")" + ], + "execution_count": 52, + "outputs": [ + { + "output_type": "error", + "ename": "TypeError", + "evalue": "ignored", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 56\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 57\u001b[0m \u001b[0mcurver\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcurved_letter_grade\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 58\u001b[0;31m \u001b[0ma_grade_book\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mapply_calculator\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mcurver\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 59\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 60\u001b[0m \u001b[0ma_grade_book\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mprint_grades\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"e1_curved\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36mapply_calculator\u001b[0;34m(self, a_calculator, **kwargs)\u001b[0m\n\u001b[1;32m 40\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 41\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mapply_calculator\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0ma_calculator\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 42\u001b[0;31m \u001b[0ma_calculator\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mapply\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 43\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 44\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mgrade_names\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36mapply\u001b[0;34m(self, a_grade_book, overwrite)\u001b[0m\n\u001b[1;32m 20\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 21\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mapply\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0ma_grade_book\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0moverwrite\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mTrue\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 22\u001b[0;31m \u001b[0mprefixes\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0ma_grade_book\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgrade_names\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 23\u001b[0m \u001b[0mprefixes\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mlist\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mset\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mx\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mx\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mprefixes\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 24\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36mgrade_names\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 44\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mgrade_names\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 45\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__students\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m>\u001b[0m \u001b[0;36m0\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 46\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__students\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mvalues\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgrade_names\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 47\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 48\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"No grades available\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mTypeError\u001b[0m: 'dict_values' object does not support indexing" + ] + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "2CB2IfX5Wfa3", + "colab_type": "text" + }, + "source": [ + "## Final Course Grade\n", + "\n", + "*Exercise 6:* Write a new calculator that sums grades with a prefix, as in the `grade_summer` calculator, but drops `n` lowest grades. Apply the algorithm to drop the lowest lab grade in the data.\n" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "yx6ISlRKWfa3", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 370 + }, + "outputId": "cf1ce84a-42d8-43d8-a2f4-e6415bedd7fd" + }, + "source": [ + "class grade_summer_with_drop(calculator):\n", + " def __init__(self,prefix='all',n=None):\n", + " self.__prefix=prefix\n", + " self.__n=n\n", + " calculator.__init__(self,\"Sum Grades\")\n", + " \n", + " def apply(self,a_grade_book,overwrite=True):\n", + " \n", + " if self.__n == None:\n", + " grade_summer(self.__prefix).apply(a_grade_book, overwrite)\n", + " \n", + " else:\n", + " prefixes = a_grade_book.grade_names()\n", + " prefixes = list(set([x[:3] for x in prefixes]))\n", + " \n", + " for prefix in prefixes:\n", + " for k,a_student in a_grade_book.get_students().iteritems():\n", + " grades=list()\n", + "\n", + " m = int(a_student[prefix + \"n\"].value())\n", + "\n", + " for x in range(1, m + 1):\n", + " grades.append(a_student[prefix + str(x)].value())\n", + "\n", + " for x in range(min(m - 1, self.__n)):\n", + " grades.remove(min(grades))\n", + "\n", + " a_student.add_grade(grade(prefix+\"drop_sum\",value=sum(grades)), overwrite)\n", + "\n", + " \n", + "grade_summer_with_drop(\"l1_\", 1).apply(a_grade_book)\n", + "grade_summer_with_drop(\"l2_\", 1).apply(a_grade_book)\n", + "grade_summer_with_drop(\"l3_\", 1).apply(a_grade_book)\n", + "grade_summer_with_drop(\"l4_\", 1).apply(a_grade_book)\n", + "msc.apply(a_grade_book)\n", + "\n", + "a_grade_book.print_data()" + ], + "execution_count": 60, + "outputs": [ + { + "output_type": "error", + "ename": "TypeError", + "evalue": "ignored", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 29\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 30\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 31\u001b[0;31m \u001b[0mgrade_summer_with_drop\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"l1_\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mapply\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma_grade_book\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 32\u001b[0m \u001b[0mgrade_summer_with_drop\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"l2_\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mapply\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma_grade_book\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 33\u001b[0m \u001b[0mgrade_summer_with_drop\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"l3_\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mapply\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ma_grade_book\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36mapply\u001b[0;34m(self, a_grade_book, overwrite)\u001b[0m\n\u001b[1;32m 11\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 12\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 13\u001b[0;31m \u001b[0mprefixes\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0ma_grade_book\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgrade_names\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 14\u001b[0m \u001b[0mprefixes\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mlist\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mset\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mx\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mx\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mprefixes\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 15\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36mgrade_names\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 44\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mgrade_names\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 45\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__students\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m>\u001b[0m \u001b[0;36m0\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 46\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__students\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mvalues\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgrade_names\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 47\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 48\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"No grades available\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mTypeError\u001b[0m: 'dict_values' object does not support indexing" + ] + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "N2rzVnKhWfa5", + "colab_type": "text" + }, + "source": [ + "*Exercise 7*: Write a new calculator that creates a new letter grade based on a weighted average of letter grades, by assigning the following numerical values to letter grades:" + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "ua-BuH61Wfa6", + "colab_type": "code", + "colab": { + "base_uri": "https://localhost:8080/", + "height": 354 + }, + "outputId": "2ca895c1-4b4e-4e21-d20d-b457745a8817" + }, + "source": [ + "class curved_letter_grade(calculator):\n", + " __grade_map={\"A+\":.97,\n", + " \"A\":.93,\n", + " \"A-\":.9,\n", + " \"B+\":.87,\n", + " \"B\":.83,\n", + " \"B-\":.8,\n", + " \"C+\":.77,\n", + " \"C\":.73,\n", + " \"C-\":.7,\n", + " \"D+\":.67,\n", + " \"D\":.63,\n", + " \"D-\":.6,\n", + " \"F+\":.57,\n", + " \"F\":.53,\n", + " \"F-\":0.}\n", + " \n", + " def __init__(self):\n", + " calculator.__init__(self, \"Curved Percent Based Grade Calculator \")\n", + " \n", + " def apply(self,a_grade_book,overwrite=True):\n", + " prefixes = a_grade_book.grade_names()\n", + " prefixes = list(set([x[:3] for x in prefixes]))\n", + " \n", + " for k,a_student in a_grade_book.get_students().iteritems():\n", + " grades = {\"l\": [], \"q\": [], \"e\": []}\n", + " \n", + " for prefix in prefixes:\n", + " grades[prefix[0]].append(self.__grade_map[a_student[prefix + \"curved\"].value()])\n", + " \n", + " for k, v in grades.iteritems():\n", + " if len(v) > 0:\n", + " grades[k] = sum(v)/len(v)\n", + " \n", + " weighted_total = round((grades[\"l\"]*25 + grades[\"q\"]*35 + grades[\"e\"]*40))\n", + " \n", + " a_student.add_grade(grade(prefix+\"weighted_grade\",value = weighted_total), overwrite)\n", + " \n", + "a_grade_book.apply_calculator(curved_letter_grade())\n", + "a_grade_book.print_grades(\"weighted\")" + ], + "execution_count": 61, + "outputs": [ + { + "output_type": "error", + "ename": "TypeError", + "evalue": "ignored", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 37\u001b[0m \u001b[0ma_student\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0madd_grade\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mgrade\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mprefix\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;34m\"weighted_grade\"\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mvalue\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mweighted_total\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0moverwrite\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 38\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 39\u001b[0;31m \u001b[0ma_grade_book\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mapply_calculator\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mcurved_letter_grade\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 40\u001b[0m \u001b[0ma_grade_book\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mprint_grades\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"weighted\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36mapply_calculator\u001b[0;34m(self, a_calculator, **kwargs)\u001b[0m\n\u001b[1;32m 40\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 41\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mapply_calculator\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0ma_calculator\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 42\u001b[0;31m \u001b[0ma_calculator\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mapply\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 43\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 44\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mgrade_names\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36mapply\u001b[0;34m(self, a_grade_book, overwrite)\u001b[0m\n\u001b[1;32m 20\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 21\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mapply\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0ma_grade_book\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0moverwrite\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mTrue\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 22\u001b[0;31m \u001b[0mprefixes\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0ma_grade_book\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgrade_names\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 23\u001b[0m \u001b[0mprefixes\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mlist\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mset\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mx\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mx\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mprefixes\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 24\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36mgrade_names\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 44\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mgrade_names\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 45\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__students\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m>\u001b[0m \u001b[0;36m0\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 46\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__students\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mvalues\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgrade_names\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 47\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 48\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"No grades available\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mTypeError\u001b[0m: 'dict_values' object does not support indexing" + ] + } + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "Sg8KbdAlWfa8", + "colab_type": "text" + }, + "source": [ + "Test you calculator by applying the weights from the syllabus of this course and computing everyone's grade in the course." + ] + }, + { + "cell_type": "code", + "metadata": { + "id": "4vxCiNOeWfa8", + "colab_type": "code", + "colab": {} + }, + "source": [ + "# Your solution here" + ], + "execution_count": 0, + "outputs": [] + } + ] +} \ No newline at end of file