{ "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 03-10 16:20:27] 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 03-10 16:20:27] 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 03-10 16:20:27] 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 03-10 16:20:27] 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 03-10 16:20:27] 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 03-10 16:20:27] 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 03-10 16:20:27] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='x1', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x2', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x3', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x4', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x5', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x6', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[ParameterConstraint(1.0*x1 + 1.0*x2 <= 20.0)]).\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:27] 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 03-10 16:20:27] 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 03-10 16:20:27] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:27] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:34] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:39] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:46] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:52] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:20:58] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:21:04] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:21:09] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:21:16] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:21:21] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:21:28] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:21:33] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:21:38] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:21:45] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:21:51] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:21:56] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:22:00] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 03-10 16:22:05] 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.19156183052597178,\n", " 'x2': 0.1485798481900465,\n", " 'x3': 0.4834712132516117,\n", " 'x4': 0.2729624001743349,\n", " 'x5': 0.3097645699559457,\n", " 'x6': 0.6659087464722339}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'hartmann6': -3.318429305778832, 'l2norm': 0.9520638752225008}" ] }, "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.5722807232909277, -2.624581923938226, -2.672696712495045, -2.716153564042437, -2.7545018008744035, -2.787322578283359, -2.814240321670592, -2.8349340976167197, -2.849148274811024, -2.8567017408126354, -2.8574949201070794, -2.8515139180600473, -2.8388313095713995, -2.819603389191836, -2.794064058274293, -2.762515876756522, -2.725319078634997, -2.6828794854662767, -2.6356362333281904, -2.584050080005179, -2.5285928350019717, -2.4697382167366158, -2.407954236665427, -2.343697063218368, -2.277406231399648, -2.209501025341507, -2.1403778550858124, -2.070408461030536, -1.9999387994589084, -1.92928848411586, -1.8587506787699368, -1.7885923529224674, -1.7190548271730623, -1.6503545465559535, -1.5826840298908489, -1.5162129512878442, -1.4510893167692998, -1.3874407047963575, -1.32537554451069, -1.264984409864338, -1.206341311610505, -1.149504972440727, -1.0945200734337734, -1.041418462476054, -0.9902203174610706, -0.9409352589128737, -0.8935634082382865, -0.8480963891259856, -0.8045182707060874, -0.7628064519888281 ], [ -2.609268440280959, -2.663100433040454, -2.7126720970657736, -2.757489304291468, -2.7970780527012282, -2.830996200204302, -2.8588458185908454, -2.880285615005302, -2.895042708887848, -2.9029229282870377, -2.903818743270848, -2.8977140280863902, -2.8846850622790163, -2.864897533575404, -2.8385997386684463, -2.8061126051880407, -2.767817483669836, -2.724142811122381, -2.675550707229345, -2.6225243659517425, -2.565556822777704, -2.5051413904588973, -2.441763821353174, -2.3758960969900804, -2.3079916617382885, -2.238481889020679, -2.167773573988507, -2.09624726853302, -2.0242563016344732, -1.952126354239551, -1.8801554805888243, -1.808614486650539, -1.7377475914348914, -1.6677733091410099, -1.598885499999104, -1.5312545458677735, -1.4650286135467803, -1.4003349746627025, -1.3372813560810892, -1.2759572992319466, -1.216435510600876, -1.1587731890059145, -1.1030133182038657, -1.049185915894431, -0.9973092323565489, -0.947390893794774, -0.8994289870302, -0.8534130834719813, -0.8093252013835408, -0.7671407063401527 ], [ -2.641158753728793, -2.696377165104673, -2.747272987496439, -2.79333114372191, -2.8340558235623625, -2.8689829120662624, -2.89769321573198, -2.919825904948434, -2.9350913966454004, -2.943282738541515, -2.9442844791912224, -2.9380780729242466, -2.9247431116878415, -2.9044540872635976, -2.8774729018601337, -2.844137853540891, -2.804850205572869, -2.760059617547706, -2.710249648369251, -2.655924286334582, -2.597596115449706, -2.535776389151434, -2.4709670199765013, -2.403654329600671, -2.3343043270363255, -2.2633592669449842, -2.191235257927711, -2.1183207223095413, -2.04497554254331, -1.9715307594168685, -1.8982887120562686, -1.825523529460508, -1.7534818988606, -1.682384048551609, -1.6124248928374558, -1.5437752949870125, -1.4765834110700136, -1.41097608352077, -1.347060258462799, -1.284924405348041, -1.2246399214091115, -1.1662625068566534, -1.1098334997282957, -1.0553811618551867, -1.00292190959816, -0.9524614848561066, -0.9039960634019694, -0.8575132988908349, -0.8129933019438634, -0.770409554571043 ], [ -2.6675709647161883, -2.724006278235045, -2.7760688421579105, -2.8232247904746854, -2.8649585871137386, -2.9007860765030014, -2.9302685092488687, -2.953026938623707, -2.9687561539765888, -2.9772371139524925, -2.9783467308205993, -2.972063910346211, -2.958471018537659, -2.9377504187723416, -2.9101763207706046, -2.876102773494124, -2.8359490725527077, -2.7901840344498217, -2.739310491199177, -2.6838510442467114, -2.6243357061803456, -2.561291672293089, -2.4952351775688504, -2.4266652280879306, -2.356058929153854, -2.2838681302948203, -2.2105171373531642, -2.1364012822317626, -2.0618861798363834, -1.9873075347170794, -1.9129713861068378, -1.8391547003681186, -1.7661062356127533, -1.6940476156827213, -1.6231745607191173, -1.5536582298763153, -1.4856466388064271, -1.419266120633826, -1.3546228044442723, -1.291804089946477, -1.2308801010066834, -1.1719051042700919, -1.114918882116247, -1.059948051795355, -1.0070073248006148, -0.9561007023904837, -0.9072226047231351, -0.8603589323416715, -0.8154880597880565, -0.7725817619588675 ], [ -2.6881701601818113, -2.745629080891116, -2.798677406832081, -2.846765128614964, -2.889359623956228, -2.925959242826957, -2.9561080330407585, -2.9794109846805767, -2.9955489092394423, -3.004291826664316, -3.005509587574827, -2.9991784988282486, -2.9853830108354176, -2.9643120561449487, -2.9362503058603897, -2.901565276492308, -2.860691707481577, -2.8141148201479247, -2.762353938469385, -2.705947580683299, -2.645440661155883, -2.5813740132289347, -2.514276138705738, -2.4446569238929405, -2.373003006319597, -2.299774486995753, -2.2254027236430702, -2.150288987647316, -2.0748038103879596, -1.999286879481645, -1.9240473724591107, -1.8493646359671125, -1.7754891344141364, -1.7026436044487423, -1.6310243617818487, -1.5608027153199324, -1.4921264507989376, -1.4251213523690942, -1.3598927360454467, -1.2965269737153726, -1.2350929905563763, -1.1756437223241032, -1.118217522071967, -1.062839508507929, -1.009522850427353, -0.9582699835276796, -0.909073757455304, -0.861918512197394, -0.816781083950658, -0.7736317414098745 ], [ -2.7026779554551528, -2.760945924363708, -2.8147777912897833, -2.8636104852572686, -2.906897450165987, -2.9441226649038947, -2.9748159454528382, -2.998568893472275, -3.0150505651244472, -3.024021657144684, -3.025345831702771, -3.018996832988094, -3.0050603609279545, -2.983730250827642, -2.9552992513243295, -2.9201454191806855, -2.8787156737205954, -2.8315082482235923, -2.7790556177907098, -2.7219090652841373, -2.6606255304268025, -2.59575692606981, -2.5278417877980726, -2.4573989596134145, -2.384922972052394, -2.3108807899196457, -2.2357096550365334, -2.159815801415743, -2.083573865591071, -2.0073268507448385, -1.931386530610013, -1.8560341997978136, -1.7815216930953928, -1.7080726088606617, -1.635883681936285, -1.5651262601737224, -1.4959478461120765, -1.428473671842442, -1.3628082807579267, -1.2990370948403642, -1.2372279504374004, -1.1774325891968564, -1.1196880940024427, -1.0640182624478618, -1.0104349126461791, -0.9589391180474497, -0.909522369477641, -0.8621676638607505, -0.8168505200847536, -0.7735399232584595 ], [ -2.710882093116547, -2.7697269410609566, -2.8241224021414526, -2.8734957875116685, -2.9172901922989363, -2.9549788421661867, -2.9860808288242513, -3.0101775860505553, -3.0269291459608034, -3.0360889141464877, -3.037515507230483, -3.031180224336109, -3.0171690565672042, -2.9956787617854967, -2.967007321296646, -2.9315398583137826, -2.8897316421195027, -2.842089995880711, -2.7891567496648353, -2.7314924331676522, -2.669662857458638, -2.6042282546486564, -2.5357348192559384, -2.464708333274581, -2.3916495160990037, -2.3170307668323114, -2.2412940186293824, -2.1648494788895225, -2.0880750753720605, -2.0113164645307213, -1.9348874857834018, -1.859070966187332, -1.7841197960383428, -1.7102582087342943, -1.6376832088332969, -1.5665661012270164, -1.4970540821180682, -1.429271859264885, -1.363323274875916, -1.2992929096900379, -1.237247651242348, -1.177238213145778, -1.11930059547809, -1.0634574791089784, -1.0097195490896114, -0.9580867441128005, -0.908549430587894, -0.8610895011097884, -0.8156813980803809, -0.7722930640035273 ], [ -2.7126441609960827, -2.7718207643153505, -2.8265467268618045, -2.876243451892981, -2.920347591982778, -2.9583256065176617, -2.989689772168043, -3.0140149842248807, -3.030955362796983, -3.040259365565639, -3.0417819081605515, -3.0354920260200884, -3.0214749603999453, -2.9999281962678213, -2.9711517877136004, -2.9355340793865263, -2.893534477673785, -2.8456651154388766, -2.792473071421462, -2.7345243512412583, -2.672390285246271, -2.6066365134592178, -2.5378144004608605, -2.466454560644883, -2.3930621334377893, -2.3181134744060534, -2.2420539799872197, -2.165296817280022, -2.0882223761498486, -2.011178296853216, -1.934479953746359, -1.8584112965391135, -1.7832259669018427, -1.7091486214475369, -1.6363764031358317, -1.5650805125663265, -1.4954078387952825, -1.4274826164315502, -1.361408081975081, -1.2972681077463197, -1.235128796392506, -1.1750400229153504, -1.1170369145106838, -1.061141261310178, -1.0073628534324002, -0.9557007416462617, -0.9061444204829296, -0.8586749338546581, -0.8132659041994709, -0.769884486911319 ], [ -2.707904781965325, -2.767160456322965, -2.8219760520182624, -2.8717709292875164, -2.9159793903638302, -2.9540653262520826, -2.985538332913154, -3.0099706202418792, -3.0270137114793503, -3.0364136221918914, -3.0380230172646456, -3.031808890247631, -3.017854668169616, -2.9963562905670296, -2.967612608448117, -2.932011203722257, -2.890011258518866, -2.842125287864629, -2.7889013734727515, -2.7309070979286254, -2.6687158431169675, -2.6028956420724216, -2.5340004485074283, -2.462563522522384, -2.3890925842867614, -2.3140664079677915, -2.237932575426605, -2.1611061598466503, -2.0839691535205995, -2.006870489159752, -1.930126531278654, -1.8540219353266352, -1.778810789028472, -1.7047179641548658, -1.6319406185314538, -1.5606497980472642, -1.4909920970614385, -1.4230913431266488, -1.3570502784767569, -1.292952216362095, -1.2308626551405668, -1.1708308371254015, -1.1128912426271254, -1.0570650124834358, -1.0033612947184758, -0.9517785128806285, -0.9023055551391532, -0.8549228844316764, -0.8096035708987054, -0.7663142485623885 ], [ -2.696685823009209, -2.755766095202432, -2.8104284552744594, -2.860094119317985, -2.904199168744171, -2.942209159398895, -2.9736351686806524, -2.998050590563179, -3.015107671425943, -3.0245524892258278, -3.0262369114669636, -3.020126132023243, -3.006300747387418, -2.9849529578017715, -2.956377237743875, -2.9209565331522933, -2.879145541275033, -2.8314528060002586, -2.778423204553206, -2.720621998347453, -2.658621121514713, -2.59298792985222, -2.5242763154326857, -2.453019921286079, -2.3797271331061287, -2.304877534483994, -2.228919550926963, -2.1522690530299204, -2.0753087301344184, -1.99838807954709, -1.92182388322977, -1.8459010652391283, -1.7708738405287274, -1.6969670801428087, -1.624377830082899, -1.5532769316899713, -1.4838107005501358, -1.4161026288860552, -1.3502550832715214, -1.2863509754067608, -1.2244553887126868, -1.164617147733327, -1.1068703208659967, -1.0512356498535196, -0.9977219018532546, -0.9463271418194611, -0.8970399244674307, -0.8498404062921721, -0.8047013790450469, -0.7615892267772778 ], [ -2.6790894459370316, -2.7377438007628747, -2.79201380201651, -2.84132633109548, -2.8851232652469885, -2.9228759189873026, -2.95410084855296, -2.978376320132538, -2.9953584442122176, -3.0047957176148437, -3.006540580399541, -3.000556679545375, -2.9869208844499817, -2.965819685525206, -2.9375403074954343, -2.902457522725288, -2.861017608338418, -2.813721060438297, -2.7611055487915435, -2.7037302414391857, -2.642162180193499, -2.576964972004097, -2.5086897563470165, -2.4378682330262733, -2.365007463780727, -2.290586156052586, -2.215052164354161, -2.1388209819876356, -2.0622750323769203, -1.985763600889192, -1.9096032742027973, -1.8340787757979358, -1.7594441040357633, -1.685923894413097, -1.6137149405471298, -1.5429878196588507, -1.4738885780472781, -1.4065404404566668, -1.341045514471641, -1.2774864672473494, -1.2159281571016063, -1.1564192068681804, -1.0989935095361083, -1.0436716596756654, -0.9904623065675766, -0.9393634268910402, -0.890363516363013, -0.8434427009218181, -0.7985737689703772, -0.7557231268882707 ], [ -2.655294128095647, -2.713281348448465, -2.7669289226240523, -2.815672999651598, -2.858965017706737, -2.8962858489475902, -2.9271611970194753, -2.9511775467110954, -2.9679976933463417, -2.9773746554933798, -2.9791626762015753, -2.9733241202701413, -2.959931412105813, -2.9391636939802313, -2.9112985134419684, -2.87669943328965, -2.8358008706833235, -2.7890916339204668, -2.7370985265797314, -2.680371091083928, -2.619468174234225, -2.554946623613926, -2.4873521367535245, -2.4172121064375856, -2.3450302206752482, -2.271282554492863, -2.1964149039968452, -2.120841140839681, -2.0449423959312027, -1.969066909893189, -1.8935304127936488, -1.8186169171255928, -1.7445798263265837, -1.671643276917822, -1.6000036460100078, -1.5298311677873833, -1.4612716128624228, -1.394447993258609, -1.3294622633679474, -1.2663969936723618, -1.2053169994362465, -1.146270911090863, -1.0892926767536408, -1.0344029903646836, -0.9816106413776023, -0.9309137839026592, -0.8823011247467223, -0.835753030996946, -0.7912425587144629, -0.7487364049921187 ], [ -2.62554805974011, -2.682640854937048, -2.7354495445712566, -2.7834228375918064, -2.8260251314688203, -2.8627502386726666, -2.8931362307331567, -2.916780708568566, -2.9333555675701346, -2.9426201411754698, -2.9444315427057797, -2.9387511397403374, -2.9256464093365437, -2.905287900164229, -2.877941580228105, -2.843957361334163, -2.803754958006542, -2.7578083926627546, -2.706630391403448, -2.6507576742854795, -2.5907378157755043, -2.5271180236172714, -2.4604359196182912, -2.3912122282230173, -2.3199451819268546, -2.2471064151307347, -2.1731381167115975, -2.098451228427882, -2.023424500048515, -1.9484042368947296, -1.8737045987633003, -1.799608330138518, -1.726367820128259, -1.654206406853851, -1.583319855301155, -1.5138779500962696, -1.4460261554693574, -1.3798873039638193, -1.3155632833760158, -1.253136698111629, -1.1926724867545064, -1.1342194822952574, -1.0778119052859538, -1.0234707832920937, -0.9712052925108883, -0.9210140194125999, -0.8728861418237268, -0.8268025300815662, -0.7827367698120878, -0.7406561085713378 ], [ -2.5901605253900217, -2.6461492527352886, -2.697919822517014, -2.744936405801879, -2.7866793081721735, -2.8226581695728283, -2.8524261332894674, -2.8755943133069053, -2.8918456829564434, -2.9009473608693157, -2.902760235773938, -2.8972449920649836, -2.8844638843939148, -2.864578028301218, -2.8378404512976436, -2.8045855912431463, -2.765216250328261, -2.7201891588431937, -2.6700002642096363, -2.6151706738014937, -2.5562339109082526, -2.493724862478594, -2.4281705580117916, -2.360082746347501, -2.2899521317692013, -2.2182440792020004, -2.1453955828345386, -2.071813298086231, -1.9978724528883518, -1.9239164743843689, -1.850257187994717, -1.777175465727416, -1.7049222189747213, -1.6337196475894187, -1.563762671748761, -1.495220486043215, -1.4282381864658635, -1.3629384306457477, -1.2994230998979985, -1.2377749385995473, -1.1780591521861203, -1.1203249498483432, -1.0646070219184534, -1.0109269451107996, -0.9592945113240999, -0.9097089777332212, -0.8621602374823553, -0.8166299115171056, -0.7730923630255333, -0.7315156366536217 ], [ -2.5494919733013033, -2.6041873738257735, -2.654740413933707, -2.700633186847247, -2.741364358682376, -2.77646175219019, -2.805495748207461, -2.8280928651197312, -2.843948703671664, -2.8528393314451983, -2.854630169926799, -2.849281567466506, -2.83685049765481, -2.8174881845478263, -2.7914338634901528, -2.759005264195638, -2.7205866824737344, -2.6766156442232285, -2.627569151016883, -2.573950356815335, -2.516276309783403, -2.4550671571582, -2.390836998926299, -2.324086412308909, -2.2552965592990724, -2.1849247267221688, -2.1134011203145158, -2.0411267290740964, -1.968472084174466, -1.8957767516153674, -1.8233494155484649, -1.7514684275894679, -1.6803827151710125, -1.6103129584658742, -1.541452960315019, -1.473971146822084, -1.4080121478291343, -1.3436984164444268, -1.2811318552668012, -1.2203954240841914, -1.1615547097650176, -1.1046594439612825, -1.0497449582444505, -0.9968335695336481, -0.9459358912698509, -0.8970520678467578, -0.8501729314212438, -0.8052810814736574, -0.7623518884378995, -0.7213544234306035 ], [ -2.503943471685389, -2.557178440449747, -2.606356002249508, -2.6509781672598534, -2.690563905494167, -2.724661046950999, -2.752858853359709, -2.7748006612636846, -2.790195854153206, -2.7988303369632703, -2.800574691492857, -2.795389306982913, -2.7833260058225746, -2.7645259937813607, -2.739214308736547, -2.707691262470007, -2.6703216123947726, -2.6275223282771343, -2.579749824137842, -2.5274874253229163, -2.4712336717817838, -2.4114918634363414, -2.348761068516292, -2.2835286638211767, -2.216264365725089, -2.1474156403891485, -2.0774043435104477, -2.0066244250073817, -1.93544053431162, -1.8641873712928787, -1.7931696420408918, -1.722662495011482, -1.6529123296986352, -1.5841378860041608, -1.5165315372735384, -1.450260723267682, -1.3854694710474944, -1.3222799618778351, -1.2607941108973129, -1.2010951335780584, -1.1432490790617869, -1.087306315456644, -1.0333029562605263, -0.981262220377503, -0.9311957208387369, -0.8831046794367516, -0.8369810661277389, -0.7928086633316332, -0.750564056233202, -0.7102175509170987 ], [ -2.453946165609221, -2.5055766476680077, -2.553243020837889, -2.596468744859467, -2.6347945435990967, -2.6677895768676407, -2.6950631487791563, -2.716276397499345, -2.731153296585336, -2.7394902368357785, -2.741163473816261, -2.7361338339844643, -2.724448268706129, -2.7062381079629256, -2.6817141554721475, -2.6511590379286276, -2.614917430444595, -2.5733848991687904, -2.5269961216727594, -2.476213177439708, -2.421514470983083, -2.363384691045276, -2.3023060503769037, -2.23875091244292, -2.1731758043298197, -2.1060167407426817, -2.0376857384178955, -1.9685683773169327, -1.899022258189448, -1.829376210000667, -1.7599301110729075, -1.6909552015623166, -1.6226947800187352, -1.5553651919288174, -1.4891570325066512, -1.4242364991197793, -1.3607468404093086, -1.2988098593293338, -1.2385274360392502, -1.1799830439385397, -1.1232432382732063, -1.0683591018116787, -1.0153676362323143, -0.9642930912205605, -0.9151482259666888, -0.8679354998945648, -0.8226481911346822, -0.7792714425624648, -0.73778323622568, -0.6981552977407451 ], [ -2.399951217609966, -2.4498563605474, -2.495898134710764, -2.537622543590801, -2.574593057536969, -2.6064010339609616, -2.632676553389129, -2.6530991642791504, -2.667407938240582, -2.675410194038723, -2.6769882715336726, -2.6721038347081296, -2.660799352084514, -2.6431966243595713, -2.6194924723103084, -2.5899519267654685, -2.5548994431999175, -2.514708772984446, -2.4697921529921905, -2.4205894319005212, -2.367557653676745, -2.31116149062166, -2.251864783473606, -2.190123322572736, -2.126378902738033, -2.0610546092439934, -1.9945512420397247, -1.9272447562795054, -1.8594845844767718, -1.7915927044479734, -1.7238633236883465, -1.6565630618138147, -1.5899315259482154, -1.5241821878720092, -1.4595034853645392, -1.396060082857341, -1.3339942379479768, -1.2734272303740346, -1.2144608187129382, -1.1571786974292946, -1.1016479330544195, -1.047920363387028, -0.9960339477891967, -0.9460140600503, -0.8978747180263165, -0.8516197464420108, -0.8072438709643277, -0.7647337429989876, -0.7240688956983172, -0.6852226324552111 ], [ -2.3424205698832754, -2.3905022774939346, -2.4348278383569752, -2.4749664934954003, -2.5105050435969893, -2.541057513036945, -2.56627512476378, -2.5858561276250116, -2.5995549458488902, -2.6071900908064514, -2.608650301180656, -2.603898465201713, -2.5929730232568247, -2.575986735526309, -2.553122903142399, -2.52462932447852, -2.4908104242316114, -2.4520180930170747, -2.408641811197441, -2.361098606081515, -2.3098233192629527, -2.255259558734879, -2.197851597159146, -2.1380373688611205, -2.0762426243013206, -2.0128762271926783, -1.9483265270034598, -1.882958706348818, -1.8171129852969887, -1.751103559060287, -1.6852181483244335, -1.6197180495892904, -1.5548385840194276, -1.4907898557392743, -1.4277577430958872, -1.3659050584152224, -1.305372822769983, -1.2462816120542555, -1.1887329391651147, -1.1328106443612338, -1.0785822719931448, -1.0261004168976953, -0.9754040279471163, -0.9265196596665576, -0.879462665600469, -0.8342383293233884, -0.7908429307481821, -0.7492647467647905, -0.7094849863139997, -0.6714786608213813 ], [ -2.2818187304916497, -2.328000757443791, -2.370539356988017, -2.4090273472136454, -2.4430750884480728, -2.472319401816448, -2.4964327093005636, -2.515131984306805, -2.528187045696507, -2.53542770878234, -2.536749333767489, -2.532116389265119, -2.5215637716351575, -2.5051957773911, -2.4831827968255764, -2.4557559602124255, -2.4232001026808505, -2.385845504643699, -2.344058904006707, -2.2982342655091155, -2.2487837400914588, -2.196129166467512, -2.140694372784593, -2.0828984415687666, -2.023150015895286, -1.9618426547374261, -1.8993511929261737, -1.8360290255598506, -1.7722062158116199, -1.7081883159067772, -1.6442557904991666, -1.5806639369921331, -1.5176432062479246, -1.4553998378709065, -1.3941167355914106, -1.3339545193874147, -1.2750527013509765, -1.2175309416604092, -1.1614903492453361, -1.1070147988252672, -1.0541722420231303, -1.0030159952985094, -0.9535859916229523, -0.9059099862455758, -0.8600047096807912, -0.815876963291517, -0.773524654630496, -0.7329377711166164, -0.6940992917299703, -0.6569860372648574 ], [ -2.218605674361174, -2.262832386345007, -2.303532907469621, -2.3403236673994807, -2.3728385156569605, -2.40073691714985, -2.4237122944737908, -2.441500150941515, -2.4538855649109603, -2.460709633934533, -2.4618744737570326, -2.457346444596684, -2.447157381614087, -2.4314037379226145, -2.410243691944128, -2.383892409054399, -2.3526157637863134, -2.316722910643886, -2.2765581319756167, -2.2324923901249525, -2.1849149739050833, -2.13422556612318, -2.0808269809357203, -2.025118738269994, -1.967491566265891, -1.908322857592697, -1.8479730545142583, -1.7867829011777125, -1.7250714785326298, -1.663134925336913, -1.6012457453212903, -1.5396526033022828, -1.478580519719841, -1.4182313820277348, -1.3587847013117438, -1.3003985525681012, -1.2432106466693384, -1.1873394908428314, -1.132885602324847, -1.0799327466832183, -1.0285491781508078, -0.9787888642509666, -0.9306926811162216, -0.8842895693034469, -0.8395976426908891, -0.7966252452981651, -0.7553719526831212, -0.7158295160134535, -0.6779827480505546, -0.6418103511724225 ], [ -2.1532308669076285, -2.1954657710692627, -2.234295285492241, -2.269359229497505, -2.3003146236586076, -2.3268431931293025, -2.3486589562022937, -2.3655155737352023, -2.377213101765908, -2.3836037829206314, -2.384596537419301, -2.3801598730372673, -2.3703230219532982, -2.3551752229129397, -2.3348631877605732, -2.3095869084909575, -2.279594061351055, -2.2451733376815612, -2.2066470709539043, -2.164363534714337, -2.1186892605142287, -2.0700016755558277, -2.0186822957403634, -1.9651106401949339, -1.90965896599071, -1.852687862312506, -1.7945426950735919, -1.7355508570142475, -1.6760197541673791, -1.6162354456740107, -1.556461848248894, -1.4969404170164005, -1.4378902190305132, -1.3795083229522207, -1.3219704368382685, -1.2654317348941895, -1.2100278227508072, -1.1558757989575663, -1.1030753777401514, -1.051710044556967, -1.0018482216028364, -0.9535444251919389, -0.9068404009762939, -0.8617662263048719, -0.8183413717880856, -0.7765757163866182, -0.7364705121692005, -0.6980192963502936, -0.661208749385924, -0.626019498826625 ], [ -2.086128362673085, -2.1263524932429423, -2.1632946912214654, -2.196617732836174, -2.226001291270478, -2.2511487841865643, -2.2717942564802986, -2.2877090119580026, -2.298707682253064, -2.304653418384273, -2.3054619138324357, -2.301104018727512, -2.2916067798558295, -2.277052834239386, -2.2575781856676658, -2.2333684929505413, -2.204654085202892, -2.171703984469362, -2.134819253969481, -2.094325999595669, -2.0505683352365005, -2.0039015842676746, -1.9546859372022631, -1.9032807265202987, -1.8500394208645274, -1.7953053873144111, -1.7394084256693183, -1.6826620440977038, -1.6253614211711485, -1.5677819842016254, -1.510178526370263, -1.452784783614652, -1.3958133949374676, -1.3394561752430705, -1.2838846368202939, -1.229250703281028, -1.1756875675106946, -1.1233106525787195, -1.0722186413522667, -1.0224945466332058, -0.9742067989588848, -0.9274103337882591, -0.8821476636851362, -0.8384499243758823, -0.7963378862730395, -0.7558229252911581, -0.7169079486069283, -0.6795882724943172, -0.6438524505539953, -0.6096830516031155 ], [ -2.017712898617268, -2.0559231248551173, -2.090976678128375, -2.1225586892930854, -2.150370807363149, -2.174137430896522, -2.193611934538512, -2.2085826387491263, -2.218878251613087, -2.2243725114045647, -2.2249877801700153, -2.2206973824790204, -2.21152654728591, -2.19755188934936, -2.178899452446721, -2.1557414210562174, -2.1282916816928235, -2.0968004724565605, -2.0615483947810977, -2.0228400730589997, -1.9809977370288974, -1.9363549723635454, -1.889250842297079, -1.8400245334983212, -1.7890106284986502, -1.7365350594946198, -1.6829117574809367, -1.6284399781311776, -1.5734022620298733, -1.5180629712033473, -1.4626673352384345, -1.407440937192052, -1.3525895705367552, -1.2982994022512317, -1.2447373827630628, -1.1920518499373391, -1.140373281061, -1.089815153375889, -1.0404748798965717, -0.9924347928629664, -0.9457631521570179, -0.9005151603488233, -0.8567339697581965, -0.8144516700708133, -0.7736902476926082, -0.7344625102233518, -0.6967729712409472, -0.6606186920681665, -0.6259900783942447, -0.5928716305905635 ], [ -1.9483768857764625, -1.9845841945614313, -2.017761100240337, -2.047614353002571, -2.073866779012484, -2.0962629368425625, -2.114574737414969, -2.128606806202609, -2.138201352212066, -2.1432423099277895, -2.1436585401055823, -2.1394259132991693, -2.1305681542855326, -2.1171563919373813, -2.099307431636139, -2.0771808390932818, -2.0509749884959287, -2.0209222782291674, -1.9872837498893965, -1.9503433590715091, -1.9104021401290994, -1.8677724845575316, -1.8227727181231805, -1.7757221203320674, -1.726936486153211, -1.676724288191704, -1.625383460725358, -1.5731987969270993, -1.520439927826149, -1.4673598358743696, -1.4141938465601676, -1.3611590372299525, -1.30845400193229, -1.256258913559095, -1.2047358288437988, -1.1540291871028292, -1.1042664593797091, -1.055558910448236, -1.008002441672407, -0.9616784878359234, -0.9166549456551347, -0.8729871157462205, -0.8307186433367378, -0.7898824460256771, -0.7505016194481063, -0.7125903138411471, -0.6761545762882885, -0.6411931548880117, -0.607698262296168, -0.5756562970703218 ], [ -1.8784881982819797, -1.9127159918719017, -1.9440399344237453, -1.9721875588845905, -1.9969019792366618, -2.0179470133865443, -2.0351122450115566, -2.048217830443419, -2.0571188462812877, -2.0617089763826377, -2.0619233547910185, -2.0577404140999143, -2.049182635043066, -2.0363161493536226, -2.0192492093677257, -1.998129598872235, -1.9731411146457634, -1.9444992920599529, -1.912446577423121, -1.8772471627310403, -1.8391816953856857, -1.798542058281824, -1.7556263877831977, -1.7107344625352539, -1.6641635588413308, -1.6162048320094935, -1.5671402503497114, -1.517240081070037, -1.4667609059511153, -1.4159441293677493, -1.365014931430327, -1.314181613879665, -1.2636352849063446, -1.2135498303159518, -1.1640821215655766, -1.1153724154409377, -1.0675449049712114, -1.020708386179615, -0.9749570101584867, -0.93037109455486, -0.8870179727511776, -0.8449528627769414, -0.8042197412802872, -0.7648522107392788, -0.7268743505316554, -0.6903015445475006, -0.6551412797639096, -0.621393911645884, -0.5890533934332562, -0.5581079673556697 ], [ -1.8083886607050417, -1.8406711009207626, -1.8701758612331287, -1.8966503467632665, -1.9198570059085993, -1.939577960412723, -1.9556195557890064, -1.9678166623871678, -1.9760365500100794, -1.9801821628179865, -1.980194637491361, -1.9760549362299111, -1.967784505729959, -1.955444921039203, -1.9391365252707053, -1.9189961280354624, -1.895193872504726, -1.8679294191380182, -1.8374276202795934, -1.8039338724510579, -1.7677093322573272, -1.7290261688533142, -1.6881630034884518, -1.6454006579917848, -1.601018302535315, -1.5552900616397427, -1.5084821085465328, -1.460850253372522, -1.4126380107105703, -1.3640751177032995, -1.315376463768691, -1.266741387460067, -1.2183532936179575, -1.1703795442145886, -1.1229715783615828, -1.076265220213471, -1.0303811374431917, -0.9854254172024123, -0.9414902307302496, -0.8986545618498243, -0.8569849783759659, -0.8165364288859744, -0.7773530503532865, -0.7394689748127674, -0.7029091255341039, -0.6676899951543307, -0.6338203998950234, -0.6013022053986163, -0.5701310208951109, -0.5402968593876865 ], [ -1.7383931401458357, -1.7687735629087569, -1.7965014969576292, -1.8213432582461486, -1.84307963460137, -1.8615100623981677, -1.8764567099493856, -1.8877683192848838, -1.8953236529569928, -1.8990343968990493, -1.898847385052718, -1.8947460363661197, -1.8867509286477708, -1.8749194743709074, -1.859344707713543, -1.8401532362073443, -1.8175024505792716, -1.7915771193200623, -1.7625855176498975, -1.7307552524652519, -1.6963289454104429, -1.6595599264938912, -1.620708072684379, -1.5800359022709543, -1.5378050092088582, -1.4942728947520796, -1.4496902284657431, -1.4042985486791946, -1.358328394411201, -1.3119978470399942, -1.2655114503387792, -1.219059471497732, -1.1728174627976273, -1.1269460830314573, -1.0815911389596873, -1.0368838094777653, -0.9929410183114546, -0.9498659245763882, -0.9077485041753195, -0.8666661985711335, -0.8266846108417311, -0.787858232021104, -0.7502311835213991, -0.7138379639039321, -0.67870419042913, -0.6448473276848825, -0.6122773971943762, -0.5809976632651748, -0.5510052914896706, -0.5222919772698931 ], [ -1.6687891563735255, -1.697318574589557, -1.7233191789069195, -1.746575203710285, -1.7668847586170753, -1.7840635894800556, -1.7979487365973514, -1.8084019606522146, -1.8153128036922788, -1.8186011571704468, -1.8182192223426121, -1.81415276999973, -1.8064216355779168, -1.7950794202656861, -1.7802124062419942, -1.761937731628927, -1.7404009050450242, -1.715772768014257, -1.6882460337865988, -1.6580315421309395, -1.6253543711663772, -1.5904499400797625, -1.5535602222058953, -1.5149301684960408, -1.4748044191234055, -1.4334243580034605, -1.3910255431272518, -1.3478355261251673, -1.3040720581948766, -1.2599416667716632, -1.2156385780472596, -1.1713439543471291, -1.1272254119917824, -1.0834367840674042, -1.0401180929903755, -0.9973956993918508, -0.9553825962658552, -0.9141788201895202, -0.8738719544854482, -0.8345377022709153, -0.7962405102998724, -0.7590342272714077, -0.722962782806525, -0.6880608755631986, -0.6543546609658446, -0.6218624307787048, -0.590595278269999, -0.5605577440164282, -0.5317484385075664, -0.5041606386501094 ], [ -1.5998369305252045, -1.6265726383477288, -1.6509012148945434, -1.6726238061064678, -1.6915548189384553, -1.7075253024685413, -1.7203862201235613, -1.730011500132518, -1.736300749510347, -1.7391815217329778, -1.7386110402409072, -1.734577298820513, -1.7270994848788097, -1.716227701093517, -1.7020419927769057, -1.684650720087408, -1.6641883434369407, -1.6408127147882523, -1.614701985240138, -1.5860512493058305, -1.5550690483665048, -1.5219738504891285, -1.4869906123535575, -1.4503475130905559, -1.4122729312232483, -1.372992716400002, -1.332727788727324, -1.2916920814102928, -1.2500908278317253, -1.2081191825109632, -1.1659611566200447, -1.1237888427041618, -1.0817618996111888, -1.0400272669645858, -0.9987190783845, -0.9579587436683218, -0.9178551719302351, -0.8785051099755006, -0.8399935727174862, -0.8023943450599901, -0.7657705372387651, -0.7301751780610644, -0.6956518327481239, -0.6622352341454256, -0.629951917908967, -0.5988208539049498, -0.5688540674851235, -0.5400572455357302, -0.5124303232615055, -0.4859680485764615 ], [ -1.531769799875978, -1.5567740871214684, -1.5794905161053443, -1.5997361368415048, -1.6173406355018036, -1.6321493693264337, -1.6440262893695647, -1.6528566527693944, -1.6585494254933655, -1.6610392813782828, -1.6602881140732522, -1.6562859950005364, -1.64905153191472, -1.6386316077689973, -1.625100506654145, -1.608558460556549, -1.5891296755277053, -1.566959916696292, -1.542213746917325, -1.5150715228467837, -1.48572625461533, -1.4543804314551776, -1.4212429065534466, -1.3865259213766883, -1.3504423342201692, -1.3132031012431973, -1.2750150420433635, -1.2360789069020806, -1.1965877498842175, -1.1567256013644442, -1.1166664253801906, -1.0765733413682534, -1.036598086081396, -0.9968806894804587, -0.9575493378070362, -0.9187203975234141, -0.8804985750553429, -0.8429771890301444, -0.8062385337571871, -0.7703543148876311, -0.7353861403952051, -0.7013860521549273, -0.6683970854069412, -0.6364538452449722, -0.6055830909468649, -0.575804320464798, -0.5471303487186461, -0.5195678744979677, -0.49311803178832636, -0.4677769222109265 ], [ -1.4647949328488294, -1.488133914632535, -1.509301540176341, -1.5281297669524192, -1.5444625593416503, -1.5581586088938864, -1.5690939414283935, -1.5771643254578998, -1.5822873964826378, -1.5844044164783306, -1.5834815976017467, -1.579510933549107, -1.5725105004692634, -1.5625242107724533, -1.5496210261573509, -1.5338936590642516, -1.5154568128697674, -1.4944450289373918, -1.471010221919663, -1.4453189927192427, -1.4175498110284057, -1.3878901566685484, -1.356533701773174, -1.3236776052410248, -1.2895199780294673, -1.2542575639633136, -1.2180836668786321, -1.1811863419712783, -1.1437468577896237, -1.105938425759967, -1.0679251865958541, -1.029861437374823, -0.9918910792976672, -0.9541472639313762, -0.9167522147982013, -0.8798172012314099, -0.8434426422132166, -0.8077183192171463, -0.772723678707182, -0.738528206750831, -0.7051918600685306, -0.6727655396854315, -0.6412915951161082, -0.6108043486622745, -0.5813306309169226, -0.5528903199371347, -0.5254968777711893, -0.4991578791087177, -0.4738755277744242, -0.4496471576166037 ], [ -1.3990942847605412, -1.4208368482004001, -1.4405214785572915, -1.4579940643870415, -1.4731118730785384, -1.4857459858529718, -1.4957836204445953, -1.5031302671595252, -1.5077115646578343, -1.5094748464154715, -1.5083902975240022, -1.5044516740677811, -1.4976765532100789, -1.4881061004163585, -1.4758043597647659, -1.4608570926985143, -1.4433702084914872, -1.4234678448766267, -1.4012901687347044, -1.3769909738291535, -1.350735155089765, -1.3226961370993051, -1.293053328785783, -1.2619896676946394, -1.2296893065735703, -1.1963354833322906, -1.1621086036387827, -1.1271845542245291, -1.0917332549377936, -1.055917449046886, -1.0198917244090655, -0.9838017528868701, -0.9477837317021461, -0.9119640080869568, -0.8764588674009737, -0.8413744646091181, -0.806806879433866, -0.7728422764193517, -0.7395571524031405, -0.7070186553519606, -0.6752849600736706, -0.6444056878904505, -0.6144223588909261, -0.5853688668334536, -0.5572719681252456, -0.5301517775401652, -0.5040222644571668, -0.47889174440289084, -0.45476336157101405, -0.4316355587750722 ], [ -1.334825740867483, -1.355042607954322, -1.37331162919758, -1.3894916756154108, -1.403452375060672, -1.4150762892120463, -1.4242609805369246, -1.4309209047354199, -1.4349890652376214, -1.4364183707170963, -1.4351826443714595, -1.4312772447003592, -1.424719271189741, -1.4155473439292061, -1.4038209627730431, -1.389619468106267, -1.3730406404761666, -1.35419898927899, -1.3332237905371653, -1.3102569400416317, -1.2854506905762366, -1.2589653407304573, -1.2309669383777635, -1.2016250549017329, -1.1711106774650974, -1.139594256840506, -1.1072439383035348, -1.074223993457513, -1.040693462094568, -1.0068050056124351, -0.9727039672650656, -0.9385276296601692, -0.9044046563645468, -0.8704547021064677, -0.8367881747050727, -0.8035061313260142, -0.7707002917801652, -0.7384531521825747, -0.706838183227627, -0.675920098492749, -0.6457551794611769, -0.6163916452788754, -0.5878700565776989, -0.5602237439667892, -0.5334792529919956, -0.5076567984733462, -0.4827707221459745, -0.4588299484485554, -0.4358384341274213, -0.41379560805893645 ], [ -1.2721243991376636, -1.2908873025871466, -1.3078089024046673, -1.322760137074531, -1.3356220902508296, -1.3462879349060397, -1.3546647708578483, -1.3606752997576612, -1.3642592829651767, -1.3653747318674316, -1.3639987871534474, -1.3601282531319314, -1.3537797649527954, -1.3449895799266716, -1.3338129982264701, -1.3203234322008788, -1.3046111564200231, -1.2867817815787663, -1.266954503837759, -1.2452601866531903, -1.221839334464246, -1.196840016872306, -1.1704157984925971, -1.1427237240016936, -1.1139224006640887, -1.0841702124503578, -1.053623691377295, -1.022436063438321, -0.9907559788664909, -0.9587264297687413, -0.9264838525515136, -0.8941574080787495, -0.8618684291331767, -0.8297300223996644, -0.7978468107269547, -0.7663148007056545, -0.7352213604781319, -0.7046452930302131, -0.6746569908809795, -0.6453186589792501, -0.6166845936461598, -0.5888015065041616, -0.5617088834510866, -0.5354393698357498, -0.5100191740425017, -0.48546848267936005, -0.4618018814780229, -0.43902877685010067, -0.4171538138022479, -0.3961772865954014 ], [ -1.2111039508522083, -1.228484917934528, -1.2441274143371301, -1.2579135690674395, -1.2697350585990836, -1.279494841324254, -1.287108789623017, -1.292507171112685, -1.295635932153354, -1.2964577405400846, -1.2949527505047196, -1.2911190614963575, -1.2849728523426653, -1.2765481837789732, -1.265896474305454, -1.253085666156693, -1.238199109099912, -1.2213341991422186, -1.202600816480262, -1.1821196118087656, -1.1600201922703182, -1.1364392579445348, -1.1115187370979194, -1.0854039638517086, -1.0582419359704596, -1.0301796836594914, -1.0013627730942543, -0.9719339613373652, -0.9420320126875515, -0.9117906806069089, -0.8813378543445624, -0.8507948652840173, -0.8202759448817901, -0.7898878237766156, -0.7597294601366107, -0.7298918844621417, -0.7004581477545387, -0.6715033600793131, -0.6430948069905291, -0.6152921319479547, -0.5881475736728625, -0.5617062482889943, -0.5360064670333575, -0.5110800812606295, -0.4869528473783966, -0.4636448052207043, -0.4411706641830806, -0.41954019219733785, -0.3987586033170003, -0.37882694031426545 ], [ -1.1518581226129028, -1.1679288605838452, -1.1823601289816204, -1.1950444116139014, -1.2058831590368075, -1.2147883345206756, -1.2216838624633506, -1.2265069373284656, -1.2292091527892761, -1.2297574143227377, -1.2281346040001004, -1.2243399734893112, -1.21838925000459, -1.2103144496617197, -1.2001634028752126, -1.1879990064615358, -1.1738982263856874, -1.1579508830557443, -1.1402582572887812, -1.120931559244783, -1.1000903046253059, -1.0778606423048798, -1.0543736755023003, -1.0297638149263966, -1.0041671974421948, -0.9777201981298246, -0.9505580575682716, -0.9228136401455523, -0.8946163334828742, -0.8660910938911284, -0.8373576383016047, -0.8085297794016411, -0.7797148977726321, -0.7510135426355606, -0.7225191512898678, -0.6943178763968819, -0.6664885098129719, -0.6391024916240207, -0.6122239932822346, -0.5859100642181674, -0.5602108319270738, -0.5351697462525287, -0.5108238593664787, -0.4872041337392625, -0.4643357711793832, -0.44223855678332624, -0.4209272123580958, -0.4004117545561936, -0.38069785359072705, -0.36178718897613793 ], [ -1.094462148560023, -1.1092935243602828, -1.1225805155398056, -1.1342251682800675, -1.1441379342321598, -1.152239047362425, -1.158459808466631, -1.1627437410950612, -1.1650475842615964, -1.1653420905820981, -1.1636126033639143, -1.1598593924944236, -1.1540977364802814, -1.1463577462948085, -1.1366839353459475, -1.125134548385883, -1.1117806700526303, -1.0967051405145871, -1.0800013110201827, -1.0617716757905709, -1.0421264185245196, -1.0211819118381185, -0.9990592063890814, -0.9758825434873791, -0.9517779209876973, -0.9268717375423253, -0.9012895352106599, -0.8751548552861799, -0.8485882172766483, -0.8217062264583699, -0.7946208114572639, -0.7674385899629723, -0.7402603579813375, -0.7131806959561432, -0.6862876835966804, -0.6596627142651901, -0.6333803992330931, -0.6075085519272241, -0.5821082423830637, -0.5572339124319814, -0.5329335426143873, -0.5092488623796716, -0.48621559576638296, -0.4638637354195603, -0.4422178384720423, -0.4212973384752965, -0.40111686819982695, -0.3816865887278418, -0.3630125208264403, -0.34509687511595866 ], [ -1.0389742465330922, -1.052635852838364, -1.0648441938364952, -1.0755101300979666, -1.0845523877428698, -1.091898783790882, -1.0974873646252825, -1.1012674262316555, -1.1032003864847333, -1.103260482741968, -1.101435272315823, -1.0977259188982937, -1.092147254467934, -1.0847276133071229, -1.0755084421210048, -1.064543697473788, -1.051899048439616, -1.0376509081393015, -1.021885322404847, -1.0046967469785788, -0.986186746319034, -0.9664626472664233, -0.9456361796324427, -0.9238221334197473, -0.9011370590981597, -0.8776980334492874, -0.8536215092206888, -0.8290222624661903, -0.8040124472134506, -0.778700763168168, -0.7531917386602796, -0.727585128035308, -0.7019754202241434, -0.6764514532821643, -0.6510961282421759, -0.6259862146257913, -0.6011922393451079, -0.5767784504375786, -0.5528028470495701, -0.529317267260117, -0.5063675256641698, -0.483993593069888, -0.46222981117018636, -0.44110513559546316, -0.4206434013188227, -0.400863604950245, -0.38178019900902105, -0.36340339379616293, -0.34573946299453007, -0.32879104960097516 ], [ -0.9854370764839867, -0.9979968759236565, -1.0091905455837127, -1.0189370572427494, -1.0271627310979743, -1.0338023256089421, -1.0388000459898938, -1.0421104442757692, -1.0436991854482676, -1.0435436568172052, -1.04163340166006, -1.0379703629039496, -1.0325689281904085, -1.0254557737306187, -1.0166695106278654, -1.006260143482069, -0.9942883567691129, -0.9808246494078928, -0.9659483418482803, -0.9497464827670855, -0.9323126839656194, -0.9137459123289823, -0.8941492668216222, -0.8736287666111944, -0.8522921737348259, -0.8302478704756652, -0.807603808034357, -0.7844665393763667, -0.7609403455011089, -0.7371264609636082, -0.7131224013956695, -0.6890213930918868, -0.6649119024808903, -0.6408772614987654, -0.6169953835002222, -0.5933385633483201, -0.5699733546699173, -0.5469605169005669, -0.5243550246185833, -0.5022061317345028, -0.48055748331500436, -0.4594472681406836, -0.4389084054923258, -0.41896876010338024, -0.3996513796861352, -0.38097474991889024, -0.3629530622592392, -0.3455964904153168, -0.3289114717567274, -0.31290099037567964 ], [ -0.9338791636346482, -0.9454032029962214, -0.9556442740474226, -0.9645288011134622, -0.9719900635842024, -0.9779691647154342, -0.9824159245948665, -0.9852896738898038, -0.986559926481657, -0.9862069115382273, -0.9842219489301817, -0.9806076560515241, -0.9753779788852326, -0.9685580453445654, -0.9601838442616797, -0.9503017386149502, -0.9389678264159811, -0.9262471668734427, -0.9122128928158417, -0.8969452327510654, -0.8805304672982823, -0.8630598450488354, -0.8446284822643476, -0.8253342693235877, -0.8052768046457013, -0.7845563741293597, -0.7632729911442867, -0.7415255089733402, -0.7194108144886924, -0.6970231088861907, -0.6744532785956004, -0.6517883570983678, -0.6291110763545549, -0.6064995048780721, -0.5840267681941942, -0.5617608464410766, -0.5397644432032203, -0.5180949192496245, -0.49680428465112425, -0.4759392427299043, -0.4555412794114986, -0.43564679177263943, -0.4162872498778232, -0.39748938634973907, -0.3792754085040906, -0.3616632282823682, -0.3446667056252013, -0.3282959013351745, -0.3125573358751841, -0.2974542509321514 ], [ -0.8843162726320015, -0.894868459075982, -0.9042168988375185, -0.9122948538387579, -0.9190419720848484, -0.9244051484716078, -0.9283393151710643, -0.9308081414050705, -0.9317846238167612, -0.9312515508496269, -0.9292018274959306, -0.9256386503824792, -0.9205755272774993, -0.9140361395431479, -0.9060540506125595, -0.8966722680136072, -0.8859426705738896, -0.8739253160240557, -0.8606876471072172, -0.8463036163868591, -0.8308527511655796, -0.8144191802797406, -0.7970906440715858, -0.7789575076553994, -0.7601117958165031, -0.74064626565854, -0.7206535306003846, -0.7002252466679627, -0.6794513693618066, -0.6584194868211871, -0.6372142326368222, -0.61591677954781, -0.5946044134311423, -0.5733501854687335, -0.5522226391546066, -0.5312856078679724, -0.5105980780601784, -0.49021411265502013, -0.47018282900846153, -0.450548425682588, -0.43135025232792557, -0.41262291710924903, -0.39439642632784455, -0.3766963511662431, -0.35954401679235404, -0.3429567093942556, -0.32694789706378335, -0.3115274607978522, -0.29670193223490493, -0.2824747350851713 ], [ -0.8367527222786262, -0.8463946539523628, -0.8549081761739028, -0.8622328160044355, -0.8683140422312696, -0.8731040299252393, -0.876562359822477, -0.8786566350993651, -0.879362999412549, -0.8786665420473496, -0.8765615786115759, -0.8730517988419844, -0.8681502766343057, -0.8618793412106722, -0.8542703122252235, -0.8453631053952436, -0.8352057187509024, -0.8238536126589967, -0.8113689992620122, -0.7978200587883447, -0.783280101283386, -0.7678266926786264, -0.7515407637959968, -0.7345057199511977, -0.7168065673752279, -0.6985290708366454, -0.6797589547444636, -0.6605811577659398, -0.6410791487171985, -0.6213343092739574, -0.601425386980589, -0.5814280201641295, -0.5614143347210687, -0.5414526113561517, -0.5216070207162913, -0.5019374229694367, -0.48249922770967935, -0.4633433096024946, -0.44451597489134453, -0.4260589737416687, -0.40800955337449296, -0.3904005470149141, -0.37326049382902693, -0.35661378522774245, -0.34048083316149724, -0.3248782563032824, -0.30981908030848704, -0.2953129486403634, -0.28136634075361755, -0.2679827947306239 ], [ -0.7911826333113273, -0.7999734772238977, -0.8077074380866677, -0.8143297765985412, -0.8197912754110632, -0.8240489179803371, -0.8270665072765085, -0.8288152093005611, -0.8292740075615364, -0.8284300564282525, -0.8262789235459647, -0.8228247142248333, -0.8180800737594284, -0.8120660668974908, -0.8048119369970798, -0.7963547506417509, -0.7867389364760663, -0.7760157296447049, -0.764242535358645, -0.7514822266926874, -0.7378023926973465, -0.7232745532785888, -0.7079733570895617, -0.691975777947595, -0.6753603241185278, -0.6582062732950256, -0.6405929443386018, -0.622599014958301, -0.6043018925564851, -0.585777143565773, -0.5670979847974278, -0.5483348386704199, -0.5295549527253482, -0.5108220825674277, -0.4921962363330328, -0.4737334779307123, -0.45548578565724207, -0.4375009623150825, -0.4198225926384218, -0.4024900436493277, -0.385538503491454, -0.3689990543061259, -0.35289877480541776, -0.33726086834349145, -0.3221048124761561, -0.30744652621855106, -0.2932985514519677, -0.2796702451858375, -0.2665679796436824, -0.25399534740751406 ], [ -0.7475911041763942, -0.7555875147403107, -0.7625948466162936, -0.7685636018304274, -0.7734494088826244, -0.7772136253427331, -0.779823885091358, -0.7812545772090883, -0.7814872446208058, -0.7805108921710053, -0.7783221958016209, -0.7749256068612703, -0.7703333482050354, -0.7645653015392762, -0.7576487883061436, -0.7496182491623931, -0.7405148296649757, -0.7303858820224823, -0.7192843946165043, -0.7072683623749835, -0.694400111954794, -0.6807455960553098, -0.6663736710604352, -0.6513553716382203, -0.6357631949802922, -0.6196704061143097, -0.6031503742560698, -0.5862759485670761, -0.5691188800273526, -0.5517492944913147, -0.5342352204245417, -0.516642173365718, -0.49903279785213206, -0.481466566407988, -0.4639995342301255, -0.4466841474149157, -0.42956910194497855, -0.41269925018222087, -0.39611555127882236, -0.37985506170253425, -0.3639509619596919, -0.34843261557139393, -0.33332565639978706, -0.3186521005183547, -0.30443047896010933, -0.29067598785060245, -0.2774006526296975, -0.26461350328050703, -0.2523207577095201, -0.2405260106545155 ], [ -0.7059553118345572, -0.7132113840610851, -0.7195425612301733, -0.7249041316507597, -0.7292561384292566, -0.7325639142625998, -0.7347985653966304, -0.735937393523885, -0.7359642454003842, -0.7348697813558815, -0.7326516556203077, -0.729314603435004, -0.7248704321850163, -0.719337916188637, -0.7127425972123368, -0.7051164951400505, -0.6964977354155849, -0.686930101805231, -0.676462524620365, -0.6651485157425386, -0.6530455625751418, -0.640214493398727, -0.6267188265472001, -0.6126241153845251, -0.5979973002977403, -0.5829060778944721, -0.5674182963698571, -0.5516013846577408, -0.5355218215704549, -0.5192446497186785, -0.5028330376382983, -0.486347892273604, -0.46984752280511155, -0.45338735578350997, -0.43701970064885054, -0.4207935639772702, -0.40475451020224207, -0.38894456609438244, -0.373402165941525, -0.3581621341353518, -0.3432557017282247, -0.32871055345996814, -0.3145509017560826, -0.30079758425416037, -0.28746818151370257, -0.2745771516968196, -0.2621359791657367, -0.25015333412123697, -0.2386352405986114, -0.2275852503400646 ], [ -0.6662455363520537, -0.6728127882795715, -0.6785158194097831, -0.6833142845337301, -0.6871722447099948, -0.6900586418037623, -0.6919477264338307, -0.6928194296272191, -0.6926596693931767, -0.6914605846657511, -0.6892206905949986, -0.6859449509424049, -0.6816447652926749, -0.6763378708563403, -0.6700481607226386, -0.6628054224444727, -0.6546450027146679, -0.6456074055505778, -0.6357378327811158, -0.6250856766809043, -0.6137039752942641, -0.6016488413291787, -0.5889788754900691, -0.575754574784977, -0.5620377457291128, -0.5478909315222342, -0.5333768612578944, -0.5185579280851524, -0.5034957020423372, -0.4882504820681677, -0.4728808905105295, -0.45744351233228375, -0.44199258018289855, -0.4265797055820648, -0.4112536556570072, -0.39606017419260175, -0.38104184519062256, -0.3662379966860043, -0.3516846422248707, -0.3374144571609399, -0.32345678676267053, -0.3098376830314924, -0.2965799671009579, -0.28370331410747807, -0.2712243574863995, -0.2591568097445487, -0.24751159688512314, -0.23629700380704022, -0.22551882816370017, -0.21518054034099632 ], [ -0.6284261094322501, -0.6343534889512088, -0.639473931737158, -0.6437510724350415, -0.6471526257900673, -0.6496508076651215, -0.6512227134270303, -0.6518506453154942, -0.651522381232515, -0.650231378486325, -0.6479769073633204, -0.6447641109432181, -0.6406039892617619, -0.6355133076994226, -0.6295144312643703, -0.6226350881730229, -0.6149080677434791, -0.6063708590449435, -0.5970652379384014, -0.5870368110630735, -0.576334525946002, -0.5650101567320669, -0.5531177750560619, -0.5407132153288334, -0.5278535432182332, -0.5145965354129722, -0.5010001779088005, -0.4871221890984594, -0.4730195729251718, -0.45874820631635704, -0.44436246408608726, -0.42991488351267715, -0.41545586988437355, -0.40103344347908343, -0.3866930277129257, -0.37247727756282933, -0.35842594683986406, -0.34457579245953296, -0.33096051351666533, -0.3176107227177736, -0.30455394754443654, -0.2918146584078558, -0.2794143209985822, -0.2673714700279419, -0.2557018015911965, -0.24441828145012567, -0.23353126662814438, -0.22304863782956863, -0.21297594033083245, -0.20331653114210213 ], [ -0.5924562881519673, -0.597790199951659, -0.6023711938674607, -0.6061665288638016, -0.6091472393208472, -0.6112885085269766, -0.6125700032211976, -0.6129761619313017, -0.6124964305954121, -0.6111254399241397, -0.6088631201326409, -0.6057147500106479, -0.6016909387581548, -0.5968075405422832, -0.5910855032693763, -0.5845506545570602, -0.577233429277592, -0.5691685442753545, -0.560394626895341, -0.5509538047646203, -0.5408912648248676, -0.5302547899148664, -0.5190942812523172, -0.5074612749810257, -0.4954084605583591, -0.48298920819061464, -0.4702571118183174, -0.4572655533469996, -0.4440672929504901, -0.4307140893779158, -0.41725635330459077, -0.4037428359067967, -0.3902203540324436, -0.376733552599253, -0.36332470418971563, -0.3500335452332819, -0.3368971476726865, -0.3239498246013661, -0.31122306802863164, -0.29874551667297733, -0.2865429514947466, -0.2746383165504225, -0.2630517626745832, -0.25180071146523986, -0.24089993705723356, -0.23036166321090268, -0.22019567331363432, -0.2104094309859752, -0.20100820909699046, -0.19199522512219103 ], [ -0.5582910560254273, -0.5630754049164866, -0.5671577185629264, -0.5705085537534353, -0.5731019585424231, -0.5749158035533195, -0.5759320777394743, -0.5761371423235588, -0.5755219373022797, -0.5740821357598171, -0.5718182422587761, -0.5687356327406943, -0.5648445346303399, -0.5601599471554697, -0.554701503217913, -0.5484932754348197, -0.5415635301634005, -0.5339444343866717, -0.5256717212360551, -0.5167843206328051, -0.5073239620268561, -0.49733475649296977, -0.48686276551291785, -0.47595556364184644, -0.46466180194709805, -0.4530307786445873, -0.4411120227714733, -0.4289548960555223, -0.4166082174033514, -0.40411991366098476, -0.3915366995280334, -0.37890378875427677, -0.366264638033303, -0.353660724346168, -0.3411313559092617, -0.3287135163501529, -0.31644174127630587, -0.3043480260137179, -0.2924617629734889, -0.2808097068501987, -0.26941596566166104, -0.25830201549965537, -0.24748673676985034, -0.23698646965064363, -0.22681508648953752, -0.21698407887711024, -0.20750265718785776, -0.19837786044997818, -0.1896146744989713, -0.18121615647899247 ] ], "zauto": true, "zmax": 3.0417819081605515, "zmin": -3.0417819081605515 }, { "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.2628286250552159, 0.2491846931245893, 0.23627734444844065, 0.22424894237143828, 0.2132472386501034, 0.20342118791037703, 0.19491468722700062, 0.1878580502830842, 0.182357602965999, 0.17848471310450018, 0.17626658016410635, 0.17568163595797057, 0.17666182998008972, 0.17910226943642837, 0.182876336475495, 0.1878526525476381, 0.19390991300470709, 0.20094666364770805, 0.20888487417019083, 0.21766789167577716, 0.2272545066301266, 0.23761127556224343, 0.24870503585712292, 0.2604969664358271, 0.27293885506235366, 0.2859716272917655, 0.2995257799115076, 0.31352316259834373, 0.3278795261864257, 0.342507340461669, 0.3573185171027276, 0.3722268093672945, 0.38714977427630975, 0.4020102663425797, 0.4167374853655209, 0.4312676302524584, 0.4455442231595352, 0.4595181696518472, 0.4731476157945825, 0.48639765536005086, 0.49923993171330294, 0.5116521705853657, 0.5236176724366027, 0.5351247866729324, 0.546166384620462, 0.5567393438024487, 0.5668440525666039, 0.5764839413422902, 0.5856650446361794, 0.5943955961876378 ], [ 0.2523524328260935, 0.2384355319279535, 0.22528646458130214, 0.21305309545190998, 0.20188828883515772, 0.19194506359583624, 0.18336949609188627, 0.17629128071519426, 0.17081253862725435, 0.16699648704241626, 0.16485861206556823, 0.16436337702300136, 0.16542862661658536, 0.16793771187902926, 0.17175682626436017, 0.17675334919148572, 0.1828109008277999, 0.1898381799654337, 0.19777071442266517, 0.2065665521275777, 0.21619811388938454, 0.22664276201217431, 0.2378742634546939, 0.24985654886776326, 0.2625403107225608, 0.2758622825572978, 0.28974661045488026, 0.30410756768168196, 0.31885290458578497, 0.33388727754232483, 0.34911538524858926, 0.36444460821120506, 0.3797870752296392, 0.3950611655621203, 0.4101925038347539, 0.4251145265395527, 0.439768703600253, 0.4541044933544466, 0.468079099508329, 0.48165708734412543, 0.49480990548098375, 0.5075153496711636, 0.5197569967672193, 0.5315236301302784, 0.5428086722275918, 0.5536096357947444, 0.563927601515135, 0.5737667275135048, 0.5831337939149212, 0.5920377841569078 ], [ 0.2427313151335381, 0.22858908238113704, 0.2152515687497299, 0.20287344851825617, 0.19161382110233494, 0.18163029934622593, 0.17307055523887954, 0.16606146476099604, 0.16069687712395456, 0.15702617312359374, 0.15504668363914156, 0.15470299773319915, 0.15589475114171283, 0.15849199084707058, 0.16235475075319897, 0.16735218641594238, 0.17337697419755488, 0.18035234969123382, 0.18823136525712839, 0.1969898980555656, 0.2066161103467368, 0.21709928831148873, 0.22842042688215874, 0.24054594365944704, 0.2534248805903694, 0.26698916793644256, 0.2811560982166319, 0.29583206121815386, 0.3109167174112225, 0.32630701504253123, 0.3419006931733109, 0.35759910765386327, 0.3733093527709489, 0.3889457323268144, 0.40443067326264587, 0.4196951867464796, 0.43467897750472084, 0.44933029024553367, 0.46360556740286724, 0.4774689779671069, 0.4908918642293381, 0.5038521423394906, 0.5163336836809201, 0.5283256969903102, 0.5398221256193273, 0.5508210700559801, 0.561324242541774, 0.5713364581187561, 0.5808651645440897, 0.5899200120805724 ], [ 0.23405048103770612, 0.21973025931207743, 0.20625665833517853, 0.19379274902419352, 0.18250543286661977, 0.17255800767114401, 0.1640997127330843, 0.1572527822779957, 0.15209877717927803, 0.14866726858262116, 0.1469305271289323, 0.14680697691344355, 0.14817381004303412, 0.15088632915713415, 0.15479960498126646, 0.15978760362811179, 0.16575592892667593, 0.17264620129193123, 0.18043225276054944, 0.18911017666268007, 0.19868535576686328, 0.20915969610164312, 0.22052155390766134, 0.23273965613766018, 0.24576113359942894, 0.2595129365667812, 0.27390550305366385, 0.28883753785867217, 0.3042009844736693, 0.31988557932078354, 0.3357826636205509, 0.3517881435760688, 0.36780462670520675, 0.3837428346019474, 0.3995224199679661, 0.41507231637555936, 0.4303307361071278, 0.44524491301066216, 0.45977066838658764, 0.47387186080363364, 0.48751976629638233, 0.5006924237128664, 0.5133739707822477, 0.5255539893601989, 0.5372268728744615, 0.5483912248723897, 0.5590492944650167, 0.5692064521288313, 0.5788707075812708, 0.5880522701472067 ], [ 0.22640760373559118, 0.21195696015420643, 0.19839849489683276, 0.18590521165642485, 0.1746534853135076, 0.16481366502456066, 0.15653694120108463, 0.14993955890541655, 0.14508725637286762, 0.1419843264443878, 0.14057167876560667, 0.14073601651652978, 0.14232860057573676, 0.14518906324634825, 0.1491687530210575, 0.15414895295614983, 0.16005103038867308, 0.1668374860514752, 0.17450476040264076, 0.1830702815365619, 0.19255719459664822, 0.202980204306656, 0.2143350669134274, 0.2265929022212372, 0.2396991790048606, 0.2535763321131828, 0.2681286138157676, 0.2832478647953804, 0.29881921436979186, 0.3147261023234259, 0.33085434239103967, 0.3470951766025608, 0.36334740327277226, 0.37951872256156827, 0.39552645835090317, 0.41129780477605943, 0.42676972433445715, 0.44188860042127903, 0.4566097246449971, 0.470896680082317, 0.48472066609857917, 0.49805979819587504, 0.5108984070252156, 0.5232263536451237, 0.5350383728189717, 0.5463334521967607, 0.5571142522923432, 0.5673865699904824, 0.5771588467078685, 0.586441721146502 ], [ 0.21991594056914648, 0.20538455491301938, 0.19179265172634738, 0.17932420886048606, 0.16816631809089155, 0.15849747764217276, 0.15047120675072714, 0.1441967835073669, 0.13972145496473784, 0.13702021230954242, 0.13599826121798994, 0.13650717693387582, 0.13837061999534156, 0.14141262170019825, 0.145481983133712, 0.1504687561567893, 0.15631115347564886, 0.16299297044133743, 0.17053303747275722, 0.17896951566330643, 0.18834265119502291, 0.19867951197035577, 0.2099832278332709, 0.22222775879761095, 0.23535779584836014, 0.24929247548533143, 0.2639312806068974, 0.27916067181858456, 0.2948604066080881, 0.31090895070739344, 0.3271877466545935, 0.34358434230637624, 0.3599945100259561, 0.37632353722747675, 0.392486872250925, 0.4084102896384693, 0.42402971058941163, 0.4392907857527297, 0.4541483222493498, 0.46856561607137626, 0.48251373469764786, 0.4959707822906867, 0.5089211704606829, 0.521354910604427, 0.5332669386681725, 0.5446564793815579, 0.5555264542130758, 0.5658829352425451, 0.5757346456389439, 0.5850925063307517 ], [ 0.21470449602974911, 0.20014715521542015, 0.18657621683999856, 0.174186703920798, 0.1631766057958827, 0.1537326808965144, 0.14601052104627465, 0.1401115431708481, 0.13606298978025486, 0.1338088944956773, 0.13321770523395757, 0.13410592960766757, 0.13627070228911348, 0.1395219064232671, 0.1437068490447018, 0.1487244448998192, 0.15452870104268857, 0.16112268757584533, 0.1685450721239472, 0.1768522117146895, 0.18609943833004158, 0.19632503287988465, 0.2075393402897547, 0.21971992063752077, 0.23281215660760665, 0.2467337999828578, 0.2613816657023849, 0.2766389165309282, 0.2923818585231506, 0.30848566038276604, 0.3248287942498492, 0.34129623930471065, 0.3577816134841259, 0.37418844052126504, 0.3904307545674551, 0.40643321798168996, 0.4221308946838621, 0.43746878961266, 0.4524012375781945, 0.46689120292818503, 0.48090953455863905, 0.494434208071295, 0.5074495774295524, 0.5199456515092773, 0.5319174058467118, 0.5433641361623164, 0.5542888575197134, 0.5646977509933512, 0.5745996582703861, 0.5840056235599131 ], [ 0.21091356960264018, 0.1963933936954851, 0.18290413516911397, 0.17065056873464363, 0.15984012268148104, 0.15066624790479316, 0.1432850858869513, 0.13778906182931966, 0.13418524764512388, 0.13238811191124544, 0.1322324688802983, 0.133504028932992, 0.1359776324439843, 0.1394519881122874, 0.14377387002388803, 0.14884985308693532, 0.15464670055708837, 0.1611825121087684, 0.16851111743312203, 0.17670274851303194, 0.1858245020980621, 0.1959239405582342, 0.20701816835159073, 0.21908918844549416, 0.23208487376719764, 0.24592395150243182, 0.2605031340040535, 0.2757047867278773, 0.2914040272715472, 0.3074746648393305, 0.3237937878215331, 0.3402450568625286, 0.35672088497397647, 0.3731237256294745, 0.38936668144716113, 0.40537361625127005, 0.4210789176203863, 0.4364270233794325, 0.4513717970332222, 0.4658758144965028, 0.47990960711645037, 0.49345089298013967, 0.5064838188959173, 0.5189982284032814, 0.5309889660350051, 0.5424552243188616, 0.5533999372862684, 0.5638292222749065, 0.5737518703720851, 0.5831788848011625 ], [ 0.20868475357221564, 0.19427526430616365, 0.1809370563038803, 0.16888180275580414, 0.15832296141052427, 0.1494570504662366, 0.14243764612657767, 0.13734668243264553, 0.13417234032356568, 0.13280414856130557, 0.1330506301356239, 0.13467498066360087, 0.13743683290441558, 0.14112804488185837, 0.14559584445898135, 0.15075239079699468, 0.15657282328875308, 0.16308453853872576, 0.17035042456630903, 0.17844901464689564, 0.1874548356414262, 0.19742205259635037, 0.20837358971830752, 0.22029648317337758, 0.2331428226227015, 0.24683472054323924, 0.26127146983070587, 0.2763372834473482, 0.29190849724199813, 0.30785962701725417, 0.324068071764511, 0.34041751025473027, 0.3568001677960464, 0.3731181732748142, 0.38928422053967754, 0.40522171937974877, 0.4208645858796853, 0.43615678808352176, 0.4510517340693759, 0.4655115664905325, 0.47950640990878884, 0.49301360392964655, 0.5060169452937878, 0.5185059548487929, 0.5304751800441796, 0.5419235397433665, 0.5528537153415024, 0.5632715901347862, 0.5731857373998074, 0.5826069565620658 ], [ 0.20814594431398278, 0.19393052642225042, 0.18082103986591636, 0.16903173875130925, 0.15877689203664977, 0.15025061318984595, 0.1435994750311975, 0.13889327716389188, 0.13610399887329896, 0.1351035690962679, 0.13568477099818474, 0.1375993764029927, 0.1406007876403642, 0.14447926258579746, 0.14908366940672635, 0.15432945034796616, 0.16019533234258906, 0.16671182322976152, 0.17394431109938038, 0.18197358564418326, 0.19087675471652052, 0.20071134580819683, 0.2115045825746086, 0.22324857180810415, 0.2359008661423717, 0.24938899393243105, 0.2636172407931823, 0.2784741400647354, 0.2938395610482597, 0.30959076014276377, 0.3256071494445534, 0.3417737955680532, 0.3579838000437741, 0.3741397655109419, 0.39015455351341577, 0.4059515160817335, 0.42146435088420514, 0.4366366974394948, 0.45142156366442576, 0.46578064905803235, 0.4796836129013515, 0.49310732223812437, 0.5060351042311948, 0.5184560199679928, 0.5303641712583828, 0.541758047914009, 0.5526399200299695, 0.5630152776179723, 0.5728923183531828, 0.5822814830406917 ], [ 0.20939387463209283, 0.19546184641213094, 0.18266306036415092, 0.17120899455854238, 0.161308373641805, 0.1531464743319127, 0.14685801189455125, 0.14249940586154697, 0.140030278953076, 0.1393137996189806, 0.14013890075704052, 0.14225793304906645, 0.14542758144259826, 0.14944211330885157, 0.1541535781975111, 0.15947883637439422, 0.16539594280310188, 0.17193290479115078, 0.17915157388378103, 0.18712930021658378, 0.19594099946559743, 0.2056440853270809, 0.21626804983294387, 0.2278094182262925, 0.24023170151288278, 0.25346916560171423, 0.26743290190683633, 0.28201777711491144, 0.2971091877454713, 0.31258896323323226, 0.3283401238655564, 0.3442504547845285, 0.36021500489848596, 0.3761376851505909, 0.39193215382782665, 0.40752216172730527, 0.4228415033786891, 0.437833691634766, 0.4524514464761957, 0.4666560666228302, 0.4804167347508263, 0.49370979332901593, 0.5065180176191342, 0.5188299045352903, 0.53063899021856, 0.5419432048586265, 0.5527442701009397, 0.5630471420234686, 0.5728595009345672, 0.582191287972296 ], [ 0.21247822900260177, 0.1989180175115447, 0.1865091999121478, 0.17545479235355807, 0.16595155481721408, 0.15816985384677335, 0.15222848753369922, 0.14817021498341776, 0.14594679281218031, 0.14542138748658942, 0.14639017235189133, 0.14861699351988691, 0.15187049653761034, 0.1559543193331367, 0.16072562618106467, 0.16610173522235064, 0.1720569947817633, 0.17861264496947515, 0.18582223451174246, 0.1937549921805472, 0.2024794854842213, 0.21204969195108817, 0.2224950568742995, 0.2338152538946393, 0.2459794414484564, 0.2589290934317373, 0.2725831344953554, 0.28684412288376543, 0.30160447611967317, 0.31675207842193726, 0.3321749302547814, 0.34776474292631177, 0.3634195340398664, 0.379045357832256, 0.39455733109127483, 0.4098801115859336, 0.424947967285707, 0.4397045508775849, 0.4541024705913127, 0.4681027275994153, 0.4816740730711872, 0.4947923242647671, 0.5074396684005612, 0.5196039749263824, 0.53127813063532, 0.5424594074798451, 0.5531488694739974, 0.5633508225035389, 0.5730723089525093, 0.5823226476390211 ], [ 0.21739157872515352, 0.20428277031834385, 0.19233253704686348, 0.1817302619371417, 0.1726553945142911, 0.16525891355847663, 0.15964138991158378, 0.15583285622661558, 0.1537816748441521, 0.1533582898040646, 0.1543747334791757, 0.1566146872173926, 0.15986555206972514, 0.1639448936351348, 0.16871717591426813, 0.1741002676670143, 0.18006331365780912, 0.18661825018353784, 0.1938072309300293, 0.20168809554352227, 0.2103199100813997, 0.21975040441325921, 0.2300066842522378, 0.24108991585422362, 0.25297393139698776, 0.26560708785979764, 0.2789163681332681, 0.29281265883998825, 0.30719629941358506, 0.3219622600701904, 0.33700457660209715, 0.3522198905521529, 0.36751009494990056, 0.382784173453436, 0.397959360109277, 0.4129617549910741, 0.4277265215441078, 0.4421977741212522, 0.45632824477312006, 0.4700787999593556, 0.48341786185127916, 0.4963207756743454, 0.5087691539603935, 0.5207502202966027, 0.5322561687664534, 0.5432835503942043, 0.5538326941983271, 0.5639071676604273, 0.5735132793106172, 0.582659624552863 ], [ 0.22406776361194472, 0.21147430401941017, 0.20003431453619372, 0.1899196287287432, 0.18128892812753336, 0.1742715976612785, 0.1689497209435947, 0.165342557306715, 0.16339892589803795, 0.16300156891720205, 0.16398376808216403, 0.1661541565215868, 0.1693232748216994, 0.17332595850632393, 0.1780361179464309, 0.18337314396155335, 0.18930093973630335, 0.19582132381457729, 0.20296368870800974, 0.21077274551962535, 0.21929609179719012, 0.22857315785160495, 0.23862673034660326, 0.24945772285149942, 0.2610432670236341, 0.27333768246212087, 0.28627555899710533, 0.2997760842003279, 0.31374783029854497, 0.32809340085867733, 0.34271355247126023, 0.35751059781048133, 0.3723910395280189, 0.3872674763567624, 0.4020598720650242, 0.4166962967726043, 0.43111325006009554, 0.44525566504211306, 0.4590766780248402, 0.47253723305844925, 0.4856055764872082, 0.4982566842981371, 0.5104716548662698, 0.5222370914699308, 0.5335444924475644, 0.5443896617963153, 0.5547721490948045, 0.5646947246269183, 0.5741628932895075, 0.5831844491250783 ], [ 0.23238863048205752, 0.22035488085453495, 0.20945686327168983, 0.19984661926459596, 0.19166074805108757, 0.18500706785922758, 0.17995062181769814, 0.1765023868575325, 0.17461451097296415, 0.174184718665195, 0.1750698432668701, 0.1771055185674178, 0.18012740069173894, 0.18398953085440464, 0.18857704570073064, 0.19381232890338995, 0.1996550995292594, 0.20609765953533551, 0.21315677342235714, 0.22086368688784075, 0.2292537382347681, 0.23835687342331963, 0.2481901005996185, 0.2587525149539755, 0.27002305909893104, 0.2819607612473089, 0.2945069001053166, 0.307588417872755, 0.3211219239173682, 0.33501775129257466, 0.3491836892865284, 0.36352817274233795, 0.37796283722795904, 0.39240443961324295, 0.40677619871527965, 0.42100863805514616, 0.43504002108350615, 0.4488164659483688, 0.4622918175363102, 0.47542734279170334, 0.48819130340155076, 0.5005584489839818, 0.5125094644322256, 0.52403039715286, 0.5351120835033184, 0.5457495885957443, 0.5559416695832925, 0.5656902693805184, 0.5750000453150745, 0.5838779353154404 ], [ 0.2421966082248459, 0.23074674834208775, 0.22040304632101612, 0.21129719901460753, 0.2035442848499031, 0.1972322639011687, 0.19241161805299117, 0.18908756627322357, 0.18721740530336548, 0.18671459683956265, 0.18745942771372673, 0.1893141718704492, 0.19213955996637844, 0.19580941394251336, 0.20022126614844385, 0.2053020443083727, 0.21100895346175733, 0.21732633090211106, 0.22425955362619912, 0.23182718233378224, 0.24005252315957304, 0.2489556937501876, 0.2585470785501489, 0.26882275484209334, 0.27976211298071757, 0.2913275537609408, 0.30346588934339497, 0.31611093692418896, 0.3291867740000885, 0.342611190684488, 0.35629898767755164, 0.37016489203119723, 0.38412597246150804, 0.3981035200435163, 0.4120244167546839, 0.42582204718914957, 0.43943682370336173, 0.45281639814851093, 0.4659156290403779, 0.4786963650443684, 0.4911270963420064, 0.5031825161909703, 0.5148430265325905, 0.5260942141554993, 0.5369263177569888, 0.5473337011852649, 0.557314344065177, 0.5668693577576945, 0.5760025320347507, 0.5847199158371972 ], [ 0.2533095447454172, 0.24244969802594268, 0.23265635360318368, 0.22404169661820197, 0.21670115832566325, 0.21070550482365816, 0.20609349943709668, 0.20286680989052233, 0.20098878264503184, 0.200388032918579, 0.20096664452048374, 0.20261157985026135, 0.2052071599285892, 0.20864643248411774, 0.21283979137379924, 0.2177200131560243, 0.22324362053151922, 0.22938900868396234, 0.23615207466108343, 0.24354023585163453, 0.2515657649246192, 0.26023932183062093, 0.26956442597763797, 0.2795333912554624, 0.29012497609576504, 0.30130373143206113, 0.3130208115952448, 0.32521587856254375, 0.3378196844184315, 0.35075694449175465, 0.3639491872967427, 0.3773173595167762, 0.3907840536452721, 0.40427530011308793, 0.41772192012558257, 0.4310604706330419, 0.4442338322412447, 0.45719149865374836, 0.46988962635956466, 0.48229089889311766, 0.49436425337140766, 0.5060845096536685, 0.5174319352715891, 0.528391772721131, 0.5389537499950217, 0.5491115904066696, 0.5588625337610698, 0.5682068776722299, 0.5771475452038055, 0.5856896829154703 ], [ 0.26553466380952684, 0.2552565787043213, 0.2459975687123711, 0.23785207003076586, 0.23089844147833788, 0.2251932388089424, 0.22076623390440683, 0.21761727207266565, 0.2157159570112685, 0.21500469115027715, 0.215404878720977, 0.21682536575616632, 0.21917171457568901, 0.22235483673720127, 0.2262977994123127, 0.2309401077610525, 0.2362392666904119, 0.24216982541741836, 0.24872037795320984, 0.2558891507622247, 0.2636788795201788, 0.272091669694877, 0.2811244513732491, 0.2907654848676567, 0.30099217379731324, 0.31177023329713943, 0.3230540808982842, 0.3347881936858147, 0.3469091173423603, 0.3593478138803909, 0.3720320780979687, 0.38488881795408003, 0.39784606380726556, 0.410834634020908, 0.42378943384009704, 0.43665039926386, 0.4493631192720935, 0.46187918092511415, 0.4741562854948662, 0.48615818253931325, 0.49785446475677403, 0.5092202610287778, 0.5202358592476714, 0.530886284911691, 0.5411608563658843, 0.5510527331041033, 0.5605584697480644, 0.5696775851471828, 0.5784121534314461, 0.5867664217236177 ], [ 0.27867975251395455, 0.26896491441244785, 0.260216392737524, 0.25251311595978493, 0.24591914823690508, 0.24047970396760449, 0.23621791650044902, 0.23313304443909313, 0.23120069348511055, 0.23037532864425325, 0.23059491338266905, 0.23178707167589652, 0.2338758696292419, 0.23678824048477662, 0.24045922250365748, 0.2448354629674248, 0.24987676326229877, 0.25555572617672756, 0.2618557853500484, 0.2687680454030198, 0.2762874448976988, 0.28440877452318536, 0.29312303928791583, 0.30241455142268714, 0.31225899694292286, 0.32262255991661, 0.3334620433312691, 0.3447258167468157, 0.35635535970838894, 0.3682871549788615, 0.38045470694300415, 0.3927905040255036, 0.4052277961553993, 0.41770210891111664, 0.4301524587735762, 0.4425222663084166, 0.454759986083013, 0.46681948515903327, 0.47866020812779037, 0.49024716791969325, 0.5015507997709662, 0.5125467121197119, 0.5232153637859163, 0.5335416921942865, 0.5435147130027846, 0.5531271075043942, 0.562374810660676, 0.5712566096162148, 0.5797737600073711, 0.5879296252707257 ], [ 0.29256097957625316, 0.28338437748458034, 0.27511825315131627, 0.2678283904314532, 0.2615672087686236, 0.256371101499291, 0.2522584531913027, 0.24922874264852954, 0.24726305125982398, 0.24632610461328217, 0.2463697152840935, 0.24733723593812992, 0.2491684492113892, 0.25180426188852745, 0.25519063843392564, 0.2592813671399922, 0.2640394499913325, 0.26943710161176665, 0.27545450830812007, 0.28207762489466515, 0.2892953701379004, 0.29709661706953766, 0.3054673590466905, 0.31438836890798777, 0.3238335682612966, 0.3337692058716559, 0.34415383006297906, 0.3549389484597685, 0.36607021005474916, 0.3774889213827465, 0.38913371517781536, 0.4009422169598195, 0.41285259248027756, 0.42480489839006547, 0.43674219408371295, 0.44861140136041405, 0.4603639194280732, 0.4719560163923831, 0.483349025977718, 0.49450938130447814, 0.5054085174948643, 0.516022672855808, 0.5263326152742706, 0.5363233168770216, 0.545983596360581, 0.55530574493241, 0.5642851486529429, 0.572919917185334, 0.5812105265552763, 0.5891594814795306 ], [ 0.3070076256572829, 0.29834079119687834, 0.2905274018559438, 0.2836223457329838, 0.2776687413228147, 0.2726962461769039, 0.2687199359754585, 0.2657399807243118, 0.26374228056556026, 0.2627001066977153, 0.2625766431724173, 0.2633281778530369, 0.2649075831683336, 0.2672676850841845, 0.27036414686545335, 0.274157578503918, 0.2786146992953506, 0.2837085069458456, 0.2894175251175563, 0.2957243016819023, 0.30261340399687175, 0.31006919803948135, 0.31807370018640013, 0.32660475396045857, 0.3356347163067974, 0.3451297522978094, 0.35504974976932435, 0.3653487909001975, 0.3759760658408121, 0.3868770875092536, 0.39799506431053355, 0.40927230287923555, 0.42065153879324657, 0.43207712292034695, 0.4434960196408536, 0.45485859757459657, 0.46611921228235814, 0.4772365936125141, 0.4881740585769942, 0.4988995748590884, 0.5093857013276893, 0.5196094311997429, 0.5295519615182697, 0.5391984099698707, 0.5485374971553826, 0.5575612095136033, 0.5662644553412152, 0.5746447238388642, 0.5827017548823514, 0.5904372252765597 ], [ 0.32186441182199693, 0.3136776430284051, 0.306287555894618, 0.2997401477733354, 0.29407120623906013, 0.2893053067716847, 0.28545526799242305, 0.2825221781255194, 0.2804960623483863, 0.2793571922975977, 0.27907795634593335, 0.27962512887561336, 0.2809623164363503, 0.2830523313552175, 0.2858592532616926, 0.2893499816726307, 0.29349514860194553, 0.29826933832684416, 0.3036506422867982, 0.3096196520591474, 0.31615805416435605, 0.3232470291928493, 0.33086566852169524, 0.33898960310213266, 0.34758999449144334, 0.35663297758129514, 0.3660795791200875, 0.3758860774456851, 0.38600472502353617, 0.39638473018180914, 0.40697338735407296, 0.41771725264390963, 0.42856327864122834, 0.4394598441537694, 0.45035763678948315, 0.46121036636134966, 0.4719753033951222, 0.48261364913751603, 0.4930907516100774, 0.5033761870316503, 0.5134437280782979, 0.5232712206872636, 0.5328403900688478, 0.5421365947659844, 0.5511485453685815, 0.5598680021093542, 0.5682894632128683, 0.5764098536465831, 0.5842282218915033, 0.5917454505387655 ], [ 0.33699217437043494, 0.32925602490173134, 0.3222611230862858, 0.31604628499161985, 0.31064156437141427, 0.30606772522068243, 0.3023360693436253, 0.2994486640084819, 0.2973989864909504, 0.2961729646595705, 0.29575035019274465, 0.29610632041625257, 0.2972131736172483, 0.2990419669593496, 0.30156394864169817, 0.3047516563065637, 0.3085795891625525, 0.3130244078471657, 0.3180646688723778, 0.32368015374643955, 0.3298508996390921, 0.33655607156820355, 0.3437728297651851, 0.3514753376650425, 0.35963402779650205, 0.36821520069629116, 0.37718098420468416, 0.38648963560267663, 0.3960961336224263, 0.40595298497988763, 0.4160111612005801, 0.4262210841747592, 0.43653358977555057, 0.4469008143787776, 0.45727696605414747, 0.4676189582058637, 0.4778868970947169, 0.4880444253368679, 0.49805893109351806, 0.5079016375482283, 0.5175475898982206, 0.5269755579897836, 0.5361678723968207, 0.5451102105902721, 0.5537913482018788, 0.5622028884914387, 0.5703389811552728, 0.57819603968041, 0.5857724646282296, 0.5930683785658242 ], [ 0.3522675205463466, 0.3449537036364748, 0.3383277460399392, 0.33242269414711434, 0.32726412862563176, 0.3228699541975998, 0.319250457882073, 0.31640864086388326, 0.31434081222519783, 0.3130374140710178, 0.3124840284658452, 0.3126624990959884, 0.31355208701996345, 0.3151305724499777, 0.31737521486768056, 0.3202634928915032, 0.3237735634544424, 0.32788440641957095, 0.33257565387427696, 0.33782713944697135, 0.34361823694535554, 0.3499270835916217, 0.3567297961168553, 0.3639997853431224, 0.37170725727642867, 0.3798189599321383, 0.3882982008969188, 0.39710512717938407, 0.4061972313100928, 0.4155300290070163, 0.42505784489080634, 0.43473464273673346, 0.44451484345878534, 0.4543540848874414, 0.46420989003690977, 0.47404222307255395, 0.483813923323695, 0.4934910167678517, 0.5030429112325079, 0.5124424862290627, 0.5216660911388671, 0.5306934667768571, 0.5395076055302287, 0.5480945646378771, 0.5564432460151391, 0.5645451545537088, 0.5723941452005628, 0.5799861674590846, 0.5873190143410373, 0.5943920812831354 ], [ 0.36758193153871255, 0.3606637965601533, 0.35438262137962123, 0.3487668213082802, 0.3438384792289058, 0.3396133396026225, 0.3361010012232212, 0.3333052920264817, 0.33122480008560096, 0.3298535275340471, 0.32918162835306525, 0.3291961864591275, 0.3298819872228237, 0.3312222337319042, 0.3331991595635609, 0.3357944937743489, 0.33898974258741377, 0.34276626672536825, 0.3471051532122088, 0.35198690381038666, 0.3573909855485116, 0.36329530767019264, 0.3696756998170938, 0.3765054659811179, 0.38375507770212397, 0.39139205044896447, 0.3993810229925707, 0.4076840352304771, 0.41626097913462984, 0.4250701827478248, 0.43406907939092865, 0.4432149130538562, 0.45246543500194136, 0.46177955419254424, 0.4711179134261464, 0.48044337279649496, 0.48972139091014405, 0.4989203018894691, 0.5080114920818452, 0.5169694846571253, 0.5257719430359872, 0.5343996055881801, 0.542836164533445, 0.5510681017208375, 0.559084493175881, 0.5668767931736484, 0.5744386072652407, 0.5817654622669822, 0.5888545797981101, 0.5957046585832498 ], [ 0.3828406215498221, 0.3762933406671126, 0.37033484703755515, 0.3649898273648087, 0.36027760950160864, 0.35621228156128315, 0.3528029554061962, 0.35005414705645627, 0.34796624243377894, 0.3465360159508354, 0.3457571708614078, 0.34562087275354586, 0.34611624996392415, 0.34723083643063146, 0.3489509338165502, 0.35126187166471484, 0.35414814838451, 0.3575934433295693, 0.3615805015566895, 0.36609090714135833, 0.37110477591828295, 0.37660041116666904, 0.3825539731384375, 0.3889392135366772, 0.39572731880747575, 0.40288689277799655, 0.4103840923142955, 0.4181829122870101, 0.42624560092614533, 0.43453317549574066, 0.4430060019674199, 0.45162440090294403, 0.4603492442629607, 0.4691425131734738, 0.4779677935707272, 0.4867906940232625, 0.4955791770697912, 0.5043038015720677, 0.5129378785812607, 0.5214575469738385, 0.5298417776879961, 0.5380723169244295, 0.5461335793448286, 0.5540125022928009, 0.5616983715489137, 0.5691826282661115, 0.5764586656410822, 0.5835216226638635, 0.5903681810323437, 0.5969963700814845 ], [ 0.3979613388107611, 0.3917619113507142, 0.3861059168825342, 0.3810150195752057, 0.37650635099408736, 0.3725927001318813, 0.36928280642594524, 0.36658172415473705, 0.36449122561105257, 0.3630102130332505, 0.36213511427995215, 0.3618602431244831, 0.3621781103711426, 0.363079675837438, 0.3645545335094714, 0.3665910236055016, 0.36917626715709156, 0.37229612231790515, 0.3759350676241989, 0.3800760255484066, 0.38470014856795753, 0.38978659761791173, 0.39531234719285985, 0.401252051132708, 0.4075779979547623, 0.4142601752918304, 0.42126645121694606, 0.4285628679909507, 0.43611403292594275, 0.4438835829654518, 0.45183469490759304, 0.45993061194937573, 0.4681351589192476, 0.4764132224155561, 0.4847311772219254, 0.49305724603683054, 0.5013617851014408, 0.5096174932956615, 0.5177995464383776, 0.5258856617663347, 0.5338560998807624, 0.5416936129178747, 0.5493833484352164, 0.5569127186431626, 0.564271244282199, 0.57145038177498, 0.5784433413758612, 0.5852449029917772, 0.5918512352327053, 0.5982597221284676 ], [ 0.41287320878788014, 0.407000361641484, 0.40162840236778075, 0.3967765198335621, 0.3924600656442392, 0.3886907788653711, 0.3854770828216655, 0.3828244220086954, 0.3807356079886936, 0.37921114739816925, 0.3782495317119183, 0.3778474756864633, 0.37800009801061357, 0.37870104263982746, 0.3799425423110755, 0.38171542728694025, 0.38400908342657825, 0.3868113652800634, 0.390108472738252, 0.39388480384774444, 0.39812280099252007, 0.40280281153135955, 0.40790298587633395, 0.4133992349957924, 0.4192652651926362, 0.4254727012470035, 0.43199130068603847, 0.4387892533713163, 0.44583355302250477, 0.4530904216461549, 0.460525764589995, 0.4681056331340448, 0.4757966728536572, 0.48356653892860657, 0.4913842635321141, 0.49922056484802907, 0.5070480916618263, 0.5148416015045384, 0.5225780737770263, 0.5302367620336834, 0.5377991916339758, 0.5452491103121516, 0.5525723999424417, 0.5597569579821506, 0.566792556857974, 0.5736706890199582, 0.580384404614224, 0.5869281478012837, 0.5932975967420312, 0.5994895112471568 ], [ 0.4275156650735518, 0.4219497027990537, 0.41684481802301604, 0.41221814576634763, 0.40808356573476745, 0.40445193819365205, 0.4013313892168929, 0.39872761503561843, 0.39664417702692045, 0.3950827637463319, 0.3940434032715731, 0.3935246166604803, 0.3935235102522863, 0.39403580993745674, 0.39505584402871774, 0.39657648321838834, 0.39858904696357006, 0.40108318628735007, 0.4040467540038445, 0.4074656749164137, 0.41132383026509595, 0.4156029719340052, 0.4202826819262919, 0.4253403908457445, 0.4307514654753125, 0.43648937035460544, 0.44252590222416943, 0.4488314901777089, 0.45537554915058726, 0.4621268705731955, 0.4690540319422468, 0.47612580673480825, 0.48331155730004943, 0.4905815957571553, 0.4979075010893445, 0.505262384148844, 0.5126210958286661, 0.519960376947432, 0.5272589512524322, 0.534497565271048, 0.5416589804929458, 0.548727924555651, 0.5556910087775015, 0.5625366195991567, 0.5692547913329968, 0.5758370671575833, 0.5822763546090749, 0.588566780985257, 0.5947035531555387, 0.6006828253185262 ], [ 0.44183748123044914, 0.4365601205232826, 0.4317066477423571, 0.42729246757611355, 0.423330214843777, 0.419829986810172, 0.41679960845331926, 0.41424490309357237, 0.4121699430465481, 0.4105772598348819, 0.4094680000881309, 0.4088420204571319, 0.40869792158459634, 0.409033026593307, 0.40984331329125084, 0.4111233114155637, 0.41286597715376666, 0.4150625574349726, 0.41770245652807014, 0.4207731175152301, 0.42425993112546795, 0.4281461838958974, 0.4324130563075211, 0.43703967917171205, 0.44200325311916916, 0.44727923182865115, 0.45284156509561985, 0.4586629935322915, 0.46471538311948624, 0.47097008536526896, 0.47739830764541213, 0.4839714783973836, 0.49066159305362506, 0.4974415286741855, 0.5042853178758239, 0.5111683755610952, 0.5180676748700499, 0.5249618715057579, 0.5318313779780748, 0.5386583912789187, 0.545426879005351, 0.552122529980981, 0.5587326760169927, 0.565246191646723, 0.5716533785197555, 0.5779458407173051, 0.5841163566162031, 0.5901587521487369, 0.5960677794400735, 0.6018390039080835 ], [ 0.4557958997321709, 0.4507901091108912, 0.4461735023183669, 0.4419600020062538, 0.43816116531274296, 0.4347864039400339, 0.4318432254937809, 0.42933747154661556, 0.42727353025408693, 0.42565450592084914, 0.4244823339439304, 0.4237578361348314, 0.423480717649688, 0.42364951194059564, 0.4242614838990785, 0.42531250364977474, 0.4267969044899862, 0.4287073386099141, 0.43103464379836187, 0.4337677335367576, 0.4368935217397379, 0.44039689181900443, 0.44426071760423724, 0.44846594089690367, 0.4529917071428581, 0.45781555711621313, 0.46291366894272706, 0.4682611416175261, 0.4738323087057157, 0.4796010693677347, 0.4855412233095046, 0.4916267966813981, 0.49783234720331787, 0.504133238677682, 0.5105058773441232, 0.5169279050103811, 0.5233783463693003, 0.5298377102253288, 0.5362880463896781, 0.5427129616859994, 0.5490975997981932, 0.5554285905797626, 0.5616939749443766, 0.5678831116033249, 0.5739865717529589, 0.5799960273983911, 0.585904138386598, 0.5917044424718522, 0.5973912519053556, 0.6029595591813374 ], [ 0.4693558464579972, 0.46460570243275884, 0.46021237931403025, 0.45618850894306223, 0.4525446944769444, 0.4492897136079379, 0.44643073486968365, 0.44397352556324415, 0.44192263212857996, 0.4402815179098809, 0.4390526486141008, 0.43823752160691354, 0.4378366408051951, 0.43784944372432844, 0.4382741908618999, 0.43910782993346764, 0.44034584861148424, 0.44198212956355515, 0.44400882096907274, 0.4464162344895423, 0.4491927809734334, 0.45232495202699663, 0.4557973530041879, 0.4595927900292684, 0.4636924105057546, 0.46807589339726596, 0.47272168264211434, 0.477607254631135, 0.4827094089330873, 0.4880045705089883, 0.4934690915386344, 0.4990795416283793, 0.5048129764538228, 0.5106471766513835, 0.5165608508312416, 0.5225337987697293, 0.5285470329997008, 0.5345828590282746, 0.5406249161779944, 0.5466581825058973, 0.5526689483686205, 0.5586447639588681, 0.5645743665480926, 0.5704475932579142, 0.5762552849870708, 0.5819891866892686, 0.5876418485832219, 0.5932065321346819, 0.5986771238354798, 0.6040480589672169 ], [ 0.48248921701575587, 0.4779797816498569, 0.4737970003433099, 0.46995236253398925, 0.46645560993611346, 0.463314920949122, 0.460537102562376, 0.45812777118900067, 0.4560915059829863, 0.4544319618244194, 0.4531519338167497, 0.4522533702438878, 0.4517373359006449, 0.4516039320501972, 0.45185218264768895, 0.45247989874999467, 0.45348353421334847, 0.4548580459717279, 0.45659677154049044, 0.458691335048802, 0.4611315911934828, 0.4639056141304769, 0.4669997355874649, 0.47039863352860606, 0.47408546970300625, 0.47804207156367606, 0.4822491515580313, 0.486686554842987, 0.4913335251924972, 0.496168978299913, 0.5011717718186391, 0.5063209622584637, 0.5115960401447586, 0.5169771365118843, 0.5224451956924574, 0.5279821113390694, 0.5335708245494453, 0.5391953847559826, 0.5448409756060846, 0.5504939093445916, 0.5561415941803819, 0.5617724797634792, 0.5673759862224932, 0.5729424222367079, 0.5784628973768378, 0.5839292334875142, 0.5893338792530995, 0.594669831339698, 0.599930564693248, 0.6051099737462303 ], [ 0.4951742219079848, 0.490891442674317, 0.4869072059511999, 0.48323197539667234, 0.4798747018916076, 0.47684298889142046, 0.4741432615626858, 0.47178092377771286, 0.4697604889455877, 0.4680856738041493, 0.46675944830221905, 0.46578403910266447, 0.46516088856743654, 0.46489057494123076, 0.46497270253741424, 0.46540577288402774, 0.4661870489627882, 0.4673124249131459, 0.4687763129714192, 0.470571558090391, 0.47268938876399, 0.4751194101989072, 0.4778496432785549, 0.48086660992284497, 0.4841554626456284, 0.48770015354002233, 0.49148363575533655, 0.4954880889054563, 0.49969515885332677, 0.5040862019752016, 0.5086425242910294, 0.5133456066761954, 0.5181773086356556, 0.523120044698048, 0.5281569292453883, 0.5332718874107183, 0.5384497314429048, 0.5436762035636447, 0.5489379877553326, 0.554222694068542, 0.5595188198931204, 0.5648156931843423, 0.5701034028796876, 0.5753727217020502, 0.580615026253958, 0.5858222188069875, 0.590986654530179, 0.5961010771335837, 0.6011585650809044, 0.6061524896984847 ], [ 0.5073947796277228, 0.5033254101004697, 0.499528393364704, 0.49601326058348955, 0.4927882273079807, 0.4898603405700938, 0.4872356274029101, 0.4849192312082128, 0.48291552406903543, 0.48122818580070525, 0.47986024394482396, 0.47881407267139475, 0.4780913522901684, 0.4776929944492363, 0.47761904085958645, 0.4778685453644472, 0.4784394502981102, 0.4793284683523126, 0.4805309806451563, 0.4820409604608991, 0.4838509303174012, 0.485951957761659, 0.48833369275259203, 0.4909844468405259, 0.49389131177851836, 0.49704031287907346, 0.5004165905144315, 0.5040046017635011, 0.5077883333982051, 0.5117515171882925, 0.5158778388503816, 0.5201511327994481, 0.5245555560788399, 0.5290757363342299, 0.5336968903417765, 0.5384049112906627, 0.5431864246566559, 0.5480288140026234, 0.552920219337657, 0.5578495117097604, 0.5628062484672943, 0.5677806140883281, 0.5727633516482119, 0.5777456898926153, 0.5827192705377146, 0.5876760798731837, 0.5926083880466094, 0.5975086986130151, 0.6023697100940545, 0.6071842904584074 ], [ 0.5191399492413681, 0.515271487919958, 0.5116509868585151, 0.508287121060928, 0.5051874161218188, 0.5023583784551017, 0.4998056255561285, 0.49753400476913623, 0.495547690489597, 0.49385025202193095, 0.4924446871983728, 0.49133342005525815, 0.4905182640578515, 0.4900003552885891, 0.4897800624436869, 0.4898568822640924, 0.4902293300735571, 0.49089483538665046, 0.4918496521130329, 0.4930887917924209, 0.4946059866529542, 0.4963936872269357, 0.4984430969378453, 0.5007442436612122, 0.5032860859329256, 0.5060566493944622, 0.5090431873623928, 0.5122323581884061, 0.5156104113899364, 0.5191633743877545, 0.522877232051054, 0.5267380920550687, 0.5307323302103494, 0.5348467113239347, 0.539068482694781, 0.5433854389275434, 0.5477859582776512, 0.5522590121373144, 0.5567941504721393, 0.5613814669734132, 0.5660115483708891, 0.5706754127411401, 0.575364441750128, 0.5800703116037537, 0.5847849270786909, 0.5895003624104501, 0.5942088120769629, 0.598902553688383, 0.6035739243323398, 0.6082153108799014 ], [ 0.5304033963842322, 0.5267240404362631, 0.5232699341292715, 0.5200489604741344, 0.5170679939237924, 0.5143330154298864, 0.5118492268136329, 0.5096211546972506, 0.5076527354953725, 0.5059473749002938, 0.5045079777224185, 0.5033369466380072, 0.5024361511084986, 0.501806870242585, 0.5014497154832155, 0.5013645405756452, 0.5015503472223337, 0.5020051951212049, 0.502726124728461, 0.5037091001400097, 0.5049489780366604, 0.5064395068073665, 0.5081733578945264, 0.5101421892521215, 0.5123367387293453, 0.5147469433364674, 0.5173620788387482, 0.5201709130471673, 0.5231618655801806, 0.5263231667667622, 0.5296430087187401, 0.5331096823608478, 0.5367116952901253, 0.5404378666496167, 0.5442773966478655, 0.5482199098405974, 0.5522554727263018, 0.5563745875160828, 0.5605681650564368, 0.564827480763054, 0.5691441180324853, 0.5735099039217294, 0.5779168419256673, 0.5823570464570537, 0.5868226831758664, 0.5913059186681868, 0.5957988821916292, 0.6002936413408564, 0.6047821925997158, 0.6092564668887671 ], [ 0.541182888621728, 0.5376814992811478, 0.5343842248795375, 0.5312982119618244, 0.5284297186104313, 0.5257842161231667, 0.5233664897491556, 0.5211807302507319, 0.5192306091270522, 0.5175193319602471, 0.5160496663776665, 0.5148239433815365, 0.5138440330850623, 0.5131112980254723, 0.5126265290380039, 0.5123898700452949, 0.5124007389610046, 0.5126577521849954, 0.5131586598823173, 0.5139002984303169, 0.514878565162554, 0.5160884189392084, 0.5175239082573242, 0.5191782267197751, 0.5210437938501558, 0.5231123576028942, 0.5253751135840901, 0.5278228350493323, 0.5304460072263422, 0.5332349594331751, 0.5361799888048812, 0.5392714701534372, 0.5424999474976319, 0.545856204028519, 0.5493313086332101, 0.5529166384957527, 0.5566038786445227, 0.5603850005450688, 0.5642522228821735, 0.5681979584855122, 0.5722147518967922, 0.5762952123365244, 0.5804319468074203, 0.5846174977870822, 0.5888442894483814, 0.5931045856473766, 0.5973904620896383, 0.601693794185094, 0.6060062611874264, 0.6103193663411942 ], [ 0.5514798177329241, 0.5481458943101302, 0.5449964298541814, 0.5420378839025545, 0.5392759306191073, 0.5367155488624225, 0.5343611113646833, 0.5322164660850613, 0.5302850037049777, 0.5285697065912939, 0.5270731762485861, 0.525797638167152, 0.5247449248921139, 0.5239164399376406, 0.5233131067132674, 0.5229353078075624, 0.5227828207121968, 0.5228547563266055, 0.5231495063558512, 0.5236647050321932, 0.524397209516255, 0.5253431019550591, 0.5264977146007519, 0.5278556777466715, 0.5294109886400892, 0.5311570980991527, 0.5330870103937032, 0.5351933911192338, 0.5374686773447347, 0.5399051842619357, 0.5424952028901864, 0.5452310840573177, 0.5481053048220826, 0.5511105146542854, 0.554239559962779, 0.5574854868752432, 0.5608415234457287, 0.5643010436219944, 0.5678575162807924, 0.5715044433852229, 0.5752352917996113, 0.5790434234972707, 0.5829220288159833, 0.5868640670737112, 0.5908622182871568, 0.5949088489855187, 0.5989959942371865, 0.6031153570689992, 0.6072583255165063, 0.6114160066556145 ], [ 0.5612987476572874, 0.5581224074810477, 0.5551122599658141, 0.5522741228702538, 0.5496131177118622, 0.5471337498950083, 0.5448399881985704, 0.5427353377853409, 0.5408229016544965, 0.539105426589257, 0.537585331059629, 0.5362647141077691, 0.5351453458439531, 0.5342286416887619, 0.5335156237984432, 0.5330068741121294, 0.532702484094467, 0.5326020064771466, 0.5327044141202152, 0.533008070541457, 0.533510715749781, 0.5342094698408741, 0.5351008554632456, 0.5361808388442272, 0.5374448876857754, 0.5388880430001546, 0.5405050009434291, 0.54229019998712, 0.5442379083879654, 0.5463423068883874, 0.5485975618965635, 0.5509978850221234, 0.5535375757298164, 0.556211044953205, 0.5590128187084816, 0.5619375219858984, 0.5649798443947299, 0.568134490124053, 0.5713961156920797, 0.57475925964027, 0.5782182687495552, 0.5817672254969251, 0.5853998813321362, 0.5891095999552399, 0.592889314151352, 0.596731498938395, 0.6006281628646014, 0.6045708583182974, 0.6085507107453916, 0.6125584657676619 ], [ 0.5706469876563837, 0.5676189496901689, 0.5647401460204728, 0.5620157949116636, 0.5594504960383668, 0.5570483021998349, 0.5548127907588292, 0.5527471298937755, 0.5508541353864947, 0.5491363146047036, 0.5475958955026505, 0.5462348397608622, 0.5450548405139377, 0.5440573063708914, 0.5432433345212879, 0.5426136765632875, 0.5421687012282715, 0.5419083583762251, 0.5418321484875189, 0.5419391013966732, 0.542227767242913, 0.5426962216126207, 0.5433420856986303, 0.5441625610892331, 0.5451544776181468, 0.54631435164368, 0.5476384512583333, 0.5491228643201983, 0.5507635648848468, 0.552556473618965, 0.5544975080895942, 0.5565826194195376, 0.5588078126358492, 0.5611691490556389, 0.5636627301827025, 0.5662846637553568, 0.5690310137149239, 0.571897736884049, 0.574880609990855, 0.5779751512974362, 0.5811765414532092, 0.5844795482768393, 0.5878784599753382, 0.591367030854864, 0.5949384429011157, 0.5985852857583703, 0.6022995566753492, 0.6060726809780845, 0.6098955526391534, 0.6137585935978697 ], [ 0.5795341907445938, 0.5766457610491128, 0.5738908400308886, 0.5712740866720231, 0.5687996095404287, 0.5664710314541902, 0.5642915542937748, 0.562264019829793, 0.5603909629589817, 0.5586746545133324, 0.5571171317657769, 0.5557202158248362, 0.5544855162067377, 0.5534144239124896, 0.552508095241208, 0.5517674292731644, 0.5511930424064818, 0.5507852434994783, 0.550544013046957, 0.5504689894155149, 0.5505594645132321, 0.5508143904241077, 0.55123239756314, 0.5518118238792786, 0.5525507536296526, 0.5534470633460892, 0.5544984718822877, 0.5557025909222472, 0.5570569720853809, 0.5585591467999242, 0.5602066554320942, 0.5619970627332059, 0.5639279574622591, 0.5659969350047833, 0.5682015628763253, 0.5705393301008668, 0.5730075825181413, 0.5756034470296055, 0.5783237485777676, 0.5811649242162934, 0.584122938932428, 0.5871932079100476, 0.5903705296718301, 0.5936490340322992, 0.5970221480674449, 0.6004825824129438, 0.6040223392037823, 0.6076327419297631, 0.6113044864700475, 0.6150277116452444 ], [ 0.5879719777030941, 0.5852150353217977, 0.5825770392884172, 0.5800621280071863, 0.5776739497893479, 0.5754157216625588, 0.5732902887696354, 0.5713001808771038, 0.569447662945514, 0.5677347773464497, 0.5661633760962973, 0.5647351423530801, 0.5634516013223057, 0.562314121571959, 0.5613239085011352, 0.5604819922858935, 0.5597892129972819, 0.5592462057235876, 0.5588533884227085, 0.5586109548902951, 0.558518874681811, 0.5585769011143258, 0.5587845876518976, 0.5591413121105994, 0.5596463072732193, 0.560298695745835, 0.5610975262789365, 0.5620418083639802, 0.563130541737361, 0.5643627374963902, 0.5657374278567249, 0.5672536621409421, 0.5689104873502523, 0.5707069125881055, 0.572641857616926, 0.574714086871158, 0.5769221312518642, 0.5792642009224315, 0.5817380930497035, 0.584341098939199, 0.5870699152606801, 0.5899205640326173, 0.5928883257320303, 0.5959676893401216, 0.5991523223624934, 0.6024350629287696, 0.6058079350433515, 0.609262186995029, 0.6127883519052207, 0.6163763284634292 ], [ 0.5959735870712399, 0.5933405692798308, 0.5908130343439951, 0.5883946376271497, 0.5860885981758164, 0.5838977527042463, 0.5818246106004168, 0.5798714070192993, 0.5780401514807156, 0.5763326699044209, 0.5747506386544746, 0.5732956098791185, 0.5719690281662247, 0.5707722392317578, 0.5697064919666507, 0.5687729356398915, 0.5679726143571078, 0.5673064609815963, 0.5667752926305764, 0.566379809570494, 0.5661205988732935, 0.5659981435960838, 0.5660128375559135, 0.5661650050434757, 0.5664549241124649, 0.5668828514524908, 0.5674490463556656, 0.5681537909644792, 0.568997403873537, 0.5699802442681406, 0.5711027041207383, 0.5723651865179199, 0.5737680689264618, 0.5753116510836049, 0.5769960881595978, 0.578821310827052, 0.5807869348153456, 0.5828921633635159, 0.5851356866514669, 0.5875155827368953, 0.5900292247183386, 0.5926731987650921, 0.5954432373037368, 0.5983341710498532, 0.6013399027613301, 0.6044534046207981, 0.6076667400935454, 0.6109711100228905, 0.6143569216852691, 0.6178138785932655 ], [ 0.6035535514618334, 0.6010374376396465, 0.598614381892974, 0.5962875930924892, 0.594059892078412, 0.591933761695114, 0.5899113982512435, 0.5879947619258931, 0.586185623924299, 0.5844856086027324, 0.5828962292994185, 0.5814189171865152, 0.5800550430525957, 0.5788059324900805, 0.5776728754539059, 0.5766571315386662, 0.5757599325617514, 0.5749824841206045, 0.5743259677060785, 0.5737915447065145, 0.5733803632467569, 0.5730935683023869, 0.572932314951075, 0.5728977840161225, 0.5729911987717209, 0.5732138408649408, 0.5735670632123198, 0.5740522973883943, 0.5746710529689188, 0.5754249064396165, 0.5763154776349475, 0.5773443922185959, 0.5785132294316362, 0.5798234551758596, 0.5812763414174313, 0.5828728738307358, 0.5846136504904416, 0.5864987751980456, 0.5885277496390685, 0.5906993689598049, 0.5930116254933856, 0.595461625236499, 0.5980455212823971, 0.6007584677746589, 0.6035945970994384, 0.6065470220366727, 0.6096078635079774, 0.6127683034604899, 0.6160186613798246, 0.6193484919926601 ], [ 0.610727400414395, 0.6083216940641812, 0.6059976033215196, 0.6037579261873446, 0.6016051162783194, 0.5995413296433224, 0.5975684733700857, 0.5956882538805301, 0.5939022230379184, 0.5922118205217592, 0.590618411341195, 0.5891233178219506, 0.5877278458795634, 0.5864333058451209, 0.5852410285035432, 0.5841523773073307, 0.583168757916224, 0.5822916262694879, 0.581522496316672, 0.5808629483193105, 0.5803146383053228, 0.5798793088347185, 0.5795588007528254, 0.5793550651048348, 0.5792701739057884, 0.5793063280463853, 0.5794658603077076, 0.5797512312919059, 0.5801650160773576, 0.5807098795911341, 0.5813885390617013, 0.5822037124599011, 0.5831580525322454, 0.5842540668403745, 0.5854940250963019, 0.5868798559687384, 0.5884130363706557, 0.5900944769615414, 0.5919244081530676, 0.5939022712470716, 0.5960266194263713, 0.5982950331456203, 0.6007040540339359, 0.6032491407458634, 0.6059246493227571, 0.6087238396083199, 0.6116389081651076, 0.6146610470330902, 0.6177805266248229, 0.6209868001250721 ], [ 0.6175113898169969, 0.6152100984826936, 0.6129799093922573, 0.6108232443601349, 0.6087422205045311, 0.6067386944489138, 0.6048143086320432, 0.6029705379385947, 0.6012087350374947, 0.5995301730778313, 0.5979360847214377, 0.5964276968605492, 0.5950062607489134, 0.5936730776348791, 0.5924295202963014, 0.5912770511139721, 0.5902172374627239, 0.5892517652343074, 0.5883824512289078, 0.5876112549667145, 0.5869402901903398, 0.5863718359741453, 0.5859083469561315, 0.5855524617955433, 0.5853070085716898, 0.5851750055140885, 0.5851596552264591, 0.5852643304678806, 0.585492549606956, 0.5858479400828087, 0.5863341885926386, 0.5869549772694849, 0.5877139057932358, 0.5886144001581766, 0.5896596096563296, 0.5908522944743982, 0.5921947070854827, 0.5936884712867408, 0.5953344632367639, 0.5971326991365408, 0.5990822342436052, 0.6011810776951647, 0.603426127146354, 0.6058131265272086, 0.6083366493272513, 0.6109901087850681, 0.6137657952570366, 0.6166549399337357, 0.6196478030318322, 0.6227337836731968 ], [ 0.6239222577171909, 0.6217198707310498, 0.6195789512513467, 0.6175015785831313, 0.6154895636114956, 0.613544490876934, 0.6116677630280438, 0.6098606461231217, 0.6081243143852401, 0.6064598932194872, 0.6048684995588235, 0.603351278895169, 0.601909438650904, 0.6005442778282015, 0.5992572131158734, 0.5980498018148666, 0.5969237620479128, 0.5958809907355743, 0.5949235797464177, 0.5940538304670061, 0.5932742667989926, 0.5925876462941038, 0.5919969688075021, 0.5915054817150013, 0.5911166804317164, 0.5908343027215753, 0.5906623151296848, 0.5906048898296375, 0.5906663702760283, 0.590851224300626, 0.5911639836906294, 0.5916091698297158, 0.5921912056458039, 0.5929143148610584, 0.5937824103369307, 0.5947989740996746, 0.5959669323648733, 0.5972885294977212, 0.598765205297675, 0.6003974802387932, 0.6021848533005667, 0.6041257167746055, 0.6062172919347179, 0.608455588735124, 0.6108353917945116, 0.6133502738872895, 0.615992637062066, 0.6187537804094073, 0.6216239924723551, 0.6245926653926703 ], [ 0.6299770061242748, 0.6278684702600502, 0.6258125976463299, 0.6238111576518302, 0.6218656845262139, 0.6199775177379849, 0.6181478449082033, 0.6163777460258033, 0.6146682377279024, 0.6130203165834752, 0.6114350005170964, 0.609913367733812, 0.6084565927371495, 0.6070659792497479, 0.6057429900309006, 0.6044892737206082, 0.6033066889123205, 0.6021973256581761, 0.6011635245384702, 0.6002078932849804, 0.5993333207453805, 0.5985429877292381, 0.5978403740060072, 0.5972292604571598, 0.596713725145855, 0.5962981318865822, 0.5959871098011157, 0.5957855223592126, 0.595698424540671, 0.5957310070296868, 0.5958885267639379, 0.5961762236999697, 0.5965992243029207, 0.5971624329915208, 0.5978704135281977, 0.5987272630914549, 0.599736482451399, 0.6009008462370383, 0.6022222776870746, 0.6037017324740356, 0.6053390961567572, 0.6071330995362298, 0.6090812556701175, 0.6111798215655514, 0.6134237866585147, 0.615806889155347, 0.6183216602207128, 0.6209594949135573, 0.623710747762539, 0.6265648499921223 ], [ 0.6356927081908879, 0.63367340141334, 0.6316987379657178, 0.6297702086352489, 0.6278890997629187, 0.6260565321458393, 0.6242735027045131, 0.6225409277772755, 0.6208596869719643, 0.6192306666189259, 0.6176548020184287, 0.6161331178453872, 0.6146667662492861, 0.6132570623510757, 0.6119055169761466, 0.6106138665596352, 0.6093841002068336, 0.6082184838808673, 0.6071195816203664, 0.6060902735650747, 0.6051337703960313, 0.6042536235930173, 0.6034537306937614, 0.6027383345287807, 0.6021120152267768, 0.6015796736628485, 0.6011465049788705, 0.6008179608625224, 0.6005996994438914, 0.6004975219646891, 0.6005172957948793, 0.6006648639053578, 0.6009459415336964, 0.6013660014733665, 0.6019301501371872, 0.6026429972478766, 0.6035085226436143, 0.6045299442050122, 0.6057095912662256, 0.607048788029425, 0.6085477514327591, 0.6102055076165783, 0.6120198305974927, 0.6139872060185354, 0.6161028219361527, 0.61836058758375, 0.6207531799784992, 0.6232721171776995, 0.6259078560055855, 0.6286499112158976 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
hartmann6: -0.0778091 (SEM: 0)
x1: 0.63458
x2: 0.176737
x3: 0.777269
x4: 0.613891
x5: 0.660853
x6: 0.704404", "Arm 10_0
hartmann6: -0.380212 (SEM: 0)
x1: 0.196433
x2: 0.0226757
x3: 0.242024
x4: 0.207609
x5: 0.611927
x6: 0.911383", "Arm 11_0
hartmann6: -0.583376 (SEM: 0)
x1: 0.0440097
x2: 0.192389
x3: 0.377749
x4: 0.442401
x5: 0.465967
x6: 0.30007", "Arm 12_0
hartmann6: -1.6106 (SEM: 0)
x1: 0.330772
x2: 0.368949
x3: 0.363253
x4: 0.380512
x5: 0.155903
x6: 0.616362", "Arm 13_0
hartmann6: -1.85926 (SEM: 0)
x1: 0.287121
x2: 0.324009
x3: 0.356923
x4: 0.365169
x5: 0.166141
x6: 0.596033", "Arm 14_0
hartmann6: -2.03452 (SEM: 0)
x1: 0.238379
x2: 0.266719
x3: 0.347494
x4: 0.346491
x5: 0.170067
x6: 0.575979", "Arm 15_0
hartmann6: -2.28353 (SEM: 0)
x1: 0.172717
x2: 0.218906
x3: 0.382558
x4: 0.335899
x5: 0.17538
x6: 0.60967", "Arm 16_0
hartmann6: -2.35009 (SEM: 0)
x1: 0.109694
x2: 0.233142
x3: 0.427889
x4: 0.307123
x5: 0.178532
x6: 0.632251", "Arm 17_0
hartmann6: -2.27172 (SEM: 0)
x1: 0.0768223
x2: 0.214709
x3: 0.391534
x4: 0.368487
x5: 0.194651
x6: 0.677802", "Arm 18_0
hartmann6: -2.73317 (SEM: 0)
x1: 0.151869
x2: 0.169254
x3: 0.434747
x4: 0.275345
x5: 0.203366
x6: 0.674002", "Arm 19_0
hartmann6: -2.84523 (SEM: 0)
x1: 0.200991
x2: 0.119624
x3: 0.44608
x4: 0.235346
x5: 0.226646
x6: 0.714291", "Arm 1_0
hartmann6: -0.0192442 (SEM: 0)
x1: 0.0151501
x2: 0.829026
x3: 0.12746
x4: 0.54458
x5: 0.641685
x6: 0.952581", "Arm 20_0
hartmann6: -2.46217 (SEM: 0)
x1: 0.171408
x2: 0.131226
x3: 0.38267
x4: 0.190713
x5: 0.212948
x6: 0.740176", "Arm 21_0
hartmann6: -3.03637 (SEM: 0)
x1: 0.214004
x2: 0.103926
x3: 0.486873
x4: 0.280354
x5: 0.240698
x6: 0.685561", "Arm 22_0
hartmann6: -2.85333 (SEM: 0)
x1: 0.204275
x2: 0.0437911
x3: 0.561739
x4: 0.289041
x5: 0.237209
x6: 0.676117", "Arm 23_0
hartmann6: -3.19618 (SEM: 0)
x1: 0.240996
x2: 0.131561
x3: 0.479197
x4: 0.291592
x5: 0.26674
x6: 0.655545", "Arm 24_0
hartmann6: -3.21967 (SEM: 0)
x1: 0.246362
x2: 0.170455
x3: 0.498586
x4: 0.254516
x5: 0.28253
x6: 0.635244", "Arm 25_0
hartmann6: -3.19533 (SEM: 0)
x1: 0.230524
x2: 0.117977
x3: 0.458876
x4: 0.247796
x5: 0.283335
x6: 0.617518", "Arm 26_0
hartmann6: -3.08036 (SEM: 0)
x1: 0.316302
x2: 0.140468
x3: 0.478416
x4: 0.257635
x5: 0.277086
x6: 0.627862", "Arm 27_0
hartmann6: -3.28653 (SEM: 0)
x1: 0.202306
x2: 0.161937
x3: 0.480446
x4: 0.273759
x5: 0.287021
x6: 0.645348", "Arm 28_0
hartmann6: -3.31844 (SEM: 0)
x1: 0.191562
x2: 0.14858
x3: 0.483471
x4: 0.272962
x5: 0.309765
x6: 0.665909", "Arm 2_0
hartmann6: -0.0576683 (SEM: 0)
x1: 0.0799383
x2: 0.555853
x3: 0.169447
x4: 0.412083
x5: 0.779421
x6: 0.448343", "Arm 3_0
hartmann6: -0.0472933 (SEM: 0)
x1: 0.657353
x2: 0.943917
x3: 0.756923
x4: 0.0775618
x5: 0.120324
x6: 0.353318", "Arm 4_0
hartmann6: -0.0398775 (SEM: 0)
x1: 0.812888
x2: 0.0362684
x3: 0.803039
x4: 0.554338
x5: 0.000707027
x6: 0.371636", "Arm 5_0
hartmann6: -0.000565015 (SEM: 0)
x1: 0.0106335
x2: 0.454275
x3: 0.0317208
x4: 0.955978
x5: 0.78306
x6: 0.761874", "Arm 6_0
hartmann6: -1.01533 (SEM: 0)
x1: 0.408876
x2: 0.459731
x3: 0.356421
x4: 0.391628
x5: 0.118121
x6: 0.663589", "Arm 7_0
hartmann6: -0.00613225 (SEM: 0)
x1: 0.782639
x2: 0.956367
x3: 0.883402
x4: 0.00513333
x5: 0.960213
x6: 0.22616", "Arm 8_0
hartmann6: -0.0333256 (SEM: 0)
x1: 0.171071
x2: 0.146003
x3: 0.870055
x4: 0.6982
x5: 0.299267
x6: 0.0507671", "Arm 9_0
hartmann6: -0.0345116 (SEM: 0)
x1: 0.856245
x2: 0.88228
x3: 0.128791
x4: 0.522858
x5: 0.0968765
x6: 0.547021" ], "type": "scatter", "x": [ 0.6345803737640381, 0.19643269293010235, 0.044009679928421974, 0.3307716345939427, 0.28712144523660493, 0.23837850836795255, 0.1727170562689478, 0.10969446034723844, 0.07682229559902103, 0.1518686324946271, 0.200991020479014, 0.015150059014558792, 0.17140835817780894, 0.21400356490589917, 0.2042751663225212, 0.240995720731154, 0.24636239020622935, 0.23052374160767553, 0.31630167890595307, 0.20230591468414857, 0.19156183052597178, 0.07993831858038902, 0.6573533108457923, 0.8128883009776473, 0.010633493773639202, 0.4088763138279319, 0.7826388161629438, 0.1710712779313326, 0.8562453100457788 ], "xaxis": "x", "y": [ 0.17673711478710175, 0.0226757125928998, 0.19238927122205496, 0.36894898007440285, 0.324008950084348, 0.2667185191290881, 0.2189061474683112, 0.23314213367632092, 0.21470940389444604, 0.16925383003437916, 0.11962449837612377, 0.8290264755487442, 0.13122620536621904, 0.10392628515806508, 0.04379108721058173, 0.13156076815087, 0.17045516893340912, 0.11797696929632358, 0.14046801720924837, 0.1619366337970507, 0.1485798481900465, 0.5558529254049063, 0.9439172176644206, 0.03626835159957409, 0.45427547488361597, 0.4597307797521353, 0.9563671611249447, 0.14600341767072678, 0.8822799418121576 ], "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.0778091 (SEM: 0)
x1: 0.63458
x2: 0.176737
x3: 0.777269
x4: 0.613891
x5: 0.660853
x6: 0.704404", "Arm 10_0
hartmann6: -0.380212 (SEM: 0)
x1: 0.196433
x2: 0.0226757
x3: 0.242024
x4: 0.207609
x5: 0.611927
x6: 0.911383", "Arm 11_0
hartmann6: -0.583376 (SEM: 0)
x1: 0.0440097
x2: 0.192389
x3: 0.377749
x4: 0.442401
x5: 0.465967
x6: 0.30007", "Arm 12_0
hartmann6: -1.6106 (SEM: 0)
x1: 0.330772
x2: 0.368949
x3: 0.363253
x4: 0.380512
x5: 0.155903
x6: 0.616362", "Arm 13_0
hartmann6: -1.85926 (SEM: 0)
x1: 0.287121
x2: 0.324009
x3: 0.356923
x4: 0.365169
x5: 0.166141
x6: 0.596033", "Arm 14_0
hartmann6: -2.03452 (SEM: 0)
x1: 0.238379
x2: 0.266719
x3: 0.347494
x4: 0.346491
x5: 0.170067
x6: 0.575979", "Arm 15_0
hartmann6: -2.28353 (SEM: 0)
x1: 0.172717
x2: 0.218906
x3: 0.382558
x4: 0.335899
x5: 0.17538
x6: 0.60967", "Arm 16_0
hartmann6: -2.35009 (SEM: 0)
x1: 0.109694
x2: 0.233142
x3: 0.427889
x4: 0.307123
x5: 0.178532
x6: 0.632251", "Arm 17_0
hartmann6: -2.27172 (SEM: 0)
x1: 0.0768223
x2: 0.214709
x3: 0.391534
x4: 0.368487
x5: 0.194651
x6: 0.677802", "Arm 18_0
hartmann6: -2.73317 (SEM: 0)
x1: 0.151869
x2: 0.169254
x3: 0.434747
x4: 0.275345
x5: 0.203366
x6: 0.674002", "Arm 19_0
hartmann6: -2.84523 (SEM: 0)
x1: 0.200991
x2: 0.119624
x3: 0.44608
x4: 0.235346
x5: 0.226646
x6: 0.714291", "Arm 1_0
hartmann6: -0.0192442 (SEM: 0)
x1: 0.0151501
x2: 0.829026
x3: 0.12746
x4: 0.54458
x5: 0.641685
x6: 0.952581", "Arm 20_0
hartmann6: -2.46217 (SEM: 0)
x1: 0.171408
x2: 0.131226
x3: 0.38267
x4: 0.190713
x5: 0.212948
x6: 0.740176", "Arm 21_0
hartmann6: -3.03637 (SEM: 0)
x1: 0.214004
x2: 0.103926
x3: 0.486873
x4: 0.280354
x5: 0.240698
x6: 0.685561", "Arm 22_0
hartmann6: -2.85333 (SEM: 0)
x1: 0.204275
x2: 0.0437911
x3: 0.561739
x4: 0.289041
x5: 0.237209
x6: 0.676117", "Arm 23_0
hartmann6: -3.19618 (SEM: 0)
x1: 0.240996
x2: 0.131561
x3: 0.479197
x4: 0.291592
x5: 0.26674
x6: 0.655545", "Arm 24_0
hartmann6: -3.21967 (SEM: 0)
x1: 0.246362
x2: 0.170455
x3: 0.498586
x4: 0.254516
x5: 0.28253
x6: 0.635244", "Arm 25_0
hartmann6: -3.19533 (SEM: 0)
x1: 0.230524
x2: 0.117977
x3: 0.458876
x4: 0.247796
x5: 0.283335
x6: 0.617518", "Arm 26_0
hartmann6: -3.08036 (SEM: 0)
x1: 0.316302
x2: 0.140468
x3: 0.478416
x4: 0.257635
x5: 0.277086
x6: 0.627862", "Arm 27_0
hartmann6: -3.28653 (SEM: 0)
x1: 0.202306
x2: 0.161937
x3: 0.480446
x4: 0.273759
x5: 0.287021
x6: 0.645348", "Arm 28_0
hartmann6: -3.31844 (SEM: 0)
x1: 0.191562
x2: 0.14858
x3: 0.483471
x4: 0.272962
x5: 0.309765
x6: 0.665909", "Arm 2_0
hartmann6: -0.0576683 (SEM: 0)
x1: 0.0799383
x2: 0.555853
x3: 0.169447
x4: 0.412083
x5: 0.779421
x6: 0.448343", "Arm 3_0
hartmann6: -0.0472933 (SEM: 0)
x1: 0.657353
x2: 0.943917
x3: 0.756923
x4: 0.0775618
x5: 0.120324
x6: 0.353318", "Arm 4_0
hartmann6: -0.0398775 (SEM: 0)
x1: 0.812888
x2: 0.0362684
x3: 0.803039
x4: 0.554338
x5: 0.000707027
x6: 0.371636", "Arm 5_0
hartmann6: -0.000565015 (SEM: 0)
x1: 0.0106335
x2: 0.454275
x3: 0.0317208
x4: 0.955978
x5: 0.78306
x6: 0.761874", "Arm 6_0
hartmann6: -1.01533 (SEM: 0)
x1: 0.408876
x2: 0.459731
x3: 0.356421
x4: 0.391628
x5: 0.118121
x6: 0.663589", "Arm 7_0
hartmann6: -0.00613225 (SEM: 0)
x1: 0.782639
x2: 0.956367
x3: 0.883402
x4: 0.00513333
x5: 0.960213
x6: 0.22616", "Arm 8_0
hartmann6: -0.0333256 (SEM: 0)
x1: 0.171071
x2: 0.146003
x3: 0.870055
x4: 0.6982
x5: 0.299267
x6: 0.0507671", "Arm 9_0
hartmann6: -0.0345116 (SEM: 0)
x1: 0.856245
x2: 0.88228
x3: 0.128791
x4: 0.522858
x5: 0.0968765
x6: 0.547021" ], "type": "scatter", "x": [ 0.6345803737640381, 0.19643269293010235, 0.044009679928421974, 0.3307716345939427, 0.28712144523660493, 0.23837850836795255, 0.1727170562689478, 0.10969446034723844, 0.07682229559902103, 0.1518686324946271, 0.200991020479014, 0.015150059014558792, 0.17140835817780894, 0.21400356490589917, 0.2042751663225212, 0.240995720731154, 0.24636239020622935, 0.23052374160767553, 0.31630167890595307, 0.20230591468414857, 0.19156183052597178, 0.07993831858038902, 0.6573533108457923, 0.8128883009776473, 0.010633493773639202, 0.4088763138279319, 0.7826388161629438, 0.1710712779313326, 0.8562453100457788 ], "xaxis": "x2", "y": [ 0.17673711478710175, 0.0226757125928998, 0.19238927122205496, 0.36894898007440285, 0.324008950084348, 0.2667185191290881, 0.2189061474683112, 0.23314213367632092, 0.21470940389444604, 0.16925383003437916, 0.11962449837612377, 0.8290264755487442, 0.13122620536621904, 0.10392628515806508, 0.04379108721058173, 0.13156076815087, 0.17045516893340912, 0.11797696929632358, 0.14046801720924837, 0.1619366337970507, 0.1485798481900465, 0.5558529254049063, 0.9439172176644206, 0.03626835159957409, 0.45427547488361597, 0.4597307797521353, 0.9563671611249447, 0.14600341767072678, 0.8822799418121576 ], "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.886041148568926, 0.8865747008945328, 0.887541853803458, 0.8889455720021439, 0.8907884326767803, 0.8930728036081627, 0.8958009982982276, 0.8989753736870034, 0.9025983337922199, 0.9066722093023937, 0.9111990014800854, 0.9161800074073365, 0.9216153754063128, 0.927503662450262, 0.9338414684688046, 0.9406232025690823, 0.9478410012130241, 0.955484782805187, 0.9635423996729708, 0.971999841917172, 0.9808414548232005, 0.9900501451941269, 0.9996075654784646, 1.0094942743269215, 1.0196898775609486, 1.0301731554289164, 1.0409221818138605, 1.0519144398462297, 1.063126936871677, 1.0745363203070177, 1.0861189947554042, 1.097851239894245, 1.1097093280836956, 1.1216696403299553, 1.1337087791233103, 1.1458036767050341, 1.157931697451537, 1.17007073326081, 1.1821992910532937, 1.1942965717346776, 1.2063425401954564, 1.2183179861325655, 1.2302045756636628, 1.2419848938655882, 1.2536424785014026, 1.265161845307837, 1.2765285052993345, 1.2877289746060834, 1.2987507774071634, 1.309582442545611 ], [ 0.8857582977668482, 0.886318717720168, 0.8873132423542369, 0.8887443209801201, 0.8906140094115131, 0.8929241923113476, 0.8956767923342632, 0.8988739257181644, 0.9025179574392108, 0.9066114125528533, 0.9111567191218807, 0.9161557931198206, 0.921609519278137, 0.9275172174753588, 0.9338761938125315, 0.9406814515047836, 0.9479255892501334, 0.9555988656159562, 0.9636893767009383, 0.9721832877273892, 0.9810650714183392, 0.990317725649485, 0.9999229605458145, 1.0098613566991061, 1.0201125015491677, 1.030655112101565, 1.041467151044508, 1.0525259413674983, 1.063808282550984, 1.075290569644863, 1.0869489152115477, 1.0987592731801, 1.1106975630968035, 1.1227397929922358, 1.134862179044087, 1.1470412603294329, 1.1592540071719906, 1.1714779218552849, 1.1836911307557947, 1.1958724672296497, 1.208001544845633, 1.2200588207893455, 1.2320256494629618, 1.2438843264722963, 1.2556181233285646, 1.2672113132991147, 1.2786491889219098, 1.2899180717563066, 1.3010053149804315, 1.3118992994665086 ], [ 0.8860118546816151, 0.8866038611186873, 0.8876301915487264, 0.8890927157021948, 0.8909928800799871, 0.893331974287606, 0.89611139849862, 0.899332887231758, 0.902998632448505, 0.9071112467449665, 0.9116735236552885, 0.9166879919926678, 0.9221563188747989, 0.9280786702254765, 0.9344531591956311, 0.9412754859646077, 0.9485388085815769, 0.9562338165291195, 0.964348936603697, 0.9728705943284623, 0.9817834733735273, 0.9910707428878313, 1.000714245227537, 1.0106946496947353, 1.0209915828721983, 1.0315837461595088, 1.0424490289031463, 1.053564622714779, 1.0649071399791326, 1.0764527374752872, 1.0881772445361928, 1.100056294206365, 1.1120654553373206, 1.1241803633790834, 1.1363768476876022, 1.1486310533838888, 1.160919556106068, 1.1732194683356882, 1.1855085363241937, 1.1977652269667423, 1.209968804260934, 1.222099395236874, 1.234138045454987, 1.2460667643382368, 1.2578685607398923, 1.2695274692506966, 1.2810285678247335, 1.2923579873540387, 1.3035029138534784, 1.3144515839320974 ], [ 0.8868056773469233, 0.8874338164943465, 0.8884962543727116, 0.8899942349665835, 0.8919285240787006, 0.8942997162994011, 0.8971085615670229, 0.9003562644864185, 0.9040446909027378, 0.9081764055462296, 0.9127544739573764, 0.9177820032400572, 0.9232614692490559, 0.9291939575895679, 0.9355784879370095, 0.9424115640073848, 0.9496870069208507, 0.9573960360412632, 0.965527504708372, 0.9740681926334073, 0.983003085563598, 0.9923156100339301, 1.0019878191194025, 1.0120005395823797, 1.0223334949273273, 1.0329654174503529, 1.0438741588811076, 1.0550368054988448, 1.066429800433573, 1.078029073471149, 1.0898101770634812, 1.1017484262902397, 1.1138190400871737, 1.1259972810023162, 1.1382585909365495, 1.150578720666797, 1.1629338513591845, 1.1753007067032382, 1.1876566547006748, 1.1999797985055858, 1.2122490560264123, 1.2244442282628505, 1.2365460565639073, 1.24853626916273, 1.2603976174723772, 1.272113902722849, 1.2836699935860159, 1.2950518354782177, 1.306246452253471, 1.3172419410075706 ], [ 0.8881409754327388, 0.8888094288934554, 0.8899119337455754, 0.8914490845770188, 0.8934209195676498, 0.8958272620062235, 0.898668102776915, 0.901943977993519, 0.9056562707791499, 0.9098073449216991, 0.9144004157318828, 0.9194391005805886, 0.9249266790756605, 0.9308652054618786, 0.9372546889734574, 0.9440925349492433, 0.9513733296319026, 0.9590889247158709, 0.9672287025214377, 0.9757798984931837, 0.9847278987015037, 0.9940564787744176, 1.0037479846422501, 1.0137834709452667, 1.0241428157853267, 1.0348048273501143, 1.045747353016627, 1.0569473968349226, 1.0683812475293448, 1.0800246164797203, 1.0918527834634726, 1.1038407470634795, 1.1159633763666283, 1.128195560700974, 1.1405123545247415, 1.1528891150671137, 1.165301630844242, 1.1777262396803163, 1.190139935321903, 1.2025204621302297, 1.2148463976670456, 1.2270972232571653, 1.2392533828222316, 1.2512963304415368, 1.263208567215313, 1.2749736680907986, 1.2865762993675192, 1.298002227630801, 1.309238320877058, 1.3202725425930117 ], [ 0.8900163824840355, 0.8907287791671314, 0.891874755587477, 0.8934542576762577, 0.895466579146748, 0.8979107299496449, 0.9007858682447468, 0.9040917538788423, 0.9078291504883348, 0.9120000706366365, 0.9166077400940467, 0.9216561838884441, 0.9271494353614165, 0.933090520087199, 0.9394804807501693, 0.9463176955896602, 0.9535976046132957, 0.9613127918497024, 0.9694532754465601, 0.9780068554618813, 0.9869594240109245, 0.9962952035661262, 1.0059969189743974, 1.0160459248533311, 1.0264223112600066, 1.0371050054271511, 1.048071880867094, 1.0592998793854134, 1.0707651472000734, 1.0824431834693136, 1.0943089978800298, 1.1063372732428154, 1.1185025289901644, 1.1307792818287516, 1.1431422003653842, 1.155566251173712, 1.1680268344081195, 1.1804999076558884, 1.192962097222889, 1.2053907964675539, 1.2177642511352442, 1.230061631909517, 1.242263094597158, 1.254349828513139, 1.266304093736523, 1.2781092479795473, 1.2897497638553717, 1.3012112373513143, 1.3124803883185598, 1.323545053779788 ], [ 0.8924281398078903, 0.8931873988301026, 0.8943795131501072, 0.8960038042665022, 0.8980588369294806, 0.9005428071124264, 0.9034540153922067, 0.9067913892224436, 0.9105549821876131, 0.9147463348469814, 0.9193685461223029, 0.9244259156704306, 0.9299231229000222, 0.9358640970509021, 0.9422508926509441, 0.9490828842777623, 0.9563564280979103, 0.9640649322172433, 0.9721991603634647, 0.9807475938560674, 0.989696744959583, 0.9990313874376668, 1.0087347151633073, 1.0187884561268463, 1.029172968672984, 1.0398673396117812, 1.0508494956765346, 1.0620963329724704, 1.073583864204911, 1.0852873804928083, 1.0971816230901308, 1.109240959924539, 1.121439562129017, 1.13375157638264, 1.1461512896733437, 1.1586132839078005, 1.1711125785436922, 1.1836247600670275, 1.1961260976734527, 1.2085936449398178, 1.2210053276043744, 1.2333400178231924, 1.2455775954545403, 1.257698997051916, 1.2696862533344235, 1.2815225159570225, 1.2931920744327803, 1.3046803640673363, 1.3159739657606073, 1.327060598511975 ], [ 0.8953703784788073, 0.8961786102231836, 0.8974186714031801, 0.8990893040633288, 0.9011883909428633, 0.9037133572100441, 0.9066616772989895, 0.9100314558258689, 0.9138220124611625, 0.918034348202234, 0.9226713198836374, 0.9277373470749918, 0.9332375840033068, 0.939176708708297, 0.9455576805815206, 0.9523808298516665, 0.9596434548302459, 0.9673398663678265, 0.9754616848948781, 0.9839981972264161, 0.9929366581389151, 1.0022625031208927, 1.0119594878247626, 1.0220097864389464, 1.032394078954699, 1.0430916479981125, 1.054080496049406, 1.0653374860725793, 1.0768385033956613, 1.0885586338167155, 1.1004723517831498, 1.1125537125066536, 1.1247765425452436, 1.1371146243499184, 1.1495418713073342, 1.1620324907783888, 1.1745611334727422, 1.1871030281893582, 1.1996341015005885, 1.2121310823749143, 1.2245715920458535, 1.236934219660096, 1.2491985843957247, 1.2613453848475613, 1.273356436542704, 1.285214698485416, 1.2969042896439653, 1.3084104962886378, 1.3197197710735187, 1.3308197247291031 ], [ 0.8988354667365119, 0.8996939514022384, 0.90098288225797, 0.9027004845952648, 0.9048440346354825, 0.9074102714848606, 0.910395930378875, 0.9137983699980237, 0.9176162240462988, 0.921849948389747, 0.926502075633884, 0.9315769793133741, 0.9370800609167748, 0.9430165083914258, 0.9493899933116536, 0.9562016940629913, 0.963449836844616, 0.9711296968569015, 0.9792338600620464, 0.9877525471011748, 0.9966738821630562, 1.0059840747289575, 1.015667533224602, 1.0257069460716186, 1.0360833617107037, 1.0467762878921927, 1.0577638192259697, 1.0690227935121366, 1.0805289721898155, 1.092257237787358, 1.1041818006999633, 1.1162764082013963, 1.128514549731539, 1.1408696538106455, 1.1533152731888299, 1.1658252559366677, 1.1783739010822933, 1.1909360981045465, 1.2034874501249866, 1.2160043810320031, 1.2284642270486519, 1.2408453134474702, 1.2531270172423081, 1.2652898167653646, 1.27731532908076, 1.2891863362027047, 1.3008868010844967, 1.312401874328869, 1.3237178925441688, 1.3348223692380337 ], [ 0.9028143760596593, 0.903723624010817, 0.9050615297534412, 0.9068258798235114, 0.9090134439265689, 0.9116203951165021, 0.9146428625767151, 0.9180775907532679, 0.9219226326492227, 0.9261779429635775, 0.9308456769733873, 0.9359299948464996, 0.9414362850651425, 0.9473699525669145, 0.9537351289306788, 0.9605336820354241, 0.9677647158052805, 0.9754245106704456, 0.9835067169092101, 0.9920026121683749, 1.0009013120059302, 1.0101899049531375, 1.0198535333813132, 1.0298754565817652, 1.0402371268209263, 1.0509182962550343, 1.0618971603577816, 1.0731505349252053, 1.0846540590162583, 1.0963824144956684, 1.1083095530805567, 1.1204089230438044, 1.132653689359179, 1.1450169427071086, 1.1574718942041629, 1.1699920539006088, 1.1825513920096997, 1.1951244825166798, 1.2076866293098063, 1.2202139753206507, 1.2326835953933257, 1.2450735737528595, 1.257363067034061, 1.2695323538806111, 1.2815628721436692, 1.2934372447072229, 1.3051392949504899, 1.3166540528318134, 1.327967752542921, 1.3390678226441255 ], [ 0.9072970163933346, 0.9082568969098187, 0.9096432144361323, 0.9114534077295579, 0.9136838589696246, 0.9163303201802239, 0.919388477237912, 0.9228546231237063, 0.9267263638096664, 0.9310032190685411, 0.935686928768597, 0.9407812810181901, 0.9462913936808648, 0.9522225909698976, 0.9585791987118863, 0.965363594717221, 0.9725756862438775, 0.9802127761291072, 0.9882696561406857, 0.9967387639017001, 1.0056103081101841, 1.0148723406433027, 1.0245107982607464, 1.0345095484318114, 1.0448504661409674, 1.055513554611916, 1.0664771105749158, 1.0777179267813286, 1.0892115208356221, 1.1009323788568142, 1.1128542036943887, 1.1249501594026763, 1.1371931057888276, 1.1495558187563044, 1.1620111937341677, 1.1745324306931624, 1.1870932001420267, 1.1996677901295287, 1.2122312347094995, 1.2247594246104345, 1.2372292010299293, 1.2496184335784208, 1.261906083450395, 1.2740722529208446, 1.2860982222603325, 1.2979664751434812, 1.3096607135954925, 1.3211658634856673, 1.332468071534748, 1.3435546947598591 ], [ 0.9122725016541728, 0.913282412831444, 0.9147161058102542, 0.9165707718956457, 0.9188425356880583, 0.9215268842068268, 0.9246192312334404, 0.9281155842582165, 0.9320132332165216, 0.9363113249563906, 0.9410111496523759, 0.9461159859185292, 0.9516304624935846, 0.9575595702901591, 0.963907598166192, 0.9706772674699589, 0.9778692054361474, 0.985481729264933, 0.9935108150528672, 1.001950125321267, 1.0107910253564, 1.0200225784569013, 1.029631544018372, 1.039602408329826, 1.0499174677325556, 1.060556969498137, 1.071499304412108, 1.0827212387129375, 1.0941981710920419, 1.105904401368154, 1.1178133997576347, 1.1298980683641038, 1.1421309890344862, 1.154484653826932, 1.1669316759533483, 1.179444980239208, 1.1919979729653891, 1.204564691506497, 1.2171199345332595, 1.2296393737593747, 1.2420996483341333, 1.2544784430389238, 1.2667545514638565, 1.278907925331548, 1.2909197111117408, 1.302772275035154, 1.3144492175758118, 1.3259353784262153, 1.3372168329440601, 1.3482808810011873 ], [ 0.9177293273786089, 0.918788375103317, 0.9202681342881205, 0.9221656525845806, 0.9244769273840598, 0.9271973317788087, 0.9303221661770893, 0.9338472982108955, 0.9377698087222659, 0.9420885163213485, 0.9468042312802392, 0.9519196217570522, 0.9574386756358181, 0.9633658776068003, 0.9697053167901749, 0.9764599307299964, 0.9836309873170705, 0.99121778431892, 0.9992174798073614, 1.0076249720341408, 1.0164327916820237, 1.0256310120219132, 1.035207202228841, 1.0451464467946872, 1.0554314406444325, 1.0660426555354283, 1.0769585639022399, 1.0881559024082237, 1.0996099577332525, 1.1112948597226087, 1.1231838704555848, 1.1352496611457532, 1.1474645716210563, 1.1598008493245633, 1.172230866365585, 1.1847273142452495, 1.1972633765961622, 1.20981288072503, 1.2223504290081908, 1.234851511331198, 1.2472925998248627, 1.2596512271637357, 1.2719060496776116, 1.284036896493948, 1.2960248058881532, 1.3078520499721793, 1.3195021488038654, 1.330959874950038, 1.3422112494868315, 1.3532435303710781 ], [ 0.9236554654830056, 0.9247626246436581, 0.9262870411352774, 0.9282257186691912, 0.9305746470614523, 0.9333292173272376, 0.9364847472837003, 0.9400370769260488, 0.9439831543648346, 0.9483214998713769, 0.9530524281309107, 0.9581779466227198, 0.963701331830388, 0.9696264824773352, 0.9759572063190501, 0.9826965792640442, 0.9898464400651111, 0.9974070062650631, 1.0053765631781961, 1.013751191314124, 1.0225245310584243, 1.0316876075719843, 1.0412287423874842, 1.051133566166104, 1.0613851303900907, 1.071964102568765, 1.0828490228447636, 1.0940165990094535, 1.1054420197153763, 1.117099270019791, 1.1289614378818604, 1.1410010041220235, 1.1531901113822378, 1.1655008098182331, 1.1779052787503475, 1.1903760244658577, 1.2028860549559386, 1.2154090327059266, 1.2279194068300028, 1.2403925259097166, 1.2528047329058816, 1.2651334434869381, 1.2773572090747887, 1.2894557658569075, 1.3014100709599052, 1.3132023269244772, 1.324815995568932, 1.336235802275154, 1.3474477316809277, 1.3584390157112949 ], [ 0.9300383983540046, 0.9311926413236457, 0.9327603372355228, 0.9347385341033675, 0.9371233141471726, 0.9399101899365957, 0.943094592986237, 0.946672413302774, 0.950640518100373, 0.9549971564655231, 0.9597421596017253, 0.9648768834279525, 0.9704039045960046, 0.9763265442512519, 0.9826483215079043, 0.9893724168752708, 0.9965011760658362, 1.0040356458191777, 1.0119751290330972, 1.0203167687811707, 1.0290551945278448, 1.038182270227846, 1.047686971345511, 1.0575553961121633, 1.0677708965701043, 1.0783143030309374, 1.0891642119958724, 1.1002973099207771, 1.1116887104942519, 1.1233122890754825, 1.1351410033212388, 1.1471471933024868, 1.159302857520634, 1.1715799033499879, 1.1839503717904403, 1.1963866372323928, 1.208861583393792, 1.221348756816201, 1.2338224993950004, 1.2462580614256926, 1.2586316966136064, 1.2709207404372977, 1.2831036731926595, 1.2951601689793015, 1.30707113182841, 1.318818720111071, 1.3303863603108084, 1.3417587511900209, 1.3529218593296541, 1.3638629069718728 ], [ 0.9368651211154406, 0.9380655115089331, 0.939675229496032, 0.9416914390169352, 0.9441103905821181, 0.9469277917217096, 0.9501392517878264, 0.9537407617386727, 0.9577291477115372, 0.962102425517547, 0.966859991711735, 0.9720026186781301, 0.9775322658235079, 0.9834517545871743, 0.9897643620988079, 0.9964733670693617, 1.0035815542251652, 1.0110906763605192, 1.0190008924985787, 1.027310229593489, 1.0360141302345396, 1.0451051395468227, 1.054572757681013, 1.064403454287618, 1.0745808193158717, 1.085085814127839, 1.0958970863999478, 1.1069913175921098, 1.1183435792551875, 1.1299276817743322, 1.1417165051998646, 1.1536823063188515, 1.1657969992160766, 1.1780324085650566, 1.1903604960910092, 1.2027535613182698, 1.2151844180490514, 1.2276265481528976, 1.2400542342638956, 1.2524426729412133, 1.2647680697798973, 1.277007717880136, 1.2891400610063128, 1.3011447426936837, 1.3130026424935524, 1.324695900486489, 1.3362079311373631, 1.3475234275132701, 1.3586283568362494, 1.3695099482953725 ], [ 0.9441221371184645, 0.9453678961097474, 0.9470185601422635, 0.9490714624208754, 0.9515230741776632, 0.9543693452978146, 0.9576061034318996, 0.9612294766895346, 0.9652362906300408, 0.969624385424906, 0.9743928091915942, 0.9795418673477647, 0.9850730349267154, 0.9909887539639731, 0.9972921330221486, 1.0039865489041182, 1.011075142508272, 1.0185602173139852, 1.0264425848788554, 1.034720933925831, 1.0433913066864187, 1.0524467444069827, 1.0618771264048503, 1.071669191206507, 1.0818067050680191, 1.0922707345008595, 1.1030399815366239, 1.1140911481599285, 1.125399305505103, 1.1369382516967947, 1.1486808486875906, 1.1605993330363227, 1.1726655985856203, 1.1848514508454693, 1.1971288339412716, 1.2094700315252787, 1.221847843283941, 1.2342357387314078, 1.246607989946459, 1.2589397848340729, 1.271207322402992, 1.2833878914593784, 1.2954599340328519, 1.3074030947750772, 1.3191982575035273, 1.3308275700034295, 1.3422744581466388, 1.35352363033662, 1.3645610732419164, 1.375374039736144 ], [ 0.951795461391827, 0.9530860172952482, 0.954776779603845, 0.9568652876319901, 0.9593482669579936, 0.962221939153065, 0.9654823776139213, 0.9691258803715023, 0.9731493220490914, 0.9775504461788095, 0.982328067894056, 0.9874821722780671, 0.99301390660126, 0.9989254663243904, 1.005219864402479, 1.011900563127804, 1.0189709551503596, 1.0264337128838754, 1.0342900704359377, 1.042539134001671, 1.0511773166983402, 1.0601979632841603, 1.0695911860582867, 1.0793438943396145, 1.0894399766476592, 1.099860587599922, 1.1105844955906947, 1.1215884566119216, 1.1328475897816788, 1.1443357389567488, 1.156025811451119, 1.1678900894431108, 1.1799005125494948, 1.1920289317541268, 1.204247335803391, 1.2165280516220507, 1.2288439204635195, 1.241168451517468, 1.2534759546335454, 1.2657416537248092, 1.2779417823157495, 1.290053662604162, 1.3020557693219763, 1.3139277796061057, 1.3256506100256555, 1.3372064418561962, 1.3485787356412433, 1.359752236035371, 1.3707129678808356, 1.3814482244280302 ], [ 0.9598706351265458, 0.9612056650580605, 0.9629359498870919, 0.9650592595375899, 0.9675725953413947, 0.9704724704740464, 0.9737552277970115, 0.9774173719699828, 0.9814558877320154, 0.985868516733513, 0.990653971168065, 0.9958120699115065, 1.0013437856663177, 1.0072511857355626, 1.0135372384579062, 1.0202054547729937, 1.0272593532635292, 1.0347017785283097, 1.0425341501817285, 1.0507557482156744, 1.0593631346780181, 1.0683497761107725, 1.0777058844294827, 1.0874184546172334, 1.097471455224096, 1.107846121853248, 1.1185213090116868, 1.1294738657739107, 1.1406790113119891, 1.1521106952771525, 1.163741934619317, 1.175545122870224, 1.1874923106760227, 1.1995554579531926, 1.211706658873018, 1.2239183412557362, 1.2361634420742458, 1.2484155607516008, 1.2606490918605324, 1.272839338734725, 1.2849626094029212, 1.2969962961658816, 1.3089189400566028, 1.3207102813563874, 1.3323512972806613, 1.34382422789759, 1.3551125912987927, 1.3662011889997485, 1.3770761025098184, 1.3877246819744562 ], [ 0.9683327454669426, 0.9697122130205972, 0.9714817603534298, 0.9736394050352868, 0.9761824396571989, 0.979107686327286, 0.982411782972378, 0.9860914836358046, 0.9901439520111065, 0.9945670277399372, 0.9993594474411736, 1.004521003753526, 1.0100526221737218, 1.0159563267767486, 1.02223505821363, 1.0288923121673739, 1.0359315926987314, 1.0433557194173146, 1.0511660724549368, 1.0593618825107638, 1.0679396631807034, 1.0768928457105849, 1.0862116302997624, 1.095883030457685, 1.1058910660579757, 1.116217055867483, 1.1268399659172967, 1.1377367801858083, 1.1488828705148528, 1.1602523513930494, 1.1718184116214072, 1.1835536191321117, 1.1954301978504631, 1.207420276982758, 1.2194961138843592, 1.2316302920062203, 1.2437958955222277, 1.2559666622241836, 1.268117116198061, 1.280222681707058, 1.2922597796168551, 1.3042059076183878, 1.3160397054331399, 1.3277410061269883, 1.33929087460841, 1.350671634343691, 1.3618668832837801, 1.3728614999627535, 1.383641640694683, 1.394194728763294 ], [ 0.9771664410654232, 0.9785906287894024, 0.9803995343342087, 0.9825914365989515, 0.9851639334454885, 0.9881141742509534, 0.9914391207630621, 0.9951358225906674, 0.9992016914582016, 1.0036347575984237, 1.0084338910163195, 1.0135989675400874, 1.0191309530782793, 1.0250318712124147, 1.0313046158846577, 1.037952581657275, 1.044979113836235, 1.0523868238216116, 1.0601768546297934, 1.068348199101655, 1.0768971606329227, 1.0858170103228304, 1.0950978515994925, 1.1047266688509247, 1.1146875176013435, 1.1249618094943086, 1.1355286507096225, 1.1463652019903878, 1.1574470383254292, 1.1687484945653839, 1.1802429892861157, 1.1919033232405183, 1.2037019512232496, 1.2156112275935176, 1.2276036264429722, 1.2396519377348394, 1.2517294408550947, 1.2638100570156647, 1.2758684818966268, 1.287880299842786, 1.2998220808580685, 1.3116714615750107, 1.3234072113202386, 1.3350092843490038, 1.3464588592815996, 1.3577383667403775, 1.3688315061554162, 1.3797232526793124, 1.3903998551239851, 1.4008488258052838 ], [ 0.986355934951509, 0.9878254670148159, 0.9896742109266172, 0.9919007196600723, 0.9945029106812567, 0.997478280239776, 1.0008241435067362, 1.0045378897012267, 1.0086172391249617, 1.0130604870277304, 1.0178667163305566, 1.0230359562183042, 1.0285692565760396, 1.034468642183641, 1.0407369116193261, 1.0473772605211233, 1.0543927390991714, 1.0617855925869712, 1.069556566069658, 1.0777042673249895, 1.0862246675324223, 1.0951107867261665, 1.1043525726629242, 1.113936951110867, 1.1238480085752798, 1.134067264504543, 1.1445739947277553, 1.155345576463367, 1.1663578342271186, 1.1775853735414423, 1.1890018949510441, 1.200580484621783, 1.212293880154549, 1.2241147116127873, 1.2360157184981408, 1.2479699437634342, 1.2599509060938658, 1.271932751715366, 1.2838903869641052, 1.2957995928046797, 1.3076371224341856, 1.3193807830620439, 1.33100950291408, 1.3425033844759633, 1.3538437449612204, 1.36501314496557, 1.375995406246974, 1.3867756195502658, 1.3973401433751182, 1.4076765945632437 ], [ 0.9958849906246428, 0.9974008402461637, 0.9992902969463837, 1.0015522000962882, 1.0041848008845398, 1.0071859610952696, 1.0105533754826044, 1.0142848084952858, 1.0183783335435557, 1.0228325599852708, 1.0276468288378082, 1.0328213525852268, 1.0383572684271636, 1.0442565711680232, 1.0505218966244716, 1.057156143115699, 1.0641619470189292, 1.0715410614684564, 1.0792937130878015, 1.0874180193523226, 1.0959095354979855, 1.1047609708783888, 1.1139620817240221, 1.1234997207298785, 1.1333580088979391, 1.1435185912194, 1.153960941582595, 1.1646626896816887, 1.175599950631023, 1.18674764479248, 1.1980798004389004, 1.2095698353786162, 1.2211908158948233, 1.232915692681754, 1.2447175142025502, 1.256569618279543, 1.2684458029050214, 1.28032047732717, 1.2921687944742013, 1.303966765763151, 1.3156913593136952, 1.3273205825613186, 1.338833550240584, 1.3502105386891319, 1.3614330274074895, 1.3724837287957037, 1.3833466069752616, 1.3940068865926554, 1.4044510524867282, 1.4146668410863836 ], [ 1.0057368926782326, 1.0073003703334358, 1.0092317945191893, 1.0115303019230975, 1.0141944893082335, 1.0172225983709624, 1.0206127216325453, 1.024363020839134, 1.028471946433938, 1.0329384430610595, 1.0377621215089574, 1.0429433723320092, 1.0484833921411052, 1.0543840932075665, 1.060647874210545, 1.0672772469441516, 1.0742743390345746, 1.0816403197793278, 1.089374815761079, 1.0974753871722776, 1.105937123016067, 1.1147523886417348, 1.1239107313997843, 1.1333989277273264, 1.1432011418888686, 1.1532991628124456, 1.1636726882678532, 1.1742996317333445, 1.1851564340841936, 1.19621836821322, 1.207459829290126, 1.2188546065876977, 1.2303761349066722, 1.241997724926332, 1.2536927725664773, 1.2654349478675784, 1.2771983641174982, 1.2889577280596218, 1.300688472063877, 1.3123668691557606, 1.3239701318003936, 1.3354764953334366, 1.346865286926095, 1.358116980967087, 1.3692132417420073, 1.3801369542875783, 1.3908722442964523, 1.4014044879439402, 1.4117203125018412, 1.4218075885950614 ], [ 1.0158944077892789, 1.0175071289443611, 1.0194821169064296, 1.021818813410118, 1.0245161678312789, 1.0275728086631426, 1.0309872329611636, 1.0347580054160976, 1.0388839556153189, 1.043364358320562, 1.0481990773268297, 1.0533886493758708, 1.0589342822905987, 1.0648377434014593, 1.0711011228731477, 1.0777264726044713, 1.0847153428325533, 1.0920682599680638, 1.0997842034921879, 1.1078601416105096, 1.1162906739580907, 1.1250678091262054, 1.1341808820138504, 1.1436165972857153, 1.1533591739286635, 1.1633905621736063, 1.1736907059019286, 1.1842378284845383, 1.1950087256457305, 1.2059790540801465, 1.217123608616923, 1.2284165836570407, 1.2398318165840203, 1.2513430121103855, 1.2629239472959777, 1.2745486574334646, 1.2861916032606455, 1.2978278201085542, 1.3094330496778153, 1.3209838551821498, 1.332457720626164, 1.3438331350024604, 1.3550896622069444, 1.3662079974839174, 1.3771700112225975, 1.3879587809371767, 1.3985586122701419, 1.4089550498640326, 1.4191348789482168, 1.429086118484787 ], [ 1.0263397444699327, 1.0280035785323387, 1.0300240077404788, 1.0324007815540819, 1.035133202001548, 1.0382202815588877, 1.041660915493107, 1.045454060290317, 1.0495989067247362, 1.0540950326398246, 1.058942516950541, 1.0641419935806233, 1.0696946234742895, 1.0756019662740215, 1.0818657421768703, 1.0884874888890839, 1.0954681362407286, 1.1028075374937987, 1.1105040065476783, 1.1185539105272786, 1.1269513573847099, 1.1356880014158037, 1.1447529711542332, 1.1541329087224261, 1.1638121000792194, 1.173772671990072, 1.1839948325615786, 1.1944571358428457, 1.2051367555555772, 1.2160097573329627, 1.227051362383285, 1.2382361981296328, 1.2495385332144193, 1.2609324954787589, 1.2723922723108232, 1.2838922932498718, 1.2954073950378073, 1.3069129694997934, 1.3183850947548357, 1.329800650335714, 1.341137416851534, 1.3523741608673325, 1.363490705707877, 1.374467988921392, 1.3852881071643073, 1.3959343492898588, 1.4063912184429377, 1.416644443977748, 1.4266809840254608, 1.4364890195428166 ], [ 1.0370545203647872, 1.0387715248674296, 1.04083947748158, 1.0432584316110596, 1.0460280336724355, 1.0491476667771256, 1.052616605141046, 1.056434170811127, 1.0605998814665865, 1.0651135750664409, 1.0699754944306605, 1.0751863132949298, 1.0807470861504975, 1.0866591085068071, 1.092923682822978, 1.0995417977695183, 1.1065137426112486, 1.1138386909175695, 1.1215142948532477, 1.129536330631592, 1.1378984273960457, 1.146591898346334, 1.155605678169045, 1.1649263583247917, 1.1745383035932961, 1.1844238298399359, 1.194563423306665, 1.2049359843744432, 1.2155190823208228, 1.2262892111460302, 1.2372220395620848, 1.2482926505746375, 1.2594757677773043, 1.2707459666465981, 1.2820778699108761, 1.2934463265842435, 1.3048265745967937, 1.3161943871787503, 1.327526203308564, 1.338799242643088, 1.3499916054275058, 1.3610823579455005, 1.3720516041220256, 1.3828805439357783, 1.3935515193383297, 1.4040480484118392, 1.4143548485272714, 1.42445784929029, 1.4343441960804815, 1.4440022450011205 ], [ 1.0480197445256763, 1.0497920898803785, 1.0519097670783473, 1.0543731225557222, 1.0571821302854552, 1.0603365206133504, 1.0638359161091517, 1.067679966130302, 1.0718684693401033, 1.0764014710522445, 1.081279320473919, 1.0865026724222848, 1.0920724197791618, 1.097989547602362, 1.1042549076768462, 1.1108689226680988, 1.117831240127751, 1.1251403658053258, 1.1327933104839287, 1.1407852833793786, 1.1491094582460584, 1.157756827627482, 1.1667161489771105, 1.1759739762880967, 1.1855147640356376, 1.1953210270333328, 1.2053735396351393, 1.2156515595171686, 1.226133063993378, 1.2367949896717871, 1.247613468791434, 1.2585640576165538, 1.2696219537969997, 1.280762200706175, 1.2919598775400745, 1.30319027449421, 1.3144290527027769, 1.3256523888804967, 1.33683710479008, 1.3479607817930463, 1.3590018608449217, 1.3699397283792032, 1.3807547885955351, 1.391428522727533, 1.4019435359208887, 1.4122835923999846, 1.422433639642916, 1.432379822320601, 1.4421094867828832, 1.4516111768943476 ], [ 1.0592158197227317, 1.0610457101699928, 1.063215344097677, 1.0657253430365383, 1.068575983785932, 1.0717673119519928, 1.0752992590448252, 1.0791717551332707, 1.083384827045213, 1.0879386703656935, 1.092833682468282, 1.0980704441113651, 1.1036496393570132, 1.1095719081572084, 1.1158376328603061, 1.1224466683679042, 1.1293980342375372, 1.1366895937609998, 1.1443177481899127, 1.1522771728879064, 1.1605606165435662, 1.169158776113031, 1.1780602509170226, 1.1872515712268947, 1.1967172909830788, 1.2064401313635098, 1.2164011613958134, 1.226580002942166, 1.2369550493859074, 1.2475036895878495, 1.2582025307649334, 1.2690276156892084, 1.2799546309721364, 1.290959104222499, 1.3020165886115036, 1.3131028339154225, 1.3241939434911612, 1.3352665169195288, 1.3462977782583747, 1.3572656900053794, 1.3681490529954863, 1.378927592560967, 1.389582031369718, 1.4000941494347041, 1.4104468318558048, 1.420624104916758, 1.4306111612134538, 1.440394374535761, 1.4499613052620621, 1.4593006970534652 ], [ 1.0706225671750533, 1.0725121630419994, 1.0747359321953545, 1.0772947470529828, 1.080189155956195, 1.0834194812954137, 1.0869859181676076, 1.0908886260487112, 1.095127804413396, 1.0997037420760671, 1.1046168296438617, 1.1098675253083872, 1.1154562666607741, 1.1213833254874337, 1.1276486083948924, 1.134251412915457, 1.141190155283521, 1.1484620909491448, 1.1560630509116487, 1.1639872155321132, 1.1722269429044154, 1.1807726621971026, 1.1896128351058453, 1.1987339820891172, 1.2081207653468202, 1.21775611787281, 1.227621407165363, 1.237696622806164, 1.24796057853351, 1.2583911211506218, 1.268965340290121, 1.2796597745269291, 1.290450610529703, 1.3013138728737943, 1.3122256028445818, 1.3231620250876621, 1.3340997013546139, 1.3450156708887064, 1.3558875772203975, 1.3666937813198934, 1.3774134611977684, 1.3880266981651814, 1.3985145500691814, 1.4088591119117115, 1.419043564342509, 1.429052210591578, 1.4388705024717265, 1.448485056138898, 1.4578836583442096, 1.4670552639479748 ], [ 1.0822192736448217, 1.0841706190148572, 1.086450571400737, 1.08906022483244, 1.0920003630711668, 1.0952715425913977, 1.0988741735943905, 1.1028085921658282, 1.1070751155672123, 1.11167407197962, 1.1166057961049112, 1.1218705831895812, 1.1274685965076654, 1.1333997271637517, 1.1396634099916227, 1.1462584047108237, 1.1531825564501228, 1.1604325532509059, 1.1680036994128455, 1.1758897221942073, 1.1840826256870203, 1.1925726004462374, 1.2013479917362329, 1.2103953240978806, 1.2196993760502965, 1.2292432964129474, 1.239008752866184, 1.2489761036221534, 1.2591245840325365, 1.2694325012373913, 1.2798774312879506, 1.2904364143921494, 1.3010861449639723, 1.3118031539924973, 1.322563981901729, 1.3333453405793263, 1.3441242636425446, 1.3548782443127303, 1.365585360507997, 1.376224386955578, 1.3867748942850917, 1.3972173351993213, 1.4075331179386756, 1.417704667362088, 1.4277154740634947, 1.4375501320303776, 1.4471943654283395, 1.4566350451632761, 1.4658601959292694, 1.4748589944941215 ], [ 1.0939847589386509, 1.0959997176324363, 1.0983377045034861, 1.1010000022807107, 1.1039875910054981, 1.1073012164996998, 1.1109414549226828, 1.1149087672518456, 1.1192035367684754, 1.1238260823432533, 1.128776640723077, 1.134055312336578, 1.1396619674781552, 1.1455961130566947, 1.1518567241273523, 1.158442048646956, 1.1653493976128988, 1.1725749352467494, 1.1801134846223815, 1.1879583629141048, 1.1961012574747396, 1.2045321498343722, 1.2132392902161053, 1.2222092210474782, 1.231426844745334, 1.2408755290120954, 1.25053724196836, 1.2603927094394856, 1.2704215873142375, 1.280602642817765, 1.290913939567384, 1.3013330222677622, 1.3118370977751797, 1.322403209993745, 1.3330084066636645, 1.3436298965779883, 1.3542451961436166, 1.3648322645049933, 1.3753696266937445, 1.3858364844698847, 1.3962128146909414, 1.4064794551947921, 1.4166181783137821, 1.426611752258157, 1.4364439907158888, 1.4460997911158666, 1.4555651620908179, 1.4648272407545058, 1.4738743004741093, 1.4826957498711044 ], [ 1.1058974606021628, 1.1079776621944588, 1.1103752837567207, 1.113091761632583, 1.116128231706708, 1.1194855842832834, 1.1231645136491555, 1.1271655569170753, 1.131489116295937, 1.1361354589289334, 1.1411046890473104, 1.1463966885351706, 1.1520110241355415, 1.1579468223586495, 1.1642026164203119, 1.170776172824469, 1.177664307987187, 1.1848627070765951, 1.1923657576472912, 1.2001664095692524, 1.2082560703739396, 1.2166245418983102, 1.2252600005672918, 1.2341490203653838, 1.243276634916198, 1.252626433318251, 1.2621806834779494, 1.2719204764995335, 1.2818258860279392, 1.2918761370830731, 1.3020497796992092, 1.312324863469412, 1.32267910982096, 1.3330900794803153, 1.3435353331193713, 1.3539925836144273, 1.364439838709365, 1.3748555331702825, 1.3852186497645007, 1.3955088286041262, 1.405706464574259, 1.4157927927244869, 1.4257499616463922, 1.4355610949911286, 1.4452103414031416, 1.45468291325707, 1.4639651146861028, 1.4730443594789278, 1.4819091794979788, 1.4905492243327685 ], [ 1.1179355319370043, 1.1200823285253156, 1.1225408919020692, 1.125312776137308, 1.1283992327171897, 1.1318012529698536, 1.1355196042541618, 1.1395548552648438, 1.143907385592616, 1.1485773748688235, 1.1535647675322016, 1.1588692105570613, 1.164489963371021, 1.1704257815618504, 1.1766747785952585, 1.1832342723089462, 1.1901006250269577, 1.1972690873936918, 1.2047336562179718, 1.2124869556852431, 1.2205201493905418, 1.2288228880873702, 1.2373832952506327, 1.246187989917659, 1.2552221441079336, 1.2644695705943483, 1.2739128359320266, 1.2835333933605848, 1.2933117303391337, 1.3032275258982795, 1.3132598135617346, 1.323387146203868, 1.3335877598013914, 1.343839733574099, 1.3541211444767134, 1.364410214402098, 1.3746854487908062, 1.3849257656255813, 1.3951106140300573, 1.405220081899274, 1.4152349921745677, 1.4251369875408793, 1.4349086034781258, 1.44453332973991, 1.4539956604651718, 1.4632811332512576, 1.4723763576283624, 1.4812690334746266, 1.4899479599961731, 1.4984030359652312 ], [ 1.1300769492983478, 1.1322913829569694, 1.1348118718925326, 1.1376400523886474, 1.1407772526891709, 1.1442245242350577, 1.1479826661532582, 1.1520522390710302, 1.1564335642891574, 1.1611267046609786, 1.1661314242677832, 1.171447125185864, 1.1770727612785363, 1.1830067309081835, 1.1892467525539547, 1.1957897292832667, 1.2026316095746152, 1.2097672528723624, 1.2171903083120548, 1.2248931142593151, 1.2328666247760671, 1.241100367104021, 1.2495824320369437, 1.2582994969381447, 1.2672368793788564, 1.2763786180628025, 1.285707576894091, 1.2952055676940262, 1.3048534870812436, 1.314631463286982, 1.324519009080991, 1.334495177450465, 1.3445387171485526, 1.3546282256755469, 1.3647422976584445, 1.3748596669477742, 1.3849593410574026, 1.3950207268384407, 1.4050237465104556, 1.4149489433790858, 1.4247775767544184, 1.4344917057560205, 1.4440742618500235, 1.4535091101141626, 1.4627810993690058, 1.4718761014458055, 1.4807810399837806, 1.4894839092581358, 1.4979737836342226, 1.5062408183201295 ], [ 1.1422996248056936, 1.1445824051103193, 1.1471654603864847, 1.1500504749464868, 1.1532388172461148, 1.1567315612487274, 1.1605295008614227, 1.1646331541795016, 1.1690427543558837, 1.173758224295986, 1.1787791331086002, 1.1841046333285827, 1.1897333793245453, 1.1956634289126573, 1.2018921318570341, 1.2084160104479438, 1.2152306385025815, 1.2223305257521748, 1.2297090145560314, 1.2373581952104646, 1.2452688448900695, 1.2534303936508537, 1.261830919157278, 1.2704571700912555, 1.2792946167328967, 1.288327526081769, 1.2975390581491528, 1.306911379671515, 1.3164257914125816, 1.3260628653544844, 1.3358025883511062, 1.345624509162619, 1.3555078861621395, 1.3654318333695583, 1.3753754628088, 1.385318021492786, 1.3952390216161725, 1.4051183627804225, 1.4149364452959605, 1.42467427380531, 1.4343135506554319, 1.4438367586206828, 1.4532272327421474, 1.4624692212069104, 1.4715479353404803, 1.480449588927751, 1.4891614272086022, 1.4976717460123647, 1.5059699015974413, 1.51404631184691 ], [ 1.1545815209895087, 1.1569330116556815, 1.1595789209205403, 1.1625209489857715, 1.1657604708899512, 1.1692985493067756, 1.1731359404910418, 1.1772730907006428, 1.1817101205832536, 1.1864467954294544, 1.191482479881931, 1.19681607664804, 1.2024459499398723, 1.2083698356764254, 1.214584741794236, 1.2210868431746469, 1.2278713765554317, 1.234932541224028, 1.2422634112218647, 1.2498558642213977, 1.2577005312459395, 1.2657867701173988, 1.2741026641031337, 1.2826350458539395, 1.2913695455118441, 1.3002906609104508, 1.309381847123059, 1.3186256222296135, 1.3280036860299231, 1.3374970484735835, 1.3470861647475214, 1.3567510742097213, 1.3664715406413326, 1.3762271915816389, 1.3859976547933008, 1.395762690169787, 1.405502315640271, 1.415196925849645, 1.424827402596194, 1.4343752161999004, 1.4438225171548862, 1.4531522175920164, 1.4623480622454208, 1.4713946887788758, 1.4802776774850672, 1.4889835905198907, 1.497500000973614, 1.5058155122064132, 1.5139197679858944, 1.5218034540553556 ], [ 1.1669007643961773, 1.16932097789932, 1.1720296735102729, 1.1750285377255862, 1.1783189218284245, 1.1819018473738452, 1.1857780050842306, 1.1899477450011346, 1.1944110559475625, 1.199167532769446, 1.2042163304553672, 1.2095561050637658, 1.2151849423711103, 1.2211002762160388, 1.227298799549287, 1.2337763720932797, 1.2405279291544857, 1.247547396428128, 1.2548276155424478, 1.2623602846127322, 1.2701359172722055, 1.2781438226150765, 1.286372107350512, 1.2948077003436564, 1.3034363987163768, 1.3122429338636799, 1.3212110551463567, 1.330323628644697, 1.3395627481791947, 1.3489098557821015, 1.358345868896206, 1.367851311745931, 1.3774064485358029, 1.3869914163599653, 1.3965863559372524, 1.4061715385089142, 1.4157274874479269, 1.4252350933275975, 1.4346757213853185, 1.44403131049762, 1.4532844629562096, 1.4624185245060874, 1.4714176542745354, 1.4802668843859097, 1.4889521692193146, 1.4974604244217273, 1.5057795559358358, 1.513898479434753, 1.5218071306730685, 1.529496467360255 ], [ 1.1792357557056121, 1.1817243546975829, 1.1844954182030814, 1.1875505922726926, 1.1908911775628723, 1.1945181286764996, 1.19843204730433, 1.2026331674587998, 1.2071213313221723, 1.211895954630301, 1.2169559810775796, 1.2222998259413305, 1.2279253099401513, 1.233829585198043, 1.2400090560021, 1.2464592977286548, 1.2531749777887489, 1.260149782645314, 1.2673763548517114, 1.2748462436602466, 1.28254987209602, 1.2904765225585524, 1.2986143420942184, 1.3069503675656764, 1.3154705701104734, 1.3241599175845349, 1.3330024531575622, 1.341981387870535, 1.351079204766971, 1.360277772142851, 1.3695584634945905, 1.3789022818496444, 1.38828998631394, 1.397702218844302, 1.4071196294379333, 1.4165229981154124, 1.4258933522546298, 1.4352120780085875, 1.4444610247106922, 1.4536226013394153, 1.4626798642802106, 1.4716165957899108, 1.4804173727362222, 1.4890676253524988, 1.497553685913928, 1.5058628274020425, 1.5139832923766003, 1.5219043124133098, 1.5296161185886459, 1.5371099435956919 ], [ 1.1915652744309009, 1.1941215787984476, 1.1969542507794468, 1.2000648722432599, 1.2034546698379343, 1.2071245092510103, 1.2110748837436787, 1.215305895624603, 1.2198172295696235, 1.224608117063472, 1.229677291739067, 1.2350229359949418, 1.240642619945677, 1.2465332344505458, 1.2526909206089094, 1.259110998638747, 1.2657878994093719, 1.2727151020328697, 1.2798850808146904, 1.2872892645254477, 1.2949180104223312, 1.3027605947723855, 1.3108052208813252, 1.3190390448793419, 1.3274482188198977, 1.3360179500526628, 1.3447325753649055, 1.3535756480521388, 1.3625300358728585, 1.3715780277460787, 1.3807014470409447, 1.3898817693647016, 1.3991002428544483, 1.4083380091066904, 1.4175762230207243, 1.4267961699821512, 1.435979378964751, 1.4451077302815423, 1.4541635568696583, 1.463129738148197, 1.4719897856465372, 1.4807279197619776, 1.4893291371715982, 1.4977792685903035, 1.5060650267361422, 1.5141740445276581, 1.5220949036951787, 1.5298171541324623, 1.537331324442274, 1.544628924237367 ], [ 1.2038685767393662, 1.206491575231975, 1.2093847693589765, 1.2125496561076912, 1.215987368135822, 1.2196986639066962, 1.223683912613203, 1.2279430728712435, 1.2324756643977341, 1.2372807322262256, 1.242356803448406, 1.247701836980582, 1.2533131674087796, 1.2591874445219056, 1.2653205706483097, 1.2717076383181316, 1.278342871036355, 1.285219570038107, 1.2923300697952214, 1.2996657047586475, 1.307216789381409, 1.3149726129150325, 1.322921449859911, 1.3310505863289102, 1.3393463620012418, 1.3477942268358305, 1.3563788113011563, 1.3650840085715035, 1.373893066933781, 1.3827886905342048, 1.391753146554349, 1.4007683769239465, 1.4098161127383193, 1.4188779896375818, 1.4279356625113482, 1.4369709180123604, 1.4459657834874897, 1.4549026310661821, 1.4637642757826876, 1.4725340667501579, 1.4811959705536526, 1.489734646184394, 1.498135511000074, 1.5063847973628284, 1.5144695997754687, 1.522377912503662, 1.5300986578314384, 1.5376217052458987, 1.5449378819781467, 1.5520389754391481 ], [ 1.2161254853447019, 1.218813850808579, 1.221766171120146, 1.22498384065484, 1.228467881331155, 1.2322189294610806, 1.2362372179210173, 1.2405225528821742, 1.24507428456312, 1.249891271769655, 1.2549718403638597, 1.260313736232805, 1.2659140737827144, 1.2717692814305945, 1.2778750459644992, 1.2842262579562322, 1.2908169606048014, 1.2976403044418645, 1.3046885102327668, 1.3119528421660893, 1.3194235930607245, 1.3270900828660859, 1.3349406712263476, 1.3429627843645937, 1.351142956053382, 1.3594668820027684, 1.3679194866345212, 1.3764850009301792, 1.3851470498405543, 1.3938887476191524, 1.4026927993798521, 1.4115416071690512, 1.420417378870743, 1.4293022383205216, 1.4381783350812634, 1.4470279524251328, 1.4558336121686926, 1.464578175118845, 1.4732449360078115, 1.4818177119240057, 1.4902809233850547, 1.4986196673479029, 1.5068197816087858, 1.5148679002108887, 1.5227514996460798, 1.530458935804948, 1.5379794717915307, 1.5453032968694544, 1.5524215369413117, 1.5593262570761872 ], [ 1.2283164707690155, 1.2310685781435087, 1.2340783387007497, 1.2373470293168483, 1.240875547438494, 1.244664395381222, 1.2487136604744262, 1.2530229905042884, 1.2575915641118292, 1.262418056072879, 1.2675005977094427, 1.272836733040135, 1.2784233716514204, 1.2842567396286666, 1.2903323302010095, 1.2966448559946535, 1.3031882049321772, 1.3099554018441593, 1.3169385777689244, 1.3241289487108405, 1.3315168053250965, 1.339091514621507, 1.3468415343620714, 1.3547544403969507, 1.3628169667704877, 1.371015058055031, 1.3793339330514418, 1.3877581587393544, 1.396271733169787, 1.4048581758619707, 1.4135006241902248, 1.4221819342147244, 1.430884784413665, 1.4395917808058876, 1.4482855620043438, 1.4569489028096627, 1.4655648150335798, 1.4741166443356395, 1.4825881619610966, 1.4909636503849997, 1.4992279819965937, 1.507366690099818, 1.5153660316590067, 1.5232130413798215, 1.5308955768836827, 1.5384023549005255, 1.5457229785682185, 1.5528479560785224, 1.5597687110460206, 1.566477585092171 ], [ 1.2404227235636585, 1.243236669915532, 1.2463019161257272, 1.24961960935367, 1.2531905116144315, 1.2570149821549983, 1.261092956185106, 1.2654239195844006, 1.2700068793962547, 1.2748403301552682, 1.2799222163706632, 1.2852498917873827, 1.2908200763517517, 1.2966288120963854, 1.3026714194066005, 1.3089424553156976, 1.315435675580824, 1.322144002303066, 1.3290594987715323, 1.3361733530356805, 1.3434758714568316, 1.350956483177092, 1.3586037560954678, 1.3664054245802761, 1.3743484287964174, 1.3824189652040488, 1.3906025475044952, 1.398884077077525, 1.4072479217742047, 1.4156780017982238, 1.4241578813234679, 1.432670864447569, 1.4412000940664158, 1.4497286522645496, 1.4582396608476842, 1.4667163806915955, 1.4751423086447477, 1.483501270798961, 1.4917775110333487, 1.4999557738420044, 1.5080213805759353, 1.515960298363653, 1.5237592011225878, 1.531405522231038, 1.5388874985949847, 1.5461942060103497, 1.5533155858833056, 1.5602424635238639, 1.5669665583643135, 1.5734804865715732 ], [ 1.2524262173149328, 1.2552998432968363, 1.2584183743227504, 1.261782818089881, 1.2653937927391783, 1.2692515078469133, 1.2733557422502215, 1.2777058184652874, 1.2823005736268827, 1.2871383270843573, 1.2922168450233622, 1.297533302731827, 1.3030842453784701, 1.3088655484027667, 1.3148723788107473, 1.321099158812699, 1.32753953331416, 1.3341863427716114, 1.3410316028472862, 1.3480664921464636, 1.3552813491069944, 1.3626656788489282, 1.3702081704991624, 1.3778967252021392, 1.3857184947283956, 1.393659930314716, 1.401706841121747, 1.4098444614862193, 1.418057525975422, 1.4263303511234098, 1.434646922637601, 1.4429909868051598, 1.4513461448000542, 1.4596959485845225, 1.468023997113366, 1.476314031580615, 1.4845500284958355, 1.492716289439962, 1.5007975264290436, 1.5087789419087798, 1.5166463025137984, 1.5243860058519376, 1.531985139715693, 1.5394315332758592, 1.5467137999732872, 1.553821371988735, 1.5607445263309814, 1.567474402734806, 1.5740030136969954, 1.580323247096028 ], [ 1.2643097624513648, 1.2672406746719196, 1.270410066450545, 1.2738187985372582, 1.2774673390188975, 1.28135574337936, 1.2854836318396794, 1.2898501638450752, 1.2944540097181203, 1.2992933196761633, 1.3043656906099887, 1.3096681312277387, 1.3151970263722166, 1.320948101505159, 1.3269163885054878, 1.3330961940373367, 1.3394810717964676, 1.3460637999359846, 1.3528363649009618, 1.3597899527717328, 1.366914949033768, 1.374200947470951, 1.381636768631989, 1.3892104880610652, 1.3969094742283001, 1.4047204358531191, 1.4126294780959747, 1.4206221669041925, 1.4286836006406647, 1.4367984879998321, 1.444951231121585, 1.453126012748353, 1.4613068862301373, 1.469477867163449, 1.4776230254504723, 1.485726576582615, 1.4937729709870027, 1.5017469803246162, 1.5096337796969337, 1.5174190248020003, 1.5250889231834939, 1.532630298835733, 1.5400306495627327, 1.5472781966370448, 1.5543619264612218, 1.5612716240944573, 1.5679978986649337, 1.5745322008380542, 1.580866832645411, 1.586994950096427 ], [ 1.2760570510216962, 1.2790426449025178, 1.2822602733874717, 1.2857106448411226, 1.2893940731317033, 1.2933104571395817, 1.2974592579549302, 1.3018394737170396, 1.306449612182165, 1.3112876612622792, 1.3163510579444082, 1.321636656173316, 1.327140694446181, 1.3328587640171239, 1.338785778730586, 1.3449159475840378, 1.3512427511583192, 1.357758923038952, 1.3644564372876595, 1.371326502909581, 1.3783595661066956, 1.385545320919611, 1.392872728650059, 1.40033004623552, 1.4079048635267686, 1.4155841492086907, 1.4233543049110156, 1.4312012268851042, 1.4391103744766518, 1.447066844505391, 1.4550554505690547, 1.4630608062180566, 1.471067410900739, 1.4790597375491599, 1.4870223206660265, 1.4949398437798136, 1.502797225158232, 1.510579700711105, 1.518272903070803, 1.5258629359146763, 1.5333364426885383, 1.5406806690017645, 1.547883518094119, 1.5549335989159163, 1.561820266515011, 1.5685336545799409, 1.5750647001424263, 1.581405160589084, 1.587547623265228, 1.5934855080688761 ], [ 1.2876526927316547, 1.2906901755025695, 1.293953239820653, 1.2974424380630438, 1.3011579274966414, 1.305099449549617, 1.3092663071444486, 1.3136573401106084, 1.3182708988147043, 1.3231048162786587, 1.3281563791990256, 1.3334222984234447, 1.3388986795761855, 1.344580994644715, 1.3504640554332237, 1.356541989852226, 1.3628082220363935, 1.369255457265682, 1.3758756726053707, 1.3826601140808845, 1.3895993010704029, 1.3966830384365458, 1.4039004367389896, 1.4112399406798877, 1.418689365742997, 1.4262359428030293, 1.4338663703097847, 1.4415668734973675, 1.4493232699337564, 1.4571210406126145, 1.46494540569682, 1.4727814039506835, 1.4806139748449014, 1.4884280422825267, 1.4962085988761595, 1.5039407897041202, 1.5116099944881614, 1.5192019071666567, 1.5267026118871432, 1.534098654509598, 1.5413771087995698, 1.5485256365948108, 1.5555325413519814, 1.562386814615574, 1.5690781750973342, 1.5755971002050848, 1.5819348500093222, 1.5880834837789135, 1.5940358693470784, 1.5997856856819967 ], [ 1.2990822426192172, 1.302168656167825, 1.3054742014423346, 1.3089992728650894, 1.3127438702829537, 1.3167075782607551, 1.320889543771638, 1.3252884523536757, 1.3299025029060503, 1.3347293814134795, 1.3397662340070071, 1.3450096398885554, 1.3504555847573267, 1.356099435472353, 1.3619359167595284, 1.367959090817798, 1.374162340693634, 1.380538358272994, 1.387079137684954, 1.3937759748241698, 1.4006194735833715, 1.407599559248198, 1.414705499351658, 1.4219259321213222, 1.4292489024860002, 1.4366619054465515, 1.4441519364620188, 1.4517055483627703, 1.4593089141777131, 1.466947895155082, 1.4746081131665165, 1.4822750266110112, 1.4899340088790705, 1.4975704283969502, 1.5051697292463457, 1.512717511346387, 1.5201996091917045, 1.5276021681654215, 1.534911717488183, 1.542115238925415, 1.5492002304557684, 1.5561547642016236, 1.5629675380391563, 1.5696279204342602, 1.5761259881910514, 1.5824525569443633, 1.5885992043719281, 1.5945582862402914, 1.6003229455248142, 1.6058871149545642 ], [ 1.310332220817165, 1.31346446416299, 1.316809403808054, 1.3203672756968174, 1.3241379228012, 1.328120774646235, 1.3323148255336945, 1.3367186115703547, 1.341330186700005, 1.3461470980363148, 1.3511663608952338, 1.3563844340239597, 1.3617971956147086, 1.3673999207678293, 1.3731872611268943, 1.3791532274424814, 1.3852911758281239, 1.3915937984508961, 1.3980531193484838, 1.4046604959868783, 1.4114066270724765, 1.41828156701101, 1.4252747472714864, 1.4323750047706147, 1.4395706172469365, 1.4468493454512128, 1.4541984818418194, 1.4616049053479245, 1.4690551416475834, 1.4765354283071197, 1.4840317840411181, 1.4915300812800691, 1.4990161211745894, 1.5064757101219022, 1.5138947368712665, 1.5212592492513308, 1.52855552956431, 1.5357701677108417, 1.5428901311458272, 1.5499028308210128, 1.5567961823437229, 1.5635586616741968, 1.5701793547926368, 1.5766480008904495, 1.5829550287737266, 1.5890915863051425, 1.5950495628496206, 1.6008216048217188, 1.6064011245549739, 1.611782302821092 ] ], "zauto": true, "zmax": 1.611782302821092, "zmin": -1.611782302821092 }, { "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.027283595040027152, 0.02521317147462504, 0.02330798048508816, 0.0215773347727558, 0.020030975519889752, 0.018678975532436557, 0.01753142980370458, 0.016597829690626363, 0.015886043235582025, 0.015400933333702595, 0.015142851948726851, 0.015106478215140497, 0.015280547717220021, 0.015648801371841655, 0.016192023550706022, 0.01689060995493483, 0.017726957763478133, 0.01868713456757765, 0.019761601892024652, 0.020945064877204215, 0.02223569758868068, 0.023634046249796238, 0.025141877931762785, 0.02676116488737219, 0.028493309376856873, 0.03033864097798223, 0.032296166841006335, 0.0343635261297494, 0.03653708936908202, 0.03881214594937247, 0.041183132860955624, 0.04364387017706582, 0.04618778077697487, 0.048808081693043334, 0.0514979417754754, 0.05425060525866404, 0.05705948374718881, 0.05991822064671553, 0.06282073261625248, 0.06576123258026507, 0.06873423847324799, 0.07173457136881964, 0.07475734607677703, 0.07779795673729231, 0.08085205943275892, 0.08391555338987089, 0.08698456195945192, 0.09005541423868688, 0.0931246279335995, 0.09618889384364576 ], [ 0.025421694539394413, 0.023353830875872995, 0.02145260811005523, 0.01972667173671868, 0.01818506239097167, 0.016837178712828253, 0.015692547284599564, 0.01476028512962853, 0.014048144252752215, 0.013561115171947429, 0.013299783436967662, 0.01325893261498902, 0.013427065139973172, 0.013787325452061546, 0.014319755724709596, 0.015004229771977096, 0.01582317672396149, 0.016763405923104897, 0.017816767875771557, 0.01897977486296961, 0.020252524881962344, 0.021637320293018753, 0.023137307304576516, 0.0247553496282405, 0.026493235757374334, 0.028351229220614383, 0.030327913420545603, 0.032420255563780184, 0.034623810469856395, 0.03693299569235077, 0.039341386303385906, 0.041841995132432065, 0.04442751902672301, 0.047090542666873986, 0.049823698744375325, 0.052619787590905714, 0.05547186148606541, 0.05837327960560638, 0.06131773947849458, 0.064299290290563, 0.06731233265529112, 0.07035160871503336, 0.07341218571745044, 0.07648943556831553, 0.07957901230532126, 0.08267682896807083, 0.08577903494922016, 0.08888199459271881, 0.09198226754719778, 0.09507659117712035 ], [ 0.023711437132386614, 0.021652353025003394, 0.019762133700514176, 0.018048813375293193, 0.016520753241666627, 0.015186632385030185, 0.01405525388758077, 0.013135054288283102, 0.012433199032079798, 0.011954212888331118, 0.011698298261076748, 0.011659826045965223, 0.01182674310036091, 0.01218150847579108, 0.012703557442639405, 0.013372564271138731, 0.014171444350946453, 0.015088264636552998, 0.016116763984803956, 0.017255674108478457, 0.018507294204315475, 0.019875807803926202, 0.021365725526563857, 0.02298068208985015, 0.02472267017398159, 0.026591686776159845, 0.028585706883482415, 0.030700878609627707, 0.032931840889527865, 0.0352720860290859, 0.037714314283238744, 0.04025074977285905, 0.042873403769466356, 0.045574282464395675, 0.04834554279429792, 0.05117960304566752, 0.05406921600417611, 0.05700751225220741, 0.05998802045639271, 0.06300467049469834, 0.0660517842570555, 0.06912405801516781, 0.07221653943780272, 0.07532460163524839, 0.07844391604307442, 0.08157042548643585, 0.08470031838690602, 0.0878300047692647, 0.09095609448371582, 0.094075377868421 ], [ 0.022150907448162786, 0.020105819449116106, 0.0182326948143438, 0.01653910516259636, 0.015032887080855487, 0.013722129557958953, 0.012614951155992343, 0.011718960256926838, 0.01104030663310471, 0.010582309893109128, 0.010343838430878206, 0.010317910691158129, 0.010491239082169253, 0.010845331919576292, 0.011359167488046011, 0.01201267613715739, 0.012789872641508824, 0.013680715850939938, 0.01468138486366244, 0.015793235377936584, 0.017020998613839582, 0.018370804295232166, 0.01984846049708172, 0.0214582221883511, 0.02320210186275967, 0.025079653978443837, 0.02708810545352526, 0.029222695088699444, 0.03147710603512588, 0.033843908799079954, 0.03631496498930007, 0.03888176777939684, 0.04153571243365958, 0.04426830038889598, 0.04707128531938908, 0.049936771257459066, 0.05285727265331505, 0.05582574519445236, 0.05883559483682467, 0.06188067112721458, 0.06495524965934585, 0.06805400745155654, 0.07117199416289507, 0.07430460135890196, 0.07744753147203899, 0.08059676765051228, 0.08374854533080345, 0.08689932608596038, 0.0900457740788658, 0.09318473527598979 ], [ 0.020739264658801944, 0.01871218614953198, 0.016861002684400443, 0.01519304064682274, 0.013715882986329543, 0.012437335675537795, 0.011365104527415409, 0.010506060981830814, 0.009865055963406054, 0.00944340665525723, 0.009237397272197278, 0.009237312915479712, 0.009427561743292094, 0.00978824368557472, 0.010298047038183843, 0.010937741723655452, 0.011693178739188027, 0.012556896520639935, 0.013528041444409819, 0.014610922426877409, 0.01581284534679721, 0.017141881021588194, 0.018605033954633143, 0.020207035653446608, 0.021949777291068798, 0.023832263275746883, 0.025850913596194534, 0.028000048870913397, 0.030272429893505964, 0.03265976923878806, 0.03515317191209757, 0.03774348986827121, 0.040421591933133924, 0.04317855899701653, 0.046005817332482095, 0.04889522289645218, 0.05183910808918276, 0.054830300579578724, 0.05786212194499284, 0.0609283722201911, 0.06402330506978046, 0.06714159718284739, 0.0702783146045208, 0.07342887802480919, 0.0765890285014973, 0.07975479466903422, 0.08292246215246006, 0.0860885456452242, 0.08924976390663128, 0.0924030177772164 ], [ 0.019478198858953487, 0.01747200983904763, 0.01564636747418116, 0.014008599691118203, 0.012566371280892153, 0.011327633290628606, 0.010300136861627307, 0.009490328174613797, 0.008901644458840133, 0.00853261516463209, 0.008375514493256311, 0.00841624705121436, 0.00863564635985896, 0.009011895495293226, 0.009523619938517957, 0.010153081349621689, 0.010888698891634258, 0.011726178531459335, 0.01266799734601917, 0.013721572055654666, 0.01489678727975705, 0.016203574606667787, 0.017650027636450478, 0.019241262563176535, 0.020978998623908042, 0.02286169060803183, 0.024885000124023032, 0.027042415424891792, 0.029325884151251026, 0.03172638032333394, 0.03423437137396163, 0.03684017951450206, 0.0395342468722149, 0.042307319973099, 0.04515057011419477, 0.04805566464572352, 0.05101480175492888, 0.054020718831948145, 0.0570666822635277, 0.060146464652663774, 0.06325431399521854, 0.06638491820415465, 0.06953336749555336, 0.07269511647853791, 0.07586594727593328, 0.07904193460499119, 0.082219413440287, 0.08539494964217996, 0.08856531374882512, 0.0917274579867091 ], [ 0.018373513293636012, 0.016390397939416466, 0.014593085509234266, 0.012989140531332375, 0.011586633842535495, 0.010394090538417177, 0.00941978775698748, 0.00867009327883489, 0.008146934645672274, 0.007845266355323675, 0.007751973266153303, 0.007847116509344883, 0.008106988583137527, 0.008507633928410096, 0.009027977988846421, 0.009652366452704623, 0.0103722962787963, 0.011186913036141468, 0.012102054896465987, 0.013128116793653595, 0.014277373778889792, 0.015561451839571382, 0.016989435995673045, 0.01856681393669177, 0.02029519812262535, 0.02217261880298544, 0.024194141509607053, 0.026352600336966993, 0.028639307046316755, 0.031044662055645246, 0.03355864145584708, 0.03617116267550921, 0.03887234488442641, 0.041652684344084465, 0.044503164155004736, 0.04741531506746577, 0.05038124076449532, 0.053393618012973466, 0.05644567956335711, 0.059531185689905085, 0.06264438873795174, 0.06577999389192457, 0.0689331185127713, 0.07209925174320177, 0.07527421558871084, 0.07845412830895347, 0.08163537066831936, 0.08481455537360573, 0.0879884998560881, 0.09115420242317096 ], [ 0.017436541830932524, 0.01547881997658153, 0.013712733347851112, 0.012146273381554813, 0.010788140429055853, 0.00964768392471777, 0.008733919175137066, 0.008053145477510189, 0.007605381876304707, 0.007381171530034241, 0.007361064803239363, 0.007518709214856566, 0.007825872215507297, 0.008256888399031208, 0.008791505178576709, 0.00941651433509984, 0.010126566348366114, 0.01092403111561629, 0.011817691359970036, 0.012820437579143439, 0.013946513101806977, 0.015208958700903451, 0.016617741643790318, 0.01817876665490888, 0.019893699409175545, 0.02176037335990922, 0.023773512434344557, 0.025925547854517172, 0.02820738526840371, 0.030609050835502367, 0.033120195842290874, 0.03573046817390119, 0.03842977143804243, 0.041208435325716365, 0.044057318845885235, 0.046967864391188066, 0.04993211672637115, 0.052942717595684016, 0.0559928839074775, 0.05907637534688361, 0.06218745568711332, 0.06532085089995564, 0.06847170630424591, 0.07163554435373776, 0.07480822419242689, 0.07798590374894147, 0.08116500487150542, 0.08434218179704836, 0.08751429308798692, 0.09067837704592054 ], [ 0.01668494056793112, 0.014756172610768288, 0.013025558248775344, 0.011501626501345825, 0.010193720239406758, 0.009111850077367645, 0.008265329261564583, 0.007659607885169441, 0.007291811396140259, 0.007147351070425744, 0.007200548117530539, 0.007419658446895266, 0.007773332833583374, 0.008235342526931736, 0.008786828244470574, 0.00941703411106619, 0.010123339031248431, 0.010910631154167395, 0.011789804433962383, 0.012775437149051438, 0.013883086603462998, 0.015126784268533122, 0.016517201541124325, 0.01806069358310253, 0.019759162485305896, 0.021610512063342004, 0.023609421160577987, 0.0257482065792082, 0.028017627085298376, 0.03040755569031593, 0.032907500759457184, 0.035506986386734184, 0.038195815123053756, 0.04096423860379237, 0.04380305918073513, 0.04670368151051316, 0.04965812880727229, 0.05265903480016992, 0.055699619518523494, 0.058773654809889976, 0.06187542385483608, 0.06499967774310822, 0.06814159130397784, 0.07129671974812461, 0.07446095721125692, 0.07763049794260142, 0.08080180061954091, 0.08397155606982702, 0.08713665852840431, 0.09029418043619393 ], [ 0.01614224306323324, 0.014248261917268997, 0.012559812540636272, 0.011085915443758256, 0.009836203332651137, 0.008820514972980057, 0.008047055656663757, 0.007518666251626649, 0.007228196966467588, 0.007155905055929694, 0.007271598092962272, 0.007540861550225389, 0.007931733435775547, 0.008418937401505506, 0.008985457885215499, 0.009622663879688945, 0.010329876857866233, 0.011113492532763088, 0.011985445718790467, 0.01296100529599845, 0.014056226199991943, 0.015285563590975354, 0.016660092736288896, 0.01818655556181119, 0.01986720343043036, 0.021700231881667476, 0.023680545241882723, 0.025800622852202613, 0.028051333985193615, 0.030422623689239082, 0.0329040466386291, 0.03548515775503349, 0.03815578232531508, 0.04090619150561595, 0.04372720691135877, 0.04661025383445532, 0.04954737827112846, 0.0525312391400461, 0.05555508403334324, 0.05861271453654582, 0.061698445452597506, 0.0648070610296911, 0.06793377040166004, 0.07107416380569263, 0.0742241706728064, 0.07738002034036819, 0.08053820587643155, 0.0836954513076174, 0.08684868238963268, 0.08999500094016791 ], [ 0.015835595453255934, 0.013984892844780475, 0.0123479255330375, 0.010933845439914805, 0.009751676647045576, 0.008809469008818422, 0.008112084598185838, 0.007657586616738048, 0.007433656688174904, 0.007416678665892475, 0.007575045171876425, 0.007875202735599066, 0.008287278593769619, 0.008788355210971101, 0.00936353682020333, 0.010005848507095063, 0.010715686764884883, 0.011499919320583874, 0.012370458249611721, 0.013342266754875069, 0.014431044708725615, 0.015651018718437205, 0.01701324286872253, 0.018524639409031925, 0.020187783729241675, 0.022001267039196325, 0.023960400157205138, 0.02605804020882885, 0.02828538633694388, 0.03063266084823707, 0.03308964662954422, 0.03564608490198451, 0.038291953199462964, 0.041017648065886404, 0.04381409567007883, 0.04667280984015901, 0.049585912850419606, 0.05254613053554742, 0.05554677025326001, 0.05858168787440427, 0.06164524824371547, 0.06473228229249751, 0.06783804307478321, 0.0709581623428838, 0.0740886088015074, 0.077225648829307, 0.08036581019353915, 0.08350584908300508, 0.08664272062883219, 0.08977355296006945 ], [ 0.01579153230955419, 0.013994431063137396, 0.012419475842079428, 0.011075110305563072, 0.009968286402375657, 0.009103210092880235, 0.008479230304207514, 0.008088318382217081, 0.007913471070831676, 0.007929546166869948, 0.008106769896875659, 0.008415423166300985, 0.008829767216415296, 0.009330268041577543, 0.009904347910231145, 0.010546330286996012, 0.011257016641906667, 0.012042936767799247, 0.012915132438717494, 0.013887436634144691, 0.01497443939232375, 0.01618949699237103, 0.01754314797924338, 0.019042164078718414, 0.020689270969741515, 0.02248341393681744, 0.024420366173556845, 0.026493480591025225, 0.02869443628788085, 0.03101389276131307, 0.03344201631635779, 0.0359688766104534, 0.03858472862028134, 0.04128020156056297, 0.04404641625602435, 0.046875049602844596, 0.04975836107472802, 0.052689192731139374, 0.055660951257760036, 0.05866757828236505, 0.06170351349271037, 0.06476365382458998, 0.06784331107555415, 0.07093816963861886, 0.0740442455678039, 0.07715784783075476, 0.08027554233449864, 0.08339411910371818, 0.08651056282870644, 0.08962202687169238 ], [ 0.01603060751295726, 0.014297149372039061, 0.012793120295588075, 0.0115249947201286, 0.010496026606438632, 0.009704962128323714, 0.009144710295630925, 0.008801541564837688, 0.00865548971869081, 0.008682230997517304, 0.008855973556395296, 0.009152416531305486, 0.009550992429174404, 0.010036140919546238, 0.01059781321157717, 0.011231533465980008, 0.011938194310591604, 0.012723545803777178, 0.013597248843910179, 0.01457145974900695, 0.015659101460642217, 0.016872122692290405, 0.01822006609015732, 0.019709162911491857, 0.021342009751161257, 0.023117739549725447, 0.02503252140864025, 0.027080215474101048, 0.029253045787289492, 0.03154220558592986, 0.03393835544727449, 0.03643200649334513, 0.03901379869514331, 0.041674691794099016, 0.04440608760165639, 0.04719990058540076, 0.05004859068110927, 0.052945169233255374, 0.05588318632394421, 0.05885670563090324, 0.06186027133434427, 0.06488887038644574, 0.06793789257072665, 0.07100309012906837, 0.07408053825387652, 0.07716659738379439, 0.08025787796625351, 0.08335120813627209, 0.08644360459030534, 0.08953224679689772 ], [ 0.016562695660580523, 0.014900028489945507, 0.013471317825082225, 0.012279810442298455, 0.011323985684038466, 0.010596745836696234, 0.010085274322863241, 0.009771846241755363, 0.009635523634544597, 0.009654290146842655, 0.009807060476251052, 0.010075190112134565, 0.010443408059186893, 0.010900301454776995, 0.011438542633384952, 0.012054990510315439, 0.012750666055052002, 0.013530478702142376, 0.014402557911642336, 0.015377148199604231, 0.0164651934988366, 0.01767686658085148, 0.019020323870787628, 0.02050088489186852, 0.022120700952367414, 0.023878853880379233, 0.025771753587002493, 0.02779368903564318, 0.029937412705094646, 0.03219467971070051, 0.034556701573206595, 0.03701450299094154, 0.03955918687672659, 0.04218212084839201, 0.04487506054528903, 0.047630224260488185, 0.05044033121259806, 0.05329861334397532, 0.05619880830550322, 0.05913513944582909, 0.06210228717947973, 0.06509535501138394, 0.06810983267337761, 0.07114155821401733, 0.07418668042009313, 0.07724162259376657, 0.08030304843296844, 0.08336783054239426, 0.08643302192377042, 0.08949583064746279 ], [ 0.017384880849823207, 0.015795407301247576, 0.01444050766599589, 0.013319478087347618, 0.012425951019173645, 0.011747858861326031, 0.011268390190090039, 0.010967827668131147, 0.010825758740810005, 0.010823019402774001, 0.010942956655680104, 0.011171974852670637, 0.011499601584931192, 0.011918372752014213, 0.012423752091520596, 0.01301415376082202, 0.01369098756192419, 0.014458550070041607, 0.015323590200150087, 0.016294487929556345, 0.017380141223836753, 0.018588774542234895, 0.019926907989974416, 0.021398661097460525, 0.023005454286021, 0.024746067895185797, 0.02661695678822881, 0.028612703391851558, 0.0307265097213843, 0.032950660570032556, 0.03527692121375742, 0.03769685662794662, 0.040202073972966476, 0.04278439758217166, 0.0454359882937842, 0.04814941882716295, 0.05091771549499433, 0.05373437474638532, 0.056593361301748114, 0.05948909315258497, 0.06241641749984746, 0.06537058076869524, 0.06834719511810997, 0.0713422033105079, 0.0743518433781556, 0.07737261418483278, 0.08040124270961592, 0.08343465365713673, 0.08646994181350079, 0.08950434741197946 ], [ 0.0184826242045151, 0.016963707873554557, 0.015675878308654634, 0.01461452222837475, 0.013769228564579173, 0.013124489988687591, 0.012661369629069776, 0.012359761436069866, 0.012200615228102984, 0.012167555369211564, 0.012247640226115679, 0.012431367976198026, 0.012712248334003235, 0.013086286136774207, 0.01355161654756583, 0.014108366013092543, 0.014758651064153578, 0.015506527443155647, 0.01635770693319605, 0.017318962890494574, 0.018397288543365697, 0.01959897844614294, 0.020928827685027955, 0.02238959074976463, 0.023981752506551473, 0.025703581582813637, 0.02755138760252815, 0.029519891316273906, 0.0316026296327517, 0.033792341389286676, 0.03608130351718558, 0.03846160565072284, 0.040925363032053054, 0.04346487384638497, 0.04607272961762411, 0.04874188757571998, 0.05146571309824645, 0.05423799912192397, 0.05705296818293348, 0.059905261642207996, 0.0627899197331251, 0.0657023553289456, 0.06863832373853301, 0.07159389036939508, 0.07456539771863901, 0.07754943284188782, 0.08054279619112961, 0.08354247249265913, 0.08654560414807952, 0.08954946747948281 ], [ 0.019833245079865048, 0.018378293250822332, 0.017147499357621252, 0.01613298217310289, 0.015321501636356724, 0.014695667566571284, 0.014235913076741815, 0.013922774077958085, 0.013738902339059498, 0.013670376130297897, 0.013707163009225847, 0.013842871842046224, 0.014074095917128868, 0.01439967391952541, 0.014820111255389427, 0.01533725718116548, 0.01595417801807726, 0.01667506441458542, 0.017505004818353705, 0.018449542798145462, 0.01951405712015929, 0.02070309238846289, 0.0220197872696672, 0.023465504588124013, 0.025039698056963367, 0.02673998920396676, 0.028562393520376508, 0.030501627590630718, 0.03255143964729692, 0.0347049238416398, 0.036954795882048586, 0.039293620971140586, 0.04171399351426701, 0.044208672705221636, 0.046770680053696154, 0.04939336529917517, 0.052070446736543825, 0.05479603124131971, 0.057564618484509715, 0.060371093089501, 0.06321070784622698, 0.06607906056324829, 0.06897206669393316, 0.07188592949941944, 0.07481710919444799, 0.07776229224797603, 0.08071836177106227, 0.0836823697127241, 0.08665151139694957, 0.08962310276844687 ], [ 0.02140998354701679, 0.020010128493148423, 0.018825136161891236, 0.0178447695487984, 0.01705416776358527, 0.016435305869481262, 0.015968991105699493, 0.01563695971846799, 0.015423614007556716, 0.015317084785518287, 0.01530953410176117, 0.015396822672201682, 0.015577792771823222, 0.015853445775505664, 0.016226236728769997, 0.01669959282946627, 0.017277631164151173, 0.017964958242150497, 0.018766420567946977, 0.01968673853864002, 0.020730048267431113, 0.021899441187402342, 0.023196601366316898, 0.024621604965376492, 0.026172894683569134, 0.02784740047759198, 0.029640757583498104, 0.03154757185474122, 0.0335616926476923, 0.035676467117297564, 0.03788496196025973, 0.04018014745618304, 0.042555044093210856, 0.045002834912019785, 0.04751694787066511, 0.05009111275250833, 0.05271939689569222, 0.05539622359885261, 0.05811637659775761, 0.06087499357350991, 0.06366755126459168, 0.06648984441153419, 0.06933796045762575, 0.07220825165379953, 0.07509730596405692, 0.07800191793518232, 0.0809190604790656, 0.08384585831641378, 0.08677956364719024, 0.08971753444689878 ], [ 0.023185315709422564, 0.02183097972281524, 0.02068091954323781, 0.019723451886027556, 0.01894307985063857, 0.018322009263000857, 0.017842011942769215, 0.017486267536067253, 0.01724083312534014, 0.01709551596963088, 0.01704409629377907, 0.01708399977778702, 0.017215615631677825, 0.017441484438634764, 0.017765543993714723, 0.01819253693137978, 0.01872758329234037, 0.01937584810142276, 0.020142220690546185, 0.02103096547945874, 0.02204536588217201, 0.023187421858828834, 0.02445765968036519, 0.025855081106286183, 0.02737724218998847, 0.029020427174144776, 0.03077987540246092, 0.03265002447151893, 0.034624743800448915, 0.036697543847110714, 0.0388617546408304, 0.04111067263798065, 0.04343767773981027, 0.04583632351532913, 0.048300403979351335, 0.05082400017215038, 0.05340150954019691, 0.056027660851112666, 0.058697517131747916, 0.06140646890237094, 0.06415021978264135, 0.06692476635721119, 0.06972637400265441, 0.07255155018897791, 0.0753970165783926, 0.0782596810516417, 0.08113661060205668, 0.08402500585190698, 0.08692217776894148, 0.08982552699577057 ], [ 0.025133046728599902, 0.02381504812376373, 0.02269030219195285, 0.02174644128724296, 0.020968041379055592, 0.020338075842470542, 0.019839579860527135, 0.019457231388004717, 0.019178586841701956, 0.018994810066638824, 0.01890085877413452, 0.0188952036388172, 0.01897922767492257, 0.0191564781565424, 0.0194319207894631, 0.01981128712730833, 0.020300535859186303, 0.02090539868591426, 0.021630973468498207, 0.022481355515887508, 0.023459333578817614, 0.024566191832645416, 0.025801644992824033, 0.02716390378365262, 0.028649841306263583, 0.03025521862833098, 0.03197493026686144, 0.03380324091900786, 0.035733997101879404, 0.0377608072144603, 0.03987718970696681, 0.04207669205363424, 0.044352984179031385, 0.04669992989554796, 0.04911163944526778, 0.05158250575482156, 0.054107226641407415, 0.056680814966859734, 0.059298598590591806, 0.06195621187982012, 0.06464958046002794, 0.06737490080752355, 0.07012861618693414, 0.07290739031482213, 0.07570807998901535, 0.0785277077649934, 0.08136343559252003, 0.08421254015366982, 0.08707239047348178, 0.08994042821181618 ], [ 0.027229323263945792, 0.02593949380168423, 0.02483204281975752, 0.023894490355414105, 0.023111948805070448, 0.022468454026609668, 0.02194841643099093, 0.021537963656913534, 0.021225980210647113, 0.021004726402099032, 0.020870010508274518, 0.020820968783453058, 0.020859561630728864, 0.02098991381810387, 0.021217612388306075, 0.02154903696827403, 0.021990752222188496, 0.02254896319146096, 0.02322903300386018, 0.024035080920618537, 0.024969695080416188, 0.026033790852248842, 0.027226621979531896, 0.028545921772011658, 0.029988130995310402, 0.031548664561489435, 0.03322217771621007, 0.03500280678907118, 0.03688437323031086, 0.03886054929855084, 0.04092498895421433, 0.04307142934032691, 0.045293768120119926, 0.04758612102856743, 0.0499428629705492, 0.052358655174805764, 0.0548284603672417, 0.057347547620380676, 0.05991148839164466, 0.06251614520748325, 0.06515765442677603, 0.06783240448950968, 0.07053701100600505, 0.07326828996127716, 0.07602323019823608, 0.07879896620849274, 0.08159275210663479, 0.08440193750148899, 0.08722394581325554, 0.09005625542480845 ], [ 0.029452926519662224, 0.02818435522562534, 0.02708778758036598, 0.026151026538153398, 0.025359995567513942, 0.024699924689001805, 0.02415659925328379, 0.023717496053921205, 0.023372661578822482, 0.02311524523185132, 0.022941667170481767, 0.022851459037286984, 0.02284685511651323, 0.022932226204907754, 0.023113439730574798, 0.02339720534573293, 0.023790439411342006, 0.024299668600993696, 0.024930497069240894, 0.02568717408725555, 0.026572303240397926, 0.027586719853912377, 0.02872953414902471, 0.029998307681652243, 0.031389312852633, 0.032897824031318815, 0.03451839997023774, 0.03624513312204742, 0.038071855913687704, 0.03999230394599099, 0.04200024123808841, 0.044089554249767814, 0.04625432101270423, 0.04848886048836372, 0.05078776597663767, 0.053145925359258245, 0.05555853025811624, 0.05802107577712355, 0.06052935229056397, 0.0630794306556725, 0.0656676421948631, 0.06829055476951122, 0.07094494622625502, 0.07362777642743422, 0.07633615897708466, 0.07906733362726852, 0.08181864020243926, 0.08458749472058152, 0.08737136822666988, 0.0901677686937348 ], [ 0.03178517877928998, 0.030532220724559946, 0.02944156819071474, 0.028501559230476405, 0.027699068899829624, 0.02702054920329628, 0.026453097064572936, 0.02598541598242594, 0.02560856220801878, 0.025316409721849495, 0.0251058170832482, 0.02497652178240737, 0.024930816188879094, 0.024973070203092657, 0.02510916089796179, 0.025345855614608233, 0.025690182379827023, 0.02614881862712475, 0.026727536590579887, 0.027430752436399444, 0.028261223905143504, 0.029219922146180542, 0.03030607305547115, 0.03151733441739589, 0.032850058433956004, 0.03429958813875368, 0.03586054682071982, 0.0375270949791797, 0.039293143618416564, 0.04115252285019105, 0.043099110383958715, 0.04512692656119989, 0.04723020252756138, 0.04940342710462948, 0.05164137667732721, 0.053939131333445425, 0.05629207970527892, 0.05869591445872555, 0.061146620084315484, 0.06364045449008915, 0.0661739258127494, 0.06874376580354259, 0.07134690108025898, 0.07398042345125205, 0.07664156040641361, 0.0793276467359651, 0.08203609808480836, 0.08476438708675332, 0.08751002255558234, 0.09027053204648423 ], [ 0.03420968854233212, 0.03296784935962528, 0.03187935660881612, 0.030933228735391942, 0.03011734279705632, 0.029419338016007178, 0.028827527195664955, 0.028331712880249636, 0.027923825354074425, 0.02759833197868816, 0.027352403036586738, 0.027185850144974825, 0.02710087397117224, 0.027101666425235295, 0.027193910639145773, 0.02738421541287928, 0.02767951655756257, 0.02808648042219167, 0.02861095334464444, 0.029257507026242788, 0.030029124932544064, 0.030927055525716136, 0.031950829818042044, 0.03309841394139177, 0.03436645120827522, 0.0357505455461128, 0.03724554632689456, 0.0388458078086371, 0.040545409487426375, 0.04233833365558293, 0.04421860259428069, 0.0461803806918665, 0.04821804746158367, 0.05032624695676124, 0.05249991817493421, 0.054734310120821125, 0.057024984445597615, 0.05936780803702929, 0.06175893757363267, 0.06419479782341303, 0.06667205531095037, 0.06918758885540383, 0.07173845836682675, 0.07432187316415977, 0.07693516093718242, 0.07957573831746578, 0.08224108385247454, 0.0849287139994603, 0.0876361625780023, 0.09036096394864268 ], [ 0.036712059687915403, 0.035477829266839546, 0.03438871743315816, 0.033434492607319226, 0.03260402655000383, 0.031886075714701916, 0.03127005942165259, 0.030746755274265142, 0.03030884812005867, 0.029951292970701596, 0.02967147841237257, 0.02946919954771039, 0.029346464702044297, 0.029307166937781706, 0.029356651714497646, 0.029501210051406622, 0.029747527059406673, 0.030102121117080022, 0.030570817079367717, 0.03115830152824844, 0.03186780283869078, 0.03270092185639106, 0.033657614651378044, 0.034736305276384355, 0.03593409095808944, 0.03724699761822078, 0.038670248425550544, 0.04019851807880222, 0.04182615652446, 0.043547375053658466, 0.045356394105793986, 0.04724755574654406, 0.04921540536917275, 0.05125474746866047, 0.05336067999000199, 0.05552861117075747, 0.05775426221081079, 0.060033658606367335, 0.06236311259969193, 0.06473919890394422, 0.06715872563439378, 0.06961870218493836, 0.07211630561036847, 0.07464884689600736, 0.07721373831065814, 0.07980846284456974, 0.08243054653436459, 0.08507753427598108, 0.08774696953131002, 0.09043637814987626 ], [ 0.0392796227363026, 0.03805030090555538, 0.03695855444928803, 0.035994919977220624, 0.03514922161448968, 0.03441124543756976, 0.033771405248452874, 0.033221337828464495, 0.03275437810523431, 0.032365882594701384, 0.032053388664588116, 0.03181661370277982, 0.03165730968066205, 0.0315789943828949, 0.03158658232328447, 0.031685939146683856, 0.03188338617809284, 0.032185187803999406, 0.03259706143870731, 0.03312375333026324, 0.033768718988093464, 0.03453393338463412, 0.035419836459312834, 0.03642539973527598, 0.037548285577083, 0.038785064507045455, 0.04013145752055452, 0.041582576851112316, 0.04313314703718427, 0.04477769606427977, 0.04651071254650326, 0.04832676907479838, 0.05022061426279671, 0.052187237149009136, 0.05422190794037028, 0.05632019897440815, 0.05847798947744617, 0.060691457342341285, 0.06295706080592886, 0.0652715125963152, 0.06763174884151349, 0.07003489477522847, 0.07247822903147051, 0.07495914807991205, 0.07747513211368429, 0.0800237134608003, 0.08260244835179742, 0.0852088926442512, 0.08784058188471902, 0.09049501588626654 ], [ 0.0419012080339777, 0.04067474415069962, 0.0395789320557957, 0.038605061387136576, 0.0377438466302319, 0.036986009292296056, 0.03632284922457785, 0.035746756597493455, 0.035251625454733426, 0.034833143113475865, 0.03448894385290203, 0.03421862763740088, 0.03402365340963052, 0.03390712156435937, 0.03387346281184667, 0.033928052865255576, 0.034076776120440286, 0.03432556713687474, 0.034679964542773487, 0.03514471472461187, 0.0357234593344797, 0.036418530434204795, 0.037230862062088345, 0.03816001117023042, 0.03920426826695912, 0.04036083110532167, 0.041626013610480156, 0.04299546552621802, 0.044464383936436515, 0.04602770403786539, 0.04768026208569775, 0.0494169277393985, 0.05123270602212856, 0.05312281096065128, 0.055082713977159845, 0.05710817053388933, 0.0591952286062891, 0.06134022243461098, 0.06353975477584847, 0.06579067060305648, 0.0680900249067348, 0.07043504695454902, 0.07282310306623517, 0.07525165966150264, 0.07771824804167146, 0.0802204320734331, 0.08275577965945809, 0.08532183861099625, 0.0879161172873398, 0.0905360701415282 ], [ 0.044566961901468534, 0.043341817491303794, 0.04224095011078729, 0.04125636673003681, 0.040379600698275, 0.039602214922095494, 0.038916293881044006, 0.03831488611268708, 0.037792365975955304, 0.037344693457778, 0.036969561350748054, 0.036666428428292895, 0.03643644418505956, 0.03628227522576032, 0.03620784635941791, 0.03621801227529116, 0.03631817946848868, 0.036513902936662804, 0.036810486802449395, 0.03721262023263014, 0.037724077831986946, 0.038347506465254574, 0.039084309430315274, 0.03993462664475571, 0.040897398814044916, 0.041970496387211044, 0.04315089112004431, 0.04443484873933921, 0.045818124369261595, 0.047296146763157354, 0.04886418193974665, 0.05051747088324259, 0.05225133921335451, 0.054061279102838936, 0.055943005305601076, 0.05789248811291943, 0.05990596654250039, 0.061979945228460856, 0.06411117843095848, 0.06629664440128373, 0.06853351307510301, 0.07081910975654766, 0.07315087712006509, 0.07552633750925021, 0.07794305716150662, 0.0803986136429134, 0.08289056744621798, 0.08541643839372684, 0.0879736872024435, 0.09055970231664587 ], [ 0.047268199163141324, 0.04604323559407859, 0.044936653832211924, 0.04394113087997183, 0.04304894453444247, 0.04225240920295536, 0.041544301261671746, 0.04091824332041048, 0.04036902220665678, 0.039892822948536466, 0.039487368990068855, 0.03915196601437418, 0.03888745234248797, 0.03869606288454283, 0.0385812166382529, 0.038547240638097786, 0.03859904672152579, 0.03874178147210793, 0.03898047334199114, 0.039319702810910497, 0.039763320192616754, 0.040314230856990624, 0.04097425984142351, 0.041744098631390655, 0.042623328150500794, 0.04361050522928669, 0.04470329581498507, 0.04589863698468996, 0.047192910925532995, 0.04858211668075955, 0.050062028850635494, 0.05162833594194979, 0.05327675424566749, 0.05500311575253724, 0.05680343061625427, 0.05867392607160081, 0.06061106459914635, 0.06261154460459448, 0.06467228705363226, 0.06679041145976936, 0.068963204432045, 0.07118808370233515, 0.07346256020523326, 0.07578420040325887, 0.07815059065631003, 0.08055930504212336, 0.08300787765604757, 0.08549378006509599, 0.08801440427067152, 0.09056705125387346 ], [ 0.04999728356837822, 0.04877167311379387, 0.04765896486926255, 0.04665245303616875, 0.04574508664616815, 0.044929848031732895, 0.04420012204718595, 0.043550031357524006, 0.042974717248330116, 0.042470551046578646, 0.04203526729858912, 0.04166801542055591, 0.04136933110235977, 0.041141032271528356, 0.04098604728228446, 0.04090818572701507, 0.040911865265423925, 0.04100181108266313, 0.04118274744939872, 0.04145910244931435, 0.04183474640103277, 0.04231278143199488, 0.04289539433778487, 0.04358377815444313, 0.044378120953038946, 0.04527765433907649, 0.04628074977860403, 0.04738504851360451, 0.048587610402347055, 0.04988506816703245, 0.051273775747812146, 0.052749942225770625, 0.054309745639784246, 0.055949423657164835, 0.057665340271225156, 0.05945402941180837, 0.061312217571114686, 0.06323682832175079, 0.06522497201433942, 0.06727392406893132, 0.06938109519130005, 0.07154399661369049, 0.07376020312821689, 0.07602731628864882, 0.07834292973246054, 0.0807045981434278, 0.08310981095475417, 0.08555597149898449, 0.08804038195510064, 0.0905602341345842 ], [ 0.05274752826753779, 0.051520685365532996, 0.05040162390044971, 0.049384200929297455, 0.04846196717538993, 0.047628496691235124, 0.046877708680882584, 0.04620416142913903, 0.045603301427757786, 0.045071655075080125, 0.04460695498872398, 0.044208197367413486, 0.043875630594555494, 0.0436106783419112, 0.043415803023240815, 0.0432943178910726, 0.0432501585958774, 0.04328762760051271, 0.043411127108699724, 0.043624897553701567, 0.04393277863752608, 0.04433800808948951, 0.044843069790471826, 0.045449598132589544, 0.04615834015311993, 0.046969171863050295, 0.04788116094756872, 0.04889266509286443, 0.05000145376954573, 0.05120484130746806, 0.05249982026659662, 0.053883186074219436, 0.05535164626891266, 0.05690191012139272, 0.058530756634438616, 0.06023508080010528, 0.06201191944280279, 0.06385845899870914, 0.06577202821561834, 0.06775007906318865, 0.06979015918905151, 0.07188987910484758, 0.07404687699431128, 0.07625878365073747, 0.07852318961266222, 0.08083761610705933, 0.08319949095448077, 0.08560613016164154, 0.08805472553938326, 0.09054233834927713 ], [ 0.05551311006935815, 0.054284639187350964, 0.05315913854914753, 0.05213097479393846, 0.05119423582511546, 0.05034301889921029, 0.049571712314269115, 0.048875254280472694, 0.04824935494944678, 0.04769067086275506, 0.04719692470625172, 0.04676696676154638, 0.04640077754881331, 0.04609941379294137, 0.04586490213171515, 0.04570008711163567, 0.04560844212239234, 0.0455938539875819, 0.045660393745139055, 0.04581208736546961, 0.04605270039640048, 0.04638554953613233, 0.04681335187540885, 0.04733811921361413, 0.04796110083598478, 0.04868277394920824, 0.049502877133484724, 0.05042047912282237, 0.051434073262725394, 0.05254168721906326, 0.05374099784429911, 0.05502944232689946, 0.05640431855768571, 0.05786286973142359, 0.05940235029115266, 0.0610200722145728, 0.0627134322116698, 0.06447992159639394, 0.06631712141082292, 0.06822268585086996, 0.07019431721973053, 0.07222973557701531, 0.07432664601553217, 0.07648270613726987, 0.07869549586196405, 0.08096249122589538, 0.08328104334904003, 0.08564836329177034, 0.08806151310882207, 0.09051740305239955 ], [ 0.05828899288453396, 0.05705864958642916, 0.0559267329588885, 0.05488806859461755, 0.05393722272600025, 0.0530687548503607, 0.05227746533210954, 0.05155862444536849, 0.050908171148679494, 0.05032287241735405, 0.049800436802662607, 0.049339578701389226, 0.0489400323870166, 0.04860251710515866, 0.048328656521057216, 0.04812085763352889, 0.04798215602281953, 0.047916035974226424, 0.04792623549369527, 0.04801654729124339, 0.04819062720690109, 0.04845182109265168, 0.048803019755455944, 0.049246549269902753, 0.04978410099238182, 0.05041670227623372, 0.05114472558854866, 0.051967930848907405, 0.05288553366245531, 0.053896290893051015, 0.05499859475781253, 0.056190567223149426, 0.057470147744384636, 0.058835169065571555, 0.06028341763228428, 0.061812676955109065, 0.06342075383976005, 0.06510548867719967, 0.06686475192496606, 0.06869642951142732, 0.07059840018805608, 0.07256850788830906, 0.07460453197787041, 0.07670415795527784, 0.07886495073543201, 0.08108433216786964, 0.08335956394711802, 0.08568773659679113, 0.08806576477722249, 0.09049038879647181 ], [ 0.06107085722039287, 0.059838519479788646, 0.058700297142886444, 0.05765142765773002, 0.056686902551193616, 0.05580168974460288, 0.054990952113024315, 0.05425025105390763, 0.0535757252305736, 0.05296423662295733, 0.052413478264378144, 0.05192204031520815, 0.051489433252250104, 0.05111606886411151, 0.050803201450694994, 0.05055283318621413, 0.05036758907080332, 0.05025056826837638, 0.05020517983887479, 0.05023497179018149, 0.05034346283412261, 0.050533986080543596, 0.05080955304740961, 0.05117274479639425, 0.05162563482197202, 0.052169745728521386, 0.052806039002011314, 0.05353493463044974, 0.05435635523813831, 0.05526978798664379, 0.056274356865417596, 0.05736889813461418, 0.05855203247654357, 0.0598222286787898, 0.061177855201913295, 0.06261721757834274, 0.06413858108261725, 0.06574017938920775, 0.06742021092510654, 0.06917682530520101, 0.07100810261713422, 0.07291202843052767, 0.07488646728852713, 0.07692913714970147, 0.07903758683921376, 0.0812091780905126, 0.08344107325834194, 0.08573022929832033, 0.0880733981675129, 0.09046713342487966 ], [ 0.06385503373354358, 0.0626206810567664, 0.06147633537615817, 0.06041760284989358, 0.059439852943615, 0.05853841478246784, 0.057708770881350534, 0.05694673887329129, 0.05624863292930343, 0.05561139809844308, 0.05503271258139303, 0.05451105479427929, 0.05404573384481398, 0.053636883662131776, 0.053285422485075076, 0.05299298074791103, 0.05276180163645831, 0.052594619725498434, 0.05249452411067153, 0.05246481323308984, 0.05250884905141155, 0.05262991823131526, 0.05283110750888005, 0.05311519931026478, 0.05348459211708807, 0.05394124807727069, 0.054486668168784017, 0.05512189306557097, 0.055847525972187576, 0.05666377228862654, 0.057570490168290876, 0.058567245877708875, 0.05965336830533241, 0.06082799787766649, 0.06209012636285477, 0.06343862540325142, 0.06487226296314252, 0.06638970808133945, 0.06798952529517369, 0.06967016080738347, 0.07142992288835867, 0.07326695915999569, 0.07517923332910519, 0.07716450367594332, 0.07922030520943651, 0.08134393692925476, 0.08353245513439854, 0.08578267323105981, 0.08809116805198088, 0.0904542923283214 ], [ 0.06663843967791001, 0.06540213809897368, 0.0642519135939372, 0.06318370195898718, 0.06219320861345432, 0.061276082654707645, 0.06042808928807161, 0.05964527275555734, 0.058924102711280284, 0.058261598195124206, 0.05765542478159349, 0.05710396198229507, 0.056606339448289945, 0.05616244188959347, 0.05577288388228051, 0.05543895687644448, 0.05516255176483031, 0.05494606132439251, 0.05479226767743681, 0.05470422058250015, 0.05468511278212593, 0.05473815872225793, 0.0548664826456195, 0.055073021312588004, 0.05536044543258549, 0.05573110237298728, 0.05618698098519416, 0.05672969762578795, 0.057360500845503266, 0.05808029094415803, 0.058889649771992646, 0.05978887585733547, 0.06077802014619858, 0.0618569182773385, 0.06302521626862927, 0.0642823876186006, 0.06562774099173216, 0.06706041873801902, 0.068579387404135, 0.0701834220675124, 0.07187108674014929, 0.07364071324967292, 0.07549038093737151, 0.07741789925898832, 0.07942079498540681, 0.08149630523120656, 0.08364137704095856, 0.08585267378060005, 0.0881265881497402, 0.09045926127401335 ], [ 0.06941851765483227, 0.06818040909612416, 0.06702460613627871, 0.0659473391412244, 0.0649446124746148, 0.06401235935243166, 0.06314659593523766, 0.06234356800989391, 0.06159988424493763, 0.060912630951399246, 0.060279464424521145, 0.059698678169818636, 0.059169243540584476, 0.05869082347599765, 0.058263760103407176, 0.057889037950279776, 0.057568225404476606, 0.057303397864649934, 0.05709704671872919, 0.05695197884201581, 0.05687121166490822, 0.05685786896423787, 0.05691508232855653, 0.05704590270558517, 0.05725322556489883, 0.05753973205089321, 0.05790784715585314, 0.05835971454126903, 0.058897186324842955, 0.05952182507178589, 0.060234914492661336, 0.061037475020399905, 0.0619302805249377, 0.06291387288263754, 0.06398857186422507, 0.06515447872991627, 0.06641147290615794, 0.06775920205528992, 0.06919706664787655, 0.07072420074485249, 0.07233945105996197, 0.07404135649830051, 0.07582813027374247, 0.07769764643557298, 0.07964743223252777, 0.08167466726546435, 0.08377618988044053, 0.08594851077869164, 0.08818783340398308, 0.09049008033536204 ], [ 0.07219317644076266, 0.07095347128402983, 0.06979244234679971, 0.06870658331965043, 0.06769216504985656, 0.06674537381624605, 0.06586244957911033, 0.06503981856583607, 0.06427421503805104, 0.06356278783438912, 0.06290318820468982, 0.06229363646004339, 0.06173296598600394, 0.06122064415350742, 0.06075677058461168, 0.06034205407649933, 0.0599777702530401, 0.059665702693632534, 0.05940807087000661, 0.05920744867725925, 0.05906667763876306, 0.05898877895372677, 0.058976868403750354, 0.059034077719120434, 0.059163485331253186, 0.05936805854241105, 0.059650608098619703, 0.06001375505564249, 0.06045990879353749, 0.060991254174050366, 0.06160974523719579, 0.06231710255633162, 0.0631148114302623, 0.06400411845945195, 0.06498602466840298, 0.0660612741096254, 0.06723033771706109, 0.06849339297072651, 0.06985030060677043, 0.07130058009667789, 0.07284338589183086, 0.07447748647863152, 0.07620124813290781, 0.07801262493840416, 0.0799091561933101, 0.08188797182660011, 0.08394580593654177, 0.08607901809313183, 0.08828362164988199, 0.09055531800975966 ], [ 0.07496073389293086, 0.07371970587712885, 0.0725538535769715, 0.07145990634569958, 0.07043437317653564, 0.06947366662073043, 0.06857422730422581, 0.06773264423763564, 0.06694576648576567, 0.06621080235556458, 0.06552540300747947, 0.06488772822678494, 0.0642964929494661, 0.06375099397773731, 0.06325111711390181, 0.06279732567235667, 0.062390631988178874, 0.06203255411865138, 0.06172506041804307, 0.061470505035817476, 0.061271557617509236, 0.06113113054693219, 0.06105230693332274, 0.06103827220535124, 0.06109225163309465, 0.06121745539118684, 0.061417031958498375, 0.06169402979945578, 0.06205136647757632, 0.06249180370015644, 0.06301792635623728, 0.06363212343446314, 0.06433656880699778, 0.06513320021899552, 0.06602369537850958, 0.06700944472376136, 0.06809152116636877, 0.06927064778280055, 0.0705471649753494, 0.0719209989917004, 0.0733916338475131, 0.07495808863503178, 0.07661890194463405, 0.0783721247161044, 0.08021532232705111, 0.08214558617625575, 0.08415955448526154, 0.08625344156915986, 0.08842307445041482, 0.09066393542601692 ], [ 0.07771986206087109, 0.07647784482734801, 0.0753076211249242, 0.07420613162457186, 0.07317009884533116, 0.07219613860662055, 0.07128087260130828, 0.07042103797795048, 0.06961359010409796, 0.06885579515338802, 0.06814530976541211, 0.06748024571565121, 0.06685921825474664, 0.06628137749336753, 0.06574642289269927, 0.0652546015527311, 0.0648066915577623, 0.06440397212973663, 0.06404818274184723, 0.06374147364080202, 0.06348635039618254, 0.06328561512000858, 0.06314230686377645, 0.06305964339966273, 0.0630409661385584, 0.0630896893606266, 0.06320925428308279, 0.06340308782919997, 0.06367456536381504, 0.06402697619367739, 0.0644634903532354, 0.06498712514388473, 0.06560071007580641, 0.066306849254751, 0.06710788081280264, 0.06800583363190578, 0.06900238227004066, 0.07009880158942104, 0.07129592303173211, 0.07259409473472746, 0.07399314771098937, 0.07549237011550122, 0.07709049124278068, 0.0787856763660208, 0.08057553292224252, 0.0824571279242552, 0.08442701590188888, 0.08648127618906512, 0.08861555801093855, 0.09082513160009544 ], [ 0.08046953469650774, 0.07922691945158084, 0.07805282558735237, 0.07694438379282947, 0.07589850883347606, 0.0749120001516553, 0.07398164402096093, 0.073104313723009, 0.07227706443064852, 0.07149721985636073, 0.07076244821905787, 0.07007082565430446, 0.06942088580195512, 0.068811654917989, 0.06824267244663232, 0.06771399753571215, 0.06722620246650345, 0.06678035438643101, 0.06637798706536518, 0.06602106462900828, 0.0657119393415633, 0.06545330550042497, 0.06524815136082388, 0.06509971072935916, 0.06501141546735781, 0.0649868496579117, 0.06502970565893829, 0.06514374174506106, 0.0653327405943952, 0.06560046756158928, 0.0659506275424995, 0.06638681930724127, 0.06691248645967814, 0.06753086464889638, 0.0682449252610459, 0.06905731648767506, 0.06997030331596253, 0.07098570853422545, 0.07210485721960051, 0.07332852732350248, 0.07465690887174199, 0.07608957395993841, 0.0776254591897757, 0.0792628615194364, 0.08099944776629008, 0.08283227727690842, 0.08475783663568442, 0.08677208476828696, 0.08887050643968868, 0.0910481719567919 ], [ 0.08320897738224382, 0.0819662112563061, 0.08078879804691076, 0.0796740399401777, 0.0786190256633458, 0.07762072161516494, 0.07667606490588899, 0.07578205526325635, 0.07493584292337363, 0.07413480992428824, 0.07337664262462029, 0.07265939374580578, 0.07198153275156052, 0.07134198390199144, 0.0707401518279662, 0.0701759349436688, 0.06964972743527972, 0.0691624109170697, 0.06871533711951124, 0.06831030315398641, 0.06794952097351141, 0.06763558260967695, 0.06737142260959038, 0.06716027882888154, 0.0670056523751462, 0.06691126707072723, 0.06688102835640246, 0.06691898113988558, 0.06702926575987905, 0.06721607103979299, 0.06748358338659127, 0.06783593107278771, 0.06827712322288945, 0.06881098358234786, 0.06944107982409913, 0.07017064986962145, 0.07100252738085075, 0.07193906912665515, 0.07298208726606924, 0.07413278966628777, 0.07539173116645984, 0.07675877822431933, 0.07823308869170024, 0.07981310763296862, 0.08149657921695984, 0.08328057386712655, 0.0851615291232899, 0.08713530210650144, 0.08919723111503222, 0.09134220371790726 ], [ 0.0859376205003617, 0.08469520526367444, 0.08351507346605015, 0.08239468279277543, 0.08133128032619345, 0.0803219853929132, 0.07936387460942905, 0.07845406649462697, 0.0775898031392003, 0.07676852666043354, 0.07598794850256443, 0.07524611004057767, 0.0745414333810711, 0.07387276170205095, 0.07323938891095434, 0.07264107880762731, 0.07207807429918527, 0.07155109751219547, 0.07106134187074345, 0.07061045734498153, 0.07020053011373541, 0.06983405782070884, 0.06951392143701202, 0.06924335448139092, 0.06902591001255946, 0.06886542542533948, 0.06876598469409631, 0.06873187736154901, 0.06876755331937837, 0.0688775723180573, 0.06906654721509362, 0.06933908024507274, 0.06969969206970439, 0.07015274401256141, 0.07070235464550721, 0.07135231269169996, 0.07210598894893518, 0.07296625051900377, 0.0739353809677535, 0.07501501007665633, 0.07620605655756404, 0.07750868650735523, 0.07892228953848517, 0.08044547352596973, 0.08207607786746669, 0.08381120416740025, 0.08564726241803289, 0.08758003012331646, 0.08960472142546265, 0.09171606314944003 ], [ 0.0886550552576949, 0.08741354611569163, 0.0862313466145578, 0.08510605622048208, 0.08403506715132554, 0.08301563996303157, 0.08204498156549672, 0.08112032338611162, 0.08023899748865373, 0.0793985086454363, 0.07859660063299778, 0.0778313153539295, 0.07710104375651151, 0.07640456790679839, 0.07574109394386401, 0.07511027599927343, 0.07451223146980739, 0.07394754828342906, 0.0734172849792535, 0.07292296452195537, 0.07246656278124512, 0.07205049252384968, 0.07167758359072442, 0.07135105967596128, 0.07107451180525448, 0.07085186826016963, 0.07068736034845967, 0.07058548312603945, 0.07055094998191473, 0.07058863995011591, 0.07070353675004414, 0.07090065890042155, 0.07118498080115691, 0.0715613454035092, 0.0720343699344563, 0.0726083470223978, 0.07328714438618433, 0.07407410689042056, 0.0749719651397374, 0.07598275481399243, 0.077107750606044, 0.07834741793405824, 0.07970138462797266, 0.08116843363925497, 0.08274651661830257, 0.08443278706950852, 0.08622365083560533, 0.08811483095395947, 0.090101443503121, 0.09217808091532634 ], [ 0.09136099296123827, 0.09012099720390772, 0.08893743082097359, 0.08780802338999906, 0.08673030116305781, 0.08570165627512406, 0.08471941856314999, 0.08378092801188866, 0.08288360590698111, 0.08202502292714503, 0.08120296263100668, 0.08041547907186093, 0.07966094758592415, 0.07893810812644704, 0.0782461008383919, 0.07758449386861611, 0.07695330366870681, 0.07635300825737683, 0.07578455405429639, 0.07524935696712809, 0.07474929840119172, 0.07428671676395467, 0.07386439485730548, 0.07348554329991429, 0.07315377981890557, 0.07287310392276265, 0.07264786615282709, 0.07248273085259496, 0.072382631239414, 0.07235271555785106, 0.0723982832757526, 0.07252471067631014, 0.07273736580292803, 0.07304151350279177, 0.0734422122321448, 0.0739442052461825, 0.07455180969106942, 0.07526880782826073, 0.07609834504353875, 0.07704283934336632, 0.07810390668169584, 0.07928230570729974, 0.08057790444514956, 0.08198967013973943, 0.08351568213364394, 0.0851531663731799, 0.08689854904774848, 0.08874752606663752, 0.09069514459833994, 0.09273589274113267 ], [ 0.09405522771571082, 0.0928174030412823, 0.0916332198040819, 0.09050052785284643, 0.08941697824061778, 0.08838008681873781, 0.08738730057960524, 0.08643606501878746, 0.08552389083178592, 0.08464841838069372, 0.08380747854925094, 0.08299914883686527, 0.08222180380579863, 0.08147415927391097, 0.08075530992065096, 0.08006476023019, 0.07940244891756904, 0.07876876715801144, 0.07816457105407514, 0.07759118882110763, 0.07705042314187656, 0.0765445490344982, 0.07607630739743751, 0.07564889415178408, 0.07526594461264154, 0.07493151241506743, 0.07465004203070574, 0.0744263336804159, 0.07426549932166411, 0.07417290841161073, 0.07415412235655902, 0.07421481698049706, 0.07436069298412971, 0.07459737519821909, 0.0749303024064271, 0.07536461053783879, 0.07590501299666316, 0.07655568268275272, 0.07732014074220535, 0.07820115717947951, 0.07920066811226464, 0.08031971366667456, 0.08155839936274452, 0.08291588244860301, 0.08439038315861704, 0.08597921945451947, 0.08767886259864367, 0.08948501000513297, 0.09139267126971372, 0.09339626309205404 ], [ 0.0967376026835849, 0.09550265505916494, 0.0943186528064907, 0.0931835578256477, 0.09209513837107859, 0.09105102769240288, 0.09004878552463567, 0.08908596091637241, 0.08816015491371823, 0.08726908171195279, 0.08641062703675, 0.08558290270993536, 0.08478429657688476, 0.08401351720855098, 0.08326963302514406, 0.0825521057061022, 0.08186081793762258, 0.08119609569259462, 0.08055872532672961, 0.07994996580089989, 0.07937155629727886, 0.07882571938459958, 0.0783151597093432, 0.07784305795507032, 0.0774130595388336, 0.07702925722683042, 0.07669616658415218, 0.07641869296500814, 0.07620208864392414, 0.07605189872872278, 0.07597389472150877, 0.0759739950310605, 0.07605817239632029, 0.0762323490369163, 0.07650228135209415, 0.07687343706052197, 0.07735086869869102, 0.07793908824698802, 0.07864194820326285, 0.07946253456973895, 0.08040307690070604, 0.08146487977521431, 0.08264827887508862, 0.08395262338621129, 0.0853762848592443, 0.08691669113649471, 0.08857038262810962, 0.09033308721810532, 0.09219980946042725, 0.09416492949426565 ], [ 0.09940798001224063, 0.09817666097471302, 0.09699368321479968, 0.09585711388537578, 0.09476483225589155, 0.09371458397287372, 0.09270403823766414, 0.09173084657715393, 0.09079270190002181, 0.0898873966041634, 0.08901287862276515, 0.08816730445667027, 0.08734908842700155, 0.0865569475810706, 0.08578994188262383, 0.08504750950094991, 0.08432949716936862, 0.0836361857003817, 0.08296831081242687, 0.08232707943353731, 0.08171418159572612, 0.08113179791922859, 0.08058260251176014, 0.08006976088414071, 0.07959692222642081, 0.07916820512129823, 0.07878817552524423, 0.07846181565907116, 0.07819448236062357, 0.07799185350485421, 0.07785986132951218, 0.0778046119457873, 0.07783229097257734, 0.07794905609541843, 0.07816091837005285, 0.07847361518647027, 0.07889247887270462, 0.07942230581930622, 0.08006723161416902, 0.08083061788107801, 0.08171495624392831, 0.08272179408161379, 0.08385168555251829, 0.08510416987116137, 0.08647777717479993, 0.08797006070382726, 0.08957765260198226, 0.09129633954826222, 0.09312115373454484, 0.09504647441640289 ], [ 0.1020662144922786, 0.10083931783170594, 0.0996582508085078, 0.0985211802613396, 0.09742609149386408, 0.09637083865096556, 0.09535319805135874, 0.0943709233131595, 0.09342180111594972, 0.09250370649857367, 0.09161465669010468, 0.09075286260345267, 0.08991677727653975, 0.08910514071296606, 0.08831702074058016, 0.0875518496599141, 0.0868094565836176, 0.0860900954618237, 0.08539446883798701, 0.08472374737768036, 0.08407958515511506, 0.0834641305677524, 0.08288003258201845, 0.0823304418018555, 0.08181900561164682, 0.08134985639781646, 0.08092759162776737, 0.08055724439526352, 0.08024424296735436, 0.07999435792978017, 0.07981363576314461, 0.07970831811933916, 0.07968474671873961, 0.07974925464185267, 0.07990804580271013, 0.08016706549054092, 0.08053186594595317, 0.08100747187078167, 0.08159825142444987, 0.08230779851735692, 0.08313883199527865, 0.08409311659784957, 0.08517140941566302, 0.08637343407638477, 0.08769788321986197, 0.08914244815736963, 0.09070387312353159, 0.09237803035833846, 0.09416001148488803, 0.09604423029946224 ], [ 0.10471213096640535, 0.10349048877110285, 0.10231225773193656, 0.10117569985772866, 0.10007890251604583, 0.09901982535425959, 0.09799635019081576, 0.0970063328516725, 0.09604765592595732, 0.09511828145610514, 0.09421630265601987, 0.09333999385877716, 0.09248785802410552, 0.09165867127506701, 0.09085152407215395, 0.09006585876053481, 0.08930150333184439, 0.0885587013161189, 0.08783813775389807, 0.08714096118684812, 0.08646880154367578, 0.08582378368604787, 0.08520853622031052, 0.08462619498326365, 0.08408040038823884, 0.08357528759123892, 0.08311546823247416, 0.08270600235839633, 0.08235235906994244, 0.08206036451251358, 0.08183613605807045, 0.08168600195777766, 0.08161640637790382, 0.08163380056337517, 0.08174452186528337, 0.08195466345158076, 0.0822699385946247, 0.08269554437267235, 0.08323603030449364, 0.0838951777388648, 0.08467589566046073, 0.08558013792167284, 0.0866088458031318, 0.0877619183460691, 0.08903821124003083, 0.09043556336890979, 0.0919508485920501, 0.09358004910924479, 0.0953183459213404, 0.09716022148535493 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
l2norm: 1.53227 (SEM: 0)
x1: 0.63458
x2: 0.176737
x3: 0.777269
x4: 0.613891
x5: 0.660853
x6: 0.704404", "Arm 10_0
l2norm: 1.16011 (SEM: 0)
x1: 0.196433
x2: 0.0226757
x3: 0.242024
x4: 0.207609
x5: 0.611927
x6: 0.911383", "Arm 11_0
l2norm: 0.827364 (SEM: 0)
x1: 0.0440097
x2: 0.192389
x3: 0.377749
x4: 0.442401
x5: 0.465967
x6: 0.30007", "Arm 12_0
l2norm: 0.96254 (SEM: 0)
x1: 0.330772
x2: 0.368949
x3: 0.363253
x4: 0.380512
x5: 0.155903
x6: 0.616362", "Arm 13_0
l2norm: 0.911604 (SEM: 0)
x1: 0.287121
x2: 0.324009
x3: 0.356923
x4: 0.365169
x5: 0.166141
x6: 0.596033", "Arm 14_0
l2norm: 0.854076 (SEM: 0)
x1: 0.238379
x2: 0.266719
x3: 0.347494
x4: 0.346491
x5: 0.170067
x6: 0.575979", "Arm 15_0
l2norm: 0.859876 (SEM: 0)
x1: 0.172717
x2: 0.218906
x3: 0.382558
x4: 0.335899
x5: 0.17538
x6: 0.60967", "Arm 16_0
l2norm: 0.880578 (SEM: 0)
x1: 0.109694
x2: 0.233142
x3: 0.427889
x4: 0.307123
x5: 0.178532
x6: 0.632251", "Arm 17_0
l2norm: 0.915635 (SEM: 0)
x1: 0.0768223
x2: 0.214709
x3: 0.391534
x4: 0.368487
x5: 0.194651
x6: 0.677802", "Arm 18_0
l2norm: 0.901203 (SEM: 0)
x1: 0.151869
x2: 0.169254
x3: 0.434747
x4: 0.275345
x5: 0.203366
x6: 0.674002", "Arm 19_0
l2norm: 0.933093 (SEM: 0)
x1: 0.200991
x2: 0.119624
x3: 0.44608
x4: 0.235346
x5: 0.226646
x6: 0.714291", "Arm 1_0
l2norm: 1.52299 (SEM: 0)
x1: 0.0151501
x2: 0.829026
x3: 0.12746
x4: 0.54458
x5: 0.641685
x6: 0.952581", "Arm 20_0
l2norm: 0.906982 (SEM: 0)
x1: 0.171408
x2: 0.131226
x3: 0.38267
x4: 0.190713
x5: 0.212948
x6: 0.740176", "Arm 21_0
l2norm: 0.948774 (SEM: 0)
x1: 0.214004
x2: 0.103926
x3: 0.486873
x4: 0.280354
x5: 0.240698
x6: 0.685561", "Arm 22_0
l2norm: 0.977826 (SEM: 0)
x1: 0.204275
x2: 0.0437911
x3: 0.561739
x4: 0.289041
x5: 0.237209
x6: 0.676117", "Arm 23_0
l2norm: 0.943892 (SEM: 0)
x1: 0.240996
x2: 0.131561
x3: 0.479197
x4: 0.291592
x5: 0.26674
x6: 0.655545", "Arm 24_0
l2norm: 0.941528 (SEM: 0)
x1: 0.246362
x2: 0.170455
x3: 0.498586
x4: 0.254516
x5: 0.28253
x6: 0.635244", "Arm 25_0
l2norm: 0.894783 (SEM: 0)
x1: 0.230524
x2: 0.117977
x3: 0.458876
x4: 0.247796
x5: 0.283335
x6: 0.617518", "Arm 26_0
l2norm: 0.941288 (SEM: 0)
x1: 0.316302
x2: 0.140468
x3: 0.478416
x4: 0.257635
x5: 0.277086
x6: 0.627862", "Arm 27_0
l2norm: 0.933691 (SEM: 0)
x1: 0.202306
x2: 0.161937
x3: 0.480446
x4: 0.273759
x5: 0.287021
x6: 0.645348", "Arm 28_0
l2norm: 0.952057 (SEM: 0)
x1: 0.191562
x2: 0.14858
x3: 0.483471
x4: 0.272962
x5: 0.309765
x6: 0.665909", "Arm 2_0
l2norm: 1.14996 (SEM: 0)
x1: 0.0799383
x2: 0.555853
x3: 0.169447
x4: 0.412083
x5: 0.779421
x6: 0.448343", "Arm 3_0
l2norm: 1.42876 (SEM: 0)
x1: 0.657353
x2: 0.943917
x3: 0.756923
x4: 0.0775618
x5: 0.120324
x6: 0.353318", "Arm 4_0
l2norm: 1.32377 (SEM: 0)
x1: 0.812888
x2: 0.0362684
x3: 0.803039
x4: 0.554338
x5: 0.000707027
x6: 0.371636", "Arm 5_0
l2norm: 1.52152 (SEM: 0)
x1: 0.0106335
x2: 0.454275
x3: 0.0317208
x4: 0.955978
x5: 0.78306
x6: 0.761874", "Arm 6_0
l2norm: 1.0551 (SEM: 0)
x1: 0.408876
x2: 0.459731
x3: 0.356421
x4: 0.391628
x5: 0.118121
x6: 0.663589", "Arm 7_0
l2norm: 1.81128 (SEM: 0)
x1: 0.782639
x2: 0.956367
x3: 0.883402
x4: 0.00513333
x5: 0.960213
x6: 0.22616", "Arm 8_0
l2norm: 1.17779 (SEM: 0)
x1: 0.171071
x2: 0.146003
x3: 0.870055
x4: 0.6982
x5: 0.299267
x6: 0.0507671", "Arm 9_0
l2norm: 1.45264 (SEM: 0)
x1: 0.856245
x2: 0.88228
x3: 0.128791
x4: 0.522858
x5: 0.0968765
x6: 0.547021" ], "type": "scatter", "x": [ 0.6345803737640381, 0.19643269293010235, 0.044009679928421974, 0.3307716345939427, 0.28712144523660493, 0.23837850836795255, 0.1727170562689478, 0.10969446034723844, 0.07682229559902103, 0.1518686324946271, 0.200991020479014, 0.015150059014558792, 0.17140835817780894, 0.21400356490589917, 0.2042751663225212, 0.240995720731154, 0.24636239020622935, 0.23052374160767553, 0.31630167890595307, 0.20230591468414857, 0.19156183052597178, 0.07993831858038902, 0.6573533108457923, 0.8128883009776473, 0.010633493773639202, 0.4088763138279319, 0.7826388161629438, 0.1710712779313326, 0.8562453100457788 ], "xaxis": "x", "y": [ 0.17673711478710175, 0.0226757125928998, 0.19238927122205496, 0.36894898007440285, 0.324008950084348, 0.2667185191290881, 0.2189061474683112, 0.23314213367632092, 0.21470940389444604, 0.16925383003437916, 0.11962449837612377, 0.8290264755487442, 0.13122620536621904, 0.10392628515806508, 0.04379108721058173, 0.13156076815087, 0.17045516893340912, 0.11797696929632358, 0.14046801720924837, 0.1619366337970507, 0.1485798481900465, 0.5558529254049063, 0.9439172176644206, 0.03626835159957409, 0.45427547488361597, 0.4597307797521353, 0.9563671611249447, 0.14600341767072678, 0.8822799418121576 ], "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.53227 (SEM: 0)
x1: 0.63458
x2: 0.176737
x3: 0.777269
x4: 0.613891
x5: 0.660853
x6: 0.704404", "Arm 10_0
l2norm: 1.16011 (SEM: 0)
x1: 0.196433
x2: 0.0226757
x3: 0.242024
x4: 0.207609
x5: 0.611927
x6: 0.911383", "Arm 11_0
l2norm: 0.827364 (SEM: 0)
x1: 0.0440097
x2: 0.192389
x3: 0.377749
x4: 0.442401
x5: 0.465967
x6: 0.30007", "Arm 12_0
l2norm: 0.96254 (SEM: 0)
x1: 0.330772
x2: 0.368949
x3: 0.363253
x4: 0.380512
x5: 0.155903
x6: 0.616362", "Arm 13_0
l2norm: 0.911604 (SEM: 0)
x1: 0.287121
x2: 0.324009
x3: 0.356923
x4: 0.365169
x5: 0.166141
x6: 0.596033", "Arm 14_0
l2norm: 0.854076 (SEM: 0)
x1: 0.238379
x2: 0.266719
x3: 0.347494
x4: 0.346491
x5: 0.170067
x6: 0.575979", "Arm 15_0
l2norm: 0.859876 (SEM: 0)
x1: 0.172717
x2: 0.218906
x3: 0.382558
x4: 0.335899
x5: 0.17538
x6: 0.60967", "Arm 16_0
l2norm: 0.880578 (SEM: 0)
x1: 0.109694
x2: 0.233142
x3: 0.427889
x4: 0.307123
x5: 0.178532
x6: 0.632251", "Arm 17_0
l2norm: 0.915635 (SEM: 0)
x1: 0.0768223
x2: 0.214709
x3: 0.391534
x4: 0.368487
x5: 0.194651
x6: 0.677802", "Arm 18_0
l2norm: 0.901203 (SEM: 0)
x1: 0.151869
x2: 0.169254
x3: 0.434747
x4: 0.275345
x5: 0.203366
x6: 0.674002", "Arm 19_0
l2norm: 0.933093 (SEM: 0)
x1: 0.200991
x2: 0.119624
x3: 0.44608
x4: 0.235346
x5: 0.226646
x6: 0.714291", "Arm 1_0
l2norm: 1.52299 (SEM: 0)
x1: 0.0151501
x2: 0.829026
x3: 0.12746
x4: 0.54458
x5: 0.641685
x6: 0.952581", "Arm 20_0
l2norm: 0.906982 (SEM: 0)
x1: 0.171408
x2: 0.131226
x3: 0.38267
x4: 0.190713
x5: 0.212948
x6: 0.740176", "Arm 21_0
l2norm: 0.948774 (SEM: 0)
x1: 0.214004
x2: 0.103926
x3: 0.486873
x4: 0.280354
x5: 0.240698
x6: 0.685561", "Arm 22_0
l2norm: 0.977826 (SEM: 0)
x1: 0.204275
x2: 0.0437911
x3: 0.561739
x4: 0.289041
x5: 0.237209
x6: 0.676117", "Arm 23_0
l2norm: 0.943892 (SEM: 0)
x1: 0.240996
x2: 0.131561
x3: 0.479197
x4: 0.291592
x5: 0.26674
x6: 0.655545", "Arm 24_0
l2norm: 0.941528 (SEM: 0)
x1: 0.246362
x2: 0.170455
x3: 0.498586
x4: 0.254516
x5: 0.28253
x6: 0.635244", "Arm 25_0
l2norm: 0.894783 (SEM: 0)
x1: 0.230524
x2: 0.117977
x3: 0.458876
x4: 0.247796
x5: 0.283335
x6: 0.617518", "Arm 26_0
l2norm: 0.941288 (SEM: 0)
x1: 0.316302
x2: 0.140468
x3: 0.478416
x4: 0.257635
x5: 0.277086
x6: 0.627862", "Arm 27_0
l2norm: 0.933691 (SEM: 0)
x1: 0.202306
x2: 0.161937
x3: 0.480446
x4: 0.273759
x5: 0.287021
x6: 0.645348", "Arm 28_0
l2norm: 0.952057 (SEM: 0)
x1: 0.191562
x2: 0.14858
x3: 0.483471
x4: 0.272962
x5: 0.309765
x6: 0.665909", "Arm 2_0
l2norm: 1.14996 (SEM: 0)
x1: 0.0799383
x2: 0.555853
x3: 0.169447
x4: 0.412083
x5: 0.779421
x6: 0.448343", "Arm 3_0
l2norm: 1.42876 (SEM: 0)
x1: 0.657353
x2: 0.943917
x3: 0.756923
x4: 0.0775618
x5: 0.120324
x6: 0.353318", "Arm 4_0
l2norm: 1.32377 (SEM: 0)
x1: 0.812888
x2: 0.0362684
x3: 0.803039
x4: 0.554338
x5: 0.000707027
x6: 0.371636", "Arm 5_0
l2norm: 1.52152 (SEM: 0)
x1: 0.0106335
x2: 0.454275
x3: 0.0317208
x4: 0.955978
x5: 0.78306
x6: 0.761874", "Arm 6_0
l2norm: 1.0551 (SEM: 0)
x1: 0.408876
x2: 0.459731
x3: 0.356421
x4: 0.391628
x5: 0.118121
x6: 0.663589", "Arm 7_0
l2norm: 1.81128 (SEM: 0)
x1: 0.782639
x2: 0.956367
x3: 0.883402
x4: 0.00513333
x5: 0.960213
x6: 0.22616", "Arm 8_0
l2norm: 1.17779 (SEM: 0)
x1: 0.171071
x2: 0.146003
x3: 0.870055
x4: 0.6982
x5: 0.299267
x6: 0.0507671", "Arm 9_0
l2norm: 1.45264 (SEM: 0)
x1: 0.856245
x2: 0.88228
x3: 0.128791
x4: 0.522858
x5: 0.0968765
x6: 0.547021" ], "type": "scatter", "x": [ 0.6345803737640381, 0.19643269293010235, 0.044009679928421974, 0.3307716345939427, 0.28712144523660493, 0.23837850836795255, 0.1727170562689478, 0.10969446034723844, 0.07682229559902103, 0.1518686324946271, 0.200991020479014, 0.015150059014558792, 0.17140835817780894, 0.21400356490589917, 0.2042751663225212, 0.240995720731154, 0.24636239020622935, 0.23052374160767553, 0.31630167890595307, 0.20230591468414857, 0.19156183052597178, 0.07993831858038902, 0.6573533108457923, 0.8128883009776473, 0.010633493773639202, 0.4088763138279319, 0.7826388161629438, 0.1710712779313326, 0.8562453100457788 ], "xaxis": "x2", "y": [ 0.17673711478710175, 0.0226757125928998, 0.19238927122205496, 0.36894898007440285, 0.324008950084348, 0.2667185191290881, 0.2189061474683112, 0.23314213367632092, 0.21470940389444604, 0.16925383003437916, 0.11962449837612377, 0.8290264755487442, 0.13122620536621904, 0.10392628515806508, 0.04379108721058173, 0.13156076815087, 0.17045516893340912, 0.11797696929632358, 0.14046801720924837, 0.1619366337970507, 0.1485798481900465, 0.5558529254049063, 0.9439172176644206, 0.03626835159957409, 0.45427547488361597, 0.4597307797521353, 0.9563671611249447, 0.14600341767072678, 0.8822799418121576 ], "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.07780908387974318, -0.07780908387974318, -0.07780908387974318, -0.07780908387974318, -0.07780908387974318, -0.07780908387974318, -1.0153345355701942, -1.0153345355701942, -1.0153345355701942, -1.0153345355701942, -1.0153345355701942, -1.0153345355701942, -1.6106049866582093, -1.859256697453545, -2.034524555942206, -2.28352512953469, -2.3500925694278116, -2.3500925694278116, -2.733172688045396, -2.845230483336533, -2.845230483336533, -3.0363714062573943, -3.0363714062573943, -3.1961788793495933, -3.219665798541978, -3.219665798541978, -3.219665798541978, -3.2865272566151833, -3.3184418909797007, -3.3184418909797007 ] }, { "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.07780908387974318, -0.07780908387974318, -0.07780908387974318, -0.07780908387974318, -0.07780908387974318, -0.07780908387974318, -1.0153345355701942, -1.0153345355701942, -1.0153345355701942, -1.0153345355701942, -1.0153345355701942, -1.0153345355701942, -1.6106049866582093, -1.859256697453545, -2.034524555942206, -2.28352512953469, -2.3500925694278116, -2.3500925694278116, -2.733172688045396, -2.845230483336533, -2.845230483336533, -3.0363714062573943, -3.0363714062573943, -3.1961788793495933, -3.219665798541978, -3.219665798541978, -3.219665798541978, -3.2865272566151833, -3.3184418909797007, -3.3184418909797007 ] }, { "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.07780908387974318, -0.07780908387974318, -0.07780908387974318, -0.07780908387974318, -0.07780908387974318, -0.07780908387974318, -1.0153345355701942, -1.0153345355701942, -1.0153345355701942, -1.0153345355701942, -1.0153345355701942, -1.0153345355701942, -1.6106049866582093, -1.859256697453545, -2.034524555942206, -2.28352512953469, -2.3500925694278116, -2.3500925694278116, -2.733172688045396, -2.845230483336533, -2.845230483336533, -3.0363714062573943, -3.0363714062573943, -3.1961788793495933, -3.219665798541978, -3.219665798541978, -3.219665798541978, -3.2865272566151833, -3.3184418909797007, -3.3184418909797007 ] }, { "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.12" } }, "nbformat": 4, "nbformat_minor": 2 }