{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:47] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\n", "from ax.plot.contour import plot_contour\n", "from ax.plot.trace import optimization_trace_single_method\n", "from ax.service.managed_loop import optimize\n", "from ax.metrics.branin import branin\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Define evaluation function\n", "\n", "First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "def hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x ** 2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Run optimization\n", "The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:47] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:47] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:47] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:47] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:47] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:47] ax.modelbridge.dispatch_utils: Using Bayesian optimization since there are more ordered parameters than there are categories for the unordered categorical parameters.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:47] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 12 trials, GPEI for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:47] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:47] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:48] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:54] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:32:59] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:33:04] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:33:10] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:33:15] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:33:20] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:33:25] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:33:30] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:33:36] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:33:41] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:33:46] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:33:51] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:33:55] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:00] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:06] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:11] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 02:34:15] ax.service.managed_loop: Running optimization trial 30...\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.17175792086072647,\n", " 'x2': 0.22139587926586693,\n", " 'x3': 0.48672754738279445,\n", " 'x4': 0.2939471039831243,\n", " 'x5': 0.29195961245986535,\n", " 'x6': 0.6648251581279614}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'hartmann6': -3.223408990687509, 'l2norm': 0.9638840331665048}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -2.166090430770075, -2.204402375488777, -2.2388325274408105, -2.2689870153317013, -2.294497468586715, -2.315030057424156, -2.3302943578444424, -2.34005160147816, -2.344121851924236, -2.342389674360653, -2.3348079373240993, -2.321399500058385, -2.302256683004841, -2.2775385742458853, -2.2474663705284774, -2.212317069983364, -2.172415912959187, -2.1281280032322454, -2.0798495370248262, -2.0279990296498274, -1.9730088696225119, -1.9153174583819188, -1.8553621195495547, -1.7935728918403375, -1.7303672587772638, -1.6661458184900995, -1.60128885862259, -1.536153774077884, -1.4710732476495259, -1.4063541038571203, -1.3422767428320574, -1.2790950623057311, -1.2170367802792361, -1.1563040776812448, -1.0970744883672316, -1.0395019725063663, -0.9837181182463876, -0.9298334251862035, -0.8779386313732452, -0.8281060531129973, -0.7803909137249299, -0.7348326434416445, -0.6914561378969408, -0.6502729670802055, -0.6112825302652025, -0.5744731552848845, -0.5398231426687956, -0.5073017566487528, -0.4768701659466259, -0.44848233766914847 ], [ -2.2178615280814538, -2.258243827850536, -2.2946084280121477, -2.3265303476471364, -2.3536105493131547, -2.3754860424005444, -2.3918398832870285, -2.4024105565213745, -2.4070001896057454, -2.4054810767271912, -2.3978000700739335, -2.3839805361540853, -2.364121752329294, -2.3383958107577127, -2.3070422757565816, -2.2703609828097115, -2.228703458360799, -2.1824634750118923, -2.1320672420276874, -2.07796367762241, -2.020615131453603, -1.960488836645339, -1.8980492816254715, -1.8337516109103098, -1.768036095276292, -1.7013236573816557, -1.6340123987324944, -1.5664750465738833, -1.4990572228352053, -1.432076429481776, -1.3658216434227168, -1.3005534176508438, -1.2365043920094456, -1.1738801256822329, -1.1128601732640258, -1.053599336415013, -0.9962290331507593, -0.940858736443347, -0.8875774427883238, -0.8364551395900176, -0.7875442475540053, -0.7408810207105747, -0.6964868922172781, -0.6543697587131561, -0.6145251997521605, -0.5769376317733119, -0.541581398228622, -0.508421798958667, -0.47741606276222837, -0.44851426744293765 ], [ -2.265228833057863, -2.3076348149955384, -2.345898633624511, -2.3795637370088705, -2.4081996926589526, -2.4314134134839986, -2.4488603787499237, -2.4602552503741766, -2.4653812349942745, -2.4640975598887835, -2.4563445258910646, -2.442145767751552, -2.421607570742893, -2.394915328682477, -2.3623274466323854, -2.324167160890864, -2.280812851597549, -2.23268745596588, -2.180247561697589, -2.1239726868230084, -2.0643551526450974, -2.0018908475868926, -1.9370710746226774, -1.870375582155038, -1.8022668020941874, -1.7331852606997287, -1.663546086486509, -1.5937365129655257, -1.5241142594600812, -1.455006667948805, -1.3867104753408943, -1.31949210668061, -1.2535883838305066, -1.1892075549190773, -1.126530561324494, -1.0657124705413263, -1.0068840144934683, -0.9501531834190712, -0.8956068351799314, -0.8433122886318561, -0.7933188774809675, -0.7456594478271872, -0.7003517883676807, -0.6573999870278077, -0.6167957116463579, -0.5785194153221241, -0.5425414691972664, -0.5088232268900985, -0.4773180255860475, -0.4479721290500881 ], [ -2.30747018417093, -2.351821775330163, -2.3919205344279115, -2.427278403705525, -2.4574333221753752, -2.4819616133686493, -2.5004904953323246, -2.512710022511606, -2.5183836952408045, -2.517356981389775, -2.509563101632451, -2.4950256299912006, -2.4738577276820184, -2.4462581173668285, -2.4125041688478936, -2.372942666918707, -2.327978946132984, -2.278065104011506, -2.2236879576441044, -2.165357311214865, -2.103594977650016, -2.038924866971476, -1.9718643319686677, -1.902916857439784, -1.832566096403942, -1.7612711955780107, -1.6894633109899886, -1.617543189663725, -1.5458796813313809, -1.4748090417720472, -1.4046348937581528, -1.335628720389158, -1.2680307770230292, -1.2020513207729866, -1.1378720696993032, -1.0756478167703316, -1.015508135986709, -0.9575591295072967, -0.90188517503899, -0.8485506420814681, -0.7976015538251306, -0.7490671785898491, -0.7029615406894972, -0.6592848455532501, -0.6180248178836995, -0.579157954649244, -0.5426506968715668, -0.5084605255658713, -0.47653698792063404, -0.4468226599710685 ], [ -2.3438636867198532, -2.39004823386074, -2.431885363510191, -2.468856216236805, -2.5004674892850547, -2.5262649974588065, -2.545847513302038, -2.558880101163858, -2.5651060554401486, -2.564356548751481, -2.5565572139245543, -2.5417311206761317, -2.5199979297793984, -2.491569357612516, -2.4567414001023216, -2.4158839976932907, -2.3694289472021683, -2.3178568835823823, -2.2616840854836346, -2.201449733024911, -2.137704094454131, -2.070997964741588, -2.00187354019187, -1.9308567978539428, -1.858451359878571, -1.7851337599892947, -1.7113499885702885, -1.6375131702474595, -1.5640022189000566, -1.4911613158935988, -1.4193000647551761, -1.348694187022108, -1.2795866377433645, -1.2121890337979493, -1.146683302934492, -1.0832234756575216, -1.0219375554327326, -0.9629294149488163, -0.9062806772483174, -0.8520525503797818, -0.8002875928241919, -0.7510113943331075, -0.704234163024302, -0.6599522146670252, -0.6181493641178549, -0.5787982219151546, -0.5418614011911257, -0.5072926414117243, -0.47503785611221383, -0.44503611187325653 ], [ -2.3737055995308447, -2.421573446563248, -2.465017506738025, -2.50348956515992, -2.5364662057929923, -2.5634635212534276, -2.584052286497619, -2.5978727151819, -2.6046477765067113, -2.6041940273696804, -2.596429042328978, -2.581374800679532, -2.5591567738045864, -2.5299988744547006, -2.4942148032034033, -2.4521965945512676, -2.4044012978239926, -2.3513367319072493, -2.293547157236191, -2.2315995519762453, -2.166070998568478, -2.0975375098399915, -2.026564468476872, -1.9536987284258611, -1.8794623335160403, -1.8043477447532517, -1.728814428616063, -1.6532866388692842, -1.5781522187635302, -1.5037622546104625, -1.430431422125188, -1.3584388810041907, -1.2880295891027322, -1.2194159240268656, -1.1527795161348695, -1.0882732123351253, -1.026023104364793, -0.9661305682688639, -0.9086742734936897, -0.8537121303411627, -0.8012831535136015, -0.7514092271529059, -0.7040967631927653, -0.6593382500658393, -0.6171136929130435, -0.5773919495149712, -0.5401319683007321, -0.5052839360918798, -0.4727903438224835, -0.44258697846164696 ], [ -2.396331009965409, -2.445694221645177, -2.4905773798199022, -2.5304051828398064, -2.5646260746077925, -2.5927280368984373, -2.6142550514923153, -2.6288232589663307, -2.636135658176366, -2.6359941440111143, -2.62830781557967, -2.6130968045379896, -2.5904913231028592, -2.560726122975133, -2.5241309906779215, -2.481118207055723, -2.4321680378823283, -2.377813310309649, -2.318624005344422, -2.2551926077310513, -2.1881207447129016, -2.118007445574409, -2.045439183229802, -1.9709817252627695, -1.8951737250328047, -1.8185219195958138, -1.7414977640848304, -1.6645353153682938, -1.5880301753790405, -1.512339311674491, -1.4377815858707248, -1.364638836936134, -1.2931573841068642, -1.2235498321903204, -1.1559970794886762, -1.0906504450363597, -1.0276338470359128, -0.9670459781549605, -0.9089624356538689, -0.8534377751420339, -0.8005074661361011, -0.7501897355641134, -0.702487291989193, -0.657388928690087, -0.614871007919614, -0.5748988317607829, -0.5374279071187664, -0.5024051136388066, -0.46976978384818946, -0.43945470471283643 ], [ -2.4111367069067615, -2.4617693440336836, -2.5078873281154275, -2.548891404567134, -2.584204761322185, -2.6132897909311783, -2.6356657390841827, -2.650926183659461, -2.6587550610412327, -2.658939882587786, -2.651380922013414, -2.6360955107328747, -2.613217093776142, -2.582989264177875, -2.545755488646223, -2.501945573580934, -2.452060064851384, -2.396653745485273, -2.336319242000916, -2.271671530009088, -2.203333892322135, -2.1319256625156244, -2.0580519027567634, -1.9822950236067045, -1.9052082541222415, -1.8273108071312336, -1.74908454950793, -1.6709719731536954, -1.5933752627252895, -1.5166562658327112, -1.4411371866749545, -1.3671018422505075, -1.2947973395971, -1.2244360518372654, -1.156197789414891, -1.0902320803690366, -1.0266604895541598, -0.9655789212476749, -0.9070598625313289, -0.8511545361878659, -0.7978949416502995, -0.7472957708323609, -0.6993561925292486, -0.6540615045930024, -0.6113846573544738, -0.5712876548905267, -0.5337228428366263, -0.4986340926454418, -0.465957892623579, -0.43562435587797954 ], [ -2.4176052505674237, -2.469245559152128, -2.5163594746889792, -2.558327778853256, -2.594552208673303, -2.6244730286201854, -2.647587701921455, -2.663469537097771, -2.6717849148920405, -2.6723075978196817, -2.664928761520949, -2.6496617762730112, -2.626641341977704, -2.5961172130922696, -2.558443301096836, -2.514063310024145, -2.4634942100302726, -2.4073088097298223, -2.346118509119732, -2.280557067361003, -2.211265958426237, -2.1388816495555067, -2.0640249419629053, -1.9872923661666446, -1.9092495228599182, -1.8304261970960984, -1.751313040006986, -1.6723596000377512, -1.593973487869903, -1.5165204705345494, -1.4403253069024562, -1.3656731561798947, -1.2928114115240046, -1.2219518313121056, -1.1532728602511115, -1.086922050957111, -1.0230185136042003, -0.9616553365848699, -0.9029019347722923, -0.8468062939157972, -0.7933970899646914, -0.7426856707633279, -0.6946678946752455, -0.6493258263748324, -0.6066292944034135, -0.5665373182429331, -0.5289994147443481, -0.4939567948951852, -0.4613434622640632, -0.43108722416551337 ], [ -2.4153288129647166, -2.4676835676557234, -2.515523853452894, -2.5582152602151664, -2.5951427381953636, -2.625728776801946, -2.649452875038727, -2.665871131034525, -2.6746344695549666, -2.6755038959238364, -2.668361296449574, -2.6532147174378795, -2.6301976757640206, -2.599562741837011, -2.5616702338205766, -2.5169732579841586, -2.4660004865466423, -2.4093380107836957, -2.347611409946922, -2.281468908418611, -2.211566213994088, -2.1385533783363213, -2.0630638161930146, -1.9857054679832746, -1.9070539867892755, -1.8276477671363767, -1.74798459960886, -1.6685197235558569, -1.5896650527950857, -1.5117893610257425, -1.4352192308846445, -1.360240590683664, -1.2871006841601318, -1.2160103399294964, -1.147146428001795, -1.0806544102101574, -1.016650909374732, -0.955226238290624, -0.8964468440806012, -0.8403576360632695, -0.7869841760820221, -0.7363347192864552, -0.6884021007527227, -0.6431654691886318, -0.6005918734225022, -0.5606377105599823, -0.5232500467562052, -0.4883678226409143, -0.45592295570657837, -0.42584135157955005 ], [ -2.4040310081242837, -2.456782043342268, -2.505054630821956, -2.5482045843734986, -2.5856054490897042, -2.616667047614129, -2.6408554745370854, -2.6577133410413394, -2.666878736106666, -2.6681012176585472, -2.6612532694386886, -2.646336080326041, -2.6234791493619234, -2.592933941945695, -2.5550624534511623, -2.5103219557817242, -2.459247369658306, -2.4024326515642844, -2.340512379472587, -2.2741444426225614, -2.203994450447407, -2.1307222152148246, -2.0549704522521344, -1.9773556854742567, -1.8984612395254226, -1.8188321340326017, -1.738971660267786, -1.6593394070573257, -1.580350504041621, -1.5023758612158078, -1.4257432004353396, -1.3507386947309579, -1.277609053095198, -1.2065639106404433, -1.1377784058030767, -1.0713958469492944, -1.007530389890595, -0.9462696651635787, -0.8876773093167282, -0.8317953678250776, -0.7786465486465627, -0.7282363149199353, -0.6805548129999685, -0.6355786380702069, -0.5932724441198945, -0.5535904082798204, -0.5164775615463146, -0.4818709989494362, -0.4497009824078123, -0.41989194902474647 ], [ -2.3835847510960475, -2.4363974418528764, -2.4847918993642293, -2.5281200220012323, -2.565749832404458, -2.597084127413586, -2.621580685105438, -2.6387728314034997, -2.6482888193756144, -2.6498683067908217, -2.643374327301852, -2.628799564380376, -2.6062663842489737, -2.576020814917487, -2.5384213038405554, -2.4939235228800776, -2.4430626718219473, -2.3864346888488908, -2.324677577572467, -2.2584537831841196, -2.188434259232245, -2.115284603659016, -2.039653428902097, -1.9621629709528827, -1.8834018315169432, -1.8039196768598673, -1.72422367690966, -1.6447764502975553, -1.5659952786373932, -1.488252361564824, -1.411875899323288, -1.3371518093874166, -1.2643259058105984, -1.1936063931880025, -1.125166550210138, -1.0591474999033998, -0.9956609842187243, -0.9347920792527096, -0.8766018038572839, -0.8211295886408084, -0.7683955844152164, -0.7184027990996424, -0.6711390600965536, -0.6265788053817096, -0.5846847111774084, -0.5454091672957275, -0.5086956132317118, -0.4744797490393384, -0.4426906351168669, -0.4132516944393487 ], [ -2.354024273648884, -2.40655744022912, -2.454756576202728, -2.4979757266353775, -2.5355835030978335, -2.566981562273182, -2.5916246985012155, -2.6090413794339726, -2.618853206014548, -2.6207916048432, -2.6147101556252497, -2.6005913466729687, -2.5785471728483595, -2.548813701965769, -2.5117403750427947, -2.467775250378901, -2.417447602812045, -2.361349269455304, -2.3001159557367448, -2.2344094552399723, -2.164901456824523, -2.0922593550457633, -2.0171342664408227, -1.9401512905686786, -1.8619019372182088, -1.7829385623010456, -1.7037706063341447, -1.6248624037741324, -1.5466323229104182, -1.4694529999798103, -1.3936524440431979, -1.3195158080885852, -1.2472876444527998, -1.177174487083309, -1.1093476278894396, -1.0439459783220943, -0.9810789295746032, -0.9208291449058836, -0.863255235283069, -0.8083942847392593, -0.7562642045911669, -0.7068659060953241, -0.6601852894258122, -0.6161950532422223, -0.5748563338026191, -0.5361201857805625, -0.499928918878382, -0.46621730519450577, -0.43491367229548394, -0.4059408962499982 ], [ -2.3155498249466935, -2.367466296980469, -2.415156439027306, -2.457982442417938, -2.495319549495548, -2.526574089319517, -2.5512031350183104, -2.568734664130586, -2.5787867703130987, -2.5810843044187823, -2.5754714005955113, -2.561918695712974, -2.540524622341519, -2.5115108212702255, -2.4752123312932834, -2.4320636559621436, -2.3825820280784185, -2.327349206054158, -2.266992996121764, -2.2021694675760215, -2.1335465731739887, -2.061789643768601, -1.9875490168922383, -1.911449890937593, -1.8340843689847683, -1.7560055645280424, -1.6777235796577, -1.5997031291912327, -1.5223625669671539, -1.4460740687239668, -1.3711647358556043, -1.2979184024434407, -1.2265779513227264, -1.1573479710314993, -1.0903976123041412, -1.0258635288081326, -0.9638528110480877, -0.9044458441432944, -0.847699039211342, -0.7936474042850046, -0.7423069341379515, -0.6936768092828927, -0.6477414029727232, -0.6044721015415109, -0.5638289481294976, -0.5257621229960343, -0.490213275474081, -0.4571167233821306, -0.4264005355923278, -0.3979875126531647 ], [ -2.2685242603411337, -2.3195012057774607, -2.366382233952121, -2.4085433621765526, -2.445372147573666, -2.4762850256573863, -2.500746238893944, -2.5182873117018634, -2.528525720757141, -2.5311812482483145, -2.526088565380467, -2.513204898192871, -2.492612131590275, -2.464513304521246, -2.429224012220774, -2.3871596572647986, -2.338819729599064, -2.284770351090179, -2.225626233400422, -2.162033022869488, -2.0946507913159547, -2.0241392126064914, -1.9511447628876941, -1.8762901082709922, -1.800165701522107, -1.7233234992170396, -1.6462726311725997, -1.5694768018489478, -1.4933531751768585, -1.4182724856875621, -1.344560125507356, -1.2724979744070475, -1.2023267647442086, -1.1342488014748342, -1.0684308868171635, -1.0050073277086682, -0.9440829306367908, -0.8857359120079761, -0.8300206726187391, -0.7769704019681962, -0.7265994922512427, -0.678905753151075, -0.6338724273142207, -0.5914700129589222, -0.5516579047460365, -0.5143858671187956, -0.4795953560566718, -0.44722070583034235, -0.41719019711011607, -0.3894270218712128 ], [ -2.21346155639346, -2.2631996898592597, -2.308993914183716, -2.350239208770426, -2.386340527038998, -2.416729212682574, -2.4408809488142467, -2.4583342907731263, -2.4687085573190197, -2.4717197067284515, -2.467192865863812, -2.455070431418565, -2.435415085883763, -2.4084075809788974, -2.3743396357424147, -2.333602691018077, -2.286673512939241, -2.234097742604935, -2.176472471902115, -2.1144288208400828, -2.0486153328281875, -1.979682818070148, -1.9082710825325666, -1.8349977965620106, -1.7604495946611305, -1.685175363662831, -1.609681574198257, -1.5344294401234715, -1.459833649860341, -1.386262397934939, -1.3140384489085866, -1.2434409837875915, -1.1747080057274877, -1.108039113113918, -1.0435984805952987, -0.9815179200293278, -0.9218999221063613, -0.864820604826446, -0.8103325167314561, -0.7584672608607143, -0.7092379200444339, -0.6626412757156526, -0.618659821290572, -0.577263577718566, -0.5384117233934204, -0.5020540535680823, -0.46813228601553225, -0.4365812301837767, -0.4073298367345377, -0.38030214333997336 ], [ -2.151008132201106, -2.199239057931883, -2.2436981816815216, -2.283803868229116, -2.318982770385233, -2.348685134692669, -2.3724015725910204, -2.389680456977341, -2.4001448616955185, -2.4035078277664907, -2.3995847643818458, -2.3883019884991255, -2.3697007427462173, -2.343936440869243, -2.31127329782621, -2.272074849509746, -2.226791125038527, -2.175943395833932, -2.1201074947711103, -2.059896683415876, -1.9959449562717495, -1.9288915236176867, -1.8593670299395186, -1.7879818668449001, -1.7153167497539274, -1.6419155634152622, -1.5682803523912536, -1.4948682424179482, -1.4220900250432598, -1.3503101158158202, -1.279847598509323, -1.2109780871408755, -1.1439361672957482, -1.0789182131346706, -1.0160854124358372, -0.9555668664061785, -0.8974626621593534, -0.8418468428999624, -0.7887702237481516, -0.738263019926879, -0.6903372690626578, -0.6449890410618615, -0.6022004378817201, -0.5619413919608837, -0.5241712765108124, -0.48884034365042806, -0.45589100780088765, -0.4252589921143197, -0.3968743552257412, -0.3706624145012367 ], [ -2.0819185651938548, -2.128409747323736, -2.1713194075100932, -2.2100929030555276, -2.2441820160365715, -2.2730590008541682, -2.2962320328454524, -2.3132613377663156, -2.3237750721233468, -2.3274839047796414, -2.3241932583782487, -2.313812310641882, -2.29635910055007, -2.271961382226505, -2.2408531742929068, -2.2033672398515507, -2.1599239943787674, -2.111017567172248, -2.0571999158498753, -1.9990639850999412, -1.9372268917957647, -1.872314011190391, -1.8049446569664953, -1.7357198270835932, -1.6652122635169957, -1.5939588749606877, -1.522455413926743, -1.451153189334026, -1.3804575305493878, -1.3107276919425181, -1.2422778892101065, -1.1753791807569878, -1.1102619411528587, -1.047118712685353, -0.9861072606928829, -0.9273536957038286, -0.8709555587549638, -0.8169847948843437, -0.7654905635956103, -0.7165018543536161, -0.6700298903712815, -0.6260703156325835, -0.5846051688106425, -0.5456046539850075, -0.5090287222800031, -0.4748284811167166, -0.44294744901845096, -0.4133226741099406, -0.3858857338427384, -0.3605636322712338 ], [ -2.0070277698597208, -2.051584913510531, -2.092766591468812, -2.1300479074022007, -2.1629083144408225, -2.190844297757134, -2.213383406235416, -2.2300990403012735, -2.240625222901919, -2.2446704738467584, -2.242029900957968, -2.232594710505671, -2.2163584909740206, -2.193419800228829, -2.163980773378343, -2.1283416853641057, -2.0868916714351813, -2.040096120130079, -1.9884815527169968, -1.9326190165467587, -1.8731070942071535, -1.8105555566179905, -1.7455704981131543, -1.6787415378665733, -1.6106314072523753, -1.5417680061987142, -1.4726388255451752, -1.403687504061864, -1.3353122147648329, -1.2678655461041355, -1.2016555478645594, -1.136947637831072, -1.0739671037726883, -1.0129019787280342, -0.953906110864489, -0.8971022892168438, -0.8425853217757484, -0.7904249921147791, -0.7406688450990369, -0.6933447716536157, -0.6484633776995292, -0.6060201338391114, -0.5659973108105933, -0.5283657116844808, -0.49308621571513533, -0.46011115108807055, -0.4293855148488197, -0.40084805834191073, -0.374432255764811, -0.35006717215585703 ], [ -1.9272219184221577, -1.969688848585092, -2.0089992577926266, -2.044659915777517, -2.0761796523260765, -2.103080607167569, -2.124910793630498, -2.1412575152951, -2.151761021632622, -2.156127693077111, -2.15414202497448, -2.14567671697018, -2.1307002285492347, -2.10928120473967, -2.0815892327111585, -2.0478915319899476, -2.008545468812181, -1.9639872030275298, -1.9147172227348515, -1.86128386631206, -1.8042660835641953, -1.744256632715592, -1.6818466961336727, -1.617612600333875, -1.5521050155754785, -1.4858407367432207, -1.4192969360173686, -1.3529076357173329, -1.2870620707976166, -1.2221045824297172, -1.158335692588364, -1.0960140411618469, -1.0353589108421901, -0.9765531128576963, -0.9197460531679449, -0.8650568409693995, -0.812577337816413, -0.7623750759920367, -0.7144959992575576, -0.6689669983889384, -0.6257982287184359, -0.584985207983445, -0.546510700823313, -0.5103464018456995, -0.4764544328016752, -0.4447886714691116, -0.4152959306815994, -0.38791700583001476, -0.36258760833716397, -0.33923920125876106 ], [ -1.8434103199360417, -1.883666726716935, -1.920995079830708, -1.9549349598884271, -1.985025540029382, -2.010815373017248, -2.0318734724682557, -2.0478013623838134, -2.05824564121301, -2.0629105216161876, -2.0615697715774735, -2.0540774654353404, -2.04037690260264, -2.0205069500239805, -1.9946049812956759, -1.9629056572137056, -1.9257351211361962, -1.8835007363580236, -1.8366771067291514, -1.785789597093514, -1.7313967828405927, -1.6740731990413127, -1.6143935041565995, -1.5529188234478648, -1.4901856807528915, -1.4266976207682949, -1.3629193936616284, -1.2992734237679453, -1.2361382049608345, -1.1738482414134328, -1.1126951669801017, -1.0529297141689387, -0.9947642526631482, -0.9383756691131431, -0.883908409122202, -0.8314775460970922, -0.7811717787582543, -0.7330562895143968, -0.687175420118083, -0.64355513982451, -0.6022052955368367, -0.5631216439586975, -0.5262876733122858, -0.491676227329651, -0.4592509474877865, -0.42896755124152397, -0.40077496464051676, -0.3746163274654293, -0.35042988810501474, -0.3281498040063613 ], [ -1.7565001616712952, -1.794457806795792, -1.8297216061920067, -1.8618644030033216, -1.8904560599991642, -1.9150717913967812, -1.9353017801925336, -1.9507618904704564, -1.9611051819824747, -1.966033860189099, -1.9653112434702185, -1.9587732521820351, -1.9463387576609636, -1.928017870871765, -1.9039170247059736, -1.8742397207035133, -1.8392822109731233, -1.7994241059135643, -1.7551146911717113, -1.7068563309621156, -1.6551865814122333, -1.60066054883475, -1.5438347149554343, -1.4852530447624768, -1.4254357940529028, -1.3648711019101392, -1.3040092116736115, -1.243259012239376, -1.1829865164475604, -1.1235148761346072, -1.0651255550773975, -1.008060325058898, -0.9525238040623405, -0.8986863105784451, -0.8466868590391272, -0.7966361658988038, -0.7486195730288577, -0.7026998250702851, -0.6589196609365418, -0.617304197717245, -0.5778630987606654, -0.5405925275850091, -0.5054768962350162, -0.47249042138147335, -0.44159850435620707, -0.4127589528229223, -0.3859230622221157, -0.3610365747521933, -0.33804053266756595, -0.3168720412629926 ], [ -1.6673755015717582, -1.7029736202905443, -1.736113769970774, -1.766401905232757, -1.7934384236051497, -1.8168250886800803, -1.8361732353744542, -1.8511131991583012, -1.861304836568542, -1.8664489420968473, -1.8662992961807818, -1.8606749338644204, -1.8494719307360503, -1.8326735822393807, -1.8103574926748733, -1.7826980767074945, -1.7499634790054337, -1.712506823486971, -1.670752671122346, -1.625180252020186, -1.576305286773484, -1.5246620708870418, -1.4707871175126555, -1.4152051938731565, -1.3584181546928784, -1.3008966283478587, -1.2430743663400252, -1.1853449188076888, -1.128060230969572, -1.0715307463185153, -1.0160266313455275, -0.961779786300284, -0.9089863641811848, -0.8578095773764928, -0.8083826233443248, -0.7608116052387982, -0.715178359973019, -0.6715431353290422, -0.629947080307683, -0.590414530023435, -0.5529550791196802, -0.5175654468147426, -0.48423114305033044, -0.4529279494154048, -0.4236232310496334, -0.3962770969750906, -0.37084342656590774, -0.3472707793837393, -0.3255032045776445, -0.30548096463232643 ], [ -1.5768812568038335, -1.6100819172133587, -1.6410579873300435, -1.669447872365397, -1.6948819575557312, -1.7169882098842937, -1.735399059454183, -1.7497596276404825, -1.7597373234973932, -1.765032779027669, -1.7653919999214758, -1.760619387404133, -1.7505908638047722, -1.7352657607969646, -1.7146956593736369, -1.6890283569040832, -1.6585057619440484, -1.6234556060251257, -1.584277978275843, -1.5414284347929226, -1.4953996605198283, -1.4467034572805009, -1.3958543903731297, -1.3433559230061318, -1.2896894137613772, -1.235305998319168, -1.180621134528451, -1.1260114494322466, -1.071813467766567, -1.0183238005008275, -0.9658004074939672, -0.9144646026632781, -0.8645035304839798, -0.8160729010668981, -0.7692998231118494, -0.7242856179246411, -0.6811085332535228, -0.6398263036582476, -0.600478525554245, -0.5630888311324381, -0.5276668571128529, -0.4942100126699769, -0.4627050566241747, -0.43312949772936116, -0.4054528340736019, -0.3796376486128119, -0.35564057796365023, -0.3334131710154362, -0.3129026528629062, -0.2940526081612822 ], [ -1.4858122559943032, -1.516596345842105, -1.5453827187790028, -1.5718411564074126, -1.595631190814531, -1.6164065120924505, -1.6338206524856604, -1.6475341273317823, -1.6572231944476867, -1.6625903501458028, -1.6633765561995393, -1.659374892334699, -1.6504447862451521, -1.6365252762896723, -1.6176452223587456, -1.5939283941733982, -1.5655921094142111, -1.532939329049129, -1.4963453358245504, -1.4562408924783192, -1.4130939667471696, -1.3673918500199223, -1.319625008021151, -1.2702734711417256, -1.2197961077776607, -1.168622771176508, -1.1171490748630752, -1.065733419841737, -1.01469584596721, -0.9643182857607204, -0.9148458393870746, -0.8664887468604289, -0.8194247953693097, -0.7738019582118999, -0.7297411132361986, -0.6873387314588263, -0.6466694607980775, -0.6077885564948399, -0.5707341300018228, -0.5355292031095378, -0.5021835649381897, -0.4706954370776759, -0.44105295734543015, -0.4132354959373752, -0.3872148196222147, -0.36295612042087644, -0.34041892518947425, -0.3195579018945067, -0.3003235773004982, -0.282662979419009 ], [ -1.3949068137470628, -1.4232711257737578, -1.4498545236392393, -1.4743567823248889, -1.4964655396743671, -1.5158596719144237, -1.5322139424801353, -1.5452051993668203, -1.5545203986527814, -1.559866687972169, -1.560983624245689, -1.5576572273187745, -1.5497349374360352, -1.537139775152994, -1.5198814439991508, -1.4980621749340297, -1.4718759384244597, -1.4416009633481228, -1.4075867600025813, -1.3702376108713936, -1.32999465381963, -1.2873183898987086, -1.2426729375516257, -1.1965128151582933, -1.149272570158245, -1.1013592259728318, -1.053147290259671, -1.0049759436761327, -0.9571479837187982, -0.9099301085365682, -0.8635541687413599, -0.818219073764168, -0.7740931011376975, -0.7313164149123478, -0.6900036495877403, -0.6502464572973711, -0.612115948808454, -0.5756649841968825, -0.5409302880816793, -0.5079343782888637, -0.4766873068536269, -0.44718821926852304, -0.41942674256787926, -0.39338421576775096, -0.369034777788376, -0.34634632860116343, -0.32528137921666, -0.30579780545881396, -0.2878495194079347, -0.27138707106512117 ], [ -1.3048438364220492, -1.3307994519140827, -1.3551780266049238, -1.377707750082227, -1.3981032163621547, -1.4160679538611494, -1.4312982246204131, -1.4434884392815568, -1.4523385476185018, -1.4575637106427817, -1.4589063633171748, -1.4561503481659244, -1.449136118599826, -1.4377752308406744, -1.4220618168495582, -1.4020788369922255, -1.3779977654606361, -1.350071668182439, -1.3186228641983202, -1.2840271031476642, -1.2466963415512111, -1.2070619098034814, -1.1655593598746625, -1.1226157543185524, -1.0786397035027122, -1.034014119594581, -0.9890914349813658, -0.9441909133185309, -0.8995976397631413, -0.8555627885962537, -0.8123048095975709, -0.7700112322028627, -0.7288408469191106, -0.6889260796596988, -0.6503754231512908, -0.6132758293162492, -0.5776949979115066, -0.5436835207455206, -0.5112768587590513, -0.48049714236908814, -0.45135479481384666, -0.4238499846862047, -0.3979739181067026, -0.3737099836085278, -0.35103476420008284, -0.3299189315494073, -0.31032803703692724, -0.2922232137315779, -0.2755618023035733, -0.2602979126094844 ], [ -1.216242241542182, -1.239814120971592, -1.2619979432531716, -1.2825486514106679, -1.301206621072204, -1.317699539641265, -1.3317455466879349, -1.3430580249740565, -1.351352444384117, -1.3563555898025148, -1.3578172743727301, -1.3555241811089838, -1.3493147960061276, -1.3390936632714323, -1.3248427357690087, -1.306627736395908, -1.284598266579139, -1.2589816179466535, -1.2300713898504703, -1.198212717740136, -1.163786076854444, -1.1271913704087162, -1.088833547881366, -1.0491104992556648, -1.0084035366110822, -0.9670704470947429, -0.9254408858580943, -0.8838137597636103, -0.8424562103361689, -0.8016038139685169, -0.7614616577537425, -0.7222060040318439, -0.6839863143943795, -0.6469274576180661, -0.6111319724043144, -0.5766822938352894, -0.5436428824387627, -0.5120622176734069, -0.4819746347165521, -0.45340199584401975, -0.4263551964779826, -0.4008355120046392, -0.37683579540883017, -0.35434153816515823, -0.3333318080635084, -0.3137800780332103, -0.29565495979185585, -0.27892085545537815, -0.26353853924012727, -0.24946568017169946 ], [ -1.1296614922962864, -1.15088893341724, -1.1709014256010661, -1.1894790195030847, -1.2063867337983063, -1.2213759680678407, -1.2341871587299664, -1.2445540802912913, -1.252210197283028, -1.2568973812094084, -1.258377056709664, -1.256443383744729, -1.2509374487298675, -1.2417607936182302, -1.228886240320161, -1.2123641272075536, -1.1923228114768816, -1.1689633669324526, -1.1425494281924833, -1.1133937832860712, -1.0818434980153149, -1.0482651599349968, -1.0130314286204907, -0.9765096262294186, -0.9390526967630538, -0.900992549534845, -0.8626355918070157, -0.8242601369062881, -0.7861153277966975, -0.7484212202747187, -0.7113697047948367, -0.6751259956440782, -0.6398304696662518, -0.605600687175165, -0.5725334716088358, -0.5407069606654573, -0.510182570291784, -0.4810068348264409, -0.4532131029451437, -0.4268230809260567, -0.40184822314219604, -0.3782909754205954, -0.3561458806418887, -0.3354005582007913, -0.31603657009510466, -0.2980301867520292, -0.28135306545554584, -0.26597285357478473, -0.25185372783869386, -0.23895687975741153 ], [ -1.0456022863501144, -1.0645397583158696, -1.0824194470065422, -1.0990449460257112, -1.114204839743892, -1.1276738073036365, -1.1392149344009272, -1.1485836202997093, -1.1555334559257466, -1.1598243416319725, -1.1612328591295913, -1.159564484145019, -1.154666669202322, -1.146441289815823, -1.1348546600096086, -1.1199434787781035, -1.1018156937813544, -1.08064617275634, -1.0566679489016662, -1.0301603957666092, -1.0014358915131676, -0.9708264069065582, -0.9386711270961441, -0.9053058252494384, -0.8710543389730001, -0.8362222070349986, -0.8010923195577087, -0.7659223142667244, -0.730943398828654, -0.6963602756304863, -0.6623518723734584, -0.6290726247160816, -0.5966541051846023, -0.5652068388692616, -0.5348221873735871, -0.5055742166275929, -0.47752149143238876, -0.45070876062692067, -0.425168512514726, -0.40092239166651167, -0.3779824763429227, -0.3563524213431297, -0.3360284747096345, -0.3170003789027942, -0.29925216817848566, -0.2827628742462871, -0.26750715206898623, -0.25345583705054464, -0.240576443972635, -0.22883361697666316 ], [ -0.9645068194214919, -0.9812246553566264, -0.9970266122339463, -1.0117383683068368, -1.0251710441658084, -1.0371221170719425, -1.047377485942807, -1.0557150381858076, -1.0619100432162736, -1.0657425818338777, -1.0670069790748107, -1.0655228300768333, -1.0611467424701335, -1.0537834905422452, -1.0433950602051787, -1.0300062003203907, -1.0137056000643658, -0.9946425428919274, -0.9730196149309629, -0.94908256572294, -0.923108638404939, -0.8953946279862545, -0.8662456827271647, -0.8359655400538888, -0.8048485678148514, -0.7731737136525806, -0.7412002702729014, -0.7091652427323767, -0.6772820444549216, -0.6457402357768638, -0.6147060364523348, -0.5843233781282465, -0.5547153041296463, -0.5259855652264166, -0.4982202975023641, -0.47148970025042003, -0.44584965757697426, -0.4213432675040607, -0.39800225756525887, -0.37584827706592594, -0.3548940641472902, -0.33514449128107393, -0.3165974964234466, -0.2992449092497649, -0.2830731830437947, -0.2680640432079049, -0.25419506320768925, -0.24144017822598496, -0.22977014599957424, -0.21915296334108114 ], [ -0.8867584638633624, -0.9013429868162237, -0.9151394626065197, -0.9279942905060421, -0.9397401041141873, -0.950196573985459, -0.9591722814099108, -0.966467965330351, -0.9718814068795243, -0.9752141009850035, -0.9762796480638098, -0.97491348071582, -0.9709831656424541, -0.964398188572754, -0.955117968196351, -0.9431569542422104, -0.9285860554028056, -0.9115302155434746, -0.8921625449584969, -0.870695860970974, -0.8473727140899425, -0.822454972822069, -0.7962138717763231, -0.7689211736792646, -0.7408418265979196, -0.7122282604468606, -0.6833162854589102, -0.6543224350941037, -0.6254425306321023, -0.5968512225428041, -0.5687022713827481, -0.541129356426148, -0.5142472340790423, -0.48815310376522003, -0.46292807237575295, -0.43863863746096166, -0.41533813338221404, -0.3930681037193573, -0.37185957786793544, -0.3517342406530557, -0.3327054916445378, -0.3147793963313983, -0.29795553495469407, -0.2822277570572542, -0.2675848510423746, -0.2540111385164878, -0.24148700313299631, -0.22998936321588204, -0.21949209674257708, -0.20996642639932905 ], [ -0.8126810573279534, -0.8252338864789047, -0.8371138704025204, -0.8481868250368917, -0.8583058285867152, -0.8673119536300005, -0.8750359724269082, -0.8813012838029672, -0.8859282665607551, -0.8887401575939624, -0.8895703684236619, -0.8882708965517669, -0.8847211955266064, -0.8788366139822702, -0.8705753914860959, -0.8599432792656341, -0.8469951463576051, -0.8318333696158678, -0.8146032717698304, -0.795486247731191, -0.7746914323038102, -0.7524467992265893, -0.7289904767360099, -0.7045628756312075, -0.6794000085839167, -0.6537281766376282, -0.6277600352242837, -0.6016919367662582, -0.5757023782367734, -0.5499513519332169, -0.5245803958274317, -0.4997131560973067, -0.47545630039723485, -0.451900649881006, -0.42912242687070656, -0.40718454104286783, -0.3861378590287916, -0.3660224201838975, -0.3468685752386431, -0.32869803510276796, -0.31152482483217936, -0.29535614324265946, -0.28019313236407783, -0.2660315632893788, -0.25286244632194177, -0.24067257392910335, -0.22944500507379195, -0.21915949917845445, -0.20979290739547385, -0.2013195281079616 ], [ -0.7425382153239934, -0.7531746959529463, -0.7632423775718314, -0.7726252056444798, -0.7811955465059195, -0.7888148626777807, -0.7953352519517749, -0.8006020474064262, -0.80445763120022, -0.8067465212806177, -0.8073216390653087, -0.8060514640443314, -0.8028275574098205, -0.7975717449056625, -0.7902421546376692, -0.7808373599668436, -0.7693980905032306, -0.7560063024231857, -0.7407817614350687, -0.7238766007844423, -0.7054685118617119, -0.6857532864813833, -0.6649373748635047, -0.6432309902357343, -0.620842122824133, -0.597971658728065, -0.5748096564596873, -0.5515327271514601, -0.5283023953215241, -0.5052642811943073, -0.48254793546908514, -0.46026716506634, -0.4385207065700848, -0.4173931271809842, -0.39695585704148484, -0.37726827932437557, -0.3583788241854051, -0.34032602907756493, -0.32313954102819054, -0.3068410465935727, -0.29144512275798484, -0.27696000749145244, -0.26338829245200435, -0.2507275427881419, -0.2389708504779391, -0.2281073283846191, -0.2181225524126018, -0.20899895896719722, -0.20071620447315164, -0.19325149308299294 ], [ -0.6765331418888504, -0.6853800134299486, -0.6937523240651015, -0.7015508445974276, -0.7086659627500065, -0.7149782987930455, -0.7203600719656227, -0.7246773702773859, -0.7277934347626198, -0.7295729905318913, -0.7298875367794806, -0.7286213522799736, -0.7256778035585877, -0.7209853979856887, -0.7145029498203639, -0.7062232609902297, -0.696174869731436, -0.6844216622132955, -0.6710604194343237, -0.65621662074076, -0.6400389974378392, -0.6226934035421648, -0.6043565515550628, -0.5852100735353556, -0.5654352429822674, -0.5452085599286525, -0.5246982813328741, -0.5040618834084725, -0.4834443760621917, -0.462977350575006, -0.44277862527060396, -0.42295235416215793, -0.4035894746061115, -0.3847683869156715, -0.36655577802133466, -0.3490075201367142, -0.33216959252788403, -0.3160789891797462, -0.30076458720190336, -0.2862479603320527, -0.2725441291549098, -0.2596622450061292, -0.24760620832474523, -0.2363752247783235, -0.22596430409207047, -0.21636470739887237, -0.20756434927860123, -0.19954816061960745, -0.1922984181277163, -0.18579504581699835 ], [ -0.6148093382572576, -0.6220018678070973, -0.6288053999295599, -0.6351361914718558, -0.6409012766321686, -0.6459990129615147, -0.6503202687480926, -0.6537503681523745, -0.6561718738705874, -0.6574682230104589, -0.6575281380691157, -0.656250616391128, -0.6535501739498999, -0.6493619096371396, -0.643645897179323, -0.6363904305274101, -0.6276137540217798, -0.6173640846559202, -0.6057179430393871, -0.5927770068424408, -0.5786638475027747, -0.5635169872472686, -0.5474857181493524, -0.5307250721830673, -0.5133912427115951, -0.49563765563984097, -0.4776117903830003, -0.45945276842052796, -0.4412896659371005, -0.42324046746248334, -0.40541155692334097, -0.38789763696336177, -0.37078197227995946, -0.35413686400059974, -0.3380242765218444, -0.322496553407261, -0.30759717335797676, -0.2933615100701241, -0.2798175705970367, -0.26698669558709254, -0.25488421160625885, -0.24352003091401975, -0.23289919781260138, -0.2230223832987137, -0.21388633145597313, -0.2054842620418924, -0.1978062342172211, -0.19083947647546284, -0.1845686876651127, -0.17897631364227218 ], [ -0.5574524520437517, -0.5631313068089283, -0.568498947250786, -0.5734857417573275, -0.5780139108268701, -0.5819979933178244, -0.5853458534117635, -0.587960316710343, -0.589741492960345, -0.5905897917810455, -0.5904095653190773, -0.5891132218568708, -0.5866255583156107, -0.5828879763129392, -0.577862199148524, -0.5715331156531305, -0.5639104490836747, -0.5550290758283775, -0.5449479748401697, -0.5337479423906965, -0.5215283289654421, -0.5084031278760403, -0.4944967641163056, -0.4799399044633311, -0.4648655501124589, -0.44940559744305486, -0.4336879751351054, -0.4178343971023126, -0.4019587164006131, -0.38616582732282057, -0.3705510403844334, -0.35519984526653725, -0.34018797676639956, -0.32558170521310226, -0.31143828288087283, -0.2978064895519803, -0.28472723205397066, -0.2722341633881553, -0.2603542964775263, -0.2491085954034129, -0.23851253328481925, -0.22857661081521696, -0.21930683309806187, -0.2107051450215196, -0.2027698271833165, -0.19549585549633774, -0.18887522822618985, -0.18289726445826782, -0.17754887796455132, -0.1728148302190622 ], [ -0.5044933268412506, -0.5088014477141313, -0.5128690313128208, -0.5166391625426268, -0.520047739061621, -0.5230238513033975, -0.5254906142649645, -0.5273665186748457, -0.5285673437169387, -0.5290086331623076, -0.5286086809697115, -0.5272919041285294, -0.5249924078595456, -0.5216574847549869, -0.5172507515192812, -0.5117546291246147, -0.5051719209466279, -0.4975263336148158, -0.48886190064810375, -0.479241387090817, -0.46874385275541786, -0.45746161733268575, -0.44549689683412075, -0.4329583705614435, -0.41995789996865074, -0.40660756681691135, -0.3930171389148107, -0.3792920161640825, -0.36553166319098773, -0.35182850014751654, -0.3382672005499008, -0.32492433293949907, -0.31186827953802965, -0.2991593675372153, -0.2868501549971112, -0.2749858216991332, -0.26360462433753074, -0.2527383842021089, -0.2424129834405102, -0.23264885280634262, -0.22346143941654684, -0.21486164749980885, -0.20685624853410922, -0.19944825969259994, -0.19263729129865337, -0.18641986517802334, -0.1807897065180708, -0.17573801220954266, -0.17125369874567342, -0.16732363265851036 ], [ -0.4559121506201488, -0.458991839925456, -0.4618950612444016, -0.46457622430108214, -0.46698338728310695, -0.46905854917955736, -0.47073831770618435, -0.4719550052713912, -0.47263818482626363, -0.4727167057462064, -0.4721211268369152, -0.470786471438869, -0.46865515435763416, -0.46567988164095075, -0.46182629382305174, -0.4570751216494794, -0.45142365571065346, -0.4448863951339208, -0.43749482494829683, -0.42929636152207784, -0.4203525848187375, -0.41073693314600124, -0.40053206472346714, -0.38982709116889147, -0.3787148660853308, -0.36728947505194776, -0.355644029616929, -0.3438688243350292, -0.3320498774728373, -0.32026784554644383, -0.3085972802956878, -0.29710618358248353, -0.2858558097277595, -0.2749006642989118, -0.2642886516335461, -0.25406132893417444, -0.244254231395157, -0.234897239650673, -0.22601496728199355, -0.21762715185747128, -0.2097490378451481, -0.2023917437085132, -0.19556260862215158, -0.18926551661992663, -0.18350119772619733, -0.17826750683301862, -0.17355968187744386, -0.1693705833347412, -0.16569091725195606, -0.16250944406576662 ], [ -0.41164348743028145, -0.41363385796392704, -0.4155055961365606, -0.41722307525499447, -0.4187450297539962, -0.4200247631438382, -0.42101066779623275, -0.42164709805465594, -0.42187562155738245, -0.42163664870087514, -0.42087140676535684, -0.41952418518349355, -0.41754473615347854, -0.41489067726423123, -0.4115297184341169, -0.40744153184559107, -0.4026191047623675, -0.3970694598349922, -0.3908136889243663, -0.3838863140589863, -0.3763340515371649, -0.36821410309936775, -0.3595921261623958, -0.35054004235954794, -0.34113383278117015, -0.3314514443692369, -0.3215709006963987, -0.3115686772413131, -0.30151837045810326, -0.2914896641426492, -0.28154757710780687, -0.2717519631286811, -0.2621572268559884, -0.2528122168358451, -0.2437602576894009, -0.23503928672285523, -0.22668206475922137, -0.2187164360314069, -0.21116561700007375, -0.20404849860616836, -0.19737995054139734, -0.19117111954260713, -0.18542971648846396, -0.18016028924733374, -0.17536447986695536, -0.1710412658903655, -0.16718718640825236, -0.16379655398784942, -0.16086165391561758, -0.15837293230865757 ], [ -0.37158191772460936, -0.37261678432838674, -0.3735849188717937, -0.3744593532011873, -0.37520807979157955, -0.3757941822600743, -0.3761762252283116, -0.3763089370424426, -0.37614420548735383, -0.3756323868705267, -0.37472390274872613, -0.37337106758108285, -0.3715300580123808, -0.3691629054038428, -0.3662393736806273, -0.36273858002603476, -0.3586502295374505, -0.35397536613848146, -0.348726586451817, -0.34292771382241694, -0.3366129781562852, -0.32982578665874596, -0.3226171963282445, -0.315044209610029, -0.30716801110009095, -0.29905224870033376, -0.29076144116533587, -0.2823595695656924, -0.2739088862048742, -0.265468953380831, -0.25709590746584277, -0.24884193156795353, -0.24075491233597623, -0.23287825264714024, -0.22525081113576295, -0.21790694091038976, -0.21087660257253749, -0.20418553013828777, -0.19785543218000323, -0.19190421410803538, -0.18634621079066926, -0.18119242155549076, -0.17645074199098154, -0.17212618888532183, -0.1682211161394085, -0.1647354206259224, -0.16166673779136542, -0.15901062736757776, -0.15676074992121958, -0.15490903516685628 ], [ -0.33558800138623246, -0.3357942407788084, -0.33597997470805074, -0.3361256660341607, -0.3362072386249375, -0.3361961397266746, -0.33605961891086955, -0.33576125120953937, -0.33526172122938513, -0.33451986928069033, -0.3334939800052301, -0.3321432698208404, -0.3304295042160297, -0.32831865324740406, -0.3257824778717717, -0.32279993493133374, -0.31935829705804375, -0.3154539053527001, -0.3110925046460451, -0.306289148629163, -0.3010676994421382, -0.2954599781779734, -0.2895046454366641, -0.28324590281613693, -0.2767321072983564, -0.2700143826597792, -0.26314529796768404, -0.25617766581520884, -0.24916349482085942, -0.2421531141057487, -0.2351944732883915, -0.22833261064648225, -0.22160927457829516, -0.2150626790524266, -0.2087273718385123, -0.20263419434912655, -0.19681031329353083, -0.19127930652218472, -0.18606128800655575, -0.18117305954363672, -0.17662827929209723, -0.1724376395145093, -0.16860904785870656, -0.16514780814619767, -0.1620567979593308, -0.15933664136009784, -0.15698587586637291, -0.15500111339241407, -0.15337719526349725, -0.15210734167103457 ], [ -0.3034943007574611, -0.30299066442595146, -0.3025073282008903, -0.3020310514818061, -0.3015444713578901, -0.3010261072450271, -0.3004505474348407, -0.2997888407083802, -0.2990091073488701, -0.29807737123343814, -0.2969585983785725, -0.2956179083267607, -0.2940219049952608, -0.2921400558022482, -0.2899460351921743, -0.287418943956141, -0.2845443207514986, -0.28131487705228064, -0.2777309096472649, -0.2738003724917317, -0.26953861820841096, -0.2649678449537547, -0.2601163037362024, -0.25501733294076057, -0.24970829052952803, -0.2442294510762837, -0.23862292615464997, -0.232931654658187, -0.2271984963543272, -0.22146544899988707, -0.21577299784883652, -0.21015959704715237, -0.20466127548936552, -0.19931135512989862, -0.1941402672066841, -0.1891754509411694, -0.18444131959556476, -0.17995927989340244, -0.1757477924040196, -0.17182246229260767, -0.16819615165734714, -0.16487910639169612, -0.1618790920529498, -0.15920153455589015, -0.15684966263546118, -0.15482464994377443, -0.15312575538107276, -0.1517504608275244, -0.15069460586410566, -0.14995251936690757 ], [ -0.2751112441609602, -0.2740075827832289, -0.2729598669773945, -0.27196012083598986, -0.2709965941387871, -0.2700537198254769, -0.26911222533220047, -0.26814941747884213, -0.26713965335534096, -0.26605499941508004, -0.26486606795226963, -0.2635430051120651, -0.2620565890131117, -0.2603793824809286, -0.258486874587726, -0.2563585407426945, -0.25397875380209056, -0.25133748874274753, -0.24843077976047168, -0.2452609090286244, -0.24183632798662646, -0.23817133209960706, -0.2342855262255057, -0.23020312858672343, -0.22595216638785542, -0.22156361574180927, -0.2170705337948884, -0.21250722314683013, -0.20790845927403745, -0.20330880195574075, -0.19874200265974573, -0.19424051211485427, -0.18983508620946488, -0.18555448397167984, -0.18142524857804276, -0.1774715608630264, -0.17371515436797758, -0.17017528128539583, -0.16686871946182458, -0.1638098117090261, -0.16101052987815234, -0.15848055736391142, -0.15622738485344412, -0.15425641517682398, -0.1525710740325361, -0.15117292414615235, -0.1500617810757745, -0.14923582941059288, -0.14869173852839634, -0.1484247773948011 ], [ -0.2502326614886523, -0.24862950526454464, -0.24711305770457503, -0.24567968258892026, -0.2443222622820933, -0.24303011810564423, -0.24178906184334825, -0.24058159529955603, -0.23938726884571526, -0.23818320154563377, -0.23694475496236556, -0.2356463407682916, -0.2342623299233022, -0.23276801996312924, -0.23114060852563578, -0.2293601171509716, -0.22741021061631028, -0.22527886381040263, -0.22295883972828467, -0.2204479571064173, -0.2177491425746949, -0.21487027792921864, -0.21182386645967655, -0.20862655197203894, -0.2052985296714538, -0.2018628894887915, -0.19834493032996892, -0.19477147899238045, -0.1911702411360503, -0.18756920467479543, -0.18399610905787545, -0.18047798771639956, -0.17704078579336202, -0.1737090512992998, -0.17050569501842205, -0.16745181270815768, -0.1645665622069632, -0.1618670877937738, -0.15936848433892203, -0.15708379429065888, -0.15502403122504527, -0.15319822445527986, -0.1516134799835125, -0.15027505383945083, -0.14918643455932368, -0.14834943219901953, -0.1477642718385972, -0.14742969001751627, -0.14734303294073858, -0.14750035561736996 ], [ -0.22864087397186394, -0.22662930825911953, -0.22473062870270133, -0.22294472041739555, -0.2212682365918075, -0.2196944909116414, -0.21821346261752805, -0.21681192885588518, -0.21547373399809766, -0.2141801987589318, -0.21291066344815635, -0.2116431500676994, -0.21035511808402396, -0.2090242796879287, -0.20762943343633222, -0.20615127146419798, -0.20457311570974546, -0.20288154301451877, -0.20106686711933786, -0.19912345649663998, -0.1970498792842923, -0.1948488788400473, -0.19252719428342857, -0.19009524883364692, -0.18756673423672154, -0.18495812200641626, -0.18228813187234105, -0.17957718529127242, -0.1768468678220536, -0.17411941928818964, -0.17141726556955894, -0.16876260105333718, -0.16617702655380007, -0.1636812440517592, -0.16129480695373433, -0.15903592268560174, -0.156921303217467, -0.15496605844290712, -0.15318362708051825, -0.15158573981506862, -0.15018240965357532, -0.14898194486380878, -0.14799098033220348, -0.14721452368389332, -0.14665601301944808, -0.14631738361916602, -0.14619914143013069, -0.14630044157209854, -0.1466191704673192, -0.1471520305118159 ], [ -0.2101112652838315, -0.20777304205606906, -0.20556961073607116, -0.20350366254201768, -0.20157487254499817, -0.1997797721707384, -0.19811171919227233, -0.19656097798374095, -0.1951149186310599, -0.19375833784732066, -0.19247389771129186, -0.19124267046641075, -0.19004476965100658, -0.18886004052652883, -0.18766877704366336, -0.18645242925979244, -0.18519426476496226, -0.18387995047363925, -0.18249802684415872, -0.18104025454223693, -0.17950182282737948, -0.1778814184509514, -0.1761811626103147, -0.17440643070748152, -0.17256557481232848, -0.1706695716491029, -0.16873161971917106, -0.1667667081677653, -0.1647911776501223, -0.16282229024559158, -0.16087782186729704, -0.15897568700253717, -0.15713360227377193, -0.15536879240678747, -0.15369773981239598, -0.15213597714120053, -0.15069792081837075, -0.14939674264182035, -0.148244275957087, -0.14725095263221943, -0.1464257669806508, -0.1457762628650896, -0.14530854041629793, -0.1450272790817957, -0.14493577405150093, -0.14503598346597002, -0.14532858417753536, -0.14581303418792402, -0.1464876402141546, -0.14734962912712746 ], [ -0.19441629841328156, -0.19182412882936317, -0.1893847117095484, -0.18710292638839143, -0.18498082592800658, -0.18301749653700083, -0.18120900199015155, -0.17954842421663275, -0.1780260077080944, -0.17662941071015648, -0.17534406047442785, -0.17415360351078646, -0.17304043530812052, -0.17198628802765858, -0.17097284989940076, -0.16998238708464553, -0.16899833804110687, -0.1680058521080583, -0.16699224797346446, -0.1659473734575836, -0.164863854994721, -0.16373723255543182, -0.16256598277863143, -0.16135143915021244, -0.1600976227380566, -0.15881100006099436, -0.15750018613166694, -0.15617561074040354, -0.1548491649229229, -0.15353384261408198, -0.15224339006756105, -0.1509919730115492, -0.14979386894495628, -0.14866318961855574, -0.14761363668621286, -0.14665829179373002, -0.14580944099802395, -0.1450784323541523, -0.14447556473547163, -0.1440100054233029, -0.14368973367788218, -0.14352150734669222, -0.1435108495482511, -0.14366205256031184, -0.14397819621529906, -0.14446117833833227, -0.1451117550315768, -0.1459295888926797, -0.1469133035367609, -0.14806054305649985 ], [ -0.1813289718376898, -0.17854695183039793, -0.1759320333399601, -0.17349075570050032, -0.1712270020691542, -0.16914185143881255, -0.16723350526232195, -0.16549729847868733, -0.1639258017544043, -0.162509017840758, -0.1612346702526568, -0.16008857727735193, -0.15905509902432313, -0.15811764031937225, -0.15725918824128482, -0.1564628604618663, -0.1557124396157823, -0.1549928698400489, -0.15429069430884312, -0.1535944167596941, -0.15289477520918338, -0.15218492174434894, -0.15146050789559218, -0.15071968015995751, -0.14996299438654792, -0.14919326074503836, -0.14841533281452657, -0.14763585502273413, -0.1468629824009231, -0.14610608561574012, -0.14537545273034214, -0.14468199735142795, -0.14403698092176231, -0.14345175505766838, -0.14293752810470894, -0.1425051585477939, -0.14216497659131289, -0.1419266341255243, -0.14179898241086386, -0.14178997612742372, -0.1419066019365096, -0.14215482936557367, -0.1425395816384889, -0.14306472400887738, -0.14373306719390477, -0.1445463836267331, -0.1455054344253639, -0.14661000519162504, -0.14785894898691243, -0.1492502350638676 ], [ -0.1706257300052345, -0.16770985804468785, -0.16497216020790018, -0.16242038939340198, -0.1600597973344018, -0.157892983802854, -0.15591981170400881, -0.1541373966568329, -0.15254017712255363, -0.1511200678612914, -0.14986669559661037, -0.14876771147672652, -0.14780917055366327, -0.14697596443231165, -0.14625228986112027, -0.1456221336982979, -0.14506975365283115, -0.1445801345933937, -0.14413940200737052, -0.14373517718834572, -0.14335686262042713, -0.1429958504206672, -0.1426456511855585, -0.14230194478781533, -0.1419625582846744, -0.14162737893165578, -0.14129821225566497, -0.1409785962368535, -0.14067358296420407, -0.1403894987997334, -0.140133693266846, -0.13991428572698772, -0.13973991756575477, -0.1396195161908036, -0.13956207573683121, -0.13957645803960217, -0.13967121622157896, -0.13985444215081966, -0.14013363810523471, -0.14051561220222952, -0.1410063965387598, -0.1416111865250127, -0.14233429957765797, -0.1431791511528886, -0.1441482460293606, -0.14524318277644754, -0.14646466944315972, -0.14781254865528282, -0.1492858304924658, -0.15088273171422673 ] ], "zauto": true, "zmax": 2.6755038959238364, "zmin": -2.6755038959238364 }, { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 1, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(255,247,251)" ], [ 0.14285714285714285, "rgb(236,231,242)" ], [ 0.2857142857142857, "rgb(208,209,230)" ], [ 0.42857142857142855, "rgb(166,189,219)" ], [ 0.5714285714285714, "rgb(116,169,207)" ], [ 0.7142857142857143, "rgb(54,144,192)" ], [ 0.8571428571428571, "rgb(5,112,176)" ], [ 1.0, "rgb(3,78,123)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x2", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y2", "z": [ [ 0.4366749114656259, 0.4281993527156627, 0.4203960761955245, 0.41337280824504774, 0.40723509898647137, 0.4020828241843974, 0.3980059615240075, 0.39507985112522254, 0.3933603391593367, 0.3928793632700242, 0.39364160766394896, 0.39562278815214136, 0.3987699176464843, 0.40300359615138504, 0.40822204864612227, 0.41430638600187264, 0.4211264447884855, 0.4285465808547801, 0.43643091675554413, 0.44464772163743976, 0.4530727830910918, 0.46159177875555785, 0.47010175574703483, 0.47851187860972727, 0.4867436208422684, 0.4947305635765558, 0.5024179392549978, 0.5097620270698067, 0.5167294763737005, 0.5232966075329533, 0.5294487181657654, 0.5351794065771439, 0.5404899129855286, 0.545388472068203, 0.5498896666105934, 0.5540137708782573, 0.5577860731107318, 0.5612361687599857, 0.5643972193637664, 0.567305175928059, 0.5699979701034561, 0.5725146809968942, 0.5748946898730659, 0.5771768389632076, 0.579398613799733, 0.5815953706331853, 0.5837996313077095, 0.5860404672976747, 0.5883429923810607, 0.5907279797236501 ], [ 0.42186342949749484, 0.41262672975915426, 0.404085352242255, 0.39636057825753723, 0.38957331206514045, 0.3838400834292826, 0.37926795423985254, 0.37594855363206675, 0.37395175465424946, 0.37331976687079227, 0.3740625512488047, 0.3761553835987122, 0.37953908491106164, 0.38412297424437425, 0.3897901203662722, 0.3964041143790429, 0.4038164423172047, 0.4118736059257912, 0.42042335668355946, 0.429319682465199, 0.4384264408590199, 0.4476197231846948, 0.4567891462103028, 0.4658383139027369, 0.4746846884630339, 0.48325907838968657, 0.49150490750129355, 0.4993773836483143, 0.506842645472231, 0.5138769327729716, 0.5204658013436134, 0.52660338582787, 0.5322917030277998, 0.5375399818120081, 0.5423640031456591, 0.546785433795452, 0.5508311391953595, 0.5545324642302446, 0.5579244748908693, 0.5610451585567642, 0.563934585800319, 0.5666340418110306, 0.5691851405299594, 0.5716289390514493, 0.5740050734637145, 0.5763509397390326, 0.5787009442666922, 0.581085847950416, 0.5835322253949349, 0.5860620566666332 ], [ 0.40741634556843415, 0.39739631200613934, 0.3880878316786876, 0.3796263020266014, 0.37214919458489576, 0.36579159623348795, 0.36068015926652186, 0.35692566994037117, 0.3546148754144879, 0.3538026275830505, 0.35450564267458584, 0.3566990907096769, 0.36031677980455734, 0.3652550025143884, 0.37137939529337666, 0.3785336613216317, 0.3865488480313912, 0.395252033874029, 0.4044736401760181, 0.4140529940204691, 0.423842115017852, 0.43370793068051966, 0.4435332402544085, 0.45321677140917926, 0.46267264188592433, 0.47182947846293505, 0.48062937909618497, 0.4890268429099302, 0.49698774241737387, 0.5044883743117, 0.5115145984585758, 0.5180610574215989, 0.5241304588279196, 0.5297328981906653, 0.5348851988661116, 0.5396102474426857, 0.5439363061855861, 0.5478962886136712, 0.5515269894707621, 0.5548682659889289, 0.5579621731917863, 0.5608520618151188, 0.563581652963495, 0.5661941085660772, 0.5687311207015499, 0.5712320455848093, 0.5737331091382627, 0.5762667103869346, 0.5788608463334622, 0.5815386775724667 ], [ 0.3935123610622666, 0.3826981557542796, 0.3726039697993329, 0.36337947984778407, 0.35517959386757453, 0.34815963077116235, 0.3424682740624663, 0.33823844094291555, 0.33557683107227954, 0.33455357346592324, 0.335193811369986, 0.33747299640490475, 0.3413170163047103, 0.34660723378388963, 0.35318944941119634, 0.3608851008378449, 0.36950285860876114, 0.37884910618897655, 0.38873637191591887, 0.3989893745525432, 0.4094487983689799, 0.41997317858473615, 0.43043937635419, 0.44074210728825436, 0.4507929119590494, 0.46051886065426384, 0.46986119192804815, 0.47877400684395915, 0.4872230816936076, 0.49518482040597694, 0.5026453408872307, 0.5095996737276283, 0.5160510439429125, 0.5220102041322373, 0.5274947887244831, 0.53252866251417, 0.5371412415775078, 0.5413667703588723, 0.5452435448935473, 0.5488130785656052, 0.5521192133123841, 0.5552071855849559, 0.5581226624141523, 0.5609107683101914, 0.5636151280879022, 0.5662769536891533, 0.568934204331616, 0.571620848600599, 0.574366254316921, 0.5771947272460421 ], [ 0.38032839158910975, 0.3687229831157268, 0.357837798112872, 0.3478364592174944, 0.3388916726975162, 0.331180219501393, 0.3248749469630226, 0.3201337502170002, 0.31708640159075635, 0.315821078840276, 0.3163731544080802, 0.31871879984879414, 0.3227750455112031, 0.3284063817560905, 0.3354364194888294, 0.34366216316655007, 0.35286834975840575, 0.3628399041436106, 0.3733714579610688, 0.3842737084143457, 0.39537696023347557, 0.40653247009793286, 0.41761226578355337, 0.4285080339510652, 0.4391295371879851, 0.4494028816491036, 0.45926883631601406, 0.4686813121785696, 0.4776060441850698, 0.4860194762622307, 0.4939078246353482, 0.5012662820193857, 0.5080983208826215, 0.5144150548361962, 0.5202346211431885, 0.5255815529867919, 0.5304861166550234, 0.5349835957275849, 0.5391135114518524, 0.5429187756417312, 0.5464447795200849, 0.5497384288101337, 0.552847141848949, 0.5558178332500096, 0.5586959103171903, 0.5615243126147363, 0.5643426264579869, 0.5671863053312926, 0.5700860242433387, 0.5730671908833019 ], [ 0.3680308277954095, 0.3556528859562025, 0.3439872494903495, 0.33321060681780096, 0.3235131744884963, 0.31509374376921373, 0.30815084157528694, 0.3028697264541279, 0.2994061013960527, 0.2978688770678166, 0.29830547174229083, 0.30069326719194006, 0.3049395836789772, 0.310890269693501, 0.31834472471152153, 0.3270738714629495, 0.3368376253959522, 0.34739942185207795, 0.3585366917639249, 0.3700472879561242, 0.3817525311058035, 0.3934977941458557, 0.40515151449979075, 0.4166033570217814, 0.42776204711152654, 0.4385532077813266, 0.44891738808009735, 0.45880836596749064, 0.4681917406116835, 0.4770437886755742, 0.4853505383125637, 0.49310700665101653, 0.500316546550541, 0.5069902529364306, 0.5131463858486968, 0.51880977515886, 0.5240111800023131, 0.5287865840254746, 0.5331764154488531, 0.53722468868138, 0.5409780717662795, 0.5444848912082029, 0.5477940925411213, 0.5509541810564408, 0.5540121720438771, 0.5570125832826889, 0.5599965039564561, 0.5630007733438126, 0.5660572994214011, 0.5691925419896261 ], [ 0.3567660553213484, 0.34365082586037216, 0.33123273775743645, 0.31970014359123794, 0.3092597525702086, 0.30013202347759793, 0.2925417280013642, 0.2867029990821819, 0.28279965205399554, 0.2809635991223945, 0.28125596092689237, 0.28365588111921414, 0.28806038630653735, 0.29429540489923733, 0.3021348205377647, 0.31132272118193943, 0.32159428376455823, 0.33269234639714723, 0.344378608928094, 0.3564398243993586, 0.3686900763485704, 0.3809704084162148, 0.3931469203242391, 0.40510816752923956, 0.4167624211060307, 0.4280351135339561, 0.43886662831751067, 0.44921048065872754, 0.45903187000341633, 0.46830655022630874, 0.4770199487224644, 0.48516646370602196, 0.4927488740438658, 0.49977780440052316, 0.5062711982081267, 0.512253760853953, 0.5177563449844523, 0.5228152588193805, 0.5274714868997601, 0.5317698208604726, 0.5357579056876145, 0.539485214462542, 0.5430019716534017, 0.5463580513061355, 0.5496018816191711, 0.5527793909108452, 0.555933031471081, 0.559100916890786, 0.5623161050244733, 0.5656060528465928 ], [ 0.34665130612025075, 0.33285004364982107, 0.3197250784467842, 0.30747461742427534, 0.29632013590877704, 0.2865024062873996, 0.278271776150471, 0.2718714695002619, 0.26751444849779366, 0.2653570796549706, 0.26547546516171383, 0.26785114854019476, 0.27237080150615833, 0.2788400493904078, 0.28700711673714163, 0.29658977739794634, 0.3072997681753526, 0.318861237520386, 0.33102235927452384, 0.3435609737177706, 0.35628585938272167, 0.36903527368880623, 0.38167408842072476, 0.3940904448726388, 0.4061924952732048, 0.41790552698878053, 0.42916958400490496, 0.43993758911072933, 0.45017390989094325, 0.4598532847042097, 0.46896001824800515, 0.4774873610650273, 0.4854369976245436, 0.4928185799242277, 0.49964925599913207, 0.5059531544109297, 0.5117607964547597, 0.5171084175295565, 0.5220371880790926, 0.5265923329463273, 0.5308221560411686, 0.5347769849232646, 0.5385080571165023, 0.5420663764182521, 0.5455015727374517, 0.5488608026154426, 0.5521877290839703, 0.5555216185271763, 0.5588965885588142, 0.5623410346815237 ], [ 0.3377671797493962, 0.32334491217032724, 0.309574438916779, 0.29666178306728547, 0.28484088243868233, 0.2743704803482619, 0.2655244583094876, 0.258573746176541, 0.2537599299459427, 0.25126408597608185, 0.25117799163769994, 0.253486364064187, 0.25806626907306685, 0.26470395746488895, 0.2731234133537331, 0.2830181618276671, 0.29407910629252565, 0.3060145592666519, 0.31856193138041994, 0.33149255426086816, 0.3446117950180266, 0.357756464825075, 0.37079102822089666, 0.38360359121097914, 0.3961022177128711, 0.4082118239814307, 0.41987171250209404, 0.4310337011439014, 0.4416607526596202, 0.4517259927133895, 0.4612120067455038, 0.47011031759486266, 0.4784209611187323, 0.4861520928682383, 0.4933195736362471, 0.499946494832053, 0.5060626161567456, 0.5117036982302354, 0.5169107220189018, 0.5217289954618284, 0.5262071558147283, 0.5303960839888077, 0.5343477544462795, 0.5381140507423781, 0.5417455821535496, 0.5452905405006987, 0.5487936377662508, 0.5522951640169231, 0.5558302012814952, 0.5594280224694517 ], [ 0.33015314203387636, 0.3151848824765009, 0.3008423361900068, 0.2873372670671612, 0.27491340499608935, 0.26384431047250534, 0.2544240640113502, 0.2469482520642992, 0.24168481712489392, 0.2388383887172339, 0.2385164184836481, 0.24070779065266928, 0.24528177823591263, 0.25200780147058194, 0.26058879811873553, 0.27069769274179656, 0.2820083305731418, 0.2942167266715599, 0.3070525409290082, 0.32028292517047297, 0.33371145091723753, 0.34717444809426157, 0.36053639926075565, 0.373685386615736, 0.38652910253361006, 0.3989916153524419, 0.411010895243021, 0.42253700904805463, 0.4335308540517791, 0.4439632944882234, 0.4538145753606309, 0.4630739061468303, 0.47173912672966584, 0.4798163866344417, 0.4873197852293966, 0.49427093473478645, 0.5006984199575971, 0.5066371390903546, 0.5121275191811238, 0.5172146084184699, 0.521947055458695, 0.5263759937516009, 0.5305538560984409, 0.534533151217313, 0.5383652394609171, 0.5420991485042297, 0.5457804712701624, 0.5494503871677376, 0.5531448436640818, 0.5568939283694874 ], [ 0.3238068665890177, 0.3083727892864524, 0.29353845715283905, 0.2795193963199844, 0.2665663107942391, 0.2549639012715042, 0.24502212777136456, 0.23705678415587575, 0.2313583340700395, 0.22815249364226223, 0.22756178387069806, 0.2295805958126274, 0.23407342332336847, 0.24079707253117655, 0.24943830052790697, 0.2596543841556354, 0.2711066575053041, 0.28348263213887487, 0.2965070917102927, 0.30994495885731654, 0.3235991420181864, 0.3373059641315181, 0.35092991233700116, 0.36435869864645337, 0.3774990912940324, 0.39027364782033375, 0.4026183006233252, 0.41448066188976906, 0.4258188882060931, 0.4366009493078005, 0.446804163956796, 0.45641488936872193, 0.4654282739476441, 0.4738480040415533, 0.481685993287424, 0.48896197797791663, 0.49570299424954295, 0.5019427233884186, 0.5077207007747548, 0.5130813924280869, 0.5180731510921563, 0.5227470714336159, 0.5271557711353533, 0.5313521311577484, 0.5353880337730927, 0.5393131406078331, 0.5431737543092272, 0.5470118061469823, 0.5508640076378561, 0.5547611972095229 ], [ 0.3186874758062635, 0.3028678705340869, 0.2876231140977762, 0.27317064552147924, 0.2597653340570707, 0.24769913109208644, 0.23729303158063803, 0.22887774244879203, 0.22276140562046476, 0.21918752489708782, 0.2182928191325129, 0.22007903821464725, 0.22441007699543777, 0.23103576204163737, 0.23963275415872193, 0.24984836598009041, 0.2613361494720417, 0.27377864616881475, 0.2868981079555676, 0.3004585433020631, 0.31426270909355647, 0.3281468606125233, 0.3419750590608705, 0.3556340054534303, 0.36902880841121505, 0.3820797616999215, 0.39472003614751866, 0.4068941190487844, 0.4185568188402401, 0.42967266581660324, 0.44021556444403476, 0.45016858037524177, 0.45952377115145937, 0.46828199201063053, 0.476452626872167, 0.484053209810092, 0.4911089148247146, 0.4976519022076287, 0.503720518930197, 0.5093583587991487, 0.5146131959604873, 0.519535812833201, 0.5241787506392644, 0.5285950170828874, 0.5328367909696047, 0.5369541670943175, 0.5409939860105761, 0.5449987918697766, 0.5490059571518715, 0.5530470058636139 ], [ 0.3147218072295629, 0.2985926677703474, 0.2830146785315054, 0.26820541117127783, 0.2544211631106686, 0.2419572846119477, 0.23114091368688602, 0.22231221651393834, 0.215791956457948, 0.21183803272652796, 0.21060074005906276, 0.21209173020160152, 0.21617945783967238, 0.22261332551013108, 0.23106651712071813, 0.24118207121031685, 0.25261002584694997, 0.265030732802482, 0.2781654001848031, 0.29177762312280975, 0.3056698335048081, 0.3196776393141892, 0.33366389455410345, 0.3475134480318736, 0.36112893594286816, 0.3744276514082429, 0.3873393616891902, 0.3998048827022669, 0.4117752140351459, 0.42321105713621915, 0.43408256839969167, 0.4443692290119251, 0.4540597407928605, 0.4631518805179345, 0.4716522642909599, 0.4795759889978313, 0.4869461304589429, 0.49379308838792846, 0.5001537773429409, 0.5060706710674091, 0.5115907153198404, 0.5167641316389232, 0.5216431414146796, 0.5262806458647522, 0.5307289026025168, 0.5350382428824505, 0.5392558747612529, 0.5434248158669679, 0.5475829949837242, 0.551762554300267 ], [ 0.31181214920493644, 0.29544198387202697, 0.2795999360670885, 0.2645019052766316, 0.250402947114262, 0.23759815079683455, 0.22641623203163444, 0.21720180780963314, 0.2102837499203847, 0.20593160606982833, 0.20430938554308417, 0.2054420105506383, 0.20920837014951496, 0.21536436197710293, 0.22358616126850536, 0.23351756957187814, 0.24480838488569376, 0.25713842488557176, 0.2702282671683195, 0.28384068436992216, 0.29777691657476546, 0.3118708740367492, 0.32598315235593595, 0.33999580258991535, 0.3538081978116857, 0.3673340049333741, 0.3804991139378355, 0.39324032226959077, 0.40550457100544074, 0.4172485523235318, 0.42843853876134913, 0.43905031588127064, 0.4490691278387168, 0.4584895689182329, 0.46731537344933344, 0.47555907221033233, 0.48324149621602236, 0.49039111941267266, 0.49704324094211705, 0.5032390158254026, 0.5090243505240656, 0.5144486870319701, 0.5195637058864149, 0.5244219845098425, 0.5290756521762058, 0.5335750861055842, 0.5379676941813477, 0.5422968281098782, 0.5466008662682093, 0.5509124980733947 ], [ 0.30984376926275436, 0.2932917511954402, 0.2772446548015242, 0.26191482577996994, 0.24755346599903347, 0.23445201558981166, 0.22293674459403798, 0.21335252725712836, 0.2060328530214012, 0.20125728191798228, 0.19920473210883854, 0.19991760740972672, 0.2032915638702149, 0.20909584554522107, 0.21701546170295552, 0.22669894456481152, 0.23779782226122131, 0.24999171409002025, 0.26299980757272534, 0.2765827087410336, 0.2905389308147509, 0.3046992213612368, 0.3189206692964998, 0.33308155683055046, 0.347077302556745, 0.36081750382344663, 0.3742239299112849, 0.3872292642736728, 0.3997763934531773, 0.4118180628781756, 0.42331675003834346, 0.4342446360565843, 0.4445835842560501, 0.4543250579533675, 0.46346992938853443, 0.4720281478665195, 0.48001824844872076, 0.4874666935512717, 0.49440704920322076, 0.5008790060172128, 0.5069272625089942, 0.5126002954646833, 0.5179490485828957, 0.5230255763926517, 0.5278816850729686, 0.5325676147716071, 0.5371308088165405, 0.54161481340567, 0.5460583467224839, 0.5504945690224361 ], [ 0.30869107414050906, 0.2920061918890082, 0.27580212702313067, 0.26028575216153715, 0.24570190688655041, 0.23233532547158003, 0.22050643390372893, 0.2105570927787668, 0.20282305116102137, 0.19759341894331256, 0.19506423407484408, 0.19530027950271348, 0.19822053936181244, 0.20361415534360056, 0.21118000443657486, 0.2205741286093343, 0.23145039040369153, 0.24348720748931724, 0.2564004575607763, 0.2699463365446325, 0.2839184787532733, 0.29814264986437333, 0.3124710498108128, 0.3267772558310712, 0.3409521941321502, 0.3549011767953664, 0.3685418753082125, 0.38180304228355083, 0.3946237866674504, 0.4069532256565758, 0.4187503634033696, 0.4299840750399566, 0.4406331013126121, 0.450685982869301, 0.4601408836109805, 0.46900526960858696, 0.4772954242686259, 0.48503579220659776, 0.4922581542112074, 0.4990006442691604, 0.5053066272762887, 0.511223463024838, 0.5168011883666453, 0.5220911549390456, 0.5271446641584379, 0.5320116438738091, 0.5367394116432694, 0.5413715676491365, 0.5459470555913054, 0.550499422561519 ], [ 0.30822217178580485, 0.29144280589190064, 0.27511883348788296, 0.25944983201473476, 0.24467199758654945, 0.23106072125994154, 0.2189278366858164, 0.20860978013676446, 0.2004431690244683, 0.19472710662895887, 0.1916776425695334, 0.1913871915858364, 0.1938046139646645, 0.19874509666579976, 0.2059256289106458, 0.21501144348167361, 0.22565808857569106, 0.23754054860706666, 0.2503684141729703, 0.26389042433675236, 0.2778926558357855, 0.29219380179585586, 0.30663972886175606, 0.32109846653319013, 0.3354561075652983, 0.34961371952451326, 0.36348518138987834, 0.37699578266253536, 0.39008140319200135, 0.4026881003396069, 0.41477195080311835, 0.42629901966112094, 0.4372453550005387, 0.44759693078312046, 0.4573494823162987, 0.4665081973861294, 0.4750872417951175, 0.48310911103719884, 0.49060381061565517, 0.49760787658909383, 0.5041632557711787, 0.5103160719188695, 0.5161153103320899, 0.5216114584566346, 0.526855144049901, 0.5318958148309827, 0.5367805038545946, 0.5415527227563406, 0.5462515203259254, 0.5509107366451559 ], [ 0.30830254734873774, 0.2914559794925351, 0.2750380346812193, 0.259239465317823, 0.24428595678741533, 0.23044147672931578, 0.21800721062888273, 0.20731252549905477, 0.19869423043442472, 0.19246237788441875, 0.18885613091303582, 0.1880007010445745, 0.18988105219295487, 0.19434403889662547, 0.20112825463328254, 0.20990883337942123, 0.22034126868574244, 0.23209382098750084, 0.2448659285843008, 0.2583951895255758, 0.27245707279552445, 0.2868609723621064, 0.301445023920343, 0.3160710381949964, 0.3306201791721535, 0.3449895905680363, 0.3590899502307309, 0.37284382685184786, 0.38618467289446207, 0.3990562817181215, 0.41141254913250336, 0.42321740101148025, 0.43444477380425517, 0.4450785604198392, 0.45511245792745764, 0.46454967464653546, 0.4734024720670826, 0.4816915317458851, 0.4894451492901446, 0.496698267326193, 0.5034913674931112, 0.5098692484033943, 0.5158797223819571, 0.5215722686215395, 0.5269966839749027, 0.532201774606942, 0.53723413177266, 0.5421370327473686, 0.5469495032496354, 0.5517055706396289 ], [ 0.3087991227823374, 0.29190082242878923, 0.2754032652711077, 0.25948734235927934, 0.24436698157672787, 0.23029337839670183, 0.2175558040900242, 0.20647565600174797, 0.19738980733057382, 0.19062041916636155, 0.18643266451903645, 0.1849891802657603, 0.18631654948768778, 0.19029812506959537, 0.19669671909715658, 0.2051971016786188, 0.21545197079861875, 0.22711868120141088, 0.2398819900535793, 0.253464284225937, 0.2676272492792148, 0.28216883094755424, 0.29691824759470153, 0.3117307030355987, 0.3264826450002113, 0.3410679164398637, 0.3553948656382545, 0.3693843334541339, 0.3829683664273461, 0.39608948028315394, 0.4087003008265943, 0.42076342694893565, 0.4322513859682734, 0.44314657963966764, 0.45344114647094136, 0.4631366904488254, 0.4722438470149507, 0.48078167403735506, 0.48877686900522344, 0.4962628243658002, 0.5032785414753347, 0.5098674305791825, 0.5160760298944506, 0.5219526813385699, 0.5275462036195434, 0.5329046050233023, 0.5380738779862605, 0.543096915153536, 0.5480125819603776, 0.552854973914978 ], [ 0.30958592915331673, 0.29263889286190575, 0.27606391926718055, 0.2600316533212266, 0.24474381654450703, 0.23043838844732853, 0.21739239099304697, 0.20591917693880327, 0.19635610202185227, 0.18903869077484964, 0.1842605848774744, 0.18222557998085606, 0.1830062347992064, 0.1865259828830429, 0.19257321569773328, 0.20084087735201103, 0.21097510006407516, 0.22261741806536114, 0.2354330097249894, 0.24912495309954172, 0.26343820093695147, 0.27815747464997964, 0.29310231591581143, 0.30812135075694796, 0.3230868957402042, 0.33789043117005907, 0.3524391056363544, 0.3666532342808983, 0.38046464877000585, 0.3938157126321959, 0.40665880845052493, 0.4189561185418161, 0.4306795479002026, 0.4418106700488848, 0.4523406081420101, 0.46226979227750953, 0.4716075581681308, 0.48037157182439566, 0.48858708015997804, 0.49628599918515365, 0.5035058605071209, 0.5102886438832567, 0.516679529034416, 0.5227256040349249, 0.5284745703471235, 0.5339734857934108, 0.5392675862152565, 0.5443992240368847, 0.5494069573273157, 0.5543248163225604 ], [ 0.3105520137263797, 0.293546764952045, 0.27688432611506236, 0.2607254470281595, 0.24526010133613343, 0.23071364186773827, 0.21735157555922943, 0.20548010051965632, 0.19543814444666568, 0.18757602054730277, 0.18221781800647938, 0.17961109070126316, 0.17987710515125485, 0.18298109431651347, 0.18873654098532439, 0.19684151144792103, 0.2069306897961233, 0.21862435967020297, 0.23156327221799763, 0.24542755880083195, 0.2599431644664413, 0.2748805306216035, 0.2900494184550533, 0.3052924431766218, 0.3204787851247846, 0.3354987960644018, 0.3502597611558526, 0.36468281389178747, 0.3787008610024612, 0.39225731112118134, 0.4053053861435131, 0.4178078086396832, 0.4297366890015155, 0.4410734727731095, 0.45180884552383715, 0.4619425259470551, 0.47148290587540476, 0.4804465182521996, 0.4888573312862387, 0.49674587993641184, 0.5041482554879965, 0.5111049811310261, 0.5176598067352843, 0.5238584597756509, 0.52974739169609, 0.5353725598342365, 0.5407782841940554, 0.5460062156876142, 0.5510944478974706, 0.5560767980288768 ], [ 0.3116112658659968, 0.29452722220617683, 0.27775627976898326, 0.2614503825365925, 0.2457891440510409, 0.23098696001308525, 0.21729970524738393, 0.2050283944295411, 0.19451543458980397, 0.18612766178384244, 0.1802211505921214, 0.17708849299334437, 0.1769002876384839, 0.1796627220083017, 0.18521135894576435, 0.19324436711129606, 0.2033790400201146, 0.21520888837581448, 0.228346049922021, 0.24244514638753986, 0.2572120094593637, 0.27240279396214667, 0.2878182042225464, 0.3032959999043414, 0.3187035995486575, 0.33393168037913856, 0.3488891106150481, 0.3634992285344224, 0.3776973112974501, 0.39142899906568, 0.40464942078769295, 0.41732278390033917, 0.42942222495250804, 0.4409297604947604, 0.45183622002166945, 0.46214108092864503, 0.4718521573380437, 0.48098511987627224, 0.4895628426331226, 0.4976145876495316, 0.5051750474915638, 0.5122832737710233, 0.5189815246107418, 0.5253140674880553, 0.5313259758309068, 0.5370619582032989, 0.5425652578093267, 0.5478766572608146, 0.5530336190551821, 0.5580695860944627 ], [ 0.3127129078573217, 0.29552164850200396, 0.27861343942610406, 0.2621331786059153, 0.24625237117856222, 0.23117715418094145, 0.2171567777778008, 0.2044901389766143, 0.19352589564590847, 0.18464948989264704, 0.17825002137413692, 0.17466480374325224, 0.1741117319954637, 0.17663384325106316, 0.18208271758716182, 0.19014957190786028, 0.20042776307745055, 0.2124792030250461, 0.22588473213449622, 0.24027265512118298, 0.255329190651724, 0.27079745542298633, 0.28647068148950816, 0.3021834427143998, 0.317803021464031, 0.3332219475312215, 0.34835208501138454, 0.3631202756021287, 0.3774653554501614, 0.39133627792184766, 0.40469105503082503, 0.4174962492917122, 0.4297267874372084, 0.44136591521259355, 0.45240516009308945, 0.4628442114352038, 0.47269066306809254, 0.48195959125021737, 0.4906729619294295, 0.49885887652238303, 0.50655067624623, 0.5137859325255619, 0.5206053560326784, 0.5270516600772799, 0.5331684156527342, 0.5389989355756881, 0.5445852238077525, 0.549967023172047, 0.5551809902697946, 0.5602600205673138 ], [ 0.31385076052986344, 0.2965213354139051, 0.2794448919675713, 0.26276159480025146, 0.24663781712275254, 0.23127501403858, 0.21691979162840197, 0.20387294231826994, 0.1924928557004472, 0.18318580821706784, 0.17637413837142568, 0.1724374497261735, 0.17163557237566496, 0.1740404687546471, 0.1795105368884496, 0.18772154042107347, 0.1982368449744049, 0.21058384209808623, 0.2243118646340958, 0.23902443506471205, 0.25439049366942346, 0.270142599392285, 0.28606879488666953, 0.3020024335956069, 0.317812314099059, 0.3333942142824577, 0.3486641977455597, 0.36355367505642333, 0.3780060049831283, 0.39197433608449717, 0.405420371853509, 0.41831376528755854, 0.43063189265597107, 0.4423598083720411, 0.4534902346321236, 0.46402348577646285, 0.4739672658063089, 0.48333630771309577, 0.4921518459387925, 0.5004409296394762, 0.5082355958390571, 0.5155719292757666, 0.5224890407370741, 0.529027998626941, 0.5352307498160774, 0.5411390656811498, 0.546793547698386, 0.5522327240258676, 0.5574922642167999, 0.562604333666045 ], [ 0.315069234519073, 0.297575165065399, 0.2803047671699774, 0.2633961904425445, 0.24701418151896556, 0.2313597260359278, 0.2166814512751624, 0.20328666327876974, 0.19154725288468827, 0.18189216220004037, 0.17477565665020872, 0.17061426910265726, 0.1697003809849664, 0.1721229715108633, 0.17773562813624422, 0.18619020173864967, 0.1970162482987841, 0.20970704537528234, 0.22378350192958565, 0.23882848788914118, 0.2544977103145834, 0.27051657763291553, 0.2866705728222417, 0.30279376347983156, 0.3187578692544394, 0.3344629609848598, 0.34983012519432616, 0.364796040821504, 0.37930922442532056, 0.39332762056769827, 0.4068172003076774, 0.4197512559535812, 0.4321101264528303, 0.4438811423380758, 0.45505863334804025, 0.4656438904793992, 0.4756450148053982, 0.4850766173660531, 0.4939593584451237, 0.502319331847159, 0.5101873117811796, 0.517597887943533, 0.5245885194201458, 0.5311985408548051, 0.5374681554391013, 0.5434374489378833, 0.549145457294942, 0.554629317425186, 0.5599235266547921, 0.5650593310418986 ], [ 0.31646432977959854, 0.2987914860077526, 0.2813151669186276, 0.26417446710786974, 0.24753629927103027, 0.23160569821960095, 0.2166382304084912, 0.20295238071306057, 0.19093688196859537, 0.18104387589376786, 0.17375568147044237, 0.16951652593062178, 0.168637540932144, 0.17120948616239814, 0.17706886693784749, 0.18583752787137373, 0.19701162193867747, 0.2100551681495092, 0.22446728809998515, 0.2398166297245188, 0.25575090242524257, 0.2719921658880095, 0.28832587298691154, 0.3045883702768574, 0.3206552123732917, 0.3364312861727095, 0.35184302337949563, 0.3668326169166539, 0.3813539811934233, 0.3953701236701946, 0.4088515835348537, 0.4217756185317191, 0.4341258667666732, 0.4458922647086688, 0.4570710571777915, 0.46766478454600485, 0.4776821739909163, 0.48713789469112945, 0.49605216183681916, 0.5044501924065895, 0.5123615282008035, 0.5198192499241636, 0.5268591112599844, 0.5335186246865181, 0.5398361318003269, 0.5458498904665607, 0.5515972093963023, 0.5571136578647129, 0.5624323743256746, 0.56758349278144 ], [ 0.31817863462029, 0.3003328338440584, 0.2826606351903939, 0.2653050978704575, 0.2484390925525617, 0.23227610803728843, 0.21708323773363053, 0.20319407826447344, 0.1910161211027436, 0.18102277866219776, 0.17371686397062294, 0.16955657315207198, 0.16885407734455626, 0.17168527304058234, 0.17785946808288558, 0.18696731010481588, 0.19847757528097312, 0.2118344914200182, 0.2265249726060873, 0.2421113143987904, 0.2582388660570056, 0.2746299434711169, 0.2910720079169348, 0.3074046452351263, 0.3235075381160502, 0.3392903237937388, 0.35468456661613235, 0.36963774683890716, 0.3841090085067491, 0.39806634226854776, 0.4114848666365156, 0.424345893199259, 0.4366365035102357, 0.44834941690419533, 0.4594829812379116, 0.4700411671357661, 0.4800334878175019, 0.48947479997102483, 0.4983849666649868, 0.5067883819483645, 0.5147133698138588, 0.522191478857401, 0.5292566993244996, 0.5359446321328184, 0.5422916404937064, 0.5483340143118365, 0.5541071758611361, 0.5596449524701264, 0.564978938226084, 0.5701379621683899 ], [ 0.32039023576903386, 0.30240325732917184, 0.28457371536605974, 0.26705149833560143, 0.2500188798760674, 0.23370157691027219, 0.2183817404043493, 0.20441031999027182, 0.19221290757177725, 0.1822786461906914, 0.17511890170507585, 0.1711880474843181, 0.17077968304504565, 0.17393998489869122, 0.1804461469545582, 0.18986293239165053, 0.20164328192004996, 0.2152245516132433, 0.23009256260883335, 0.24581139722881593, 0.2620293001251435, 0.27847181154999984, 0.2949297522459518, 0.31124625502533426, 0.32730483239532315, 0.3430192787026656, 0.3583256102948075, 0.37317595440139323, 0.387534153284226, 0.40137278536732784, 0.41467128874370657, 0.42741488812967915, 0.43959406212859004, 0.4512043338346532, 0.46224621666126625, 0.47272519340924574, 0.4826516468073799, 0.4920406926978319, 0.5009118926384095, 0.5092888416686228, 0.5171986404122213, 0.524671269706257, 0.531738891584415, 0.5384351035337315, 0.5447941741083306, 0.5508502876506054, 0.5566368243235879, 0.5621856990911707, 0.5675267798481746, 0.5726874007539213 ], [ 0.3232964315583259, 0.30522922271739417, 0.28731262760527837, 0.26970580491557383, 0.2526031145127694, 0.23624504383786188, 0.2209304630714717, 0.20702723406920343, 0.19497481457751495, 0.18526831958601728, 0.17841178626080068, 0.17483598206802828, 0.1747979325812196, 0.1783045784137982, 0.18510315031697866, 0.1947439210359254, 0.2066791456870459, 0.22035349873434246, 0.2352626500581994, 0.2509798279545354, 0.26716053937351164, 0.2835357302141162, 0.29990029444749006, 0.31610071156196873, 0.3320236098200726, 0.3475859914295751, 0.36272732626129595, 0.3774034570378231, 0.3915821240693769, 0.4052398514969034, 0.4183599141151357, 0.4309311109417282, 0.44294709895480416, 0.4544060792649204, 0.4653106712191298, 0.47566785217995544, 0.4854888785514784, 0.4947891353225644, 0.5035878865367914, 0.5119079180842963, 0.5197750778826725, 0.5272177278564099, 0.5342661280782007, 0.5409517767993135, 0.5473067314919656, 0.5533629359073691, 0.5591515768363858, 0.5647024919704584, 0.5700436471745557, 0.5752006977643455 ], [ 0.3270940565240663, 0.3090362490559464, 0.2911336147470776, 0.27355627007442324, 0.2565121186363731, 0.24025711511058068, 0.22510590830102573, 0.21143943637686935, 0.1997028536216673, 0.19038383066558853, 0.18396132220468447, 0.180824291988023, 0.18118068471148302, 0.1849962673452536, 0.19199701658825438, 0.2017336361661346, 0.21367344300231314, 0.22728155140838546, 0.2420728748838803, 0.25763576851809666, 0.2736363624100512, 0.28981253513043015, 0.30596357010596026, 0.32193885409412704, 0.33762725987642483, 0.35294792241983874, 0.3678426435666559, 0.3822699173334918, 0.3962004375524222, 0.40961387979262537, 0.4224967187197361, 0.43484083949427393, 0.4466427193863639, 0.45790298604804064, 0.4686261952254128, 0.47882070788058767, 0.4884985811409688, 0.4976754171691279, 0.5063701381609513, 0.5146046743025485, 0.5224035652177675, 0.5297934850085821, 0.5368027072486871, 0.5434605299709402, 0.5497966823919754, 0.5558407353012, 0.5616215360432297, 0.5671666870896135, 0.5725020845200917, 0.5776515294848835 ], [ 0.33195894306582147, 0.31402440667385556, 0.29626184106462994, 0.27885290062624074, 0.2620188355210635, 0.24602945520347985, 0.23121126858677035, 0.21795103479333267, 0.2066882602163255, 0.19788811230710582, 0.19198818224357023, 0.18932279170714517, 0.19004619741196593, 0.1940882785220428, 0.20116625688803866, 0.21084619547334385, 0.22262399477573389, 0.23599561224805454, 0.2505023696781767, 0.26575225016197984, 0.2814245414750666, 0.2972652129812895, 0.3130781619426438, 0.3287152936863563, 0.34406695757214284, 0.3590534474043707, 0.37361784558693134, 0.38772026121239833, 0.40133338321670486, 0.4144391953106541, 0.42702666071911916, 0.43909017265196454, 0.4506285741562177, 0.46164457218266947, 0.4721443994106999, 0.48213760866325356, 0.4916369149870809, 0.500658027405496, 0.5092194348626199, 0.5173421287135144, 0.5250492575630747, 0.5323657198923509, 0.5393177064040944, 0.5459322080141555, 0.5522365074672289, 0.5582576731090123, 0.5640220727423039, 0.5695549239890152, 0.574879895374597, 0.5800187696167812 ], [ 0.3380273897305379, 0.32034632983753963, 0.302865494347452, 0.2857772675208493, 0.2693141537758174, 0.253755807950597, 0.23943397351394372, 0.22673149328268175, 0.21606962730326548, 0.20787727594727615, 0.20253913451314942, 0.2003295668544039, 0.20135215247713786, 0.20551073473427145, 0.21252653157643756, 0.22199301877834804, 0.2334443256446543, 0.24641430203657, 0.26047556136403177, 0.2752589405664705, 0.29045887292916217, 0.30583048556927417, 0.32118267360310143, 0.3363697454308142, 0.3512830592082133, 0.3658433694019646, 0.3799942118199811, 0.3936964367443172, 0.4069238708159533, 0.4196600096132164, 0.4318955972869264, 0.44362692896000355, 0.45485471012111645, 0.46558331953570264, 0.4758203430719449, 0.4855762707561713, 0.4948642748117602, 0.5037000100110278, 0.5121013980268306, 0.5200883740696313, 0.5276825869581231, 0.5349070532505484, 0.5417857726654751, 0.5483433162791651, 0.5546044013912241, 0.5605934679118338, 0.5663342709691882, 0.5718495034181724, 0.5771604602503627, 0.5822867547268964 ], [ 0.34538230065106335, 0.3280911621288878, 0.3110374673850586, 0.29442205568364205, 0.27848480417036237, 0.2635092547599855, 0.24982405209500722, 0.2377976416333564, 0.22782163329500935, 0.22027882258434794, 0.21549592706714535, 0.21368920331818067, 0.21491968179214319, 0.21907622626975026, 0.22589438837849848, 0.2350028972223008, 0.24597956813437988, 0.25840001156829, 0.271871031559629, 0.286048542231731, 0.30064377841906054, 0.31542216522105204, 0.33019826981508876, 0.3448290727304555, 0.3592068753161391, 0.3732525680017196, 0.3869096318326737, 0.4001390374633795, 0.4129150775850041, 0.425222087053799, 0.43705195411886383, 0.4484022985058101, 0.45927518265052003, 0.4696762265246885, 0.479614009808466, 0.48909966361482965, 0.49814657426719733, 0.5067701413918358, 0.5149875503089609, 0.5228175336320963, 0.5302801089041627, 0.5373962881565335, 0.5441877618130575, 0.550676563786673, 0.5568847273385208, 0.5628339426474286, 0.5685452273672248, 0.5740386209655968, 0.5793329125273939, 0.584445410120433 ], [ 0.35404584547003765, 0.3372767491566332, 0.32078747093876675, 0.30478377324424916, 0.2895077386435316, 0.2752398195285483, 0.2622969767556624, 0.2510239530654582, 0.2417744817684757, 0.23488057995032963, 0.23061196068164208, 0.22913354912968512, 0.23047393642304517, 0.23451673058416403, 0.2410186333935217, 0.2496473437338317, 0.26002622524688696, 0.27177391864827877, 0.28453272116749617, 0.2979850495369298, 0.3118603516737185, 0.32593559153192325, 0.3400319768355487, 0.35400981523239955, 0.36776269694900743, 0.3812117181140244, 0.3943001487413612, 0.40698875461187645, 0.41925185710703533, 0.43107413228176317, 0.44244809622416253, 0.4533721909380906, 0.46384936907881275, 0.4738860729946557, 0.48349150994047785, 0.49267713755561543, 0.50145628878252, 0.5098438810752598, 0.5178561694656112, 0.5255105159212562, 0.5328251580575536, 0.5398189686188241, 0.5465112034098426, 0.5529212398201377, 0.5590683110558513, 0.5649712429685201, 0.5706482011964393, 0.5761164564140612, 0.5813921749789562, 0.5864902413053816 ], [ 0.36397922417070216, 0.3478506554021681, 0.3320450287828502, 0.31676871631406706, 0.30226033368574995, 0.2887903772012978, 0.276656692303471, 0.26617358419954057, 0.2576526969307646, 0.25137539996972474, 0.24755961276949934, 0.24632791611683186, 0.24768613440160683, 0.2515198435288997, 0.2576103454569333, 0.2656647777821464, 0.2753512677315478, 0.2863308334229924, 0.2982813241574436, 0.31091240223433875, 0.3239728781440875, 0.33725252140045603, 0.35058035470294907, 0.3638209738999144, 0.37686995351803, 0.3896490195325336, 0.4021014075722926, 0.41418764823344584, 0.42588190231514134, 0.4371688873782504, 0.44804138146174544, 0.4584982536865909, 0.4685429507852573, 0.47818236001894043, 0.48742596937930466, 0.4962852524953072, 0.5047732157119093, 0.5129040563175338, 0.5206928923809351, 0.5281555351647393, 0.5353082841103289, 0.5421677317678316, 0.5487505718242334, 0.5550734077302829, 0.5611525625579993, 0.5670038928496975, 0.5726426105353257, 0.5780831176520836, 0.5833388587218966, 0.5884221953281067 ], [ 0.3750887741719627, 0.35969877562620634, 0.34467140480143615, 0.3302091555677296, 0.31654181877911103, 0.3039241434180967, 0.29262949590047044, 0.28293809173963597, 0.27511897727856455, 0.269406450946618, 0.26597395391158485, 0.2649108067183142, 0.2662080481324542, 0.2697578611417305, 0.2753670030175101, 0.2827803381139764, 0.2917082551787486, 0.3018521831747806, 0.3129246309149008, 0.3246626313998313, 0.33683518002592344, 0.3492460226090908, 0.36173324280404495, 0.37416686767619056, 0.3864453975629699, 0.39849188727141555, 0.4102499920869499, 0.42168023847996217, 0.4327566705444125, 0.4434639457823896, 0.4537948990344566, 0.46374855578485186, 0.4733285522322463, 0.482541906631603, 0.4913980819340586, 0.49990828128125836, 0.508084923295575, 0.5159412515601037, 0.5234910408460586, 0.5307483705948033, 0.537727443348216, 0.5444424319877093, 0.5509073447337257, 0.5571359009378964, 0.5631414138884647, 0.5689366792765894, 0.5745338697543034, 0.5799444372493379, 0.5851790254616643, 0.5902473953107475 ], [ 0.38723663957272114, 0.372659043929635, 0.35847699438910574, 0.34488501221766166, 0.33209965074456826, 0.32035575883388745, 0.3098992048858851, 0.3009752757929509, 0.29381263718930334, 0.28860397019247935, 0.28548597298941353, 0.2845227031464298, 0.2856963866612249, 0.28890833441866304, 0.2939898982976617, 0.300720701579821, 0.30884992410701045, 0.3181166167597175, 0.3282663486360677, 0.33906308752884, 0.35029644762198453, 0.36178510525210844, 0.37337738275734783, 0.38494992761199215, 0.39640523368949326, 0.40766855955783654, 0.41868463500951913, 0.42941441969891353, 0.43983208222005377, 0.4499222970905661, 0.4596779050504126, 0.4690979447639351, 0.4781860385712859, 0.48694909909560785, 0.49539631522662336, 0.5035383733502893, 0.511386870934607, 0.5189538832306766, 0.526251648742039, 0.5332923444216987, 0.5400879267416162, 0.5466500195502121, 0.5529898338656135, 0.5591181084259437, 0.5650450629635857, 0.5707803588330128, 0.5763330638403631, 0.5817116199233238, 0.5869238137269311, 0.5919767511252237 ], [ 0.40025378757546487, 0.38653733714856264, 0.37324044794284095, 0.36054636538395846, 0.34865526684301507, 0.33777971262266615, 0.3281371654213222, 0.3199392585569284, 0.31337810196492194, 0.30861082249423394, 0.30574452227921345, 0.30482448243949967, 0.3058282820983843, 0.30866736988892374, 0.3131958511316226, 0.31922456280038036, 0.3265375768156544, 0.3349083292124355, 0.3441133549426717, 0.3539426322599188, 0.3642064114415302, 0.37473894799492596, 0.38539979497782645, 0.39607333208335554, 0.4066671243255199, 0.41710958286994493, 0.42734728309183156, 0.43734219501884625, 0.44706900137154204, 0.4565126162304612, 0.4656659698409165, 0.4745280895396009, 0.483102481136154, 0.4913957975441997, 0.49941677043718186, 0.5071753747185807, 0.5146821932896696, 0.5219479498051671, 0.5289831788950173, 0.5357980060112559, 0.5424020121688334, 0.5488041621050804, 0.5550127776276347, 0.5610355410740732, 0.5668795168217569, 0.5725511816249205, 0.5780564571741268, 0.5834007406202707, 0.5885889308293903, 0.5936254497908529 ], [ 0.4139533024895513, 0.4011230427300251, 0.3887265366939039, 0.37693342595905865, 0.3659256884422956, 0.355892775926926, 0.34702444968726964, 0.33950129228309095, 0.3334833641733516, 0.32909809952508445, 0.3264291208011969, 0.32550793452921845, 0.3263102204504913, 0.32875760448204366, 0.33272464981069605, 0.3380497303736641, 0.3445478423571748, 0.3520233967977108, 0.36028148848940816, 0.36913678569363206, 0.3784197884598627, 0.38798062929093896, 0.39769081768845166, 0.4074434031528676, 0.417152009888997, 0.42674913100035144, 0.43618399228640675, 0.4454202220985638, 0.4544335002652388, 0.4632093070041323, 0.4717408511521055, 0.4800272245989659, 0.48807180515467885, 0.49588091195525186, 0.5034627047488561, 0.5108263099052295, 0.5179811507646039, 0.5249364571353271, 0.5317009276799896, 0.5382825190913865, 0.5446883370008805, 0.5509246052506656, 0.5569966923423196, 0.5629091764282662, 0.568665933030182, 0.5742702326317846, 0.579724838275472, 0.5850320961616498, 0.5901940148820496, 0.5952123312089386 ], [ 0.4281424136866786, 0.4162025703749738, 0.40470095644646836, 0.39379225500965753, 0.38363957765238665, 0.3744096599108951, 0.3662663274051644, 0.3593623758197236, 0.35383037418569857, 0.3497733107891451, 0.3472563301076841, 0.34630090456822926, 0.3468825367321195, 0.34893250671595205, 0.35234342427156, 0.35697765910252904, 0.3626773182523866, 0.3692743972552132, 0.3765999883980199, 0.38449183747392984, 0.39279995212636726, 0.401390286223229, 0.41014672486395143, 0.41897168704545357, 0.42778567979932886, 0.43652611106158173, 0.44514562273385067, 0.4536101550441556, 0.4618969058961162, 0.46999230743424175, 0.47789010726794084, 0.4855896133919713, 0.49309413914332706, 0.5004096667611159, 0.5075437344760543, 0.5145045418023209, 0.5213002601712985, 0.5279385306818837, 0.534426127120607, 0.5407687602230222, 0.5469709981978539, 0.5530362786689533, 0.5589669882808885, 0.5647645881274913, 0.5704297657387576, 0.5759625974110972, 0.5813627079795983, 0.5866294184950048, 0.5917618754832581, 0.5967591583638329 ], [ 0.4426323635703067, 0.43156995988818364, 0.4209413853442942, 0.41088585941598094, 0.4015478633457861, 0.39307263622697486, 0.38560042049122434, 0.37925967390000753, 0.37415972439913836, 0.3703836020115378, 0.3679819565595155, 0.3669689757949878, 0.367321006563024, 0.3689781759403293, 0.3718488119966033, 0.37581601774203127, 0.38074547837961126, 0.38649353161837924, 0.3929146735675513, 0.39986792749315664, 0.4072217805387596, 0.41485762982748725, 0.42267184464129104, 0.430576644801285, 0.438500031908866, 0.44638500899485006, 0.4541883021125251, 0.4618787663424273, 0.4694356257148889, 0.47684666543552895, 0.4841064671235365, 0.4912147539798867, 0.4981748927548559, 0.5049925826950337, 0.51167474785608, 0.5182286378230124, 0.5246611326112335, 0.530978240054595, 0.5371847681490207, 0.5432841505205315, 0.5492784003797697, 0.5551681669700469, 0.5609528685380579, 0.5666308771237233, 0.5721997327809363, 0.5776563679511434, 0.5829973263286277, 0.5882189643849415, 0.593317627485556, 0.5982897960032898 ], [ 0.45724579773475127, 0.44703443381531505, 0.43724490408572303, 0.4280011280434665, 0.4194298264735448, 0.41165645322186567, 0.40480025379519663, 0.39896868602416147, 0.39425161448384205, 0.3907158469435312, 0.388400666605564, 0.3873149818918398, 0.3874365464964559, 0.3887134198687168, 0.39106750738910073, 0.3943997248137019, 0.39859614416198463, 0.40353442987831023, 0.4090899514229867, 0.41514111677798043, 0.42157365737136737, 0.42828376554244824, 0.43518011662002615, 0.4421848925468019, 0.44923396812312255, 0.45627643486345243, 0.46327363199081767, 0.47019783797795395, 0.4770307553016428, 0.48376189935417024, 0.49038698168041095, 0.49690635871688665, 0.5033236002153014, 0.5096442164449552, 0.5158745698821591, 0.5220209852145186, 0.5280890609916286, 0.5340831771179967, 0.5400061846751698, 0.5458592583992176, 0.5516418876530571, 0.5573519790006444, 0.5629860425048642, 0.5685394345177694, 0.5740066317879424, 0.5793815148657822, 0.5846576426822642, 0.5898285044366391, 0.5948877392059723, 0.5998293176915989 ], [ 0.47182176750084737, 0.46242518116908743, 0.45343231446946614, 0.44495243084317204, 0.4370957569424942, 0.4299699058931694, 0.4236757123357976, 0.418302702374338, 0.41392453806137053, 0.4105948678704734, 0.4083440507136916, 0.4071771770660299, 0.4070736805356442, 0.4079886358720473, 0.40985561643115337, 0.4125907863334617, 0.41609777239627266, 0.4202728186973697, 0.42500976686473685, 0.43020450324876935, 0.43575863810573284, 0.4415823035605138, 0.4475960579993578, 0.4537319569669642, 0.45993389510373495, 0.4661573452216692, 0.47236862579115363, 0.4785438228893244, 0.48466748165839574, 0.4907311686518098, 0.49673199196326184, 0.5026711516943643, 0.5085525795109714, 0.5143817128553076, 0.5201644368014319, 0.5259062145631739, 0.5316114163726816, 0.5372828460396504, 0.5429214552609027, 0.5485262280008221, 0.5540942113022796, 0.5596206649220183, 0.5650993002837928, 0.5705225793185223, 0.5758820455745285, 0.5811686631754163, 0.5863731433503182, 0.5914862429148836, 0.596499023824978, 0.6014030674080268 ], [ 0.48621866605560976, 0.4775938649975911, 0.4693500393729404, 0.4615827528055654, 0.4543872133730929, 0.44785519153018916, 0.44207155789228386, 0.4371106380882161, 0.43303265685513936, 0.4298805951916603, 0.42767779434698616, 0.4264265963163979, 0.4261082119219906, 0.42668386883545373, 0.428097139583543, 0.43027721471402813, 0.433142794738347, 0.43660623935916326, 0.44057763202246086, 0.4449684783861693, 0.4496948397453056, 0.4546797884916382, 0.45985514896081847, 0.46516254645094124, 0.4705538281346662, 0.47599094395445346, 0.481445386973911, 0.486897294889697, 0.4923343107582651, 0.4977502938658826, 0.50314396262498, 0.5085175412929042, 0.5138754715994002, 0.5192232392057385, 0.5245663533923225, 0.5299095066187163, 0.5352559288700739, 0.5406069403761455, 0.5459616958406015, 0.5513171042583705, 0.556667901186293, 0.562006845299572, 0.5673250083628398, 0.572612127314951, 0.5778569887638892, 0.5830478194156821, 0.5881726603324032, 0.5932197079175872, 0.5981776096837856, 0.6030357077636602 ], [ 0.5003155107200993, 0.49241539239357746, 0.48487026596098076, 0.47776312840973645, 0.4711757183532396, 0.46518590036156915, 0.45986481701922666, 0.4552739757861838, 0.4514624848083827, 0.44846467916740435, 0.44629837602293315, 0.4449639576885586, 0.44444440759558645, 0.44470632573149255, 0.4457018446000918, 0.44737127333868276, 0.44964623239972173, 0.4524530127918875, 0.4557159020662, 0.4593602564883761, 0.4633151536661643, 0.4675155205110026, 0.47190368840603464, 0.47643037501311086, 0.481055127942127, 0.4857462897804874, 0.4904805584756927, 0.49524222404427376, 0.5000221641918654, 0.5048166793705197, 0.5096262432310459, 0.5144542380348683, 0.5193057367175906, 0.5241863841131653, 0.529101419491716, 0.534054871257996, 0.5390489427712795, 0.5440835963074666, 0.5491563308299043, 0.5542621391384853, 0.5593936217328667, 0.5645412288038013, 0.5696935983838202, 0.5748379578258083, 0.5799605571866732, 0.5850471063455991, 0.5900831922466545, 0.5950546579558806, 0.5999479307305529, 0.6047502915646057 ], [ 0.5140119847500955, 0.5067874411443167, 0.4998898943981753, 0.4933909836663707, 0.48736050935097175, 0.4818642393248256, 0.4769615854578202, 0.4727032882393677, 0.46912927605449445, 0.46626687867826283, 0.4641295657319617, 0.4627163475196114, 0.46201192007303327, 0.4619875657677295, 0.4626027466805489, 0.4638072621530297, 0.4655437949684757, 0.46775064788577164, 0.47036447442155077, 0.4733228305668884, 0.4765664106358139, 0.48004087310305266, 0.48369820460261587, 0.4874976077386514, 0.49140592868379984, 0.49539766317543504, 0.49945459510627366, 0.5035651316410917, 0.5077234039595949, 0.5119282044077617, 0.51618182979501, 0.5204888972457138, 0.5248551936164559, 0.5292866121376166, 0.5337882207673278, 0.5383634960234592, 0.5430137442361921, 0.5477377198769828, 0.5525314386386516, 0.5573881720727645, 0.5622986015659598, 0.5672511028081318, 0.5722321279710954, 0.5772266515939318, 0.5822186474158222, 0.5871915666591937, 0.5921287929713934, 0.597014054768606, 0.6018317815142186, 0.6065673960193201 ], [ 0.5272276050301478, 0.5206291543287941, 0.5143287334968042, 0.5083878370820648, 0.502865783624251, 0.4978178929752479, 0.4932936034115399, 0.48933464020480655, 0.4859733642883269, 0.4832314344431257, 0.4811189056374896, 0.4796338587872214, 0.4787626153927593, 0.47848053947030006, 0.4787533762818795, 0.4795390304440497, 0.4807896516161647, 0.4824538780066882, 0.48447908700703246, 0.4868135160790481, 0.48940814139485195, 0.49221823180645763, 0.4952045270769929, 0.4983340185997153, 0.5015803360504287, 0.5049237637378614, 0.5083509258691411, 0.5118541910466547, 0.515430853721331, 0.519082154633385, 0.5228122038757224, 0.5266268693192827, 0.5305326898075015, 0.5345358667872323, 0.5386413800020867, 0.5428522628081943, 0.5471690610803132, 0.5515894872714883, 0.5561082688378137, 0.560717178852903, 0.5654052270467947, 0.5701589823484471, 0.5749629936503612, 0.5798002740006347, 0.5846528145258267, 0.5895020976355713, 0.594329583856329, 0.5991171523407065, 0.6038474810899855, 0.6085043586961187 ], [ 0.539900316513553, 0.5338793240201434, 0.5281272717223353, 0.5226966802147908, 0.5176377354485238, 0.5129967861452334, 0.5088148268469492, 0.5051260560549237, 0.5019566084108528, 0.49932356012463536, 0.49723429601111296, 0.49568630437246985, 0.49466743436195176, 0.494156613067887, 0.49412498127772414, 0.494537372867814, 0.49535403732642014, 0.49653249070107536, 0.49802937789178214, 0.49980223745425345, 0.5018110763978036, 0.504019683757142, 0.5063966349915535, 0.5089159621025107, 0.5115574851319561, 0.514306818544535, 0.5171550806396206, 0.5200983456788973, 0.5231368870918666, 0.5262742661534338, 0.5295163240239988, 0.5328701359912043, 0.5363429850706906, 0.5399414077473165, 0.5436703576266274, 0.5475325233850482, 0.5515278261747832, 0.5556531093145791, 0.5599020206094284, 0.5642650759757991, 0.5687298831099005, 0.5732814964274164, 0.5779028698351718, 0.5825753721527529, 0.5872793309627655, 0.5919945738679102, 0.5967009409572328, 0.6013787480665265, 0.6060091865271017, 0.6105746509986274 ], [ 0.5519847475748524, 0.5464943034319639, 0.541244258114572, 0.5362792575875848, 0.5316415822863815, 0.5273699167831588, 0.5234981343279846, 0.5200541673835464, 0.5170590401170172, 0.5145261367109003, 0.5124607693431777, 0.51086009193449, 0.5097133817201036, 0.509002682979366, 0.5087037791704765, 0.508787434702526, 0.5092208285133041, 0.5099690903475694, 0.5109968477075715, 0.5122696962349046, 0.5137555172522315, 0.5154255813644646, 0.5172553943833771, 0.5192252596787599, 0.5213205481104854, 0.52353168217324, 0.525853854494592, 0.5282865122248508, 0.5308326481080622, 0.5334979460848528, 0.5362898340377592, 0.5392164985635222, 0.5422859162357553, 0.5455049525565285, 0.5488785736934692, 0.5524092074023859, 0.5560962787619393, 0.5599359342733751, 0.563920955466329, 0.5680408514276016, 0.5722821095848848, 0.5766285763780673, 0.5810619345856655, 0.5855622421559201, 0.5901084982165158, 0.5946792050472827, 0.5992528995819232, 0.603808633785461, 0.6083263893925609, 0.6127874184436557 ], [ 0.563450301034576, 0.55844581915325, 0.5536542547505554, 0.5491133914769105, 0.5448587051131423, 0.540922362422424, 0.5373322526339105, 0.534111107822211, 0.5312757704498405, 0.528836663152031, 0.5267975069950203, 0.5251553202336271, 0.5239007111669568, 0.5230184578922632, 0.5224883468669852, 0.5222862235293083, 0.5223851937616022, 0.5227569060045124, 0.5233728408217575, 0.5242055373711848, 0.5252296936449456, 0.5264230882440197, 0.5277672845135952, 0.5292480918811128, 0.5308557732568792, 0.5325850007109699, 0.5344345739045416, 0.5364069266607912, 0.5385074564060928, 0.5407437187780763, 0.5431245352161049, 0.5456590645083437, 0.5483558897623236, 0.5512221698742582, 0.5542628992561891, 0.5574803115524039, 0.5608734528395452, 0.5644379381304625, 0.5681658928558259, 0.5720460694180218, 0.5760641188681909, 0.5802029900180071, 0.5844434233360725, 0.5887645049313791, 0.5931442466101539, 0.5975601609685013, 0.6019898051494478, 0.6064112725842575, 0.6108036181159128, 0.615147207822208 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
hartmann6: -0.621769 (SEM: 0)
x1: 0.402881
x2: 0.519896
x3: 0.808794
x4: 0.263642
x5: 0.483005
x6: 0.479485", "Arm 10_0
hartmann6: -0.00556795 (SEM: 0)
x1: 0.710347
x2: 0.827351
x3: 0.717838
x4: 0.86011
x5: 0.805492
x6: 0.5756", "Arm 11_0
hartmann6: -0.145675 (SEM: 0)
x1: 0.17197
x2: 0.753671
x3: 0.547094
x4: 0.882289
x5: 0.0988043
x6: 0.325281", "Arm 12_0
hartmann6: -0.870246 (SEM: 0)
x1: 0.310816
x2: 0.5599
x3: 0.66414
x4: 0.262765
x5: 0.450429
x6: 0.435467", "Arm 13_0
hartmann6: -0.754096 (SEM: 0)
x1: 0.288017
x2: 0.598047
x3: 0.549521
x4: 0.22857
x5: 0.468538
x6: 0.393348", "Arm 14_0
hartmann6: -1.18978 (SEM: 0)
x1: 0.259128
x2: 0.511634
x3: 0.677838
x4: 0.237766
x5: 0.385871
x6: 0.444856", "Arm 15_0
hartmann6: -1.31751 (SEM: 0)
x1: 0.21997
x2: 0.471755
x3: 0.687636
x4: 0.211149
x5: 0.348144
x6: 0.440441", "Arm 16_0
hartmann6: -1.54781 (SEM: 0)
x1: 0.180569
x2: 0.457815
x3: 0.697414
x4: 0.169267
x5: 0.324673
x6: 0.507178", "Arm 17_0
hartmann6: -1.62434 (SEM: 0)
x1: 0.150211
x2: 0.461165
x3: 0.690977
x4: 0.135457
x5: 0.313988
x6: 0.563768", "Arm 18_0
hartmann6: -2.15402 (SEM: 0)
x1: 0.17356
x2: 0.392335
x3: 0.670103
x4: 0.162717
x5: 0.316122
x6: 0.615742", "Arm 19_0
hartmann6: -2.56685 (SEM: 0)
x1: 0.191686
x2: 0.34264
x3: 0.636114
x4: 0.187703
x5: 0.319315
x6: 0.671735", "Arm 1_0
hartmann6: -0.467627 (SEM: 0)
x1: 0.217183
x2: 0.639794
x3: 0.754175
x4: 0.55655
x5: 0.38913
x6: 0.517743", "Arm 20_0
hartmann6: -2.82445 (SEM: 0)
x1: 0.212492
x2: 0.277217
x3: 0.588966
x4: 0.217566
x5: 0.32787
x6: 0.738716", "Arm 21_0
hartmann6: -2.52891 (SEM: 0)
x1: 0.21652
x2: 0.226635
x3: 0.640087
x4: 0.20377
x5: 0.259812
x6: 0.78795", "Arm 22_0
hartmann6: -2.6932 (SEM: 0)
x1: 0.187797
x2: 0.263158
x3: 0.532839
x4: 0.229975
x5: 0.393136
x6: 0.739475", "Arm 23_0
hartmann6: -2.74372 (SEM: 0)
x1: 0.264919
x2: 0.295277
x3: 0.528557
x4: 0.213041
x5: 0.327328
x6: 0.749514", "Arm 24_0
hartmann6: -2.87355 (SEM: 0)
x1: 0.206811
x2: 0.285102
x3: 0.572345
x4: 0.28981
x5: 0.326301
x6: 0.747905", "Arm 25_0
hartmann6: -2.59102 (SEM: 0)
x1: 0.234144
x2: 0.291138
x3: 0.618627
x4: 0.293995
x5: 0.353906
x6: 0.779104", "Arm 26_0
hartmann6: -3.10765 (SEM: 0)
x1: 0.184217
x2: 0.26031
x3: 0.525743
x4: 0.279585
x5: 0.299749
x6: 0.706335", "Arm 27_0
hartmann6: -3.22343 (SEM: 0)
x1: 0.171758
x2: 0.221396
x3: 0.486728
x4: 0.293947
x5: 0.29196
x6: 0.664825", "Arm 28_0
hartmann6: -3.14229 (SEM: 0)
x1: 0.120226
x2: 0.191247
x3: 0.420524
x4: 0.302147
x5: 0.290187
x6: 0.674094", "Arm 2_0
hartmann6: -0.0771752 (SEM: 0)
x1: 0.996231
x2: 0.646439
x3: 0.849897
x4: 0.995196
x5: 0.13908
x6: 0.609664", "Arm 3_0
hartmann6: -0.514438 (SEM: 0)
x1: 0.178761
x2: 0.685732
x3: 0.242967
x4: 0.375803
x5: 0.617229
x6: 0.183017", "Arm 4_0
hartmann6: -0.588432 (SEM: 0)
x1: 0.500038
x2: 0.89515
x3: 0.509177
x4: 0.945664
x5: 0.473796
x6: 0.138033", "Arm 5_0
hartmann6: -0.0279137 (SEM: 0)
x1: 0.396702
x2: 0.278378
x3: 0.848153
x4: 0.090392
x5: 0.825946
x6: 0.0588912", "Arm 6_0
hartmann6: -0.350053 (SEM: 0)
x1: 0.167041
x2: 0.67031
x3: 0.203851
x4: 0.285772
x5: 0.0959202
x6: 0.374928", "Arm 7_0
hartmann6: -0.061582 (SEM: 0)
x1: 0.966608
x2: 0.0530629
x3: 0.397511
x4: 0.105723
x5: 0.0545739
x6: 0.338692", "Arm 8_0
hartmann6: -0.175442 (SEM: 0)
x1: 0.959177
x2: 0.30908
x3: 0.926258
x4: 0.657565
x5: 0.500267
x6: 0.794314", "Arm 9_0
hartmann6: -0.0145184 (SEM: 0)
x1: 0.699031
x2: 0.946268
x3: 0.655471
x4: 0.624671
x5: 0.592031
x6: 0.775368" ], "type": "scatter", "x": [ 0.4028814136981964, 0.7103469995781779, 0.17196986265480518, 0.31081594275321706, 0.2880174433319766, 0.25912830594012753, 0.21996989583144566, 0.18056858335304043, 0.1502106931535988, 0.17356030059917155, 0.19168646137496248, 0.2171827182173729, 0.21249192338150685, 0.21651961499690775, 0.18779735542569903, 0.2649191242857035, 0.20681076889446282, 0.2341444678511272, 0.18421697687132885, 0.17175792086072647, 0.1202259250188612, 0.9962308257818222, 0.17876088339835405, 0.5000381646677852, 0.39670159202069044, 0.16704079788178205, 0.9666077196598053, 0.9591769743710756, 0.6990306936204433 ], "xaxis": "x", "y": [ 0.5198963284492493, 0.8273508353158832, 0.7536710789427161, 0.5598996695791404, 0.5980472172088396, 0.5116341307688471, 0.471754799267041, 0.4578145898717286, 0.4611653165202281, 0.39233537103354466, 0.34263973501808237, 0.6397942434996367, 0.2772171768112323, 0.22663465985530845, 0.26315849501645494, 0.295276850392257, 0.2851018693466092, 0.29113817867428476, 0.2603103544421217, 0.22139587926586693, 0.19124677264883938, 0.6464394517242908, 0.6857324400916696, 0.8951499769464135, 0.2783780237659812, 0.6703095184639096, 0.053062873892486095, 0.3090796750038862, 0.9462682828307152 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "Arm 0_0
hartmann6: -0.621769 (SEM: 0)
x1: 0.402881
x2: 0.519896
x3: 0.808794
x4: 0.263642
x5: 0.483005
x6: 0.479485", "Arm 10_0
hartmann6: -0.00556795 (SEM: 0)
x1: 0.710347
x2: 0.827351
x3: 0.717838
x4: 0.86011
x5: 0.805492
x6: 0.5756", "Arm 11_0
hartmann6: -0.145675 (SEM: 0)
x1: 0.17197
x2: 0.753671
x3: 0.547094
x4: 0.882289
x5: 0.0988043
x6: 0.325281", "Arm 12_0
hartmann6: -0.870246 (SEM: 0)
x1: 0.310816
x2: 0.5599
x3: 0.66414
x4: 0.262765
x5: 0.450429
x6: 0.435467", "Arm 13_0
hartmann6: -0.754096 (SEM: 0)
x1: 0.288017
x2: 0.598047
x3: 0.549521
x4: 0.22857
x5: 0.468538
x6: 0.393348", "Arm 14_0
hartmann6: -1.18978 (SEM: 0)
x1: 0.259128
x2: 0.511634
x3: 0.677838
x4: 0.237766
x5: 0.385871
x6: 0.444856", "Arm 15_0
hartmann6: -1.31751 (SEM: 0)
x1: 0.21997
x2: 0.471755
x3: 0.687636
x4: 0.211149
x5: 0.348144
x6: 0.440441", "Arm 16_0
hartmann6: -1.54781 (SEM: 0)
x1: 0.180569
x2: 0.457815
x3: 0.697414
x4: 0.169267
x5: 0.324673
x6: 0.507178", "Arm 17_0
hartmann6: -1.62434 (SEM: 0)
x1: 0.150211
x2: 0.461165
x3: 0.690977
x4: 0.135457
x5: 0.313988
x6: 0.563768", "Arm 18_0
hartmann6: -2.15402 (SEM: 0)
x1: 0.17356
x2: 0.392335
x3: 0.670103
x4: 0.162717
x5: 0.316122
x6: 0.615742", "Arm 19_0
hartmann6: -2.56685 (SEM: 0)
x1: 0.191686
x2: 0.34264
x3: 0.636114
x4: 0.187703
x5: 0.319315
x6: 0.671735", "Arm 1_0
hartmann6: -0.467627 (SEM: 0)
x1: 0.217183
x2: 0.639794
x3: 0.754175
x4: 0.55655
x5: 0.38913
x6: 0.517743", "Arm 20_0
hartmann6: -2.82445 (SEM: 0)
x1: 0.212492
x2: 0.277217
x3: 0.588966
x4: 0.217566
x5: 0.32787
x6: 0.738716", "Arm 21_0
hartmann6: -2.52891 (SEM: 0)
x1: 0.21652
x2: 0.226635
x3: 0.640087
x4: 0.20377
x5: 0.259812
x6: 0.78795", "Arm 22_0
hartmann6: -2.6932 (SEM: 0)
x1: 0.187797
x2: 0.263158
x3: 0.532839
x4: 0.229975
x5: 0.393136
x6: 0.739475", "Arm 23_0
hartmann6: -2.74372 (SEM: 0)
x1: 0.264919
x2: 0.295277
x3: 0.528557
x4: 0.213041
x5: 0.327328
x6: 0.749514", "Arm 24_0
hartmann6: -2.87355 (SEM: 0)
x1: 0.206811
x2: 0.285102
x3: 0.572345
x4: 0.28981
x5: 0.326301
x6: 0.747905", "Arm 25_0
hartmann6: -2.59102 (SEM: 0)
x1: 0.234144
x2: 0.291138
x3: 0.618627
x4: 0.293995
x5: 0.353906
x6: 0.779104", "Arm 26_0
hartmann6: -3.10765 (SEM: 0)
x1: 0.184217
x2: 0.26031
x3: 0.525743
x4: 0.279585
x5: 0.299749
x6: 0.706335", "Arm 27_0
hartmann6: -3.22343 (SEM: 0)
x1: 0.171758
x2: 0.221396
x3: 0.486728
x4: 0.293947
x5: 0.29196
x6: 0.664825", "Arm 28_0
hartmann6: -3.14229 (SEM: 0)
x1: 0.120226
x2: 0.191247
x3: 0.420524
x4: 0.302147
x5: 0.290187
x6: 0.674094", "Arm 2_0
hartmann6: -0.0771752 (SEM: 0)
x1: 0.996231
x2: 0.646439
x3: 0.849897
x4: 0.995196
x5: 0.13908
x6: 0.609664", "Arm 3_0
hartmann6: -0.514438 (SEM: 0)
x1: 0.178761
x2: 0.685732
x3: 0.242967
x4: 0.375803
x5: 0.617229
x6: 0.183017", "Arm 4_0
hartmann6: -0.588432 (SEM: 0)
x1: 0.500038
x2: 0.89515
x3: 0.509177
x4: 0.945664
x5: 0.473796
x6: 0.138033", "Arm 5_0
hartmann6: -0.0279137 (SEM: 0)
x1: 0.396702
x2: 0.278378
x3: 0.848153
x4: 0.090392
x5: 0.825946
x6: 0.0588912", "Arm 6_0
hartmann6: -0.350053 (SEM: 0)
x1: 0.167041
x2: 0.67031
x3: 0.203851
x4: 0.285772
x5: 0.0959202
x6: 0.374928", "Arm 7_0
hartmann6: -0.061582 (SEM: 0)
x1: 0.966608
x2: 0.0530629
x3: 0.397511
x4: 0.105723
x5: 0.0545739
x6: 0.338692", "Arm 8_0
hartmann6: -0.175442 (SEM: 0)
x1: 0.959177
x2: 0.30908
x3: 0.926258
x4: 0.657565
x5: 0.500267
x6: 0.794314", "Arm 9_0
hartmann6: -0.0145184 (SEM: 0)
x1: 0.699031
x2: 0.946268
x3: 0.655471
x4: 0.624671
x5: 0.592031
x6: 0.775368" ], "type": "scatter", "x": [ 0.4028814136981964, 0.7103469995781779, 0.17196986265480518, 0.31081594275321706, 0.2880174433319766, 0.25912830594012753, 0.21996989583144566, 0.18056858335304043, 0.1502106931535988, 0.17356030059917155, 0.19168646137496248, 0.2171827182173729, 0.21249192338150685, 0.21651961499690775, 0.18779735542569903, 0.2649191242857035, 0.20681076889446282, 0.2341444678511272, 0.18421697687132885, 0.17175792086072647, 0.1202259250188612, 0.9962308257818222, 0.17876088339835405, 0.5000381646677852, 0.39670159202069044, 0.16704079788178205, 0.9666077196598053, 0.9591769743710756, 0.6990306936204433 ], "xaxis": "x2", "y": [ 0.5198963284492493, 0.8273508353158832, 0.7536710789427161, 0.5598996695791404, 0.5980472172088396, 0.5116341307688471, 0.471754799267041, 0.4578145898717286, 0.4611653165202281, 0.39233537103354466, 0.34263973501808237, 0.6397942434996367, 0.2772171768112323, 0.22663465985530845, 0.26315849501645494, 0.295276850392257, 0.2851018693466092, 0.29113817867428476, 0.2603103544421217, 0.22139587926586693, 0.19124677264883938, 0.6464394517242908, 0.6857324400916696, 0.8951499769464135, 0.2783780237659812, 0.6703095184639096, 0.053062873892486095, 0.3090796750038862, 0.9462682828307152 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='hartmann6'))" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ 0.9608864327877855, 0.9613453209373508, 0.9622712076268762, 0.9636720266744232, 0.9655540657770967, 0.967921860744025, 0.9707781136449214, 0.9741236382951552, 0.9779573346386486, 0.9822761913697868, 0.987075313937396, 0.9923479733445802, 0.9980856702760184, 1.004278209219167, 1.010913778285711, 1.0179790320248454, 1.025459176180163, 1.0333380546638389, 1.0415982397736607, 1.050221126838209, 1.059187034180577, 1.0684753087475223, 1.0780644371532566, 1.0879321613712924, 1.0980555979417406, 1.1084113593555165, 1.118975676210166, 1.1297245187653526, 1.1406337166251206, 1.151679075406253, 1.1628364893987746, 1.1740820493713318, 1.185392144814229, 1.19674356004414, 1.2081135637151508, 1.2194799913916425, 1.2308213209404795, 1.2421167405928095, 1.2533462096111136, 1.2644905115744853, 1.2755313003647786, 1.2864511389988462, 1.297233531506804, 1.3078629481036304, 1.3183248439411155, 1.3286056717594492, 1.338692888782211, 1.348574958216316, 1.3582413457289129, 1.367682511278215 ], [ 0.961070400621622, 0.961560306158195, 0.9625196895463042, 0.9639565988943608, 0.9658774260689988, 0.968286799075543, 0.9711874992063458, 0.9745804065517666, 0.9784644754133165, 0.9828367386855025, 0.9876923378290321, 0.993024573176061, 0.9988249684453413, 1.0050833436952595, 1.011787892342702, 1.0189252598512681, 1.0264806236462385, 1.0344377752534735, 1.042779206344456, 1.051486200335995, 1.0605389306582897, 1.0699165660457, 1.079597382456627, 1.0895588806343661, 1.0997779079361758, 1.1102307828715179, 1.1208934207596444, 1.131741458990581, 1.1427503805062365, 1.1538956342779059, 1.1651527517213933, 1.176497458151136, 1.1879057785239266, 1.1993541368612552, 1.2108194488659214, 1.22227920736527, 1.2337115603204774, 1.2450953812395664, 1.2564103319218343, 1.2676369175428865, 1.2787565341632454, 1.2897515088089972, 1.3006051323304253, 1.3113016852942023, 1.3218264572063034, 1.3321657593963192, 1.3423069319201006, 1.352238344856228, 1.3619493943835996, 1.3714304940331579 ], [ 0.9616333361088816, 0.9621578023645598, 0.9631537164016645, 0.9646292076280978, 0.9665907428271914, 0.969043017761873, 0.9719888743893528, 0.975429247382949, 0.9793631413912438, 0.9837876377266648, 0.9886979264826302, 0.9940873580626803, 0.9999475073095593, 1.0062682440653465, 1.0130378058397231, 1.020242870692257, 1.0278686306956213, 1.0358988678629388, 1.0443160349670255, 1.0531013433726486, 1.062234859170721, 1.0716956079023485, 1.0814616872619076, 1.0915103865130649, 1.1018183109698505, 1.1123615097462236, 1.1231156049958222, 1.1340559209820442, 1.1451576114864737, 1.1563957842477526, 1.167745621304086, 1.179182494283636, 1.1906820738444814, 1.2022204326110089, 1.213774141087294, 1.2253203561512056, 1.2368369018471603, 1.2483023423000539, 1.2596960466688434, 1.2709982461453149, 1.2821900830815112, 1.2932536523987828, 1.304172035491553, 1.3149293268911693, 1.3255106539981893, 1.3359021902268364, 1.3460911619327196, 1.356065849514279, 1.3658155830918084, 1.3753307331740814 ], [ 0.9625811174596943, 0.963143901637096, 0.9641795795658682, 0.9656963248023841, 0.9677006456126807, 0.9701972770898675, 0.9731890997364014, 0.9766770882105249, 0.9806602914369442, 0.985135842267528, 0.9900989919429222, 0.9955431624905822, 1.0014600095351047, 1.007839489030236, 1.014669923812192, 1.0219380688161561, 1.029629176362493, 1.0377270644466572, 1.046214191275249, 1.0550717386234478, 1.0642797054048505, 1.073817011586479, 1.0836616115459243, 1.0937906152773402, 1.104180415499759, 1.1148068186280455, 1.125645177642407, 1.1366705250564293, 1.1478577043835543, 1.1591814987058588, 1.1706167551426625, 1.1821385041956516, 1.1937220731128964, 1.205343192566243, 1.216978096079415, 1.2286036117757506, 1.240197246137847, 1.251737259584287, 1.2632027337722576, 1.2745736306281348, 1.2858308431916032, 1.2969562384322153, 1.3079326922608652, 1.3187441170128853, 1.3293754817245755, 1.3398128255614228, 1.3500432647844982, 1.3600549936624833, 1.3698372797502218, 1.379380453962299 ], [ 0.9639182776754582, 0.9645233291600839, 0.9656021861854945, 0.967163025553998, 0.9692123597057885, 0.9717549308294733, 0.9747936323355335, 0.9783294612678032, 0.9823615024658452, 0.9868869419902808, 0.991901104163746, 0.9973975044180121, 1.0033679097087553, 1.0098023998010626, 1.016689425771123, 1.0240158655758689, 1.0317670793822045, 1.0399269687929793, 1.0484780440647747, 1.0574015022951468, 1.066677317977794, 1.0762843458099207, 1.0862004344911493, 1.0964025495612382, 1.1068669030254388, 1.117569087491786, 1.1284842126793981, 1.1395870423616212, 1.150852130032468, 1.162253951801324, 1.1737670352235205, 1.1853660829596413, 1.1970260903310452, 1.2087224560009826, 1.2204310851649522, 1.2321284847778937, 1.2437918504807364, 1.2553991450126323, 1.2669291680082135, 1.2783616171800358, 1.2896771409761205, 1.3008573828800731, 1.3118850175881551, 1.3227437793542942, 1.3334184828401885, 1.3438950368456481, 1.354160451323, 1.364202838101019, 1.3740114057581627, 1.3835764490930578 ], [ 0.965647889764747, 0.96629932071987, 0.9674249293293697, 0.9690328516573443, 0.9711295637151922, 0.9737197791883723, 0.9768063755064629, 0.9803903515567592, 0.9844708172771308, 0.9890450117624775, 0.9941083431620952, 0.9996544415140205, 1.0056752155839428, 1.0121609069664643, 1.0191001385106075, 1.026479958234283, 1.0342858829456518, 1.042501947032555, 1.0511107613637036, 1.0600935855978102, 1.0694304152012226, 1.0791000827280226, 1.0890803717029423, 1.099348140791013, 1.1098794557134029, 1.120649726417771, 1.13163384719671, 1.1428063376817639, 1.1541414828772734, 1.1656134706203296, 1.1771965250598795, 1.1888650349413339, 1.2005936756682207, 1.2123575242892628, 1.224132166729685, 1.2358937967461279, 1.24761930623465, 1.259286366659151, 1.2708735014915422, 1.2823601496648507, 1.2937267201367353, 1.304954637743256, 1.3160263805927281, 1.3269255093078292, 1.3376366884718425, 1.3481457006730386, 1.3584394535705797, 1.3685059804273172, 1.3783344345693582, 1.3879150782410328 ], [ 0.9677714661525003, 0.9684735144298641, 0.9696495722228745, 0.9713076887246551, 0.9734542604930161, 0.9760939344873777, 0.9792295405470243, 0.9828620561749474, 0.9869906030705622, 0.9916124709339431, 0.9967231605456688, 1.0023164361239385, 1.0083843773812993, 1.0149174246976196, 1.02190441549311, 1.0293326145852622, 1.0371877444836863, 1.0454540224745972, 1.0541142102358851, 1.0631496794914763, 1.0725404948131463, 1.082265512744888, 1.0923024951935398, 1.1026282344381049, 1.1132186869683487, 1.124049113472534, 1.1350942225108676, 1.1463283156533852, 1.1577254320954697, 1.1692594909842797, 1.1809044298993765, 1.192634338135352, 1.2044235836370676, 1.2162469326366858, 1.2280796612347258, 1.2398976583505092, 1.2516775196370376, 1.263396632109953, 1.2750332493772683, 1.2865665574765697, 1.2979767314294872, 1.3092449827102162, 1.3203535978978727, 1.3312859688419139, 1.3420266147182873, 1.3525611963922444, 1.362876523532988, 1.3729605549470394, 1.3828023926121047, 1.3923922699019213 ], [ 0.9702888775518558, 0.9710458625831824, 0.9722761530855243, 0.9739876642625676, 0.976186668918359, 0.9788777074733971, 0.9820635286596333, 0.9857450631648244, 0.9899214286562716, 0.9945899603488093, 0.999746257642296, 1.0053842355961795, 1.0114961710955903, 1.0180727375185357, 1.0251030273204793, 1.0325745672088795, 1.0404733337360126, 1.0487837775467344, 1.0574888627232397, 1.0665701248450055, 1.0760077486266137, 1.0857806639447625, 1.0958666578635077, 1.1062424997556117, 1.1168840765420207, 1.1277665352098138, 1.138864429982392, 1.1501518717396442, 1.1616026775027035, 1.1731905180113569, 1.1848890616395278, 1.1966721131187281, 1.2085137457697823, 1.2203884261738238, 1.2322711304380913, 1.2441374514239179, 1.255963696498644, 1.2677269755472067, 1.279405279131169, 1.290977546813409, 1.302423725776902, 1.313724819957117, 1.3248629299827253, 1.3358212842793273, 1.3465842617396206, 1.3571374064005042, 1.3674674345966527, 1.3775622350809986, 1.387410862617081, 1.3970035255569482 ], [ 0.9731982961973238, 0.9740145692418167, 0.9753029169088308, 0.977071073627426, 0.9793251442245421, 0.9820695224545563, 0.9853068415782427, 0.9890379585309967, 0.9932619688983516, 0.997976245279194, 1.0031764878979268, 1.008856774936264, 1.0150096019730717, 1.0216259049708607, 1.0286950678209033, 1.0362049211820816, 1.0441417423418302, 1.0524902656282864, 1.0612337103981986, 1.070353830265317, 1.079830984218255, 1.089644228183564, 1.099771424447315, 1.1101893658991835, 1.12087391200526, 1.1318001335263383, 1.1429424631610883, 1.1542748494689246, 1.1657709116142336, 1.1774040926829685, 1.1891478095580235, 1.200975597599459, 1.2128612486486179, 1.2247789411513987, 1.2367033614618677, 1.2486098156354455, 1.2604743312445148, 1.27227374894512, 1.2839858036916265, 1.2955891956372678, 1.3070636508749187, 1.3183899722672678, 1.3295500806915852, 1.3405270470844743, 1.351305115718994, 1.3618697191830071, 1.3722074855547843, 1.3823062382917692, 1.392154989362218, 1.401743926157532 ], [ 0.9764961673116274, 0.977376058102561, 0.9787262794316969, 0.9805543398675255, 0.98286613355145, 0.9856658685311854, 0.9889560285970831, 0.9927373693341214, 0.997008944252748, 1.0017681518325052, 1.0070107905549277, 1.012731108086916, 1.0189218336547814, 1.025574188863256, 1.0326778797101104, 1.0402210785997572, 1.0481904078552466, 1.056570935376175, 1.0653461899443877, 1.0744981999214671, 1.0840075559357447, 1.0938534960908308, 1.1040140111357015, 1.114465966584659, 1.125185238645585, 1.136146860816139, 1.1473251780610778, 1.158694005581481, 1.170226789340333, 1.1818967657254578, 1.193677118006019, 1.2055411275545926, 1.217462318143797, 1.2294145919624864, 1.2413723563160897, 1.2533106402666028, 1.2652052007245804, 1.277032617725215, 1.2887703788047935, 1.3003969525447652, 1.3118918514727773, 1.323235684606618, 1.3344102000030271, 1.3453983177321893, 1.3561841537437258, 1.3667530351240242, 1.3770915072699328, 1.3871873335222098, 1.397029487814256, 1.406608140899256 ], [ 0.9801772109845102, 0.9811249732790928, 0.9825408264815721, 0.9844320111932855, 0.9868041710422408, 0.9896612917699061, 0.9930056752601668, 0.9968379483532815, 1.0011571009019864, 1.0059605421139313, 1.0112441604704703, 1.0170023721402601, 1.0232281466935782, 1.029913006258457, 1.0370470025372989, 1.0446186823197163, 1.0526150544493518, 1.0610215697775056, 1.0698221220482635, 1.0789990737275894, 1.0885333076637984, 1.0984043034618614, 1.1085902363440447, 1.1190680956851882, 1.1298138200758334, 1.140802445551161, 1.152008263507108, 1.1634049848243142, 1.1749659068502056, 1.1866640801407125, 1.1984724722086322, 1.2103641259288616, 1.222312310674147, 1.234290664669582, 1.246273327437543, 1.2582350615453861, 1.2701513631606922, 1.2819985611632716, 1.2937539047620512, 1.3053956397250899, 1.3169030734560898, 1.328256629248037, 1.3394378901189934, 1.3504296326912355, 1.3612158516164774, 1.3717817750812238, 1.3821138719484853, 1.3921998511080507, 1.4020286536180753, 1.4115904382270315 ], [ 0.9842344544334781, 0.9852542130593696, 0.9867393488839268, 0.9886967964773072, 0.9911319131280795, 0.9940484292200087, 0.9974484348389101, 1.0013324016000051, 1.0056992328202863, 1.0105463294165322, 1.0158696552036284, 1.0216637854407637, 1.0279219272772386, 1.0346359090043078, 1.0417961438246932, 1.049391580066928, 1.0574096517600082, 1.0658362417359137, 1.0746556657519768, 1.0838506823213707, 1.093402529983331, 1.1032909917713722, 1.1134944853535906, 1.1239901764018925, 1.1347541120250055, 1.1457613705473024, 1.1569862235718618, 1.168402306164389, 1.1799827911295038, 1.1917005636795597, 1.2035283932560112, 1.2154390997894964, 1.2274057122225979, 1.239401617628398, 1.2514006997164324, 1.2633774659114465, 1.2753071625201184, 1.287165877768122, 1.2989306327024892, 1.3105794601199636, 1.3220914718087187, 1.333446914486505, 1.3446272148890606, 1.355615014514834, 1.3663941945694351, 1.3769498916803282, 1.3872685049710909, 1.397337695097754, 1.4071463758580371, 1.416684698988916 ], [ 0.9886592922299762, 0.9897549938327341, 0.9913129097545563, 0.993339635253191, 0.9958402101828374, 0.9988180807450022, 1.0022750984487054, 1.0062115545034513, 1.0106262416509078, 1.0155165294866264, 1.02087843570845, 1.0267066763523929, 1.0329946835248818, 1.0397345879168494, 1.0469171723570436, 1.0545318087485154, 1.062566392592569, 1.0710072876960177, 1.0798392904109746, 1.0890456194467508, 1.0986079346161086, 1.1085063858117936, 1.118719691791919, 1.1292252468218804, 1.139999251892503, 1.1510168662177815, 1.1622523741070694, 1.1736793621265005, 1.1852709016579404, 1.1969997324315382, 1.2088384432354127, 1.2207596466964479, 1.23273614570443, 1.2447410896723623, 1.2567481193648606, 1.2687314994764691, 1.2806662385065593, 1.2925281957649704, 1.3042941755654212, 1.315942008831793, 1.3274506224681568, 1.3388000969347182, 1.349971712537814, 1.3609479849887376, 1.371712690818064, 1.382250883254743, 1.3925488991938604, 1.402594357886611, 1.4123761519923093, 1.421884431634436 ], [ 0.993441569987821, 0.9946169388334369, 0.9962509379159317, 0.9983497950386605, 1.0009182065094866, 1.0039593098909008, 1.0074746944888133, 1.0114644471884748, 1.0159272248883293, 1.0208603387972919, 1.0262598323781504, 1.032120535585958, 1.0384360836695676, 1.0451988975067186, 1.052400131133484, 1.0600295980368875, 1.0680756899182686, 1.0765253008557383, 1.0853637676447039, 1.0945748346785429, 1.1041406493720776, 1.1140417917248024, 1.1242573390947335, 1.1347649647557057, 1.1455410666334649, 1.1565609210244783, 1.1677988552221807, 1.1792284327736535, 1.1908226454236615, 1.2025541064860874, 1.2143952412399264, 1.2263184708426091, 1.2382963870968593, 1.250301916149942, 1.2623084698276108, 1.2742900838087097, 1.2862215422423702, 1.2980784887134231, 1.3098375236894402, 1.3214762887506037, 1.3329735380243248, 1.3443091973322268, 1.3554644116157417, 1.3664215812467306, 1.3771643878553375, 1.3876778103242573, 1.3979481316089455, 1.4079629370491604, 1.4177111048405695, 1.4271827893355131 ], [ 0.9985696857175343, 0.9998281847679569, 1.0015413392604473, 1.0037149865101591, 1.0063534579249027, 1.0094595619505253, 1.0130346047435044, 1.0170784457866078, 1.0215895794393823, 1.0265652276255832, 1.0320014255276455, 1.037893082939773, 1.0442340090642368, 1.0510168964005842, 1.0582332672920283, 1.0658733924780406, 1.0739261940405354, 1.0823791460850405, 1.091218186238416, 1.1004276499120182, 1.1099902371679269, 1.1198870188896979, 1.13009748513265, 1.140599634652731, 1.1513701013428594, 1.1623843110633827, 1.173616661243841, 1.1850407155074942, 1.1966294061503402, 1.2083552382946605, 1.2201904906865075, 1.2321074092446362, 1.2440783904948614, 1.2560761528939306, 1.2680738947517085, 1.2800454380130983, 1.2919653575812184, 1.303809096177201, 1.3155530649596974, 1.3271747302903583, 1.3386526871448696, 1.3499667197461915, 1.3610978500475222, 1.3720283747244795, 1.3827418913554186, 1.3932233144798314, 1.4034588822301783, 1.4134361542348153, 1.4231440014896817, 1.432572588894495 ], [ 1.0040307029042939, 1.005375499266671, 1.0071706177707314, 1.0094214869519116, 1.0121320561155245, 1.0153047873099363, 1.0189406844654691, 1.0230393568124991, 1.0275991079081117, 1.0326170362434093, 1.0380891301996529, 1.044010340389512, 1.0503746162714531, 1.0571749000923754, 1.0644030778578337, 1.072049892872915, 1.0801048321545936, 1.0885559997880456, 1.0973899937978455, 1.1065918035909845, 1.116144742950264, 1.1260304291431056, 1.1362288129895797, 1.146718259041583, 1.1574756704530087, 1.168476650211986, 1.1796956891654633, 1.191106371354626, 1.2026815881329864, 1.2143937539258707, 1.226215017988099, 1.2381174679260398, 1.2500733219671005, 1.262055107954356, 1.2740358278227337, 1.2859891069041913, 1.2978893278461487, 1.3097117492433628, 1.3214326093065147, 1.3330292150449414, 1.3444800175444136, 1.355764673987797, 1.3668640971081685, 1.3777604927875804, 1.3884373865271213, 1.398879639518934, 1.4090734550514274, 1.4190063759772282, 1.4286672739702824, 1.438046331294341 ], [ 1.0098104704328403, 1.0112444035334494, 1.01312399976665, 1.0154542647382285, 1.0182387517799474, 1.0214795615225065, 1.0251773776076885, 1.0293315359008506, 1.0339401195178084, 1.039000067261024, 1.0445072799036528, 1.050456708014021, 1.0568424067244937, 1.063657546439846, 1.0708943734139182, 1.0785441203418653, 1.0865968745800307, 1.0950414194052296, 1.1038650698596013, 1.11305352705187, 1.1225907723453383, 1.1324590164702395, 1.1426387103168398, 1.153108616239155, 1.1638459326883785, 1.1748264614873642, 1.1860248058490042, 1.1974145877162312, 1.208968674463174, 1.2206594068686036, 1.2324588221632435, 1.244338867644976, 1.2562716017602837, 1.2682293806573324, 1.2801850290548646, 1.292111994888714, 1.3039844876412783, 1.3157776005698478, 1.327467417263109, 1.339031103097147, 1.35044698225374, 1.361694601019839, 1.3727547781187739, 1.383609642839279, 1.3942426617339236, 1.4046386546574454, 1.4147838009115856, 1.4246656362574142, 1.4342730415496863, 1.44359622374129 ], [ 1.0158937464774347, 1.017419297198342, 1.0193855583279245, 1.021797101829528, 1.0246570736965321, 1.027967199574495, 1.0317278252018156, 1.0359379896686423, 1.0405955254302361, 1.045697175066042, 1.0512387115235928, 1.0572150462920833, 1.0636203086833873, 1.0704478795966388, 1.077690366035859, 1.0853395096897103, 1.0933860341680908, 1.1018194485803319, 1.1106278357156865, 1.1197976572888708, 1.1293136053106916, 1.1391585194371168, 1.1493133786268566, 1.1597573649342896, 1.170467989792253, 1.1814212691997266, 1.1925919332780106, 1.2039536567125706, 1.2154792986981178, 1.227141143426275, 1.2389111344590964, 1.2507610983016322, 1.2626629540609087, 1.2745889072779646, 1.2865116269010624, 1.2984044049978716, 1.3102412992446149, 1.3219972585288087, 1.3336482322017984, 1.3451712636448034, 1.3565445688907714, 1.367747601089021, 1.3787611016217698, 1.3895671386894, 1.4001491341799055, 1.4104918796318129, 1.4205815420914316, 1.4304056606558846, 1.4399531344841545, 1.4492142030492279 ], [ 1.0222643258325448, 1.023883585461134, 1.0259383387743246, 1.0284327161479465, 1.0313694467478733, 1.0347498686913672, 1.0385739726428003, 1.0428404778824576, 1.0475469369713895, 1.052689862005334, 1.0582648619010866, 1.0642667757969815, 1.0706897826576673, 1.0775274633077492, 1.0847727917908307, 1.0924180413876, 1.1004546069140102, 1.1088727645225054, 1.1176614058830954, 1.1268077894939579, 1.1362973466977964, 1.1461135670418088, 1.1562379722305691, 1.1666501746400015, 1.1773280075516537, 1.1882477101657318, 1.1993841500236513, 1.2107110672967596, 1.2222013282381115, 1.2338271781020913, 1.2455604865457557, 1.257372980748019, 1.2692364631965642, 1.2811230123576918, 1.2930051653475632, 1.3048560823518047, 1.3166496929666167, 1.328360824917629, 1.3399653157944835, 1.3514401085517451, 1.3627633315924854, 1.3739143642843454, 1.3848738887718668, 1.3956239289490613, 1.4061478774492058, 1.4164305114980846, 1.42645799846427, 1.4362178919275286, 1.4456991190743282, 1.4548919602178154 ], [ 1.0289051721968057, 1.0306198112423655, 1.032764489397359, 1.0353428897633794, 1.0383573167786324, 1.041808709622596, 1.0456966878587841, 1.0500196297664979, 1.0547747821008688, 1.059958397646514, 1.065565892833599, 1.0715920107969386, 1.078030965959713, 1.0848765378368999, 1.092122080216215, 1.0997604223955988, 1.1077836616144565, 1.1161828729900047, 1.1249477843629667, 1.1340664705055823, 1.143525113215866, 1.1533078562405283, 1.1633967642408316, 1.1737718789575913, 1.1844113558721105, 1.1952916607534665, 1.2063878058603819, 1.2176736083259827, 1.229121956894017, 1.2407050767618943, 1.252394785363404, 1.2641627343539548, 1.2759806348755587, 1.28782046447974, 1.2996546549916517, 1.3114562612124574, 1.3231991107633205, 1.3348579356372126, 1.346408486188864, 1.357827628390754, 1.3690934252371458, 1.3801852032021973, 1.391083604664766, 1.401770627206988, 1.4122296506821916, 1.4224454529327832, 1.4324042150230838, 1.4420935168366047, 1.4515023238725528, 1.4606209660623115 ], [ 1.0357985580453575, 1.0376097964564348, 1.0398454033337916, 1.0425086108203687, 1.0456012924466709, 1.049123978859184, 1.0530759050126917, 1.0574550909919216, 1.062258458066827, 1.06748197980574, 1.0731208631526883, 1.0791697446005435, 1.085622872628977, 1.0924742344961371, 1.0997175819683422, 1.1073463239382615, 1.1153532835458853, 1.1237303529161726, 1.1324681051413068, 1.141555430573694, 1.1509792527421137, 1.1607243561942833, 1.170773334276024, 1.1811066462582867, 1.1917027627495924, 1.2025383750186611, 1.2135886452901223, 1.2248274788754592, 1.2362278034433343, 1.2477618448487102, 1.2594013923223475, 1.2711180484018736, 1.2828834608564421, 1.2946695351641182, 1.3064486269896538, 1.318193714699557, 1.3298785523337753, 1.3414778036947228, 1.352967158361963, 1.3643234305252494, 1.3755246415730358, 1.3865500873904324, 1.3973803913216722, 1.407997543742532, 1.418384929173273, 1.4285273418448012, 1.4384109906126827, 1.4480234940956613, 1.4573538668982902, 1.4663924977611327 ], [ 1.0429262146028346, 1.0448347962667002, 1.047161877026625, 1.0499102364343404, 1.0530813131972665, 1.0566752228164862, 1.0606908065194824, 1.0651257155613345, 1.069976535395682, 1.0752389527778552, 1.0809079628423566, 1.0869781003117895, 1.0934436602995332, 1.1002988565763223, 1.1075378601977912, 1.1151546783660806, 1.1231428710102194, 1.1314951466654573, 1.140202910695369, 1.1492558457129212, 1.1586415874734828, 1.1683455305711814, 1.178350769509776, 1.1886381600542621, 1.19918647521419, 1.2099726278750473, 1.2209719347760652, 1.2321584013960787, 1.2435050124920204, 1.2549840175894864, 1.2665672043279155, 1.2782261552284064, 1.2899324853361123, 1.3016580594760685, 1.3133751887197507, 1.3250568062184156, 1.3366766229164784, 1.348209263880182, 1.3596303861095806, 1.3709167787771601, 1.3820464468728848, 1.39299867924888, 1.4037541020540996, 1.414294718537749, 1.4246039361833616, 1.4346665821158697, 1.4444689077041464, 1.4539985832614508, 1.463244683727451, 1.4721976661969436 ], [ 1.0502694930734786, 1.0522756683139416, 1.0546942882080501, 1.057527680500361, 1.0607768483126163, 1.0644414898578467, 1.0685200499918095, 1.0730098096404055, 1.0779070202959198, 1.0832070893547785, 1.0889048146782365, 1.0949946507099497, 1.1014709653295023, 1.1083282251074624, 1.1155610409479173, 1.1231640273555754, 1.1311314743829792, 1.1394568836281527, 1.1481324551170777, 1.1571486169809355, 1.166493667685897, 1.1761535656151378, 1.1861118680373828, 1.1963497994268457, 1.2068464190120924, 1.2175788563774117, 1.2285225879397283, 1.2396517329878274, 1.2509393537764, 1.2623577490459184, 1.2738787340716395, 1.285473903034771, 1.2971148713677305, 1.308773496973454, 1.3204220800377904, 1.3320335416812494, 1.3435815820304677, 1.35504081849465, 1.36638690515597, 1.3775966342508412, 1.3886480207531056, 1.399520371081359, 1.4101943369491756, 1.4206519553652885, 1.4308766757731748, 1.440853375299644, 1.4505683630607553, 1.4600093744524085, 1.4691655563320305, 1.4780274439773322 ], [ 1.0578095360296493, 1.0599130558852585, 1.0624227923726368, 1.0653406252754787, 1.0686671256352653, 1.072401578292328, 1.0765420375359478, 1.081085423763665, 1.086027670593486, 1.0913639300988118, 1.0970888348507508, 1.1031967963879827, 1.1096822927657382, 1.1165400734196518, 1.1237652041763013, 1.1313529012114385, 1.1392981563790623, 1.1475952157386002, 1.1562370111979188, 1.1652146475160599, 1.1745170189149508, 1.1841305890146108, 1.1940393318369118, 1.2042248089041596, 1.214666348311165, 1.2253412920345144, 1.2362252830068639, 1.2472925701994508, 1.2585163162268524, 1.269868897062056, 1.2813221872246379, 1.2928478264650762, 1.3044174657752203, 1.3160029917516989, 1.327576729116542, 1.3391116216973755, 1.3505813924837622, 1.3619606835708928, 1.3732251769192094, 1.3843516969250145, 1.395318295831633, 1.4061043230229138, 1.41669047923973, 1.427058856749308, 1.4371929664812855, 1.4470777531245858, 1.4566995991578093, 1.4660463187639547, 1.4751071425576983, 1.4838726940313864 ], [ 1.065527455255746, 1.0677275805467785, 1.0703275322478638, 1.0733287499374606, 1.0767313815388686, 1.0805343099476392, 1.084735214687289, 1.0893306780842524, 1.0943163469997774, 1.099687158647478, 1.1054376283011127, 1.1115621749858124, 1.1180554314726445, 1.1249124589727824, 1.1321287829063855, 1.139700196896086, 1.1476223424012273, 1.1558901360213787, 1.1644971555612196, 1.1734350948130663, 1.182693363519143, 1.1922588638444989, 1.202115936570947, 1.2122464475870594, 1.2226299773477023, 1.2332440777844897, 1.2440645674982649, 1.2550658434211113, 1.26622119369455, 1.2775031016581249, 1.2888835345851082, 1.300334213395071, 1.3118268613110855, 1.3233334305710036, 1.334826307040989, 1.34627849305281, 1.357663769087849, 1.3689568351192898, 1.3801334325413546, 1.3911704476834061, 1.4020459979447826, 1.4127395016033897, 1.4232317323534087, 1.4335048596206734, 1.4435424756902189, 1.45332961066239, 1.462852736232928, 1.4720997592699634, 1.4810600061370476, 1.4897241986874383 ], [ 1.0734045100051979, 1.0757000367134653, 1.0783888508691657, 1.0814719644308455, 1.0849491177006594, 1.0888188116518867, 1.093078377670298, 1.097724095360718, 1.1027513702223666, 1.1081549794106913, 1.113929381320602, 1.1200690609643462, 1.1265688518479116, 1.1334241492483765, 1.1406309282276483, 1.1481855149385038, 1.15608412480534, 1.1643222485149916, 1.1728940050626302, 1.1817915762494464, 1.191004799024126, 1.2005209437719067, 1.2103246675540777, 1.2203981093490202, 1.2307210877839236, 1.2412713648853697, 1.252024946535996, 1.2629563980773255, 1.2740391601741223, 1.2852458551715553, 1.2965485778335135, 1.3079191668521288, 1.319329455183083, 1.3307514983499162, 1.342157780566661, 1.3535213989844341, 1.364816226661397, 1.3760170550456108, 1.3870997168811174, 1.39804119052367, 1.408819686697794, 1.4194147187508066, 1.4298071574684095, 1.4399792715141795, 1.4499147545451474, 1.459598740040023, 1.4690178048561797, 1.478159962509409, 1.4870146471452075, 1.495572689144977 ], [ 1.0814222780847103, 1.0838115786647176, 1.086587496422412, 1.089750633932255, 1.0933003466695053, 1.0972347827858124, 1.1015509628808802, 1.1062449110174806, 1.1113118486197102, 1.1167464579872581, 1.1225432080616324, 1.1286967100716256, 1.1352020393988833, 1.1420549359793717, 1.1492517972870178, 1.1567894167803967, 1.164664488064342, 1.1728729623590468, 1.1814093828607082, 1.1902663112805767, 1.1994339208649374, 1.208899780474739, 1.2186488153671244, 1.2286634094509572, 1.2389236084474364, 1.2494073873254627, 1.2600909530168334, 1.2709490613185386, 1.2819553335284246, 1.2930825633659726, 1.3043030082674762, 1.3155886615474248, 1.326911503511137, 1.338243730647523, 1.3495579627123253, 1.360827427958613, 1.37202612706534, 1.383128976510064, 1.3941119322621203, 1.4049520947585439, 1.4156277961805934, 1.4261186710820182, 1.4364057114371533, 1.446471307181076, 1.4562992733089652, 1.4658748645885027, 1.4751847789212114, 1.4842171503657915, 1.49296153281102, 1.5014088752584211 ], [ 1.0895628117605447, 1.092043890055436, 1.0949048065592084, 1.098145778875076, 1.1017658079869377, 1.105762727105445, 1.1101332929583594, 1.1148733307138823, 1.1199779430748193, 1.125441787756543, 1.1312594121797297, 1.1374256089035044, 1.1439357255002993, 1.1507858417604448, 1.1579727325914173, 1.1654935761879166, 1.173345434132906, 1.1815245947579331, 1.1900259035620975, 1.1988421934520648, 1.2079638854455341, 1.2173787811020134, 1.2270720301708657, 1.237026237345548, 1.2472216676078816, 1.2576365140725911, 1.2682472000080733, 1.2790286945336795, 1.2899548279742825, 1.3009985976938032, 1.3121324586320229, 1.3233285950748135, 1.3345591717186396, 1.3457965630994022, 1.3570135611216514, 1.3681835608680355, 1.3792807251690553, 1.3902801286185142, 1.401157881863155, 1.411891237093975, 1.4224586757349462, 1.432839979369237, 1.4430162849698986, 1.4529701255133405, 1.462685457054538, 1.4721476733335543, 1.481343608966606, 1.490261532252702, 1.498891128600841, 1.5072234755532117 ], [ 1.0978087712576525, 1.1003793270840823, 1.1033228614787531, 1.1066392377177492, 1.1103271397417358, 1.1143841313086094, 1.1188067595543463, 1.1235907134104122, 1.1287310454715977, 1.134222458242134, 1.140059639521721, 1.1462376070912348, 1.1527519957923333, 1.159599203506208, 1.1667763217279026, 1.174280818528994, 1.1821100060116774, 1.1902603841376125, 1.198726981036175, 1.2075027971117813, 1.21657841887937, 1.2259418210485271, 1.2355783395502562, 1.245470779885866, 1.2555996213371083, 1.2659432820636738, 1.2764784176856827, 1.2871802335028149, 1.2980227967297406, 1.3089793397719496, 1.320022548830968, 1.3311248343458564, 1.3422585812587453, 1.3533963780771043, 1.364511224364795, 1.3755767167422706, 1.3865672137868148, 1.3974579804438885, 1.4082253127186493, 1.4188466435317217, 1.4293006307055782, 1.4395672281054646, 1.449627740995818, 1.459464866693695, 1.4690627216071088, 1.4784068557412715, 1.4874842557416557, 1.4962833375212055, 1.5047939294923482, 1.5130072473934246 ], [ 1.1061435304132683, 1.1088010288909296, 1.1118245983040964, 1.1152137839461667, 1.1189669961174034, 1.1230815802160863, 1.1275539323978352, 1.1323796698788766, 1.1375538618830587, 1.1430713184733565, 1.1489269181749047, 1.1551159323323612, 1.1616342807995836, 1.168478641672997, 1.1756463501951684, 1.183135063397035, 1.1909422265506957, 1.1990644308610783, 1.2074967755518968, 1.216232334028387, 1.2252617847616483, 1.2345732234030196, 1.2441521393163786, 1.253981522609385, 1.2640420640974395, 1.2743124147933689, 1.284769478615651, 1.2953887191346236, 1.3061444670834574, 1.3170102197895541, 1.3279589268131688, 1.338963258222827, 1.3499958533800034, 1.3610295490770148, 1.3720375865326786, 1.382993797208333, 1.3938727677324807, 1.4046499844590166, 1.4153019583606645, 1.4258063310904394, 1.4361419631428054, 1.4462890051173036, 1.4562289531361758, 1.4659446894972423, 1.4754205096565394, 1.4846421366349023, 1.4935967239310344, 1.5022728480030445, 1.510660491353031, 1.5187510172168404 ], [ 1.1145512514894906, 1.1172929919549677, 1.1203938834378193, 1.123853194165101, 1.127669108341539, 1.1318388070685326, 1.1363585949506436, 1.1412240795819604, 1.1464304069294913, 1.1519725461614765, 1.1578456016141985, 1.1640451090242656, 1.1705672540683694, 1.1774089440146147, 1.1845676781041765, 1.1920412016848787, 1.1998269824247643, 1.2079215930853262, 1.2163201047258474, 1.2250155809925274, 1.2339987286582612, 1.243257719612061, 1.2527781690351596, 1.26254323850435, 1.2725338290034203, 1.2827288323481736, 1.2931054159377313, 1.3036393223217944, 1.3143051706074391, 1.325076750929793, 1.3359273062146046, 1.3468297975393435, 1.357757150816104, 1.3686824834867504, 1.379579310589084, 1.3904217300253154, 1.4011845872078834, 1.4118436195135113, 1.4223755811722325, 1.4327583493681615, 1.44297101244381, 1.4529939411859427, 1.462808844231685, 1.4723988086730817, 1.4817483269588425, 1.490843311196373, 1.4996710959482833, 1.5082204305980014, 1.5164814623311806, 1.5244457107458087 ], [ 1.1230169287956895, 1.1258401086220264, 1.129015543822402, 1.1325422694207294, 1.1364182929446276, 1.1406406852852733, 1.1452057162060163, 1.1501090394738946, 1.155345927550696, 1.1609115460533705, 1.166801243409007, 1.173010813465793, 1.1795366741087263, 1.1863759018547115, 1.1935260786326778, 1.2009849432429045, 1.2087498863963295, 1.2168173670845952, 1.2251823435200742, 1.2338377996298489, 1.242774416848996, 1.2519804056465655, 1.2614414837974308, 1.271140973461107, 1.2810599850624589, 1.2911776586516537, 1.30147143897866, 1.3119173664509338, 1.3224903712606442, 1.3331645619274266, 1.3439135023828337, 1.3547104737445377, 1.3655287183284728, 1.3763416644165933, 1.3871231309795993, 1.3978475120447706, 1.4084899407627354, 1.4190264335041982, 1.429434014533526, 1.4396908219753068, 1.449776195922734, 1.4596707496373196, 1.469356424863385, 1.4788165323298539, 1.4880357785398717, 1.497000279958097, 1.5056975656994176, 1.5141165698043184, 1.5222476141577306, 1.5300823830729458 ], [ 1.1315264031992156, 1.1344281728702779, 1.1376753616232003, 1.1412668161579684, 1.145200416174922, 1.1494731735845996, 1.1540813741853073, 1.159020764430926, 1.1642867803207206, 1.1698748059101507, 1.1757804356872776, 1.1819997005219591, 1.188529206303813, 1.1953661347163642, 1.2025080722733508, 1.2099526662261155, 1.2176971453668841, 1.2257377757216488, 1.2340693332824884, 1.2426846650666261, 1.2515743830385342, 1.2607267048919293, 1.2701274313604065, 1.2797600358015233, 1.2896058373533676, 1.2996442307016332, 1.3098529501108294, 1.3202083505957332, 1.330685693772516, 1.3412594296327531, 1.351903468235891, 1.3625914372861012, 1.3732969229470344, 1.38399369222576, 1.3946558959556197, 1.405258251919502, 1.4157762080410345, 1.4261860858701523, 1.4364652048265643, 1.4465919878538256, 1.4565460492863613, 1.4663082658488067, 1.4758608317926156, 1.4851872992350448, 1.4942726048002146, 1.5031030836768995, 1.5116664722040756, 1.5199519000778123, 1.5279498732444587, 1.5356522485083663 ], [ 1.1400663514945233, 1.1430438586096883, 1.1463600393211748, 1.1500135958996005, 1.1540023261822272, 1.1583232289977032, 1.1629726488716683, 1.1679464603470764, 1.1732402864383953, 1.1788497367916977, 1.1847706396875661, 1.190999230576634, 1.1975322528616414, 1.2043669295096437, 1.2115007803787075, 1.2189312885108747, 1.2266554514390005, 1.2346692793847278, 1.2429673116489244, 1.251542213206181, 1.260384491124277, 1.2694823444971355, 1.2788216402846195, 1.288385994582651, 1.2981569340535206, 1.3081141130394238, 1.3182355655228357, 1.3284979755694584, 1.3388769540654664, 1.3493473129883415, 1.3598833310661516, 1.370459006595945, 1.3810482945685598, 1.3916253262350207, 1.4021646099676828, 1.412641212803756, 1.423030922468217, 1.4333103899951216, 1.4434572533249326, 1.4534502424643643, 1.4632692669632745, 1.472895486594675, 1.4823113662233196, 1.491500715917406, 1.500448717401028, 1.5091419379639694, 1.5175683329451468, 1.5257172378895276, 1.5335793514491827, 1.5411467100612617 ], [ 1.1486242557901687, 1.15167467704679, 1.1550571433918073, 1.1587702537345144, 1.162811765187887, 1.1671787022411928, 1.1718675012461646, 1.1768741884886647, 1.1821945843833934, 1.1878245182591964, 1.1937600287006342, 1.1999975158145322, 1.206533807789082, 1.213366108678709, 1.220491809657191, 1.2279081702442591, 1.2356119028475736, 1.2435987145403873, 1.251862867242648, 1.2603968097492797, 1.2691909166489637, 1.2782333474913044, 1.2875100211526533, 1.29700468857847, 1.3066990820445468, 1.316573119003115, 1.3266051412703228, 1.3367721740208387, 1.3470501927198515, 1.357414389251226, 1.3678394309639124, 1.3782997082112483, 1.3887695673201517, 1.3992235269244955, 1.4096364763346116, 1.4199838551733417, 1.4302418139423496, 1.4403873555279223, 1.4503984579360383, 1.4602541787755836, 1.469934742194091, 1.47942160911776, 1.4886975317590583, 1.4977465934347, 1.5065542347865963, 1.5151072675228363, 1.5233938767975683, 1.5314036133336597, 1.539127376362187, 1.5465573884138422 ], [ 1.1571883585438607, 1.1603089199570042, 1.1637550347720866, 1.1675252352740584, 1.17161727276594, 1.1760282279151653, 1.180754651939516, 1.1857927351821267, 1.191138494219961, 1.1967879616340888, 1.2027373549620857, 1.2089831952372756, 1.2155223438203724, 1.2223519317630043, 1.229469169870342, 1.236871048030103, 1.2445539540533028, 1.2525132584980911, 1.260742917498476, 1.2692351393321188, 1.277980145555077, 1.286966039621496, 1.2961787801752516, 1.3056022455615202, 1.3152183709720342, 1.3250073388242118, 1.3349478047847871, 1.3450171448134762, 1.3551917117417456, 1.3654470927103053, 1.3757583610801525, 1.3861003182080744, 1.3964477218174927, 1.406775498697983, 1.4170589402232134, 1.4272738797582327, 1.4373968514850448, 1.4474052305442076, 1.457277354693181, 1.4669926279307939, 1.4765316067413015, 1.485876069773059, 1.4950090718920113, 1.5039149836382772, 1.5125795171720773, 1.520989739823564, 1.5291340763661891, 1.5370023011186709, 1.5445855209511483, 1.5518761502303544 ], [ 1.1657476087257017, 1.1689355952695624, 1.1724427934690334, 1.1762677003296296, 1.180408089236699, 1.1848611189989975, 1.1896234690308258, 1.1946914958979635, 1.2000614015542683, 1.2057293977014099, 1.2116918448386687, 1.2179453405065848, 1.224486731204444, 1.2313130283895612, 1.2384212213208028, 1.2458079964291462, 1.253469390241478, 1.2614004155866914, 1.2695947050585317, 1.2780442106689536, 1.286738986678653, 1.2956670679419258, 1.3048144427955435, 1.3141651100245657, 1.3237012043557996, 1.3334031735375864, 1.3432499911019493, 1.3532193911684938, 1.3632881142685833, 1.3734321556390174, 1.3836270095345893, 1.3938479047915537, 1.4040700281793936, 1.414268733079557, 1.4244197318004497, 1.4344992704407087, 1.4444842856939566, 1.4543525433807636, 1.4640827588179344, 1.47365469940445, 1.4830492700244602, 1.4922485820450446, 1.5012360068229622, 1.5099962147333479, 1.5185152007970388, 1.526780298016897, 1.5347801795408365, 1.5425048507555965, 1.5499456323856144, 1.5570951356297518 ], [ 1.1742916039853872, 1.177544360431356, 1.1811101432942879, 1.1849874396656856, 1.1891740656592433, 1.1936672719330785, 1.1984638706753672, 1.2035603783622733, 1.2089531643088833, 1.2146385902414718, 1.2206131217751992, 1.2268733902397202, 1.2334161844089535, 1.2402383575986853, 1.2473366463378308, 1.254707410707368, 1.2623463202219742, 1.270248019031171, 1.2784058074637543, 1.2868113729419028, 1.295454593784943, 1.3043234275289515, 1.3134038842245206, 1.3226800768004499, 1.332134335681884, 1.3417473730470968, 1.3514984824965137, 1.361365761536673, 1.371326346398603, 1.3813566508370225, 1.391432602447651, 1.4015298716112816, 1.4116240894309788, 1.4216910520180532, 1.4317069092622563, 1.4416483368417454, 1.4514926907315842, 1.4612181438840257, 1.470803805099858, 1.480229820398699, 1.489477457434645, 1.4985291736957584, 1.507368669374216, 1.515980925902063, 1.5243522312179874, 1.5324701928685085, 1.5403237400569072, 1.5479031157404928, 1.555199859846869, 1.5622067846376049 ], [ 1.1828105328248224, 1.1861254578250853, 1.1897473811432226, 1.193674799197285, 1.1979055844868978, 1.2024370857398272, 1.207266245077696, 1.212389725972684, 1.21780404212965, 1.2235056736525518, 1.2294911537835254, 1.2357571082852765, 1.2423002313587252, 1.249117187600974, 1.2562044387045803, 1.263558004910277, 1.271173182128216, 1.2790442433426266, 1.2871641554017663, 1.2955243391453126, 1.3041144932909365, 1.3129224928947547, 1.3219343638989391, 1.3311343279742704, 1.3405049072511375, 1.3500270764702254, 1.3596804499571111, 1.369443491901231, 1.3792937400694312, 1.389208034869738, 1.3991627473514758, 1.4091340011718194, 1.4190978847533258, 1.4290306508243797, 1.4389089013143375, 1.4487097562087634, 1.458411005491539, 1.4679912437360254, 1.4774299872734333, 1.4867077741742962, 1.4958062475342364, 1.5047082227614073, 1.5133977397233516, 1.5218601007277375, 1.5300818953888196, 1.5380510134733458, 1.5457566468323438, 1.5531892815132624, 1.5603406811172515, 1.5672038624229803 ], [ 1.1912951197983974, 1.1946696552795852, 1.1983453137207267, 1.2023206142053693, 1.206593492905298, 1.2111613964142587, 1.216021388035073, 1.2211702605829111, 1.2266046462688078, 1.2323211113491792, 1.2383162211803438, 1.2445865609837121, 1.2511286998304547, 1.2579390905128989, 1.2650139057482603, 1.2723488203231994, 1.279938757391582, 1.2877776231222562, 1.2958580558009132, 1.304171213015546, 1.3127066146029494, 1.32145205129769, 1.3303935613163806, 1.3395154707955765, 1.3488004897419468, 1.3582298529632542, 1.3677834949332004, 1.3774402481552979, 1.3871780558193494, 1.3969741910031588, 1.4068054761167252, 1.4166484975903615, 1.4264798119259707, 1.4362761401636888, 1.4460145485877123, 1.4556726141357865, 1.4652285735123523, 1.474661455458844, 1.4839511960192735, 1.4930787369644654, 1.5020261078098767, 1.5107764920817646, 1.5193142786580298, 1.5276250991354594, 1.5356958522589, 1.5435147164937844, 1.551071151838806, 1.5583558919645026, 1.565360927734107, 1.5720794831190066 ], [ 1.1997365758091774, 1.2031681935725602, 1.206895203302259, 1.21091615468285, 1.2152290493211868, 1.2198314262541334, 1.2247204568145766, 1.2298930424726628, 1.2353459068642287, 1.2410756710999766, 1.2470789001971707, 1.2533521087503197, 1.2598917163088241, 1.2666939475563654, 1.273754678908399, 1.2810692405386543, 1.288632189630341, 1.2964370753004566, 1.3044762171110171, 1.31274051713604, 1.3212193208496288, 1.329900335879766, 1.3387696113076255, 1.3478115747761301, 1.3570091208027697, 1.366343741478944, 1.375795689947673, 1.3853441672886588, 1.3949675243010708, 1.404643470829978, 1.4143492865042067, 1.4240620279103438, 1.4337587282568596, 1.443416586470072, 1.4530131434177052, 1.4625264435959342, 1.471935181161268, 1.4812188296563171, 1.4903577551791425, 1.4993333130879138, 1.508127928618186, 1.516725162023621, 1.525109759032759, 1.5332676875483582, 1.5411861616055256, 1.5488536536552096, 1.556259896257043, 1.5633958742562821, 1.570253808489988, 1.576827132023857 ], [ 1.2081265547221425, 1.2116127418696798, 1.2153887230774414, 1.2194530818408829, 1.2238038824046649, 1.2284387468289846, 1.233354938332265, 1.2385494447789973, 1.244019054304552, 1.2497604135729414, 1.2557700585085558, 1.262044408009678, 1.2685797134945411, 1.2753719612065115, 1.282416729636608, 1.2897090103773354, 1.297243006073007, 1.3050119227541952, 1.3130077749706013, 1.321221220604198, 1.3296414385211783, 1.3382560572195226, 1.3470511373850884, 1.3560112066520218, 1.365119341395973, 1.3743572882311543, 1.3837056169130584, 1.3931438962951768, 1.4026508855390198, 1.412204733659037, 1.421783181493345, 1.4313637611979342, 1.440923989295331, 1.4504415501409982, 1.459894467398367, 1.4692612617460348, 1.4785210935899635, 1.4876538900314107, 1.496640455755466, 1.5054625678607, 1.5141030549500838, 1.5225458610478184, 1.5307760950991747, 1.5387800669518426, 1.546545310812927, 1.554060597230081, 1.5613159346654695, 1.5683025617231734, 1.5750129310618701, 1.581440685980845 ], [ 1.2164571168207594, 1.2199953613009051, 1.2238179218646275, 1.227923415073575, 1.2323099614381394, 1.2369752537769243, 1.2419166292870258, 1.2471311395831013, 1.2526156115393527, 1.2583666907672801, 1.2643808593401071, 1.2706544202727703, 1.277183443500099, 1.2839636716394862, 1.290990388326096, 1.2982582567022154, 1.3057611398667384, 1.3134919179170226, 1.321442317081423, 1.329602765226978, 1.3379622850714261, 1.3465084324008298, 1.3552272822792193, 1.3641034623170047, 1.3731202289912998, 1.3822595809616292, 1.39150240225519, 1.4008286279256006, 1.41021742508665, 1.419647382865155, 1.4290967056297559, 1.4385434047116907, 1.447965484666687, 1.457341120896281, 1.4666488261406183, 1.47586760397224, 1.4849770879679367, 1.4939576657192815, 1.5027905872663756, 1.5114580579063994, 1.519943315639565, 1.5282306937704417, 1.5363056693835646, 1.5441548985614553, 1.5517662393139127, 1.55912876324626, 1.566232757016642, 1.5730697146263901, 1.5796323215595967, 1.5859144317444385 ], [ 1.224720699100189, 1.2283084763399714, 1.2321751974792734, 1.2363195082411125, 1.240739576395005, 1.2454331514347057, 1.250397625893237, 1.255630093027337, 1.2611273945573884, 1.2668861515299914, 1.2729027714504155, 1.2791734258448029, 1.2856939944800048, 1.2924599755182915, 1.2994663646041187, 1.3067075097375755, 1.314176952130719, 1.321867265451468, 1.3297699065256832, 1.3378750895998652, 1.3461716939106994, 1.3546472110578351, 1.3632877351235113, 1.3720779951668598, 1.3810014270178572, 1.3900402793870363, 1.3991757481976592, 1.4083881326246557, 1.417657006419907, 1.4269613985431457, 1.4362799777526494, 1.4455912365293773, 1.4548736704395542, 1.464105949742939, 1.4732670807065253, 1.4823365546796823, 1.4912944835268347, 1.5001217204977748, 1.5087999660460025, 1.5173118584806529, 1.5256410496580217, 1.5337722661829458, 1.5416913567991566, 1.5493853268033666, 1.5568423604242325, 1.5640518321695114, 1.571004308170386, 1.5776915385476025, 1.584106441797373, 1.5902430821523306 ], [ 1.232910092012168, 1.236544853301798, 1.2404532777415267, 1.2446340339169486, 1.2490853260667856, 1.253804945333408, 1.2587903210257458, 1.264038567145048, 1.269546518683186, 1.2753107518729376, 1.2813275828498167, 1.2875930402325464, 1.2941028090030127, 1.3008521456713664, 1.3078357677795087, 1.3150477239026075, 1.3224812529564742, 1.3301286433491288, 1.3379811030243647, 1.3460286506672827, 1.3542600364535144, 1.3626626980924155, 1.3712227549872595, 1.3799250405341341, 1.3887531702203844, 1.3976896414319455, 1.406715959774092, 1.4158127861868142, 1.4249600990772608, 1.4341373659622907, 1.4433237195934303, 1.4524981341264447, 1.461639597530646, 1.4707272770652404, 1.4797406752571631, 1.4886597743844472, 1.497465167995986, 1.5061381784787573, 1.5146609601157808, 1.5230165874585522, 1.531189129164811, 1.5391637077237708, 1.5469265457066341, 1.55446499934151, 1.5617675803228594, 1.5688239668320243, 1.5756250047734883, 1.5821627002296532, 1.5884302041116278, 1.5944217899422246 ], [ 1.2410184220309073, 1.2446975850697233, 1.2486452079692725, 1.2528599741880178, 1.2573401125997852, 1.2620834407414931, 1.267087406845168, 1.2723491264338274, 1.277865408762917, 1.2836327682695705, 1.289647416596184, 1.2959052317839037, 1.3024017029027997, 1.3091318505990335, 1.3160901265651053, 1.3232702974445256, 1.330665320785227, 1.3382672220147618, 1.3460669817985818, 1.3540544425110805, 1.362218241027615, 1.3705457729060062, 1.3790231906091834, 1.3876354360563068, 1.3963663057361366, 1.4051985450283704, 1.414113967308897, 1.4230935928326485, 1.432117802214441, 1.441166499462931, 1.450219279868426, 1.4592555985186404, 1.468254935755796, 1.477196956451378, 1.4860616605331367, 1.4948295227379962, 1.5034816200731793, 1.5119997459398953, 1.5203665103039388, 1.5285654256799956, 1.5365809790276312, 1.5443986899332558, 1.552005155673225, 1.5593880839194016, 1.566536313963924, 1.5734398274097225, 1.580089749304795, 1.5864783406984146, 1.592598983574356, 1.5984461590764545 ], [ 1.2490391392711355, 1.2527600810746489, 1.2567443437755617, 1.2609906166446616, 1.2654971409303317, 1.2702617456460548, 1.2752818812543079, 1.2805546475439085, 1.286076811688512, 1.2918448125037472, 1.2978547473934745, 1.3041023394523008, 1.3105828836658895, 1.3172911730224623, 1.3242214074291994, 1.3313670903490618, 1.3387209197488363, 1.3462746810163966, 1.354019149799971, 1.36194401220336, 1.3700378085368847, 1.378287905076424, 1.386680496281609, 1.3952006379281767, 1.4038323098290835, 1.4125585053915866, 1.4213613442426665, 1.4302222035460348, 1.4391218633794836, 1.448040661569756, 1.4569586536154215, 1.4658557736993683, 1.4747119932453496, 1.483507473968392, 1.4922227128779364, 1.5008386771973727, 1.5093369276506867, 1.5176997290265386, 1.5259101473542276, 1.5339521334069846, 1.541810592580563, 1.5494714414744724, 1.556921651727386, 1.5641492818286835, 1.5711434977468521, 1.5778945832890094, 1.584393941140114, 1.5906340855333008, 1.5966086274819684, 1.602312253466351 ], [ 1.256966009332992, 1.260726061539741, 1.264744348037323, 1.2690195543056089, 1.2735499217794506, 1.2783332767923474, 1.2833670568129665, 1.2886483307625227, 1.2941738100339901, 1.2999398469658043, 1.3059424180245345, 1.3121770898568967, 1.318638967659872, 1.3253226268972167, 1.3322220311026607, 1.3393304401457482, 1.3466403146722716, 1.3541432232720756, 1.3618297591467141, 1.369689472619845, 1.3777108248242844, 1.3858811664652078, 1.3941867438966251, 1.4026127330609273, 1.4111433003007, 1.4197616877774777, 1.4284503202842367, 1.437190929625419, 1.4459646924306775, 1.4547523772149806, 1.463534496640336, 1.472291461216175, 1.4810037310511692, 1.489651962700357, 1.498217148611806, 1.5066807471457642, 1.5150248016016878, 1.5232320471322622, 1.53128600483836, 1.5391710627152293, 1.5468725434513249, 1.5543767593613695, 1.56167105496152, 1.5687438378674934, 1.5755845988186792, 1.5821839217077078, 1.58853348453229, 1.5946260521920927, 1.600455462034894, 1.6060166030207526 ], [ 1.2647931085509625, 1.268589555049439, 1.2726391909945107, 1.2769406883646381, 1.2814922770541837, 1.2862917676269812, 1.2913365709921307, 1.2966237122442266, 1.3021498358489048, 1.307911199551504, 1.3139036548905827, 1.3201226130235277, 1.3265629956901945, 1.3332191724701, 1.3400848868985613, 1.347153175332107, 1.3544162835213518, 1.361865586511973, 1.3694915176557676, 1.3772835121534293, 1.3852299697198986, 1.3933182397789157, 1.401534631207228, 1.4098644472200204, 1.4182920446572078, 1.4268009157976467, 1.4353737899531087, 1.4439927514940152, 1.452639370619148, 1.4612948430685209, 1.4699401350474506, 1.4785561298377345, 1.487123772877884, 1.4956242124674533, 1.5040389336625055, 1.5123498833621865, 1.5205395850215393, 1.5285912418511498, 1.5364888277662567, 1.5442171657170585, 1.5517619933590963, 1.5591100163012352, 1.5662489493955971, 1.5731675467084318, 1.5798556209354186, 1.5863040531041943, 1.5925047934472865, 1.5984508543374814, 1.604136296162021, 1.6095562069790152 ], [ 1.2725148218664408, 1.2763448985804335, 1.2804231525552088, 1.2847482327979116, 1.2893183466869365, 1.294131277198657, 1.2991843968719246, 1.3044746761653094, 1.3099986838764215, 1.3157525775287822, 1.321732082118817, 1.327932456358873, 1.3343484465180802, 1.340974229080745, 1.3478033446032516, 1.3548286262256881, 1.3620421271491372, 1.3694350519111949, 1.3769976964080934, 1.3847194013055744, 1.3925885227913675, 1.4005924236387397, 1.408717486389434, 1.4169491492518924, 1.4252719641586284, 1.4336696754238893, 1.4421253166416732, 1.450621322888648, 1.459139654941466, 1.4676619320626625, 1.4761695699213355, 1.484643920360541, 1.4930664099700381, 1.5014186747421991, 1.5096826884563685, 1.5178408828333658, 1.5258762579092824, 1.5337724814819285, 1.5415139768708601, 1.5490859985906158, 1.556474695857702, 1.5636671641269755, 1.5706514850791808, 1.5774167556558594, 1.583953106864732, 1.590251713159869, 1.5963047932446457, 1.6021056031570726, 1.607648422484707, 1.6129285345261999 ] ], "zauto": true, "zmax": 1.6129285345261999, "zmin": -1.6129285345261999 }, { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 1, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(255,247,251)" ], [ 0.14285714285714285, "rgb(236,231,242)" ], [ 0.2857142857142857, "rgb(208,209,230)" ], [ 0.42857142857142855, "rgb(166,189,219)" ], [ 0.5714285714285714, "rgb(116,169,207)" ], [ 0.7142857142857143, "rgb(54,144,192)" ], [ 0.8571428571428571, "rgb(5,112,176)" ], [ 1.0, "rgb(3,78,123)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x2", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y2", "z": [ [ 0.050012244001015005, 0.047822934566285384, 0.04579996021755121, 0.04395889142823957, 0.04231603284549948, 0.04088793565440364, 0.039690603796017895, 0.03873839433999556, 0.03804269505078413, 0.03761055833650003, 0.03744354329656894, 0.037537023387299286, 0.03788013401375064, 0.03845638317630409, 0.03924478885818551, 0.040221303271149894, 0.041360267335919354, 0.04263569523488842, 0.044022278686406874, 0.04549608509362023, 0.04703498161561774, 0.04861884517572966, 0.050229623529978694, 0.05185130446976935, 0.053469836970532016, 0.05507303455642113, 0.056650479689724816, 0.05819343930797828, 0.05969479555535266, 0.06114899178331187, 0.06255199147257764, 0.06390124637121133, 0.06519566948062594, 0.06643560829148021, 0.06762281370372525, 0.06876040026007697, 0.06985279363274774, 0.07090566171912466, 0.07192582623825099, 0.07292115240501405, 0.07390041512490281, 0.07487314122312312, 0.07584942850296278, 0.07683974389378286, 0.07785470453498355, 0.07890484724092359, 0.08000039325723163, 0.0811510163795536, 0.08236562318869899, 0.08365215421735966 ], [ 0.047922457836925975, 0.04567382608285688, 0.04359092753003314, 0.04169010912364538, 0.03998883628345444, 0.038505233395184184, 0.03725724766656928, 0.03626140933588586, 0.03553126504993438, 0.0350756950573756, 0.034897438748446585, 0.03499217983385285, 0.03534843955770423, 0.035948317785928094, 0.03676889683278222, 0.037783980882712384, 0.03896583060623409, 0.040286642328415424, 0.041719650158248404, 0.04323984158045472, 0.04482434610998753, 0.04645258352475989, 0.04810625646081104, 0.04976925635530311, 0.05142753221177187, 0.05306895397993494, 0.05468318856278124, 0.056261596734592224, 0.05779715290173662, 0.05928438579270744, 0.06071933603628726, 0.06209952556355929, 0.06342393341561973, 0.06469297256677668, 0.06590846260795234, 0.06707359348272206, 0.06819287589161378, 0.06927207448010982, 0.07031812052712776, 0.07133900159254682, 0.07234362650396733, 0.07334166519483241, 0.07434336425629605, 0.0753593406085877, 0.07640035736560342, 0.07747708764427473, 0.07859987360084592, 0.07977848917607269, 0.08102191571658016, 0.08233813965950841 ], [ 0.04595972727412786, 0.04365405523444215, 0.04151291057045218, 0.03955330543300625, 0.03779379456913203, 0.03625407421677437, 0.03495412937878059, 0.03391286143447115, 0.03314625324539358, 0.032665310368852056, 0.03247419079628307, 0.03256899987971408, 0.032937604450369334, 0.033560533432625, 0.034412714006915354, 0.03546559708600327, 0.03668922154656905, 0.03805390658488807, 0.03953144476625564, 0.04109581434622983, 0.042723508703392886, 0.04439360241721326, 0.04608766093255572, 0.047789574628156764, 0.04948537118702834, 0.05116303810447102, 0.05281237127593793, 0.05442485517399204, 0.05599357382030666, 0.057513148291142666, 0.058979694837468934, 0.06039079712377333, 0.06174548611041657, 0.06304422142609488, 0.06428886853133592, 0.06548266648083154, 0.06663018162908922, 0.06773724320512123, 0.06881085734561139, 0.06985909697006419, 0.07089096585430604, 0.07191623644568891, 0.07294526237565421, 0.0739887682370475, 0.07505762093225107, 0.07616258864160502, 0.07731409504254298, 0.07852197763429461, 0.07979525969780296, 0.08114194539022028 ], [ 0.044129978765363745, 0.0417702471606855, 0.039573282646644864, 0.03755661943411042, 0.03573978573573798, 0.03414399656605227, 0.03279132047153129, 0.03170319491853413, 0.030898308389959352, 0.030390105554070818, 0.030184429283853443, 0.03027794043522995, 0.030657818310550245, 0.03130285349988667, 0.032185594698927344, 0.03327494217181613, 0.034538594140252794, 0.03594496636284525, 0.03746446147464685, 0.039070150635949055, 0.040738016161735315, 0.04244691413456901, 0.04417838763389429, 0.045916422125183425, 0.047647199363060326, 0.04935887981890284, 0.051041426088908895, 0.05268646908462363, 0.05428721294041126, 0.05583837175155962, 0.05733613023843878, 0.05877812039760931, 0.06016340664666084, 0.06149247260668684, 0.06276720334729621, 0.06399085758382161, 0.06516802496249943, 0.06630456422726498, 0.06740751878238263, 0.06848500700661694, 0.06954608569289195, 0.07060058622255957, 0.07165892454885493, 0.07273188773286977, 0.07383040157076819, 0.07496528564363537, 0.07614700373550373, 0.07738541879747003, 0.07868956228688397, 0.08006742762234635 ], [ 0.04243804300918269, 0.04002793198812131, 0.03777835726320424, 0.0357072052907495, 0.033834817389331695, 0.03218381460806445, 0.030778329486437134, 0.02964244502293413, 0.028797794233442333, 0.028260574783090568, 0.028038602041611228, 0.028129250690098428, 0.028518994292179124, 0.02918472482057776, 0.030096399920020122, 0.031220195613149947, 0.03252138758015252, 0.033966504797572045, 0.035524651689812, 0.0371681255415031, 0.03887254247688138, 0.04061667605167281, 0.04238216284816439, 0.04415317505195003, 0.045916116177592954, 0.04765936600062702, 0.04937308223686536, 0.05104905622935223, 0.05268061488701601, 0.05426255920303066, 0.05579112944561193, 0.05726398769298212, 0.058680209283645396, 0.060040275712193655, 0.061346062403861444, 0.06260081561601133, 0.06380911346205094, 0.06497680678021178, 0.06611093634088311, 0.06721962376916568, 0.06831193461644985, 0.06939771329045469, 0.0704873910614749, 0.07159177007517374, 0.07272178813803497, 0.07388827086515577, 0.07510167940793842, 0.07637186320212265, 0.07770782779059364, 0.07911752762323064 ], [ 0.04088745919052994, 0.03843130561686268, 0.03613310368022214, 0.03401090515650612, 0.03208566496935081, 0.030381234927180388, 0.02892371270179631, 0.027739856357246198, 0.026854422901566876, 0.02628665244047856, 0.026046628806276746, 0.02613262347900559, 0.026530411685548476, 0.027214851179488565, 0.028153127686409214, 0.029308563399788462, 0.0306439820310328, 0.032124093715296044, 0.033716837669050204, 0.035393897484276904, 0.03713068078381086, 0.03890601608128381, 0.04070174321718114, 0.042502302338101566, 0.04429437427946483, 0.04606659227783489, 0.04780932635548726, 0.04951453245662357, 0.051175654647678134, 0.05278756789952539, 0.054346549619184, 0.05585026932858438, 0.05729778724496119, 0.05868955378826311, 0.06002740315182959, 0.06131453502414146, 0.06255547938651036, 0.06375604009908893, 0.06492321380261754, 0.06606508158151224, 0.06719067192341119, 0.06830979481772752, 0.06943284837557842, 0.0705706010951197, 0.07173395475450854, 0.07293369474884741, 0.0741802363087481, 0.07548337623346492, 0.07685206033627204, 0.07829417657980621 ], [ 0.03948030847939778, 0.03698301251123195, 0.034640871841680625, 0.03247191281555346, 0.03049747671700057, 0.028742412790962082, 0.027234597903385182, 0.026003392432332913, 0.02507676455616628, 0.02447722921102934, 0.02421742233737205, 0.0242967170453093, 0.024700236702758706, 0.025400717684665203, 0.026362451461735232, 0.02754584381637229, 0.028911303851204582, 0.03042184641721483, 0.03204441601865157, 0.033750261158760154, 0.0355147413649419, 0.03731686963884292, 0.03913878498729981, 0.040965260673730956, 0.042783294486356815, 0.04458179285039697, 0.046351342948580815, 0.04808405938350946, 0.04977348972779535, 0.051414563783796864, 0.05300357295844828, 0.05453816803963286, 0.05601736545484744, 0.057441553651644946, 0.058812492535531884, 0.06013329997212086, 0.06140842027431264, 0.06264357043474411, 0.06384566071564288, 0.06502268715608511, 0.066183594671573, 0.06733811075113241, 0.06849655131637095, 0.06966960206164054, 0.0708680804559682, 0.07210268541091404, 0.07338374321246018, 0.07472095946539165, 0.07612318730343536, 0.07759822182947138 ], [ 0.03821709622191489, 0.03568397507799235, 0.033303156128191326, 0.03109246091974921, 0.02907337869649695, 0.02727147772436861, 0.025716143184416243, 0.024439147921742104, 0.0234716347971207, 0.0228395311816544, 0.0225582683289547, 0.022628540805487686, 0.023034920771904898, 0.023748013139335823, 0.024729181793809674, 0.025935943037958053, 0.027326405330481585, 0.02886206534172773, 0.03050907106158618, 0.03223842012004897, 0.03402557471484743, 0.03584984383402488, 0.037693740455904304, 0.03954241539373613, 0.04138320455486603, 0.043205291845511196, 0.04499947415361196, 0.04675800934798213, 0.04847452784342487, 0.050143990092806116, 0.05176267487641198, 0.05332818575473034, 0.05483946524321705, 0.0562968080786652, 0.05770186640259723, 0.05905764085887332, 0.06036845258162895, 0.061639891933009214, 0.06287874073361516, 0.06409286570048535, 0.06529108194158881, 0.06648298669962219, 0.06767876510387269, 0.06888897144015065, 0.07012429129407505, 0.07139529171450894, 0.07271216809055396, 0.07408449752497052, 0.07552100892331731, 0.07702937966166153 ], [ 0.03709670088776645, 0.034533294862694665, 0.03211943149322852, 0.029872573871506828, 0.027814128845571235, 0.025970080626749766, 0.02437098105914867, 0.023050707057166192, 0.022043393932323938, 0.021378388169567348, 0.021074086704655742, 0.021132729190215027, 0.021538505752047698, 0.022259986516941527, 0.023255692668369164, 0.024480384464692216, 0.025890061829362928, 0.027444923697215833, 0.029110531779978806, 0.030857806842814205, 0.032662441906809836, 0.03450412626300164, 0.03636579499679762, 0.03823299744931963, 0.04009340961899815, 0.041936482308366656, 0.043753203649006145, 0.04553595160506348, 0.04727841355243436, 0.04897555315445121, 0.050623608129119674, 0.05222010554996965, 0.053763883859056685, 0.0552551127949561, 0.05669530402667822, 0.05808730653995952, 0.05943528185637214, 0.0607446550868088, 0.062022038731835864, 0.06327512713331898, 0.0645125606285973, 0.06574375980710621, 0.06697873182890526, 0.0682278524960464, 0.06950162957709452, 0.070810454624704, 0.07216435200653622, 0.07357273488487197, 0.07504417824246512, 0.07658621863235503 ], [ 0.03611640294593369, 0.033528246717380104, 0.031087093855325706, 0.028809931381708037, 0.026717879372339336, 0.024837034713926658, 0.023198728832100907, 0.021838531509159115, 0.020793238351366955, 0.020095466253842263, 0.019766645688846132, 0.019810774750599933, 0.02021190929677418, 0.020936812297240974, 0.021941385891654355, 0.023177879784373072, 0.024600445838465077, 0.02616823053864904, 0.02784641172617542, 0.0296059805818994, 0.03142295503825635, 0.03327745521916508, 0.035152856968130336, 0.03703510545871736, 0.038912200924329635, 0.040773837809235366, 0.04261116857151012, 0.04441666291014851, 0.04618403652162771, 0.047908227826559166, 0.04958540524558634, 0.051212991120001196, 0.052789691194364906, 0.05431552077693023, 0.05579182039037028, 0.05722125505158877, 0.058607792401614754, 0.05995665586247568, 0.061274249933896796, 0.06256805575137252, 0.06384649618128534, 0.06511877107311313, 0.06639466482938527, 0.06768433014973034, 0.0689980535605496, 0.07034601001086717, 0.07173801521293165, 0.07318328533592085, 0.07469021394599291, 0.07626617560916309 ], [ 0.03527199872105477, 0.032664377931492794, 0.03020152751532512, 0.02789988082892506, 0.025780105438600293, 0.023868130799843276, 0.022195667581585567, 0.02079949700412458, 0.01971861257438058, 0.018988595548038344, 0.018633858307815512, 0.018660347197786184, 0.01905231223199728, 0.019775078318080404, 0.020782294713601653, 0.022024047239578924, 0.023452946510956637, 0.02502733182542275, 0.026712170688601735, 0.02847863083994541, 0.03030310725330437, 0.03216616478814532, 0.03405160972745287, 0.035945759160225264, 0.03783690724789385, 0.03971495980676192, 0.04157120180548241, 0.04339816439541493, 0.045189563096234966, 0.04694028414886027, 0.04864640082590125, 0.05030520538848141, 0.05191524542885779, 0.05347635567809571, 0.05498967814615, 0.05645766485085004, 0.05788405852076806, 0.05927384764696587, 0.060633193219470145, 0.06196932550730148, 0.06329041039744354, 0.06460538613954289, 0.06592377285301602, 0.06725545879793073, 0.06861046909569686, 0.06999872416776987, 0.07142979646311201, 0.07291267488168013, 0.07445554650870911, 0.07606560474886058 ], [ 0.03455799433138824, 0.03193571136398571, 0.029456306436978608, 0.02713561860985682, 0.024993740623867004, 0.0230561947820562, 0.021354689707666553, 0.019926710313205295, 0.01881289875050792, 0.01805136454397729, 0.01766933623610166, 0.017674867528675208, 0.01805280347481313, 0.018767531564161177, 0.01977093788685598, 0.02101136321566471, 0.022440197863394153, 0.024015191700012792, 0.02570122784846784, 0.02746970572563984, 0.029297404437216415, 0.03116531216493358, 0.03305763005330109, 0.034961006698783596, 0.03686399034049736, 0.038756661508433356, 0.04063040510333478, 0.0424777851084629, 0.04429249156301775, 0.04606933568143204, 0.04780427429062926, 0.04949444895587522, 0.051138228398986234, 0.05273524526996972, 0.0542864202041317, 0.05579396754739391, 0.05726137830924381, 0.05869337692984512, 0.060095849434310566, 0.06147574158350866, 0.0628409267847789, 0.06420004483684524, 0.0655623140508662, 0.06693732087024033, 0.06833479271144492, 0.06976436123042032, 0.07123532441613027, 0.07275641665164097, 0.07433559601515961, 0.07597985752828602 ], [ 0.03396786528717823, 0.03133503779117037, 0.028843516839328794, 0.026508534789049226, 0.02434952744842937, 0.02239141882120117, 0.020665579148968615, 0.01920970911909128, 0.018065522709525564, 0.01727314623766089, 0.016862376277123607, 0.01684350598760438, 0.017202431268335636, 0.017903202504238738, 0.01889651430034582, 0.02012940942462455, 0.021552355469332016, 0.023122677432288956, 0.02480523884337732, 0.026571670689075826, 0.02839910000283799, 0.03026888641788652, 0.03216557116266623, 0.034076083583073055, 0.03598918225533343, 0.037895086311539046, 0.03978525142088095, 0.04165225091468969, 0.04348973010788127, 0.045292408793279976, 0.047056112561521014, 0.04877781803038906, 0.050455700450170615, 0.052089174715907745, 0.05367892277072071, 0.05522690190256842, 0.05673632966762493, 0.05821164224269967, 0.059658424023973, 0.0610833073379715, 0.062493842278496775, 0.06389833796602176, 0.06530567794194259, 0.06672511391506264, 0.06816604358089011, 0.06963777960677088, 0.07114931796089223, 0.07270911440263636, 0.07432487801254632, 0.07600339004516511 ], [ 0.03349436064859751, 0.03085427168989782, 0.028354171058974278, 0.02600868869258045, 0.023836552708699027, 0.02186194567682411, 0.020115623711341648, 0.01863507421830186, 0.01746254064013644, 0.01663964942458866, 0.016198487441043744, 0.016151708128321132, 0.016486746570845173, 0.01716796826360237, 0.01814547331632489, 0.019365430748429738, 0.020777623158472158, 0.022339041745535394, 0.0240145268201998, 0.025775886697489113, 0.02760052225995779, 0.029470089302512336, 0.03136940227280036, 0.03328561659873663, 0.035207659060722964, 0.037125856364572274, 0.03903171287250414, 0.040917795866104285, 0.04277769511889208, 0.04460603096836026, 0.046398491042343226, 0.04815188041068484, 0.04986417345017369, 0.05153455838320204, 0.053163467495840534, 0.054752587637352516, 0.056304846898207556, 0.0578243744818102, 0.05931643183161778, 0.06078731413623694, 0.06224422247286846, 0.06369510809780962, 0.06514849174847408, 0.06661326224131826, 0.06809846004841585, 0.06961305279112893, 0.07116571055936068, 0.07276458950584473, 0.07441713216007739, 0.07612989229141227 ], [ 0.03312982844631844, 0.0304848395342814, 0.027978672295538305, 0.02562536418991242, 0.023442905450862896, 0.02145463569560208, 0.01969048693472755, 0.01818738876104802, 0.016987657229722005, 0.016133965025785575, 0.015660441678787766, 0.015582234200375215, 0.015888816733665746, 0.016545522564268295, 0.01750242099831729, 0.018705161006417663, 0.020102988459624944, 0.02165256551344615, 0.023318635899716604, 0.025073081793886412, 0.026893473327757603, 0.028761671365532662, 0.03066269145926456, 0.03258386223703847, 0.0345142427009803, 0.03644424472067399, 0.03836540908342538, 0.04027029179844994, 0.04215242632428069, 0.04400633514000397, 0.045827570263649364, 0.047612767098020425, 0.049359699637351775, 0.051067327862348806, 0.052735830305224586, 0.05436661645667072, 0.05596231505804624, 0.05752673549730458, 0.05906480060903368, 0.06058245025219149, 0.06208651616379855, 0.06358456979528629, 0.06508474612702322, 0.06659554778472439, 0.06812563506899162, 0.06968360864504243, 0.0712777924942549, 0.07291602517512855, 0.07460546737727583, 0.0763524331258178 ], [ 0.03286654152690693, 0.030218071415983688, 0.02770728938818477, 0.025347648139387117, 0.023156381176313953, 0.02115591690763077, 0.019375216344942218, 0.01785040181439685, 0.01662352145002276, 0.01573795220853502, 0.015229698278287468, 0.015116569731871234, 0.015390576495327353, 0.016018630915100102, 0.016951255073849942, 0.018133825774837426, 0.019515092333388495, 0.021051301410852544, 0.02270696048684441, 0.024453879950648086, 0.026269671786195305, 0.02813630195398789, 0.030038915333201476, 0.031964966880881344, 0.033903621044939394, 0.03584536321300846, 0.03778176961856143, 0.03970539097099363, 0.041609714394945964, 0.043489176248853297, 0.04533920475481947, 0.04715627630965062, 0.04893797315355546, 0.050683033012352385, 0.05239138361483633, 0.054064156789799894, 0.05570367830882693, 0.05731343088148618, 0.058897988831077455, 0.06046292406458637, 0.062014684059688234, 0.06356044375570796, 0.06510793445259708, 0.06666525405366186, 0.06824066416189176, 0.06984238055495992, 0.07147836430546621, 0.07315612116893694, 0.07488251674610347, 0.07666361429665286 ], [ 0.032697008714393176, 0.030045573957040966, 0.027530609108734654, 0.02516498408171691, 0.02296516268898529, 0.020952619953414228, 0.019155255047229557, 0.017608226139353787, 0.01635309720348825, 0.015433740509422209, 0.014887972911012336, 0.014736488184742626, 0.014974318362688288, 0.01557050090340357, 0.016476388333291705, 0.017637210288497844, 0.019001145874443123, 0.020523851403164827, 0.022169399240355728, 0.02390934829312173, 0.025721209447076284, 0.0275869505143714, 0.029491778167288825, 0.031423235288538715, 0.033370575568001624, 0.03532435764602835, 0.03727620365833251, 0.039218676062329996, 0.04114523613610251, 0.04305025570326652, 0.04492906017441592, 0.04677798611559562, 0.04859444054441543, 0.050376952269712005, 0.05212520803405714, 0.053840068154009546, 0.05552355791875097, 0.05717883232193365, 0.05881011286657011, 0.060422596281080064, 0.062022336076315764, 0.06361609899020362, 0.0652111995086045, 0.06681531678454268, 0.06843629933783965, 0.07008196381416137, 0.07175989471518508, 0.07347725228387315, 0.07524059556797046, 0.07705572705950234 ], [ 0.032614262814992, 0.02995957183523518, 0.027439946337312292, 0.02506767047501872, 0.022858430028066076, 0.020832726082789577, 0.01901735278043051, 0.017446428216154084, 0.016160928667700677, 0.015205138521639884, 0.01461872970840329, 0.014425551449674886, 0.014624130895574064, 0.015186106672161675, 0.016063931051070995, 0.017202691202304315, 0.018549815993832732, 0.02006011835919028, 0.021696988023123552, 0.023431527682834862, 0.025240995310190775, 0.02710725834874666, 0.02901552423867664, 0.03095339460471018, 0.03291020649095509, 0.03487660205888115, 0.036844270106103374, 0.03880581174771818, 0.040754692233996026, 0.042685249213227285, 0.04459273448883703, 0.04647337165885354, 0.04832441623812088, 0.05014420818795926, 0.0519322094055876, 0.05368902081356571, 0.05541637537214061, 0.057117104733191565, 0.058795078466280556, 0.060455115899195964, 0.06210287168835896, 0.06374469730228383, 0.06538748166690851, 0.0670384752567859, 0.06870510286403712, 0.0703947710596783, 0.07211467689200345, 0.07387162456228677, 0.07567185661962932, 0.07752090560110704 ], [ 0.03261212215125192, 0.029953213203708844, 0.02742770456847608, 0.02504729073621037, 0.022826877974863383, 0.020785992913577172, 0.01895032118291467, 0.017352929523711823, 0.01603419105108908, 0.015038815690009092, 0.014408450392979714, 0.014170404873543471, 0.014327156593482276, 0.014853360125770277, 0.015702745901603376, 0.016820163713599304, 0.018152026025364493, 0.019651989012196624, 0.021282477860361068, 0.023013919602756974, 0.024823165105896598, 0.026691883538803987, 0.028605229488498574, 0.030550842645374495, 0.03251814617317854, 0.034497884432575114, 0.03648184169124894, 0.03846269230888349, 0.040433942650374796, 0.04238993353480023, 0.044325879021025305, 0.04623792293703714, 0.04812319903407852, 0.04997988421198388, 0.051807237097943694, 0.05360561651784626, 0.05537647621012395, 0.05712233361586155, 0.058846711840723084, 0.060554055010558806, 0.06224961829654715, 0.06393933490421289, 0.06562966331032072, 0.067327418970564, 0.06903959556073909, 0.0707731814885455, 0.07253497784773268, 0.07433142411298585, 0.07616843764463807, 0.0780512724712008 ], [ 0.03268542446073541, 0.03002083834386157, 0.027487686383360833, 0.025097074471678162, 0.022863139167452348, 0.020804452754926026, 0.018945622060392683, 0.017318698481433102, 0.015963494074416367, 0.014925212445714452, 0.014247627704269138, 0.013961812770397854, 0.01407461969758975, 0.014564085810124807, 0.015385338489185933, 0.016482832009782847, 0.017801643039547416, 0.019293923362815126, 0.020920836099752475, 0.022651910494621112, 0.024463440332443066, 0.026336805433589537, 0.02825706106243267, 0.030211870857949186, 0.03219075267977909, 0.034184576986997096, 0.036185257183463104, 0.0381855801386139, 0.040179135083891294, 0.04216030794084549, 0.04412431544879318, 0.046067259380541466, 0.04798618590602826, 0.049879138995241545, 0.05174519981413665, 0.05358450650569311, 0.05539825069531594, 0.05718864863644675, 0.058958886226720846, 0.0607130382666398, 0.06245596336863445, 0.06419317689427621, 0.06593070521335737, 0.06767492542479166, 0.06943239541677136, 0.07120967971678627, 0.07301317692950754, 0.07484895462618048, 0.07672259729541413, 0.07863907238266933 ], [ 0.03283023087314628, 0.030158210357286726, 0.027615354322110538, 0.02521219259761863, 0.02296211844884511, 0.020882792536276312, 0.018997801095899873, 0.01733824797830579, 0.015943453659418502, 0.01485919240431463, 0.014131493577214181, 0.013795441376499181, 0.013862627456927012, 0.014314799120653638, 0.015108578675058416, 0.016187853953182906, 0.017496039590763224, 0.01898343653517775, 0.0206096564180265, 0.022343119793627336, 0.024159424198306217, 0.02603957752135692, 0.027968494996656518, 0.02993385357463213, 0.03192527634074083, 0.03393378490809734, 0.035951456398830385, 0.03797123048915199, 0.03998682236008609, 0.041992706656914666, 0.04398414525430453, 0.045957237898131616, 0.04790897988699362, 0.049837315069375734, 0.0517411757308603, 0.053620503572526464, 0.05547624806928914, 0.05731034016943011, 0.05912564066535781, 0.06092586372423475, 0.06271547708609905, 0.06449958136088751, 0.06628377170146531, 0.06807398588868711, 0.06987634350650386, 0.07169698136550513, 0.07354189060202264, 0.07541676089265752, 0.07732683695200951, 0.07927679192044261 ], [ 0.033043994203152835, 0.030362702637800023, 0.027808038124034148, 0.02538998456194895, 0.023121240200944696, 0.02101862204297889, 0.019104779759476154, 0.017409957416964512, 0.015973055327129435, 0.014840461349623362, 0.014060504092416118, 0.013672405731449297, 0.013692754525543294, 0.014107290368366327, 0.014874248533724998, 0.015936830480835853, 0.017236516960068355, 0.01872145865144919, 0.02034946320876355, 0.022087658081939365, 0.02391082224071604, 0.02579951796449047, 0.027738482812917655, 0.02971539568791073, 0.0317199926308214, 0.03374346785105911, 0.03577809318002704, 0.03781699831348492, 0.03985406511454321, 0.04188389901192539, 0.043901848651835836, 0.045904051609105524, 0.04788748938243359, 0.04985003929394198, 0.05179051444755942, 0.053708685715216815, 0.05560528194828548, 0.05748196638051792, 0.05934128861284968, 0.06118661274746275, 0.06302202324290562, 0.06485221094315045, 0.06668234251371125, 0.06851791719618981, 0.0703646153471095, 0.07222814362346333, 0.07411408187670288, 0.07602773678460978, 0.07797400696606398, 0.0799572637868713 ], [ 0.033325681582867125, 0.030633432409210307, 0.028065077370739367, 0.02563010720904089, 0.023340599703007964, 0.021212624032801313, 0.01926800216189455, 0.017536218677839464, 0.016055808955024595, 0.014873748606076811, 0.014040568341183517, 0.013599557433342343, 0.013572379247643745, 0.013948979203161443, 0.014689380855913144, 0.015736105682288695, 0.01702855947274683, 0.018512546576308426, 0.020143888456846483, 0.02188827731388739, 0.023719572868691027, 0.02561782578800563, 0.02756755726260879, 0.02955643081763481, 0.0315742949151313, 0.033612528942165806, 0.035663621999470194, 0.037720923564632476, 0.03977851667727089, 0.04183117461525874, 0.04387437059961481, 0.0459043170796508, 0.04791801688183206, 0.049913313169286246, 0.05188892891715518, 0.053844489603553015, 0.05578052518062731, 0.05769844925334907, 0.059600514873278936, 0.06148974755136277, 0.06336985708674685, 0.0652451306511542, 0.06712031028942472, 0.06900045860173008, 0.0708908168490724, 0.07279666004590778, 0.07472315374296389, 0.0766752171341632, 0.07865739683008621, 0.0806737551302248 ], [ 0.03367583825686966, 0.030971325160689428, 0.02838788244311412, 0.025934586461858995, 0.023622998163498738, 0.021468564344588895, 0.019492412706969182, 0.01772337745018296, 0.01619965769502418, 0.014968698985159401, 0.014082949729960345, 0.0135894225564611, 0.0135146699755792, 0.01385293842728303, 0.014566297990525468, 0.01559680291984383, 0.016881861283054394, 0.01836490296863054, 0.019999687766642422, 0.02175038829780555, 0.023589869305462884, 0.02549760880036665, 0.027457866675063204, 0.029458261916870464, 0.03148874085786664, 0.03354086645342017, 0.03560735438208935, 0.037681791904714726, 0.03975848766365383, 0.04183241146864272, 0.04389919209724463, 0.04595514847989505, 0.047997335647504226, 0.05002359172035774, 0.05203257617683218, 0.054023792799739415, 0.05599759319000159, 0.057955158690492774, 0.05989846009679419, 0.06183019574969194, 0.06375370958902664, 0.06567289155789799, 0.06759206341487985, 0.06951585355204742, 0.07144906482377937, 0.0733965396493056, 0.07536302674060624, 0.07735305370915231, 0.07937080951198087, 0.08142004021598098 ], [ 0.03409657858026487, 0.031379093328678234, 0.02877989416428642, 0.026307748884421087, 0.023973834660901958, 0.021793130419334113, 0.019786226191820525, 0.017981421173132613, 0.016416575908165018, 0.015139385777100181, 0.01420371890144168, 0.013659638254935366, 0.01353805234191829, 0.01383742160839888, 0.014522206974936653, 0.015534482695174835, 0.016810040520284997, 0.018290141695480513, 0.019926552769707995, 0.021681915609816912, 0.023528052088520088, 0.025443808576454924, 0.02741312748327234, 0.02942353682429002, 0.03146504704456234, 0.0335293841296993, 0.03560948213048783, 0.03769916851141736, 0.039792988455871224, 0.041886125548366016, 0.0439743855573533, 0.046054217638845346, 0.04812275350600551, 0.05017785020235963, 0.052218126244776696, 0.05424298420412365, 0.05625261539732994, 0.05824798440052441, 0.06023079267896088, 0.06220342186993264, 0.06416885823507906, 0.0661306005807277, 0.06809255456861908, 0.07005891682404324, 0.0720340525965705, 0.07402237093274017, 0.07602820136773634, 0.0780556760239028, 0.08010862071472712, 0.08219045820189778 ], [ 0.03459149268184969, 0.031861115222112234, 0.029246425281072352, 0.02675601294735262, 0.02440083077230301, 0.022195568798080045, 0.020160453693619414, 0.018323366250001204, 0.016721792470646087, 0.015403356703040737, 0.014422637054461677, 0.01383173088536214, 0.013664975455022429, 0.013924711473775248, 0.014578190534864293, 0.015568296421367207, 0.016829949532652506, 0.018302736631510892, 0.019936677650277467, 0.021692961942770476, 0.023542353641211614, 0.025463010264075416, 0.027438486771143335, 0.029456153273618543, 0.031506028071762504, 0.033579957563391626, 0.035671065495509253, 0.03777340361723054, 0.039881748537802256, 0.04199150104451759, 0.044098653598790456, 0.04619979946918524, 0.04829216332110808, 0.050373638308105526, 0.05244281896452636, 0.054499022615596554, 0.05654229472277689, 0.05857339569184044, 0.060593768305407934, 0.06260548620520871, 0.06461118482880274, 0.06661397696656036, 0.06861735569186102, 0.07062508785601822, 0.07264110163924008, 0.07466937180968285, 0.0767138063590781, 0.07877813805106673, 0.08086582413814926, 0.08297995708482994 ], [ 0.03516546295025845, 0.03242320717192943, 0.029794375497852892, 0.02728753037035148, 0.02491357686711836, 0.02268710913654782, 0.020628170291224025, 0.01876432886842508, 0.017132621112819782, 0.01578018881826485, 0.01476143341529198, 0.014129178521712983, 0.013919896007589968, 0.014139193932413268, 0.014757502040418927, 0.015719560589968654, 0.01696052611452659, 0.01841911673738451, 0.020044056128817378, 0.02179526737522519, 0.023642486281490398, 0.0255631322216527, 0.02754029203651854, 0.029561091824922555, 0.031615479277478924, 0.03369535616334043, 0.03579398602016225, 0.037905609586877706, 0.04002521251674058, 0.04214840110136835, 0.04427135111774792, 0.04639080264217761, 0.04850408006872344, 0.05060912185518711, 0.05270450884993551, 0.054789483549459894, 0.056863955412701506, 0.05892848952904152, 0.060984277614099254, 0.06303309159372691, 0.06507722101871151, 0.06711939629890033, 0.06916270030433194, 0.07121047128334856, 0.07326620030967819, 0.07533342659846999, 0.07741563402608878, 0.07951615205081639, 0.08163806396560816, 0.08378412503058423 ], [ 0.0358243928527209, 0.033072292465420414, 0.030431825259974673, 0.027911685296111526, 0.025522911862978268, 0.02328019301115457, 0.021203553342475263, 0.01932032475815118, 0.017666968219171193, 0.0162896566425402, 0.015241617632160413, 0.014574922802687074, 0.014326641826714902, 0.01450478922531406, 0.015083256653006812, 0.01600981085852607, 0.017221223669342554, 0.01865643257654906, 0.020263526561355386, 0.022001476568184963, 0.023839083534044108, 0.025753003053227048, 0.02772577395776429, 0.029744181094275162, 0.031798006362918234, 0.03387912307718742, 0.03598086572184292, 0.03809761066984024, 0.04022451357965534, 0.04235735953209022, 0.04449249092906287, 0.04662678569961777, 0.048757664655599386, 0.05088311209710957, 0.05300169811356973, 0.05511259456175723, 0.05721557952648512, 0.059311027285878316, 0.061399882515864784, 0.06348361877560407, 0.06556418230301604, 0.0676439228867439, 0.06972551411980148, 0.07181186571615236, 0.07390603080645568, 0.07601111123498162, 0.07813016386255771, 0.08026611074517491, 0.08242165581134327, 0.08459921031485644 ], [ 0.036574860399338896, 0.033815983210036135, 0.03116752976429894, 0.028638480363231723, 0.026240176596151923, 0.023987564273103307, 0.02190077339835769, 0.020006918659359958, 0.018341696432279245, 0.016949771558193574, 0.015882180318622742, 0.015188768530293726, 0.014905629670523465, 0.015042181137682907, 0.01557587435767977, 0.016458594408450378, 0.01763019655705899, 0.019031111306399347, 0.020609642637126925, 0.022324265687692982, 0.024143029859377572, 0.02604185014797833, 0.028002658857547644, 0.03001180688008412, 0.032058809945899124, 0.03413541859830157, 0.03623495636806867, 0.03835186792996184, 0.04048142601079575, 0.04261955453556445, 0.04476273360907655, 0.04690795898676642, 0.04905273472770703, 0.05119508284612364, 0.05333355806590457, 0.05546725930792645, 0.05759583237961305, 0.059719460577845614, 0.06183884165335061, 0.06395515090874462, 0.06606999119629203, 0.06818533131453622, 0.07030343482967852, 0.07242678170677984, 0.07455798535419782, 0.0766997077786479, 0.07885457552856465, 0.08102509897823378, 0.08321359728319723, 0.08542213103034751 ], [ 0.03742371819642185, 0.03466210361622351, 0.03201035058869291, 0.029477859405940884, 0.027076407982725564, 0.024821313272394653, 0.022732866743021624, 0.020837905857091426, 0.019171102255005543, 0.01777505240871179, 0.016697663706549612, 0.01598527133957737, 0.015671609076522184, 0.015766503062523095, 0.016250839904926966, 0.01708143387143458, 0.018202548061818848, 0.01955740878375566, 0.021095508564869327, 0.022775421198711555, 0.02456474021733282, 0.026438740953106228, 0.028378738709527156, 0.030370584051172652, 0.03240343781378436, 0.03446883564824772, 0.036560004560906426, 0.03867138308715076, 0.0407982991497602, 0.04293676587771575, 0.0450833623970524, 0.0472351728790688, 0.049389762714202076, 0.05154517553801, 0.053699938978070794, 0.05585307044501824, 0.05800407710512385, 0.06015294641267838, 0.06230012532641194, 0.06444648766787606, 0.06659329007898422, 0.06874211776841828, 0.07089482175778573, 0.07305344968974335, 0.07522017247189904, 0.07739720912246201, 0.07958675217035929, 0.08179089585471876, 0.08401156917612955, 0.08625047558668218 ], [ 0.03837766969884115, 0.03561819276004983, 0.032968674219257116, 0.030439031107882156, 0.02804155866420846, 0.025791987310961675, 0.023710739258501406, 0.021824224778798897, 0.02016576906249481, 0.01877536302924916, 0.017697020314456618, 0.016972613932043114, 0.016632499948663098, 0.01668607305429042, 0.01711733321214098, 0.017888425717237193, 0.01894899437113143, 0.02024621224598154, 0.021731753989010064, 0.023364989519014355, 0.025113469717450255, 0.026952031050118393, 0.028861435140453966, 0.0308270157632254, 0.032837521380775586, 0.034884198343111045, 0.036960099879152435, 0.03905958594918032, 0.041177975717605196, 0.0433113172858048, 0.045456244124003155, 0.047609892772371515, 0.04976986127420605, 0.05193419224132452, 0.05410136834146158, 0.0562703113070759, 0.058440378303021956, 0.0606113516965088, 0.06278342000668727, 0.06495714914305037, 0.06713344404215828, 0.06931350154558752, 0.07149875588267254, 0.07369081847293363, 0.07589141397694962, 0.07810231462411515, 0.08032527484742748, 0.08256196817187564, 0.08481392814469084, 0.08708249487410084 ], [ 0.039442855365020756, 0.03669102941086735, 0.034049871366861766, 0.031529861805595555, 0.029143828143883863, 0.02690787475886714, 0.024842433122119246, 0.02297325578472218, 0.021331967840862682, 0.019955492670664376, 0.0188834247990698, 0.01815262600102075, 0.0177894957215805, 0.017802399091352866, 0.018178002145811462, 0.01888376091047245, 0.019875207415343463, 0.02110430836726837, 0.02252581162469006, 0.02410061566563119, 0.02579673670385653, 0.02758887693470329, 0.029457397265669306, 0.031387167207655206, 0.0333665147728285, 0.03538635598102826, 0.037439514205486454, 0.039520210657974356, 0.04162369774616247, 0.04374600594208877, 0.04588377715698264, 0.04803416124312926, 0.050194756194115016, 0.05236357645583545, 0.05453903727423507, 0.05671994608327057, 0.058905494536784564, 0.061095246916718256, 0.06328912234414431, 0.06548736953297875, 0.06769053381978705, 0.06989941693560282, 0.07211503050924375, 0.0743385446489372, 0.07657123317324749, 0.07881441717773785, 0.081069408648317, 0.08333745577900574, 0.085619691532083, 0.08791708680250783 ], [ 0.04062448191468693, 0.03788621962783123, 0.03525984655020138, 0.03275639666814219, 0.03038917440388912, 0.028174539341089034, 0.026132733640857397, 0.02428857001596843, 0.022671631894155782, 0.021315436038622425, 0.020254899424880277, 0.019521714472822554, 0.019138155676339117, 0.019111218890700193, 0.01942974814533012, 0.02006615296033244, 0.02098190005777977, 0.02213421341129391, 0.023481595927240154, 0.024987155595686983, 0.026619926144716623, 0.028354863668422055, 0.030172169803700105, 0.032056379775709395, 0.03399545457834675, 0.035979984784993486, 0.03800254048334786, 0.04005716609637111, 0.0421390034251338, 0.04424402098773918, 0.046368827317972705, 0.04851054771030531, 0.05066674667120841, 0.052835381404316095, 0.05501477466290643, 0.05720359805129949, 0.05940085924847434, 0.06160588862830306, 0.0638183223704772, 0.06603808042927096, 0.06826533870194693, 0.0705004954655115, 0.07274413267768917, 0.07499697310573501, 0.07725983448749384, 0.07953358206760154, 0.08181908090559808, 0.08411714933547963, 0.08642851487844196, 0.08875377378163263 ], [ 0.041926522680012734, 0.03920787961565685, 0.03660271452654967, 0.03412254831394624, 0.03178104369119436, 0.02959463320983292, 0.027583122137080897, 0.025770090180453623, 0.02418279486306454, 0.02285115991437391, 0.021805419039085432, 0.02107225671735918, 0.02066997067878746, 0.02060406775508172, 0.020865109317093435, 0.021429895274464476, 0.022265507775057113, 0.023334515026319568, 0.02459958674151282, 0.026026590204796373, 0.027586107557113715, 0.029253779377072416, 0.031009958030297432, 0.032839046284427124, 0.03472875561397372, 0.03666940841314393, 0.03865333853938124, 0.040674405547881924, 0.04272761809125011, 0.044808852919579485, 0.04691465271961686, 0.049042085901653855, 0.05118865286919232, 0.053352225449063685, 0.05553100853365853, 0.05772351530763353, 0.05992854953944331, 0.06214519023574478, 0.06437277546229732, 0.06661088334112682, 0.06885930917341321, 0.07111803835107611, 0.07338721524884895, 0.0756671086690598, 0.07795807467359885, 0.0802605178046036, 0.08257485178421757, 0.08490146080699902, 0.0872406625055041, 0.08959267358875943 ], [ 0.04335150804499416, 0.040658433406797194, 0.038080621647258076, 0.035629965654563736, 0.033320319504800265, 0.031167967873943766, 0.029192017387945503, 0.027414551005023276, 0.02586030684319767, 0.024555586480081062, 0.023526141239686365, 0.022794029912151494, 0.022373923818790435, 0.022269878054579854, 0.022473777564763826, 0.02296616928843076, 0.023719199936594215, 0.02470056405081028, 0.025877235480249394, 0.027218208754884243, 0.028696062724616958, 0.030287544588158903, 0.03197350192784002, 0.033738459770486576, 0.03557005354695252, 0.03745844585861917, 0.03939579441958448, 0.041375800175664584, 0.04339334240450188, 0.04544419575131094, 0.047524818518155675, 0.04963219950147617, 0.05176375069599903, 0.053917234308088376, 0.056090714167267304, 0.058282523432033044, 0.06049124223874717, 0.06271568052037536, 0.06495486257121207, 0.06720801104350543, 0.06947452894747215, 0.07175397891587129, 0.07404605952050539, 0.07635057882145686, 0.07866742561638615, 0.08099653905708855, 0.0833378774284457, 0.08569138695178818, 0.08805697148839617, 0.0904344639863508 ], [ 0.04490041393088078, 0.04223853004888125, 0.039693710412840436, 0.03727807006504138, 0.035005459889154586, 0.03289178523417316, 0.030955211151413472, 0.02921612008228208, 0.027696642517144873, 0.02641956774978919, 0.025406510500733327, 0.02467540980752002, 0.024237761316930118, 0.024096300149404865, 0.02424392124381261, 0.024664286771088815, 0.02533395238499282, 0.02622531716269673, 0.027309563286211168, 0.02855898594564872, 0.029948484985753688, 0.03145628108482931, 0.03306405671197054, 0.034756738993431575, 0.03652209971625894, 0.03835029231147556, 0.04023339813045169, 0.04216502020503275, 0.04413994056435343, 0.04615384387481172, 0.04820310276651675, 0.050284616580092485, 0.05239569397562423, 0.05453396994515334, 0.056697348640157845, 0.05888396466008912, 0.061092156787309705, 0.06332044944196116, 0.06556753828326187, 0.06783227736746691, 0.07011366608412058, 0.07241083474569451, 0.07472302822359385, 0.07704958742825427, 0.07938992874328149, 0.08174352175875337, 0.0841098658186936, 0.08648846601029153, 0.08887880928388814, 0.0912803414079795 ], [ 0.046572645303577055, 0.04394707115339716, 0.041440208683332466, 0.039064226652354726, 0.03683277209845772, 0.034761154272134505, 0.03286639719701028, 0.03116705488182958, 0.029682663397966817, 0.02843271591403297, 0.02743511942959351, 0.02670424439053863, 0.02624888719938097, 0.02607063987726706, 0.026163170201498907, 0.02651268823637776, 0.027099493164140457, 0.027900161076348604, 0.028889818605947745, 0.030044060382136646, 0.03134029238877114, 0.032758487967546726, 0.03428146413629148, 0.0358948250472134, 0.037586707956910506, 0.039347435312347134, 0.041169142967691724, 0.04304542695521276, 0.04497103126039928, 0.046941585722599995, 0.0489533948780969, 0.05100327379714527, 0.053088424585702704, 0.05520634638543402, 0.05735477181505139, 0.059531623436849375, 0.06173498472361955, 0.06396308096230427, 0.06621426645444722, 0.06848701520490873, 0.07077991300847286, 0.07309164944928485, 0.07542100883064265, 0.07776685946643151, 0.08012814110316252, 0.08250385051343552, 0.0848930255147632, 0.08729472782701325, 0.08970802529062664, 0.09213197402957538 ], [ 0.04836610262355947, 0.04578132932135917, 0.04331661406802947, 0.04098400843990901, 0.03879676762468858, 0.03676942134181825, 0.034917710222411615, 0.03325830946663614, 0.03180825861691045, 0.030584039992313714, 0.02960031321274552, 0.028868422212134797, 0.028394919596015207, 0.02818044298036097, 0.028219260355050492, 0.02849964863368185, 0.02900503372604398, 0.029715612703802397, 0.03061009256196145, 0.03166723078886021, 0.032866993701826865, 0.03419128484098864, 0.03562429088311941, 0.03715253685058292, 0.03876474850539854, 0.040451605521366986, 0.04220544794257822, 0.04401997813320569, 0.04588998393300808, 0.047811096585000226, 0.04977958866740002, 0.05179221191896051, 0.05384607170414739, 0.05593853326347329, 0.058067154321175964, 0.06022963869291816, 0.06242380597418163, 0.06464757300625791, 0.06689894349017635, 0.06917600277859765, 0.07147691548582967, 0.07379992410275509, 0.07614334728488883, 0.07850557690158298, 0.08088507329679659, 0.0832803585205841, 0.08569000754719248, 0.08811263770141746, 0.09054689667026558, 0.09299144958328501 ], [ 0.05027731322206803, 0.04773713232000937, 0.04531793985920638, 0.043031510536799454, 0.04089054599892213, 0.03890865692006956, 0.0371002184282929, 0.0354800453753515, 0.03406284056994016, 0.032862395777179476, 0.03189057758841929, 0.031156204191666415, 0.030663994466956588, 0.030413812546905627, 0.030400404571328716, 0.03061372154988563, 0.0310397762314586, 0.03166185341807418, 0.03246183348395917, 0.03342140981522078, 0.034523055622752506, 0.03575068311626559, 0.037090007639927515, 0.038528669568265554, 0.040056180726378454, 0.041663758984144095, 0.04334410332042348, 0.04509114810273644, 0.046899822809262026, 0.04876583322209238, 0.050685472461615255, 0.0526554648454558, 0.05467284201260256, 0.056734848613075706, 0.05883887373527191, 0.060982403807375844, 0.06316299271905475, 0.06537824518511234, 0.06762580978970056, 0.06990337862869334, 0.07220869096107653, 0.07453953876180279, 0.0768937725247333, 0.07926930608795728, 0.08166411964028279, 0.08407626041284608, 0.08650384085975435, 0.0889450343828422, 0.09139806885569413, 0.09386121835017643 ], [ 0.05230160710181991, 0.04980908686687225, 0.047437990557940485, 0.04519967736087935, 0.043106167869194724, 0.04117006123002205, 0.03940434056853425, 0.037822033340193156, 0.036435704198972164, 0.03525678265403894, 0.03429476697608039, 0.03355639360121239, 0.033044903104829895, 0.03275954947228211, 0.03269547263586619, 0.03284398487885795, 0.03319323071209323, 0.03372910070026091, 0.034436240245696526, 0.03529900227400136, 0.03630223533434147, 0.037431853670812754, 0.03867518437170524, 0.040021119230939164, 0.041460114679593624, 0.04298408608967869, 0.04458623805864697, 0.04626086417864253, 0.048003141026935044, 0.04980893315302613, 0.05167461929262588, 0.0535969450244684, 0.05557290347140644, 0.05759964320138523, 0.05967440095314404, 0.06179445596152132, 0.06395710228965004, 0.06615963553452185, 0.06839935044259933, 0.07067354627261126, 0.07297953711849137, 0.07531466482063019, 0.07767631252376105, 0.0800619173671129, 0.08246898120287985, 0.0848950786204894, 0.08733786189654513, 0.0897950627853746, 0.09226449130745203, 0.09474403187978131 ], [ 0.05443331720531159, 0.05199081845581873, 0.04966964058977215, 0.04748061544691915, 0.04543499183563036, 0.04354430937682764, 0.041820179065687926, 0.040273952496848384, 0.03891627355847114, 0.03775652686957663, 0.036802224930761844, 0.03605840535041205, 0.035527130906248386, 0.035207187549710715, 0.035094051807800064, 0.03518015196311311, 0.03545539016235274, 0.03590784387871449, 0.03652453995008934, 0.03729219728639313, 0.03819785899343235, 0.039229369121360484, 0.04037568220511176, 0.04162701839356757, 0.04297489134143598, 0.04441204153317135, 0.04593230702203303, 0.0475304593711148, 0.049202026913955685, 0.050943121620720844, 0.05275028058350787, 0.054620328740431226, 0.05655026601638089, 0.058537179507844504, 0.060578179555092676, 0.06267035738285884, 0.0648107613112896, 0.06699638822153192, 0.06922418690695421, 0.0714910700758701, 0.0737939320376009, 0.07612966945730598, 0.0784952029722516, 0.08088749789549356, 0.08330358266856859, 0.08574056414302507, 0.08819563915471762, 0.09066610219221674, 0.09314934924270206, 0.09564287812097498 ], [ 0.056665986889936446, 0.054275208385052856, 0.05200509705899273, 0.04986587439612041, 0.04786796202678959, 0.04602183046883918, 0.044337773818606006, 0.04282560318096142, 0.04149426251329526, 0.04035138630313576, 0.039402837070833516, 0.038652277725608704, 0.03810084324804646, 0.03774697231733629, 0.037586439921148095, 0.03761259978648274, 0.037816809064957116, 0.038188977632437573, 0.03871816872561593, 0.03939317890072221, 0.04020304014956598, 0.04113740885508038, 0.04218682846007155, 0.043342870714108264, 0.04459817227395235, 0.04594638944809918, 0.04738209527078908, 0.04890064141950188, 0.05049800412206433, 0.05217062915164329, 0.05391528694595517, 0.055728945197026786, 0.057608663127179674, 0.05955150915347127, 0.06155450172655942, 0.06361457174931345, 0.06572854405683327, 0.06789313489221548, 0.0701049620666984, 0.07236056448332011, 0.07465642787371347, 0.07698901389982225, 0.0793547901640823, 0.08175025911584118, 0.08417198430603526, 0.08661661289862721, 0.08908089377321447, 0.09156169093167146, 0.0940559922410817, 0.09656091379972395 ], [ 0.05899257118885231, 0.05665461462761695, 0.05443613459999712, 0.05234668721391197, 0.05039584282138325, 0.04859302401828752, 0.04694728779443398, 0.04546705178014344, 0.04415977359985937, 0.04303160375251275, 0.042087044235642135, 0.04132865419679571, 0.04075684665257034, 0.04036981405062976, 0.04016360480116266, 0.04013235066269442, 0.040268621403525925, 0.04056386451323596, 0.04100887828978004, 0.041594267600793516, 0.04231084110628971, 0.0431499229830877, 0.04410356727164304, 0.045164675951105675, 0.04632703125315695, 0.04758525830237408, 0.0489347364437845, 0.05037147742742448, 0.051891986820077875, 0.05349312232406989, 0.05517195963986721, 0.056925673482262684, 0.058751438581007814, 0.060646353094803436, 0.06260738489879826, 0.06463133967781667, 0.06671484864715682, 0.06885437298983246, 0.07104622169425188, 0.07328657934714544, 0.07557154053022441, 0.07789714773382453, 0.08025943008765156, 0.08265444067168434, 0.08507829066826124, 0.0875271791140612, 0.08999741747952102, 0.09248544872201063, 0.09498786081413774, 0.09750139503260473 ], [ 0.061405622541221165, 0.05912106838042488, 0.05695429648074424, 0.054914167792375346, 0.05300940321347108, 0.051248421501102565, 0.049639137458018456, 0.04818872467199064, 0.04690335412758202, 0.045787927839762446, 0.044845833673724654, 0.0440787516355085, 0.04348654115210433, 0.04306723210232148, 0.04281713008879391, 0.042731030904112934, 0.04280252379636188, 0.04302435150054326, 0.04338878944781684, 0.04388800763511663, 0.044514385133570956, 0.04526075690291367, 0.04612058308046835, 0.04708804036030385, 0.04815804239264967, 0.049326200966748245, 0.05058874224976124, 0.05194239296087581, 0.05338425056328628, 0.054911649830666175, 0.05652203588816029, 0.058212851354840556, 0.05998144275879264, 0.061824989122394286, 0.06374045363136084, 0.06572455766817527, 0.0677737752334145, 0.06988434489418958, 0.07205229586336423, 0.07427348458770183, 0.07654363825894613, 0.07885840190470947, 0.08121338611021342, 0.08360421291294182, 0.08602655795069639, 0.08847618748666795, 0.09094898944897338, 0.09344099808173688, 0.09594841219437107, 0.09846760730751408 ], [ 0.06389745542632082, 0.06166644243407605, 0.05955106065632375, 0.0575594675527351, 0.055699556610942, 0.053978802563546535, 0.05240408047877263, 0.05098146530181715, 0.049716023593212894, 0.04861161428055765, 0.04767071901821543, 0.046894323927426575, 0.046281872043315665, 0.045831299437335556, 0.045539158451593315, 0.04540082049087233, 0.045410740613870786, 0.04556275883572431, 0.04585040989331985, 0.04626721442203513, 0.046806929238895026, 0.04746374132978922, 0.048232397711823416, 0.049108270379057996, 0.05008736127764942, 0.05116625636455304, 0.052342040272812286, 0.05361218411967618, 0.05497441882183427, 0.05642660521671747, 0.05796661060857833, 0.05959219931268359, 0.06130094257613255, 0.06309015108822552, 0.06495683129821972, 0.06689766503604878, 0.06890901054775338, 0.07098692204200058, 0.07312718419706675, 0.07532535777320408, 0.07757683246892881, 0.0798768833945476, 0.08222072794936813, 0.08460358041770619, 0.08702070218495986, 0.0894674460687088, 0.0919392938217831, 0.09443188636604595, 0.09694104673990377, 0.09946279608105336 ], [ 0.06646028739587458, 0.06428259070052962, 0.06221797246905649, 0.060273895633264934, 0.05845746313647475, 0.0567752751820304, 0.05523327137252862, 0.05383656524475599, 0.05258928229784096, 0.051494415660344614, 0.050553715213970875, 0.049767625511349445, 0.04913528473401189, 0.04865459132878515, 0.04832233758054446, 0.04813440149826163, 0.048085981484832604, 0.04817185359163217, 0.04838662943640271, 0.048724994110725235, 0.04918190705270202, 0.04975275400580431, 0.05043344386617206, 0.05122044963800424, 0.05211079732835494, 0.05310201013445097, 0.0541920176262294, 0.05537904085317888, 0.05666146453242851, 0.058037706866995976, 0.05950609628129482, 0.06106476263518564, 0.06271154847832028, 0.06444394381485251, 0.06625904582807389, 0.06815354320063449, 0.0701237231586113, 0.0721654982278068, 0.07427444893977256, 0.0764458783503559, 0.07867487419412303, 0.08095637473370489, 0.0832852348040954, 0.08565628912606835, 0.08806441060337829, 0.09050456196786744, 0.09297183975035724, 0.09546151010142521, 0.0979690364462088, 0.10049009932268574 ], [ 0.06908635626080402, 0.06696146035865536, 0.06494674739832641, 0.0630490079977457, 0.061274601518667864, 0.05962932800619793, 0.05811829364053767, 0.056745777263805405, 0.055515107892616336, 0.05442856475467716, 0.05348731174505624, 0.052691376857892935, 0.05203968396585636, 0.05153013954217459, 0.05115977119979425, 0.05092490918945101, 0.050821397232250716, 0.05084481604286502, 0.050990702019344955, 0.05125474479086651, 0.05163295021808121, 0.05212175942458674, 0.052718118862589904, 0.05341950073602068, 0.054223876927416266, 0.05512965266267688, 0.0561355683847508, 0.057240579665236185, 0.05844372549049555, 0.0597439949871716, 0.061140201706842846, 0.06263087310851269, 0.06421416102400762, 0.06588777684360818, 0.06764895309639768, 0.06949443118426626, 0.07142047339171248, 0.07342289602484231, 0.07549711967590692, 0.07763823216384795, 0.07984105962959909, 0.08210024150415027, 0.0844103055397737, 0.08676573971891084, 0.08916105855449226, 0.0915908620048685, 0.09404988589548237, 0.09653304333286741, 0.09903545709407605, 0.10155248336802973 ], [ 0.07176801469975835, 0.06969517930741642, 0.06772934801380466, 0.06587667093578285, 0.06414281700168271, 0.062532861722306, 0.061051175004033294, 0.05970131611536013, 0.058485944329738256, 0.057406754434388224, 0.0564644458735082, 0.055658732575067565, 0.05498839750977255, 0.0544513920377581, 0.05404497564796651, 0.05376588746120555, 0.053610537510101114, 0.053575203818303906, 0.05365622089970045, 0.05385014642177904, 0.05415389513413878, 0.05456483233730329, 0.0550808227225191, 0.055700233969430565, 0.056421897754594066, 0.05724503359845532, 0.05816914313309709, 0.059193883831537286, 0.060318931966183806, 0.06154384456223715, 0.06286792942637845, 0.06429013105348248, 0.06580893848020339, 0.06742231913582458, 0.06912768062676046, 0.07092186036733207, 0.07280114119582239, 0.07476128970874979, 0.07679761307376054, 0.07890502955569281, 0.08107814787918094, 0.08331135078885274, 0.08559887866936931, 0.08793490976092115, 0.09031363426490581, 0.09272932040583214, 0.09517637124207548, 0.09764937166129489, 0.10014312553367838, 0.10265268341946188 ], [ 0.07449780444457857, 0.07247612217831353, 0.0705580394005181, 0.06874910401473004, 0.06705435075926786, 0.06547820488911861, 0.06402439068068014, 0.06269585115646244, 0.06149468616068922, 0.060422115960199606, 0.05947847669639224, 0.058663252193776536, 0.057975143930789244, 0.05741217767502696, 0.05697184180129976, 0.05665124913500898, 0.05644731174497002, 0.056356916765217306, 0.056377091183379496, 0.05650514453280088, 0.05673878035910879, 0.05707616991239778, 0.057515984442390096, 0.05805738547586922, 0.058699975313846284, 0.05944371252977881, 0.0602887993467775, 0.061235549316089946, 0.06228424463086581, 0.06343499264011603, 0.06468759067296538, 0.06604140719236792, 0.06749528567874691, 0.06904747565747024, 0.07069559312464702, 0.07243661049693835, 0.07426687429932138, 0.07618214725462788, 0.07817767033946466, 0.08024823975195287, 0.08238829357238475, 0.08459200312197541, 0.08685336454544801, 0.0891662868594765, 0.09152467352435756, 0.09392249542828868, 0.09635385395846333, 0.09881303352758218, 0.10129454350377369, 0.10379314994749923 ], [ 0.07726851261519903, 0.07529695826629149, 0.07342542706164258, 0.07165890689471802, 0.07000185531006442, 0.06845811847574433, 0.06703085834439501, 0.06572249358217146, 0.06453466010615848, 0.06346819672917747, 0.06252316035884369, 0.06169887342890316, 0.06099400387518626, 0.06040667524761818, 0.059934601802201726, 0.05957524099670014, 0.05932595403169358, 0.059184164143466195, 0.05914750234485375, 0.059213931175192504, 0.059381838615089666, 0.05965009644852235, 0.06001807980475687, 0.06048564719297506, 0.06105308288619484, 0.0617210058729105, 0.06249025164438366, 0.06336173470029544, 0.0643363007251558, 0.06541457782536018, 0.06659683597596663, 0.06788286291892962, 0.06927186326016292, 0.07076238557592596, 0.07235228015363526, 0.07403868777495351, 0.07581805790798053, 0.07768619298133103, 0.07963831417899965, 0.08166914346828409, 0.08377299633858903, 0.08594387992215449, 0.08817559169229368, 0.09046181468176344, 0.09279620602695275, 0.09517247653116843, 0.09758445978112176, 0.10002617009633061, 0.10249184921400467, 0.1049760021019952 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
l2norm: 1.27258 (SEM: 0)
x1: 0.402881
x2: 0.519896
x3: 0.808794
x4: 0.263642
x5: 0.483005
x6: 0.479485", "Arm 10_0
l2norm: 1.85049 (SEM: 0)
x1: 0.710347
x2: 0.827351
x3: 0.717838
x4: 0.86011
x5: 0.805492
x6: 0.5756", "Arm 11_0
l2norm: 1.33825 (SEM: 0)
x1: 0.17197
x2: 0.753671
x3: 0.547094
x4: 0.882289
x5: 0.0988043
x6: 0.325281", "Arm 12_0
l2norm: 1.14575 (SEM: 0)
x1: 0.310816
x2: 0.5599
x3: 0.66414
x4: 0.262765
x5: 0.450429
x6: 0.435467", "Arm 13_0
l2norm: 1.08124 (SEM: 0)
x1: 0.288017
x2: 0.598047
x3: 0.549521
x4: 0.22857
x5: 0.468538
x6: 0.393348", "Arm 14_0
l2norm: 1.09165 (SEM: 0)
x1: 0.259128
x2: 0.511634
x3: 0.677838
x4: 0.237766
x5: 0.385871
x6: 0.444856", "Arm 15_0
l2norm: 1.0505 (SEM: 0)
x1: 0.21997
x2: 0.471755
x3: 0.687636
x4: 0.211149
x5: 0.348144
x6: 0.440441", "Arm 16_0
l2norm: 1.05824 (SEM: 0)
x1: 0.180569
x2: 0.457815
x3: 0.697414
x4: 0.169267
x5: 0.324673
x6: 0.507178", "Arm 17_0
l2norm: 1.07119 (SEM: 0)
x1: 0.150211
x2: 0.461165
x3: 0.690977
x4: 0.135457
x5: 0.313988
x6: 0.563768", "Arm 18_0
l2norm: 1.06707 (SEM: 0)
x1: 0.17356
x2: 0.392335
x3: 0.670103
x4: 0.162717
x5: 0.316122
x6: 0.615742", "Arm 19_0
l2norm: 1.07108 (SEM: 0)
x1: 0.191686
x2: 0.34264
x3: 0.636114
x4: 0.187703
x5: 0.319315
x6: 0.671735", "Arm 1_0
l2norm: 1.32458 (SEM: 0)
x1: 0.217183
x2: 0.639794
x3: 0.754175
x4: 0.55655
x5: 0.38913
x6: 0.517743", "Arm 20_0
l2norm: 1.0814 (SEM: 0)
x1: 0.212492
x2: 0.277217
x3: 0.588966
x4: 0.217566
x5: 0.32787
x6: 0.738716", "Arm 21_0
l2norm: 1.11259 (SEM: 0)
x1: 0.21652
x2: 0.226635
x3: 0.640087
x4: 0.20377
x5: 0.259812
x6: 0.78795", "Arm 22_0
l2norm: 1.06897 (SEM: 0)
x1: 0.187797
x2: 0.263158
x3: 0.532839
x4: 0.229975
x5: 0.393136
x6: 0.739475", "Arm 23_0
l2norm: 1.07287 (SEM: 0)
x1: 0.264919
x2: 0.295277
x3: 0.528557
x4: 0.213041
x5: 0.327328
x6: 0.749514", "Arm 24_0
l2norm: 1.09611 (SEM: 0)
x1: 0.206811
x2: 0.285102
x3: 0.572345
x4: 0.28981
x5: 0.326301
x6: 0.747905", "Arm 25_0
l2norm: 1.158 (SEM: 0)
x1: 0.234144
x2: 0.291138
x3: 0.618627
x4: 0.293995
x5: 0.353906
x6: 0.779104", "Arm 26_0
l2norm: 1.02227 (SEM: 0)
x1: 0.184217
x2: 0.26031
x3: 0.525743
x4: 0.279585
x5: 0.299749
x6: 0.706335", "Arm 27_0
l2norm: 0.963877 (SEM: 0)
x1: 0.171758
x2: 0.221396
x3: 0.486728
x4: 0.293947
x5: 0.29196
x6: 0.664825", "Arm 28_0
l2norm: 0.926161 (SEM: 0)
x1: 0.120226
x2: 0.191247
x3: 0.420524
x4: 0.302147
x5: 0.290187
x6: 0.674094", "Arm 2_0
l2norm: 1.8746 (SEM: 0)
x1: 0.996231
x2: 0.646439
x3: 0.849897
x4: 0.995196
x5: 0.13908
x6: 0.609664", "Arm 3_0
l2norm: 1.05684 (SEM: 0)
x1: 0.178761
x2: 0.685732
x3: 0.242967
x4: 0.375803
x5: 0.617229
x6: 0.183017", "Arm 4_0
l2norm: 1.56474 (SEM: 0)
x1: 0.500038
x2: 0.89515
x3: 0.509177
x4: 0.945664
x5: 0.473796
x6: 0.138033", "Arm 5_0
l2norm: 1.28377 (SEM: 0)
x1: 0.396702
x2: 0.278378
x3: 0.848153
x4: 0.090392
x5: 0.825946
x6: 0.0588912", "Arm 6_0
l2norm: 0.866147 (SEM: 0)
x1: 0.167041
x2: 0.67031
x3: 0.203851
x4: 0.285772
x5: 0.0959202
x6: 0.374928", "Arm 7_0
l2norm: 1.10636 (SEM: 0)
x1: 0.966608
x2: 0.0530629
x3: 0.397511
x4: 0.105723
x5: 0.0545739
x6: 0.338692", "Arm 8_0
l2norm: 1.78525 (SEM: 0)
x1: 0.959177
x2: 0.30908
x3: 0.926258
x4: 0.657565
x5: 0.500267
x6: 0.794314", "Arm 9_0
l2norm: 1.77641 (SEM: 0)
x1: 0.699031
x2: 0.946268
x3: 0.655471
x4: 0.624671
x5: 0.592031
x6: 0.775368" ], "type": "scatter", "x": [ 0.4028814136981964, 0.7103469995781779, 0.17196986265480518, 0.31081594275321706, 0.2880174433319766, 0.25912830594012753, 0.21996989583144566, 0.18056858335304043, 0.1502106931535988, 0.17356030059917155, 0.19168646137496248, 0.2171827182173729, 0.21249192338150685, 0.21651961499690775, 0.18779735542569903, 0.2649191242857035, 0.20681076889446282, 0.2341444678511272, 0.18421697687132885, 0.17175792086072647, 0.1202259250188612, 0.9962308257818222, 0.17876088339835405, 0.5000381646677852, 0.39670159202069044, 0.16704079788178205, 0.9666077196598053, 0.9591769743710756, 0.6990306936204433 ], "xaxis": "x", "y": [ 0.5198963284492493, 0.8273508353158832, 0.7536710789427161, 0.5598996695791404, 0.5980472172088396, 0.5116341307688471, 0.471754799267041, 0.4578145898717286, 0.4611653165202281, 0.39233537103354466, 0.34263973501808237, 0.6397942434996367, 0.2772171768112323, 0.22663465985530845, 0.26315849501645494, 0.295276850392257, 0.2851018693466092, 0.29113817867428476, 0.2603103544421217, 0.22139587926586693, 0.19124677264883938, 0.6464394517242908, 0.6857324400916696, 0.8951499769464135, 0.2783780237659812, 0.6703095184639096, 0.053062873892486095, 0.3090796750038862, 0.9462682828307152 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "Arm 0_0
l2norm: 1.27258 (SEM: 0)
x1: 0.402881
x2: 0.519896
x3: 0.808794
x4: 0.263642
x5: 0.483005
x6: 0.479485", "Arm 10_0
l2norm: 1.85049 (SEM: 0)
x1: 0.710347
x2: 0.827351
x3: 0.717838
x4: 0.86011
x5: 0.805492
x6: 0.5756", "Arm 11_0
l2norm: 1.33825 (SEM: 0)
x1: 0.17197
x2: 0.753671
x3: 0.547094
x4: 0.882289
x5: 0.0988043
x6: 0.325281", "Arm 12_0
l2norm: 1.14575 (SEM: 0)
x1: 0.310816
x2: 0.5599
x3: 0.66414
x4: 0.262765
x5: 0.450429
x6: 0.435467", "Arm 13_0
l2norm: 1.08124 (SEM: 0)
x1: 0.288017
x2: 0.598047
x3: 0.549521
x4: 0.22857
x5: 0.468538
x6: 0.393348", "Arm 14_0
l2norm: 1.09165 (SEM: 0)
x1: 0.259128
x2: 0.511634
x3: 0.677838
x4: 0.237766
x5: 0.385871
x6: 0.444856", "Arm 15_0
l2norm: 1.0505 (SEM: 0)
x1: 0.21997
x2: 0.471755
x3: 0.687636
x4: 0.211149
x5: 0.348144
x6: 0.440441", "Arm 16_0
l2norm: 1.05824 (SEM: 0)
x1: 0.180569
x2: 0.457815
x3: 0.697414
x4: 0.169267
x5: 0.324673
x6: 0.507178", "Arm 17_0
l2norm: 1.07119 (SEM: 0)
x1: 0.150211
x2: 0.461165
x3: 0.690977
x4: 0.135457
x5: 0.313988
x6: 0.563768", "Arm 18_0
l2norm: 1.06707 (SEM: 0)
x1: 0.17356
x2: 0.392335
x3: 0.670103
x4: 0.162717
x5: 0.316122
x6: 0.615742", "Arm 19_0
l2norm: 1.07108 (SEM: 0)
x1: 0.191686
x2: 0.34264
x3: 0.636114
x4: 0.187703
x5: 0.319315
x6: 0.671735", "Arm 1_0
l2norm: 1.32458 (SEM: 0)
x1: 0.217183
x2: 0.639794
x3: 0.754175
x4: 0.55655
x5: 0.38913
x6: 0.517743", "Arm 20_0
l2norm: 1.0814 (SEM: 0)
x1: 0.212492
x2: 0.277217
x3: 0.588966
x4: 0.217566
x5: 0.32787
x6: 0.738716", "Arm 21_0
l2norm: 1.11259 (SEM: 0)
x1: 0.21652
x2: 0.226635
x3: 0.640087
x4: 0.20377
x5: 0.259812
x6: 0.78795", "Arm 22_0
l2norm: 1.06897 (SEM: 0)
x1: 0.187797
x2: 0.263158
x3: 0.532839
x4: 0.229975
x5: 0.393136
x6: 0.739475", "Arm 23_0
l2norm: 1.07287 (SEM: 0)
x1: 0.264919
x2: 0.295277
x3: 0.528557
x4: 0.213041
x5: 0.327328
x6: 0.749514", "Arm 24_0
l2norm: 1.09611 (SEM: 0)
x1: 0.206811
x2: 0.285102
x3: 0.572345
x4: 0.28981
x5: 0.326301
x6: 0.747905", "Arm 25_0
l2norm: 1.158 (SEM: 0)
x1: 0.234144
x2: 0.291138
x3: 0.618627
x4: 0.293995
x5: 0.353906
x6: 0.779104", "Arm 26_0
l2norm: 1.02227 (SEM: 0)
x1: 0.184217
x2: 0.26031
x3: 0.525743
x4: 0.279585
x5: 0.299749
x6: 0.706335", "Arm 27_0
l2norm: 0.963877 (SEM: 0)
x1: 0.171758
x2: 0.221396
x3: 0.486728
x4: 0.293947
x5: 0.29196
x6: 0.664825", "Arm 28_0
l2norm: 0.926161 (SEM: 0)
x1: 0.120226
x2: 0.191247
x3: 0.420524
x4: 0.302147
x5: 0.290187
x6: 0.674094", "Arm 2_0
l2norm: 1.8746 (SEM: 0)
x1: 0.996231
x2: 0.646439
x3: 0.849897
x4: 0.995196
x5: 0.13908
x6: 0.609664", "Arm 3_0
l2norm: 1.05684 (SEM: 0)
x1: 0.178761
x2: 0.685732
x3: 0.242967
x4: 0.375803
x5: 0.617229
x6: 0.183017", "Arm 4_0
l2norm: 1.56474 (SEM: 0)
x1: 0.500038
x2: 0.89515
x3: 0.509177
x4: 0.945664
x5: 0.473796
x6: 0.138033", "Arm 5_0
l2norm: 1.28377 (SEM: 0)
x1: 0.396702
x2: 0.278378
x3: 0.848153
x4: 0.090392
x5: 0.825946
x6: 0.0588912", "Arm 6_0
l2norm: 0.866147 (SEM: 0)
x1: 0.167041
x2: 0.67031
x3: 0.203851
x4: 0.285772
x5: 0.0959202
x6: 0.374928", "Arm 7_0
l2norm: 1.10636 (SEM: 0)
x1: 0.966608
x2: 0.0530629
x3: 0.397511
x4: 0.105723
x5: 0.0545739
x6: 0.338692", "Arm 8_0
l2norm: 1.78525 (SEM: 0)
x1: 0.959177
x2: 0.30908
x3: 0.926258
x4: 0.657565
x5: 0.500267
x6: 0.794314", "Arm 9_0
l2norm: 1.77641 (SEM: 0)
x1: 0.699031
x2: 0.946268
x3: 0.655471
x4: 0.624671
x5: 0.592031
x6: 0.775368" ], "type": "scatter", "x": [ 0.4028814136981964, 0.7103469995781779, 0.17196986265480518, 0.31081594275321706, 0.2880174433319766, 0.25912830594012753, 0.21996989583144566, 0.18056858335304043, 0.1502106931535988, 0.17356030059917155, 0.19168646137496248, 0.2171827182173729, 0.21249192338150685, 0.21651961499690775, 0.18779735542569903, 0.2649191242857035, 0.20681076889446282, 0.2341444678511272, 0.18421697687132885, 0.17175792086072647, 0.1202259250188612, 0.9962308257818222, 0.17876088339835405, 0.5000381646677852, 0.39670159202069044, 0.16704079788178205, 0.9666077196598053, 0.9591769743710756, 0.6990306936204433 ], "xaxis": "x2", "y": [ 0.5198963284492493, 0.8273508353158832, 0.7536710789427161, 0.5598996695791404, 0.5980472172088396, 0.5116341307688471, 0.471754799267041, 0.4578145898717286, 0.4611653165202281, 0.39233537103354466, 0.34263973501808237, 0.6397942434996367, 0.2772171768112323, 0.22663465985530845, 0.26315849501645494, 0.295276850392257, 0.2851018693466092, 0.29113817867428476, 0.2603103544421217, 0.22139587926586693, 0.19124677264883938, 0.6464394517242908, 0.6857324400916696, 0.8951499769464135, 0.2783780237659812, 0.6703095184639096, 0.053062873892486095, 0.3090796750038862, 0.9462682828307152 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='l2norm'))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We also plot optimization trace, which shows best hartmann6 objective value seen by each iteration of the optimization:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.8702464163868228, -0.8702464163868228, -1.1897825128370196, -1.3175069038454625, -1.5478054080144135, -1.6243372803818479, -2.154016500716388, -2.56685070437369, -2.8244452210959845, -2.8244452210959845, -2.8244452210959845, -2.8244452210959845, -2.873546340932246, -2.873546340932246, -3.1076530165819243, -3.2234293271277075, -3.2234293271277075, -3.2610824978274477 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "legendgroup": "objective value", "line": { "color": "rgba(128,177,211,1)" }, "mode": "lines", "name": "objective value", "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.8702464163868228, -0.8702464163868228, -1.1897825128370196, -1.3175069038454625, -1.5478054080144135, -1.6243372803818479, -2.154016500716388, -2.56685070437369, -2.8244452210959845, -2.8244452210959845, -2.8244452210959845, -2.8244452210959845, -2.873546340932246, -2.873546340932246, -3.1076530165819243, -3.2234293271277075, -3.2234293271277075, -3.2610824978274477 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.6217691922923829, -0.8702464163868228, -0.8702464163868228, -1.1897825128370196, -1.3175069038454625, -1.5478054080144135, -1.6243372803818479, -2.154016500716388, -2.56685070437369, -2.8244452210959845, -2.8244452210959845, -2.8244452210959845, -2.8244452210959845, -2.873546340932246, -2.873546340932246, -3.1076530165819243, -3.2234293271277075, -3.2234293271277075, -3.2610824978274477 ] }, { "line": { "color": "rgba(253,180,98,1)", "dash": "dash" }, "mode": "lines", "name": "Optimum", "type": "scatter", "x": [ 1, 30 ], "y": [ -3.32237, -3.32237 ] } ], "layout": { "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# `plot_single_method` expects a 2-d array of means, because it expects to average means from multiple \n", "# optimization runs, so we wrap out best objectives array in another array.\n", "best_objectives = np.array([[trial.objective_mean for trial in experiment.trials.values()]])\n", "best_objective_plot = optimization_trace_single_method(\n", " y=np.minimum.accumulate(best_objectives, axis=1),\n", " optimum=hartmann6.fmin,\n", " title=\"Model performance vs. # of iterations\",\n", " ylabel=\"Hartmann6\",\n", ")\n", "render(best_objective_plot)" ] } ], "metadata": { "kernelspec": { "display_name": "python3", "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.7.11" } }, "nbformat": 4, "nbformat_minor": 2 }