︠9b7f24c6-cc5a-406b-a3d2-9d623182a481︠ 2+3 ︡78e74d40-dc88-4084-b974-bfcd9f57e0ba︡︡{"stdout":"5\n","done":false}︡{"done":true} ︠b1da93ed-3870-4faa-99bd-fe6dc6a5cbbc︠ pi.n() ︡43d5c47a-c74f-4794-81e8-15704707af69︡︡{"stdout":"3.14159265358979\n","done":false}︡{"done":true} ︠022a89ef-559d-449d-a3b8-519576710de9︠ 2**3 2^3 ︡2ee783e0-666f-4d5c-9b92-a4f173c50560︡︡{"stdout":"8\n","done":false}︡{"stdout":"8\n","done":false}︡{"done":true} ︠09691180-c314-4e09-b1ed-c207d4290b71︠ 2<3 ︡de639ecc-10e8-41a7-ba52-0e83d9584af1︡︡{"stdout":"True\n","done":false}︡{"done":true} ︠39486c6a-40ee-4c45-8798-9b781a264384︠ 10/4 10//4 10%4 ︡b88bcca3-5e73-44f9-ba01-a4b7b665cd80︡︡{"stdout":"5/2\n","done":false}︡{"stdout":"2\n","done":false}︡{"stdout":"2\n","done":false}︡{"done":true} ︠a8f59fca-ec0b-4c04-9072-d137b710fb34s︠ 9e9 ︡782b4c49-ba0f-428e-8de0-1ec2fa5c432a︡︡{"stdout":"9.00000000000000e9\n","done":false}︡{"done":true} ︠a7b20eb2-e6ac-4d2a-9b78-4ad384071ed0︠ sin(pi/3) sin(pi/3).n() sin(pi/3).n(digits=4) ︡629bb175-d2e0-419b-8581-bc720ca2d9e2︡︡{"stdout":"1/2*sqrt(3)\n","done":false}︡{"stdout":"0.866025403784439\n","done":false}︡{"stdout":"0.8660\n","done":false}︡{"done":true} ︠a0d3cb9b-d6d4-47d4-8397-d8fe8e73863a︠ a=-5 type(a) a=5/3 type(a) a='kocka' type(a) ︡92881cac-66e4-4def-8a9d-80c2dd2f5c72︡︡{"stdout":"\n","done":false}︡{"stdout":"\n","done":false}︡{"stdout":"\n","done":false}︡{"done":true} ︠2993226a-015e-4b42-82d0-387a35a733ab︠ tan? ︡0593c159-5433-4e02-ab91-a260a5df8518︡︡{"code":{"source":"File: /projects/sage/sage-6.10/local/lib/python2.7/site-packages/sage/functions/trig.py\nSignature : tan(*args, **kwds)\nDocstring :\nThe tangent function.\n\nEXAMPLES:\n\n sage: tan(pi)\n 0\n sage: tan(3.1415)\n -0.0000926535900581913\n sage: tan(3.1415/4)\n 0.999953674278156\n sage: tan(pi/4)\n 1\n sage: tan(1/2)\n tan(1/2)\n sage: RR(tan(1/2))\n 0.546302489843790\n\nWe can prevent evaluation using the \"hold\" parameter:\n\n sage: tan(pi/4,hold=True)\n tan(1/4*pi)\n\nTo then evaluate again, we currently must use Maxima via\n\"sage.symbolic.expression.Expression.simplify()\":\n\n sage: a = tan(pi/4,hold=True); a.simplify()\n 1","mode":"text/x-rst","lineno":-1,"filename":null},"done":false}︡{"done":true} ︠332f5d48-9c63-4869-a997-e975b05f6203︠ def is_divisible_by(number, divisor): return number%divisor == 0 is_divisible_by(9,3) is_divisible_by(7,4) ︡0f1e5c06-392a-4eea-8fbd-a6ec4955b897︡︡{"stdout":"True\n","done":false}︡{"stdout":"False\n","done":false}︡{"done":true} ︠041901e4-d8cd-4672-839a-d3a1e2dc792es︠ var('x') f(x) = x^2 f(5) ︡081e9fa1-fc9e-43ae-9d83-0ea8bd8a92f0︡︡{"stdout":"x\n","done":false}︡{"stdout":"25\n","done":false}︡{"done":true} ︠875827e0-84f7-432a-a8ce-4036771eac96s︠ var('a,b') sin(a + b).simplify_trig().show() ︡a687477a-afc0-4cb2-ae85-c04b5a0083f1︡︡{"stdout":"(a, b)\n","done":false}︡{"html":"
$\\displaystyle \\cos\\left(b\\right) \\sin\\left(a\\right) + \\cos\\left(a\\right) \\sin\\left(b\\right)$
","done":false}︡{"done":true} ︠d1ace0cc-9a1a-4333-a271-e32b166dab9b︠ for i in srange(0,5): print i for i in srange(1,5,2): print i ︡037315ca-830e-40fb-ba9a-9800d565ed04︡︡{"stdout":"0\n1\n2\n3\n4\n","done":false}︡{"stdout":"1\n3\n","done":false}︡{"done":true} ︠41b646e7-66eb-4773-bc95-9e25c6c52917︠ list1 = [1,3,4,7] list1[2] len(list1) ︡3c583927-5c40-451f-97fc-39bdda83531d︡︡{"stdout":"4\n","done":false}︡{"stdout":"4\n","done":false}︡{"done":true} ︠daccdb8d-5621-47cf-ba0b-fbaf9a045dc6︠ list2 = [[0,5],[1,3],[3,4]] list2[0] list2[0][1] ︡8b873c76-4057-4c84-b980-0c189875207d︡︡{"stdout":"[0, 5]\n","done":false}︡{"stdout":"5\n","done":false}︡{"done":true} ︠e36f3fb6-45f3-4aef-9d4e-8891aee3b9af︠ point(list2,size=30,color='red') ︡e6a26b4e-1191-41e1-ab79-4487faf74102︡︡{"once":false,"done":false,"file":{"show":true,"uuid":"3fb04c01-ee96-437a-a055-1ce52289c120","filename":"/projects/deb543f0-64c7-4e12-a8c6-32e4785eaa9f/.sage/temp/compute1-us/13269/tmp_y0C9O4.svg"}}︡{"html":"
","done":false}︡{"done":true} ︠4d2068d0-f34c-4c65-a9fa-7bb9d3f0d77b︠ var('x') solve(x^2-3*x+2,x) ︡508f7842-576c-443d-a0bc-594b9ff39693︡︡{"stdout":"x\n","done":false}︡{"stdout":"[x == 1, x == 2]","done":false}︡{"stdout":"\n","done":false}︡{"done":true} ︠aad357ea-f4ef-4519-9bab-2e158f0a93ac︠ var('x,y') solve([x+y==6, x-y==4], x, y) ︡28c867a8-cdbf-4531-89ae-eeec2e9ac771︡︡{"stdout":"(x, y)\n","done":false}︡{"stdout":"[[x == 5, y == 1]]\n","done":false}︡{"done":true} ︠48b3d312-a61a-429f-abcf-7d85e07c65ae︠ diff(sin(x^2),x) diff(sin(x^2),x,4) ︡1769cd7b-296b-4919-8b5b-1ed4b3c44b43︡︡{"stdout":"2*x*cos(x^2)\n","done":false}︡{"stdout":"16*x^4*sin(x^2) - 48*x^2*cos(x^2) - 12*sin(x^2)\n","done":false}︡{"done":true} ︠bd6d0062-b364-454f-9d22-683629a4d891s︠ limit((x ^ 2 + 1) / (2 + x + 3 * x ^ 2), x=Infinity) ︡75dbaf84-1939-47f9-8e8d-2298d504ad34︡︡{"stdout":"1/3","done":false}︡{"stdout":"\n","done":false}︡{"done":true} ︠2c1f702b-33cb-41b8-abf1-e37d9a009b97︠ var('x,y') f = x^2+3*y^2 f.diff(x) f.diff(y) ︡c9b6ba78-14de-43a5-bedf-9e7ff36d0fdd︡︡{"stdout":"(x, y)\n","done":false}︡{"stdout":"2*x\n","done":false}︡{"stdout":"6*y\n","done":false}︡{"done":true} ︠37de9e36-554e-4a00-8a66-1df15aae43abs︠ integral(x*sin(x^2),x).show() ︡5effca6e-2bad-4e4d-8206-fd7babcd13d9︡︡{"html":"
$\\displaystyle -\\frac{1}{2} \\, \\cos\\left(x^{2}\\right)$
","done":false}︡{"done":true} ︠596b4106-b83c-4b51-9cd1-daf36bbb46c2︠ integral(sin(x),x,pi,2*pi) sin(x).integral(x,pi,2*pi) ︡29f68e3f-ce24-4c50-93a5-3ec07da038b3︡︡{"stdout":"-2\n","done":false}︡{"stdout":"-2\n","done":false}︡{"done":true} ︠c307fab2-2071-4a58-b410-edc14fb31bf6s︠ numerical_integral(exp(-x^2),-infinity,infinity) ︡7936749d-811c-4857-956b-b5194c02cfbd︡︡{"stdout":"(1.7724538509055137, 3.429548872025538e-08)\n","done":false}︡{"done":true} ︠eab67fc5-5a75-43e3-9509-9f6108680104︠ t = var('t') x = function('x')(t) DE = diff(x, t) + x - 1 desolve(DE, [x,t]) ︡5d72c25a-c09c-4fed-85fc-c36566505bea︡︡{"stdout":"(_C + e^t)*e^(-t)\n","done":false}︡{"done":true} ︠8fea84b8-5770-4b43-bc06-9341cfe6b034︠ var('phi') find_root(cos(phi)==sin(phi),0,pi/2) ︡2baa6bbf-b13e-48da-ae69-22d5afca2f08︡︡{"stdout":"phi\n","done":false}︡{"stdout":"0.7853981633974484\n","done":false}︡{"done":true} ︠afad46af-5eef-49fe-b342-f6498f426237︠ var('x') plot(cos(x),x,-2*pi,4*pi,ticks=pi,tick_formatter=pi) ︡5c49486a-f3f9-4b7d-8171-046ee940a9a8︡︡{"stdout":"x\n","done":false}︡{"once":false,"done":false,"file":{"show":true,"uuid":"21021871-bcce-47a5-bfe9-5007d6bf5cae","filename":"/projects/deb543f0-64c7-4e12-a8c6-32e4785eaa9f/.sage/temp/compute1-us/13269/tmp_eNr5JN.svg"}}︡{"html":"
","done":false}︡{"done":true} ︠f6b5a5cb-9334-4df8-8ffd-2b69e5a4af70︠ c=circle((0,0), 1, rgbcolor=(1,1,0), fill=True) c.show() #c.save('kruh.pdf') ︡0545bc7a-19fd-4b52-a13a-e1854a3dd781︡︡{"once":false,"done":false,"file":{"show":true,"uuid":"104713f5-19c1-47eb-9d07-63868a5324de","filename":"/projects/deb543f0-64c7-4e12-a8c6-32e4785eaa9f/.sage/temp/compute1-us/13269/tmp_RI6liT.svg"}}︡{"html":"
","done":false}︡{"done":true} ︠e4d11f84-3a83-46c2-8530-7140b1375077︠ var('x') plot(cos(x),x,0,2*pi)+plot(sin(x),x,0,2*pi,color='red') ︡a9706c6c-9464-48e0-925f-0e8a5d0ecee5︡︡{"stdout":"x\n","done":false}︡{"once":false,"done":false,"file":{"show":true,"uuid":"81a5b2d0-313a-4e0a-8fbb-3e74d043f551","filename":"/projects/deb543f0-64c7-4e12-a8c6-32e4785eaa9f/.sage/temp/compute1-us/13269/tmp_RoMbQW.svg"}}︡{"html":"
","done":false}︡{"done":true} ︠145ccccb-9932-4fba-a5ba-fab612192b33︠ var('x') plot(cos(x),x,0,2*pi)+line([(1,0),(1,cos(1))],linestyle='dashed') ︡19a284e2-bc3a-47e8-b7d3-bd0ed20b6c87︡︡{"stdout":"x\n","done":false}︡{"once":false,"done":false,"file":{"show":true,"uuid":"5822c4ac-c03e-447c-83df-c7f7c5893677","filename":"/projects/deb543f0-64c7-4e12-a8c6-32e4785eaa9f/.sage/temp/compute1-us/13269/tmp_dwkb9g.svg"}}︡{"html":"
","done":false}︡{"done":true} ︠ee9673d6-d924-4859-b1cc-96bd878ddb82︠ var('x,y') contour_plot(x^2-y^3+10*sin(x*y), (x, -4, 4), (y, -4, 4),plot_points=121,cmap='hsv') ︡f4c9791d-a54d-4826-bbe4-dd9c324abb4d︡︡{"stdout":"(x, y)\n","done":false}︡{"once":false,"done":false,"file":{"show":true,"uuid":"15c9a519-9d47-4886-a729-6699141a04e4","filename":"/projects/deb543f0-64c7-4e12-a8c6-32e4785eaa9f/.sage/temp/compute1-us/13269/tmp_WKkRbJ.svg"}}︡{"html":"
","done":false}︡{"done":true} ︠e2fafe33-1328-4720-b0a1-0d3b0d0faf09︠ var('x,y') plot3d(x^2 + y^2, (x,-2,2), (y,-2,2)) ︡b4294227-c54b-48a6-8208-b635fc6b407e︡︡{"stdout":"(x, y)\n","done":false}︡{"done":false,"file":{"uuid":"e9d1d0be-9f12-4b16-874e-36fa648ea5cb","filename":"e9d1d0be-9f12-4b16-874e-36fa648ea5cb.sage3d"}}︡{"html":"
","done":false}︡{"done":true} ︠b6474c33-ddaa-4c00-8269-0ad42e4c6c67︠ A = matrix([[1,2,3],[3,2,1],[1,1,1]]) w = vector([1,1,-4]) A*w w*A A.eigenvalues() A.eigenvectors_right() ︡02811fb3-89b6-4a8d-b8b1-f19f6536fad6︡︡{"stdout":"(-9, 1, -2)\n","done":false}︡{"stdout":"(0, 0, 0)\n","done":false}︡{"stdout":"[5, 0, -1]\n","done":false}︡{"stdout":"[(5, [\n(1, 13/11, 6/11)\n], 1), (0, [\n(1, -2, 1)\n], 1), (-1, [\n(1, -1, 0)\n], 1)]\n","done":false}︡{"done":true} ︠ad8c7e14-18e1-4de2-bc83-50f8e87f0279s︠ B = matrix([[1,2],[3,4]]) B.det() v = vector([0,1]) B.solve_right(v) B.inverse() ︡ca913f30-8f1f-4cec-85ef-1fb1f4ce69de︡︡{"stdout":"-2\n","done":false}︡{"stdout":"(1, -1/2)\n","done":false}︡{"stdout":"[ -2 1]\n[ 3/2 -1/2]\n","done":false}︡{"done":true} ︠547b92eb-95ce-41ee-851b-141982c55dde︠ a = Sudoku('5...8..49...5...3..673....115..........2.8..........187....415..3...2...49..5...3') a next(a.solve()) ︡3ca099fe-45a1-4016-a55b-701a5051ab2c︡︡{"stdout":"+-----+-----+-----+\n|5 | 8 | 4 9|\n| |5 | 3 |\n| 6 7|3 | 1|\n+-----+-----+-----+\n|1 5 | | |\n| |2 8| |\n| | | 1 8|\n+-----+-----+-----+\n|7 | 4|1 5 |\n| 3 | 2| |\n|4 9 | 5 | 3|\n+-----+-----+-----+\n","done":false}︡{"stdout":"+-----+-----+-----+\n|5 1 3|6 8 7|2 4 9|\n|8 4 9|5 2 1|6 3 7|\n|2 6 7|3 4 9|5 8 1|\n+-----+-----+-----+\n|1 5 8|4 6 3|9 7 2|\n|9 7 4|2 1 8|3 6 5|\n|3 2 6|7 9 5|4 1 8|\n+-----+-----+-----+\n|7 8 2|9 3 4|1 5 6|\n|6 3 5|1 7 2|8 9 4|\n|4 9 1|8 5 6|7 2 3|\n+-----+-----+-----+\n","done":false}︡{"done":true} ︠d988c6f7-2f5b-4be0-b63b-85839fe3785cs︠ var('a,b') matrix([[a,b],[b,a]]).det() ︡c8b00d05-ee2f-4af9-8798-4bc3f3537775︡︡{"stdout":"(a, b)\n","done":false}︡{"stdout":"a^2 - b^2\n","done":false}︡{"done":true} ︠60ed9dc8-e530-4f84-a570-a38e0ca9091d︠ import scipy from scipy import optimize var('l,alpha,y,j,jj'); l = 1; alpha=1 def fun(x): return [4*pi*alpha*l+x[1]+exp(-x[1])*cos(x[0]), -x[0]+exp(-x[1])*sin(x[0])] def fun2(x): return [4*pi*alpha*l+x[1]-exp(-x[1])*cos(x[0]), -x[0]-exp(-x[1])*sin(x[0])] def fun0(x): return [x[1]+exp(-x[1])*cos(x[0]), -x[0]+exp(-x[1])*sin(x[0])] def fun02(x): return [x[1]-exp(-x[1])*cos(x[0]), -x[0]-exp(-x[1])*sin(x[0])] list1 = []; list2 = []; for j in srange(0,40): for jj in srange(-5,-1,0.5): sol = optimize.root(fun, [j, jj]) if sol.success: list1 = list1+[[sol.x[0],sol.x[1]]] sol2 = optimize.root(fun2, [j, jj]) if sol2.success: list1 = list1+[[sol2.x[0],sol2.x[1]]] sol3 = optimize.root(fun0, [j, jj]) if sol3.success: list2 = list2+[[sol3.x[0],sol3.x[1]]] sol4 = optimize.root(fun02, [j, jj]) if sol4.success: list2 = list2+[[sol4.x[0],sol4.x[1]]] (point(list1,size=40)+point(list2,size=40,color='red',axes_labels=['Re $k$','Im $k$'],axes_labels_size=1.3, xmin=0)) list1 list2 ︡f02fd1c4-6446-43c2-98e1-043ee8f3b9be︡︡{"stdout":"(l, alpha, y, j, jj)\n","done":false}︡{"done":false,"stderr":"/projects/sage/sage-6.10/local/lib/python2.7/site-packages/scipy/optimize/minpack.py:236: RuntimeWarning: The iteration is not making good progress, as measured by the \n improvement from the last ten iterations.\n warnings.warn(msg, RuntimeWarning)\n/projects/sage/sage-6.10/local/lib/python2.7/site-packages/scipy/optimize/minpack.py:236: RuntimeWarning: The iteration is not making good progress, as measured by the \n improvement from the last five Jacobian evaluations.\n warnings.warn(msg, RuntimeWarning)\n"}︡{"once":false,"done":false,"file":{"show":true,"uuid":"8a9ea564-e248-4258-a672-ab4e0579ac5c","filename":"/projects/deb543f0-64c7-4e12-a8c6-32e4785eaa9f/.sage/temp/compute1-us/13562/tmp_4jtdUq.svg"}}︡{"html":"
","done":false}︡{"stdout":"[[8.3178266735179471e-18, -2.3263077579169575], [1.1316755983480576e-17, -2.3263077579169691], [1.5521633432800781e-18, -2.3263077579169575], [-8.7445520472860571e-19, -2.3263077579169575], [4.237563305315237e-20, -2.3263077579169575], [1.7998217588381106e-21, -2.3263077579169651], [-8.7620170937011011e-21, -2.3263077579169571], [2.015314828388391e-17, -2.326307757917065], [2.8676631247954121, -2.3609195178131968], [-1.5507644140317223e-13, -2.3263077579168798], [2.867663124782263, -2.3609195178329836], [2.62546846920002e-14, -2.3263077579169651], [2.8676631247835811, -2.3609195178338798], [6.3299265786873251e-12, -2.32630775790114], [2.8676631247674096, -2.3609195178690379], [-1.2423917017809147e-12, -2.3263077579225082], [2.8676631247811453, -2.360919517832996], [7.5935347028065185e-12, -2.3263077579252802], [2.8676631247812856, -2.3609195178163365], [2.3877627489599913e-11, -2.3263077579118678], [2.867663124782486, -2.3609195178329849], [-4.2017793240153008e-15, -2.3263077579169722], [2.8676631247676405, -2.3609195178438624], [2.2636085979479938e-12, -2.3263077579155831], [2.8676631247798752, -2.3609195178410052], [2.2446684279672261e-10, -2.3263077585166272], [2.8676631247836477, -2.3609195178349398], [-2.5870117344106017e-14, -2.3263077579169598], [2.8676631247603988, -2.3609195177860713], [-2.397517096895285e-13, -2.3263077579172098], [2.8676631247820614, -2.3609195178315669], [2.9966964467347876e-11, -2.3263077579225069], [2.8676631247824105, -2.3609195178373232], [5.2916074425387251e-14, -2.3263077579168674], [2.8676631247960773, -2.3609195178088469], [-2.5132194363203538e-14, -2.3263077579169664], [2.8676631247824602, -2.360919517832988], [6.8920456962489587e-11, -2.3263077579236637], [2.8676631247828164, -2.3609195178330102], [3.8444922170008373e-11, -2.3263077579073945], [2.8676631248614393, -2.3609195178218609], [5.7650254798991529, -2.4544368276845794], [2.8676631249416689, -2.3609195178067983], [2.2709690961824608e-14, -2.3263077579168816], [2.8676631247455835, -2.3609195178406992], [5.7650254798987906, -2.4544368276859432], [2.8676631247841997, -2.3609195178324667], [5.7650254798986689, -2.4544368276853032], [2.8676631248056448, -2.3609195178198474], [5.7650254805207233, -2.4544368282037494], [2.8676631247824642, -2.3609195178330089], [5.8144740057113088e-13, -2.3263077579165787], [2.8676631249354108, -2.3609195180025422], [2.3199503752342337e-14, -2.3263077579170317], [2.8676631247824544, -2.36091951783298], [5.7650254798985578, -2.4544368276854973], [2.8676631247822302, -2.3609195178328553], [5.7650254798987364, -2.4544368276857123], [2.8676631247682947, -2.3609195178291946], [5.7650254798920946, -2.4544368276890225], [2.8676631247735425, -2.3609195178618898], [5.7650254798986964, -2.4544368276856559], [2.867663124782494, -2.360919517833227], [5.7650254797182212, -2.4544368278291513], [2.8676631247737543, -2.3609195178296081], [5.7650254799453844, -2.4544368277007713], [2.8676631247821418, -2.3609195178329454], [5.7650254798953853, -2.4544368276886166], [2.8676631247824695, -2.3609195178329934], [5.765025479899097, -2.4544368276808219], [2.867663124782466, -2.3609195178329578], [5.7650254799265728, -2.4544368276758814], [2.867663124782454, -2.36091951783298], [5.7650254799009399, -2.4544368276895012], [2.8676631248625677, -2.3609195178349816], [5.7650254798987364, -2.4544368276857131], [2.8676631247802753, -2.3609195178321181], [5.7650254797466509, -2.4544368273847579], [2.8676631246885127, -2.3609195178396272], [5.7650254795911282, -2.4544368264638501], [2.8676631247824824, -2.3609195178328317], [5.765025479898723, -2.4544368276856687], [2.8676631248083617, -2.3609195178141986], [5.7650254798858835, -2.4544368276795518], [2.867663124782601, -2.3609195178330462], [5.7650254798987417, -2.4544368276857171], [2.8676631247823137, -2.3609195178329898], [5.765025479898731, -2.4544368276857584], [8.7074989274917822, -2.5837436703346146], [5.7650254800505021, -2.4544368276468429], [2.8676631247767053, -2.3609195178370834], [5.7650254798318814, -2.4544368277061213], [8.7074989274012324, -2.5837436704313568], [5.765025479898358, -2.4544368276858566], [8.7074989275026375, -2.5837436703342069], [5.7650254798990455, -2.4544368276855213], [2.8676631249041962, -2.360919517824247], [5.7650254798894478, -2.4544368277001691], [5.7650254798995197, -2.4544368276855568], [2.8676631248204316, -2.3609195178468352], [5.7650254798985188, -2.454436827685246], [8.707498927500982, -2.5837436703323315], [5.7650254798986413, -2.4544368276856754], [8.7074989275007759, -2.5837436703324674], [5.7650254798564875, -2.4544368276725641], [8.7074989275003105, -2.5837436703343588], [5.7650254799004301, -2.4544368276858877], [8.7074989275073609, -2.5837436703312058], [5.7650254798978207, -2.4544368276858268], [8.7074989274737682, -2.5837436703776571], [5.7650254798625173, -2.4544368276728519], [8.7074989275015842, -2.5837436703322689], [5.7650254798976697, -2.4544368276855963], [8.7074989275044157, -2.5837436703318666], [5.7650254799086982, -2.4544368276852331], [8.70749892757377, -2.5837436703771948], [5.7650254798908485, -2.4544368276859507], [8.7074989275088068, -2.5837436703319705], [5.7650254798938239, -2.4544368276793933], [8.7074989275010033, -2.5837436703324332], [5.7650254798987302, -2.4544368276857269], [8.7074989274985253, -2.5837436703291337], [5.7650254798987293, -2.4544368276857127], [8.707498927703675, -2.5837436707434929], [5.765025479899121, -2.4544368276862847], [8.7074989275011312, -2.5837436703331811], [5.7650254798956961, -2.45443682768629], [8.7074989274951289, -2.583743670306772], [5.7650254799064022, -2.4544368276702846], [8.7074989275012804, -2.5837436703349543], [5.7650254799405189, -2.4544368277096629], [8.7074989275000299, -2.5837436703297008], [5.765025479898144, -2.4544368276722115], [8.7074989275009091, -2.583743670332221], [-5.7650254798986671, -2.4544368276856994], [8.7074989275011898, -2.5837436703323715], [8.7074989275046875, -2.5837436703309526], [5.765025479897993, -2.4544368276853441], [8.7074989273175021, -2.5837436704330599], [5.7650254800907828, -2.454436827677771], [8.7074989318356586, -2.5837436662971727], [11.695023912890752, -2.7267858869433872], [8.7074989275013497, -2.5837436703297789], [5.7650254798950717, -2.454436827683133], [8.7074989275025967, -2.5837436703341554], [5.7650254798957885, -2.454436827687168], [8.707498927500998, -2.5837436703324284], [5.7650254798943177, -2.4544368276889603], [8.7074989275238526, -2.583743670286577], [11.695023912889294, -2.7267858869455579], [8.7074989275324022, -2.5837436703720926], [11.69502391287331, -2.7267858869413644], [8.7074989275381522, -2.5837436703723031], [11.69502391262329, -2.7267858868371113], [8.7074989275009944, -2.5837436703324386], [11.695023912888951, -2.7267858869453363], [8.7074989275824137, -2.5837436702938774], [11.695023912888622, -2.7267858869419328], [8.7074989277300183, -2.5837436703428409], [11.695023912890653, -2.7267858869433699], [8.7074989274918888, -2.5837436703309544], [11.695023912889511, -2.7267858869453039], [8.7074989275090786, -2.5837436703319874], [11.695023912889214, -2.726785886945585], [8.7074989274952959, -2.5837436703311707], [11.695023912889305, -2.7267858869455446], [8.7074989275028916, -2.5837436703349441], [11.695023912941824, -2.7267858870058439], [8.7074989275012999, -2.583743670333047], [11.695023912880401, -2.7267858869328974], [8.7074989275018631, -2.5837436703325358], [11.695023912889598, -2.7267858869462049], [8.7074989276554398, -2.5837436702832597], [11.695023912891903, -2.7267858869732908], [8.7074989273853447, -2.5837436703436705], [11.695023912889098, -2.7267858869459811], [8.707498927646828, -2.58374367028514], [11.695023912889276, -2.7267858869455748], [8.7074989274997048, -2.5837436703289263], [11.695023912877065, -2.7267858868896901], [-2.8676631247820916, -2.3609195178329925], [11.695023912852179, -2.7267858868491071], [8.7074989275109758, -2.5837436703337073], [11.695023912888155, -2.726785886945799], [8.7074989275200085, -2.5837436702351932], [11.695023912891209, -2.7267858869446737], [8.7074989275473698, -2.5837436703268448], [11.695023912859922, -2.7267858869646213], [8.7074989274551555, -2.5837436703310197], [11.695023912892044, -2.7267858869420096], [8.7074989275010175, -2.5837436703324101], [11.695023912888983, -2.7267858869447292], [8.7074989274020087, -2.5837436703364469], [11.695023915332978, -2.7267858855785785], [14.719685947875897, -2.8694141015698031], [11.695023912897948, -2.7267858869536785], [8.7074989275011792, -2.5837436703324177], [11.695023912889281, -2.7267858869455219], [14.71968594795632, -2.8694141013426346], [11.695023914642213, -2.7267858882011446], [14.719685947961377, -2.8694141013454555], [11.695023912889242, -2.7267858869455073], [14.719685947963704, -2.869414101347088], [11.695023912888955, -2.7267858869454633], [14.719685947964507, -2.8694141013095282], [11.695023912885713, -2.726785886944918], [14.719685947968101, -2.8694141013506496], [11.695023912928104, -2.7267858869383415], [14.719685947963661, -2.8694141013470871], [11.695023913031033, -2.7267858869461921], [14.71968594796361, -2.8694141013472598], [11.695023912846294, -2.7267858869221313], [14.719685947958842, -2.8694141013412855], [11.695023914017341, -2.7267858867651236], [14.719685947490937, -2.8694141007443887], [11.695023912889308, -2.7267858869455366], [14.719685948795254, -2.8694141027191824], [11.695023912888697, -2.7267858869453918], [14.719685947963653, -2.8694141013469259], [11.695023912899451, -2.7267858869418213], [14.719685947963704, -2.8694141013470826], [11.695023912867724, -2.7267858869492687], [14.719685947963729, -2.8694141013470613], [11.695023912889241, -2.7267858869441044], [14.719685947968308, -2.8694141013572825], [5.7650254798987302, -2.4544368276857123], [14.719685947961874, -2.8694141013491392], [5.7650254798991858, -2.4544368276858939], [14.719685957358962, -2.8694141111250171], [-1.8031479570681025e-13, -2.3263077579214326], [14.719685947910387, -2.8694141013659826], [5.7650254798991396, -2.4544368276857722], [14.719685947601732, -2.8694141015102712], [5.765025480159407, -2.4544368277673718], [14.719685947946846, -2.8694141013586849], [11.695023912887171, -2.7267858869455668], [14.719685947981421, -2.8694141013183376], [11.69502391289268, -2.7267858869417783], [14.719685947983164, -2.8694141013562486], [11.695023912889345, -2.7267858869442287], [14.719685947966839, -2.8694141013198755], [5.7650254798968081, -2.4544368276762834], [14.719685947963363, -2.8694141013467189], [17.772347295502207, -3.0047515445004414], [14.719685947965706, -2.8694141013240415], [11.695023912859424, -2.7267858860950076], [14.719685947948076, -2.8694141013405536], [17.772347295483545, -3.0047515445107384], [14.719685948190536, -2.8694141013076981], [17.772347295592919, -3.0047515446619215], [14.719685947690834, -2.8694141012845753], [17.772347295231953, -3.0047515445516964], [14.7196859479631, -2.8694141013474734], [17.772347295500115, -3.0047515444986086], [14.719685947966326, -2.8694141013461958], [17.772347295498385, -3.0047515444664876], [14.719685947870412, -2.8694141013621683], [17.772347295508226, -3.0047515446114494], [14.719685947914032, -2.869414101255404], [17.772347295599708, -3.0047515445280735], [14.719685947842269, -2.8694141013751278], [17.772347303445986, -3.004751546248996], [14.71968594796366, -2.8694141013470458], [17.772347295502382, -3.0047515445009814], [14.719685947965351, -2.8694141013486272], [17.772347295483623, -3.0047515444620925], [14.719685947964079, -2.8694141013449039], [17.772347295495983, -3.0047515444765764], [14.71968594788602, -2.8694141013297383], [17.772347295501312, -3.0047515444989776], [14.719685947926932, -2.8694141013367842], [17.772347295296626, -3.004751544331342], [-2.867663124778872, -2.3609195178381985], [17.77234729550144, -3.0047515444995216], [-8.7074989278257302, -2.5837436706906582], [17.772347295501216, -3.0047515444993786], [-2.86766312478245, -2.3609195178329792], [17.772347295500097, -3.004751544497791], [2.8676631247820041, -2.3609195178163755], [17.772347295806316, -3.0047515444087778], [2.8676631247827737, -2.3609195178332736], [17.77234729550106, -3.0047515444996518], [14.719685948039846, -2.8694141012444088], [17.772347295501625, -3.0047515444993831], [8.7074989275068138, -2.5837436703790311], [17.772347295522955, -3.0047515444620756], [14.719685947965178, -2.8694141013466807], [17.772347295499976, -3.004751544502867], [-2.86766312475222, -2.3609195178542572], [17.77234729550316, -3.0047515445021138], [20.845421851918552, -3.1303357186014376], [17.772347295520337, -3.0047515444558561], [-2.8676631247824544, -2.36091951783298], [17.772347295493979, -3.0047515445126045], [20.84542185175706, -3.1303357185973866], [17.772347294015994, -3.0047515443630575], [20.845421851810787, -3.1303357186418506], [17.772347295486021, -3.0047515444963437], [20.845421851757258, -3.1303357185953735], [17.772347294964813, -3.0047515442736068], [20.84542185175647, -3.1303357185964469], [17.77234729549993, -3.0047515444993889], [20.845421851757887, -3.1303357185878409], [17.772347295492374, -3.0047515444989714], [20.845421851749265, -3.1303357183812119], [17.772347295327386, -3.0047515444632786], [20.845421851756463, -3.1303357185965228], [17.77234729580076, -3.0047515443393173], [20.845421851768144, -3.1303357185794467], [17.772347295467679, -3.0047515444709298], [20.845421851747744, -3.1303357185807488], [17.772347295395619, -3.0047515441207442], [20.845421851897378, -3.1303357189934449], [17.772347295557083, -3.0047515444948449], [20.845421851776578, -3.1303357186647838], [17.772347295445982, -3.004751544749463], [20.845421851518839, -3.1303357190170895], [17.772347295509476, -3.0047515444880046], [20.845421851856567, -3.1303357187952603], [17.772347295494306, -3.0047515445342969], [20.845421851764698, -3.130335718601005], [17.772347296197207, -3.0047515445130992], [20.845421851873553, -3.130335718763761], [-5.7650254798975746, -2.4544368277073718], [20.845421851754956, -3.1303357185968825], [1.3537945811342206e-12, -2.3263077579171312], [20.845421851707311, -3.1303357186065801], [11.695023912889278, -2.7267858869451018], [20.845421851768247, -3.1303357185932543], [5.7650254799775702, -2.4544368278130744], [20.845421851840211, -3.1303357185586904], [11.695023912886354, -2.7267858869499699], [20.845421851758481, -3.1303357185917395], [5.7650254798960621, -2.4544368276798387], [20.845421851633333, -3.1303357187149046], [17.772347295501405, -3.0047515444995332], [20.845421851758829, -3.1303357185976219], [11.695023912889768, -2.7267858869464354], [20.845421851753226, -3.130335718600421], [17.77234729550139, -3.0047515444995456], [20.845421851840463, -3.1303357185906058], [11.695023912884697, -2.7267858869748749], [20.845421851468029, -3.1303357194982673], [23.933311480470568, -3.2458736912067718], [20.845421851741254, -3.1303357186440466], [23.933311480566964, -3.2458736912244688], [20.845421851755756, -3.1303357185978458], [23.933311480568314, -3.2458736912261394], [20.845421851761554, -3.1303357185917462], [23.933311480573945, -3.2458736912296109], [20.845421852233887, -3.1303357185650156], [23.933311480566793, -3.2458736912262096], [20.845421851756445, -3.1303357185964846], [23.933311480567369, -3.2458736912275334], [20.845421851760396, -3.130335718595898], [23.933311480534226, -3.2458736912350039], [20.845421851783509, -3.1303357185736442], [23.933311480575188, -3.245873691268844], [20.845421851756473, -3.1303357185960614], [23.933311480568264, -3.2458736912261617], [20.845421851756456, -3.1303357185965899], [23.933311478816385, -3.2458736864547024], [20.845421851761937, -3.1303357185956799], [23.933311480568292, -3.2458736912261439], [20.845421851764499, -3.1303357185896963], [23.933311480568268, -3.2458736912261146], [20.845421851756058, -3.1303357185956053], [23.933311481160725, -3.2458736925983365], [-2.8676631247824558, -2.3609195178329796], [23.933311480894883, -3.2458736911606136], [-2.8676631247824385, -2.3609195178328486], [23.933311480677919, -3.2458736912105026], [2.8676631250379843, -2.3609195178124032], [23.933311480568488, -3.2458736912303334], [14.719685947963184, -2.8694141013473327], [23.933311480569795, -3.2458736912260426], [8.7074989275025736, -2.5837436703290062], [23.933311480690758, -3.2458736912122075], [8.7074989275014953, -2.5837436703316672], [23.933311479791715, -3.2458736913830322], [8.707498926930695, -2.5837436689881108], [23.933311480569611, -3.2458736912252095], [2.8676631247822937, -2.3609195178329805], [23.933311480569753, -3.2458736912273918], [-8.7074989276930364, -2.583743670296125], [23.933311480626337, -3.2458736912377892], [-8.7074989275061618, -2.5837436703491825], [23.933311480568285, -3.2458736912271111], [-2.8676631247350617, -2.3609195178027598], [23.933311480611856, -3.2458736912484785], [27.032054693875235, -3.351984634071663], [23.933311480564271, -3.245873691238002], [27.032054693877477, -3.351984634071552], [23.933311481279933, -3.2458736887419106], [27.032054693918504, -3.351984634074276], [23.933311480566836, -3.2458736912255666], [27.032054693744332, -3.3519846341407376], [23.93331148067886, -3.2458736913666968], [27.032054692956176, -3.3519846338361483], [23.933311479741732, -3.245873691149336], [27.03205469373756, -3.3519846340104307], [23.933311480568332, -3.245873691226203], [27.032054693849901, -3.3519846341651802], [23.933311480552614, -3.2458736913960013], [27.032054693842376, -3.3519846340674193], [23.933311480561979, -3.2458736912413411], [27.03205469288995, -3.3519846314812027], [23.933311480567511, -3.2458736912261887], [27.032054693868691, -3.3519846338906607], [23.933311480568143, -3.245873691226246], [27.032054693893311, -3.3519846340624375], [23.933311480484839, -3.2458736912695789], [27.032054693877896, -3.351984634070746], [23.933311480566278, -3.2458736912239474], [27.032054693877409, -3.3519846340709001], [23.933311480567088, -3.245873691222275], [27.032054693978459, -3.3519846340648805], [-1.7519188201570374e-17, -2.3263077579169575], [27.0320546938717, -3.3519846340385824], [-5.7650254798981164, -2.4544368276853796], [27.032054693903014, -3.351984634135436], [5.7650254798863081, -2.4544368276834128], [27.032054693881761, -3.3519846340711257], [17.772347294725094, -3.004751544581779], [27.032054694046796, -3.3519846340895527], [5.7650254798985596, -2.4544368276857127], [27.03205469174452, -3.35198463369378], [17.772347295516354, -3.0047515444815156], [27.032054693867774, -3.3519846340640926], [-1.2658127742095932e-12, -2.3263077579155], [27.032054693750204, -3.351984634083331], [17.7723472954975, -3.0047515444887138], [27.032054693166142, -3.3519846340974846], [-1.6665623654785076e-14, -2.3263077579169638], [27.032054693877477, -3.351984634070754], [-5.7650254799029046, -2.4544368276821231], [27.032054693877619, -3.3519846340707762], [11.695023912902855, -2.7267858869445343], [27.032054693888895, -3.3519846340423487], [30.138871975135231, -3.4495929527146982], [27.032054693874286, -3.35198463409853], [30.138871975295697, -3.4495929528716345], [27.032054693637296, -3.3519846339944457], [30.138871975130861, -3.4495929527110936], [27.032054693871963, -3.3519846340708881], [30.138871975134851, -3.4495929526878357], [27.032054693893972, -3.3519846338086801], [30.138871975126914, -3.4495929527087887], [27.032054693877065, -3.3519846340704964], [30.138871975399613, -3.4495929525214559], [27.032054693876987, -3.351984634071429], [23.933311480480175, -3.2458736913335184], [27.032054693899262, -3.3519846340890909], [11.695023912891124, -2.7267858869453092], [27.032054693664612, -3.351984634109892], [30.138871976229986, -3.4495929523648012], [27.032054693750887, -3.3519846337615875], [30.138871974605436, -3.449592951642519], [27.032054693873203, -3.3519846340615964], [30.138871975134389, -3.4495929527111082], [27.032054686338082, -3.3519846301107599], [30.138871975159496, -3.4495929527032172], [27.032054694910762, -3.3519846347809086], [30.138871975138205, -3.4495929527126545], [27.032054694313324, -3.3519846334516581], [30.138871975136347, -3.4495929527114497], [14.719685947962848, -2.8694141013473122], [30.138871973909843, -3.4495929528778553], [8.707498928723556, -2.5837436695339711], [30.138871975134258, -3.4495929527086653], [8.7074989275010068, -2.5837436703324461], [30.138871975153304, -3.4495929527166824], [2.8676631247823563, -2.3609195178329845], [30.138871975134631, -3.449592952711614], [-2.8676631247977196, -2.3609195178440792], [30.138871975854912, -3.4495929532956491], [20.84542185176085, -3.1303357185984195], [30.138871975133327, -3.4495929527111779], [20.845421851756814, -3.1303357185951133], [30.138871974965461, -3.4495929528218552], [-2.8676631247967714, -2.3609195178399101], [30.138871975134645, -3.449592952707206], [-8.7074989280587811, -2.583743670615557], [30.138871975133753, -3.4495929527111993], [-8.707498927506629, -2.5837436703549108], [30.138871975138002, -3.4495929527122651], [33.251799921283407, -3.5396611401367721], [30.138871975693881, -3.4495929514333135], [33.251799920317438, -3.5396611402692222], [30.13887197513376, -3.4495929527107703], [33.25179992033631, -3.5396611401275462], [30.138871975134158, -3.4495929527152183], [33.251799920323748, -3.5396611402646401], [30.138871975038601, -3.4495929526137115], [33.251799920647159, -3.5396611395838935], [30.138871974368765, -3.449592949686076], [33.251799920391854, -3.5396611402411473], [30.138871975132872, -3.4495929527113365], [8.7074989275033676, -2.5837436703326957], [30.138871973421228, -3.4495929450227321], [33.251799913530036, -3.5396611328320735], [30.138871975964729, -3.4495929527406486], [33.251799920323577, -3.5396611402647919], [30.13887197509511, -3.4495929526568512], [33.251799920323968, -3.5396611402661744], [30.138871975008847, -3.449592952756166], [33.251799920569184, -3.5396611402182576], [30.138871975069303, -3.4495929526862628], [33.251799920651351, -3.5396611401429325], [30.138871975179377, -3.4495929527696712], [33.251799920217856, -3.5396611404125866], [30.138871975074252, -3.4495929527168672], [33.251799920323947, -3.5396611402646401], [30.138871975908074, -3.4495929525476785], [33.251799920315477, -3.5396611402843097], [23.933311480408275, -3.245873690595972], [33.251799920311228, -3.5396611402657689], [5.765025479191376, -2.4544368275896833], [33.251799920320103, -3.53966114026273], [-5.7650254798991183, -2.4544368276849209], [33.251799918946162, -3.5396611391472046], [23.933311480570072, -3.2458736912250798], [33.251799920309281, -3.5396611402192328], [11.695023912889308, -2.7267858869455228], [33.251799920363666, -3.5396611401891014], [11.69502391294057, -2.7267858869215855], [33.251799920323776, -3.5396611402645686], [5.7650254798980987, -2.454436827685758], [33.25179991942759, -3.5396611396332003], [5.7650254797947778, -2.4544368277021897], [33.251799920251337, -3.5396611402882034], [-5.7650254798844207, -2.454436827670488], [33.251799920323819, -3.5396611402649998], [-5.7650254798978198, -2.4544368276869033], [33.251799921056204, -3.5396611387991781], [36.369432783089444, -3.6230835389072422], [33.251799920324515, -3.5396611402604274], [36.369432778140059, -3.6230835396833241], [33.25179992033862, -3.5396611401636586], [36.369432778811039, -3.6230835397065642], [33.251799920360675, -3.5396611402345837], [36.369432778028518, -3.6230835397128835], [33.25179992032313, -3.5396611402647964], [36.369432778138986, -3.6230835396820189], [33.251799920322433, -3.5396611402593523], [36.369432777542407, -3.6230835397280505], [33.251799920257483, -3.5396611405157596], [17.772347295501397, -3.0047515444995199], [33.251799920018605, -3.5396611403217908], [36.369432778138901, -3.6230835396820953], [33.251799920323464, -3.5396611402649625], [36.369432777231744, -3.6230835403524901], [33.251799920317772, -3.5396611402486395], [36.369432778139057, -3.6230835396820398], [33.251799920358877, -3.5396611402027758], [36.369432778121457, -3.6230835396026122], [33.251799921284309, -3.5396611391206578], [36.369432778752071, -3.6230835395598171], [33.251799918957275, -3.5396611404626848], [36.369432778137949, -3.6230835396819971], [33.251799920322831, -3.539661140263989], [36.369432778064827, -3.6230835396611281], [27.032054693975244, -3.3519846342672532], [36.369432778243834, -3.6230835396442655], [20.845421851756367, -3.1303357185968679], [1.6664341223922822e-14, -2.3263077579169495], [14.719685947974231, -2.8694141013718886], [36.369432780005106, -3.6230835412361451], [27.032054693617546, -3.3519846340622159], [36.369432778070959, -3.6230835395737255], [8.7074989276843748, -2.5837436703013021], [36.369432778146802, -3.6230835396274168], [2.867663124779789, -2.3609195178283757], [36.369432777385995, -3.6230835401226158], [-14.719685947963152, -2.869414101344709], [36.369432778144869, -3.6230835396726957], [2.8676631247819242, -2.3609195178333895], [36.369432778135753, -3.6230835396783601], [-2.867663124782438, -2.3609195178329561], [36.369432778139824, -3.6230835396827081], [-2.8676631247824997, -2.36091951783302], [39.490747749986724, -3.7006522973023719], [36.369432774569056, -3.6230835455606307], [39.490747751291877, -3.7006522931958252], [36.369432778153708, -3.6230835396033783], [39.490747749705314, -3.7006522972540652], [36.369432778139242, -3.6230835396788263], [39.490747749707708, -3.7006522972572657], [36.36943277813721, -3.6230835392150946], [39.490747749707367, -3.7006522972570388], [36.369432778133913, -3.623083539694997], [8.7074989276449291, -2.5837436707322485], [36.369432778139213, -3.6230835396816268], [8.7074989275007049, -2.5837436703336292], [36.369432770169119, -3.6230835381027742], [2.8676631247824305, -2.3609195178329565], [36.369432778150006, -3.6230835397897128], [39.490747749704973, -3.7006522972535865], [36.369432778152394, -3.6230835396818888], [39.490747749639382, -3.7006522973228542], [36.369432778139036, -3.6230835396819998], [39.490747749710998, -3.7006522972578333], [36.369432778128861, -3.6230835396684782], [39.490747749719681, -3.7006522972573483], [36.369432778103928, -3.6230835396500947], [39.490747749707303, -3.7006522972569416], [36.369432778187424, -3.6230835396983072], [39.490747750612208, -3.7006522968535869], [36.369432778139263, -3.6230835396819931], [33.251799920293287, -3.5396611401083722], [30.138871975114309, -3.4495929527060061], [2.8676631247175659, -2.3609195178308675], [23.933311480566697, -3.2458736912222328], [39.490747749918775, -3.7006522975284857], [23.933311480568992, -3.2458736912255417], [39.490747749707729, -3.7006522972585922], [17.772347295492725, -3.0047515444914548], [39.490747749691103, -3.7006522972716946], [23.933311480568559, -3.245873691226743], [39.490747749317059, -3.7006522974146847], [5.7650254798060763, -2.4544368278058148], [39.490747749408882, -3.7006522974220184], [39.490747749707332, -3.7006522972567888], [2.374827381345916e-13, -2.3263077579169202], [-1.041497834055991e-12, -2.326307757916553], [-5.7650254798004434, -2.454436827694741]]","done":false}︡{"stdout":"\n","done":false}︡{"stdout":"[[-6.0545512592914231e-17, 0.56714329040978384], [3.7057057097269219e-17, 0.56714329040978384], [1.5939530265984091e-17, 0.56714329040978362], [-2.0508546221545102e-17, 0.56714329040978384], [-6.989910005460059e-18, 0.56714329040978395], [1.8085479274610774e-17, 0.56714329040978373], [-5.9447644484194832e-19, 0.56714329040978384], [-1.857349367614147e-18, 0.56714329040978384], [1.3372357014304412, -0.31813150520512345], [2.0290908224476109e-14, 0.56714329040978706], [1.3372357014348577, -0.31813150521599043], [3.1702919765425417e-14, 0.56714329040975386], [1.3372357014306893, -0.31813150520476419], [1.7724814105162074e-13, 0.56714329041004663], [1.337235701430753, -0.31813150520463807], [2.1698790947621651e-14, 0.56714329040979294], [1.3372357014307783, -0.31813150520461336], [3.658125431836533e-11, 0.56714329038699374], [1.3372357014360543, -0.31813150522223471], [-6.9826670656491179e-14, 0.5671432904099083], [1.3372357014303646, -0.31813150520445471], [1.8489222262749303e-14, 0.56714329040981049], [1.3372357014306335, -0.31813150520474931], [9.3693278915847092e-12, 0.56714329042655232], [1.3372357014440173, -0.31813150521056077], [6.1012782704080674e-13, 0.56714329040995215], [1.3372357014317946, -0.31813150520510119], [-3.8472483906484837e-15, 0.56714329040977751], [1.3372357014306895, -0.31813150520476402], [3.3739830149992037e-13, 0.56714329041046008], [1.3372357014306484, -0.31813150520477035], [4.2977447867352713e-14, 0.56714329040981826], [1.3372357014306753, -0.31813150520476691], [-9.7161295647703081e-14, 0.567143290409718], [1.3372357014307201, -0.31813150520475481], [9.9149119213361833e-16, 0.56714329040978617], [1.3372357014705119, -0.31813150518538885], [1.8187624505315165e-13, 0.56714329041027256], [1.3372357014290455, -0.3181315052062223], [5.842773173448983e-18, 0.56714329040978373], [1.3372357014306997, -0.3181315052047537], [4.3751851530619108, -1.5339133197935635], [1.3372357014308129, -0.31813150520438904], [4.3751851530763197, -1.5339133197529566], [1.3372357014288412, -0.31813150519388106], [4.3751851530619508, -1.533913319793748], [1.3372357014309042, -0.31813150520430616], [4.3751851530556722, -1.5339133197501362], [1.3372357014306906, -0.31813150520476591], [4.375185153059344, -1.5339133198072523], [1.3372357014305916, -0.31813150520514094], [4.3751851530619321, -1.533913319793369], [1.337235701429438, -0.31813150523325551], [4.3751851530681769, -1.5339133197865051], [1.3372357014305576, -0.31813150520404226], [4.3751851530621106, -1.533913319794076], [1.3372357014314828, -0.31813150519898331], [4.3751851530618158, -1.5339133197935195], [1.3372357014223846, -0.31813150521495898], [4.3751851526501566, -1.5339133194414092], [1.3372357014306862, -0.31813150520478156], [4.375185153061822, -1.5339133197934807], [1.3372357014307146, -0.31813150520473893], [4.3751851530930335, -1.5339133198180399], [1.3372357014306826, -0.31813150520475647], [4.3751851551463306, -1.5339133218454237], [1.3372357014306706, -0.31813150520472994], [4.3751851530618833, -1.5339133197935499], [1.3372357014295573, -0.31813150520656525], [4.3751851530619046, -1.5339133197935786], [1.3372357014330754, -0.31813150520276529], [4.3751851530615058, -1.533913319794115], [1.3372357014364638, -0.31813150519873434], [4.3751851530620263, -1.5339133197940509], [1.3372357014083078, -0.31813150522330974], [4.3751851530618904, -1.533913319793575], [-1.3372357014076666, -0.31813150522344263], [4.3751851530611159, -1.5339133197941706], [1.337235701430681, -0.31813150520479372], [4.3751851530611967, -1.533913319794145], [1.3372357014306866, -0.31813150520476446], [4.3751851528681254, -1.5339133200207604], [-1.3372357014306882, -0.31813150520478201], [4.3751851530635895, -1.5339133197891806], [1.3372357014306888, -0.31813150520476369], [4.3751851530618984, -1.5339133197935746], [-1.3372357014306946, -0.31813150520478478], [4.37518515304538, -1.5339133197895096], [7.5886311789141683, -2.0622777295782373], [4.3751851530618771, -1.5339133197935608], [7.5886311784707505, -2.0622777296027714], [4.3751851530601353, -1.5339133197950197], [7.5886311784537037, -2.0622777295784775], [4.3751851529932013, -1.5339133199069115], [7.5886311784759721, -2.0622777296054071], [4.3751851530282373, -1.5339133198158701], [7.5886311784775975, -2.062277729594669], [4.3751851530030317, -1.5339133198064445], [7.58863117846896, -2.0622777295988364], [4.3751851530626009, -1.5339133197922572], [7.5886311784710694, -2.0622777295990233], [4.3751851530619286, -1.5339133197935853], [7.5886311786687299, -2.0622777296882013], [4.3751851530622075, -1.5339133197937733], [7.5886311784702549, -2.0622777295952646], [4.2808501732759044e-14, 0.56714329040977718], [7.5886311784959606, -2.062277729629105], [9.5172647562100222e-15, 0.56714329040981915], [7.5886311784639338, -2.0622777295885109], [-4.8686378212463542e-16, 0.56714329040979083], [7.5886311783854303, -2.0622777294611039], [-1.4301878940439478e-13, 0.56714329040983635], [7.5886311783310409, -2.0622777291125884], [-6.9913800395724643e-13, 0.56714329041014488], [7.5886311784668745, -2.062277729584399], [-6.5052350279006803e-17, 0.56714329040978395], [7.5886311784725553, -2.0622777295979362], [7.003680053139026e-13, 0.56714329042277944], [7.588631178420405, -2.0622777295974939], [-1.5785860789752311e-11, 0.56714329038649658], [7.5886311784724754, -2.0622777295982821], [-2.8190762390111943e-16, 0.56714329040978351], [7.5886311784644196, -2.062277729595972], [3.7209759483393742e-14, 0.56714329040976996], [7.5886311784667804, -2.0622777296012846], [3.4083859953311631e-15, 0.5671432904097351], [7.588631178487895, -2.0622777295871741], [-4.3751851530618726, -1.5339133197935324], [7.5886311784732241, -2.0622777295973496], [-8.9481095625616856e-16, 0.5671432904097834], [7.5886311784390763, -2.0622777288995175], [-7.10647910992825e-12, 0.56714329039124378], [7.5886311784234772, -2.0622777297433137], [1.3195057453404164e-15, 0.56714329040978051], [7.5886311784726042, -2.0622777295983608], [-2.1531590575474802e-13, 0.56714329041004241], [7.5886311784251284, -2.0622777298214223], [10.776299516034282, -2.4015851048343881], [7.5886311784547544, -2.0622777295923944], [10.776299516111976, -2.4015851048707866], [7.5886311784725242, -2.062277729598307], [10.776299516115126, -2.4015851048678902], [7.5886311784755929, -2.0622777295980104], [10.776299516124157, -2.4015851048737438], [7.5886311784647607, -2.0622777295990584], [10.77629951611506, -2.4015851048679915], [7.5886311784681135, -2.0622777295980628], [10.776299518376746, -2.4015851038246172], [7.5886311784973826, -2.0622777296174966], [10.776299516120659, -2.4015851048660797], [7.5886311784453335, -2.0622777295815031], [10.776299516121343, -2.4015851048832468], [-1.3372357014307747, -0.31813150520481226], [10.776299516247176, -2.4015851043827712], [1.3372357014306893, -0.31813150520476446], [10.776299516103867, -2.4015851048511987], [1.3372357014299159, -0.31813150520526173], [10.776299516116126, -2.4015851048700023], [1.3372357014306966, -0.31813150520481465], [10.776299516112857, -2.4015851048609798], [1.3372357014305725, -0.31813150520507016], [10.776299516114991, -2.4015851048722254], [-1.3372357014308227, -0.31813150520453182], [10.776299516138252, -2.4015851048601817], [1.3372357014298999, -0.31813150520420941], [10.776299516116241, -2.4015851048680443], [1.3372357014208447, -0.31813150520793693], [10.77629951611498, -2.4015851048679409], [-1.3372357014228158, -0.31813150519806321], [10.776299515716939, -2.4015851049469599], [-1.3372357014308094, -0.3181315052036387], [10.776299516121075, -2.4015851048665673], [1.3372357014308593, -0.31813150520458316], [10.776299515516325, -2.4015851050565042], [-1.3372357014301335, -0.31813150520507599], [10.776299516108125, -2.4015851048714771], [1.3372357014333949, -0.31813150520557831], [10.776299516158414, -2.4015851048212684], [-1.3372357014306504, -0.31813150520478939], [10.776299516117206, -2.4015851048688313], [1.3372357014324032, -0.31813150520575229], [10.77629951610896, -2.4015851048371775], [-1.3372357014306919, -0.31813150520476641], [10.776299516114896, -2.4015851048678041], [13.949208334479481, -2.6531919739949403], [10.776299516037014, -2.4015851048251053], [13.949208334533223, -2.6531919740387173], [10.776299519373023, -2.4015851050789214], [13.949208334527972, -2.6531919740339158], [10.776299516114063, -2.4015851048723063], [13.949208334511937, -2.6531919740771563], [10.776299516149956, -2.4015851048907519], [13.949208334534118, -2.6531919740420231], [10.776299516117064, -2.4015851048718404], [13.949208334519495, -2.6531919740423642], [10.776299516167095, -2.4015851048537677], [13.949208334533004, -2.6531919740385881], [10.776299516139311, -2.4015851048655885], [1.3372357014307863, -0.31813150520546746], [10.776299516657817, -2.4015851059181483], [13.949208334628072, -2.6531919739999705], [2.1982800109663908e-15, 0.56714329040978462], [13.949208334602879, -2.6531919741986472], [6.593659701896353e-16, 0.56714329040979206], [13.949208334301323, -2.6531919734257796], [8.9870274806268413e-12, 0.56714329040633216], [13.949208334648915, -2.653191973965634], [6.0272053147563753e-13, 0.56714329040964007], [13.949208334535987, -2.6531919740412739], [-1.239477102948019e-14, 0.56714329040974931], [13.949208334520556, -2.6531919738773984], [5.2346733964359056e-15, 0.56714329040979761], [13.949208334530235, -2.6531919740404133], [2.8444608495157066e-14, 0.56714329040983757], [13.949208334533301, -2.6531919740387742], [-1.9630657303075563e-13, 0.56714329041021838], [13.949208334533084, -2.6531919740386982], [-1.4714252516232608e-17, 0.56714329040978384], [13.949208334728722, -2.6531919740351708], [-1.2520426380268524e-11, 0.56714329038168987], [13.949208334964995, -2.653191974022223], [4.1829688196949765e-13, 0.5671432904093141], [13.949208334516019, -2.6531919740401251], [-5.0683092454310418e-13, 0.56714329040981493], [13.949208334750361, -2.6531919739727319], [1.5263931999612765e-17, 0.56714329040978384], [13.94920833453309, -2.6531919740382444], [5.1286199704375125e-14, 0.56714329040977662], [13.949208334561501, -2.6531919740442418], [-3.81026940419677e-12, 0.56714329039179689], [13.949208334533857, -2.6531919740384868], [-3.0749626213004541e-13, 0.56714329040954614], [13.949208334532077, -2.6531919740518441], [17.11353553941132, -2.8535817554089777], [13.949208334533935, -2.6531919740367327], [17.113535539416798, -2.8535817554087211], [13.949208334523924, -2.6531919740771741], [17.113535539705342, -2.8535817556533729], [13.949208334538467, -2.6531919740324739], [17.113535539412034, -2.8535817554090186], [13.949208334881352, -2.6531919739182008], [17.113535539411142, -2.8535817554052301], [13.9492083345392, -2.6531919740334655], [17.113535539412752, -2.8535817554081224], [13.949208334538104, -2.6531919740375152], [17.113535539411963, -2.853581755409087], [13.949208334668034, -2.6531919740189327], [2.4529673520857592e-14, 0.56714329040977807], [-1.3372357014304317, -0.31813150520424055], [17.113535539401063, -2.8535817554128857], [13.949208334533346, -2.6531919740386756], [17.113535539578091, -2.8535817554176277], [13.949208334691365, -2.6531919739234389], [17.11353553941909, -2.8535817554060352], [13.949208334422492, -2.6531919757528928], [17.113535539416251, -2.8535817553736402], [13.949208334535586, -2.6531919740403835], [17.113535539411924, -2.8535817554089422], [1.3372357014298402, -0.3181315052169984], [17.113535539261743, -2.8535817554034031], [1.3372357014305931, -0.31813150520501943], [17.113535539411803, -2.8535817554087486], [1.3372357014307528, -0.31813150520458766], [17.113535539444623, -2.8535817554021099], [-1.3372357014307059, -0.31813150520476147], [17.113535538299651, -2.8535817551803877], [1.3372357014193517, -0.31813150519169664], [17.11353554123216, -2.8535817558553198], [1.3372357014309313, -0.31813150521179323], [17.113535539398573, -2.8535817554048046], [-1.3372357014309775, -0.31813150520321865], [17.113535539315993, -2.8535817553538299], [1.337235701430614, -0.31813150520491745], [17.113535539390615, -2.8535817555234275], [1.3372357014306904, -0.31813150520476724], [17.113535539166563, -2.853581755583027], [1.3372357014309626, -0.31813150520531602], [17.11353553941618, -2.8535817554066538], [17.113535540310451, -2.8535817533957948], [20.272457641612469, -3.0202397081672419], [17.113535539412265, -2.8535817554088498], [20.272457641621902, -3.0202397081829866], [17.113535539495047, -2.8535817552303455], [20.272457641621184, -3.0202397081708985], [17.113535539451217, -2.8535817552606466], [20.272457641634698, -3.0202397081767121], [17.113535539410631, -2.8535817554102008], [20.272457640969233, -3.0202397083803962], [17.113535539418656, -2.8535817554857243], [20.272457641430385, -3.0202397077168071], [17.113535539416368, -2.8535817554016467], [1.3372357014327187, -0.31813150520202349], [17.113535539413249, -2.8535817554092113], [-1.337235701430965, -0.31813150520395211], [17.113535539411597, -2.8535817554088583], [20.272457641605499, -3.0202397081770052], [17.113535545177118, -2.8535817536678207], [20.272457641610682, -3.020239708171188], [17.113535539412155, -2.8535817554090306], [20.272457641601644, -3.0202397081665602], [17.113535539404253, -2.8535817553930758], [20.272457641530703, -3.0202397081720362], [17.113535539413643, -2.8535817554051492], [20.272457641618256, -3.020239708162451], [17.11353553940987, -2.8535817554098548], [20.272457641609581, -3.0202397081666748], [17.113535539376912, -2.8535817553849681], [20.272457641662456, -3.0202397081668595], [5.3945165197217693e-17, 0.56714329040978395], [20.272457641633409, -3.0202397081714243], [5.3832048917708037e-16, 0.56714329040978195], [20.272457641477097, -3.0202397081026029], [8.192888217215108e-16, 0.56714329040978506], [20.272457641603449, -3.020239708157777], [-9.9924154339937378e-12, 0.56714329041616396], [20.272457641614633, -3.0202397081639742], [-4.4049804817582715e-12, 0.56714329041077682], [20.272457641595096, -3.0202397080907839], [3.3644234203817201e-17, 0.56714329040978384], [20.272457641616878, -3.0202397081525447], [2.7192814950867347e-13, 0.56714329040975131], [20.272457641620388, -3.0202397081582433], [1.1544764850810503e-11, 0.56714329040665001], [20.272457641418519, -3.0202397080457724], [-6.4010286383808228e-15, 0.56714329040976019], [20.272457641615549, -3.0202397081610242], [-5.2440450750557338e-14, 0.5671432904098096], [20.272457641615201, -3.0202397081645285], [23.427747503752588, -3.1629527387747762], [20.27245764670138, -3.0202396988816971], [23.427747503729286, -3.1629527389219811], [20.272457641615382, -3.020239708163778], [-2.2957512834785352e-13, 0.56714329040808575], [20.272457641615222, -3.0202397081645089], [23.427747503663195, -3.1629527388705174], [20.272457641620093, -3.0202397081621273], [17.113535538080278, -2.8535817555982965], [20.272457641613606, -3.0202397081654739], [-1.4013371124243329e-12, 0.56714329040977685], [20.27245764161556, -3.0202397081649304], [3.645346456977865e-14, 0.56714329040978195], [20.272457641615233, -3.0202397081644943], [-3.0564028310674996e-12, 0.56714329040673039], [20.272457640752826, -3.0202397094225404], [23.427747503357125, -3.1629527390463656], [20.272457641615222, -3.0202397081644965], [23.427747504154084, -3.1629527386031366], [20.272457641516834, -3.0202397085119652], [23.427747503567943, -3.162952739038869], [20.272457643451368, -3.0202397081627508], [23.427747503705248, -3.1629527387979608], [20.272457641617098, -3.0202397081654917], [23.427747503756702, -3.1629527388039871], [20.272457641700651, -3.0202397081321668], [23.427747503378043, -3.1629527389848624], [20.272457641364262, -3.0202397081202497], [23.427747504048774, -3.1629527388707754], [13.94920833396341, -2.6531919737905492], [17.113535539405184, -2.8535817554119514], [-1.3372357014306495, -0.3181315052047255], [23.427747503364653, -3.1629527385122436], [1.3372357014315974, -0.31813150520303657], [23.427747504777191, -3.1629527398789321], [1.3372357014306404, -0.3181315052047537], [23.427747503754112, -3.1629527388014469], [-1.3372357014301737, -0.31813150520440342], [23.427747503757388, -3.1629527387587464], [1.3372357014306138, -0.31813150520483202], [23.427747503730057, -3.1629527388139373], [1.3372357015472898, -0.31813150471844703], [23.427747503543145, -3.1629527391440111], [-1.3372357014305718, -0.31813150520508227], [23.427747503759029, -3.1629527387995853], [1.3372357014307032, -0.31813150520478539], [23.427747503756848, -3.1629527388055969], [1.3372357014324687, -0.31813150520358735], [23.427747506362611, -3.1629527362941801], [26.580471499357753, -3.2877686115267979], [23.42774750202452, -3.1629527413020577], [-1.337235701430681, -0.31813150520476779], [23.42774750375402, -3.1629527388096896], [-1.3372357014306897, -0.31813150520476324], [23.427747503755171, -3.1629527388038721], [1.3372357014306948, -0.31813150520478201], [23.427747503316084, -3.1629527377275792], [1.3372357014304959, -0.31813150520477562], [23.427747503758322, -3.1629527388225527], [26.580471498881984, -3.2877686115899709], [23.427747503755349, -3.1629527388042109], [-1.3372357014305882, -0.31813150520436656], [23.427747504571261, -3.1629527374654973], [26.580471499359071, -3.2877686115397511], [23.427747503754958, -3.1629527387862479], [26.58047149894054, -3.2877686088607465], [23.427747505217397, -3.1629527374001269], [26.580471499461463, -3.2877686115621629], [23.42774750401696, -3.162952739126871], [26.580471499360218, -3.287768611542635], [23.427747503755846, -3.1629527388042114], [26.580471499358733, -3.2877686115440774], [23.427747503549107, -3.1629527389127023], [26.58047149934216, -3.2877686116431581], [23.427747503752265, -3.1629527387983081], [26.580471499361522, -3.2877686115406126], [23.427747503786218, -3.1629527387960867], [20.272457642506467, -3.0202397079765158], [17.113535539412368, -2.8535817554089786], [26.580471495170659, -3.2877686067408129], [-1.491108973365053e-11, 0.56714329042122824], [26.580471499359973, -3.2877686115456215], [1.1313050362031907e-11, 0.56714329040375788], [26.580471499359238, -3.2877686115452307], [-1.8715999636840911e-13, 0.56714329040980804], [26.580471499358602, -3.2877686115447582], [2.7536228290659644e-13, 0.56714329040973821], [26.58047149940937, -3.287768611536301], [-1.1025261757346236e-13, 0.56714329040861333], [26.580471499478222, -3.2877686114574556], [7.1868197120323236e-13, 0.56714329040954337], [26.580471499601526, -3.2877686118018596], [2.6211371648938961e-13, 0.56714329040925715], [26.58047149936003, -3.2877686115460372], [-2.0382859921150619e-13, 0.56714329040977107], [26.580471503106299, -3.2877686089257687], [9.6936288287252251e-17, 0.56714329040978062], [26.580471499342703, -3.2877686115613587], [-3.3694206439415712e-16, 0.56714329040978462], [26.580471499457076, -3.2877686112363249], [-1.8987129603096397e-12, 0.56714329040821077], [26.580471499357692, -3.2877686115421945], [1.8179296872279278e-17, 0.56714329040978384], [26.580471499553731, -3.2877686114830658], [3.0142765548919974e-16, 0.56714329040978395], [26.580471499699851, -3.2877686116440343], [2.0944319801998443e-12, 0.56714329041129607], [26.580471499356754, -3.2877686118287488], [-7.4418919540337372e-12, 0.56714329040852507], [26.580471499966308, -3.2877686119615483], [4.1038680705649565e-14, 0.56714329040982125], [26.580471498665954, -3.2877686113679316], [29.731310707815744, -3.3986921967654862], [26.580471499281302, -3.2877686115260691], [29.731310708014355, -3.3986921971703805], [26.580471499379538, -3.2877686115547511], [29.731310707836244, -3.3986921967696464], [26.580471499703105, -3.2877686114653439], [29.73131070782501, -3.3986921967699257], [26.58047149950783, -3.2877686117132865], [29.731310707767275, -3.3986921967809245], [26.580471499336689, -3.2877686115595814], [29.731310707665351, -3.3986921966771346], [26.580471499436939, -3.2877686115068756], [29.731310708840304, -3.3986921983222014], [20.272457641614398, -3.0202397081649637], [23.427747503756002, -3.1629527388056347], [1.3372357014307039, -0.31813150520478151], [29.731310708093421, -3.3986921972191726], [29.731310707828424, -3.3986921967643893], [1.3372357013673211, -0.31813150520044714], [29.731310707828527, -3.3986921967647379], [1.3372357014307128, -0.31813150520481714], [29.731310707828705, -3.3986921967646206], [-1.337235701430268, -0.31813150520552486], [29.73131070870463, -3.3986921975815161], [-1.3372357014307059, -0.31813150520473749], [29.731310707828527, -3.398692196764721], [-1.3372357014307037, -0.31813150520472977], [29.731310707738484, -3.398692196729427], [-1.3372357014306755, -0.31813150520477101], [29.731310707828236, -3.3986921967650114], [1.3372357014307019, -0.3181315052047563], [29.731310707436709, -3.3986921969401513], [-1.3372357014306875, -0.31813150520476657], [29.731310707815137, -3.3986921967739079], [-1.3372357014306893, -0.3181315052047658], [29.731310707496981, -3.3986921973168855], [-1.3372357014308651, -0.31813150520444688], [29.731310708958983, -3.398692197058959], [1.3372357014302894, -0.31813150520451955], [29.731310708757974, -3.3986922073772767], [-1.3372357014305654, -0.31813150520489858], [29.731310707831966, -3.3986921967831729], [-1.3372357014329233, -0.3181315052042627], [29.731310707334096, -3.3986921979177835], [-1.3372357014306044, -0.31813150520994055], [29.731310707826839, -3.3986921967702695], [32.880721480071259, -3.4985152121570624], [29.731310708732565, -3.3986921966112056], [32.880721480069738, -3.498515212153773], [29.731310707252412, -3.3986921966248849], [32.880721480068772, -3.4985152121542686], [29.731310707835959, -3.398692196762596], [32.880721480060359, -3.498515212095147], [29.731310707551035, -3.3986921968132675], [32.880721480068914, -3.4985152121541043], [29.731310706416295, -3.3986921969915267], [32.880721480010195, -3.4985152121380878], [29.731310708801391, -3.3986921975889381], [32.880721480085001, -3.4985152121204282], [29.731310707769168, -3.3986921967391019], [-1.337235701432788, -0.31813150520992539], [29.731310707827983, -3.3986921967651087], [32.880721480099325, -3.4985152122291749], [10.776299516101892, -2.401585104874731], [32.880721480068601, -3.4985152121529843], [1.8628662420527128e-11, 0.56714329041501255], [32.880721480049594, -3.4985152122328667], [6.0403035315281668e-14, 0.56714329040972711], [32.880721481101943, -3.4985152117984462], [9.0830384283320527e-17, 0.56714329040978395], [32.880721480069994, -3.4985152121535004], [-1.3231674673626047e-15, 0.56714329040978284], [32.880721479893346, -3.4985152119277059], [7.4797602877406439e-13, 0.56714329041104605], [32.880721480068047, -3.4985152121530638], [-7.5410281165527754e-16, 0.56714329040978761], [32.880721480035277, -3.4985152121701746], [3.1796425567512004e-12, 0.56714329041118894], [32.880721479703709, -3.4985152122266401], [1.6448091482075893e-11, 0.56714329039728351], [32.880721480068942, -3.4985152121540941], [1.5692155684036744e-17, 0.56714329040978384], [32.880721479824601, -3.4985152123129728], [-7.2101547010529838e-13, 0.56714329041035538], [32.880721480072737, -3.4985152121484382], [5.8342583488442268e-13, 0.567143290409721], [32.880721481387418, -3.4985152128845991], [-1.4311452433492335e-11, 0.56714329041416978], [32.880721480701332, -3.4985152113116427], [1.6486795662903665e-16, 0.56714329040978384], [32.880721480059471, -3.4985152121840537], [4.1644435088479677e-16, 0.56714329040978617], [-7.0904725170426183e-12, 0.56714329039352818], [32.88072148004467, -3.4985152122413656], [36.02902170342734, -3.589262524529047], [32.880721480121196, -3.4985152121547198], [36.029021704184927, -3.5892625243973226], [32.880721480071081, -3.4985152121483987], [36.029021706977083, -3.5892625327736964], [32.880721480067109, -3.4985152121540097], [36.029021703416987, -3.5892625245224927], [32.880721477522805, -3.4985152121880585], [36.029021703442872, -3.5892625244888579], [32.880721480069184, -3.4985152121547824], [36.029021703468047, -3.5892625246717338], [32.880721480171502, -3.4985152120856511], [-4.1150101536095944e-14, 0.56714329040979528], [32.880721480064331, -3.4985152121626681], [32.880721480082599, -3.4985152121390626], [36.029021703424412, -3.5892625245204779], [32.880721480069695, -3.498515212159663], [36.029021703504235, -3.5892625257127766], [32.880721480077568, -3.4985152121569718], [36.029021701754196, -3.5892625240806444], [32.880721479769392, -3.4985152127457515], [36.029021701819701, -3.5892625242145502], [32.88072148006809, -3.4985152121590248], [36.029021703221694, -3.5892625248514993], [1.3372357014300877, -0.3181315052063115], [36.029021703379975, -3.589262524482423], [1.3372357014306917, -0.31813150520477068], [36.029021703434445, -3.5892625245297678], [1.3372357014306862, -0.31813150520469502], [36.029021703377992, -3.589262524470235], [1.3372357014307807, -0.31813150520494493], [36.029021703433116, -3.5892625245300476], [-1.3372357014300436, -0.31813150520519373], [36.029021703306661, -3.5892625245150485], [-1.3372357014406138, -0.31813150519437472], [36.029021703430487, -3.5892625245302194], [1.3372357014374374, -0.31813150519888372], [36.029021703427752, -3.5892625245295071], [1.337235701433853, -0.3181315052036664], [36.029021702369818, -3.5892625245334937], [1.3372357014321983, -0.3181315052034322], [36.029021701789283, -3.5892625242731393], [1.3372357014284322, -0.31813150520861561], [36.029021703426423, -3.5892625245345053], [-1.3372357014305629, -0.31813150520461309], [36.029021703427659, -3.5892625245293934], [39.176440021836939, -3.6724500687178687], [36.029021703390555, -3.5892625246515624], [39.176440021741058, -3.6724500687023149], [36.02902170342923, -3.5892625245255534], [39.176440021717987, -3.6724500686560404], [36.029021703513834, -3.5892625245144609], [39.176440021952288, -3.6724500688787862], [36.029021696372126, -3.5892625114015462], [39.176440021577505, -3.672450068704836], [36.029021698499122, -3.5892625270897134], [39.176440021708075, -3.6724500686350146], [36.029021703451747, -3.5892625245304801], [-1.3372357014328198, -0.31813150520320332], [36.029021703428057, -3.5892625245293739], [39.176440021735338, -3.6724500687098685], [36.029021703387038, -3.5892625244876295], [39.176440021774141, -3.6724500687112869], [36.02902170581465, -3.5892625207894477], [39.176440021731054, -3.6724500687089749], [36.029021703388757, -3.5892625244779919], [39.176440021925345, -3.6724500687198729], [36.029021703422096, -3.5892625245452505], [39.176440017894741, -3.6724500691485966], [36.029021703427631, -3.5892625245293774], [39.176440021781296, -3.6724500685568828], [36.029021703427297, -3.5892625245295506], [39.176440021892319, -3.6724500695155307], [-1.1209990033937295e-11, 0.56714329036658528], [39.176440022915628, -3.6724500686763095], [1.4580402005107972e-17, 0.56714329040978395], [1.3372357014306853, -0.31813150520474665], [1.4551157395675274e-16, 0.56714329040978306], [39.176440021735722, -3.6724500687099924], [7.9283879622203531e-14, 0.56714329040970146], [39.176440022918371, -3.6724500694691975], [3.3365739638924399e-12, 0.56714329040946598], [39.176440021733114, -3.6724500687030504], [-9.9991867776058169e-14, 0.56714329040977929], [39.176440022585275, -3.6724500705419176], [3.8438259687110483e-13, 0.56714329040973877], [39.17644002173467, -3.672450068710039], [3.8944320190926193e-13, 0.56714329040975209], [39.176440021725639, -3.6724500687069606], [-1.9794236901262643e-13, 0.56714329040976563], [39.176440021740639, -3.6724500686938653], [-1.1780931378852428e-11, 0.56714329038203715], [39.176440021726933, -3.6724500687171768], [2.801938781237192e-16, 0.56714329040978362]]","done":false}︡{"stdout":"\n","done":false}︡{"done":true} ︠442beb66-2728-4d49-9381-8fc4de314538︠ var('k,j,st,kold') st = 0.01 #step #resonances from the condition with the minus before the exponential, i.e. fun02 k = [0, 0.56714329042655232] list3 = [k] for j in srange(0,1,st): kold = k k = [kold[0]-(4*3.14159265359*exp(-kold[1])*sin(kold[0]))/(1+exp(-2*kold[1])+2*exp(-kold[1])*cos(kold[0]))*st,kold[1]-4*3.14159265359*(1+exp(-kold[1])*cos(kold[0]))/(1+exp(-2*kold[1])+2*exp(-kold[1])*cos(kold[0]))*st] list3 = list3+[[k[0],k[1]]] k = [4.3751851530619321, -1.533913319793369] list4 = [k] for j in srange(0,1,st): kold = k k = [kold[0]-(4*3.14159265359*exp(-kold[1])*sin(kold[0]))/(1+exp(-2*kold[1])+2*exp(-kold[1])*cos(kold[0]))*st,kold[1]-4*3.14159265359*(1+exp(-kold[1])*cos(kold[0]))/(1+exp(-2*kold[1])+2*exp(-kold[1])*cos(kold[0]))*st] list4 = list4+[[k[0],k[1]]] k = [10.776299518376746, -2.4015851038246172] list5 = [k] for j in srange(0,1,st): kold = k k = [kold[0]-(4*3.14159265359*exp(-kold[1])*sin(kold[0]))/(1+exp(-2*kold[1])+2*exp(-kold[1])*cos(kold[0]))*st,kold[1]-4*3.14159265359*(1+exp(-kold[1])*cos(kold[0]))/(1+exp(-2*kold[1])+2*exp(-kold[1])*cos(kold[0]))*st] list5 = list5+[[k[0],k[1]]] #resonances from the condition with plus before the exponential, i.e. fun0 k = [1.3372357014304412, -0.31813150520512345] list6 = [k] for j in srange(0,1,st): kold = k k = [kold[0]+(4*3.14159265359*exp(-kold[1])*sin(kold[0]))/(1+exp(-2*kold[1])-2*exp(-kold[1])*cos(kold[0]))*st,kold[1]-4*3.14159265359*(1-exp(-kold[1])*cos(kold[0]))/(1+exp(-2*kold[1])-2*exp(-kold[1])*cos(kold[0]))*st] list6 = list6+[[k[0],k[1]]] k = [7.5886311784702549, -2.0622777295952646] list7 = [k] for j in srange(0,1,st): kold = k k = [kold[0]+(4*3.14159265359*exp(-kold[1])*sin(kold[0]))/(1+exp(-2*kold[1])-2*exp(-kold[1])*cos(kold[0]))*st,kold[1]-4*3.14159265359*(1-exp(-kold[1])*cos(kold[0]))/(1+exp(-2*kold[1])-2*exp(-kold[1])*cos(kold[0]))*st] list7 = list7+[[k[0],k[1]]] k = [13.949208334511937, -2.6531919740771563] list8 = [k] for j in srange(0,1,st): kold = k k = [kold[0]+(4*3.14159265359*exp(-kold[1])*sin(kold[0]))/(1+exp(-2*kold[1])-2*exp(-kold[1])*cos(kold[0]))*st,kold[1]-4*3.14159265359*(1-exp(-kold[1])*cos(kold[0]))/(1+exp(-2*kold[1])-2*exp(-kold[1])*cos(kold[0]))*st] list8 = list8+[[k[0],k[1]]] c3 = animate([point(list3[j],size=40)+point(list4[j],size=40)+point(list5[j],size=40)+point(list6[j],size=40)+point(list7[j],size=40)+point(list8[j],size=40) for j in srange(0,len(list3),2)],xmin=0,xmax=15,ymin=-3,ymax=0.6,axes_labels=['Re $k$','Im $k$'],axes_labels_size=1.3) c3.show() ︡45bd86ac-6aee-40d1-902c-5e47af5d3aee︡︡{"stdout":"(k, j, st, kold)\n","done":false}︡{"once":false,"done":false,"file":{"url":"/deb543f0-64c7-4e12-a8c6-32e4785eaa9f/raw/.sage/temp/compute1-us/13562/tmp_WhoDYL.webm","show":true,"filename":"/projects/deb543f0-64c7-4e12-a8c6-32e4785eaa9f/.sage/temp/compute1-us/13562/tmp_WhoDYL.webm"}}︡{"html":"
","done":false}︡{"done":true} ︠2ef9d47b-9413-465c-b608-3cd46917b76ds︠ list(Partitions(10)) ︡54a8f989-c091-4159-abba-a28514803bd7︡︡{"stdout":"[[10], [9, 1], [8, 2], [8, 1, 1], [7, 3], [7, 2, 1], [7, 1, 1, 1], [6, 4], [6, 3, 1], [6, 2, 2], [6, 2, 1, 1], [6, 1, 1, 1, 1], [5, 5], [5, 4, 1], [5, 3, 2], [5, 3, 1, 1], [5, 2, 2, 1], [5, 2, 1, 1, 1], [5, 1, 1, 1, 1, 1], [4, 4, 2], [4, 4, 1, 1], [4, 3, 3], [4, 3, 2, 1], [4, 3, 1, 1, 1], [4, 2, 2, 2], [4, 2, 2, 1, 1], [4, 2, 1, 1, 1, 1], [4, 1, 1, 1, 1, 1, 1], [3, 3, 3, 1], [3, 3, 2, 2], [3, 3, 2, 1, 1], [3, 3, 1, 1, 1, 1], [3, 2, 2, 2, 1], [3, 2, 2, 1, 1, 1], [3, 2, 1, 1, 1, 1, 1], [3, 1, 1, 1, 1, 1, 1, 1], [2, 2, 2, 2, 2], [2, 2, 2, 2, 1, 1], [2, 2, 2, 1, 1, 1, 1], [2, 2, 1, 1, 1, 1, 1, 1], [2, 1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1]]\n","done":false}︡{"done":true} ︠f00f0c8a-5be5-40a7-a8cc-b6281fdde6afs︠ @interact def power_table_plot(p=(7,prime_range(50))): P=matrix_plot(matrix(p-1,[mod(a,p)^b for a in range(1,p) for b in srange(p)]),cmap='jet') show(P) ︡b407f189-46be-471a-b07c-270fda4cc0df︡︡{"interact":{"style":"None","flicker":false,"layout":[[["p",12,null]],[["",12,null]]],"id":"b639fc85-c3f1-4e40-a198-7f439dcbeb6d","controls":[{"buttons":false,"control_type":"selector","ncols":null,"button_classes":null,"default":3,"lbls":["2","3","5","7","11","13","17","19","23","29","31","37","41","43","47"],"label":"p","nrows":null,"width":null,"var":"p"}]},"done":false}︡{"done":true} ︠fb78694e-cb99-414f-abba-5e45d45c182as︠ data = [(i, 1.2 * sin(0.5*i-0.2) + 0.1 * normalvariate(0, 1)) for i in xsrange(0, 4*pi, 0.2)] var('a, b, c, x') model(x) = a * sin(b * x - c) find_fit(data, model) ︡3689debf-9e6c-48aa-a05a-08e44e3fab91︡︡{"stdout":"(a, b, c, x)\n","done":false}︡{"stdout":"[a == 1.1944541985230013, b == 0.5020324442123956, c == 0.2170655514425861]","done":false}︡{"stdout":"\n","done":false}︡{"done":true} ︠0f13bd87-25f5-40ab-838b-4b3aa9341da5s︠ for i in primes(50): print i ︡ed4da5d1-6ad8-4d77-8f67-e9bf002c719c︡︡{"stdout":"2\n3\n5\n7\n11\n13\n17\n19\n23\n29\n31\n37\n41\n43\n47\n","done":false}︡{"done":true} ︠f6e98132-f515-42e2-847a-54a0cb6bde3as︠ 2013.is_prime() ︡fa3a9234-18a7-4018-b0e9-39e662bb27c8︡︡{"stdout":"False\n","done":false}︡{"done":true} ︠108b54cb-3c53-4467-af10-bfff83e8d9cfs︠ 2013.factor() ︡8594d41f-430e-4867-baf0-9cdb248a743c︡︡{"stdout":"3 * 11 * 61\n","done":false}︡{"done":true} ︠29812b01-b37c-4790-bfd3-3760d75aa5c7s︠ M = random_matrix(RDF,3) M ︡0f969f61-d293-4384-a27d-225d0265a6e7︡︡{"stdout":"[ 0.3188488737301076 0.1528502049690592 0.018806925561862364]\n[ 0.5489269518124278 -0.37019418700864004 0.6865308007479909]\n[ -0.697472245544493 0.42472775905086535 -0.9684808204803959]\n","done":false}︡{"done":true} ︠8e3b0de7-9940-4ea1-a23d-3803205e3173︠