{
"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 04-26 20:09:10] 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 04-26 20:09:11] 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 04-26 20:09:11] 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 04-26 20:09:11] 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 04-26 20:09:11] 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 04-26 20:09:11] 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 04-26 20:09:11] 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 04-26 20:09:11] 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 04-26 20:09:11] 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 04-26 20:09:11] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/gpytorch/lazy/lazy_tensor.py:1741: UserWarning:\n",
"\n",
"torch.triangular_solve is deprecated in favor of torch.linalg.solve_triangularand will be removed in a future PyTorch release.\n",
"torch.linalg.solve_triangular has its arguments reversed and does not return a copy of one of the inputs.\n",
"X = torch.triangular_solve(B, A).solution\n",
"should be replaced with\n",
"X = torch.linalg.solve_triangular(A, B). (Triggered internally at ../aten/src/ATen/native/BatchLinearAlgebra.cpp:1672.)\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:17] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:23] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:30] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:36] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:42] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:48] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:09:54] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:10:01] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:10:07] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:10:13] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:10:18] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:10:23] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:10:28] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:10:35] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:10:40] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:10:44] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-26 20:10:49] 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.4076336950751692,\n",
" 'x2': 0.9025745948037075,\n",
" 'x3': 0.18501790637296855,\n",
" 'x4': 0.5539181749333645,\n",
" 'x5': 0.44872971190026884,\n",
" 'x6': 0.04304143492213628}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'l2norm': 1.2349385505454658, 'hartmann6': -3.071102782450379}"
]
},
"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": [
[
-0.32188106375532066,
-0.3186844323488638,
-0.3154686539679694,
-0.31219842130004993,
-0.30883053378253256,
-0.30531599854156766,
-0.301603011048045,
-0.29764074556827436,
-0.2933838117986718,
-0.288797162573756,
-0.28386117306883785,
-0.2785765585326465,
-0.2729687586117162,
-0.26709139474860044,
-0.2610284061153798,
-0.25489449298236977,
-0.24883354934329383,
-0.2430148551052107,
-0.237626928385112,
-0.23286911431432133,
-0.22894120564220577,
-0.22603163783545566,
-0.2243050461852849,
-0.22389016685865082,
-0.22486915197556834,
-0.2272693052708421,
-0.23105801800833659,
-0.23614133223217593,
-0.24236616282082424,
-0.2495258715007065,
-0.257368684427437,
-0.265608408078994,
-0.27393699317071896,
-0.2820386415965943,
-0.2896052413602672,
-0.29635284832780706,
-0.30203864849300555,
-0.30647734383602976,
-0.3095553345858437,
-0.31124066204735024,
-0.31158671563006557,
-0.31072837647577756,
-0.3088704896071863,
-0.30626996427539455,
-0.3032139201203461,
-0.2999967860813635,
-0.29689906995623416,
-0.29416984562541315,
-0.2920141381184731,
-0.29058556046252604
],
[
-0.3202667738098859,
-0.31718421609347214,
-0.3141067713770209,
-0.3109947067361949,
-0.3077985804203309,
-0.30446138740299067,
-0.30092170893507686,
-0.2971178054876107,
-0.29299251097359424,
-0.2884987058769781,
-0.2836050728899886,
-0.2783017749778436,
-0.272605645885174,
-0.26656445028800757,
-0.26025975899608556,
-0.25380799903419504,
-0.24735928603219337,
-0.24109373572585557,
-0.23521509160186538,
-0.2299417035333282,
-0.22549514691691375,
-0.22208706818669022,
-0.21990514447512588,
-0.21909929395321237,
-0.21976939737310386,
-0.22195572925466078,
-0.22563302912276262,
-0.23070871339987353,
-0.237025241321692,
-0.24436623251281153,
-0.25246569195960267,
-0.26101966598418835,
-0.26969978982809173,
-0.27816839398502835,
-0.2860949847662737,
-0.293173881813491,
-0.2991424986559392,
-0.3037991937067557,
-0.30701893231578126,
-0.30876446767821486,
-0.30909072555338346,
-0.3081408087696571,
-0.3061334468341004,
-0.3033433632657936,
-0.3000773273707522,
-0.2966491888913685,
-0.2933569241384997,
-0.2904639115960026,
-0.28818565444167166,
-0.28668224800569475
],
[
-0.31882824665831033,
-0.31589435288659384,
-0.31299427832911286,
-0.31008371110074817,
-0.3071066010147707,
-0.30399732488589115,
-0.3006839903133043,
-0.29709282964755257,
-0.2931535462536541,
-0.28880538567703384,
-0.28400361996917955,
-0.2787260583040354,
-0.2729791345696997,
-0.26680307648740587,
-0.26027563575707746,
-0.2535138614935548,
-0.2466734390274845,
-0.2399452045561845,
-0.23354859569443143,
-0.2277220189205198,
-0.2227104091057679,
-0.2187506085487696,
-0.21605556191997888,
-0.21479863828482193,
-0.21509956123112706,
-0.21701337139536458,
-0.22052353087475973,
-0.22553975715958807,
-0.23190057628869432,
-0.23938007565668573,
-0.24769804685273544,
-0.25653268301923604,
-0.26553518238794815,
-0.2743458884539287,
-0.2826118152588959,
-0.29000541686777126,
-0.2962441590058891,
-0.30110982477137993,
-0.30446567415210524,
-0.3062689023551437,
-0.3065757393271318,
-0.3055373227922322,
-0.3033860929739709,
-0.30041436955359235,
-0.2969482565787862,
-0.2933205901218108,
-0.2898462753921738,
-0.28680239344078085,
-0.28441431619244195,
-0.28284805726646445
],
[
-0.3175906014817562,
-0.3148430429629314,
-0.3121628966665111,
-0.30950116368726466,
-0.30679485338297297,
-0.3039691381333629,
-0.30094079100252613,
-0.29762287377572005,
-0.2939305449859986,
-0.28978775840066673,
-0.2851345270365797,
-0.27993434000788486,
-0.2741812427473227,
-0.26790602931903296,
-0.261180954373742,
-0.25412236031634583,
-0.24689064435546126,
-0.23968707531763056,
-0.23274712805185827,
-0.22633024836444582,
-0.2207062989691364,
-0.21613935238783855,
-0.21286994382546576,
-0.2110972911260265,
-0.2109632166464479,
-0.2125394598321786,
-0.21581970191219568,
-0.22071699336957007,
-0.22706654417134842,
-0.23463321546716442,
-0.243122704732341,
-0.2521953987585861,
-0.261482115188751,
-0.27060131567611245,
-0.2791776724060411,
-0.2868619335665554,
-0.2933517356926145,
-0.2984123208204259,
-0.3018951736613329,
-0.3037517626581059,
-0.3040393692902479,
-0.3029168330157277,
-0.3006298740889297,
-0.2974878549553621,
-0.29383552799074897,
-0.2900239165509413,
-0.2863839932450505,
-0.2832056839827011,
-0.28072344097655777,
-0.27910852902454075
],
[
-0.31657991715557676,
-0.31405948810047235,
-0.31164540679196784,
-0.3092839345684659,
-0.30690485528143174,
-0.30442358317399965,
-0.30174470751553684,
-0.2987669611624426,
-0.29538949407699366,
-0.29151922378475525,
-0.2870789276360368,
-0.28201564009641,
-0.2763088252685524,
-0.26997771464010656,
-0.263087139464961,
-0.2557511568465738,
-0.24813378354512405,
-0.2404462308703028,
-0.23294019909846253,
-0.22589706005903976,
-0.21961314135814303,
-0.2143818121475003,
-0.2104736075012934,
-0.20811611682309006,
-0.2074756613763089,
-0.20864275760240392,
-0.21162293716955616,
-0.2163337361110218,
-0.22260777687055677,
-0.23020111300416923,
-0.2388055937737137,
-0.24806399945766544,
-0.2575870134043152,
-0.2669715540937041,
-0.2758203798848482,
-0.2837630051883522,
-0.29047768093081006,
-0.2957134443583387,
-0.2993101697606053,
-0.3012135542572576,
-0.30148166183984637,
-0.3002805367583401,
-0.2978684571380499,
-0.2945708971449761,
-0.29075015960759854,
-0.28677426128314987,
-0.28298904123229285,
-0.2796961512590117,
-0.2771381599262952,
-0.2754908223407211
],
[
-0.3158230281098773,
-0.31357365693462014,
-0.31147537920712187,
-0.3094697299622997,
-0.30747904248744007,
-0.30540846633049656,
-0.30314958450323526,
-0.300585641196486,
-0.2975982770863512,
-0.29407555026345156,
-0.2899209014289019,
-0.28506260523409677,
-0.27946313822690705,
-0.2731277922185962,
-0.2661117780413911,
-0.2585250117368789,
-0.2505337719654541,
-0.2423584877216518,
-0.23426708611204528,
-0.2265636261213928,
-0.21957238051060557,
-0.21361809365431994,
-0.2090037832083027,
-0.20598805261016584,
-0.2047642691334599,
-0.20544396006426657,
-0.2080462898383313,
-0.21249457368675073,
-0.2186197087463897,
-0.22616949372488615,
-0.2348223204881419,
-0.2442037294480861,
-0.253904715249472,
-0.26350123226199296,
-0.2725748382539488,
-0.28073461032645763,
-0.28764020111138544,
-0.2930251061097142,
-0.29671801444672563,
-0.2986589498701173,
-0.298906476887256,
-0.2976331697620742,
-0.2951088236079582,
-0.29167368401319727,
-0.2877060678991734,
-0.2835893797795006,
-0.2796827790935641,
-0.2762982668829581,
-0.2736853980980811,
-0.2720235755845912
],
[
-0.31534727186081013,
-0.3134159965036678,
-0.3116868461345992,
-0.3100967207485994,
-0.3085603522717413,
-0.30697218244490654,
-0.3052100096986863,
-0.3031404454747839,
-0.3006260985550584,
-0.2975342770611502,
-0.29374686572441244,
-0.28917090289091263,
-0.28374924960406167,
-0.277470616545862,
-0.27037810306313137,
-0.26257532200112843,
-0.2542291578073357,
-0.24556826284572342,
-0.23687657127853456,
-0.22848143290903145,
-0.22073646145196935,
-0.21399984541736905,
-0.20860962654883464,
-0.2048581784572805,
-0.20296861178351455,
-0.2030758666540209,
-0.20521469406462445,
-0.2093156491891175,
-0.21520892799286595,
-0.22263478794530145,
-0.23125872117151247,
-0.2406895765040944,
-0.2504993119618859,
-0.26024373814418755,
-0.2694842082716462,
-0.2778104813120812,
-0.2848647453723734,
-0.29036595252255815,
-0.2941323042940833,
-0.29609840118575614,
-0.29632301477664846,
-0.29498438806124416,
-0.29236245816303885,
-0.2888104773567961,
-0.28472079300152786,
-0.2804901801863664,
-0.27648923580103846,
-0.27303868901331674,
-0.27039379997292556,
-0.2687367086772452
],
[
-0.31518018514518675,
-0.3136170865909951,
-0.3123139093548708,
-0.31120309972602334,
-0.3101917271577097,
-0.30916316392079723,
-0.3079807092228086,
-0.30649323293990105,
-0.30454278532955636,
-0.3019739807941417,
-0.298644818844227,
-0.2944384547213297,
-0.28927527681029885,
-0.28312449257077965,
-0.27601428027867114,
-0.2680394499091794,
-0.2593655014942595,
-0.25022800942829915,
-0.24092643713984496,
-0.23181183747839884,
-0.22326844712538274,
-0.21568993478810938,
-0.209451951083921,
-0.2048835032980203,
-0.20224029723091097,
-0.2016832710208254,
-0.203264912212048,
-0.20692467533339043,
-0.2124932753994535,
-0.21970433509130038,
-0.22821119677020896,
-0.23760676363964284,
-0.24744482099726262,
-0.25726209255538923,
-0.2666009933578355,
-0.27503338964037605,
-0.2821854691187431,
-0.287762961961022,
-0.29157454529337623,
-0.293549795853673,
-0.2937473858653994,
-0.29235017803430297,
-0.2896465434560922,
-0.2860005584998033,
-0.28181618393968555,
-0.2775011569356647,
-0.2734353153338669,
-0.2699462735326168,
-0.26729358362007316,
-0.26566115816107283
],
[
-0.3153491467905911,
-0.3142072347299636,
-0.31339028179069595,
-0.31282656469462555,
-0.3124155354345144,
-0.31202923620196077,
-0.3115158377392484,
-0.31070541707574173,
-0.3094179561158754,
-0.3074733956925695,
-0.30470342203629586,
-0.30096449329395036,
-0.2961514325386094,
-0.29021072505350065,
-0.2831524743590741,
-0.27505981708874416,
-0.2660945062078053,
-0.25649738940071587,
-0.2465826842130623,
-0.23672533157129072,
-0.22734132902986182,
-0.21886180518915,
-0.21170263222058838,
-0.206232416282232,
-0.2027424702195635,
-0.20142251626907792,
-0.20234515347429793,
-0.2054606302988906,
-0.21060163628570616,
-0.21749629482823551,
-0.22578676914084794,
-0.23505097739235148,
-0.24482561174736284,
-0.2546295929152147,
-0.26398791271657895,
-0.27245624515818845,
-0.2796465360732876,
-0.2852529032949287,
-0.28907569956979473,
-0.2910400084611884,
-0.29120407784864044,
-0.2897541612473209,
-0.28698504358358146,
-0.28326905703451,
-0.2790189648372381,
-0.2746507077859015,
-0.2705508927689593,
-0.26705198585758816,
-0.2644163079732642,
-0.26282853880266854
],
[
-0.31588096705273516,
-0.31521601148081735,
-0.3149487622595526,
-0.31500372647482755,
-0.3152729070367979,
-0.3156168775394943,
-0.31586816021737096,
-0.3158370704424305,
-0.31532005265677143,
-0.3141103785552921,
-0.3120109084392555,
-0.3088484278405992,
-0.30448886168745415,
-0.2988524414455813,
-0.2919276715741381,
-0.2837827386670786,
-0.27457287215920845,
-0.26454215327693653,
-0.25401843907976196,
-0.2434004789554325,
-0.2331369944353272,
-0.22369847461277836,
-0.21554363994893921,
-0.2090837586750296,
-0.20464893065259382,
-0.2024606697946163,
-0.2026143186690279,
-0.20507308943198121,
-0.20967337919615736,
-0.2161392151525685,
-0.22410280227943424,
-0.23312826616984883,
-0.24273650371249067,
-0.2524301302198926,
-0.26171844844637593,
-0.2701428716954135,
-0.2773031020437611,
-0.2828834844093451,
-0.2866774323064032,
-0.28860616297824526,
-0.2887271463900136,
-0.28722863574406343,
-0.2844095397810209,
-0.28064755127161267,
-0.27636109602618286,
-0.27197127174414715,
-0.26786875853610015,
-0.2643886879441464,
-0.26179454078133624,
-0.26027072889561054
],
[
-0.31680142516395615,
-0.31667172779188824,
-0.31702064521086837,
-0.31776944355649883,
-0.31880298615420344,
-0.31997038378400555,
-0.32108812502912887,
-0.32194590480995156,
-0.3223152288334099,
-0.3219607123016426,
-0.3206538101201202,
-0.31818850694016265,
-0.3143982540888788,
-0.3091731700106122,
-0.3024762380733601,
-0.294356974393138,
-0.28496084999869176,
-0.27453270161255894,
-0.2634125264418068,
-0.2520224987657105,
-0.2408448217401662,
-0.2303911456374148,
-0.22116566935987647,
-0.21362548439070794,
-0.20814283713967563,
-0.204974285777493,
-0.20424083979641328,
-0.2059211612603007,
-0.2098574080457163,
-0.21577121985329684,
-0.22328634343619114,
-0.23195455242420904,
-0.24128246587611057,
-0.2507580891935064,
-0.25987695463959604,
-0.26816832339259555,
-0.27522182149754904,
-0.28071401242664495,
-0.28443286877240737,
-0.286296414822927,
-0.2863609465012291,
-0.28481519018283663,
-0.2819596802757445,
-0.27817433064160335,
-0.27387984810698174,
-0.2694992309048787,
-0.2654243748324998,
-0.2619907810825981,
-0.2594614202997716,
-0.25801938119367884
],
[
-0.3181347592458892,
-0.318600858908032,
-0.3196350701600257,
-0.3211560882073583,
-0.3230421052930299,
-0.3251309424869282,
-0.327222831786081,
-0.3290861288869129,
-0.3304660976899103,
-0.3310967455343683,
-0.3307154975066544,
-0.3290802690233172,
-0.3259882203997231,
-0.3212951572343137,
-0.3149341950701443,
-0.3069319761422198,
-0.2974204719063551,
-0.28664230680993974,
-0.2749476848776784,
-0.26278147604315016,
-0.2506598866671417,
-0.239137410900641,
-0.2287663538226361,
-0.22005289484612733,
-0.21341498231068456,
-0.2091477427138415,
-0.20740110215859642,
-0.20817201489649917,
-0.21131081218973802,
-0.2165387947274482,
-0.22347305553037722,
-0.23165471898161516,
-0.24057786325297137,
-0.24971775994913825,
-0.2585582362085681,
-0.266618626958282,
-0.2734807398551635,
-0.2788154095926243,
-0.28240669350515124,
-0.28417008273954414,
-0.28416024403588414,
-0.28256474885402305,
-0.279683127082224,
-0.27589422972856803,
-0.271617524398843,
-0.26727453418279024,
-0.2632554205575468,
-0.25989369497062365,
-0.2574501114570402,
-0.2561053671678464
],
[
-0.31990311549403594,
-0.32102742233574166,
-0.32281831887639645,
-0.32519275251238655,
-0.32802288943807834,
-0.3311356247729933,
-0.3343149016991105,
-0.33730719013405186,
-0.3398303408805614,
-0.34158586990722917,
-0.3422745296548204,
-0.3416147753150989,
-0.3393634217743384,
-0.3353374113701999,
-0.3294351946987666,
-0.32165581366671114,
-0.3121134418739362,
-0.30104497815992515,
-0.28880841220373865,
-0.2758701896161724,
-0.26278077427962643,
-0.25013905378006007,
-0.23854806476370083,
-0.22856645542190823,
-0.22066164957526202,
-0.2151711669566969,
-0.2122774599063446,
-0.21199900783749137,
-0.2141971195568091,
-0.21859517176565624,
-0.22480573221994726,
-0.2323612512009572,
-0.24074522080419603,
-0.24942221802610076,
-0.2578665392140933,
-0.26558987532629086,
-0.27216848081153633,
-0.27726948040556554,
-0.2806744787279558,
-0.2822970166459078,
-0.28218960086103384,
-0.280536955600557,
-0.27763492651933475,
-0.2738579806817456,
-0.2696207972301099,
-0.2653400243577049,
-0.26140111883964967,
-0.2581332265064935,
-0.2557931663865245,
-0.25455816849989765
],
[
-0.32212596654848324,
-0.32397232071974225,
-0.326593072077775,
-0.3299044068668455,
-0.3337733033638772,
-0.338016308174498,
-0.3424012632505009,
-0.34665241235898314,
-0.35045919033191897,
-0.35348884231747246,
-0.3554028187722378,
-0.35587662437893397,
-0.3546224478824971,
-0.3514134622115497,
-0.34610818288779477,
-0.3386727625809254,
-0.3291986688304269,
-0.3179129559051359,
-0.3051784309394232,
-0.2914815547923937,
-0.27740700274316454,
-0.2635994590776314,
-0.25071532100573113,
-0.23936922301138597,
-0.2300820850643437,
-0.22323797766364617,
-0.219055879408099,
-0.21757944510458738,
-0.2186841784100566,
-0.222098330298939,
-0.22743240758419514,
-0.23421243996984797,
-0.24191350310233206,
-0.24999166486381985,
-0.2579139386097191,
-0.26518665263942,
-0.2713827030921603,
-0.27616740006612894,
-0.2793212099422293,
-0.2807561702943986,
-0.2805220067319789,
-0.2787988765175793,
-0.2758762916449409,
-0.2721210806790515,
-0.26793966236269906,
-0.2637404789006439,
-0.25990136215301773,
-0.256744746236764,
-0.25452180879643804,
-0.25340523567801765
],
[
-0.32481951208258764,
-0.327452663981016,
-0.3309776412760097,
-0.3353110277496738,
-0.3403156598683288,
-0.34579854875397165,
-0.3515118714867871,
-0.3571575466228989,
-0.36239579794851595,
-0.3668579650181396,
-0.3701636183155028,
-0.3719417528846709,
-0.371855442583483,
-0.3696288309703155,
-0.36507473827439485,
-0.35812054016584804,
-0.3488294270641914,
-0.33741382072037496,
-0.32423776572559726,
-0.309805681565936,
-0.2947360710164295,
-0.27972065859493034,
-0.26547184470272445,
-0.2526639315398449,
-0.2418756378652669,
-0.2335421082769229,
-0.22792326359121273,
-0.22509201787134936,
-0.22494170930738955,
-0.22720865009852376,
-0.2315040901732348,
-0.23735017228596567,
-0.24421593612512726,
-0.2515512573487797,
-0.25881815659621665,
-0.2655198300204633,
-0.27122787322827535,
-0.27560747772084526,
-0.2784390676311641,
-0.27963344074790997,
-0.2792368201113449,
-0.27742308135861027,
-0.27447285243338015,
-0.2707422252653582,
-0.2666260571769494,
-0.2625214052392397,
-0.25879567111652735,
-0.25576230440982295,
-0.2536651703698096,
-0.2526713384536665
],
[
-0.3279960776832169,
-0.3314810885104176,
-0.33598519529431226,
-0.3414267159437996,
-0.34766561153473674,
-0.3545004261869844,
-0.3616683850926623,
-0.3688492593095969,
-0.37567351588574294,
-0.38173514365188455,
-0.38660935085376535,
-0.3898750337419119,
-0.39114148233714485,
-0.3900782087405743,
-0.38644607921406826,
-0.3801271757655855,
-0.3711501276880409,
-0.3597072026846684,
-0.3461594212742203,
-0.33102654583877267,
-0.31496014070606315,
-0.2987000368420114,
-0.2830173041144539,
-0.26864978817866114,
-0.2562386292173553,
-0.2462749677155307,
-0.23906451802882622,
-0.2347139767292239,
-0.23313857587751352,
-0.23408625985427212,
-0.23717216272806985,
-0.24191735272098946,
-0.24778742100020446,
-0.2542284872266236,
-0.2606998872387354,
-0.26670382541160054,
-0.2718124661615018,
-0.2756923230989585,
-0.2781246057009996,
-0.27901892007006013,
-0.2784171599208807,
-0.27648523507105494,
-0.2734924898494231,
-0.2697814065398787,
-0.2657322247467788,
-0.261727657432552,
-0.258122041024331,
-0.2552176800346668,
-0.25324951397940665,
-0.2523779360389391
],
[
-0.3316635308340219,
-0.3360650943568877,
-0.34162300457443906,
-0.3482588304728431,
-0.3558311532939633,
-0.36413139076163437,
-0.3728828313524015,
-0.3817435878187676,
-0.390314117136048,
-0.39814985090343225,
-0.4047792998140416,
-0.40972769051846325,
-0.4125457195665374,
-0.412842347901339,
-0.4103197348838974,
-0.40480750389970943,
-0.3962926831286062,
-0.3849410686836625,
-0.3711056410563571,
-0.35531826012263124,
-0.33826234956987933,
-0.3207267087664618,
-0.3035437704635242,
-0.28751902088807135,
-0.27336100024337395,
-0.2616221942358743,
-0.2526594102379953,
-0.24661808684706843,
-0.24343981749717458,
-0.24288812248522396,
-0.2445854916793413,
-0.24805500773162525,
-0.2527616049684056,
-0.25815019411523,
-0.2636797339050978,
-0.26885345968545904,
-0.2732457518407363,
-0.27652559747965655,
-0.2784755232689171,
-0.27900376125421156,
-0.2781469442951805,
-0.27606137964036015,
-0.27300291149016664,
-0.2692978085819351,
-0.26530893133385547,
-0.2614019593740169,
-0.2579157421896361,
-0.2551394235057216,
-0.2532974819840026,
-0.2525425957704748
],
[
-0.33582473499265486,
-0.34120642391503675,
-0.3478917294075108,
-0.3558071670699685,
-0.3648116672335928,
-0.3746911461604656,
-0.38515629484782377,
-0.39584440099460716,
-0.40632599374410905,
-0.4161170318767229,
-0.4246971982567609,
-0.4315345563410016,
-0.4361163121366036,
-0.43798467866302726,
-0.4367758822733854,
-0.4322592708848727,
-0.4243724450856854,
-0.4132475605074233,
-0.39922371451106176,
-0.3828409118720275,
-0.364812730357843,
-0.3459775530443534,
-0.32723188454732544,
-0.30945318465316074,
-0.29342275439843757,
-0.27976022294763014,
-0.26887924460435864,
-0.26096938752805476,
-0.25600346763819815,
-0.2537648856155823,
-0.2538872839326769,
-0.2558991246216522,
-0.259267680696583,
-0.26343930706966234,
-0.2678748817640335,
-0.27208056029484906,
-0.27563434721161006,
-0.2782085521599045,
-0.27958724866387774,
-0.2796768820234141,
-0.278507792882849,
-0.27622510527540967,
-0.273069143110225,
-0.2693476463673756,
-0.2654036555353514,
-0.2615834271175277,
-0.25820814465388375,
-0.2555519452550816,
-0.2538274077424447,
-0.25317848735818016
],
[
-0.34047706411211376,
-0.3469005073098428,
-0.35478478033521954,
-0.36406321264249186,
-0.3745970444258031,
-0.38616860606153813,
-0.39847767093695463,
-0.4111419077818885,
-0.4237023776442581,
-0.435634996290871,
-0.4463687579989861,
-0.4553112164935287,
-0.46188117140163176,
-0.46554767365440264,
-0.4658733597882947,
-0.46255885149109655,
-0.45548369731455485,
-0.444738350344283,
-0.4306412870762468,
-0.413735915206493,
-0.39476367707293525,
-0.37461284423370755,
-0.3542466814616032,
-0.3346191818767623,
-0.3165901574983685,
-0.3008526366137354,
-0.28788332899712055,
-0.2779217395624327,
-0.270977150980229,
-0.26685750345336956,
-0.2652117142075603,
-0.26557726922540326,
-0.26742698210284344,
-0.27021140948157396,
-0.2733956281656711,
-0.2764904631324867,
-0.279078709704637,
-0.280836550869231,
-0.2815495447044021,
-0.2811217185935304,
-0.2795759977461274,
-0.27704479999533893,
-0.2737511025782773,
-0.26998208873817364,
-0.26605886309591886,
-0.26230617945134305,
-0.2590256345331965,
-0.2564746994738065,
-0.2548527248078336,
-0.25429397594145353
],
[
-0.3456120002546972,
-0.35313600022258207,
-0.3622877798718662,
-0.37300950860651705,
-0.3851669206609061,
-0.39854096565350194,
-0.4128225293283372,
-0.42761126335952837,
-0.4424196365985009,
-0.45668335195763055,
-0.4697791936611888,
-0.4810510868733844,
-0.4898445754142804,
-0.49554899793997165,
-0.49764538178671813,
-0.4957565831760926,
-0.4896946909834865,
-0.4794994798938015,
-0.4654611177806418,
-0.44812080133275667,
-0.4282448684007809,
-0.4067713830469577,
-0.3847329676775362,
-0.3631648913711716,
-0.34301159460715414,
-0.3250462079751477,
-0.3098151541124814,
-0.29761409790201143,
-0.28849441676211596,
-0.2822936104689371,
-0.2786803285055699,
-0.27720501447916956,
-0.2773494360095341,
-0.2785712134781282,
-0.2803418826620494,
-0.28217854751760685,
-0.28366972647362787,
-0.28449574446866244,
-0.2844433112661542,
-0.2834132060515018,
-0.28141973314041646,
-0.2785811352343486,
-0.27510139627953945,
-0.2712453847436256,
-0.26731046491854826,
-0.2635981131741554,
-0.2603886793927339,
-0.25792150400042546,
-0.2563815016401296,
-0.2558923314695587
],
[
-0.35121483599427616,
-0.3598944390766716,
-0.37037815413059394,
-0.38261915584316886,
-0.3964900635440234,
-0.411772930738149,
-0.4281521360238538,
-0.4452113267426321,
-0.46243570463650263,
-0.4792210434455948,
-0.4948908083903263,
-0.5087224953832801,
-0.519983711266641,
-0.5279775010228744,
-0.532094998169977,
-0.531871744187794,
-0.5270422258124392,
-0.5175856588418486,
-0.5037552299713328,
-0.4860833627130141,
-0.4653575351381032,
-0.44256498824307955,
-0.41881009766479216,
-0.3952142453726697,
-0.37281292476434547,
-0.3524664853891921,
-0.3347981564101763,
-0.32016640611134495,
-0.3086707347397528,
-0.300183605231944,
-0.2943982141440824,
-0.2908822009172707,
-0.2891299186745646,
-0.288609017533227,
-0.28879973111889456,
-0.28922691509891596,
-0.2894855217641019,
-0.28926002706895826,
-0.2883377164407259,
-0.28661511468762724,
-0.2840966278786521,
-0.28088490221019446,
-0.27716344081603395,
-0.27317328203529523,
-0.2691865314985955,
-0.26547990070712246,
-0.26231108562413663,
-0.2599000264060962,
-0.25841612106543166,
-0.25797156509243324
],
[
-0.3572645009922679,
-0.3671500361672635,
-0.379024880724085,
-0.3928554921526419,
-0.408523947170899,
-0.4258161468733521,
-0.4444126831750326,
-0.4638836271518956,
-0.48368871231932675,
-0.5031845689317545,
-0.52164072075886,
-0.5382658500489739,
-0.5522452312594224,
-0.5627891318071163,
-0.5691903704412797,
-0.5708872305511314,
-0.5675258082505577,
-0.5590140231132266,
-0.5455584190407878,
-0.5276750751378221,
-0.5061679564338268,
-0.48207219994944284,
-0.45656597307912383,
-0.4308615622139891,
-0.40609213918323284,
-0.38321273903741737,
-0.36293090549854945,
-0.34567498582228606,
-0.3315990641594089,
-0.32061639295249433,
-0.3124499208638103,
-0.30668904525578533,
-0.3028445595157063,
-0.30039720977845485,
-0.29883814059527314,
-0.29770129789344724,
-0.2965885712071048,
-0.2951883620103597,
-0.2932877417248769,
-0.29077782325400303,
-0.287651776028939,
-0.2839952689220828,
-0.2799699730386558,
-0.27579179231956874,
-0.2717063096565988,
-0.26796424617143844,
-0.26479947427495687,
-0.26241145377278086,
-0.26095311424200185,
-0.26052439606110034
],
[
-0.36373352846559626,
-0.37486963345077684,
-0.38818841539365945,
-0.40367196934794936,
-0.4212145473782196,
-0.4406088687445766,
-0.4615347756536585,
-0.4835515979002747,
-0.5060958865597787,
-0.5284864564195988,
-0.5499388250750377,
-0.569590995639569,
-0.5865419313408295,
-0.5999028871979692,
-0.6088599710630955,
-0.6127440272202136,
-0.6111014614425472,
-0.6037573976444901,
-0.5908611232325791,
-0.5729037589751411,
-0.550700099320468,
-0.5253310653542538,
-0.4980501005813265,
-0.470164949067708,
-0.4429131316953272,
-0.4173520872434271,
-0.3942815604867056,
-0.3742073006525579,
-0.35734491488128506,
-0.3436547452625094,
-0.3328951267859579,
-0.32468211949879855,
-0.31854703549403807,
-0.31398687385516677,
-0.31050586819928605,
-0.3076482591354517,
-0.3050231827597836,
-0.3023225308291442,
-0.2993321869534473,
-0.29593656812584657,
-0.29211621963852274,
-0.28793848757905716,
-0.28354197505523016,
-0.2791163272895212,
-0.2748795611651902,
-0.27105541499220487,
-0.267852985409049,
-0.2654503512510151,
-0.2639831496474072,
-0.26353834581513036
],
[
-0.3705881723654221,
-0.38301282842019413,
-0.3978208142822923,
-0.41501225157189947,
-0.4344963853238535,
-0.4560759055069541,
-0.4794332201119791,
-0.5041201357324319,
-0.5295527920658463,
-0.555014087042283,
-0.57966608921255,
-0.602574878902383,
-0.622749686104378,
-0.6391969392489232,
-0.6509878560990824,
-0.6573356207794627,
-0.6576753220402727,
-0.6517371752520671,
-0.639601734397061,
-0.6217255125529542,
-0.5989273857061173,
-0.5723309433873793,
-0.5432656051941755,
-0.5131386453928946,
-0.4832984425792979,
-0.4549126717251766,
-0.4288814864339554,
-0.40579601780244423,
-0.3859408598563241,
-0.3693302708345163,
-0.3557640715358217,
-0.34489024367285404,
-0.33626491149353255,
-0.3294045568597135,
-0.32382863092466097,
-0.31909273630986035,
-0.31481338289997063,
-0.3106853319713492,
-0.30649215072947134,
-0.3021101753897175,
-0.29750590473003635,
-0.29272705071849714,
-0.2878880114821125,
-0.2831512022574274,
-0.27870622048606997,
-0.2747490337518308,
-0.2714632066179725,
-0.2690047034683789,
-0.26749116945498774,
-0.26699595005533894
],
[
-0.37778868020405887,
-0.3915322790304947,
-0.40786606183650265,
-0.42681054922221184,
-0.44829284000133685,
-0.4721288712029994,
-0.4980071568361395,
-0.525475540102071,
-0.5539329861242164,
-0.5826289572029535,
-0.6106733039364469,
-0.6370596598036458,
-0.6607048009591449,
-0.6805051227524427,
-0.695409210267029,
-0.7045025635183123,
-0.7070972351590878,
-0.7028160126920052,
-0.6916585265701022,
-0.6740360601459142,
-0.6507636854292048,
-0.6230033809164359,
-0.5921602107809751,
-0.5597442892727842,
-0.5272209439490037,
-0.4958758518037296,
-0.46671801589229367,
-0.4404323753987316,
-0.4173805323183246,
-0.3976380524848102,
-0.381052827921158,
-0.3673103712102386,
-0.35599610532300874,
-0.34664927073295826,
-0.33880659536680713,
-0.3320359695809376,
-0.325961234370751,
-0.320279239331025,
-0.31476998253907573,
-0.3093002616060132,
-0.30382108977064815,
-0.29835927230597004,
-0.2930039551474217,
-0.2878894853505185,
-0.2831763518156112,
-0.2790321427285076,
-0.27561430984218505,
-0.273056124065425,
-0.2714566592037502,
-0.27087507504391617
],
[
-0.3852897199615868,
-0.4003741873771143,
-0.41826060636970164,
-0.4389921943642565,
-0.4625167414881244,
-0.4886667606644781,
-0.5171405667215163,
-0.5474858804890619,
-0.5790881547972442,
-0.6111664718482337,
-0.6427804041635041,
-0.6728514205181937,
-0.7002019665120528,
-0.7236140020238393,
-0.7419064152668016,
-0.7540274677375742,
-0.759154647123323,
-0.7567906537310806,
-0.7468415088379364,
-0.7296618030278462,
-0.7060537931571612,
-0.6772122801796406,
-0.644616369268848,
-0.609881257145374,
-0.5745945975279103,
-0.5401675409924149,
-0.5077264812534164,
-0.4780589885414188,
-0.45161224766871855,
-0.42853109343958273,
-0.40871855101418486,
-0.3919035951353904,
-0.377705588925481,
-0.3656898179053176,
-0.3554122550231573,
-0.3464538597108473,
-0.3384456071281827,
-0.3310855224242988,
-0.3241486922068342,
-0.31749087706864865,
-0.3110461730534606,
-0.304819256948494,
-0.2988730643641895,
-0.29331315763974786,
-0.2882703742714563,
-0.28388347373883116,
-0.2802833726339504,
-0.2775802124341502,
-0.2758540321549756,
-0.2751493213086287
],
[
-0.3930409528128398,
-0.40947895424081593,
-0.4289340968229114,
-0.4514744541586393,
-0.47707124666351586,
-0.5055768608269966,
-0.5367031753097156,
-0.5700018303452112,
-0.604848791105502,
-0.6404363571949403,
-0.6757764840446358,
-0.7097196330591358,
-0.7409930196586518,
-0.7682607683422624,
-0.7902059415111495,
-0.805630778541778,
-0.8135671887835502,
-0.8133853089261955,
-0.8048846569575165,
-0.788351036976514,
-0.7645638445103574,
-0.7347437907159963,
-0.7004409417643075,
-0.6633764490496097,
-0.6252646302027227,
-0.5876490105573058,
-0.5517818258228573,
-0.5185623857939563,
-0.48853252257971724,
-0.46191482103364767,
-0.43867492346553205,
-0.4185914605106944,
-0.4013224758476803,
-0.38646255574696275,
-0.3735887757815932,
-0.3622958049892775,
-0.35222142477656626,
-0.3430638277770117,
-0.33459179847317677,
-0.3266485605263971,
-0.31914989988357734,
-0.31207721427126334,
-0.3054663684526713,
-0.29939354305484756,
-0.2939595178145564,
-0.28927392030279697,
-0.28544085530672314,
-0.2825470331062814,
-0.28065310716863623,
-0.279788496334459
],
[
-0.40098773700987533,
-0.4187819892113023,
-0.4398103057681355,
-0.4641675691825009,
-0.4918509883237965,
-0.5227359955349555,
-0.5565517632516517,
-0.5928579935718172,
-0.6310254639620068,
-0.6702237717481903,
-0.7094206225271548,
-0.747397547853088,
-0.7827867267780302,
-0.8141322431749928,
-0.8399764036009626,
-0.8589677345266322,
-0.8699824292110624,
-0.8722461396521877,
-0.865439130682511,
-0.8497659877784449,
-0.8259723475568961,
-0.795296605020411,
-0.759355095376691,
-0.7199741552140152,
-0.6789977282862403,
-0.638107722170995,
-0.5986903131173973,
-0.5617657479875864,
-0.5279799100467888,
-0.4976420090186473,
-0.47078809869817784,
-0.44725282615509676,
-0.42673768274128876,
-0.40886973748358524,
-0.39324890325434914,
-0.3794840733405078,
-0.36721941170480865,
-0.3561522221089397,
-0.3460435985853365,
-0.3367227740019041,
-0.3280859097932638,
-0.32009007444646453,
-0.31274331669101696,
-0.3060919650564218,
-0.30020647040771453,
-0.295167165085235,
-0.2910512036186892,
-0.2879216918867171,
-0.28581965811485754,
-0.2847591375432401
],
[
-0.40907194259845214,
-0.4282146544092684,
-0.45080821578148167,
-0.47697599417750913,
-0.5067434776624176,
-0.5400120892312872,
-0.5765318782051094,
-0.6158747337213681,
-0.6574107102714571,
-0.7002911786574697,
-0.7434436225759667,
-0.7855836567016028,
-0.8252498029629134,
-0.8608652714945472,
-0.8908281434895488,
-0.9136269683066819,
-0.9279733465337539,
-0.9329374916483765,
-0.9280682184774016,
-0.9134764921590071,
-0.8898627225031647,
-0.8584735883105102,
-0.8209853533425255,
-0.779326921042644,
-0.735473124440974,
-0.691249002790981,
-0.648182072532361,
-0.6074225015772541,
-0.569729709920952,
-0.5355085836056992,
-0.5048735161129927,
-0.477721566252832,
-0.4538023819435688,
-0.4327785839523648,
-0.4142745344061838,
-0.3979137700938906,
-0.38334636834762237,
-0.37026769943985594,
-0.3584298423913057,
-0.3476466882122795,
-0.3377935860536898,
-0.3288023628534231,
-0.3206526475904876,
-0.31336058834944724,
-0.30696617781887037,
-0.3015204301699017,
-0.297073547092944,
-0.29366498329146595,
-0.291316013425722,
-0.29002506763779157
],
[
-0.41723285213449346,
-0.4377053143061127,
-0.4618432395010035,
-0.48979981030663833,
-0.5216307296077831,
-0.5572660220472105,
-0.596479927602318,
-0.6388604977724763,
-0.683781561766089,
-0.7303810198822612,
-0.7775507442722146,
-0.823944362155511,
-0.8680093637833763,
-0.9080487788475476,
-0.9423147045602266,
-0.9691312117634341,
-0.9870380940809893,
-0.9949405795842541,
-0.9922448400039745,
-0.9789562799426315,
-0.9557184141533785,
-0.9237758849645484,
-0.8848569778953023,
-0.8409885822659038,
-0.7942756997462304,
-0.7466896001755936,
-0.6999054096046009,
-0.6552115682087418,
-0.6134902238518292,
-0.5752508527397036,
-0.54069400898565,
-0.509785428734767,
-0.4823274748914397,
-0.4580212450978536,
-0.4365170562251093,
-0.41745346066411315,
-0.4004860008601847,
-0.3853071540593762,
-0.37165879546956426,
-0.3593382912635825,
-0.34819917273120327,
-0.33814729524658027,
-0.32913343882983503,
-0.3211434071213195,
-0.31418676028187953,
-0.3082853181035057,
-0.3034624650952362,
-0.2997340856104904,
-0.2971016860040139,
-0.29554796593191623
],
[
-0.4254081195003525,
-0.4471804601606437,
-0.4728285384255051,
-0.5025362709885639,
-0.5363910711553652,
-0.574353736441874,
-0.6162256156716384,
-0.6616146060142594,
-0.7099026932647355,
-0.7602192033005398,
-0.8114254789000416,
-0.8621179497327102,
-0.9106569697524082,
-0.955227730758994,
-0.9939365280039892,
-1.0249405443211381,
-1.0466026213313584,
-1.0576553176576646,
-1.0573524492076078,
-1.045582853259208,
-1.0229217170280833,
-0.990600757370248,
-0.9503910103955694,
-0.9044108046288206,
-0.8548923847842108,
-0.8039543002194165,
-0.7534239217467221,
-0.7047351508121974,
-0.658901270819368,
-0.6165447203405714,
-0.5779596304903114,
-0.5431863614645245,
-0.5120843050571191,
-0.4843957976130382,
-0.45979854265939135,
-0.4379464981547092,
-0.41850032510376334,
-0.40114881778037814,
-0.3856226748694478,
-0.3717017944099621,
-0.3592171271618121,
-0.34804805837204755,
-0.33811630217637556,
-0.3293773453037936,
-0.3218105139922407,
-0.3154087150178444,
-0.31016879573459466,
-0.3060832824761448,
-0.30313401595836775,
-0.3012879413122149
],
[
-0.43353475746729186,
-0.45656587538590343,
-0.48367640213070273,
-0.5150814382420925,
-0.5509010851759835,
-0.5911285444256598,
-0.6355946724380328,
-0.6839304582477814,
-0.7355301510194654,
-0.789519378450993,
-0.8447343680267652,
-0.899719908968379,
-0.9527543666811857,
-1.0019091704440395,
-1.0451471351602861,
-1.080458549485153,
-1.1060266300133184,
-1.1204059060261615,
-1.12269009220319,
-1.1126418732131174,
-1.0907573805127897,
-1.0582443619758437,
-1.0169062665803672,
-0.9689444544445137,
-0.9167131424448217,
-0.8624767807792582,
-0.8082174408490376,
-0.7555199027580294,
-0.7055356348578696,
-0.6590073974299728,
-0.616329573537141,
-0.5776225714710679,
-0.5428067895385189,
-0.5116683927583956,
-0.48391387588250456,
-0.45921308741983724,
-0.4372316522241595,
-0.41765415219266955,
-0.4001994372838573,
-0.38462930794481887,
-0.37075167718527635,
-0.358419243890447,
-0.3475246914595056,
-0.33799343841368734,
-0.329774969422413,
-0.32283373086571343,
-0.3171404659905741,
-0.31266469274718767,
-0.30936881119179493,
-0.30720409472649624
],
[
-0.4415501248388183,
-0.46578780780998663,
-0.49429964824793804,
-0.5273318635165773,
-0.5650376367089984,
-0.6074435752414913,
-0.6544118081244108,
-0.7055990853716382,
-0.7604155900280093,
-0.8179879364432253,
-0.8771328196416929,
-0.9363495846506884,
-0.9938409473487947,
-1.0475704196193627,
-1.0953619540072572,
-1.1350416227627678,
-1.1646132026823404,
-1.1824506134974346,
-1.1874821742521608,
-1.1793367344368786,
-1.1584218086213687,
-1.1259104046363564,
-1.0836273258280142,
-1.0338468804576166,
-0.9790375858672318,
-0.9216056641569342,
-0.8636876286588632,
-0.8070221498560012,
-0.7529039609664747,
-0.7022019892953378,
-0.6554164503441943,
-0.6127524943622193,
-0.5741950796364659,
-0.5395766160972031,
-0.5086338193344131,
-0.4810530895774914,
-0.4565051443418515,
-0.4346701747090622,
-0.41525489276673344,
-0.39800275746289926,
-0.3826985524364943,
-0.36916840530831196,
-0.35727629466843425,
-0.3469180701235659,
-0.33801398220003076,
-0.3305006554378258,
-0.32432332480549486,
-0.3194289934853911,
-0.31576097346759946,
-0.3132550613582905
],
[
-0.4493928857273424,
-0.47477411622635035,
-0.5046130042704191,
-0.5391862663403819,
-0.5786799257937361,
-0.6231542967882808,
-0.6725038143976833,
-0.7264129558513405,
-0.7843109194455176,
-0.8453296268383022,
-0.9082718149406143,
-0.9715980629547131,
-1.0334428632237997,
-1.091669408948627,
-1.1439698062876795,
-1.1880115054543818,
-1.22162223909279,
-1.2429959517307811,
-1.2508931904481193,
-1.244803645419766,
-1.2250382438803802,
-1.1927251421607625,
-1.149699050924518,
-1.0982956849139653,
-1.0410878068072087,
-0.9806162949388889,
-0.9191686692166737,
-0.8586375119696791,
-0.8004633502735526,
-0.7456451265189508,
-0.6947930331175501,
-0.6482007255771165,
-0.6059207668487792,
-0.567834051884802,
-0.533709020282293,
-0.5032495360157707,
-0.4761319050834345,
-0.45203218176029525,
-0.430645107857198,
-0.4116960059896668,
-0.3949468574601547,
-0.38019770829121113,
-0.3672844833298843,
-0.3560742395999128,
-0.3464588355227054,
-0.33834791207769355,
-0.3316619639440892,
-0.3263261235721231,
-0.3222651000195167,
-0.31939952477530764
],
[
-0.45700391652914774,
-0.4834553616238322,
-0.5145344348553795,
-0.5505471657318803,
-0.5917115105888027,
-0.6381210404884634,
-0.6897027251193902,
-0.7461699300067648,
-0.8069732276189542,
-0.8712536417972131,
-0.937805337763616,
-1.0050571124375853,
-1.071083603489087,
-1.133656963630436,
-1.190346898819026,
-1.2386709108202818,
-1.2762875868085133,
-1.3012151360792794,
-1.3120473085680189,
-1.3081320848371727,
-1.2896777871062866,
-1.2577585758189294,
-1.214207495793936,
-1.1614088647811895,
-1.1020273184410194,
-1.0387281604696104,
-0.9739429773959177,
-0.9097148377359129,
-0.8476295606057903,
-0.7888175407826126,
-0.7340013551960033,
-0.6835658149399534,
-0.6376335407212543,
-0.5961359654469671,
-0.5588748631925351,
-0.5255727815350753,
-0.49591254285748043,
-0.4695668148771419,
-0.4462190510456019,
-0.42557714136400815,
-0.407381051715094,
-0.3914056443807328,
-0.3774597935150539,
-0.3653828377692139,
-0.3550393356749435,
-0.346312993741976,
-0.33910051407105324,
-0.33330595794987694,
-0.32883605294211526,
-0.325596697234356
],
[
-0.4643271401405229,
-0.4917658177003732,
-0.5239863824589437,
-0.5613224229446245,
-0.6040222467985625,
-0.6522114589297743,
-0.7058489443212332,
-0.7646772427940982,
-0.8281698349774461,
-0.8954799787755189,
-0.9653982984554305,
-1.0363289125863795,
-1.106295738892956,
-1.1729907132101214,
-1.233872966766868,
-1.2863218725098675,
-1.3278374728945532,
-1.3562704001126913,
-1.3700523049454187,
-1.3683900414569492,
-1.3513855532992243,
-1.3200510402144656,
-1.276206344288468,
-1.2222704573289769,
-1.1609852876261861,
-1.0951272054002654,
-1.0272612694005245,
-0.9595738961062552,
-0.8937923482218706,
-0.8311772028082738,
-0.7725638597159503,
-0.7184296697144731,
-0.6689690915844186,
-0.624165935616737,
-0.5838570377454406,
-0.5477851862758663,
-0.5156411175096527,
-0.4870953973431096,
-0.46182142209306654,
-0.43951088156944196,
-0.41988299818399644,
-0.40268877709562934,
-0.38771141331870984,
-0.3747639121236097,
-0.36368488418970313,
-0.35433336824159567,
-0.3465834056806645,
-0.34031894451876443,
-0.3354294904364292,
-0.3318067619366587
],
[
-0.4713102715159121,
-0.4996443802760786,
-0.5328968944320831,
-0.5714266593434478,
-0.6155100939532299,
-0.6653028483630821,
-0.7207942483623397,
-0.7817553888204881,
-0.8476833060664322,
-0.9177458609199423,
-0.9907346701659467,
-1.0650362199078,
-1.1386334090033339,
-1.2091501335340564,
-1.2739490100583388,
-1.3302861934362606,
-1.3755175500390449,
-1.4073383993613247,
-1.4240269851590284,
-1.4246530328818805,
-1.4092107978916735,
-1.3786438633969484,
-1.3347474388440523,
-1.2799602064887248,
-1.2170846177245873,
-1.1489917208154303,
-1.0783658418756947,
-1.0075258541966,
-0.9383331567530413,
-0.8721743855787143,
-0.8099960915268548,
-0.7523681700350294,
-0.6995579483952424,
-0.6516031955259799,
-0.6083776331049235,
-0.5696461796818306,
-0.5351093561010778,
-0.5044374525230559,
-0.47729559610017414,
-0.45336104434039637,
-0.43233403892470945,
-0.4139434880876869,
-0.3979486517343773,
-0.38413790064291575,
-0.37232551166855865,
-0.362347341201285,
-0.3540560862532014,
-0.3473166973728432,
-0.3420023554850591,
-0.3379912743445608
],
[
-0.47790546340012474,
-0.5070353605649729,
-0.5412006156072497,
-0.5807825194945084,
-0.6260827453693065,
-0.6772842736459468,
-0.7344045725905715,
-0.797241782278964,
-0.8653162430219579,
-0.9378119722986591,
-1.0135255137512285,
-1.0908325515974866,
-1.1676850245197818,
-1.2416520770052146,
-1.3100158628696972,
-1.3699271234612325,
-1.41861557982407,
-1.4536376220125355,
-1.4731308919287265,
-1.4760355689810105,
-1.462239520836706,
-1.432612443660374,
-1.388913614732047,
-1.3335854081538923,
-1.2694720785756486,
-1.1995201352320677,
-1.126515582981373,
-1.0528952906438178,
-0.9806441274837773,
-0.9112678312619806,
-0.8458202853482487,
-0.7849624929441738,
-0.7290348623515409,
-0.6781303822906961,
-0.6321615288261131,
-0.5909175308358692,
-0.5541110036967078,
-0.5214143016969446,
-0.4924866046834555,
-0.46699302221087935,
-0.4446170531255935,
-0.4250676899023931,
-0.40808236384412067,
-0.39342681611910724,
-0.38089285940171713,
-0.3702948666023529,
-0.3614656863822987,
-0.3542525413698614,
-0.3485133187194447,
-0.34411352071327617
],
[
-0.48406984559793886,
-0.5138891524927696,
-0.5488396313907145,
-0.5893217563001598,
-0.6356590460076246,
-0.6880584408794842,
-0.7465624999166838,
-0.8109940694024053,
-0.8808956827567611,
-0.9554682557904549,
-1.033516542573596,
-1.1134119181669377,
-1.193085574206088,
-1.2700660222248406,
-1.341572661188082,
-1.4046711686051825,
-1.4564865078826854,
-1.4944564330107195,
-1.5165948153782032,
-1.5217234714719934,
-1.5096278549114028,
-1.481099944507681,
-1.4378519549194126,
-1.3823130113157758,
-1.3173485969521792,
-1.2459589390982586,
-1.1710111319889793,
-1.0950423837281702,
-1.0201473009040325,
-0.9479411081775747,
-0.8795791262188828,
-0.8158105797740527,
-0.7570482995227258,
-0.7034413606348957,
-0.6549428269154954,
-0.6113686311330842,
-0.5724461623588142,
-0.5378526307568332,
-0.5072440712283077,
-0.48027620100082946,
-0.4566184516246823,
-0.4359624713831005,
-0.41802630746476943,
-0.402555362861694,
-0.3893210958904172,
-0.378118295852774,
-0.36876162870950546,
-0.3610820040592053,
-0.3549231731691187,
-0.3501388327943018
],
[
-0.48976595516010635,
-0.5201627689762713,
-0.5557641519704382,
-0.5969861216471088,
-0.6441701702797105,
-0.6975432720685215,
-0.7571693788427484,
-0.8228929815190084,
-0.8942769294026756,
-0.9705390266242983,
-1.0504948748283733,
-1.132517616981075,
-1.2145278818055305,
-1.2940281949349721,
-1.3681941500789045,
-1.4340287621878458,
-1.4885764685290475,
-1.5291801325873944,
-1.5537503766685845,
-1.561005255735419,
-1.5506344126259155,
-1.5233497692436107,
-1.480805626402604,
-1.4254001550968805,
-1.3599979431777578,
-1.287629083762082,
-1.2112186830757832,
-1.133383959812321,
-1.0563128991761088,
-0.9817182462894303,
-0.9108489509185156,
-0.8445381704419922,
-0.7832695942214074,
-0.7272487753624626,
-0.676471061459089,
-0.6307815892431587,
-0.589925467376764,
-0.553587912470378,
-0.5214250157008578,
-0.49308625911837267,
-0.4682300618602384,
-0.4465336421972701,
-0.42769840711452645,
-0.41145196865061306,
-0.39754775633683725,
-0.3857630572964672,
-0.3758961744201228,
-0.36776325182491654,
-0.3611951793081669,
-0.3560348582804067
],
[
-0.49496205814869265,
-0.5258202460286487,
-0.5619330330975525,
-0.6037280520990351,
-0.6515605395420737,
-0.7056731459309316,
-0.7661470108800276,
-0.8328446321399741,
-0.9053466718166259,
-0.9828871748973596,
-1.0642946412466572,
-1.1479496146113697,
-1.2317721633942493,
-1.3132536974245732,
-1.389545727376258,
-1.45761244416004,
-1.5144441294380473,
-1.5573152471181353,
-1.584056777295274,
-1.5933006198788204,
-1.5846496610168883,
-1.5587349579788337,
-1.5171425366378308,
-1.4622214804562816,
-1.3968122548618944,
-1.3239494089224273,
-1.2465911199953805,
-1.1674122415183605,
-1.0886756936275575,
-1.0121778200430445,
-0.9392517131734593,
-0.8708088637963948,
-0.8074013379486192,
-0.7492910026424053,
-0.6965169322097767,
-0.648955945119166,
-0.6063739545956564,
-0.5684675746011796,
-0.5348964472869335,
-0.5053072873094515,
-0.47935085910625275,
-0.4566931445826845,
-0.4370219025801729,
-0.420049716052908,
-0.40551449427116104,
-0.39317825904242776,
-0.3828249028925321,
-0.37425746781097824,
-0.36729535940085256,
-0.3617717870328423
],
[
-0.49963236609340633,
-0.530832916586939,
-0.5673141328011011,
-0.6095111443729844,
-0.6577884661588613,
-0.7123997789361564,
-0.7734388612239183,
-0.8407821808719982,
-0.914025262396656,
-0.9924172655132795,
-1.0748011608924708,
-1.1595701003832195,
-1.2446532973949667,
-1.32754584724766,
-1.4053951772934812,
-1.4751512333388745,
-1.5337777958423782,
-1.5785092432275911,
-1.607122747513997,
-1.6181840129947935,
-1.6112203355780366,
-1.5867826396513829,
-1.5463791105705746,
-1.4922916945727462,
-1.4273130392800188,
-1.3544558844755583,
-1.2766853998315852,
-1.196710342724736,
-1.11684863337054,
-1.038964781735522,
-0.9644651361808234,
-0.894332736570652,
-0.8291846313532351,
-0.7693382074341717,
-0.7148773349899767,
-0.6657128286034157,
-0.6216344861264329,
-0.5823538138397324,
-0.547537670153792,
-0.5168336736534027,
-0.489888503691557,
-0.46636030331140765,
-0.445926361581757,
-0.4282871589377215,
-0.41316773583174804,
-0.40031720905617485,
-0.389507120930737,
-0.38052916985056373,
-0.37319274065201036,
-0.367322533508621
],
[
-0.5037571518753132,
-0.5351795580756096,
-0.5718845063351452,
-0.614310419620947,
-0.6628265174512905,
-0.7176927304609028,
-0.7790107615002906,
-0.8466668095004155,
-0.920268066891451,
-0.9990773923837377,
-1.081953465768141,
-1.1673068856148308,
-1.2530853389994636,
-1.3368020734705914,
-1.415620218506456,
-1.4865000621215059,
-1.5464068773376916,
-1.5925640213783874,
-1.6227218609251586,
-1.6354013528830897,
-1.6300669780053283,
-1.6071917427670328,
-1.568197584479543,
-1.5152820062062873,
-1.4511664848505552,
-1.3788156772675106,
-1.301175341335469,
-1.2209637843319354,
-1.1405331112932617,
-1.0617995144974142,
-0.9862306071880741,
-0.91487315379684,
-0.8484049014997475,
-0.7871972693602468,
-0.7313795017520118,
-0.6808984170975632,
-0.6355706225839521,
-0.5951259705466032,
-0.5592422384948519,
-0.5275717064637042,
-0.49976064960391997,
-0.47546288902075395,
-0.45434853906575134,
-0.436109012250558,
-0.42045922885553844,
-0.4071378476684464,
-0.3959061989033572,
-0.3865464672738139,
-0.3788595471341467,
-0.37266287612829174
],
[
-0.5073227706905776,
-0.5388464190603093,
-0.5756304437796027,
-0.6181123790356078,
-0.6666615986718566,
-0.7215395255716064,
-0.7828510890627847,
-0.8504879805883914,
-0.9240658338639649,
-1.0028597029192259,
-1.0857450421661357,
-1.1711544473510427,
-1.2570629813094558,
-1.3410159428903172,
-1.4202112721744782,
-1.4916434767085387,
-1.5523066932160177,
-1.5994419357673892,
-1.6307997645760965,
-1.6448783142668717,
-1.6410929886873378,
-1.619842432213848,
-1.5824554488818798,
-1.531029278799792,
-1.4681921479604019,
-1.3968352995806121,
-1.3198592220431182,
-1.2399675421433654,
-1.159525457140193,
-1.0804837558422078,
-1.004358517047758,
-0.9322515200867596,
-0.8648960760214844,
-0.8027154064112921,
-0.7458841128427857,
-0.6943865832502003,
-0.648068856610738,
-0.6066823986367071,
-0.5699195110146584,
-0.5374408578679604,
-0.5088959971775062,
-0.48393797531514515,
-0.46223306943734044,
-0.4434667058223165,
-0.42734648087976845,
-0.4136030890422999,
-0.4019898320928521,
-0.3922812561518685,
-0.3842713409273981,
-0.3777715546243361
],
[
-0.5103215921420889,
-0.5418271311377074,
-0.5785473562899046,
-0.6209148562965534,
-0.6692947596050941,
-0.7239453985263548,
-0.7849704235715684,
-0.8522629756785551,
-0.9254440752314731,
-1.0037995752967528,
-1.0862227569815297,
-1.1711725619472075,
-1.2566598723838474,
-1.3402751697912023,
-1.419269221695847,
-1.4906932616475679,
-1.5515961311938185,
-1.5992636903393993,
-1.6314725101075933,
-1.646719240863179,
-1.6443841790248757,
-1.624796272384985,
-1.5891861368042297,
-1.5395371494667072,
-1.4783644332685675,
-1.4084624109567812,
-1.332661872774162,
-1.2536283930103758,
-1.1737194703163754,
-1.0949032317458953,
-1.0187309028441893,
-0.946349844950977,
-0.8785430020694384,
-0.8157823994145242,
-0.7582872993386114,
-0.706080664757954,
-0.659040152785807,
-0.6169417871663334,
-0.5794957712177136,
-0.5463747226023521,
-0.5172350710621161,
-0.4917325761615403,
-0.46953298242493524,
-0.45031879611159487,
-0.433793082367959,
-0.4196810696930884,
-0.4077302266362357,
-0.39770935326702417,
-0.38940711338910017,
-0.38263032670857977
],
[
-0.5127518496076038,
-0.5441225127252154,
-0.5806395183331303,
-0.6227266752159117,
-0.6707407348300143,
-0.7249326698300946,
-0.7854006982871696,
-0.8520357378322263,
-0.9244614937118129,
-1.0019735003287848,
-1.0834840424640015,
-1.1674826290881786,
-1.252023919332068,
-1.3347557697646137,
-1.4129983453377686,
-1.483880171896837,
-1.5445283168318165,
-1.5922982097680267,
-1.6250159989606758,
-1.6411965982108239,
-1.640198659277679,
-1.6222869092898258,
-1.5885907556787904,
-1.540968959010214,
-1.4818067802497912,
-1.41378125097021,
-1.3396312925472744,
-1.26196260277603,
-1.1831050354493047,
-1.1050270311944663,
-1.0293014061202985,
-0.957111118671673,
-0.8892820947489748,
-0.8263313949148546,
-0.7685215102074603,
-0.7159143312009106,
-0.6684207709564222,
-0.6258439138206446,
-0.5879148972434916,
-0.5543215992588635,
-0.5247307139040791,
-0.49880405676977135,
-0.47621003805896556,
-0.45663123319204457,
-0.439768913885332,
-0.4253453038414656,
-0.41310421059839797,
-0.4028105698793354,
-0.39424932797628154,
-0.3872239857046922
],
[
-0.5146174130598771,
-0.5457402719192967,
-0.5819196746554895,
-0.6235671239341418,
-0.6710272333313192,
-0.7245397796585346,
-0.7841938803509659,
-0.8498750706880346,
-0.9212075364774505,
-0.9974957868528616,
-1.0776725138987449,
-1.1602619351478276,
-1.2433699228148054,
-1.3247128135107566,
-1.401695001855664,
-1.4715404765852758,
-1.5314751054299893,
-1.578945370693341,
-1.611847453165753,
-1.6287318552297427,
-1.6289478869736853,
-1.612702013023925,
-1.5810215180614238,
-1.5356330705646493,
-1.478779066943474,
-1.4130021545288673,
-1.3409301777611708,
-1.26508929025853,
-1.1877630936849286,
-1.1109039343769604,
-1.0360927054595694,
-0.9645376113700238,
-0.8971002911183115,
-0.8343383352408263,
-0.7765552737941824,
-0.7238515645256074,
-0.6761723814895739,
-0.633349834041967,
-0.5951385824765647,
-0.5612447141211623,
-0.5313482956186293,
-0.5051203180244457,
-0.4822348812101376,
-0.46237748385025834,
-0.4452502384674022,
-0.4305747471429058,
-0.41809327193314405,
-0.40756872717583814,
-0.39878391657215073,
-0.39154034111317126
],
[
-0.515927491646808,
-0.5466946162827802,
-0.5824085224004529,
-0.6234652603286197,
-0.6701939990917204,
-0.7228200105286033,
-0.7814202306798462,
-0.8458722719937344,
-0.9157991938994917,
-0.9905142689871359,
-1.0689722820849943,
-1.1497362307443122,
-1.2309700633426606,
-1.310468483178068,
-1.385732983471062,
-1.4540984602091185,
-1.5129067736140702,
-1.5597131752119473,
-1.5925006424371349,
-1.6098695943725452,
-1.6111706557282197,
-1.59655815869735,
-1.566958386825436,
-1.5239618970389528,
-1.46965934896946,
-1.406446077710195,
-1.3368231245004076,
-1.2632200793392283,
-1.1878574556177512,
-1.1126560729793242,
-1.039191711915436,
-0.9686873103103188,
-0.9020324665927782,
-0.8398201279032119,
-0.7823919324630023,
-0.7298858078579677,
-0.6822815100515668,
-0.6394415316090627,
-0.601146124755322,
-0.56712210010518,
-0.5370656472957913,
-0.5106597612620942,
-0.4875870210299611,
-0.4675385151907967,
-0.4502196829441285,
-0.4353537721092522,
-0.4226835263127777,
-0.4119716161159044,
-0.4030002318063488,
-0.39557016440512416
],
[
-0.5166962726934257,
-0.5470057784064919,
-0.5821340808105604,
-0.6224590669239249,
-0.6682916703720791,
-0.7198399417899886,
-0.7771662090371442,
-0.8401383019118009,
-0.9083771948927765,
-0.9812052402428696,
-1.057601287970114,
-1.1361710879290627,
-1.2151428845708478,
-1.292398301369922,
-1.3655466752489387,
-1.4320463245644541,
-1.4893686746495751,
-1.535191437310123,
-1.5675971909065283,
-1.5852473311317121,
-1.5875025377040402,
-1.5744710599136487,
-1.5469811384830423,
-1.506486559622496,
-1.4549215496496708,
-1.3945254557276696,
-1.3276605649460824,
-1.2566458801226397,
-1.1836241155899354,
-1.1104704347321643,
-1.0387429202222616,
-0.9696687930662008,
-0.904157536276674,
-0.8428317186786467,
-0.7860674705176709,
-0.7340383697297657,
-0.6867583747264466,
-0.6441210758977614,
-0.6059338168302164,
-0.5719461545375129,
-0.541872737192469,
-0.51541104643522,
-0.49225464523268614,
-0.4721026464920821,
-0.454666114390035,
-0.4396720602466564,
-0.42686561899754594,
-0.4160109051955707,
-0.40689095838927525,
-0.3993071026697266
],
[
-0.5169425043946456,
-0.5466994673644185,
-0.5811309632291126,
-0.6205944773454106,
-0.6653804712098962,
-0.7156776871627111,
-0.7715321022189285,
-0.8328006035196978,
-0.8991017733092029,
-0.9697678693011139,
-1.0438040245303664,
-1.1198625492206022,
-1.1962414761455993,
-1.2709164735000824,
-1.3416132482154397,
-1.4059230481520353,
-1.4614567705617965,
-1.5060242496559644,
-1.537816540634994,
-1.5555638348361431,
-1.5586436479950319,
-1.5471239426354535,
-1.521739412298515,
-1.4838094309296055,
-1.4351110021850704,
-1.377722949215835,
-1.3138606856583688,
-1.2457217861039747,
-1.175358840771077,
-1.10458881371336,
-1.034940380038814,
-0.967634891912013,
-0.9035935108683348,
-0.8434622712304682,
-0.7876475868201779,
-0.7363561960296383,
-0.6896351984015557,
-0.6474093469175997,
-0.6095139830903136,
-0.5757229090404905,
-0.5457711135343488,
-0.5193726621887831,
-0.49623428324848384,
-0.47606528007075677,
-0.45858442006340305,
-0.44352441750454163,
-0.4306345660206312,
-0.41968200041187576,
-0.41045198698268326,
-0.40274756305395876
]
],
"zauto": true,
"zmax": 1.646719240863179,
"zmin": -1.646719240863179
},
{
"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.6467209397089912,
0.6455858769497501,
0.6443845295755062,
0.6430931169975889,
0.6416808509342204,
0.6401106793054672,
0.6383407075888653,
0.6363262717045389,
0.6340225961164001,
0.6313879485608322,
0.628387197704705,
0.624995682566872,
0.6212032946859641,
0.6170186315513801,
0.612472977577644,
0.6076236900853451,
0.6025563177581607,
0.5973845026239818,
0.5922465126839945,
0.5872972745696516,
0.5826952012899819,
0.5785840624838119,
0.5750715769090133,
0.5722080019001075,
0.5699691764870346,
0.56824861392131,
0.5668620018152649,
0.565565096503559,
0.5640832695557652,
0.5621487876518224,
0.559540826383813,
0.5561231754728485,
0.5518750818658549,
0.5469111396887935,
0.5414863425560256,
0.5359826757172393,
0.5308747704014518,
0.5266751649212866,
0.5238650107387778,
0.5228224349197078,
0.5237650995968095,
0.5267221519511002,
0.5315425822168949,
0.5379352908815536,
0.5455268803209657,
0.5539205875487584,
0.562743655395135,
0.5716773082717344,
0.5804696895684952,
0.5889357738744329
],
[
0.6455006545487925,
0.6442956149777695,
0.6430296078286483,
0.6416771064304445,
0.6402042510956419,
0.6385695279013492,
0.6367252115618598,
0.6346195503575104,
0.6321996285960031,
0.62941482242897,
0.6262207667243148,
0.6225837622848281,
0.6184855516973297,
0.6139283481583667,
0.608939882106456,
0.6035780107554349,
0.5979341152594099,
0.5921341348245096,
0.5863357703184399,
0.5807203224431412,
0.5754780505111099,
0.5707870434894065,
0.5667873815001737,
0.5635544687236617,
0.5610770864807972,
0.5592460619360917,
0.5578579520920206,
0.5566350903266115,
0.5552598055625301,
0.5534178811358054,
0.5508451193123409,
0.5473710903870238,
0.5429550129109977,
0.5377094119569462,
0.5319073656337969,
0.525969126818693,
0.5204247591811662,
0.5158525516969062,
0.5127991706032864,
0.5116955825264734,
0.512788810802073,
0.5161085530618966,
0.5214776425080903,
0.5285604565089066,
0.5369316978035121,
0.5461451330548057,
0.5557872916700728,
0.5655099352006996,
0.5750425760021941,
0.5841903682078935
],
[
0.6441936421821834,
0.6429148930949191,
0.6415818207456545,
0.6401671865621279,
0.638633962818461,
0.6369359294742526,
0.6350191287552099,
0.6328241583943912,
0.6302892393539811,
0.6273539773969573,
0.6239637485777716,
0.6200746623809076,
0.6156590659389466,
0.6107115114264985,
0.6052549750578127,
0.5993468556143735,
0.5930838836758949,
0.5866045820178226,
0.5800874581507288,
0.5737429109224881,
0.5677972082296286,
0.5624681386645007,
0.5579341301902665,
0.5543013678792266,
0.5515757679223587,
0.5496473396959847,
0.5482926842412569,
0.5471974506706323,
0.5459959731291733,
0.5443218391277607,
0.5418618258796054,
0.5384062493341343,
0.5338901850201276,
0.5284210677945165,
0.5222883104110223,
0.5159501880696526,
0.509993642788792,
0.5050657437310871,
0.5017826322378707,
0.5006318151498506,
0.5018918335789875,
0.5055928609933662,
0.5115295916345407,
0.5193190938531209,
0.5284817882260396,
0.5385207247301674,
0.5489817152990228,
0.5594879730341955,
0.5697517487914295,
0.5795698036378304
],
[
0.6427993050142861,
0.6414427493830195,
0.6400398683241111,
0.6385617743566053,
0.6369682064843993,
0.6352080282989009,
0.6332206847680301,
0.6309386001985213,
0.6282904513956925,
0.6252052372239244,
0.6216170871180464,
0.6174707900332602,
0.6127280501010776,
0.607374441577193,
0.6014268926038059,
0.5949412285380522,
0.5880188291198806,
0.5808108332063868,
0.5735176910747752,
0.5663814836597881,
0.559668700007473,
0.553642517381772,
0.548526262587778,
0.5444632549012899,
0.5414814345334976,
0.539472357559296,
0.5381920510992956,
0.5372861788475192,
0.5363359745811072,
0.5349169891191582,
0.5326612860714312,
0.5293149118279981,
0.5247846421333099,
0.5191695397686513,
0.5127729826333416,
0.5060899766373398,
0.4997643677077364,
0.4945134290417156,
0.49102523064921344,
0.4898464028349142,
0.49128864280127726,
0.4953826957379563,
0.5018939591954813,
0.5103907260129101,
0.5203383084617818,
0.5311893008000523,
0.5424500287546578,
0.5537169281412283,
0.5646868400825691,
0.5751497404473048
],
[
0.6413182914430177,
0.6398794412524306,
0.6384036119187223,
0.6368603616064509,
0.6352061682126989,
0.6333848123771852,
0.6313288276608934,
0.628962000125672,
0.6262028466925496,
0.6229689926856643,
0.6191824026898088,
0.6147754763361203,
0.6096980651935575,
0.6039254467877408,
0.5974671456652351,
0.5903761595048977,
0.5827575922815607,
0.5747749349516524,
0.5666513951641979,
0.5586630585366689,
0.5511207576897819,
0.544338927014809,
0.5385928204127332,
0.5340699338055084,
0.5308258344117638,
0.5287565254230586,
0.5275970939873427,
0.5269499309471053,
0.5263379932485255,
0.5252729539496943,
0.5233266108218505,
0.5201959444962884,
0.515755426031184,
0.5100923510868042,
0.5035211233420764,
0.49657103647289336,
0.4899411424405886,
0.4844182429499138,
0.4807626919928184,
0.4795811929109815,
0.48121946331453463,
0.48570918890300724,
0.49278654831251784,
0.5019714668577624,
0.5126753921891188,
0.5243025836721947,
0.536322512156996,
0.5483074793523451,
0.5599411773966154,
0.5710084771446297
],
[
0.6397526825306367,
0.6382266378951916,
0.6366742666597108,
0.635063701084797,
0.6333481735323988,
0.6314662688612735,
0.6293433601807623,
0.6268942077255095,
0.6240266420548627,
0.6206462476317325,
0.616662010468141,
0.6119929727403706,
0.6065760064458536,
0.6003748179771271,
0.5933901540940941,
0.5856708225269838,
0.5773245093566127,
0.5685264667207103,
0.5595230724740295,
0.5506263455255287,
0.5421953234617132,
0.5346015689277819,
0.5281796261432813,
0.5231688192735533,
0.5196586415874741,
0.5175530019755717,
0.5165659759344023,
0.5162534715901147,
0.5160750233634863,
0.5154727361642768,
0.513952920113429,
0.5111591295520301,
0.5069298896545316,
0.5013373953169848,
0.4947036608135761,
0.48758862972104905,
0.48074290140990783,
0.4750195859373476,
0.4712490030008038,
0.47009672035925193,
0.47194230455603337,
0.476819139395443,
0.48443592918933653,
0.4942670653458631,
0.5056739134320084,
0.5180166568055823,
0.5307320283764819,
0.5433716632139935,
0.5556086627608039,
0.5672244219273056
],
[
0.638106160511751,
0.6364875953004736,
0.6348545771509423,
0.6331739765171621,
0.6313958450355689,
0.6294535229784675,
0.6272650540039076,
0.6247358819690483,
0.6217627387278789,
0.6182386302031532,
0.6140588908267794,
0.6091283803090007,
0.6033699951487422,
0.5967346937028126,
0.5892131057117368,
0.5808484248833137,
0.5717495859493125,
0.5621026724654291,
0.5521771755096503,
0.5423224464659355,
0.5329491319497736,
0.5244915705679831,
0.5173510879289301,
0.5118269527780768,
0.5080495129073817,
0.5059345960982432,
0.5051755280411632,
0.5052786797223031,
0.5056351730959252,
0.5056121785098893,
0.5046458336113815,
0.5023225582993872,
0.49844186092619397,
0.49305774239645583,
0.486496062566009,
0.4793426105006123,
0.4723937866774196,
0.4665629285001484,
0.46274487157188593,
0.4616602388297978,
0.46372101560210593,
0.4689635404559715,
0.47707283065795053,
0.48748344859806125,
0.49951333136773396,
0.5124851266690669,
0.525808413763585,
0.5390183441959207,
0.5517801509907507,
0.5638732124521207
],
[
0.6363841476013499,
0.6346673019552035,
0.6329489644835737,
0.6311949445683899,
0.6293522325832346,
0.6273489495708929,
0.625095735739536,
0.6224885448367736,
0.619412736512825,
0.6157483600838322,
0.6113766019906757,
0.6061875002600129,
0.6000891612552908,
0.5930187734454936,
0.5849556077168169,
0.5759358186410292,
0.5660681112507615,
0.5555481443031107,
0.5446679491015283,
0.5338149528920474,
0.523454146474663,
0.5140877965959324,
0.5061913508301795,
0.500132380702724,
0.49608951582897304,
0.49399503191703276,
0.49352213524428645,
0.49412485808573536,
0.4951212299958708,
0.49579863990509,
0.49551911401968524,
0.4938090783065199,
0.49042669698255303,
0.48540507799969723,
0.47906994807295467,
0.4720270714640126,
0.4651108384519545,
0.45928577214566585,
0.45550242499313676,
0.4545298218656774,
0.4568095522959485,
0.4623827392607537,
0.47091675933558347,
0.48181513436494094,
0.4943619904693209,
0.5078512153845759,
0.5216721529197736,
0.535348215176027,
0.5485395221155059,
0.5610246356157954
],
[
0.6345939028200968,
0.6327725825652147,
0.630963631838032,
0.6291320363769667,
0.6272219041547485,
0.6251562461521578,
0.6228383345944024,
0.6201545952676497,
0.6169789045057056,
0.6131781648116839,
0.6086191285390832,
0.6031765991250917,
0.5967433084131072,
0.5892418668525435,
0.5806391099569209,
0.5709627998588592,
0.5603198554478844,
0.5489139685688951,
0.5370586066543407,
0.5251792573368713,
0.5137971106286495,
0.503486710702837,
0.494804467926069,
0.4881945449774151,
0.4838915703886738,
0.48184922896962384,
0.48172163710852456,
0.48290806338967507,
0.4846492653117762,
0.48614874050975904,
0.48669141077768013,
0.48574185236933487,
0.48301541429982037,
0.4785221053682616,
0.4725834468833279,
0.46581840543474845,
0.45908968182412213,
0.45340117317966194,
0.4497471393329824,
0.4489355828126826,
0.45143352721962077,
0.45728928255955437,
0.46616083587969354,
0.4774323948215938,
0.49036662237830964,
0.5042393877180464,
0.5184278085690756,
0.532448686568082,
0.5459597163284844,
0.5587395468312231
],
[
0.6327445645145557,
0.6308121470843154,
0.6289066159519863,
0.6269924062990934,
0.6250109857671645,
0.6228804570131271,
0.6204968826257204,
0.6177372760245914,
0.6144641028136139,
0.6105311414225228,
0.6057906639456142,
0.6001020884032642,
0.5933424623253245,
0.5854192793131021,
0.5762860968651231,
0.5659610833297654,
0.5545478207897591,
0.5422562753751685,
0.5294197383819035,
0.5165009184609956,
0.5040779894226383,
0.49280099647589015,
0.4833132444488919,
0.476143303073868,
0.4715895089766749,
0.4696322123608878,
0.46990789453013326,
0.47175916854110717,
0.4743460720806403,
0.47678507544261123,
0.4782821290051881,
0.47823920342358855,
0.4763282490077095,
0.4725344833049463,
0.4671711393054981,
0.46086292125660144,
0.45448966770616533,
0.44908058446493937,
0.4456589830544885,
0.44506011242578697,
0.44777112253264684,
0.4538503794383936,
0.4629565328547129,
0.4744685604766308,
0.4876421411775894,
0.501747339319138,
0.516157816827799,
0.5303891075776814,
0.5440990516210099,
0.5570670200412999
],
[
0.6308471271247728,
0.62879657324856,
0.6267877727253128,
0.624784916661571,
0.6227271402398755,
0.6205279395478347,
0.6180764605335181,
0.6152405885689347,
0.611871652848486,
0.607810563937563,
0.6028953310338084,
0.5969701264258058,
0.5898963143205858,
0.5815660497307101,
0.5719190665650205,
0.5609629704573815,
0.548796555955873,
0.5356341817152732,
0.521826905654415,
0.5078729795164171,
0.49440712886415006,
0.4821566887154061,
0.47185643598891425,
0.4641262089243065,
0.45933536627947863,
0.4574962803557319,
0.4582296989957035,
0.46082041355760744,
0.46434529900393823,
0.4678318851620564,
0.47040655780958707,
0.47140905214055784,
0.4704681666197901,
0.46754308907850267,
0.46293470935440967,
0.4572655571634437,
0.4514204726155778,
0.44643846881712007,
0.4433555767728803,
0.4430210960772413,
0.44593625395150616,
0.45217258405428246,
0.4614004971734214,
0.4730091869682557,
0.4862630285901791,
0.5004392896453225,
0.5149173203092594,
0.5292167943569795,
0.542998159178124,
0.5560419664456434
],
[
0.6289143427214026,
0.6267382128716266,
0.6246186874061614,
0.6225200496465783,
0.620379477099898,
0.6181062667419537,
0.6155830850390887,
0.6126691545636944,
0.6092051579298744,
0.6050196422265203,
0.5999368506051392,
0.5937861586341843,
0.5864135837681941,
0.5776960731126205,
0.5675593398121187,
0.5559997625239362,
0.5431100919654714,
0.5291071836022937,
0.5143574589071539,
0.49939223841466357,
0.48490107062208265,
0.4716886747841887,
0.46058408332134226,
0.45230377948859857,
0.44729460112102176,
0.4456061505293949,
0.44684580624022363,
0.4502403213137683,
0.45478227338229615,
0.4594098072850309,
0.4631705275398067,
0.4653433834432236,
0.46551496294199957,
0.46361751411089996,
0.45993556408156266,
0.45508137807916205,
0.4499323381370659,
0.44552135378776514,
0.4428804154993232,
0.4428593123280719,
0.44596706813194326,
0.4522914214759085,
0.46152568488175466,
0.47308479587514524,
0.48625756307239926,
0.5003414704802989,
0.5147306616312194,
0.528954298137999,
0.542677839222078,
0.5556834358244879
],
[
0.6269605410195698,
0.6246510154924277,
0.6224125032807484,
0.6202097410548282,
0.6179783897013054,
0.6156240637189773,
0.6130235380605872,
0.6100280270710765,
0.6064682807848873,
0.6021612432805273,
0.5969181750567181,
0.5905544207953476,
0.5829013342274174,
0.5738211566517022,
0.5632257651723936,
0.5511000071478014,
0.5375296106320165,
0.5227321288851821,
0.507086721560162,
0.4911546039840968,
0.47567712338399565,
0.461534611213823,
0.44965096272177785,
0.44084267145781364,
0.43563915342835,
0.4341320107461767,
0.4359180857473884,
0.44016706413920453,
0.4457877069736442,
0.45163001350077614,
0.45666501007341637,
0.46011327611172226,
0.46152063628393597,
0.46079166339132854,
0.4581905420349463,
0.45431129701942824,
0.45001175411956384,
0.4463034883107708,
0.4441985778812411,
0.4445345239020274,
0.44782215542142534,
0.45416802901515313,
0.46329847784113737,
0.47466845396464796,
0.48760580894779626,
0.5014404562116237,
0.5155899878454252,
0.5295982277604968,
0.5431380589471554,
0.5559937591310723
],
[
0.6250013659974162,
0.6225502676012195,
0.6201836675907473,
0.6178671356178616,
0.6155353206438304,
0.613090781312501,
0.61040514302218,
0.6073224597044972,
0.6036644898614354,
0.5992375915350232,
0.5938411099763862,
0.5872774369494242,
0.579364287560198,
0.5699500710859605,
0.5589334065810228,
0.5462876966783551,
0.532091005507499,
0.5165599783842627,
0.5000837958520366,
0.4832498331168471,
0.46684700359577713,
0.45182755931395385,
0.4392084257892396,
0.42990701069511567,
0.42453856858746536,
0.4232407312496948,
0.42560309752383313,
0.43074066281395496,
0.4374807328330626,
0.4445882315458503,
0.4509611994401296,
0.455765063595784,
0.4585066340606728,
0.4590621097575379,
0.4576714275122436,
0.4549028179759552,
0.45158346807660654,
0.4486900535051484,
0.4472009051294774,
0.4479302160543035,
0.45138534496538246,
0.45769354872178863,
0.46662237075606045,
0.4776786408574318,
0.490241700053392,
0.5036845815261817,
0.5174561465817161,
0.5311197612504006,
0.5443581945624846,
0.5569586109967393
],
[
0.6230534327853839,
0.6204522514818045,
0.6179475993915124,
0.6155062696034328,
0.6130624626451894,
0.6105164156223956,
0.6077354994807483,
0.6045576476584174,
0.6007967918327963,
0.5962499701678973,
0.5907059519111583,
0.5839555492669958,
0.575804186347888,
0.5660876671100149,
0.5546923115252255,
0.5415805575517445,
0.5268225305536887,
0.5106326237703497,
0.49340734690987165,
0.475756099530316,
0.4585100832379023,
0.44268794219081553,
0.4293952674283482,
0.4196485287481833,
0.4141498554255258,
0.41308592369234953,
0.416042805736618,
0.42208474053036804,
0.42996198352197323,
0.43835932031869207,
0.4461066723694808,
0.4523181371669864,
0.45646337855290164,
0.45838947868337265,
0.45830838412981956,
0.45675570908528773,
0.45451848370741926,
0.4525273277117009,
0.45171582002856886,
0.4528662153895181,
0.45647810557341656,
0.4627004012387353,
0.4713475334660061,
0.48198689777554277,
0.49405887425210454,
0.5069882281364579,
0.5202617433748778,
0.533466773891244,
0.546298481384508,
0.5585479780825409
],
[
0.6211339148581366,
0.6183738343890258,
0.615720290919002,
0.6131416933396562,
0.61057240879132,
0.6079111890442574,
0.6050221934362806,
0.6017384602711688,
0.5978674728539856,
0.5931984498230998,
0.5875111742502566,
0.580586519841772,
0.572219256871314,
0.5622341278527943,
0.5505064596119628,
0.5369885738454594,
0.5217427437641444,
0.5049800596166868,
0.487101782080846,
0.4687349570570159,
0.45074696714091916,
0.4342156979152788,
0.42032862006126775,
0.41019658737662684,
0.4046072019810475,
0.4037979787054477,
0.40735553019501464,
0.41429885794563603,
0.42330761670925493,
0.4329931462926331,
0.44212319132380035,
0.44976474458732824,
0.45535218494297236,
0.4587026891647311,
0.4599967780487912,
0.45973164226216623,
0.4586465878031161,
0.45761784566644587,
0.4575264265220707,
0.45911663787171547,
0.4628770712083099,
0.4689782576737193,
0.47728449011590995,
0.48742894166526274,
0.4989193293487303,
0.511238351428738,
0.5239159472873302,
0.5365673177505063,
0.5489025046582972,
0.5607179290969241
],
[
0.6192600782790172,
0.6163320058272274,
0.613517861224132,
0.6107880534280322,
0.6080777730042001,
0.6052852147824189,
0.602272506668981,
0.5988691900629938,
0.594877875559773,
0.5900816745526004,
0.5842531950795319,
0.5771652444278419,
0.5686038222624551,
0.5583844222906682,
0.5463729808345821,
0.5325128733031982,
0.5168589349156848,
0.4996181907755732,
0.48119423849787885,
0.4622272861717675,
0.44361420135049895,
0.4264836579622218,
0.4120961109801696,
0.4016494809465148,
0.39601301372467757,
0.3954755341175069,
0.3996284888122159,
0.407452607529731,
0.41756523563347325,
0.4285124455850536,
0.43900655475336575,
0.4480718940357146,
0.45510935743069864,
0.45990546117316294,
0.46260635345387147,
0.46366623637770904,
0.46377126803096386,
0.46373786482272833,
0.46438978881800014,
0.46642989236110616,
0.4703335335454429,
0.4762919166835267,
0.48421963057513995,
0.49381749506059414,
0.504663628663124,
0.5163023577953348,
0.5283104395495959,
0.5403340476925464,
0.552100462782718,
0.5634130094393305
],
[
0.6174487861679939,
0.6143433874137948,
0.6113560876372495,
0.6084596610848216,
0.6055908078927135,
0.6026481726524784,
0.5994931535450067,
0.5959533474268939,
0.5918282419590026,
0.5868967365523344,
0.5809262607556943,
0.5736836152984166,
0.5649481085666218,
0.5545280116014728,
0.5422817112903818,
0.5281450704925661,
0.5121661775381402,
0.4945474894948735,
0.4756927089541317,
0.45625072153879365,
0.43714083155672534,
0.41953312759485717,
0.4047505137347418,
0.3940684446162732,
0.38843179433974284,
0.38817985734537674,
0.39291325485382655,
0.40158253854393705,
0.41275247253826763,
0.42491312204320164,
0.4367286305091679,
0.44718518563625975,
0.4556519565172376,
0.46188421719477585,
0.4659914721613263,
0.4683817549351578,
0.46968479938071483,
0.4706544937094225,
0.4720554501295112,
0.47454769820736686,
0.4785919755947804,
0.48439846429744726,
0.4919303536032689,
0.5009550895222059,
0.5111213418821083,
0.5220363773836187,
0.5333258293080341,
0.5446691238761029,
0.5558128792328689,
0.5665690382936267
],
[
0.6157160019135722,
0.6124237453719219,
0.6092499461769925,
0.6061700783671489,
0.6031230520238041,
0.6000090282244108,
0.596690077195095,
0.5929935326742554,
0.5887176537623433,
0.5836391711754093,
0.5775224767974099,
0.5701305651748826,
0.5612382764348831,
0.5506488428862195,
0.5382151247040811,
0.523867114363637,
0.5076470714895074,
0.4897526066621351,
0.4705854797269329,
0.4507988486950854,
0.43132726848529723,
0.413372341156756,
0.39830779630569985,
0.38747545666898975,
0.3818880383621723,
0.3819332543342426,
0.3872250564980104,
0.39669257181905093,
0.40885859588556067,
0.42216705203119154,
0.43524137458285445,
0.44703411925961345,
0.45688453228863984,
0.4645164052300604,
0.4700011608235206,
0.47369891395055297,
0.47618169088078066,
0.4781404678525344,
0.4802810569501101,
0.4832209633511638,
0.4874055732332812,
0.49306181329509485,
0.5001981779546619,
0.5086454571588285,
0.5181206182215556,
0.5282930871074197,
0.5388379077807871,
0.5494691326918473,
0.5599544337296344,
0.5701160727085062
],
[
0.6140763231133529,
0.6105875392224186,
0.6072131954041123,
0.6039317570833397,
0.6006850411686379,
0.597375829202274,
0.5938683380281042,
0.5899914172997189,
0.5855441007953792,
0.5803031014934649,
0.5740320136147882,
0.5664923172394982,
0.5574566995925583,
0.5467256454266586,
0.5341486461636482,
0.5196516349819562,
0.5032721578029659,
0.4852029084116468,
0.46584185198846395,
0.44584216495691503,
0.42614651469819714,
0.4079779464814136,
0.3927488441028856,
0.381855218861412,
0.3763685553196058,
0.3767218598293053,
0.3825461193624755,
0.3927579047534707,
0.40584894097541935,
0.42022701974730625,
0.43448231095190964,
0.44753822416775774,
0.4587060461710864,
0.46767834616465814,
0.47448795937698857,
0.47944670974295994,
0.4830693590048094,
0.48598544129531046,
0.48884399002733947,
0.4922214652810075,
0.4965476413636062,
0.5020636321417926,
0.5088188823615778,
0.5167026532235119,
0.5254961459267764,
0.5349284638691393,
0.5447232451685557,
0.5546296415535343,
0.5644376203620833,
0.5739813193849612
],
[
0.6125425790719423,
0.608847540941186,
0.6052580386136737,
0.6017557651231621,
0.598286117432469,
0.5947556116239943,
0.5910321255169861,
0.5869478635645037,
0.5823047045875078,
0.5768815571680488,
0.5704435087849002,
0.5627528583802037,
0.5535824998702537,
0.5427325271460158,
0.5300513261974066,
0.5154627374048534,
0.4990009098198097,
0.48085378238097654,
0.4614139166273446,
0.441330491246015,
0.42154735943131594,
0.4032990618485389,
0.38802436160540676,
0.3771607931006058,
0.3718286703968718,
0.37250219836411924,
0.37883237169256073,
0.38973166591535974,
0.4036713900746413,
0.4190330039649887,
0.4343807058281391,
0.44861326274494134,
0.4610162549174768,
0.4712519088520037,
0.4793149242643655,
0.4854697036877713,
0.4901755842599052,
0.494003488920971,
0.4975488200385589,
0.5013492215769757,
0.5058189078483888,
0.5112104846972547,
0.5176094122242711,
0.5249575801614025,
0.533095137483322,
0.5418071137743888,
0.5508638091209336,
0.560049112570154,
0.5691760065525256,
0.5780918132579237
],
[
0.6111255223870727,
0.6072145561496821,
0.6033948960666512,
0.5996516311794576,
0.595934365794171,
0.592154443461022,
0.5881849186119882,
0.5838632054075438,
0.5789961177042846,
0.5733669854732676,
0.5667446801932324,
0.5588946446693446,
0.5495923389412934,
0.5386398562156761,
0.5258868343992048,
0.511257159849034,
0.49478315212709734,
0.4766484680537183,
0.4572390018114025,
0.4371962791381375,
0.41745877787696817,
0.3992629200028659,
0.38406175947997545,
0.3733215362073038,
0.3682008402088121,
0.36921002231987815,
0.37602205889293217,
0.38755297074139444,
0.4022637026284539,
0.41851878378346946,
0.4348635672294585,
0.45017678919792353,
0.4637209772950971,
0.47512957451844534,
0.4843605051194084,
0.4916326640570972,
0.4973528507717035,
0.5020371125385766,
0.5062310295589543,
0.5104360604130903,
0.5150510999857393,
0.5203375603477215,
0.5264117852980009,
0.533261997744741,
0.5407813073619049,
0.54880606803675,
0.5571504580502331,
0.565632019497613,
0.5740869457619392,
0.5823767328534228
],
[
0.6098336395317289,
0.6056972726073274,
0.6016323119727814,
0.5976273311584894,
0.5936366992620689,
0.5895776243170643,
0.5853298108256755,
0.5807377041301333,
0.5756151097887763,
0.5697519629202825,
0.5629231554623182,
0.5548995399610209,
0.5454614597938457,
0.5344154065877309,
0.5216147258770296,
0.5069857054994069,
0.4905607445900945,
0.47252013645000657,
0.45324235436866994,
0.433358149265004,
0.41379458685613313,
0.39578082720449176,
0.38077243298828084,
0.37025147569117284,
0.36540367771914356,
0.36676941662398327,
0.3740443912437877,
0.38615473737749945,
0.40156033819138737,
0.41861779166879953,
0.4358606586736917,
0.45215248081619075,
0.46673586628815456,
0.4792177097352591,
0.48952131503016766,
0.4978227947044539,
0.5044800075224095,
0.5099583744225822,
0.5147577565460085,
0.5193461998123583,
0.5241076192752105,
0.529309662243894,
0.5350945090998024,
0.541490364682195,
0.5484370372630992,
0.5558171238315848,
0.563485308401866,
0.5712911205972215,
0.5790936742852117,
0.5867692763114633
],
[
0.6086730966338731,
0.6043022516360217,
0.5999770104225468,
0.5956894282708305,
0.591399101870941,
0.5870300474218849,
0.5824700032129034,
0.5775721794224751,
0.5721593386838706,
0.5660301040767823,
0.5589675125940319,
0.5507499802457346,
0.5411649662048553,
0.5300257466020664,
0.5171919413252113,
0.5025948742132231,
0.4862693970501109,
0.4683939851045678,
0.44933966807226866,
0.429724056071035,
0.41045746583687726,
0.3927532085769463,
0.3780578571025123,
0.3678562658267695,
0.36334937007673385,
0.3651001700215361,
0.37282640255436966,
0.385469726647247,
0.40149756389638763,
0.4192673228499315,
0.43730791676307845,
0.4544728726736834,
0.4699885295027359,
0.48343808711721253,
0.4947130247415544,
0.5039499680672964,
0.5114618425316453,
0.5176678932939268,
0.523026389652982,
0.5279746998441637,
0.5328821374359302,
0.538020197380741,
0.5435521233915473,
0.5495399763705707,
0.5559640492361622,
0.5627479272050201,
0.5697830785780694,
0.5769489246372793,
0.5841267882865222,
0.5912080713214904
],
[
0.6076478255570487,
0.6030340658769939,
0.598434101216211,
0.5938433646610504,
0.589227023887168,
0.5845167147231438,
0.5796094527759014,
0.5743688006141845,
0.5686282897467948,
0.562197149939698,
0.5548685144401639,
0.5464303473841174,
0.5366793248535789,
0.5254378546939291,
0.5125745193970781,
0.4980286574706504,
0.48184054481274685,
0.464189216599781,
0.44543922396488994,
0.42619368793308493,
0.4073417381476267,
0.39007287274936353,
0.37581335591134646,
0.36603735044052316,
0.3619479925554541,
0.3641219388376419,
0.3722967046418087,
0.385433736956334,
0.40201605119857453,
0.4204105649581817,
0.43914896232662487,
0.45708037801010043,
0.4734190487110811,
0.48772785969568777,
0.499869733645923,
0.5099454527334087,
0.5182271805730074,
0.5250924063805227,
0.530961775975899,
0.5362445644590383,
0.5412958649670592,
0.5463888560983274,
0.551703460783377,
0.5573298784708417,
0.5632829487349759,
0.5695220515903642,
0.5759715725483471,
0.582538443932342,
0.5891251461981702,
0.5956381322310108
],
[
0.606759742979818,
0.6018955731433957,
0.5970074218045067,
0.592093886753406,
0.5871259071152496,
0.58204337878195,
0.5767536463121132,
0.571132005391251,
0.5650243491268532,
0.5582522018332321,
0.5506205052129819,
0.5419285250588974,
0.5319840701428484,
0.5206209519010002,
0.5077195220645784,
0.4932305071987796,
0.4772033002147128,
0.4598209090047434,
0.44144362439202467,
0.4226600292725118,
0.4043347497892176,
0.3876262122076603,
0.37392912667714784,
0.3646927940273059,
0.3611081168681213,
0.363754617146937,
0.3723856405972839,
0.3859855903845603,
0.40306074259828395,
0.42199636267346347,
0.44133473667121115,
0.4599267282773295,
0.4769791267744606,
0.49203830778708174,
0.5049422236271416,
0.5157596215961914,
0.524726056846014,
0.532181497155054,
0.5385126658983135,
0.5441031203272425,
0.5492941005966053,
0.5543585490513863,
0.5594891332014463,
0.5647989878265199,
0.5703319844218994,
0.576078334578551,
0.5819914900226046,
0.5880033587053108,
0.5940362727914302,
0.600011406218455
],
[
0.6060090828089191,
0.6008883025705081,
0.5956999869175662,
0.5904455708903052,
0.5851018017304593,
0.5796172679266939,
0.573910451799676,
0.567869494818572,
0.5613539582352951,
0.5541990487109628,
0.5462229205821213,
0.537237596155219,
0.5270636838121079,
0.5155485426802405,
0.5025871916939462,
0.4881455330617195,
0.472286579558837,
0.45520193027109734,
0.4372513314870711,
0.41901035610361725,
0.4013171743471413,
0.3852927151287909,
0.3722889276343361,
0.36371520960613385,
0.3607341509612427,
0.36391535146398246,
0.3730222682487416,
0.38706432621753584,
0.4045783831748398,
0.4239770902137997,
0.44382162006148473,
0.4629711857920465,
0.48063022419799534,
0.4963327415763374,
0.509895506566147,
0.5213590789630693,
0.5309264264572033,
0.5389039606116545,
0.5456478691517146,
0.5515181407256464,
0.5568425160099914,
0.5618920336285899,
0.5668686429153471,
0.5719037745395522,
0.5770653243661511,
0.5823697141145938,
0.5877957473929685,
0.5932977262472309,
0.5988163565475807,
0.6042869678120971
],
[
0.6053948113689255,
0.6000129173615638,
0.5945145046202546,
0.588903402104866,
0.5831620214127521,
0.5772478354965758,
0.5710909827609644,
0.5645932358312129,
0.5576287780924708,
0.5500475167129275,
0.5416818441217026,
0.5323576235062145,
0.521909607770985,
0.5102006489339347,
0.497143364412763,
0.48272300941599317,
0.46702156442759696,
0.4502451591443034,
0.43275840592696174,
0.4151272250911825,
0.3981629947273156,
0.38294374291383104,
0.3707675764097013,
0.36298808085791867,
0.36072178562711854,
0.3645135619245466,
0.37412943605213833,
0.38860470539587616,
0.4065136398776167,
0.4263053846725413,
0.44656864586806755,
0.46617804029709037,
0.4843411296628082,
0.500583964351489,
0.5147060488627819,
0.5267235770748434,
0.5368107694319852,
0.5452441543507005,
0.5523524584489293,
0.558474039900493,
0.5639234916669982,
0.5689685353661325,
0.5738174092325701,
0.5786157746089676,
0.5834510882451888,
0.5883617677211065,
0.5933484744535296,
0.598385362550827,
0.6034299348254364,
0.6084309287399281
],
[
0.6049150866939446,
0.5992697096426934,
0.5934539080962522,
0.587473348719842,
0.5813157725352335,
0.5749474618661318,
0.5683103975021545,
0.5613203871630076,
0.5538667752534008,
0.5458147510970206,
0.5370115226797753,
0.5272974349215459,
0.5165223278969603,
0.5045662037809596,
0.49136215154077384,
0.4769192709572782,
0.4613446725625647,
0.44486632115190416,
0.4278609339010959,
0.41089017553586715,
0.39474016222401426,
0.380441886702186,
0.3692288791751481,
0.3623823452548679,
0.3609535445052111,
0.36544594521255236,
0.3756187619920859,
0.39053257615136255,
0.4088050658013423,
0.42893072347055194,
0.4495345677242398,
0.4695139768981792,
0.48808543275236516,
0.5047716843327825,
0.5193590068754605,
0.5318430174416415,
0.542372856727814,
0.5511985765464177,
0.5586242427932434,
0.5649683472969609,
0.5705327064807297,
0.5755805644434709,
0.580323908441298,
0.5849191245149227,
0.5894693146403888,
0.5940311153058991,
0.5986238244503593,
0.603239009172887,
0.6078493555386665,
0.6124161303374738
],
[
0.6045677188974282,
0.5986590784126067,
0.592521847718444,
0.5861628703493933,
0.5795746873760115,
0.572732031050541,
0.5655885465910291,
0.5580740539367935,
0.5500931275422106,
0.5415263240428935,
0.5322357331499117,
0.5220763096350918,
0.5109134389821384,
0.4986455403906304,
0.48522886638748897,
0.4707010391383435,
0.45520117537969595,
0.43898771133676406,
0.42245859917344347,
0.4061788464308354,
0.3909129409621882,
0.37764225954325087,
0.36752569568099486,
0.36175522736941945,
0.3612965791161663,
0.36659358125497304,
0.3773874548867661,
0.3927617492810604,
0.4113822300883684,
0.43179686009979745,
0.4526755405251482,
0.47294588403901555,
0.49183932993196977,
0.5088802103836834,
0.523845741469631,
0.5367147562793182,
0.5476148591957187,
0.5567728240295978,
0.5644706431194666,
0.5710085821618575,
0.5766760976801664,
0.5817310453652568,
0.586387049499838,
0.5908082435065064,
0.5951099883901568,
0.5993638043902128,
0.6036047052750497,
0.6078393787968208,
0.6120540930949824,
0.6162216808603524
],
[
0.6043505885624424,
0.5981819419619671,
0.5917230887165896,
0.5849812977949976,
0.5779531920108584,
0.5706213035648817,
0.5629503802247223,
0.5548837719534097,
0.5463408402082361,
0.5372170497917798,
0.5273888756201641,
0.5167254391272951,
0.505107568696351,
0.49245286891366385,
0.47874311906077666,
0.46404915094197896,
0.44854950765757395,
0.43254295548221433,
0.4164596999817978,
0.40087800817658376,
0.3865466927912262,
0.37439677736189503,
0.36550349634952767,
0.3609529286253492,
0.3616044532497909,
0.3678228803653391,
0.37931857001662833,
0.3951937383834978,
0.414165099005419,
0.4348409490782538,
0.4559440336699317,
0.4764395567523287,
0.4955801001143933,
0.5128966830913263,
0.5281618019666593,
0.5413413587162387,
0.5525449091945952,
0.5619790137756449,
0.5699060353525381,
0.5766095837517535,
0.5823672441420675,
0.5874308174847424,
0.5920138511301212,
0.5962857377025613,
0.600371208188275,
0.6043537599094514,
0.6082815114056391,
0.6121741527490895,
0.6160299830009991,
0.619832392140441
],
[
0.6042619844156765,
0.5978400415472894,
0.5910637662294342,
0.5839400306953165,
0.5764686474208077,
0.568639014953917,
0.5604260338328662,
0.5517856271892243,
0.5426509639791597,
0.5329313842436274,
0.5225166564705688,
0.511289014563704,
0.4991440056119209,
0.486018586092431,
0.47192193326991383,
0.4569625662783174,
0.44136618315280995,
0.42548277843278054,
0.4097876555755687,
0.39488465810817697,
0.3815153900607286,
0.3705618840224402,
0.36300804255690483,
0.3598179533491549,
0.3617237852554252,
0.3689912525079701,
0.3812855240838552,
0.39772108440325865,
0.4170662593829084,
0.43799482424044356,
0.45928932982009607,
0.47995955955050135,
0.49928544613048875,
0.516809986015162,
0.5323054845122852,
0.5457288751447307,
0.5571751628465536,
0.5668336962809845,
0.5749495761842708,
0.5817913060596559,
0.5876251823908738,
0.5926965214873681,
0.5972174450587647,
0.6013605616149922,
0.6052575397307658,
0.6090013506281418,
0.6126509115971985,
0.6162369847671574,
0.619768425815655,
0.6232381607645919
],
[
0.6043008297636161,
0.5976361030742475,
0.5905514613355938,
0.5830525123873629,
0.5751412174843383,
0.5668126455379121,
0.5580505264728839,
0.5488219309862795,
0.5390723184863714,
0.5287232929904541,
0.5176762240474049,
0.5058247810797367,
0.4930778492609074,
0.4793912152177684,
0.46480266666259284,
0.4494624249988408,
0.43365108095127597,
0.41778153814187596,
0.402388750027583,
0.38811691095081796,
0.3757115702506901,
0.3660094227632948,
0.3598968883219802,
0.35820077341935197,
0.36150546784837,
0.3699572567948587,
0.3831606872041472,
0.40023415038913107,
0.41999593120920387,
0.4411884214300782,
0.4626596268941493,
0.4834702791130917,
0.5029337345980267,
0.5206103651173623,
0.536276984013021,
0.5498856476490565,
0.5615203592731149,
0.5713562471453713,
0.5796234911289543,
0.5865770542909,
0.5924726350040188,
0.5975488584883808,
0.6020154021833651,
0.6060464454603309,
0.6097785739402543,
0.6133121008474429,
0.6167147271739589,
0.6200265488261386,
0.6232655983412032,
0.6264333295566965
],
[
0.6044667783904223,
0.5975738371095624,
0.5901950778141786,
0.5823339603634322,
0.5739934392398398,
0.5651728311585196,
0.5558630326415354,
0.5460403980681631,
0.5356606498804677,
0.5246554932158793,
0.5129356337577156,
0.5004039019464677,
0.4869804865857608,
0.472638738473859,
0.457445452827207,
0.44159582743743736,
0.42543272907034424,
0.40944409161757617,
0.3942405915127117,
0.38052403513173644,
0.36905791676038496,
0.36063964681848076,
0.3560535078795128,
0.3559744910480372,
0.3608190684127021,
0.37059389496617057,
0.38482688519204195,
0.40263045337293074,
0.42286907890768866,
0.44435486645887384,
0.4660054270241364,
0.4869379649794292,
0.5065050068224419,
0.5242896735895292,
0.5400780807942781,
0.5538215983806538,
0.5655968319044289,
0.5755676919727574,
0.5839517798549427,
0.5909921198079651,
0.5969346127096781,
0.6020111906001249,
0.6064283605238807,
0.6103605784553227,
0.6139476917654948,
0.6172955588800065,
0.6204789201256504,
0.6235456552920994,
0.6265216987935741,
0.6294160563970788
],
[
0.6047601736437422,
0.5976577733339657,
0.5900045183969704,
0.5818008534074385,
0.5730494975959739,
0.563752415779971,
0.5539057232407945,
0.5434928127894145,
0.5324771911711315,
0.5207980133589173,
0.5083725529032325,
0.4951099993028315,
0.4809392071818166,
0.46584906996475156,
0.44993484223477703,
0.43343894137772015,
0.41677310986123023,
0.4005124239838518,
0.3853605875923565,
0.37209674338128007,
0.36151931098427154,
0.35439489666320895,
0.3514022522777419,
0.3530504453414492,
0.3595682408268566,
0.3708029497672093,
0.3861899503183781,
0.4048250106376808,
0.4256134607722491,
0.4474363933909286,
0.4692836374201084,
0.49033337332023796,
0.5099825057312575,
0.5278420708129238,
0.543712241724846,
0.5575479089598682,
0.5694218969855037,
0.5794898985057424,
0.5879592783800669,
0.5950627583366421,
0.6010373412147296,
0.6061084419228481,
0.6104789234383392,
0.6143225271235354,
0.6177810252467918,
0.6209643217897106,
0.6239526986599447,
0.6268004490961234,
0.6295402434861728,
0.6321877097601268
],
[
0.605181877894129,
0.59789294194647,
0.5899901792506752,
0.5814702008221085,
0.5723342361857346,
0.5625851822653561,
0.55222221327674,
0.5412332170419433,
0.5295866468804462,
0.5172260702224843,
0.5040721704445396,
0.490037287083278,
0.47505580650498946,
0.45912943561842057,
0.4423803132070301,
0.4250990075140933,
0.4077714629921746,
0.39107141752731717,
0.3758136874408887,
0.3628768000736152,
0.35311414293563703,
0.3472723790980994,
0.34592219611759956,
0.34939251864466275,
0.35770475959980047,
0.37052803767779974,
0.3871902303374596,
0.4067599631136156,
0.42817726477855034,
0.45039009693203674,
0.47246167896023866,
0.49363452979018924,
0.5133543902467884,
0.5312649508231265,
0.5471849776395081,
0.5610769736220889,
0.5730135265343048,
0.5831450581144038,
0.5916710100261273,
0.5988154509823349,
0.6048074596342894,
0.6098662547507917,
0.6141907916956083,
0.6179533616792127,
0.621296597518043,
0.6243332081169418,
0.6271477397934049,
0.6297996957517805,
0.6323274252992459,
0.6347523039749405
],
[
0.6057329920494966,
0.5982844298108703,
0.5901623002543337,
0.581358642532288,
0.5718719652017532,
0.5617043338832716,
0.5508556983980987,
0.5393157067938634,
0.5270546860512662,
0.5140173332310312,
0.500124351686981,
0.48528778691405816,
0.46944409560353306,
0.4526044825438624,
0.4349153610710483,
0.4167148325301737,
0.39856656973746823,
0.3812531612213595,
0.3657187126378211,
0.35296514891625574,
0.3439238842564309,
0.339334763453819,
0.33965826008024913,
0.34502824837398627,
0.35523913916934063,
0.36976436927176604,
0.38781123033668774,
0.40841192731535436,
0.4305350941193478,
0.453192580431199,
0.4755209185050376,
0.4968291268988881,
0.5166152987172141,
0.5345598634538455,
0.5505042877870684,
0.5644225002906765,
0.5763902073606257,
0.5865553756882497,
0.5951117558810469,
0.6022763875917052,
0.6082714377076894,
0.6133103557112275,
0.6175880919985262,
0.6212749613310845,
0.6245136209311956,
0.6274185657585878,
0.6300775232972204,
0.632554155471008,
0.6348915387249368,
0.6371159821208863
],
[
0.6064144950633793,
0.5988368516587838,
0.5905302241829173,
0.5814814484923887,
0.5716851522178674,
0.5611408315319064,
0.5498469039664081,
0.5377919767174579,
0.5249450922305349,
0.5112487224647817,
0.4966201660701191,
0.48096771442728536,
0.46422633612513764,
0.4464130366363949,
0.4276949569915408,
0.40845542384402617,
0.3893370560711701,
0.3712392723138636,
0.3552527326435183,
0.3425280071891995,
0.3341003020665314,
0.33071781661281624,
0.3327286173030134,
0.34005556008845234,
0.35224655085933415,
0.3685639331665521,
0.38808419283599016,
0.40979602650721964,
0.43269142683517536,
0.4558428021341823,
0.47845889137301895,
0.49991615989419774,
0.5197674726873928,
0.5377332182332296,
0.5536810365367243,
0.5675996420803623,
0.5795708933439067,
0.5897428915579367,
0.5983057797634489,
0.6054711159952975,
0.611455162523608,
0.6164660892998813,
0.6206948661955971,
0.6243094696961425,
0.6274519315048294,
0.6302376999910971,
0.6327567682032528,
0.635076041929838,
0.6372424723231586,
0.6392865505581093
],
[
0.607226840375355,
0.5995537850549808,
0.5911016282837126,
0.5818514991129625,
0.5717930995565135,
0.560921715327328,
0.5492320023976721,
0.5367087953657294,
0.523316775570448,
0.5089929593433227,
0.4936480056366967,
0.4771832300455626,
0.45952874075087247,
0.440703556728471,
0.4208912931839713,
0.4005165254460165,
0.38029932978704084,
0.3612607681442953,
0.3446530434377397,
0.33180056910800804,
0.3238700230351799,
0.3216347791116358,
0.3253280224927102,
0.33464470282074965,
0.3488676000816461,
0.3670356730446021,
0.3880881953989124,
0.4109661907032756,
0.4346811601108265,
0.45836276766787926,
0.4812900122437923,
0.5029065540449872,
0.5228212449266623,
0.5407966177528042,
0.5567291422870158,
0.570625063624858,
0.5825749728217593,
0.5927293697184537,
0.6012766510494465,
0.6084243075685865,
0.6143836512066644,
0.6193580808517863,
0.6235346887539777,
0.627078873527759,
0.6301315385921911,
0.632808406104932,
0.6352009615491305,
0.6373785599727387,
0.6393912667141064,
0.6412730662034386
],
[
0.6081695493110719,
0.60043722115635,
0.5918817955617705,
0.5824783332991605,
0.572210718643678,
0.5610685496039031,
0.5490406706279697,
0.5361056180994502,
0.5222208891517031,
0.5073151421085456,
0.4912895856547894,
0.47403584665877735,
0.455476303796575,
0.4356284805303433,
0.4146878857973325,
0.39311494778946804,
0.3717028445621156,
0.3515950316725462,
0.3342162671424934,
0.3210879362999515,
0.3135362102464325,
0.3123773604956274,
0.3177270389255893,
0.32903548125666654,
0.345304182118248,
0.365340943259627,
0.3879460327706631,
0.4120119116362537,
0.4365673264579565,
0.46079607291512725,
0.48404472481478644,
0.5058227071265449,
0.525794807991625,
0.5437667397647357,
0.5596655052032589,
0.5735168771232816,
0.5854221935805995,
0.5955362013281119,
0.604047119800331,
0.611159598283936,
0.6170808530549033,
0.6220099966053361,
0.6261303843590085,
0.6296046809559025,
0.6325722703993354,
0.6351485916944374,
0.6374259686222539,
0.6394755153474174,
0.6413497344968269,
0.6430854756162616
],
[
0.6092408404383288,
0.6014870812027463,
0.5928729897608527,
0.5833673460985399,
0.5729475061991138,
0.5615961245566613,
0.5492944550604474,
0.5360125443963517,
0.521698298893826,
0.5062696387255203,
0.4896161593888479,
0.4716178550543523,
0.4521873302421643,
0.4313377980318061,
0.4092722713720451,
0.386480734449558,
0.3638224507819568,
0.34255932685092255,
0.32429382528340406,
0.3107625026911241,
0.30347669801664845,
0.30331289606023265,
0.3102669849049698,
0.32352996236444354,
0.3418109255240204,
0.36368494222341274,
0.38781660013116,
0.4130520623097124,
0.4384364318671482,
0.4632045907831621,
0.4867672582896802,
0.5086970273952711,
0.5287132882218329,
0.5466647609755717,
0.5625096499735533,
0.5762944165166742,
0.5881325110924203,
0.5981842890144949,
0.6066390109700573,
0.6136994739793604,
0.6195695121958389,
0.624444374548409,
0.6285038221984466,
0.6319076788952578,
0.6347934982835247,
0.637275974883999,
0.6394477142723266,
0.641380989117014,
0.6431301374764036,
0.6447343035820052
],
[
0.6104373289867213,
0.6027008414703413,
0.5940739878469359,
0.5845192041235051,
0.5740068090459682,
0.5625115252192326,
0.5500055847964893,
0.536448797223349,
0.5217776284023307,
0.5058975683166076,
0.4886852722745709,
0.4700081470018067,
0.44976808905392923,
0.4279722946095899,
0.4048276852872072,
0.3808473696651126,
0.35694767106669223,
0.3345001780547646,
0.31528256879835476,
0.3012562403397382,
0.29413699241839864,
0.29487633226218474,
0.3033497958589242,
0.3184805245022542,
0.33868267930486695,
0.36230492498528377,
0.38788467186641445,
0.41422659529424694,
0.44039206740574344,
0.46566377523481606,
0.48951230783465755,
0.5115696637175668,
0.5316072368614833,
0.5495153781871059,
0.5652831042203208,
0.5789778495931608,
0.5907258480243897,
0.6006938938314402,
0.6090731167117532,
0.6160651780285903,
0.6218710692990171,
0.6266825056799481,
0.6306757681642984,
0.6340077528246573,
0.6368139252777449,
0.639207846347411,
0.6412819256102676,
0.643109069453247,
0.6447449161002267,
0.6462303880155834
],
[
0.6117538223939838,
0.6040732980406238,
0.5954798080262184,
0.5859295254759261,
0.5753854358466849,
0.5638136416754088,
0.5511763280359668,
0.5374218473444162,
0.522474038391645,
0.5062250781880057,
0.4885383223290217,
0.46926877535330536,
0.4483080110915328,
0.4256569560342519,
0.40152423196882614,
0.3764404113248018,
0.3513688960590408,
0.32777788406097425,
0.3076088927565681,
0.2930454010915399,
0.28601533710589006,
0.2875545799441336,
0.2974212121429287,
0.31427269333908353,
0.3362383080070727,
0.3614559172544902,
0.38834894977928774,
0.4156869541962851,
0.4425474956908702,
0.46825712262984465,
0.49234102681657643,
0.5144856899342438,
0.5345107053469657,
0.552345526521982,
0.5680085670087264,
0.5815876532297073,
0.5932217720649172,
0.603084441060563,
0.6113690768111331,
0.6182766282086077,
0.6240055877290362,
0.6287443508000958,
0.6326657805596978,
0.6359237555146532,
0.6386514267754685,
0.6409608846630855,
0.6429439273847558,
0.6446736338808249,
0.6462064658822174,
0.6475846575200193
],
[
0.6131832278922243,
0.6055964886557355,
0.5970816520021813,
0.5875888446951358,
0.5770736390703276,
0.5654931485598967,
0.5527989279947655,
0.5389272330684555,
0.5237888144237981,
0.5072625267069213,
0.4891990919733106,
0.4694424950478385,
0.44787578115951154,
0.4244950111159766,
0.39951013577035893,
0.3734651479627702,
0.3473608342828058,
0.32274576334324956,
0.3017047119668902,
0.28662472817094575,
0.27963630823056723,
0.28186013068494564,
0.292945390195866,
0.31130213455509825,
0.33480103212846946,
0.3613945888591887,
0.38940916398584424,
0.4175859505219672,
0.445017860780636,
0.4710703094834746,
0.495316721928629,
0.5174920228365197,
0.5374590946800235,
0.5551829175792323,
0.5707089425491566,
0.5841439942884699,
0.5956391131427184,
0.60537429227818,
0.6135452462529991,
0.6203523367846179,
0.6259916953754354,
0.630648482694124,
0.6344921387297459,
0.637673414306341,
0.6403229336099308,
0.6425510161877726,
0.644448482376377,
0.64608817557966,
0.6475269557064909,
0.6488079477182461
],
[
0.6147165770425125,
0.6072597739142137,
0.5988670598140654,
0.5894828558523633,
0.579055454016324,
0.5675329340263825,
0.5548560930452824,
0.5409490484936021,
0.5257097422875125,
0.5090045713498832,
0.49067329208120136,
0.47055139878574453,
0.448516554308421,
0.4245630127059904,
0.3989036956841035,
0.37209412837865685,
0.3451641417042506,
0.3197247100577304,
0.29797489308163444,
0.28246944208397884,
0.27551042872101666,
0.27829185070005996,
0.29037003168082864,
0.3099459316379399,
0.33467595424066104,
0.3623620585275881,
0.39125296477414734,
0.4200677584010052,
0.44791257358048314,
0.4741854553870695,
0.4985006006430973,
0.52063433414663,
0.5404869646503405,
0.558054524431377,
0.573406321956412,
0.586666067480742,
0.5979955495793362,
0.6075804986744334,
0.6156185554503587,
0.622309333360154,
0.6278465380390668,
0.6324120474473194,
0.6361717972270434,
0.6392732691234176,
0.6418443497782288,
0.643993312128518,
0.6458096701741592,
0.6473656679588108,
0.6487181831553449,
0.6499108524445965
],
[
0.6163431615414217,
0.6090500659161964,
0.6008202567741732,
0.5915929019931473,
0.5813093489713178,
0.5699089157710238,
0.5573219611512581,
0.5434610044150204,
0.5282121652483971,
0.511431058648584,
0.49294903904373066,
0.4725966268593431,
0.4502503888573226,
0.4259072469442104,
0.3997865570514662,
0.3724556621137456,
0.3449669461792517,
0.3189753273602627,
0.2967585403463003,
0.2809869864855612,
0.27408136738576255,
0.2772846299552223,
0.290084009112672,
0.3105300672422931,
0.3361263020545474,
0.364566734971159,
0.3940433944555286,
0.4232586145462412,
0.45132833037642867,
0.4776758747438202,
0.5019478576137191,
0.5239541765681884,
0.5436259661080706,
0.5609851299839093,
0.5761209930104614,
0.5891714427166777,
0.6003071959055676,
0.6097185545390049,
0.6176043726645037,
0.6241630937884187,
0.6295857436184978,
0.6340507415656246,
0.6377203606314266,
0.6407386354896364,
0.6432304987469001,
0.6453019167935303,
0.6470407986397531,
0.6485184623294774,
0.649791462334629,
0.6509036059734021
],
[
0.6180507655795852,
0.6109521807591881,
0.6029226569303898,
0.5938966597723714,
0.5838091158906409,
0.5725911504333181,
0.5601634193662888,
0.5464279170472413,
0.5312605567371578,
0.5145085382565785,
0.4959980950580359,
0.47555902268346845,
0.45307186643558267,
0.42854164187425514,
0.4021988562483445,
0.3746245494521849,
0.3468887097502862,
0.32067181458900734,
0.29829032775684394,
0.2824663587700572,
0.27566916328173136,
0.2791557300534101,
0.29237373870682165,
0.3132974016136053,
0.33935102613900753,
0.3681687287662938,
0.39790783839680166,
0.42725878451491406,
0.45534314848214763,
0.48160160218664283,
0.505704320481624,
0.5274864953870354,
0.5469030272542443,
0.5639960357805106,
0.5788705474054923,
0.5916754697987413,
0.6025882238863629,
0.6118021705639753,
0.6195163798339263,
0.6259274805138673,
0.6312233984781944,
0.6355788036105067,
0.6391520759848995,
0.6420835884292543,
0.6444950936239262,
0.6464900020870477,
0.6481543431893455,
0.6495582140841674,
0.6507575400278441,
0.6517959926295525
],
[
0.6198259733539583,
0.612949283118052,
0.6051534776024331,
0.5963689563148965,
0.58652491701955,
0.5755451262792638,
0.5633416398898913,
0.5498074568347541,
0.5348104142142072,
0.5181921882776241,
0.4997776559338984,
0.47940054389707565,
0.45695078648630344,
0.4324472406089504,
0.4061366811122608,
0.37861625463691606,
0.3509691292868076,
0.32488288873616433,
0.30267086859416786,
0.2870378523207022,
0.2804242067047061,
0.2840612069379159,
0.2973880791117807,
0.3183822060624884,
0.34446714190608074,
0.37326764656925565,
0.4029294220073214,
0.43213633257981904,
0.4600117432981708,
0.4860059092157168,
0.5098038148043254,
0.5312576487673005,
0.5503388897821497,
0.5671040046698979,
0.5816691401542682,
0.5941907797757247,
0.6048505439275582,
0.6138430848558717,
0.6213664728158805,
0.6276147003505981,
0.6327720384393498,
0.6370090202793622,
0.6404798410376897,
0.6433209642860412,
0.645650727511129,
0.6475697441838827,
0.6491619097219558,
0.6504958333142303,
0.6516265363705784,
0.6525972803376007
],
[
0.621654526462006,
0.6150233870319676,
0.6074904154570943,
0.5989826516851671,
0.5894244001989778,
0.5787331280053921,
0.5668136952574488,
0.553551993026945,
0.538810285026961,
0.5224279437034896,
0.504232470823852,
0.4840662268040955,
0.4618337849893867,
0.43757321728199217,
0.411552112649572,
0.38438540629263596,
0.3571642325275462,
0.33156429354288885,
0.3098544613773808,
0.2946558519287071,
0.28830697569501307,
0.2919759891469271,
0.3051214256249557,
0.32579706898609284,
0.3515000067181603,
0.3798954502505214,
0.40914173227673795,
0.43792315985772506,
0.46536250387605255,
0.4909129674125994,
0.5142663533885938,
0.5352840153961042,
0.5539470566982778,
0.570320486319368,
0.5845269392527049,
0.5967269116823338,
0.607103567696741,
0.6158509260779735,
0.6231646954228401,
0.6292352852214163,
0.6342426570182973,
0.638352747409877,
0.641715227219933,
0.6444623782665916,
0.6467088810971305,
0.6485523189944556,
0.6500742175985958,
0.6513414562604188,
0.6524079065827276,
0.6533161749004555
],
[
0.623521704876415,
0.6171558768850588,
0.6099103359922154,
0.6017095241676053,
0.5924738029220691,
0.5821155745445471,
0.5705341331451649,
0.5576103941723728,
0.5432037658915221,
0.5271546550585438,
0.5092971133036621,
0.48948652714445495,
0.46764672308563404,
0.4438393391995865,
0.4183558776832464,
0.39182891932395286,
0.3653505022233807,
0.34056475269005615,
0.3196577345366672,
0.3051101904991209,
0.2991002628601036,
0.3027039306270684,
0.3154197399247914,
0.33543524315150297,
0.3603833642952115,
0.3880154253040228,
0.41652743846652224,
0.4446136175025433,
0.47139622882403653,
0.49632674658354414,
0.5190972037336484,
0.5395712275901989,
0.557733182415901,
0.5736511513785353,
0.587449787232466,
0.5992900821941641,
0.6093540655394009,
0.6178331387010543,
0.6249192141108237,
0.6307981001180286,
0.6356447330751945,
0.6396199464133797,
0.6428685165620028,
0.6455182559677666,
0.6476799450612002,
0.6494479135380663,
0.6509010995421908,
0.652104434391582,
0.6531104206193588,
0.6539607920418096
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.177779 (SEM: 0)
x1: 0.398423
x2: 0.767501
x3: 0.985177
x4: 0.739179
x5: 0.28668
x6: 0.895158",
"Arm 1_0
hartmann6: -0.0536031 (SEM: 0)
x1: 0.490791
x2: 0.319897
x3: 0.262714
x4: 0.599394
x5: 0.798092
x6: 0.401669",
"Arm 2_0
hartmann6: -0.0172144 (SEM: 0)
x1: 0.962786
x2: 0.240473
x3: 0.585971
x4: 0.012025
x5: 0.417127
x6: 0.108675",
"Arm 3_0
hartmann6: -0.392451 (SEM: 0)
x1: 0.79478
x2: 0.205626
x3: 0.063052
x4: 0.3554
x5: 0.217532
x6: 0.355469",
"Arm 4_0
hartmann6: -0.143018 (SEM: 0)
x1: 0.357024
x2: 0.0243729
x3: 0.258409
x4: 0.0155311
x5: 0.791306
x6: 0.55288",
"Arm 5_0
hartmann6: -0.0590564 (SEM: 0)
x1: 0.20969
x2: 0.892688
x3: 0.785224
x4: 0.00995163
x5: 0.992038
x6: 0.772372",
"Arm 6_0
hartmann6: -0.91023 (SEM: 0)
x1: 0.213147
x2: 0.560835
x3: 0.954924
x4: 0.248569
x5: 0.387296
x6: 0.773546",
"Arm 7_0
hartmann6: -0.0219373 (SEM: 0)
x1: 0.38589
x2: 0.36064
x3: 0.111445
x4: 0.637104
x5: 0.764981
x6: 0.689943",
"Arm 8_0
hartmann6: -2.67815 (SEM: 0)
x1: 0.389215
x2: 0.78592
x3: 0.0981495
x4: 0.552126
x5: 0.860386
x6: 0.0149064",
"Arm 9_0
hartmann6: -0.00128769 (SEM: 0)
x1: 0.860403
x2: 0.28761
x3: 0.50627
x4: 0.701542
x5: 0.906839
x6: 0.560025",
"Arm 10_0
hartmann6: -0.242474 (SEM: 0)
x1: 0.863283
x2: 0.389635
x3: 0.464657
x4: 0.0582119
x5: 0.158668
x6: 0.496087",
"Arm 11_0
hartmann6: -0.0980761 (SEM: 0)
x1: 0.0544792
x2: 0.446555
x3: 0.727651
x4: 0.684284
x5: 0.806846
x6: 0.523842",
"Arm 12_0
hartmann6: -1.68057 (SEM: 0)
x1: 0.468914
x2: 0.665032
x3: 0.0652667
x4: 0.469641
x5: 0.745872
x6: 0.0681874",
"Arm 13_0
hartmann6: -2.04775 (SEM: 0)
x1: 0.454339
x2: 0.718178
x3: 0.0722093
x4: 0.471481
x5: 0.781005
x6: 0.0572178",
"Arm 14_0
hartmann6: -2.02872 (SEM: 0)
x1: 0.454816
x2: 0.714113
x3: 0.0702674
x4: 0.472493
x5: 0.777158
x6: 0.0574868",
"Arm 15_0
hartmann6: -2.59202 (SEM: 0)
x1: 0.398306
x2: 0.755947
x3: 0.0143918
x4: 0.555892
x5: 0.705888
x6: 0.0179569",
"Arm 16_0
hartmann6: -2.75562 (SEM: 0)
x1: 0.377738
x2: 0.804521
x3: 0.000338175
x4: 0.574505
x5: 0.656819
x6: 1.81822e-16",
"Arm 17_0
hartmann6: -1.97162 (SEM: 0)
x1: 0.26208
x2: 0.815253
x3: 2.30907e-18
x4: 0.538183
x5: 0.665566
x6: 2.21194e-18",
"Arm 18_0
hartmann6: -2.82433 (SEM: 0)
x1: 0.387343
x2: 0.85686
x3: 0.0402197
x4: 0.516549
x5: 0.623467
x6: 7.81084e-18",
"Arm 19_0
hartmann6: -2.63814 (SEM: 0)
x1: 0.382419
x2: 0.866178
x3: 7.02691e-18
x4: 0.4794
x5: 0.693406
x6: 1.20092e-18",
"Arm 20_0
hartmann6: -2.92621 (SEM: 0)
x1: 0.393236
x2: 0.845492
x3: 0.0843073
x4: 0.558285
x5: 0.584994
x6: 4.17018e-08",
"Arm 21_0
hartmann6: -2.9469 (SEM: 0)
x1: 0.394943
x2: 0.848788
x3: 0.100135
x4: 0.578934
x5: 0.574615
x6: 2.73128e-09",
"Arm 22_0
hartmann6: -2.90201 (SEM: 0)
x1: 0.374751
x2: 0.841434
x3: 0.160252
x4: 0.575449
x5: 0.59524
x6: 0",
"Arm 23_0
hartmann6: -2.92463 (SEM: 0)
x1: 0.411299
x2: 0.835806
x3: 0.128652
x4: 0.562756
x5: 0.586708
x6: 0",
"Arm 24_0
hartmann6: -3.0158 (SEM: 0)
x1: 0.398095
x2: 0.859741
x3: 0.112079
x4: 0.578565
x5: 0.574823
x6: 0.0557957",
"Arm 25_0
hartmann6: -3.00769 (SEM: 0)
x1: 0.397592
x2: 0.854616
x3: 0.107131
x4: 0.56879
x5: 0.570605
x6: 0.0567597",
"Arm 26_0
hartmann6: -2.97156 (SEM: 0)
x1: 0.404703
x2: 0.882664
x3: 0.124501
x4: 0.569074
x5: 0.470929
x6: 0.0882684",
"Arm 27_0
hartmann6: -0.73788 (SEM: 0)
x1: 0.410855
x2: 0.984604
x3: 0.0192436
x4: 0.51246
x5: 0.430491
x6: 0.349133",
"Arm 28_0
hartmann6: -3.06918 (SEM: 0)
x1: 0.4036
x2: 0.877685
x3: 0.139064
x4: 0.57802
x5: 0.493861
x6: 0.0468415"
],
"type": "scatter",
"x": [
0.398422509431839,
0.49079069774597883,
0.9627859489992261,
0.7947803363204002,
0.357024222612381,
0.20968967210501432,
0.21314695850014687,
0.3858902435749769,
0.38921523094177246,
0.8604028560221195,
0.8632825557142496,
0.054479227401316166,
0.468913975680222,
0.45433885341758296,
0.45481581076403454,
0.3983060652101834,
0.3777378557967659,
0.26207974201063744,
0.3873426991820172,
0.38241877000881197,
0.39323576303391006,
0.3949434343528842,
0.37475076651087674,
0.4112991785644187,
0.3980949155656093,
0.39759185661081237,
0.4047033747879519,
0.4108553325505108,
0.4036002687011182
],
"xaxis": "x",
"y": [
0.7675012350082397,
0.3198970640078187,
0.24047255888581276,
0.20562615152448416,
0.024372917599976063,
0.8926876690238714,
0.5608351789414883,
0.36064003594219685,
0.785920275375247,
0.2876096526160836,
0.3896352918818593,
0.44655546452850103,
0.6650318449510528,
0.718177894489421,
0.7141131330980965,
0.7559474302658782,
0.8045209799269514,
0.8152532627504008,
0.8568596593455997,
0.8661775124799345,
0.8454919763834396,
0.8487881594728477,
0.8414337791322379,
0.8358058309559664,
0.8597405091467616,
0.8546155852400952,
0.8826638442360016,
0.9846035063951003,
0.8776847910126038
],
"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.177779 (SEM: 0)
x1: 0.398423
x2: 0.767501
x3: 0.985177
x4: 0.739179
x5: 0.28668
x6: 0.895158",
"Arm 1_0
hartmann6: -0.0536031 (SEM: 0)
x1: 0.490791
x2: 0.319897
x3: 0.262714
x4: 0.599394
x5: 0.798092
x6: 0.401669",
"Arm 2_0
hartmann6: -0.0172144 (SEM: 0)
x1: 0.962786
x2: 0.240473
x3: 0.585971
x4: 0.012025
x5: 0.417127
x6: 0.108675",
"Arm 3_0
hartmann6: -0.392451 (SEM: 0)
x1: 0.79478
x2: 0.205626
x3: 0.063052
x4: 0.3554
x5: 0.217532
x6: 0.355469",
"Arm 4_0
hartmann6: -0.143018 (SEM: 0)
x1: 0.357024
x2: 0.0243729
x3: 0.258409
x4: 0.0155311
x5: 0.791306
x6: 0.55288",
"Arm 5_0
hartmann6: -0.0590564 (SEM: 0)
x1: 0.20969
x2: 0.892688
x3: 0.785224
x4: 0.00995163
x5: 0.992038
x6: 0.772372",
"Arm 6_0
hartmann6: -0.91023 (SEM: 0)
x1: 0.213147
x2: 0.560835
x3: 0.954924
x4: 0.248569
x5: 0.387296
x6: 0.773546",
"Arm 7_0
hartmann6: -0.0219373 (SEM: 0)
x1: 0.38589
x2: 0.36064
x3: 0.111445
x4: 0.637104
x5: 0.764981
x6: 0.689943",
"Arm 8_0
hartmann6: -2.67815 (SEM: 0)
x1: 0.389215
x2: 0.78592
x3: 0.0981495
x4: 0.552126
x5: 0.860386
x6: 0.0149064",
"Arm 9_0
hartmann6: -0.00128769 (SEM: 0)
x1: 0.860403
x2: 0.28761
x3: 0.50627
x4: 0.701542
x5: 0.906839
x6: 0.560025",
"Arm 10_0
hartmann6: -0.242474 (SEM: 0)
x1: 0.863283
x2: 0.389635
x3: 0.464657
x4: 0.0582119
x5: 0.158668
x6: 0.496087",
"Arm 11_0
hartmann6: -0.0980761 (SEM: 0)
x1: 0.0544792
x2: 0.446555
x3: 0.727651
x4: 0.684284
x5: 0.806846
x6: 0.523842",
"Arm 12_0
hartmann6: -1.68057 (SEM: 0)
x1: 0.468914
x2: 0.665032
x3: 0.0652667
x4: 0.469641
x5: 0.745872
x6: 0.0681874",
"Arm 13_0
hartmann6: -2.04775 (SEM: 0)
x1: 0.454339
x2: 0.718178
x3: 0.0722093
x4: 0.471481
x5: 0.781005
x6: 0.0572178",
"Arm 14_0
hartmann6: -2.02872 (SEM: 0)
x1: 0.454816
x2: 0.714113
x3: 0.0702674
x4: 0.472493
x5: 0.777158
x6: 0.0574868",
"Arm 15_0
hartmann6: -2.59202 (SEM: 0)
x1: 0.398306
x2: 0.755947
x3: 0.0143918
x4: 0.555892
x5: 0.705888
x6: 0.0179569",
"Arm 16_0
hartmann6: -2.75562 (SEM: 0)
x1: 0.377738
x2: 0.804521
x3: 0.000338175
x4: 0.574505
x5: 0.656819
x6: 1.81822e-16",
"Arm 17_0
hartmann6: -1.97162 (SEM: 0)
x1: 0.26208
x2: 0.815253
x3: 2.30907e-18
x4: 0.538183
x5: 0.665566
x6: 2.21194e-18",
"Arm 18_0
hartmann6: -2.82433 (SEM: 0)
x1: 0.387343
x2: 0.85686
x3: 0.0402197
x4: 0.516549
x5: 0.623467
x6: 7.81084e-18",
"Arm 19_0
hartmann6: -2.63814 (SEM: 0)
x1: 0.382419
x2: 0.866178
x3: 7.02691e-18
x4: 0.4794
x5: 0.693406
x6: 1.20092e-18",
"Arm 20_0
hartmann6: -2.92621 (SEM: 0)
x1: 0.393236
x2: 0.845492
x3: 0.0843073
x4: 0.558285
x5: 0.584994
x6: 4.17018e-08",
"Arm 21_0
hartmann6: -2.9469 (SEM: 0)
x1: 0.394943
x2: 0.848788
x3: 0.100135
x4: 0.578934
x5: 0.574615
x6: 2.73128e-09",
"Arm 22_0
hartmann6: -2.90201 (SEM: 0)
x1: 0.374751
x2: 0.841434
x3: 0.160252
x4: 0.575449
x5: 0.59524
x6: 0",
"Arm 23_0
hartmann6: -2.92463 (SEM: 0)
x1: 0.411299
x2: 0.835806
x3: 0.128652
x4: 0.562756
x5: 0.586708
x6: 0",
"Arm 24_0
hartmann6: -3.0158 (SEM: 0)
x1: 0.398095
x2: 0.859741
x3: 0.112079
x4: 0.578565
x5: 0.574823
x6: 0.0557957",
"Arm 25_0
hartmann6: -3.00769 (SEM: 0)
x1: 0.397592
x2: 0.854616
x3: 0.107131
x4: 0.56879
x5: 0.570605
x6: 0.0567597",
"Arm 26_0
hartmann6: -2.97156 (SEM: 0)
x1: 0.404703
x2: 0.882664
x3: 0.124501
x4: 0.569074
x5: 0.470929
x6: 0.0882684",
"Arm 27_0
hartmann6: -0.73788 (SEM: 0)
x1: 0.410855
x2: 0.984604
x3: 0.0192436
x4: 0.51246
x5: 0.430491
x6: 0.349133",
"Arm 28_0
hartmann6: -3.06918 (SEM: 0)
x1: 0.4036
x2: 0.877685
x3: 0.139064
x4: 0.57802
x5: 0.493861
x6: 0.0468415"
],
"type": "scatter",
"x": [
0.398422509431839,
0.49079069774597883,
0.9627859489992261,
0.7947803363204002,
0.357024222612381,
0.20968967210501432,
0.21314695850014687,
0.3858902435749769,
0.38921523094177246,
0.8604028560221195,
0.8632825557142496,
0.054479227401316166,
0.468913975680222,
0.45433885341758296,
0.45481581076403454,
0.3983060652101834,
0.3777378557967659,
0.26207974201063744,
0.3873426991820172,
0.38241877000881197,
0.39323576303391006,
0.3949434343528842,
0.37475076651087674,
0.4112991785644187,
0.3980949155656093,
0.39759185661081237,
0.4047033747879519,
0.4108553325505108,
0.4036002687011182
],
"xaxis": "x2",
"y": [
0.7675012350082397,
0.3198970640078187,
0.24047255888581276,
0.20562615152448416,
0.024372917599976063,
0.8926876690238714,
0.5608351789414883,
0.36064003594219685,
0.785920275375247,
0.2876096526160836,
0.3896352918818593,
0.44655546452850103,
0.6650318449510528,
0.718177894489421,
0.7141131330980965,
0.7559474302658782,
0.8045209799269514,
0.8152532627504008,
0.8568596593455997,
0.8661775124799345,
0.8454919763834396,
0.8487881594728477,
0.8414337791322379,
0.8358058309559664,
0.8597405091467616,
0.8546155852400952,
0.8826638442360016,
0.9846035063951003,
0.8776847910126038
],
"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": [
{
"fillpattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
},
"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": [
"