{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"originalKey": "e23719d9-8a24-4208-8439-34e7b8270c79"
},
"source": [
"# Visualizations\n",
"\n",
"This tutorial illustrates the core visualization utilities available in Ax."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"code_folding": [],
"collapsed": false,
"executionStartTime": 1627652821316,
"executionStopTime": 1627652822868,
"hidden_ranges": [],
"originalKey": "101b0e96-5b3d-48c5-bf3c-677b4ddf90c7",
"requestMsgId": "c0dd9aaf-896d-4ea9-912f-1e58d301d114"
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] 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",
"from ax.service.ax_client import AxClient\n",
"\n",
"from ax.modelbridge.cross_validation import cross_validate\n",
"from ax.plot.contour import interact_contour\n",
"from ax.plot.diagnostic import interact_cross_validation\n",
"from ax.plot.scatter import(\n",
" interact_fitted,\n",
" plot_objective_vs_constraints,\n",
" tile_fitted,\n",
")\n",
"from ax.plot.slice import plot_slice\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": {
"code_folding": [],
"hidden_ranges": [],
"originalKey": "8449378f-890e-4e76-8d73-ce2aa4120a69",
"showInput": true
},
"source": [
"## 1. Create experiment and run optimization\n",
"\n",
"The vizualizations require an experiment object and a model fit on the evaluated data. The routine below is a copy of the Service API tutorial, so the explanation here is omitted. Retrieving the experiment and model objects for each API paradigm is shown in the respective tutorials"
]
},
{
"cell_type": "markdown",
"metadata": {
"originalKey": "f7544e06-6c6a-4841-b659-3be6a198a948"
},
"source": [
"#### 1a. Define search space and evaluation function"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"code_folding": [],
"collapsed": false,
"executionStartTime": 1627652824829,
"executionStopTime": 1627652824877,
"hidden_ranges": [],
"originalKey": "28f6cb76-828f-445d-bdda-ba057c87dcd0",
"requestMsgId": "7495e7e2-1025-4292-b3aa-e953739cef3e"
},
"outputs": [],
"source": [
"noise_sd = 0.1\n",
"param_names = [f\"x{i+1}\" for i in range(6)] # x1, x2, ..., x6\n",
"\n",
"def noisy_hartmann_evaluation_function(parameterization):\n",
" x = np.array([parameterization.get(p_name) for p_name in param_names])\n",
" noise1, noise2 = np.random.normal(0, noise_sd, 2)\n",
"\n",
" return {\n",
" \"hartmann6\": (hartmann6(x) + noise1, noise_sd),\n",
" \"l2norm\": (np.sqrt((x ** 2).sum()) + noise2, noise_sd)\n",
" }\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"originalKey": "17a51543-298e-47d4-bcd9-33459fe1169e"
},
"source": [
"#### 1b. Create Experiment"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"code_folding": [],
"collapsed": false,
"executionStartTime": 1627654956712,
"executionStopTime": 1627654956823,
"hidden_ranges": [],
"originalKey": "6fca889c-a4ff-42ef-a669-6eb8803de89c",
"requestMsgId": "905eff52-e649-4bd5-abf0-ff69c1549852"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Starting optimization with verbose logging. To disable logging, set the `verbose_logging` argument to `False`. Note that float values in the logs are rounded to 6 decimal points.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x1. 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-25 21:27:06] 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-25 21:27:06] 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-25 21:27:06] 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-25 21:27:06] 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-25 21:27:06] 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-25 21:27:06] 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=[]).\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] 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-25 21:27:06] 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"
]
}
],
"source": [
"ax_client = AxClient()\n",
"ax_client.create_experiment(\n",
" name=\"test_visualizations\",\n",
" parameters=[\n",
" {\n",
" \"name\": p_name,\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" }\n",
" for p_name in param_names\n",
" ],\n",
" objective_name=\"hartmann6\",\n",
" minimize=True,\n",
" outcome_constraints=[\"l2norm <= 1.25\"]\n",
")"
]
},
{
"cell_type": "markdown",
"metadata": {
"code_folding": [],
"hidden_ranges": [],
"originalKey": "ab892f7c-4830-4c1d-b476-ec1078ec3faf",
"showInput": false
},
"source": [
"#### 1c. Run the optimization and fit a GP on all data"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"code_folding": [],
"collapsed": false,
"executionStartTime": 1627654642967,
"executionStopTime": 1627654862819,
"hidden_ranges": [],
"originalKey": "7269a5ba-45c8-4acf-ac83-a5ea8a52d6c1",
"requestMsgId": "c7a4dea8-fd6d-4e1a-84de-ad973ede0cd7"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Generated new trial 0 with parameters {'x1': 0.156353, 'x2': 0.828955, 'x3': 0.18221, 'x4': 0.993831, 'x5': 0.278476, 'x6': 0.628853}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Completed trial 0 with data: {'hartmann6': (-0.00661, 0.1), 'l2norm': (1.519872, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Generated new trial 1 with parameters {'x1': 0.638525, 'x2': 0.295647, 'x3': 0.056867, 'x4': 0.174938, 'x5': 0.181975, 'x6': 0.433481}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Completed trial 1 with data: {'hartmann6': (-0.603912, 0.1), 'l2norm': (0.836981, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Generated new trial 2 with parameters {'x1': 0.006821, 'x2': 0.841453, 'x3': 0.119364, 'x4': 0.726945, 'x5': 0.762638, 'x6': 0.210246}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Completed trial 2 with data: {'hartmann6': (-0.058331, 0.1), 'l2norm': (1.35503, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Generated new trial 3 with parameters {'x1': 0.19718, 'x2': 0.641646, 'x3': 0.99326, 'x4': 0.206919, 'x5': 0.081034, 'x6': 0.066097}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Completed trial 3 with data: {'hartmann6': (-0.285483, 0.1), 'l2norm': (1.142436, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Generated new trial 4 with parameters {'x1': 0.454058, 'x2': 0.160317, 'x3': 0.119512, 'x4': 0.299947, 'x5': 0.989933, 'x6': 0.076605}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Completed trial 4 with data: {'hartmann6': (-0.033935, 0.1), 'l2norm': (1.10637, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Generated new trial 5 with parameters {'x1': 0.604522, 'x2': 0.925746, 'x3': 0.607682, 'x4': 0.265181, 'x5': 0.568391, 'x6': 0.474896}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Completed trial 5 with data: {'hartmann6': (-0.019129, 0.1), 'l2norm': (1.650064, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Generated new trial 6 with parameters {'x1': 0.635463, 'x2': 0.26446, 'x3': 0.618036, 'x4': 0.907142, 'x5': 0.883884, 'x6': 0.555087}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Completed trial 6 with data: {'hartmann6': (0.070479, 0.1), 'l2norm': (1.651056, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Generated new trial 7 with parameters {'x1': 0.80227, 'x2': 0.59793, 'x3': 0.773525, 'x4': 0.867527, 'x5': 0.914255, 'x6': 0.357337}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Completed trial 7 with data: {'hartmann6': (-0.019961, 0.1), 'l2norm': (2.048878, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Generated new trial 8 with parameters {'x1': 0.885401, 'x2': 0.979298, 'x3': 0.52418, 'x4': 0.628868, 'x5': 0.398996, 'x6': 0.143867}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Completed trial 8 with data: {'hartmann6': (0.115659, 0.1), 'l2norm': (1.613013, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Generated new trial 9 with parameters {'x1': 0.652378, 'x2': 0.878267, 'x3': 0.698092, 'x4': 0.167317, 'x5': 0.394397, 'x6': 0.190446}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Completed trial 9 with data: {'hartmann6': (-0.039665, 0.1), 'l2norm': (1.253833, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:06] ax.service.ax_client: Generated new trial 10 with parameters {'x1': 0.925983, 'x2': 0.915254, 'x3': 0.332073, 'x4': 0.883105, 'x5': 0.483516, 'x6': 0.340959}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:07] ax.service.ax_client: Completed trial 10 with data: {'hartmann6': (-0.004602, 0.1), 'l2norm': (1.678071, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:07] ax.service.ax_client: Generated new trial 11 with parameters {'x1': 0.171178, 'x2': 0.467583, 'x3': 0.13919, 'x4': 0.224523, 'x5': 0.955353, 'x6': 0.641796}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:07] ax.service.ax_client: Completed trial 11 with data: {'hartmann6': (-0.046218, 0.1), 'l2norm': (1.344774, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:20] ax.service.ax_client: Generated new trial 12 with parameters {'x1': 0.628777, 'x2': 0.232364, 'x3': 0.032492, 'x4': 0.115041, 'x5': 0.081049, 'x6': 0.431374}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:20] ax.service.ax_client: Completed trial 12 with data: {'hartmann6': (-0.097935, 0.1), 'l2norm': (0.831384, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:29] ax.service.ax_client: Generated new trial 13 with parameters {'x1': 0.639537, 'x2': 0.316663, 'x3': 0.068793, 'x4': 0.194442, 'x5': 0.226739, 'x6': 0.433794}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:29] ax.service.ax_client: Completed trial 13 with data: {'hartmann6': (-0.759589, 0.1), 'l2norm': (0.775916, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:37] ax.service.ax_client: Generated new trial 14 with parameters {'x1': 0.665487, 'x2': 0.293105, 'x3': 0.000115, 'x4': 0.202545, 'x5': 0.258844, 'x6': 0.455193}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:37] ax.service.ax_client: Completed trial 14 with data: {'hartmann6': (-1.023126, 0.1), 'l2norm': (1.026266, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:51] ax.service.ax_client: Generated new trial 15 with parameters {'x1': 0.678476, 'x2': 0.283359, 'x3': 0.0, 'x4': 0.211517, 'x5': 0.302936, 'x6': 0.4686}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:51] ax.service.ax_client: Completed trial 15 with data: {'hartmann6': (-1.100207, 0.1), 'l2norm': (0.827118, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:55] ax.service.ax_client: Generated new trial 16 with parameters {'x1': 0.749384, 'x2': 0.324648, 'x3': 0.0, 'x4': 0.277968, 'x5': 0.307693, 'x6': 0.489239}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:27:55] ax.service.ax_client: Completed trial 16 with data: {'hartmann6': (-0.520247, 0.1), 'l2norm': (1.035583, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:28:02] ax.service.ax_client: Generated new trial 17 with parameters {'x1': 0.650144, 'x2': 0.273984, 'x3': 0.0, 'x4': 0.198529, 'x5': 0.326291, 'x6': 0.463495}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:28:02] ax.service.ax_client: Completed trial 17 with data: {'hartmann6': (-0.90135, 0.1), 'l2norm': (0.997695, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:28:28] ax.service.ax_client: Generated new trial 18 with parameters {'x1': 0.674411, 'x2': 0.343923, 'x3': 0.0, 'x4': 0.147457, 'x5': 0.299825, 'x6': 0.420233}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:28:28] ax.service.ax_client: Completed trial 18 with data: {'hartmann6': (-0.556067, 0.1), 'l2norm': (0.951424, 0.1)}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:28:31] ax.service.ax_client: Generated new trial 19 with parameters {'x1': 0.633521, 'x2': 0.273156, 'x3': 0.0, 'x4': 0.240819, 'x5': 0.28017, 'x6': 0.441031}.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:28:31] ax.service.ax_client: Completed trial 19 with data: {'hartmann6': (-0.882174, 0.1), 'l2norm': (0.865362, 0.1)}.\n"
]
}
],
"source": [
"for i in range(20):\n",
" parameters, trial_index = ax_client.get_next_trial()\n",
" # Local evaluation here can be replaced with deployment to external system.\n",
" ax_client.complete_trial(trial_index=trial_index, raw_data=noisy_hartmann_evaluation_function(parameters))"
]
},
{
"cell_type": "markdown",
"metadata": {
"originalKey": "72f4d3e7-fa04-43d0-8451-ded292e705df"
},
"source": [
"## 2. Contour plots\n",
"\n",
"The plot below shows the response surface for `hartmann6` metric as a function of the `x1`, `x2` parameters.\n",
"\n",
"The other parameters are fixed in the middle of their respective ranges, which in this example is 0.5 for all of them."
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"code_folding": [],
"collapsed": false,
"executionStartTime": 1627654870209,
"executionStopTime": 1627654871972,
"hidden_ranges": [],
"originalKey": "843df85c-965d-4a83-9fe1-696225d81c0f",
"requestMsgId": "4a643541-867c-46b6-868d-64337920c2a3"
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 04-25 21:28:31] ax.service.ax_client: Retrieving contour plot with parameter 'x1' on X-axis and 'x2' on Y-axis, for metric 'hartmann6'. Remaining parameters are affixed to the middle of their range.\n"
]
},
{
"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.0967473704253547,
-0.09689248005157558,
-0.09704863919610177,
-0.09721615329264313,
-0.09739525141327321,
-0.0975860723337488,
-0.0977886501968733,
-0.09800290004979734,
-0.09822860358320423,
-0.09846539545061672,
-0.09871275059212181,
-0.09896997302585522,
-0.09923618659958347,
-0.09951032821051814,
-0.0997911440009728,
-0.10007718901774265,
-0.100366830781696,
-0.10065825714927185,
-0.10094948875853457,
-0.10123839623949013,
-0.10152272223318787,
-0.10180010810989315,
-0.10206812510801061,
-0.10232430943865448,
-0.10256620072329045,
-0.1027913829622139,
-0.10299752707888152,
-0.10318243395843438,
-0.10334407680676999,
-0.10348064160669035,
-0.10359056444564307,
-0.10367256453870854,
-0.10372567187135373,
-0.10374924853666728,
-0.10374300303589468,
-0.1037069970409143,
-0.10364164437226367,
-0.10354770221419166,
-0.10342625485578097,
-0.10327869050125232,
-0.10310667192074588,
-0.1029121019044914,
-0.10269708462995777,
-0.10246388414779678,
-0.10221488123571165,
-0.1019525298604155,
-0.10167931443010955,
-0.1013977089193347,
-0.10111013881247449,
-0.1008189466506686
],
[
-0.09731241926571996,
-0.09752032326280141,
-0.09774475335242414,
-0.09798624884108253,
-0.09824524141967589,
-0.09852203307910673,
-0.09881677306814421,
-0.09912943430004054,
-0.09945978970650657,
-0.09980738912979864,
-0.10017153743181756,
-0.1005512745785048,
-0.10094535852305522,
-0.1013522517567253,
-0.1017701124152634,
-0.10219679081634983,
-0.1026298322535519,
-0.10306648678083855,
-0.10350372658582316,
-0.10393827136876682,
-0.10436662191961402,
-0.10478510182137801,
-0.10518990691255428,
-0.10557716182446564,
-0.10594298258496432,
-0.10628354396352083,
-0.10659514994183208,
-0.10687430544670071,
-0.10711778729548857,
-0.10732271219441503,
-0.10748659960856877,
-0.10760742739745455,
-0.1076836782834765,
-0.10771437548916557,
-0.10769910623221898,
-0.10763803218972137,
-0.10753188651354764,
-0.10738195747360632,
-0.10719005929809644,
-0.10695849124415693,
-0.10668998634392232,
-0.10638765160944874,
-0.1060549017296604,
-0.10569538844379728,
-0.1053129278256468,
-0.10491142766420472,
-0.10449481698812094,
-0.10406697956674321,
-0.10363169294655375,
-0.10319257426695619
],
[
-0.0980546092133579,
-0.09834771906193387,
-0.09866515554394115,
-0.09900783963546589,
-0.0993765455236984,
-0.09977186635692334,
-0.10019417798336427,
-0.10064360124979049,
-0.10111996358848158,
-0.10162276078425164,
-0.10215111997550683,
-0.10270376509699339,
-0.10327898610782008,
-0.10387461345613289,
-0.10448799930029148,
-0.1051160070240359,
-0.1057550105388538,
-0.10640090475071348,
-0.10704912837290703,
-0.10769469998760914,
-0.10833226789584316,
-0.10895617385401354,
-0.10956053028605081,
-0.11013931000077426,
-0.1106864468576581,
-0.11119594523953011,
-0.11166199564069232,
-0.11207909319863602,
-0.11244215562185061,
-0.11274663672724602,
-0.11298863172467383,
-0.11316497049070096,
-0.11327329536616487,
-0.11331212048682385,
-0.11328087029555026,
-0.11317989565772779,
-0.11301046686818256,
-0.11277474374989721,
-0.11247572394983218,
-0.11211717138345026,
-0.11170352751934276,
-0.11123980878895498,
-0.11073149382496006,
-0.11018440445919511,
-0.10960458444445917,
-0.10899817971386214,
-0.10837132367790625,
-0.1077300306128259,
-0.10708009964933632,
-0.10642703126679723
],
[
-0.0990064466716884,
-0.09941244529338383,
-0.09985361721257938,
-0.10033148447732249,
-0.10084737660872414,
-0.10140237879343886,
-0.10199727619306359,
-0.10263249512294453,
-0.10330804211277825,
-0.1040234421392062,
-0.10477767760735221,
-0.10556912994205711,
-0.10639552591561771,
-0.10725389106955324,
-0.10814051276341655,
-0.10905091548249476,
-0.10997985103652588,
-0.11092130616246293,
-0.11186852978785625,
-0.11281408180449384,
-0.11374990463852311,
-0.11466741818650275,
-0.11555763783082504,
-0.11641131427902066,
-0.11721909292854027,
-0.11797168939249969,
-0.1186600767933094,
-0.11927567950738305,
-0.1198105672945444,
-0.12025764323607746,
-0.12061081869165419,
-0.12086516860800195,
-0.12101706099050336,
-0.12106425517758804,
-0.12100596470494526,
-0.12084288195487927,
-0.12057716337606175,
-0.1202123757349409,
-0.11975340551823871,
-0.11920633514303416,
-0.11857829095306577,
-0.11787726901074344,
-0.11711194538103906,
-0.11629147792007932,
-0.11542530652980776,
-0.11452295844822907,
-0.11359386446174527,
-0.11264719101680418,
-0.11169169214628341,
-0.11073558398759417
],
[
-0.10019496430156177,
-0.10074654121541318,
-0.10134796182938671,
-0.10200165934205727,
-0.10270982620759761,
-0.10347433797159505,
-0.10429667009194052,
-0.10517780865187615,
-0.10611815628242369,
-0.10711743506461702,
-0.10817458866665472,
-0.10928768647050713,
-0.11045383293429364,
-0.11166908589279784,
-0.1129283878853545,
-0.11422551488007379,
-0.11555304689512896,
-0.11690236496021952,
-0.11826367857548081,
-0.11962608727851318,
-0.12097767910100848,
-0.12230566757797559,
-0.12359656757764045,
-0.12483640858455283,
-0.12601098225323423,
-0.12710611914105127,
-0.12810798763578857,
-0.12900340634186974,
-0.12978015971446474,
-0.13042730566596789,
-0.13093546333288497,
-0.13129706927342508,
-0.13150659111730764,
-0.13156068911026345,
-0.13145831803281488,
-0.13120076451874696,
-0.13079161769873116,
-0.130236674159605,
-0.1295437812328232,
-0.1287226254011185,
-0.1277844749560926,
-0.12674188780511736,
-0.12560839641820434,
-0.1243981822864233,
-0.1231257519526393,
-0.12180562574399459,
-0.12045204889572164,
-0.11907873294646526,
-0.11769863325712016,
-0.11632376640667286
],
[
-0.1016350327377763,
-0.10236865333237513,
-0.1031713345500529,
-0.10404683416254548,
-0.10499862628415557,
-0.10602979294459272,
-0.10714290371509333,
-0.10833988433809966,
-0.10962187592658315,
-0.1109890870032926,
-0.1124406414303229,
-0.11397442611440595,
-0.11558694323231836,
-0.11727317256210962,
-0.11902645027675293,
-0.12083837119416438,
-0.12269872190955428,
-0.12459545238564534,
-0.12651469336574747,
-0.12844082633235962,
-0.13035661160214226,
-0.13224337849209084,
-0.13408127930921773,
-0.1358496062458737,
-0.13752716719166572,
-0.139092713138596,
-0.14052540644595374,
-0.1418053159749833,
-0.1429139222575086,
-0.143834613691643,
-0.14455315350697845,
-0.14505809710973677,
-0.14534114052931724,
-0.14539738306825714,
-0.14522549082363767,
-0.14482775230238323,
-0.1442100225980959,
-0.1433815581602805,
-0.14235474965654055,
-0.14114476539688034,
-0.139769121895504,
-0.138247201112004,
-0.13659973557279256,
-0.1348482828788753,
-0.13301471012975954,
-0.13112070670924045,
-0.12918734093563308,
-0.1272346725679878,
-0.1252814293819888,
-0.12334475226629571
],
[
-0.10332126668858452,
-0.10427462682473093,
-0.10532129993049744,
-0.1064668812398491,
-0.10771665644813763,
-0.10907545278763911,
-0.11054747087021058,
-0.11213609804856053,
-0.11384370492131476,
-0.11567142764295765,
-0.1176189398890474,
-0.11968421964807349,
-0.12186331742628143,
-0.12415013390453128,
-0.12653621650015157,
-0.12901058556403935,
-0.13155960196625952,
-0.1341668884580221,
-0.13681331730035642,
-0.13947707607642565,
-0.1421338222253871,
-0.14475693455146207,
-0.1473178667221153,
-0.14978660359205723,
-0.15213221617912448,
-0.1543235054760981,
-0.15632971931356743,
-0.15812132059215703,
-0.15967077985010109,
-0.16095336083351175,
-0.16194786498819067,
-0.16263730001846743,
-0.16300943915285354,
-0.16305724162467466,
-0.16277911100151732,
-0.16217897602929054,
-0.16126618802962575,
-0.16005523887528528,
-0.15856531335443017,
-0.15681969851657215,
-0.1548450796687615,
-0.15267075754043802,
-0.1503278234757104,
-0.1478483293143562,
-0.14526448609938594,
-0.1426079213064347,
-0.13990901846550194,
-0.13719635643279612,
-0.13449625875162416,
-0.13183245702923332
],
[
-0.10521965032433486,
-0.10642759363732207,
-0.10775814851012111,
-0.10921932645657684,
-0.11081883487778504,
-0.11256388037178819,
-0.11446094276674387,
-0.1165155200251122,
-0.11873184532935543,
-0.12111257909346673,
-0.12365848035273191,
-0.1263680639521928,
-0.1292372521447745,
-0.1322590315564361,
-0.1354231288773154,
-0.13871572095590423,
-0.14211919702949902,
-0.14561199240276734,
-0.14916851374112636,
-0.15275917601356342,
-0.15635056974061032,
-0.15990577434854344,
-0.16338482893680853,
-0.16674536557223474,
-0.1699434024134382,
-0.17293428480080258,
-0.1756737523780066,
-0.1781190999955258,
-0.18023039041320393,
-0.18197166861157693,
-0.1833121218094557,
-0.1842271269470941,
-0.18469912908885047,
-0.1847183002418357,
-0.18428293835564605,
-0.1833995801621218,
-0.18208281798128761,
-0.18035482825840116,
-0.178244636820256,
-0.17578716107679976,
-0.1730220813001631,
-0.16999260073571962,
-0.166744157189358,
-0.16332314697131137,
-0.15977571621494055,
-0.15614666554364906,
-0.15247850295192356,
-0.14881066776584007,
-0.1451789367297523,
-0.14161501250919142
],
[
-0.10726080554670289,
-0.10874977668190369,
-0.11039496116835515,
-0.11220735598132386,
-0.11419770362256543,
-0.11637624296047322,
-0.11875241797266917,
-0.12133454337924512,
-0.12412942759784562,
-0.12714195530921393,
-0.1303746342218312,
-0.13382711337376468,
-0.13749568348517807,
-0.14137277341168036,
-0.14544646053076668,
-0.14970001674351568,
-0.15411151544484228,
-0.15865352798923793,
-0.1632929404682639,
-0.16799092258009665,
-0.1727030795415077,
-0.1773798149133234,
-0.18196692649541896,
-0.18640644884851804,
-0.19063774448459025,
-0.19459883159369645,
-0.19822791995441486,
-0.20146510940458243,
-0.20425418829666814,
-0.20654445438817381,
-0.2082924694275996,
-0.20946365302662176,
-0.21003362266419998,
-0.20998919565297455,
-0.20932898559064403,
-0.2080635492456243,
-0.20621506808411547,
-0.20381657909247153,
-0.20091079914357754,
-0.19754861289440917,
-0.1937873135599104,
-0.18968869720397186,
-0.18531711378919946,
-0.1807375725687627,
-0.17601398682975036,
-0.1712076254726657,
-0.1663758186760253,
-0.16157094413254394,
-0.15683970091977134,
-0.15222266136672574
],
[
-0.10933745723042732,
-0.1111190366435991,
-0.11309300426496208,
-0.1152737801672031,
-0.11767562880534915,
-0.12031235662655568,
-0.1231969525711154,
-0.12634116867957695,
-0.1297550396833791,
-0.13344634270210337,
-0.13742000106677554,
-0.14167743988124268,
-0.14621590523280376,
-0.15102776392773007,
-0.15609980614586205,
-0.1614125792807101,
-0.1669397871496935,
-0.17264779429452437,
-0.17849527968904555,
-0.18443308715765916,
-0.19040432041780533,
-0.19634472809228357,
-0.20218341753151775,
-0.20784392523470502,
-0.2132456557426066,
-0.21830568021026853,
-0.22294086115000272,
-0.22707024244191742,
-0.23061761573719933,
-0.2335141485665983,
-0.23570093897968813,
-0.23713134961064963,
-0.23777297349879079,
-0.2376090966142144,
-0.23663954819306854,
-0.23488086819944046,
-0.23236576818222188,
-0.2291419126564022,
-0.22527009725583996,
-0.2208219417087829,
-0.21587724562250682,
-0.21052117032345596,
-0.20484140990046137,
-0.1989255005241757,
-0.19285839208308758,
-0.18672037416558043,
-0.18058541363866928,
-0.17451992732959565,
-0.16858198356190732,
-0.16282090243562342
],
[
-0.11130871187365995,
-0.11337334862590104,
-0.11566632435115529,
-0.11820563330683487,
-0.12100925181759176,
-0.12409478628943757,
-0.1274790481977277,
-0.13117755099658723,
-0.13520392568000392,
-0.13956925426539604,
-0.1442813238879387,
-0.1493438085891878,
-0.15475539132186666,
-0.16050884518134886,
-0.1665901003353123,
-0.17297733136173266,
-0.17964010837805083,
-0.18653866392729168,
-0.19362333535371473,
-0.20083424841516342,
-0.20810131101443624,
-0.2153445849245524,
-0.22247509693549528,
-0.22939613778759732,
-0.23600507673616733,
-0.24219569135637464,
-0.24786097684679761,
-0.2528963583246035,
-0.2572031863766739,
-0.2606923546264949,
-0.2632878434593001,
-0.2649299719026246,
-0.26557813514820955,
-0.26521282202244695,
-0.26383674605821955,
-0.261474983611719,
-0.25817408715580453,
-0.25400022301490205,
-0.24903646034640387,
-0.24337940230410232,
-0.23713539330087696,
-0.23041655385813858,
-0.22333688649180405,
-0.21600866598366908,
-0.20853928144717887,
-0.2010286432787967,
-0.19356721266537275,
-0.18623466078890072,
-0.17909912333695147,
-0.17221698547319353
],
[
-0.11301285731856572,
-0.11532539594332977,
-0.11789832656499422,
-0.12075293171062332,
-0.12391062216256982,
-0.12739254248948612,
-0.13121908855536563,
-0.13540932953546736,
-0.13998032877311473,
-0.14494636053300541,
-0.1503180235199412,
-0.1561012571014802,
-0.16229627263269264,
-0.168896420205989,
-0.17588702051924085,
-0.18324420221325924,
-0.19093379662940824,
-0.19891035389445189,
-0.20711635568082057,
-0.21548170972611128,
-0.22392361771473868,
-0.23234690964012586,
-0.24064493232605727,
-0.24870106547073284,
-0.256390913789592,
-0.2635851876817129,
-0.2701532375905443,
-0.2759671507368836,
-0.28090625699478755,
-0.2848618292750343,
-0.2877417106348808,
-0.2894745642900751,
-0.29001343236814414,
-0.28933831118987957,
-0.2874575077321921,
-0.28440763086608606,
-0.28025218312191147,
-0.2750788401533818,
-0.2689956190867376,
-0.26212622753874815,
-0.25460494029389585,
-0.24657136491202353,
-0.2381654325181402,
-0.22952289345280144,
-0.22077152089417135,
-0.212028141608505,
-0.2033965328648784,
-0.19496615650741733,
-0.18681164988293208,
-0.17899296010270802
],
[
-0.11428835259897585,
-0.11678706700711905,
-0.11957030439750382,
-0.12266182507498574,
-0.12608562536534013,
-0.12986550933196642,
-0.1340245603873479,
-0.13858450327466645,
-0.14356494868053987,
-0.1489825155682398,
-0.15484983041718833,
-0.1611744081427166,
-0.16795742674987488,
-0.17519241689082668,
-0.18286389849293258,
-0.19094600939708517,
-0.19940118516806926,
-0.20817896429475358,
-0.2172150079080304,
-0.22643043650410227,
-0.23573159610973296,
-0.24501037057236713,
-0.2541451525859541,
-0.26300257095776397,
-0.2714400430335637,
-0.27930917746211753,
-0.28645999335769773,
-0.2927458493075814,
-0.2980288942316511,
-0.30218576961383564,
-0.3051132198112912,
-0.30673321669995685,
-0.30699718958796174,
-0.30588898117976393,
-0.30342622965207433,
-0.2996600014625407,
-0.2946726558541622,
-0.28857408878833024,
-0.2814966560644486,
-0.27358918928898474,
-0.26501057801986766,
-0.25592339145005183,
-0.24648795920122107,
-0.2368572376468191,
-0.22717267451185635,
-0.21756116894485594,
-0.20813312174976273,
-0.1989814904020012,
-0.19018170958675057,
-0.1817923093963085
],
[
-0.11499986825480843,
-0.1176002294429763,
-0.12049775432335727,
-0.12371738007572267,
-0.12728429961336754,
-0.13122350808597763,
-0.1355592418321145,
-0.14031429911543658,
-0.14550923379204003,
-0.15116141600081415,
-0.15728395830351158,
-0.16388451169000168,
-0.17096394375173918,
-0.17851492130437926,
-0.18652043189916745,
-0.1949522929292063,
-0.2037697130973297,
-0.2129179882240015,
-0.22232743067021615,
-0.23191264745745505,
-0.24157229434642924,
-0.2511894389915705,
-0.2606326626659039,
-0.26975801358752716,
-0.27841189242991016,
-0.28643489987566056,
-0.29366660647816883,
-0.2999511186663981,
-0.3051432170382963,
-0.30911474381102405,
-0.31176082906717834,
-0.3130054866199348,
-0.3128060964248662,
-0.3111563343225787,
-0.3080872163052072,
-0.3036660866858212,
-0.29799357805175886,
-0.2911987760915498,
-0.2834330007045267,
-0.2748627368101357,
-0.2656622961351122,
-0.2560067627380217,
-0.24606568282497324,
-0.23599782638934103,
-0.22594720068304613,
-0.2160403569507548,
-0.20638491871693843,
-0.1970691803657869,
-0.18816257954201876,
-0.17971683156866838
],
[
-0.11506363348171375,
-0.117666911841941,
-0.1205662749645253,
-0.12378622821974322,
-0.1273514330248181,
-0.13128623677140788,
-0.1356140935815633,
-0.14035686539306094,
-0.14553399483664542,
-0.15116154451047575,
-0.15725110185030353,
-0.1638085551114136,
-0.17083275427370354,
-0.17831408115102904,
-0.1862329657186726,
-0.19455840058194154,
-0.2032465222494227,
-0.21223934574598272,
-0.22146375694484405,
-0.23083088310413089,
-0.2402359741352768,
-0.24955893217069097,
-0.25866562159973955,
-0.2674100722464887,
-0.27563765137636603,
-0.28318922334637103,
-0.28990623851983655,
-0.29563659817929255,
-0.30024103631017657,
-0.30359965372202885,
-0.30561815089153327,
-0.3062332518385998,
-0.30541681052245717,
-0.30317815678707677,
-0.2995643736784996,
-0.2946583908357883,
-0.2885750038737955,
-0.2814551509344365,
-0.27345895626347194,
-0.2647581558486382,
-0.2555285368486749,
-0.24594295505281022,
-0.23616536387990944,
-0.2263461248266742,
-0.2166187038743574,
-0.20709771579513309,
-0.19787817304691654,
-0.18903573221264175,
-0.18062770500574382,
-0.17269460442911802
],
[
-0.11446524477098552,
-0.11697057787858603,
-0.11975696030938213,
-0.12284684753952785,
-0.12626263685338157,
-0.1300261913800664,
-0.13415825970114037,
-0.13867778210686352,
-0.14360107681562131,
-0.14894090289472395,
-0.15470540148318085,
-0.16089692346705267,
-0.16751076021465486,
-0.1745338044928789,
-0.18194318128691606,
-0.18970490277452465,
-0.19777261773187688,
-0.20608654237466562,
-0.21457267580753753,
-0.22314241706457455,
-0.23169270978228468,
-0.24010684190455622,
-0.24825601811744683,
-0.2560017985035501,
-0.26319945519376114,
-0.26970223780846403,
-0.2753664586643842,
-0.2800572138120102,
-0.28365445391014815,
-0.28605902229169455,
-0.2871982028658256,
-0.2870302861905519,
-0.28554768482485954,
-0.2827782189718945,
-0.27878434895197274,
-0.2736603361033776,
-0.26752753832343035,
-0.2605282522042644,
-0.25281866297775346,
-0.24456152971409698,
-0.2359192083345803,
-0.22704751099926618,
-0.21809074470079262,
-0.20917809835145762,
-0.20042138734650009,
-0.19191403904584797,
-0.18373112140772083,
-0.17593017913331777,
-0.16855263916362587,
-0.1616255692345572
],
[
-0.11326442849595669,
-0.11558175039649332,
-0.11815303663101157,
-0.12099738851549657,
-0.12413356477195203,
-0.12757951458074926,
-0.13135181709052793,
-0.13546502119622936,
-0.1399308819557347,
-0.14475749370825114,
-0.1499483249906177,
-0.15550116691154717,
-0.16140701488366538,
-0.16764891358998982,
-0.17420080670083707,
-0.18102644588599523,
-0.1880784275400092,
-0.19529743945937922,
-0.20261181215938243,
-0.20993747880096264,
-0.21717845154413024,
-0.22422791788552038,
-0.23097004530868556,
-0.2372825536743187,
-0.2430400702145301,
-0.24811822122874014,
-0.25239833937437894,
-0.2557725807172314,
-0.2581491600870705,
-0.25945733908394525,
-0.2596517532497958,
-0.25871565874859564,
-0.2566627264841246,
-0.25353711763957304,
-0.24941173279143242,
-0.2443847180277721,
-0.23857450617554576,
-0.23211383477693226,
-0.22514328412349727,
-0.21780490016590445,
-0.21023640793799864,
-0.20256639830351697,
-0.19491071326658715,
-0.18737009478267064,
-0.18002902560840897,
-0.1729555942651977,
-0.16620216402423701,
-0.15980661300861543,
-0.15379392880723997,
-0.14817797477241118
],
[
-0.11158489357205231,
-0.11364571125319181,
-0.11592496694809803,
-0.1184376544291468,
-0.12119813890811376,
-0.12421971812905888,
-0.1275141057808803,
-0.13109083436420968,
-0.13495657744087217,
-0.13911439499363784,
-0.14356291057116774,
-0.14829543509684748,
-0.1532990597289632,
-0.15855374892481663,
-0.16403147469247542,
-0.16969544352651703,
-0.17549947808427283,
-0.18138762533054226,
-0.1872940703856985,
-0.19314343903266262,
-0.19885156985179803,
-0.20432682716692524,
-0.20947200636962035,
-0.21418685213377717,
-0.218371166839472,
-0.2219284319918145,
-0.22476980244033118,
-0.22681826723667797,
-0.2280127101675055,
-0.22831155776073464,
-0.227695684274772,
-0.22617026210403987,
-0.22376530852558085,
-0.220534785339265,
-0.21655424745206778,
-0.21191719156515346,
-0.20673040208788304,
-0.20110870209844822,
-0.19516957167104768,
-0.1890280843941099,
-0.18279253974691442,
-0.1765610514092174,
-0.17041921453433506,
-0.16443884420592209,
-0.1586776727525165,
-0.15317982605516903,
-0.1479768696268085,
-0.14308921799331262,
-0.1385277259115582,
-0.13429531682870635
],
[
-0.10959198200779122,
-0.1113556430982465,
-0.1132982022067533,
-0.11543041804430079,
-0.1177621995915096,
-0.1203022150294189,
-0.12305744168493596,
-0.12603265732348462,
-0.12922987593344554,
-0.13264773476909875,
-0.13628084391871673,
-0.1401191150655968,
-0.14414709236669124,
-0.14834331534195877,
-0.15267975107100154,
-0.15712134038737843,
-0.16162570950028093,
-0.16614310369077445,
-0.17061660233469048,
-0.17498267321496067,
-0.17917211751313797,
-0.18311144366326546,
-0.18672468732526815,
-0.1899356655685317,
-0.1926706163519549,
-0.19486113124175375,
-0.19644724331646474,
-0.19738048837921243,
-0.19762672245597757,
-0.1971684595068145,
-0.1960064974491656,
-0.19416063327456407,
-0.1916693308957855,
-0.18858829490709522,
-0.18498801034194884,
-0.18095041824617808,
-0.17656499201516807,
-0.17192454326093173,
-0.16712110661345,
-0.16224222660624485,
-0.15736790234646583,
-0.15256835074263655,
-0.14790264474269493,
-0.1434181871234718,
-0.13915090633588265,
-0.1351260156169438,
-0.13135916020647198,
-0.12785778514424317,
-0.1246225801795055,
-0.12164889081774016
],
[
-0.10746435455847389,
-0.10891889729809637,
-0.11051303719869479,
-0.11225370412694483,
-0.11414686274282501,
-0.11619718479538155,
-0.11840768126000326,
-0.12077929709492458,
-0.12331047396164627,
-0.12599668939559516,
-0.12882998463217527,
-0.1317984975442628,
-0.1348860218189241,
-0.13807161839604118,
-0.14132931000510263,
-0.14462789393981584,
-0.14793091144000037,
-0.15119681351179654,
-0.15437936190885373,
-0.15742829946368941,
-0.1602903151819236,
-0.16291031584480895,
-0.16523299700368485,
-0.16720468243751926,
-0.1687753733805467,
-0.16990091903401736,
-0.17054519097239965,
-0.17068211985914886,
-0.17029743779817808,
-0.16938996805643225,
-0.1679723193625454,
-0.16607087628883918,
-0.1637250294412388,
-0.1609856551319471,
-0.1579129264769102,
-0.1545736066243835,
-0.1510380294901268,
-0.1473770047483722,
-0.14365888626549986,
-0.13994701610536797,
-0.13629770452831863,
-0.1327588392423216,
-0.1293691459123459,
-0.12615805752787493,
-0.12314610092109565,
-0.12034567880493016,
-0.11776211536565259,
-0.11539483967954009,
-0.11323859915118814,
-0.11128461945689638
],
[
-0.10536698966157407,
-0.10652525263631393,
-0.10778735418915997,
-0.10915713567371357,
-0.1106374698305517,
-0.11223000377567827,
-0.11393487830924806,
-0.11575042768845442,
-0.11767286611830821,
-0.11969596966852539,
-0.12181076508292343,
-0.12400523992631551,
-0.12626409157599616,
-0.128568535509367,
-0.13089619589232482,
-0.1332211032851587,
-0.13551382493350705,
-0.13774175212745807,
-0.1398695659982093,
-0.14185989741831617,
-0.14367418802641468,
-0.1452737476618158,
-0.14662098883175306,
-0.14768080182707993,
-0.14842201583908943,
-0.1488188735397936,
-0.14885243119266878,
-0.1485117859164918,
-0.14779502873365402,
-0.14670982863764379,
-0.14527357041055033,
-0.14351299729123757,
-0.14146334715161898,
-0.1391670141299238,
-0.13667181173506882,
-0.13402895245398658,
-0.13129088715504844,
-0.12850916060472686,
-0.12573243494057032,
-0.12300481151776849,
-0.12036454650458939,
-0.11784321241105716,
-0.11546531285690015,
-0.11324831746697514,
-0.11120305253212659,
-0.10933436358110707,
-0.1076419586304577,
-0.10612134410600274,
-0.10476477655894875,
-0.1035621691751474
],
[
-0.10343119246400415,
-0.1043239511341037,
-0.1052903180810898,
-0.10633189864462228,
-0.10744941630174093,
-0.10864252456705878,
-0.10990960779177888,
-0.11124757532558846,
-0.1126516550629679,
-0.11411519411217247,
-0.1156294761418997,
-0.11718356678662464,
-0.11876420019927372,
-0.12035572126184907,
-0.12194009889322191,
-0.12349702608562019,
-0.1250041214904646,
-0.12643724528945371,
-0.12777093848369125,
-0.12897898943441805,
-0.1300351244319161,
-0.13091381036364205,
-0.1315911475315753,
-0.13204581992967956,
-0.13226005971279028,
-0.13222057330128623,
-0.131919369883203,
-0.13135443035027694,
-0.1305301571386106,
-0.12945755385747504,
-0.1281540981834153,
-0.1266432916675066,
-0.12495389435335283,
-0.12311887810136757,
-0.12117415733371978,
-0.11915717643045107,
-0.11710544640783122,
-0.1150551278096805,
-0.11303975119192958,
-0.11108915185972126,
-0.10922867364723862,
-0.10747867051996146,
-0.10585430806734888,
-0.10436564280224825,
-0.10301793814387578,
-0.10181216354171496,
-0.10074561777038349,
-0.09981261836304892,
-0.09900520511788913,
-0.0983138149191371
],
[
-0.10174420074697496,
-0.1024123937484093,
-0.10313019913584986,
-0.10389777507772091,
-0.10471453909489475,
-0.10557904000973839,
-0.10648882709693458,
-0.10744032046234098,
-0.10842868770670527,
-0.10944773299816696,
-0.11048980572353734,
-0.11154573683575797,
-0.11260481176520476,
-0.11365478919705019,
-0.11468197500070365,
-0.11567135998603792,
-0.11660682881241019,
-0.1174714451664517,
-0.11824781516854835,
-0.11891852684524501,
-0.11946665848537899,
-0.11987634296700386,
-0.12013336901941815,
-0.12022579432933911,
-0.12014453999961128,
-0.11988393180126666,
-0.11944215163160773,
-0.11882156324760138,
-0.11802888016241575,
-0.11707515077112168,
-0.11597554613210412,
-0.1147489487646306,
-0.11341735529356986,
-0.11200512039359065,
-0.11053808267670526,
-0.10904262336752929,
-0.10754471451895331,
-0.1060690143183147,
-0.10463806254046734,
-0.10327161993001349,
-0.10198618237286264,
-0.10079468572119157,
-0.09970640182641263,
-0.09872701238257389,
-0.09785883592750397,
-0.09710117563893764,
-0.09645075169576775,
-0.09590218173999857,
-0.09544847577101323,
-0.09508151679390714
],
[
-0.10034786435668996,
-0.1008355852662515,
-0.10135488829141703,
-0.10190511025866836,
-0.1024850076858159,
-0.10309267630039728,
-0.10372547234840501,
-0.10437993889121719,
-0.10505174089617414,
-0.10573561350658003,
-0.10642532838447644,
-0.10711368339829638,
-0.10779252111185336,
-0.10845278144830414,
-0.10908459347698246,
-0.10967741042984441,
-0.11022019073690723,
-0.11070162603793873,
-0.11111041477644279,
-0.11143557715414423,
-0.11166680402029339,
-0.11179482885707007,
-0.11181180863560941,
-0.11171169625453645,
-0.11149058487775007,
-0.11114700312060594,
-0.11068214003030638,
-0.11009998043188218,
-0.10940733460687055,
-0.1086137514090062,
-0.10773131056957169,
-0.10677429766432037,
-0.10575877337693315,
-0.1047020565426951,
-0.10362214718713822,
-0.10253712064385945,
-0.10146452626663291,
-0.10042082392443516,
-0.099420888380132,
-0.09847760612470363,
-0.09760158187220469,
-0.09680096351589018,
-0.09608138578414102,
-0.09544602495557528,
-0.09489575048596416,
-0.09442935472977149,
-0.09404383931185106,
-0.09373473607574517,
-0.09349644165407256,
-0.09332254718359545
],
[
-0.0992438748759493,
-0.09959308195200547,
-0.09996096192721812,
-0.10034646559600338,
-0.10074811648688567,
-0.10116396511557008,
-0.10159154692454672,
-0.10202784619394811,
-0.10246926852195568,
-0.10291162473802073,
-0.10335012929747725,
-0.10377941627634016,
-0.10419357600180959,
-0.10458621507824031,
-0.1049505420637793,
-0.10527948029021678,
-0.10556580828067244,
-0.10580232690728109,
-0.10598205086848317,
-0.10609842030611427,
-0.10614552651184053,
-0.1061183438093696,
-0.10601295799222213,
-0.10582678031805606,
-0.10555873519052686,
-0.10520940947096258,
-0.1047811519971498,
-0.10427811343406379,
-0.10370621905470509,
-0.10307307036931565,
-0.10238777550935743,
-0.10166071265504992,
-0.10090323522243441,
-0.10012733160516007,
-0.09934525560497748,
-0.09856914593940203,
-0.09781065413618198,
-0.09708059959436591,
-0.0963886686442599,
-0.09574317125693213,
-0.09515086494970745,
-0.09461685080673501,
-0.09414454181904955,
-0.09373569936450579,
-0.09339052994608299,
-0.09310783153706198,
-0.09288517717316153,
-0.09271912279441702,
-0.0926054266783195,
-0.09253926894738956
],
[
-0.09840244339163096,
-0.09864963105115698,
-0.09890664225150125,
-0.09917230753077128,
-0.09944516076700616,
-0.09972341709525062,
-0.10000495476734617,
-0.10028730242692735,
-0.10056763340677244,
-0.1008427687443623,
-0.1011091906354544,
-0.10136306798464631,
-0.10160029554631489,
-0.10181654786074523,
-0.10200734876440473,
-0.10216815668231113,
-0.10229446519558627,
-0.10238191753174875,
-0.10242643267643434,
-0.10242433979613241,
-0.10237251665130584,
-0.10226852674165121,
-0.10211074914510199,
-0.10189849447968996,
-0.10163210022014982,
-0.10131299881446368,
-0.10094375272173778,
-0.10052805165103165,
-0.1000706688985466,
-0.09957737568890451,
-0.09905481470954472,
-0.09851033642928708,
-0.09795180412788845,
-0.09738737563650945,
-0.09682527141226357,
-0.09627353958727702,
-0.09573982893826458,
-0.09523118027567873,
-0.09475384558264438,
-0.09431314244303263,
-0.09391334904318749,
-0.09355764251077783,
-0.0932480807816069,
-0.09298562576826624,
-0.09277020352151383,
-0.09260079545875699,
-0.09247555366144014,
-0.09239193273478191,
-0.09234683074745409,
-0.09233673225206934
],
[
-0.09777182708924725,
-0.09794641581039629,
-0.09812501324471881,
-0.0983064693675556,
-0.09848944001335533,
-0.09867237999739353,
-0.09885353963324686,
-0.09903096548210924,
-0.09920250620973314,
-0.09936582443317404,
-0.09951841540231157,
-0.0996576332700275,
-0.09978072555056844,
-0.09988487614061317,
-0.09996725697774372,
-0.10002508803681642,
-0.10005570492241317,
-0.10005663281839353,
-0.1000256650245149,
-0.09996094377393688,
-0.099861040520203,
-0.0997250324496704,
-0.09955257166011472,
-0.09934394329268992,
-0.09910010895209387,
-0.09882273202855177,
-0.09851418206054816,
-0.09817751604595837,
-0.09781643559676084,
-0.09743521999188595,
-0.0970386364461307,
-0.09663183019587387,
-0.09622019820987784,
-0.09580925136956883,
-0.09540447073979724,
-0.09501116399784276,
-0.09463432816088171,
-0.09427852443729093,
-0.09394777034574034,
-0.09364545325073637,
-0.09337426823349068,
-0.0931361818503402,
-0.0929324219330735,
-0.09276349225932287,
-0.09262920975693284,
-0.09252876097379759,
-0.09246077388865676,
-0.09242340077639405,
-0.09241440776558235,
-0.09243126690681075
],
[
-0.09728709758911472,
-0.0974110781199452,
-0.09753543443898177,
-0.09765909598920186,
-0.09778087296488769,
-0.09789945871329353,
-0.09801343473754734,
-0.09812127867984721,
-0.09822137566077596,
-0.09831203332834626,
-0.09839150092406287,
-0.09845799259790411,
-0.09850971509553427,
-0.09854489979651296,
-0.0985618389011177,
-0.09855892534778293,
-0.0985346957985867,
-0.09848787576597634,
-0.09841742568325298,
-0.09832258646115907,
-0.09820292284324206,
-0.0980583626954386,
-0.09788923026283988,
-0.09769627141954709,
-0.09748066904275998,
-0.09724404687049323,
-0.09698846055613139,
-0.09671637510516415,
-0.09643062845204275,
-0.09613438157984622,
-0.09583105626489649,
-0.09552426219843782,
-0.09521771585056979,
-0.09491515395125028,
-0.09462024482814263,
-0.09433650102966926,
-0.09406719665512109,
-0.09381529260852653,
-0.09358337260157235,
-0.09337359218047081,
-0.09318764238195582,
-0.09302672888278382,
-0.09289156674739599,
-0.0927823901510253,
-0.09269897580636721,
-0.09264067828771089,
-0.09260647505231881,
-0.09259501871729814,
-0.09260469406120952,
-0.09263367727213492
],
[
-0.0968775172128179,
-0.09696587044846147,
-0.09705251311058469,
-0.09713647310901524,
-0.09721670973845417,
-0.09729212142757276,
-0.09736155536373942,
-0.09742381906640007,
-0.09747769396290606,
-0.09752195099456495,
-0.09755536824555944,
-0.09757675054082648,
-0.09758495089901786,
-0.09757889365199304,
-0.09755759895272703,
-0.09752020829032915,
-0.0974660105171258,
-0.09739446777348548,
-0.0973052405782672,
-0.09719821124524741,
-0.0970735046987635,
-0.0969315057059173,
-0.0967728715286105,
-0.09659853903577609,
-0.0964097254114005,
-0.09620792175084156,
-0.09599487905573634,
-0.0957725864107195,
-0.0955432414423657,
-0.09530921350651392,
-0.09507300040470465,
-0.09483717977143771,
-0.09460435657796201,
-0.09437710844295355,
-0.09415793060641431,
-0.09394918249602871,
-0.09375303778704835,
-0.09357143972688675,
-0.09340606327085785,
-0.09325828526983368,
-0.09312916358380008,
-0.09301942559126714,
-0.09292946614916997,
-0.0928593546569963,
-0.09280885051585466,
-0.09277742596741947,
-0.09276429506322811,
-0.09276844735971304,
-0.09278868486059655,
-0.09282366073220882
],
[
-0.09647256693042405,
-0.0965340791562036,
-0.09659290825327774,
-0.0966481856209046,
-0.09669900444656118,
-0.09674443021132842,
-0.09678351257083759,
-0.09681529849572426,
-0.09683884653028782,
-0.09685324200478104,
-0.09685761301469428,
-0.0968511469584935,
-0.09683310740235285,
-0.0968028510154062,
-0.09675984429122159,
-0.09670367974047056,
-0.09663409120685726,
-0.09655096792499843,
-0.0964543669078538,
-0.09634452322618323,
-0.09622185772777059,
-0.09608698174460897,
-0.095940698356587,
-0.09578399982453578,
-0.09561806087667585,
-0.09544422763170468,
-0.09526400206801577,
-0.09507902209845742,
-0.09489103747779878,
-0.09470188194759824,
-0.094513442200587,
-0.09432762441298231,
-0.0941463192370334,
-0.09397136625694708,
-0.09380451898010361,
-0.09364741145559002,
-0.09350152758010155,
-0.0933681740672749,
-0.09324845792422032,
-0.0931432691054839,
-0.09305326880980203,
-0.09297888366073653,
-0.09292030578161137,
-0.0928774985511526,
-0.09285020762097063,
-0.09283797659980184,
-0.09284016667009398,
-0.09285597930504716,
-0.09288448120059786,
-0.09292463052619501
],
[
-0.09600699389701028,
-0.09604521866861679,
-0.09608062622041141,
-0.09611245825466283,
-0.0961399318982937,
-0.09616225115844729,
-0.09617861954946672,
-0.09618825367601247,
-0.0961903975250902,
-0.0961843371949598,
-0.09616941577159485,
-0.09614504805339769,
-0.09611073482161847,
-0.0960660763564253,
-0.0960107849057176,
-0.09594469582449036,
-0.09586777711599931,
-0.09578013712169645,
-0.09568203012495008,
-0.09557385965452114,
-0.09545617929869973,
-0.09532969087133536,
-0.09519523980825223,
-0.095053807718157,
-0.09490650206709655,
-0.09475454304012462,
-0.094599247697458,
-0.09444201162338164,
-0.09428428835171856,
-0.0941275669380541,
-0.09397334813151181,
-0.09382311967268175,
-0.09367833130415981,
-0.09354037012130215,
-0.09341053690924842,
-0.0932900241052389,
-0.09317989599145154,
-0.09308107166340068,
-0.09299431123446855,
-0.0929202056320951,
-0.09285917022058734,
-0.09281144235548663,
-0.09277708284154956,
-0.09275598113733988,
-0.09274786403046298,
-0.09275230740407397,
-0.09276875063176215,
-0.0927965130772074,
-0.09283481213858652,
-0.09288278226558896
],
[
-0.09542529326647028,
-0.09543952808669576,
-0.0954514762989025,
-0.09546050498609984,
-0.09546595598010812,
-0.09546715686219562,
-0.09546343326302278,
-0.0954541222203181,
-0.09543858630654287,
-0.09541622820146342,
-0.09538650535765977,
-0.0953489443915693,
-0.09530315482907292,
-0.0952488418426343,
-0.09518581763580783,
-0.0951140111593152,
-0.09503347587935793,
-0.09494439536177182,
-0.0948470864834646,
-0.09474200013389592,
-0.09462971932297617,
-0.09451095466675477,
-0.09438653727794058,
-0.09425740914409861,
-0.09412461113179546,
-0.09398926880944525,
-0.09385257633438474,
-0.0937157786997739,
-0.09358015268297634,
-0.09344698687756092,
-0.09331756122422188,
-0.09319312647990666,
-0.09307488407752015,
-0.09296396682924857,
-0.09286142091374247,
-0.09276818956062097,
-0.0926850988051797,
-0.0926128456327116,
-0.09255198876710133,
-0.09250294228461617,
-0.0924659721538948,
-0.09244119572021386,
-0.09242858406955157,
-0.09242796712909251,
-0.09243904128875174,
-0.09246137926573425,
-0.09249444188327388,
-0.09253759139703271,
-0.09259010597902864,
-0.09265119495953639
],
[
-0.09468592434927667,
-0.09467215434000473,
-0.09465716555818071,
-0.09464047325030364,
-0.09462155391555882,
-0.0945998546397879,
-0.09457480422011241,
-0.09454582587703672,
-0.09451235127800167,
-0.09447383553049599,
-0.09442977274742229,
-0.09437971174546578,
-0.09432327141107344,
-0.0942601552598438,
-0.09419016472428066,
-0.09411321073166529,
-0.09402932317707166,
-0.09393865795435058,
-0.09384150127768498,
-0.09373827110512767,
-0.09362951556018204,
-0.09351590833476303,
-0.0933982411436643,
-0.09327741338406492,
-0.09315441923105702,
-0.09303033246941719,
-0.09290628942103141,
-0.09278347037503032,
-0.09266307996272824,
-0.09254632694119719,
-0.09243440385747931,
-0.09232846706018458,
-0.0922296175070891,
-0.09213888278729468,
-0.09205720073585022,
-0.09198540496909974,
-0.09192421261227696,
-0.09187421442903812,
-0.09183586749778269,
-0.0918094905138023,
-0.09179526173143338,
-0.0917932194982132,
-0.09180326527505328,
-0.09182516898391477,
-0.0918585764784049,
-0.09190301889388361,
-0.09195792360262497,
-0.09202262647666326,
-0.0920963851463305,
-0.09217839293614014
],
[
-0.09376536901895385,
-0.0937171817445108,
-0.09366925011492092,
-0.09362126232922574,
-0.09357284236278599,
-0.09352355655773859,
-0.09347292289712547,
-0.09342042286011426,
-0.0933655156395102,
-0.09330765438787858,
-0.0932463040513411,
-0.0931809602567141,
-0.09311116864383856,
-0.09303654398550207,
-0.09295678841573965,
-0.09287170809541961,
-0.09278122768204644,
-0.09268540203709719,
-0.09258442469581088,
-0.09247863273668516,
-0.092368507815494,
-0.09225467326526116,
-0.09213788730287303,
-0.09201903251855542,
-0.0918991019503409,
-0.09177918215669484,
-0.0916604337923283,
-0.09154407026168573,
-0.09143133506962842,
-0.09132347850868888,
-0.09122173431746314,
-0.09112729691696081,
-0.0910412997838499,
-0.09096479545519359,
-0.09089873758276096,
-0.09084396537088293,
-0.09080119064465711,
-0.09077098770924014,
-0.09075378607953152,
-0.09074986608540886,
-0.090759357292538,
-0.09078223962341303,
-0.09081834701760425,
-0.09086737343347243,
-0.09092888096470883,
-0.09100230982268234,
-0.09108698991850589,
-0.09118215376601499,
-0.09128695041789822,
-0.09140046014184863
],
[
-0.09266188831724889,
-0.09257139100545769,
-0.09248285562267203,
-0.09239616068383977,
-0.0923110836457049,
-0.09222730386918637,
-0.09214440960305953,
-0.09206190904916564,
-0.09197924538944124,
-0.09189581546649689,
-0.09181099162266285,
-0.09172414602841147,
-0.09163467668079059,
-0.09154203413588205,
-0.0914457479644562,
-0.09134545189258211,
-0.0912409066116952,
-0.0911320193151173,
-0.09101885913678373,
-0.09090166782671832,
-0.09078086518805858,
-0.09065704901197977,
-0.0905309894684942,
-0.09040361813132922,
-0.09027601202278937,
-0.09014937324953387,
-0.09002500495389462,
-0.08990428442103165,
-0.0897886342554812,
-0.0896794925696722,
-0.08957828311260899,
-0.08948638621258259,
-0.08940511131928724,
-0.08933567181579274,
-0.08927916263845723,
-0.08923654110256679,
-0.08920861119247056,
-0.08919601144532718,
-0.08919920644361154,
-0.08921848183731668,
-0.08925394274398049,
-0.0893055153226,
-0.08937295128357817,
-0.08945583507712687,
-0.0895535934924366,
-0.08966550739489557,
-0.08979072532485027,
-0.0899282786761599,
-0.09007709816478074,
-0.09023603128691235
],
[
-0.09139849338204578,
-0.09125727009450285,
-0.09111969870465644,
-0.09098584597985335,
-0.09085563030730895,
-0.09072882047879141,
-0.09060504031389263,
-0.09048377940652994,
-0.09036441001292425,
-0.09024620980936973,
-0.09012838995052833,
-0.09001012757147425,
-0.08989060161750359,
-0.08976903067211478,
-0.08964471130046181,
-0.0895170553442767,
-0.08938562460149721,
-0.08925016140131634,
-0.08911061373967888,
-0.08896715386319065,
-0.08882018946868009,
-0.08867036700575026,
-0.0885185669128826,
-0.0883658909651967,
-0.08821364224498399,
-0.08806329854677664,
-0.08791648028114166,
-0.08777491413272492,
-0.08764039384923011,
-0.08751473958446476,
-0.0873997571907682,
-0.08729719875964265,
-0.08720872555466389,
-0.08713587428221753,
-0.0870800274205579,
-0.08704238809452666,
-0.08702395975974042,
-0.08702553076140851,
-0.0870476636704238,
-0.08709068917923612,
-0.08715470426315722,
-0.08723957427508833,
-0.08734493863513643,
-0.08747021979064065,
-0.08761463514539558,
-0.08777721167883251,
-0.08795680298834702,
-0.08815210848575492,
-0.0883616944604925,
-0.08858401668951607
],
[
-0.0900242238115187,
-0.08982435346068754,
-0.08962947452561737,
-0.08943980742714938,
-0.08925536792988634,
-0.08907596172764501,
-0.08890118717124568,
-0.08873044670497504,
-0.08856296720280035,
-0.08839782897634368,
-0.08823400278635748,
-0.08807039375408462,
-0.087905890666065,
-0.08773941882263134,
-0.08756999432054283,
-0.08739677750304423,
-0.08721912326876935,
-0.08703662600962006,
-0.08684915714469835,
-0.08665689352288644,
-0.08646033536456804,
-0.08626031288163047,
-0.08605798122852279,
-0.08585480396721915,
-0.08565252574561616,
-0.08545313536257937,
-0.08525882079590302,
-0.08507191807798256,
-0.08489485609984171,
-0.08473009949662555,
-0.08458009171508571,
-0.08444720019409419,
-0.08433366532069908,
-0.08424155448303791,
-0.08417272215995861,
-0.08412877660053408,
-0.08411105328852705,
-0.08412059508570632,
-0.08415813872351452,
-0.08422410717391973,
-0.08431860737494598,
-0.08444143280162109,
-0.08459207043838013,
-0.08476971179949513,
-0.08497326773470215,
-0.08520138682600459,
-0.08545247721298979,
-0.08572473167012049,
-0.08601615570085322,
-0.08632459831798939
],
[
-0.088612460277393,
-0.0883475736048491,
-0.08808825990273542,
-0.08783481435123772,
-0.08758726469310107,
-0.0873453623132017,
-0.08710858420556505,
-0.08687614672249347,
-0.08664703149903824,
-0.0864200233752733,
-0.08619375952859618,
-0.08596678841406094,
-0.0857376365310121,
-0.08550488052745586,
-0.0852672217549133,
-0.0850235601251727,
-0.08477306401737789,
-0.08451523305059741,
-0.08424995077452282,
-0.08397752473025033,
-0.08369871187577618,
-0.08341472802995606,
-0.0831272407299633,
-0.08283834568037937,
-0.08255052775208804,
-0.08226660821872817,
-0.08198968055034977,
-0.08172303757443825,
-0.08147009312759498,
-0.08123430143284241,
-0.08101907733966945,
-0.08082772026720811,
-0.08066334422551483,
-0.08052881570368331,
-0.08042670056731624,
-0.08035922046852462,
-0.08032821870323298,
-0.08033513500590062,
-0.08038098848498004,
-0.08046636778459884,
-0.0805914275962831,
-0.0807558908053437,
-0.0809590557914237,
-0.0811998086567379,
-0.08147664037604921,
-0.08178766900675169,
-0.08213066713852454,
-0.08250309469122319,
-0.08290213699637838,
-0.08332474784638638
],
[
-0.08725500441690609,
-0.08692129619333774,
-0.08659254963027602,
-0.0862690049700183,
-0.08595056907660512,
-0.08563680450579997,
-0.08532693253150611,
-0.0850198513808901,
-0.08471417029693501,
-0.08440825931462129,
-0.08410031384176445,
-0.08378843232198571,
-0.08347070447448085,
-0.08314530690345848,
-0.08281060229688067,
-0.0824652380307494,
-0.08210823979385995,
-0.08173909586997533,
-0.08135782796906746,
-0.08096504498361123,
-0.08056197674446561,
-0.0801504857357839,
-0.07973305575930092,
-0.07931275766249934,
-0.07889319339809539,
-0.07847842078984693,
-0.07807286236189359,
-0.07768120236614273,
-0.0773082766438701,
-0.07695896013160103,
-0.07663805664364834,
-0.07635019504641585,
-0.07609973513386983,
-0.07589068550709013,
-0.07572663466855983,
-0.0756106954913277,
-0.07554546233586229,
-0.07553297946013199,
-0.07557471905805985,
-0.07567156727623953,
-0.07582381685787398,
-0.07603116556453912,
-0.07629272012257554,
-0.07660700601590212,
-0.07697198389601378,
-0.0773850736246843,
-0.07784318696407633,
-0.0783427696815393,
-0.07887985337856318,
-0.07945011675012253
],
[
-0.08605140377465267,
-0.08564846111476734,
-0.08524829563484568,
-0.08485091579587112,
-0.08445593148498964,
-0.08406254325247162,
-0.08366954869871127,
-0.08327536762923299,
-0.08287808684180864,
-0.08247552452564508,
-0.08206531327820696,
-0.08164499973071926,
-0.08121215777576907,
-0.0807645114697012,
-0.08030006289757835,
-0.07981721969347799,
-0.07931491655021974,
-0.07879272496689424,
-0.07825094569521662,
-0.07769067886966127,
-0.07711386764018541,
-0.0765233122519493,
-0.07592265289543856,
-0.07531632122080453,
-0.07470946208404253,
-0.07410782875625643,
-0.07351765634660004,
-0.07294551942079841,
-0.0723981806037764,
-0.07188243722842158,
-0.07140497277472077,
-0.0709722189448222,
-0.07059023282828136,
-0.07026459189029405,
-0.07000030768220217,
-0.0698017574702281,
-0.06967263163245482,
-0.06961589385853958,
-0.06963375098970898,
-0.06972762974605892,
-0.06989815849464331,
-0.07014515342931335,
-0.07046760983306397,
-0.07086370024401006,
-0.07133078215024494,
-0.0718654181643072,
-0.0724634114234946,
-0.07311985825977396,
-0.0738292190865561,
-0.07458540711374964
],
[
-0.08509458032744546,
-0.08462587609628103,
-0.08415597289875304,
-0.08368444135089625,
-0.08321039296759367,
-0.08273247202320297,
-0.08224886760725111,
-0.0817573478466879,
-0.08125531742540179,
-0.08073989853116484,
-0.08020803423900277,
-0.07965661214867867,
-0.07908260489163726,
-0.0784832229737509,
-0.07785607439079728,
-0.07719932460907661,
-0.07651184990622834,
-0.0757933767749932,
-0.07504460015741399,
-0.07426727374257308,
-0.07346426645853099,
-0.07263958062980791,
-0.07179832903674421,
-0.07094667024221535,
-0.0700917039327566,
-0.06924133048692432,
-0.06840408131340373,
-0.06758892844028558,
-0.06680508312784497,
-0.06606179370380946,
-0.06536815225513007,
-0.06473291825664493,
-0.06416436483083526,
-0.06367015041730983,
-0.06325721559754471,
-0.06293170212359372,
-0.06269888925308278,
-0.06256314159225226,
-0.06252786291314275,
-0.0625954517595419,
-0.06276725682463283,
-0.06304353267389556,
-0.06342339894238841,
-0.06390480821910752,
-0.06448452909771527,
-0.06515815112060364,
-0.06592011753654992,
-0.0667637900566507,
-0.06768154738438364,
-0.06866491655036425
],
[
-0.0844557330733875,
-0.08392868684665303,
-0.08339472125555264,
-0.08285276644464287,
-0.0823012410762862,
-0.08173804894073325,
-0.0811605983391889,
-0.08056584653508236,
-0.07995037069417696,
-0.07931046567623856,
-0.07864226783234748,
-0.07794190264635104,
-0.07720565268954316,
-0.07643014099490877,
-0.07561252366744442,
-0.0747506844014594,
-0.07384342265098731,
-0.07289062657809589,
-0.07189342167450918,
-0.07085428620627968,
-0.06977712545680534,
-0.06866729820975384,
-0.06753159105117917,
-0.06637813884540683,
-0.06521629302734497,
-0.06405644291997548,
-0.06290979878323807,
-0.06178814829531429,
-0.06070360019429666,
-0.0596683294558637,
-0.0586943373921725,
-0.05779323741237352,
-0.056976073163309326,
-0.05625317093089022,
-0.055634023292073065,
-0.05512719689230072,
-0.05474025461012133,
-0.05447968173264173,
-0.05435080722231744,
-0.05435771444898152,
-0.054503140307207376,
-0.054788366643335085,
-0.055213112520880236,
-0.05577543928663076,
-0.05647168210312464,
-0.057296421318959456,
-0.05824250480762844,
-0.059301128560940386,
-0.0604619779364787,
-0.06171342670886587
],
[
-0.0841726504040684,
-0.08359825788245254,
-0.08300985485788387,
-0.08240557372412952,
-0.08178299409109757,
-0.08113914534772923,
-0.08047053379448202,
-0.07977319691460547,
-0.07904278650822705,
-0.07827468137070692,
-0.07746412897805308,
-0.07660641427794912,
-0.07569705221430409,
-0.07473199908385683,
-0.07370787629232195,
-0.07262219861376373,
-0.07147359774500098,
-0.0702620308918705,
-0.06898896345471392,
-0.06765751474783432,
-0.06627255625722311,
-0.0648407533716675,
-0.06337054393324454,
-0.06187205037583968,
-0.06035692654567046,
-0.058838145228773675,
-0.05732973744000652,
-0.05584649896423688,
-0.054403682693887845,
-0.0530166962430107,
-0.051700822647217315,
-0.05047097761904862,
-0.04934151029499778,
-0.04832604668064616,
-0.047437367433109445,
-0.04668730565995921,
-0.04608664727184225,
-0.04564501680412392,
-0.045370735557054065,
-0.04527064575888362,
-0.045349903061222774,
-0.045611748557391474,
-0.04605727916985264,
-0.04668524040833183,
-0.04749186731345678,
-0.04847079757910078,
-0.04961307567023204,
-0.050907259002987815,
-0.05233962806072684,
-0.05389449296269255
],
[
-0.0842449795505534,
-0.08363709713883535,
-0.08300742152085216,
-0.08235321537692086,
-0.08167116103071656,
-0.08095736896067618,
-0.08020741165234563,
-0.07941638555537864,
-0.07857900315039545,
-0.0776897161724932,
-0.07674286988755846,
-0.07573288698854588,
-0.07465447819207774,
-0.07350287499989064,
-0.07227407838532798,
-0.07096511543023884,
-0.069574294255829,
-0.06810144608066626,
-0.06654814206192841,
-0.06491787194065726,
-0.0632161716667855,
-0.0614506883900226,
-0.05963117370393528,
-0.05776939995885938,
-0.05587899976233757,
-0.05397523513259461,
-0.0520747094904635,
-0.05019504176694034,
-0.04835452615209207,
-0.04657180222588736,
-0.044865557555190616,
-0.04325427816201338,
-0.04175605231547863,
-0.040388421510787975,
-0.039168261512388614,
-0.03811166830012519,
-0.03723382055137414,
-0.03654879288532442,
-0.036069302309484796,
-0.03580638286765081,
-0.03576899829593033,
-0.035963617043855256,
-0.036393785851401295,
-0.037059745190940685,
-0.03795813106758611,
-0.03908180266899974,
-0.04041982490078666,
-0.041957620510119975,
-0.04367729040740648,
-0.04555808522073185
],
[
-0.08463762658616095,
-0.08401202379621237,
-0.08335702590323599,
-0.08266906396321777,
-0.08194397739732392,
-0.08117702739942839,
-0.08036293532114328,
-0.07949594887476838,
-0.07856993835825307,
-0.07757852427837145,
-0.07651523672410399,
-0.07537370561995468,
-0.07414787957120808,
-0.07283226940979518,
-0.07142221078293337,
-0.06991413824037276,
-0.06830586134548344,
-0.0665968314818488,
-0.06478838643073442,
-0.0628839587035831,
-0.06088923334003274,
-0.05881224178004457,
-0.05666338083185979,
-0.05445534992988538,
-0.052203005831961746,
-0.049923141311311925,
-0.047634202456843466,
-0.045355966621168864,
-0.0431092082076191,
-0.04091538069057776,
-0.038796339289874304,
-0.03677411930578023,
-0.034870771322237204,
-0.03310823868309809,
-0.031508248117681104,
-0.030092174546792694,
-0.028880838613687565,
-0.027894201615544234,
-0.027150936794830494,
-0.026667876300340232,
-0.026459356263853373,
-0.026536504495005553,
-0.026906532493939928,
-0.02757210276213029,
-0.028530841954752084,
-0.029775060058311154,
-0.03129171695672289,
-0.03306265334311975,
-0.03506507668130332,
-0.03727226868539085
],
[
-0.08529051837663418,
-0.08466378598243621,
-0.08400112470462451,
-0.08329828195581843,
-0.08255042062675039,
-0.08175213576192969,
-0.0808974947719936,
-0.07998010395011851,
-0.07899320355238815,
-0.07792979301945627,
-0.07678278704581754,
-0.07554520213105972,
-0.07421037196495625,
-0.07277218850208794,
-0.07122536388171494,
-0.06956570647720464,
-0.06779040238411524,
-0.06589829169527972,
-0.06389012714918516,
-0.061768801435889586,
-0.05953952894044012,
-0.057209968389398735,
-0.054790275133227706,
-0.05229307594024474,
-0.04973336525523536,
-0.04712832954896368,
-0.04449711477859131,
-0.04186055963836266,
-0.03924092230677939,
-0.03666162882306179,
-0.034147065597363135,
-0.03172242658072982,
-0.029413608618908405,
-0.02724712946673996,
-0.025250025957345268,
-0.023449679189399275,
-0.021873512692000663,
-0.020548519944930788,
-0.019500598767688337,
-0.018753699209319352,
-0.018328824267937083,
-0.01824295368108536,
-0.018507984702697766,
-0.019129795625650092,
-0.02010753500770973,
-0.02143322178478041,
-0.023091711119201108,
-0.025061042713675985,
-0.02731314859616496,
-0.029814862261349384
],
[
-0.08613107951058221,
-0.08551946041788377,
-0.08486716164870914,
-0.08416947867000565,
-0.08342114856956054,
-0.0826163682909977,
-0.08174883409387002,
-0.08081180477797209,
-0.07979819081620596,
-0.07870067099202596,
-0.07751183741875609,
-0.07622436891238288,
-0.07483123158296565,
-0.07332590419569682,
-0.0717026243375469,
-0.06995664973904012,
-0.06808452730797274,
-0.06608436064715878,
-0.0639560652289117,
-0.06170159923412147,
-0.0593251576514261,
-0.05683331793477747,
-0.05423512768729888,
-0.05154212872117275,
-0.04876831744309784,
-0.04593004844585685,
-0.04304589554253785,
-0.04013649080528792,
-0.03722436560752418,
-0.03433381633460231,
-0.0314908099929313,
-0.028722931269280383,
-0.02605935417105376,
-0.0235308013915983,
-0.021169437345155806,
-0.019008630996319942,
-0.017082525905676993,
-0.015425369275017975,
-0.014070578806174794,
-0.013049563024664201,
-0.012390352301251628,
-0.012116137488000833,
-0.012243843618060801,
-0.012782880954673392,
-0.013734210479660947,
-0.015089834886067632,
-0.016832782663391166,
-0.01893759905037473,
-0.02137130275423721,
-0.02409472057316797
],
[
-0.08708577169765824,
-0.08650400292139923,
-0.08587899439613811,
-0.08520586134743671,
-0.08447920407659273,
-0.08369312628179978,
-0.08284127172436742,
-0.08191688142764475,
-0.08091287328972763,
-0.07982194555590813,
-0.07863670501752901,
-0.0773498200659829,
-0.07595419782336613,
-0.07444318349206827,
-0.07281077882577838,
-0.07105187525769885,
-0.06916249579395523,
-0.06714003839950669,
-0.06498351242946196,
-0.06269375890338905,
-0.06027364534141519,
-0.05772822675293471,
-0.05506486642899755,
-0.05229331355520184,
-0.04942573922239413,
-0.04647673771614674,
-0.04346330514192259,
-0.04040481121158035,
-0.03732298084722602,
-0.0342418986986992,
-0.031188040820423646,
-0.028190323757837865,
-0.025280143688610035,
-0.02249135999282109,
-0.019860162653350166,
-0.01742475546483252,
-0.015224790796650844,
-0.013300508781593834,
-0.011691564320924275,
-0.010435566713866029,
-0.00956640394471675,
-0.009112469372609566,
-0.009094944161186225,
-0.009526305972907878,
-0.010409227355674788,
-0.011735994403448191,
-0.013488521754858651,
-0.015638972974024057,
-0.01815092795196177,
-0.020980983047482027
],
[
-0.08808844651978709,
-0.08754874588826961,
-0.08696549280258153,
-0.08633388690760896,
-0.08564866961086512,
-0.08490414139403196,
-0.08409419435993828,
-0.08321236179077354,
-0.0822518862556415,
-0.08120580746681155,
-0.08006707063326174,
-0.07882865548878099,
-0.07748372547641513,
-0.07602579575647425,
-0.07444891779018287,
-0.07274787727321369,
-0.07091840121612247,
-0.06895736908621766,
-0.0668630222647332,
-0.06463516579042716,
-0.06227535662682793,
-0.059787073662640855,
-0.057175866431390276,
-0.05444948209415573,
-0.05161797335361662,
-0.04869379319097478,
-0.045691884894820844,
-0.042629776807232234,
-0.0395276894876051,
-0.03640865769697271,
-0.033298660335306596,
-0.030226738634718253,
-0.027225067958484284,
-0.024328933940315878,
-0.02157655265119185,
-0.01900867051198929,
-0.016667885917150682,
-0.014597653053103454,
-0.012840959474706648,
-0.011438710602206081,
-0.010427901732131317,
-0.009839704228029766,
-0.009697628426757421,
-0.010015942649761356,
-0.010798519091116954,
-0.012038241495677282,
-0.013717050728646596,
-0.015806632496688233,
-0.01826967979685673,
-0.021061604009094403
],
[
-0.08908496708787159,
-0.08859631446027949,
-0.08806579587577767,
-0.08748891583868834,
-0.08686078508450507,
-0.0861761362200047,
-0.08542935157986792,
-0.084614504674724,
-0.08372541642694817,
-0.08275572713926097,
-0.08169898481196114,
-0.08054875001543135,
-0.07929871703866623,
-0.0779428504831477,
-0.07647553587657238,
-0.07489174227889275,
-0.07318719429657183,
-0.0713585504797685,
-0.06940358483589418,
-0.06732136824284668,
-0.06511244696916679,
-0.06277901635724067,
-0.06032508898630448,
-0.057756658189954235,
-0.055081859407748734,
-0.05231113309613983,
-0.04945739325973636,
-0.0465362044533168,
-0.043565966741614615,
-0.04056810217977003,
-0.037567227879913956,
-0.034591290222348914,
-0.03167162350353975,
-0.028842886213550967,
-0.026142821641413183,
-0.023611789250888138,
-0.02129202162372945,
-0.019226580291733575,
-0.01745801262235036,
-0.01602674928052289,
-0.014969323564905379,
-0.014316533814365429,
-0.014091700361534232,
-0.014309181504195856,
-0.014973303138866467,
-0.01607782268894442,
-0.017605993728386116,
-0.0195312321430543,
-0.021818319510712558,
-0.02442502605062602
]
],
"zauto": true,
"zmax": 0.3130054866199348,
"zmin": -0.3130054866199348
},
{
"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.2892625877398734,
0.28926214821480034,
0.28926164484515526,
0.2892610711659096,
0.2892604206656274,
0.28925968694028326,
0.2892588638792222,
0.28925794588356857,
0.2892569281158416,
0.2892558067776222,
0.2892545794098732,
0.2892532452080057,
0.2892518053411231,
0.28925026326221076,
0.28924862499358117,
0.2892468993698673,
0.28924509821954786,
0.28924323646565436,
0.2892413321272024,
0.2892394062052025,
0.28923748244094427,
0.289235586939605,
0.28923374765895987,
0.2892319937707473,
0.289230354910621,
0.2892288603409948,
0.2892275380587893,
0.28922641388639514,
0.28922551058842794,
0.289224847058499,
0.2892244376189265,
0.2892242914719465,
0.2892244123337293,
0.2892247982728174,
0.28922544176317155,
0.2892263299497212,
0.28922744511213655,
0.2892287653014374,
0.2892302651148778,
0.28923191656797514,
0.28923369001897115,
0.2892355551005728,
0.28923748161633595,
0.28923944036414373,
0.2892414038562834,
0.28924334691395437,
0.28924524712289,
0.28924708514546865,
0.2892488448926108,
0.28925051356546794
],
[
0.28926095947674185,
0.2892601991677791,
0.2892593206227473,
0.28925831035007626,
0.2892571544386152,
0.2892558388313324,
0.28925434967208663,
0.2892526737295927,
0.28925079889969857,
0.2892487147831223,
0.28924641333084644,
0.2892438895435272,
0.28924114220473834,
0.28923817462094825,
0.28923499533428493,
0.28923161876794223,
0.2892280657592187,
0.2892243639323843,
0.2892205478635883,
0.2892166589934895,
0.2892127452506746,
0.28920886036041055,
0.28920506282865677,
0.28920141460993437,
0.2891979794885403,
0.28919482122424006,
0.28919200153418834,
0.28918957800047934,
0.2891876020055241,
0.2891861168037701,
0.2891851558369889,
0.289184741390991,
0.2891848836744997,
0.28918558037713543,
0.2891868167348509,
0.28918856610006927,
0.28919079098285233,
0.28919344450128126,
0.2891964721561891,
0.28919981382921367,
0.2892034058948654,
0.28920718333717693,
0.28921108176896765,
0.28921503926561115,
0.2892189979437653,
0.28922290523686683,
0.2892267148413518,
0.2892303873287446,
0.2892338904374983,
0.2892371990737284
],
[
0.2892584095634063,
0.28925711990242353,
0.2892556160839443,
0.2892538709256064,
0.28925185582121754,
0.2892495411964938,
0.2892468971213063,
0.28924389409396545,
0.28924050400785684,
0.2892367013031458,
0.2892324642961248,
0.28922777666607985,
0.289222629064566,
0.28921702079524725,
0.2892109614949175,
0.28920447272923366,
0.28919758940171586,
0.28919036086358224,
0.28918285160700963,
0.28917514142737616,
0.2891673249525427,
0.28915951046024096,
0.28915181793823563,
0.289144376385082,
0.2891373203997305,
0.2891307861624576,
0.2891249069631209,
0.2891198084804218,
0.289115604052485,
0.28911239019995294,
0.28911024266446134,
0.2891092132060799,
0.28910932736349537,
0.28911058332302003,
0.289112951971655,
0.2891163781316713,
0.28912078289659854,
0.289126066918196,
0.28913211443714004,
0.28913879781140106,
0.2891459822781664,
0.2891535306879894,
0.28916130797178746,
0.28916918513881557,
0.2891770426520726,
0.2891847730815186,
0.2891922829898638,
0.28919949405607587,
0.2892063434846855,
0.28921278378224924
],
[
0.28925451999372087,
0.28925238093088934,
0.2892498637982428,
0.2892469158068278,
0.2892434803783752,
0.28923949783773056,
0.28923490642107014,
0.2892296436445155,
0.2892236480700515,
0.28921686149265124,
0.2892092315534426,
0.28920071475817993,
0.28919127984826876,
0.289180911433885,
0.28916961375694833,
0.2891574144084311,
0.2891443677833163,
0.28913055802194365,
0.28911610116364994,
0.2891011462328237,
0.289085874993654,
0.28907050015163244,
0.28905526184896296,
0.2890404223963809,
0.28902625930114584,
0.28901305678239086,
0.28900109609968133,
0.2889906451454113,
0.28898194785250725,
0.2889752140326499,
0.2889706102764838,
0.28896825251018116,
0.28896820071216417,
0.28897045615591804,
0.28897496137163975,
0.2889816028274634,
0.2889902161391023,
0.28900059344386525,
0.28901249243752614,
0.28902564648233464,
0.28903977515755985,
0.28905459464013583,
0.28906982736629283,
0.2890852105250981,
0.28910050305850127,
0.2891154909758455,
0.2891299909208755,
0.289143852045304,
0.28915695633738614,
0.28916921762246295
],
[
0.289248768612804,
0.28924531156434036,
0.2892412066507225,
0.28923635532860914,
0.28923065020768113,
0.28922397596372085,
0.28921621084975113,
0.28920722891577233,
0.2891969030395416,
0.28918510885198245,
0.2891717296088182,
0.2891566620129955,
0.28913982292934737,
0.2891211568540731,
0.28910064390916757,
0.2890783080304334,
0.2890542249142848,
0.28902852919300354,
0.2890014202324988,
0.2889731659045013,
0.2889441036900844,
0.2889146385352602,
0.2888852370099717,
0.2888564175206684,
0.28882873658723207,
0.2888027715014841,
0.288779100011892,
0.28875827799500003,
0.28874081634200194,
0.288727158472732,
0.2887176599590845,
0.28871257167656367,
0.28871202770265303,
0.2887160388575107,
0.2887244923661516,
0.28873715765466434,
0.28875369782611615,
0.288773685944535,
0.2887966249304885,
0.288821969669123,
0.2888491498644598,
0.2888775922385663,
0.2889067408521041,
0.28893607458391385,
0.28896512111615824,
0.2889934670921476,
0.28902076441452856,
0.28904673290762267,
0.2890711597639599,
0.2890938963251019
],
[
0.28924057351175697,
0.2892351519327952,
0.28922865771916356,
0.28922091470806993,
0.2892117279535437,
0.28920088463883675,
0.2891881560451134,
0.2891733008215497,
0.28915606980203895,
0.28913621259407296,
0.28911348611999166,
0.28908766521389834,
0.28905855526452046,
0.28902600674281576,
0.2889899312644061,
0.28895031861711307,
0.28890725394521327,
0.2888609340436224,
0.2888116815029657,
0.28875995529193005,
0.28870635630102004,
0.28865162643539827,
0.2885966400609491,
0.288542386991433,
0.2884899467511994,
0.28844045452961686,
0.2883950600072476,
0.2883548810041283,
0.28832095458598855,
0.28829418876952395,
0.288275318208483,
0.28826486716011107,
0.28826312260739567,
0.2882701196739636,
0.288285640488563,
0.288309226544623,
0.2883402034874996,
0.2883777162776568,
0.28842077193167015,
0.2884682866073857,
0.28851913370201937,
0.2885721898535707,
0.2886263762191425,
0.28868069306536,
0.2887342464524831,
0.28878626653564127,
0.28883611767017525,
0.28888330104211973,
0.28892745092276484,
0.28896832586401633
],
[
0.2892294001050665,
0.28922118714489536,
0.28921126699821725,
0.2891993394472767,
0.28918506752741413,
0.289168077789272,
0.28914796228561523,
0.28912428277503377,
0.2890965776648468,
0.2890643722138214,
0.28902719246848285,
0.2889845833006247,
0.2889361307345976,
0.2888814884903796,
0.288820408317304,
0.2887527732576468,
0.28867863247552894,
0.2885982357467855,
0.2885120651789416,
0.2884208612835002,
0.2883256402350111,
0.2882276991081666,
0.28812860616466296,
0.28803017392344415,
0.28793441381025914,
0.2878434726099919,
0.2877595526383191,
0.28768481934350765,
0.2876213017282043,
0.28757079230341115,
0.28753475402432016,
0.2875142416391457,
0.2875098440329892,
0.28752165251647943,
0.2875492577657855,
0.28759177554125287,
0.28764789872845825,
0.28771597098959467,
0.28779407565841514,
0.28788013262964174,
0.287971995930531,
0.28806754534417467,
0.28816476671213764,
0.28826181715398497,
0.2883570731670094,
0.2884491612008087,
0.28853697167983394,
0.2886196584778609,
0.28869662649923883,
0.28876751031239906
],
[
0.28921494144382853,
0.2892029807455018,
0.2891884217276786,
0.28917077912018596,
0.2891495011568782,
0.2891239678405518,
0.2890934917835399,
0.28905732252106897,
0.28901465529723247,
0.2889646453827685,
0.2889064289739947,
0.2888391516134901,
0.2887620048336227,
0.28867427132351725,
0.288575378334929,
0.2884649582627212,
0.2883429143729539,
0.2882094885481298,
0.28806532675499635,
0.28791153683784676,
0.28774973236238,
0.28758205577478346,
0.28741117429911955,
0.28724024295001116,
0.28707283089684804,
0.28691281017796866,
0.2867642092759688,
0.2866310380072557,
0.28651709407423237,
0.28642576490012045,
0.2863598404287802,
0.28632135294759836,
0.2863114584275596,
0.28633037042598297,
0.28637735265010233,
0.28645077049883133,
0.28654819610979715,
0.28666655646173606,
0.28680231057995964,
0.28695164024634084,
0.2871106388770902,
0.2872754851491156,
0.2874425910574448,
0.287608717797814,
0.2877710566290356,
0.28792727522128475,
0.28807553263508145,
0.28821446786236204,
0.2883431678005088,
0.28846112073215485
],
[
0.289197349814745,
0.2891806826107673,
0.2891602532962561,
0.2891353218702857,
0.2891050371193084,
0.28906843068305865,
0.2890244145998851,
0.2889717838119303,
0.28890922535216296,
0.2888353361299783,
0.28874865133704586,
0.2886476854566952,
0.2885309876158849,
0.2883972125016676,
0.288245207210265,
0.2880741131575748,
0.28788348053707113,
0.2876733907965106,
0.2874445803208587,
0.28719855614598605,
0.28693769237456374,
0.2866652944029532,
0.28638561753943165,
0.2861038275478285,
0.28582589345017656,
0.2855584077354597,
0.28530833580829335,
0.2850827045376082,
0.28488824818704234,
0.28473103755481044,
0.2846161234202236,
0.28454722714404884,
0.28452650873434454,
0.2845544358355711,
0.28462976673101564,
0.28474964810233144,
0.28490981592491255,
0.2851048774485692,
0.28532864524192253,
0.2855744915542839,
0.28583569272554393,
0.28610573828539376,
0.2863785865002215,
0.286648856080406,
0.28691195132741454,
0.2871641242869944,
0.28740248199617546,
0.28762494956197426,
0.28783020077180704,
0.288017567566139
],
[
0.28917744788683386,
0.289155318857087,
0.28912803269137305,
0.28909453033378363,
0.28905358133099546,
0.2890037708765252,
0.2889434910664748,
0.28887093857380663,
0.2887841214056673,
0.288680877833853,
0.28855891092041697,
0.28841584221572575,
0.2882492880807802,
0.2880569615573931,
0.28783680164805997,
0.2875871301483639,
0.2873068337067008,
0.28699556554302974,
0.2866539573221245,
0.2862838272824418,
0.28588836629707975,
0.28547227972894074,
0.2850418605727183,
0.2846049694027244,
0.28417089998362904,
0.2837501167053962,
0.2833538613936455,
0.2829936418474122,
0.28268063104694763,
0.28242502184993407,
0.28223539411651744,
0.2821181566308355,
0.28207712286467435,
0.28211326710239004,
0.28222468722541205,
0.28240677583903784,
0.282652576773921,
0.2829532836542191,
0.2832988244520969,
0.2836784722021541,
0.2840814268326786,
0.2844973243202739,
0.2849166441896705,
0.2853310018149037,
0.2857333256580025,
0.28611793003071573,
0.28648050063550856,
0.2868180132351898,
0.28712860599071677,
0.2874114241672403
],
[
0.28915680456482984,
0.289128909162201,
0.28909434760773806,
0.28905170388178,
0.28899931942608065,
0.2889352705831012,
0.28885735059338946,
0.28876305912420425,
0.28864960303294157,
0.2885139128054923,
0.2883526797753963,
0.28816241971381346,
0.28793956853457964,
0.28768061549703294,
0.28738227819509454,
0.28704172156351443,
0.2866568198975252,
0.2862264563221762,
0.28575084824730684,
0.2852318803058185,
0.2846734186076352,
0.2840815727471326,
0.2834648661938306,
0.28283427314998466,
0.2822030825108272,
0.2815865588418456,
0.28100138718263323,
0.28046491254693534,
0.27999421392477947,
0.2796050821445969,
0.2793109953588085,
0.2791221990836183,
0.27904499492297163,
0.27908132167907757,
0.27922867695058606,
0.2794803829160487,
0.279826155540517,
0.28025290062585073,
0.2807456391966046,
0.2812884609671806,
0.2818654162869427,
0.28246127925309633,
0.2830621416467971,
0.2836558234956798,
0.28423210750721384,
0.28478281944931144,
0.28530178463218214,
0.285784693014031,
0.2862289037175034,
0.2866332155557861
],
[
0.2891375661362529,
0.2891042580942227,
0.28906284734616644,
0.2890115707491037,
0.2889483509326962,
0.28887076313226107,
0.2887760065067965,
0.2886608835809892,
0.2885217924532489,
0.2883547374728787,
0.2881553651235724,
0.28791903272781866,
0.2876409181244461,
0.2873161784279396,
0.28694016505489983,
0.28650870005823686,
0.28601841508941395,
0.28546714870355955,
0.2848543900537964,
0.28418174736564505,
0.28345340841975036,
0.2826765486431443,
0.28186163204143944,
0.28102254352238987,
0.2801764911074207,
0.27934362608567986,
0.2785463505486674,
0.27780831532505895,
0.27715315457750156,
0.27660305017225656,
0.276177260218182,
0.27589077137400736,
0.27575323475556307,
0.2757683166161185,
0.2759335407564991,
0.27624063039207514,
0.2766762879436339,
0.2772232967555347,
0.2778617992122614,
0.27857060395170846,
0.2793283965608051,
0.2801147643605722,
0.2809109865368838,
0.28170057760098355,
0.2824695999490817,
0.2832067785613222,
0.28390345865261296,
0.2845534477484096,
0.2851527798917364,
0.28569943378359774
],
[
0.28912201928995573,
0.2890843799005149,
0.28903748851919214,
0.2889793029942112,
0.2889074086998808,
0.28881897642293586,
0.2887107244642568,
0.28857888904765766,
0.2884192083288005,
0.28822692659899535,
0.2879968265936004,
0.2877232990045745,
0.2874004591600316,
0.2870223210965647,
0.28658303856329964,
0.2860772204438397,
0.28550032420819593,
0.2848491248738219,
0.2841222482385713,
0.283320745780149,
0.2824486749734829,
0.28151363390284867,
0.2805271848558549,
0.2795050909778076,
0.2784672867934423,
0.2774375115865652,
0.2764425577592175,
0.2755111257891462,
0.2746723309987888,
0.2739539679321674,
0.2733806939149741,
0.2729723300221714,
0.272742482460274,
0.27269765406591834,
0.2728369481192958,
0.27315237913174617,
0.2736297180940556,
0.27424973270785563,
0.27498964908810974,
0.2758246625306483,
0.27672935383759434,
0.27767891170635656,
0.2786501079138752,
0.27962201111638013,
0.2805764526493275,
0.28149827366573404,
0.28237538976971205,
0.28319871023685655,
0.2839619467709172,
0.28466134337897475
],
[
0.2891120081854863,
0.28907171685478134,
0.28902148997863264,
0.288959123562595,
0.28888200846506384,
0.2887870835002821,
0.28867079260823464,
0.2885290503732649,
0.2883572214440135,
0.28815012078854424,
0.28790204312182655,
0.2876068311273477,
0.2872579930554864,
0.2868488806394003,
0.28637293766799593,
0.28582402756863656,
0.285196844510022,
0.2844874063804122,
0.28369361917623354,
0.2828158907471119,
0.2818577578210233,
0.28082647477966355,
0.2797334976571883,
0.27859478519516195,
0.27743083431678306,
0.27626637432987705,
0.2751296662147347,
0.2740513921338263,
0.27306317371457245,
0.27219581864142073,
0.27147745176534327,
0.2709317248413737,
0.27057630543158406,
0.2704218146067799,
0.2704713193864128,
0.2707204040531006,
0.27115776470802183,
0.27176621203027174,
0.2725239383044434,
0.27340590587999025,
0.27438523644139,
0.27543451173013794,
0.27652692654464633,
0.2776372585817071,
0.27874263631084994,
0.27982309772821423,
0.2808619421948631,
0.28184588632895646,
0.28276504339770403,
0.28361275313508755
],
[
0.2891084437740089,
0.28906747659435805,
0.28901644040489466,
0.28895310785901424,
0.2888748440966985,
0.2887785600988923,
0.2886606701888989,
0.2885170578854083,
0.28834305551356193,
0.2881334442658376,
0.2878824826823535,
0.2875839726508337,
0.2872313728128964,
0.286817969445272,
0.28633711413968393,
0.2857825355616951,
0.28514872883619935,
0.2844314203314736,
0.2836280975651065,
0.282738583651878,
0.2817656235776693,
0.28071543660942244,
0.2795981770459836,
0.278428236733697,
0.2772243203484128,
0.27600923151479156,
0.2748093267757762,
0.27365362573312846,
0.27257260683860324,
0.2715967632383779,
0.270755032727999,
0.2700732404511881,
0.2695726952435719,
0.2692690591046953,
0.2691715700459039,
0.2692826528488664,
0.26959791229422186,
0.27010647702771556,
0.27079164992321547,
0.27163181675333997,
0.27260156133811825,
0.2736729271064166,
0.2748167526158751,
0.2760039970856765,
0.2772069678016159,
0.2784003686046647,
0.2795621077777731,
0.28067383092122317,
0.28172117424756,
0.2826937606047057
],
[
0.28911112804517125,
0.289071396623855,
0.2890219845689992,
0.28896076783460994,
0.28888523858760806,
0.28879246265517794,
0.2886790412117843,
0.288541080582545,
0.2883741750700998,
0.28817340877970377,
0.2879333834308864,
0.28764827997197406,
0.2873119622795269,
0.28691813110719916,
0.2864605354900538,
0.28593324673630655,
0.28533099669223994,
0.2846495769631982,
0.28388628917638936,
0.28304042837986554,
0.2821137728207042,
0.2811110445786234,
0.2800402982211211,
0.2789131904983217,
0.2777450848917509,
0.2765549519839005,
0.2753650405800108,
0.27420031421348984,
0.2730876702120852,
0.2720549795357304,
0.2711300004755133,
0.2703392249536352,
0.2697067129096612,
0.26925296249670505,
0.26899385858658215,
0.26893974555684197,
0.2690946836248017,
0.2694559648850698,
0.27001397375640984,
0.2707524645862111,
0.2716492910602203,
0.27267756285722367,
0.2738071393014706,
0.27500631596232916,
0.2762435328862437,
0.2774889381502731,
0.2787156736175439,
0.27990080025657954,
0.2810258351666912,
0.2820769205814182
],
[
0.28911895347113126,
0.28908201798697564,
0.2890362000988835,
0.2889795714641534,
0.28890986025902005,
0.28882441437514417,
0.2887201686609388,
0.28859361956178464,
0.2884408113325556,
0.2882573388131092,
0.28803837248975744,
0.2877787121002973,
0.2874728752338029,
0.2871152270607534,
0.2867001563231988,
0.2862223008469596,
0.2856768229796906,
0.285059731469079,
0.28436824147403456,
0.2836011589406614,
0.2827592699952647,
0.28184571105634354,
0.2808662919517702,
0.2798297433491721,
0.27874786191079187,
0.2776355318345732,
0.27651060904428376,
0.27539366249758357,
0.27430757350180207,
0.2732769963490281,
0.2723276812198304,
0.2714856550568135,
0.2707762530557346,
0.27022299975577535,
0.26984636077650176,
0.26966242543366004,
0.26968162987334743,
0.2699076746871733,
0.27033681094909184,
0.2709576490235935,
0.2717515820446585,
0.2726938226859614,
0.27375495156659424,
0.27490279500005793,
0.27610440829563754,
0.2773279446987232,
0.2785442322086988,
0.27972794531841816,
0.28085832861790305,
0.28191949003433636
],
[
0.28913033876928723,
0.28909727141157676,
0.2890563868431753,
0.28900600611536886,
0.28894415451653255,
0.28886853054572087,
0.28877647838544457,
0.28866496662048297,
0.28853057657703846,
0.2883695042658379,
0.28817758043791425,
0.28795031361656054,
0.2876829610490816,
0.2873706322115082,
0.28700842868261284,
0.28659162278315675,
0.2861158752984353,
0.2855774898855404,
0.2849736985316306,
0.2843029689183985,
0.28356532112582933,
0.28276263822830017,
0.2818989534576014,
0.28098069606442283,
0.2800168788440578,
0.27901921210017594,
0.2780021306969015,
0.2769827215314002,
0.27598053706267817,
0.2750172760774925,
0.2741163069268515,
0.2733020045031427,
0.27259887568487495,
0.2720304647330954,
0.27161806374449776,
0.2713793018242202,
0.2713267407365367,
0.2714666485126797,
0.2717981380818095,
0.27231283296997166,
0.2729951557423054,
0.2738232403238769,
0.2747703699096831,
0.27580676292500134,
0.2769014883865374,
0.2780242945824272,
0.27914717442704856,
0.28024555243807486,
0.2812990454311534,
0.28229180819239025
],
[
0.2891436724099533,
0.2891150588407467,
0.2890798291008114,
0.289036576621089,
0.2889836485942604,
0.28891912031687156,
0.2888407723454195,
0.2887460726417755,
0.28863216636563255,
0.28849587643952224,
0.28833371841814415,
0.28814193347796807,
0.28791654343380707,
0.28765343150834566,
0.2873484520519675,
0.28699757147012983,
0.28659704122775115,
0.28614360197109423,
0.2856347155999543,
0.2850688196614568,
0.28444559590196616,
0.2837662424164576,
0.28303373676994303,
0.2822530758478164,
0.2814314769901893,
0.2805785239649002,
0.27970624016918555,
0.27882906974939,
0.2779637449918722,
0.2771290159107897,
0.2763452169652091,
0.27563364886360625,
0.27501576366001673,
0.27451216151230934,
0.27414143809774344,
0.2739189595142698,
0.27385567883015266,
0.273957134285958,
0.2742227724589541,
0.27464571376715824,
0.2752130237885668,
0.2759064821255183,
0.27670376720828976,
0.2775799175336074,
0.27850889956876984,
0.2794651138567927,
0.2804246993215119,
0.2813665413605016,
0.28227294028285943,
0.28312994295118876
],
[
0.2891576007806892,
0.2891336146920869,
0.28910424549583336,
0.28906836112076834,
0.2890246319849212,
0.2889715105260944,
0.2889072129725057,
0.2888297050576328,
0.2887366937596898,
0.28862562751681947,
0.2884937077015253,
0.2883379143900643,
0.2881550495837762,
0.28794180097256133,
0.2876948290165059,
0.2874108795041597,
0.2870869227804461,
0.28672031949839716,
0.2863090110391516,
0.2858517306995978,
0.2853482294374861,
0.2847995074917467,
0.2842080406843419,
0.2835779877899091,
0.28291536315689814,
0.28222815689963154,
0.2815263835916139,
0.2808220396818146,
0.28012895018181017,
0.2794624871197581,
0.27883914668051485,
0.2782759798731096,
0.27778988387937004,
0.27739677817950875,
0.277110710071968,
0.27694295548399916,
0.276901198445337,
0.2769888808062326,
0.27720480797566344,
0.277543074531803,
0.2779933374675341,
0.27854142070140525,
0.2791701911338453,
0.2798606129088437,
0.2805928690659624,
0.28134744062941347,
0.28210605019771,
0.28285240492823716,
0.2835727058690212,
0.2842559208653147
],
[
0.2891711324263961,
0.28915162489529406,
0.2891279188686301,
0.28909914357803185,
0.2890642768995369,
0.2890221299859026,
0.28897133376205586,
0.28891032861150784,
0.2888373588694702,
0.28875047402383613,
0.2886475387844336,
0.288526254382756,
0.2883841935698244,
0.28821885174321443,
0.28802771640505104,
0.28780835667898447,
0.28755853384744284,
0.28727633277267445,
0.28696031261631383,
0.2866096734797571,
0.28622443349516835,
0.2858056085927467,
0.2853553847927948,
0.2848772706128493,
0.2843762152825719,
0.28385867720608576,
0.2833326268145977,
0.28280746893139025,
0.28229387232936853,
0.28180349855000014,
0.2813486284229917,
0.28094169305555206,
0.28059472604767344,
0.28031876463374955,
0.28012323814788664,
0.28001539095264505,
0.27999979172633815,
0.28007797982711913,
0.28024829107746324,
0.2805058897538821,
0.28084301246593335,
0.2812494061153387,
0.28171292025034655,
0.2822201977447343,
0.28275739956459006,
0.2833109003718171,
0.28386790088996255,
0.2844169179073073,
0.2849481303953242,
0.28545357744947913
],
[
0.28918361815363597,
0.2891681997428657,
0.28914965560721717,
0.28912735001351797,
0.28910053731632546,
0.28906835129499603,
0.2890297960997373,
0.2889837398195479,
0.28892891189009107,
0.28886390575884136,
0.2887871884000418,
0.2886971183989763,
0.28859197437359946,
0.2884699954359013,
0.2883294351756637,
0.2881686302343453,
0.2879860838886744,
0.287780564153321,
0.28755121472806533,
0.28729767567179804,
0.28702020903407477,
0.28671982291007464,
0.28639838565207226,
0.28605872046527325,
0.28570466957457524,
0.28534111682994157,
0.284973958271556,
0.28461001200368335,
0.28425686183778887,
0.2839226335363755,
0.2836157079283697,
0.283344381302362,
0.28311648976731585,
0.28293902000665944,
0.2828177332552441,
0.28275683160909276,
0.2827586952594579,
0.28282371551131247,
0.2829502414999517,
0.28313464887786427,
0.2833715274641467,
0.28365397340343795,
0.28397396140536124,
0.2843227655916545,
0.2846913943397164,
0.2850710055574727,
0.2854532736111906,
0.2858306866328321,
0.2861967618195514,
0.2865461752489219
],
[
0.28919467310074787,
0.2891827919462226,
0.2891687001781698,
0.2891519604293714,
0.2891320600327423,
0.2891084042162386,
0.2890803106695303,
0.2890470062222426,
0.2890076265040422,
0.2889612195764555,
0.28890675462127835,
0.2888431368230668,
0.2887692295719167,
0.28868388501276415,
0.2885859837521819,
0.2884744841772674,
0.28834848132223173,
0.28820727452460776,
0.28805044224780463,
0.28787792143513097,
0.2876900876554501,
0.2874878311876759,
0.28727262318879504,
0.2870465653447664,
0.2868124160788587,
0.28657358664819366,
0.286334101427783,
0.28609851843437184,
0.2858718086644525,
0.2856591959881251,
0.285465962914914,
0.2852972311894323,
0.2851577294752555,
0.28505156291594397,
0.2849820007329635,
0.28495129793935275,
0.28496056557301525,
0.28500970062821857,
0.2850973823334863,
0.28522113602371163,
0.2853774601667437,
0.28556200678702437,
0.2857698012162062,
0.2859954843029159,
0.2862335592279545,
0.28647862593170437,
0.2867255886407475,
0.28696982564561313,
0.2872073147767009,
0.2874347123795408
],
[
0.28920407544474613,
0.2891950954745079,
0.28918463869976463,
0.2891724239566327,
0.2891581213891286,
0.2891413484028446,
0.2891216667243652,
0.2890985810770045,
0.28907154005508323,
0.28903993983711146,
0.2890031314134058,
0.2889604320042737,
0.28891114129756396,
0.2888545630245962,
0.2887900322068607,
0.288716948130031,
0.2886348127289646,
0.2885432735974621,
0.2884421702808784,
0.2883315818941698,
0.2882118734757846,
0.28808373790008496,
0.28794822970493095,
0.2878067869343083,
0.2876612371370142,
0.2875137840775715,
0.2873669725527231,
0.2872236299702641,
0.2870867849846232,
0.28695956538198897,
0.28684507939629433,
0.2867462865040013,
0.28666586526262855,
0.28660608671397686,
0.286568702105974,
0.2865548531119027,
0.28656501135156515,
0.2865989519525189,
0.28665576332505205,
0.2867338925206426,
0.28683122279135775,
0.2869451775537361,
0.2870728431307515,
0.28721110157216806,
0.28735676461507603,
0.2875067004184284,
0.2876579459691676,
0.2878077998216585,
0.28795389186460557,
0.2880942288732926
],
[
0.28921165674172516,
0.28920492991398383,
0.2891972793277382,
0.2891885384190538,
0.28917851072138157,
0.2891669675294741,
0.2891536463914242,
0.28913825076254307,
0.2891204511871685,
0.28909988839386813,
0.289076178690127,
0.2890489220179759,
0.2890177129751391,
0.2889821550102644,
0.28894187785967584,
0.2888965581029979,
0.28884594247564177,
0.28878987329241834,
0.28872831502017543,
0.28866138070813524,
0.2885893566709504,
0.2885127235577405,
0.2884321717725755,
0.28834860918171024,
0.28826315918983336,
0.2881771476198571,
0.28809207739777765,
0.2880095908101795,
0.2879314200224074,
0.2878593275470743,
0.28779503933890105,
0.287740174053493,
0.28769617263642383,
0.28766423271399605,
0.2876452521792625,
0.2876397858898849,
0.28764801854885047,
0.28766975570011327,
0.2877044334492849,
0.2877511461460217,
0.2878086899754871,
0.2878756193245118,
0.287950312010367,
0.2880310390459121,
0.28811603458178003,
0.28820356199025476,
0.2882919726768917,
0.2883797550392585,
0.28846557193850386,
0.2885482860094636
],
[
0.2892171960971615,
0.28921211744920566,
0.2892065082483699,
0.28920028052502955,
0.28919332862258,
0.2891855277698114,
0.28917673323117754,
0.2891667802456986,
0.2891554849755908,
0.2891426466853839,
0.2891280513582633,
0.28911147692562755,
0.2890927002354931,
0.28907150581304814,
0.28904769637094585,
0.2890211049079843,
0.28899160809499747,
0.2889591404913117,
0.28892370897266484,
0.2888854065943872,
0.28884442497778856,
0.2888010642116432,
0.2887557392241727,
0.28870898162257397,
0.28866143613150974,
0.2886138509964384,
0.2885670620494244,
0.28852197054914586,
0.2884795153753084,
0.2884406406411874,
0.28840626023905136,
0.2883772212015771,
0.288354268001749,
0.2883380099885346,
0.2883288940467218,
0.2883271842777283,
0.28833295004590964,
0.2883460631625207,
0.28836620434126076,
0.28839287841624084,
0.2884254372254358,
0.2884631085824703,
0.2885050294256093,
0.28855028106663866,
0.28859792446721255,
0.2886470336323174,
0.28869672550179165,
0.28874618510361794,
0.2887946851646013,
0.2888415998130088
],
[
0.2892203207704249,
0.2892163590310782,
0.2892121335365733,
0.2892076071742706,
0.2892027324534331,
0.28919745046985235,
0.289191690253502,
0.2891853686332696,
0.28917839075293356,
0.2891706513645801,
0.2891620370082905,
0.2891524291591454,
0.2891417083836988,
0.28912975949792047,
0.2891164776577299,
0.2891017752431103,
0.28908558931999506,
0.2890678893845694,
0.28904868501766434,
0.2890280330092182,
0.28900604346213105,
0.2889828843595593,
0.2889587840878438,
0.2889340314555338,
0.2889089728414818,
0.28888400624207455,
0.2888595721648885,
0.2888361415237072,
0.28881420091306265,
0.28879423586030833,
0.28877671284835604,
0.2887620610513559,
0.28875065481031936,
0.28874279788300744,
0.2887387104269133,
0.28873851951917434,
0.28874225379472074,
0.2887498425132997,
0.288761119071716,
0.288775828686367,
0.2887936397086187,
0.28881415782357406,
0.2888369422370628,
0.2888615228845591,
0.2888874176998228,
0.2889141490538886,
0.28894125860435715,
0.28896831996467387,
0.2889949487952564,
0.2890208101151768
],
[
0.28922038698553976,
0.2892170902999365,
0.28921370810798525,
0.2892102349719718,
0.2892066590114743,
0.28920296096921483,
0.28919911352941163,
0.2891950809802392,
0.28919081930824536,
0.2891862768027091,
0.28918139523158576,
0.2891761116278315,
0.28917036069587276,
0.28916407781351294,
0.28915720256584804,
0.2891496827064084,
0.28914147839888144,
0.2891325665529546,
0.2891229450330286,
0.2891126364920637,
0.2891016915680347,
0.2890901911806051,
0.2890782476834266,
0.2890660046646909,
0.28905363524563593,
0.28904133880228944,
0.289029336126472,
0.28901786314258504,
0.28900716339975424,
0.28899747965598016,
0.2889890449530545,
0.28898207363963835,
0.28897675282811514,
0.2889732347642046,
0.28897163054566866,
0.2889720055501106,
0.28897437682766935,
0.28897871259097047,
0.28898493380254364,
0.28899291773028674,
0.2890025032251356,
0.2890134973809104,
0.28902568317085,
0.28903882762206573,
0.2890526900883495,
0.28906703021084584,
0.28908161521007764,
0.28909622622507924,
0.289110663498528,
0.2891247502933223
],
[
0.2892162816726388,
0.2892132609958515,
0.2892102815567024,
0.2892073577125913,
0.28920449902776596,
0.2892017092879238,
0.28919898569925706,
0.28919631834385157,
0.28919368995807077,
0.28919107609032224,
0.2891884456795173,
0.2891857620760236,
0.28918298450376434,
0.2891800699364199,
0.2891769753337732,
0.2891736601576458,
0.2891700890622361,
0.28916623463266666,
0.2891620800298209,
0.28915762139058154,
0.28915286983165617,
0.28914785291322215,
0.2891426154361342,
0.28913721947334614,
0.2891317435717767,
0.28912628110363636,
0.28912093779402853,
0.2891158285015504,
0.28911107337724584,
0.28910679357089075,
0.289103106688579,
0.28910012222867504,
0.289097937231961,
0.28909663237488376,
0.28909626871218835,
0.28909688523829496,
0.28909849738822874,
0.2891010965425093,
0.28910465054059037,
0.2891091051488855,
0.28911438637655323,
0.2891204034888053,
0.28912705253629595,
0.2891342202017005,
0.2891417877611759,
0.2891496349681185,
0.2891576436876007,
0.28916570113947604,
0.2891737026433838,
0.2891815537966603
],
[
0.2892060780359293,
0.2892029686482475,
0.2892000106781649,
0.2891972319267189,
0.2891946552951289,
0.28919229766083066,
0.2891901689320693,
0.28918827134765074,
0.28918659908132915,
0.2891851381986348,
0.28918386699811827,
0.28918275674974714,
0.2891817728215953,
0.28918087616332927,
0.2891800250927566,
0.2891791773113492,
0.28917829205759005,
0.28917733229443493,
0.2891762668200912,
0.2891750721903181,
0.2891737343458194,
0.2891722498499184,
0.28917062665910753,
0.289168884371423,
0.28916705392378395,
0.28916517673805325,
0.2891633033450355,
0.2891614915441928,
0.2891598041827913,
0.2891583066598106,
0.28915706427578836,
0.2891561395586929,
0.28915558969720506,
0.28915546420626764,
0.2891558029358012,
0.2891566345130296,
0.28915797528333204,
0.2891598287857494,
0.28916218576925856,
0.2891650247267506,
0.2891683128972617,
0.2891720076650333,
0.2891760582676497,
0.2891804077155087,
0.28918499482142795,
0.2891897562419328,
0.28919462843998345,
0.2891995494914907,
0.289204460673672,
0.2892093077907515
],
[
0.28918651998580597,
0.28918291778506844,
0.289179595574843,
0.2891765922356454,
0.2891739398232235,
0.2891716622288918,
0.2891697740871251,
0.28916828000174233,
0.2891671741505316,
0.2891664403119389,
0.2891660523371975,
0.28916597506814623,
0.28916616567639025,
0.28916657537505086,
0.289167151431808,
0.2891678393928879,
0.2891685854134684,
0.28916933858171134,
0.289170053121918,
0.2891706903672814,
0.2891712204040897,
0.28917162330627794,
0.2891718899008472,
0.2891720220295275,
0.2891720322986207,
0.2891719433356463,
0.2891717865966649,
0.2891716007905285,
0.28917143000456885,
0.28917132162940606,
0.28917132418799,
0.28917148517537794,
0.2891718490112016,
0.2891724551967302,
0.2891733367537086,
0.28917451900381885,
0.2891760187269751,
0.28917784371510236,
0.28917999271696065,
0.2891824557502332,
0.28918521474056913,
0.28918824443436086,
0.2891915135232189,
0.2891949859135373,
0.2891986220740643,
0.28920238039758633,
0.28920621851907835,
0.2892100945412196,
0.2892139681282234,
0.28921780143968645
],
[
0.28915241442961054,
0.2891477831279736,
0.2891436176597219,
0.28913996861385194,
0.28913687530448146,
0.2891343641007344,
0.2891324471821815,
0.2891311218059732,
0.28913037015088144,
0.2891301597769555,
0.2891304447087464,
0.2891311671168556,
0.2891322595390209,
0.28913364755034154,
0.2891352527647764,
0.2891369960287319,
0.28913880065397624,
0.28914059553233185,
0.2891423179790443,
0.28914391616520174,
0.28914535102126865,
0.28914659752234634,
0.28914764529939674,
0.28914849855728897,
0.289149175317892,
0.2891497060422763,
0.2891501317182295,
0.28915050152581484,
0.2891508702130281,
0.2891512953246479,
0.2891518344295546,
0.2891525424851847,
0.28915346946304715,
0.2891546583376197,
0.28915614351420277,
0.2891579497415391,
0.28916009152445765,
0.28916257302270026,
0.2891653883964176,
0.2891685225381443,
0.28917195211641794,
0.2891756468480164,
0.28917957091389723,
0.28918368443765524,
0.28918794495359484,
0.2891923088030342,
0.2891967324108393,
0.2892011734081021,
0.2892055915802227,
0.2892099496315662
],
[
0.28909617388123104,
0.2890897259682639,
0.2890840329759304,
0.2890791601996066,
0.28907515322212557,
0.2890720357096328,
0.2890698079883152,
0.28906844651817204,
0.28906790434082835,
0.2890681125318292,
0.2890689826363603,
0.2890704100139171,
0.2890722779654414,
0.28907446246930124,
0.28907683731345324,
0.2890792793829843,
0.2890816738470967,
0.2890839189887576,
0.28908593043404807,
0.28908764456619157,
0.28908902094990596,
0.2890900436429699,
0.2890907213309289,
0.2890910862843987,
0.2890911922028064,
0.28909111106979163,
0.2890909292000237,
0.289090742701228,
0.28909065260561595,
0.28909075993929684,
0.28909116099527843,
0.2890919430553138,
0.28909318076946644,
0.2890949333526256,
0.2890972426982872,
0.28910013244657856,
0.2891036079810102,
0.28910765727187454,
0.2891122524379732,
0.2891173518656405,
0.28912290270655827,
0.2891288435737127,
0.2891351072665976,
0.2891416233797476,
0.28914832067938306,
0.2891551291675258,
0.289161981787689,
0.2891688157579998,
0.2891755735440196,
0.2891822035032294
],
[
0.28900794852479705,
0.28899851861931064,
0.28899028790161324,
0.28898334078913324,
0.28897772720878534,
0.28897345951226866,
0.28897051081326935,
0.2889688149192831,
0.28896826795931607,
0.28896873172640025,
0.2889700386649827,
0.2889719983428599,
0.28897440516091294,
0.2889770469769281,
0.2889797142573341,
0.28898220932701985,
0.2889843552657254,
0.2889860040017681,
0.288987043180742,
0.28898740143768503,
0.288987051774236,
0.2889860128345571,
0.2889843479812522,
0.2889821621900749,
0.28897959690376857,
0.28897682310385603,
0.2889740329668398,
0.288971430560079,
0.28896922209494436,
0.2889676062843239,
0.28896676534384985,
0.2889668571300137,
0.2889680088257923,
0.28897031247142996,
0.288973822503857,
0.2889785553246992,
0.28898449077695415,
0.28899157528693326,
0.2889997263318077,
0.28900883783169423,
0.2890187860421781,
0.28902943553765226,
0.28904064492294956,
0.28905227198242356,
0.289064178061961,
0.28907623156998224,
0.289088310568767,
0.28910030449981894,
0.28911211514143664,
0.28912365693100534
],
[
0.2888769375710281,
0.28886288979337854,
0.2888506884619001,
0.2888404404720921,
0.2888321938203828,
0.2888259331084986,
0.28882157754893195,
0.28881898174533643,
0.28881793939765443,
0.28881818994068553,
0.2888194279736699,
0.2888213151854336,
0.2888234943334506,
0.28882560470447666,
0.2888272983772144,
0.2888282565305779,
0.28882820499983336,
0.2888269282808239,
0.28882428122165793,
0.2888201977221086,
0.2888146958825351,
0.2888078792037543,
0.2887999336324025,
0.2887911204659409,
0.2887817653676428,
0.28877224398149365,
0.28876296486368036,
0.2887543506427141,
0.2887468184649986,
0.2887407608591788,
0.28873652814747064,
0.28873441343887174,
0.28873464106008856,
0.28873735902748743,
0.2887426358590134,
0.2887504616976863,
0.2887607534005978,
0.28877336297136336,
0.28878808850685084,
0.288804686709158,
0.28882288598865213,
0.2888423992491663,
0.2888629355874385,
0.28888421033307593,
0.2889059530761062,
0.28892791354974223,
0.2889498654329419,
0.2889716082933181,
0.2889929679960708,
0.2890137959566297
],
[
0.288694408237796,
0.28867364158086845,
0.2886555918852762,
0.2886403853431598,
0.2886280512047925,
0.28861851515926173,
0.2886115969155565,
0.28860701242768017,
0.28860438100538943,
0.2886032373229727,
0.2886030480925786,
0.2886032329180222,
0.28860318860262413,
0.2886023159633458,
0.2886000480153013,
0.2885958782462425,
0.2885893876087309,
0.2885802688257487,
0.28856834663951153,
0.28855359273828274,
0.28853613427600394,
0.2885162551566446,
0.2884943895881307,
0.2884711078128926,
0.2884470943791823,
0.288423119805538,
0.2884000069762509,
0.2883785940457889,
0.28835969597711225,
0.28834406704569615,
0.2883323666690172,
0.288325130747274,
0.2883227503245121,
0.2883254588251318,
0.28833332843917975,
0.2883462754909426,
0.28836407390999896,
0.28838637531185796,
0.2884127337534036,
0.28844263300027245,
0.2884755141435382,
0.28851080161586434,
0.2885479260404839,
0.28858634283943874,
0.28862554606182367,
0.28866507740218345,
0.2887045308090573,
0.28874355339699626,
0.2887818435555248,
0.28881914719833096
],
[
0.28845844192925196,
0.2884285626787843,
0.28840244961938266,
0.2883802289951016,
0.2883618744067742,
0.2883471972440439,
0.2883358438055809,
0.28832729981729605,
0.28832090275321454,
0.2883158620168065,
0.2883112866654687,
0.2883062199729822,
0.288299679740766,
0.28829070290540265,
0.2882783926633873,
0.2882619660594482,
0.2882407997765116,
0.28821447173798775,
0.2881827961024603,
0.28814584931505305,
0.2881039850984043,
0.2880578366383747,
0.2880083047594643,
0.28795653159529244,
0.2879038601249628,
0.28785178092660973,
0.28780186852671225,
0.287755710702975,
0.28771483491581484,
0.2876806365799697,
0.2876543140390125,
0.2876368148024664,
0.28762879683247095,
0.28763060747423985,
0.28764228112670337,
0.28766355511414116,
0.28769390164235065,
0.2877325723976613,
0.2877786514333654,
0.28783111158502367,
0.2878888697875551,
0.28795083728085547,
0.28801596167120497,
0.28808325900642096,
0.2881518352540038,
0.28822089768777764,
0.28828975756959285,
0.2883578260869122,
0.28842460575485057,
0.2884896794395303
],
[
0.2881793299213532,
0.28813802601926675,
0.28810156497050116,
0.2880700248906699,
0.28804325507487727,
0.2880208626728143,
0.2880022094062206,
0.2879864194298974,
0.28797239901620286,
0.28795886826174966,
0.2879444044876001,
0.28792749644600946,
0.2879066078742639,
0.28788024836643783,
0.2878470489843041,
0.28780583951752176,
0.2877557238519207,
0.2876961495405628,
0.28762696743194005,
0.2875484771412317,
0.28746145431260495,
0.28736715607702756,
0.287267301919421,
0.2871640283685942,
0.2870598175108146,
0.28695740124282704,
0.2868596452922979,
0.2867694191415235,
0.2866894598356326,
0.2866222389563348,
0.2865698425350368,
0.28653387317881696,
0.28651538212840894,
0.28651483645564746,
0.28653212339696177,
0.2865665902994111,
0.28661711528769573,
0.28668220099764563,
0.28676008192770003,
0.28684883534515826,
0.28694648627216374,
0.28705109870859785,
0.28716084762225924,
0.2872740689654594,
0.2873892876643081,
0.2875052258280749,
0.2876207950967766,
0.28773507796516273,
0.2878473030940629,
0.28795681915295324
],
[
0.2878831394527018,
0.2878287078495772,
0.2877799419174253,
0.28773678229971555,
0.2876988440625955,
0.28766539892603293,
0.28763537164983655,
0.2876073522231646,
0.2875796249861814,
0.28755021521328034,
0.28751695301595176,
0.2874775536865727,
0.2874297128086405,
0.2873712136114083,
0.28730004315699864,
0.2872145130314241,
0.2871133792950627,
0.2869959555804601,
0.2868622124812689,
0.2867128558645527,
0.2865493766011684,
0.28637406460930104,
0.286189981207815,
0.286000885706905,
0.2858111149724084,
0.285625418311607,
0.2854487542072851,
0.2852860597665715,
0.2851420076973386,
0.2850207685422896,
0.28492579717921274,
0.284859661780058,
0.28482393033629005,
0.28481912469359316,
0.2848447453663985,
0.28489936310300196,
0.2849807662877768,
0.28508614780648295,
0.2852123117426839,
0.2853558796201232,
0.285513477819698,
0.28568189183231113,
0.2858581784119256,
0.28603973257522863,
0.2862243118875234,
0.28641002487505124,
0.2865952932643147,
0.28677879891232905,
0.28695942587268425,
0.2871362063663295
],
[
0.287610241772887,
0.2875421141235779,
0.2874798385935645,
0.2874230839801083,
0.287371079932656,
0.28732259411364136,
0.2872759280179564,
0.2872289338414632,
0.28717905423843,
0.28712338616155025,
0.28705876922521156,
0.2869818981552153,
0.28688945786417736,
0.28677827849858434,
0.28664550642349956,
0.28648878554189755,
0.28630644161460855,
0.286097660428016,
0.28586264888951063,
0.28560276663373496,
0.2853206147950428,
0.28502006860565754,
0.28470624179698656,
0.2843853737446224,
0.28406463509157576,
0.28375185414591936,
0.2834551742762393,
0.28318266103628986,
0.28294188570529155,
0.2827395179833153,
0.2825809634001076,
0.28247007956241604,
0.28240899926923413,
0.28239807816856927,
0.2824359712634365,
0.28251982812431237,
0.2826455833732891,
0.28280830897361653,
0.28300258961052727,
0.28322288263011025,
0.283463829289098,
0.2837204932949682,
0.2839885140669368,
0.284264173923866,
0.2845443887717321,
0.28482663952445575,
0.2851088657380695,
0.2853893436747827,
0.28566656868344303,
0.2859391572150741
],
[
0.28740685910807334,
0.28732591791801054,
0.28724999962512593,
0.2871783353174994,
0.28710959432762595,
0.28704185546443567,
0.2869726011777425,
0.28689873802514987,
0.28681664636146276,
0.28672226161634595,
0.2866111888225872,
0.28647885114127936,
0.2863206719236211,
0.28613228826758164,
0.2859097919938589,
0.2856499914291051,
0.28535068435121735,
0.28501092901997543,
0.2846312966160763,
0.2842140850358443,
0.28376347140683095,
0.28328557962355655,
0.2827884404545105,
0.28228182608806557,
0.28177694886675403,
0.2812860254353273,
0.2808217219443655,
0.2803965118454433,
0.2800219929535458,
0.27970822209977525,
0.2794631311072954,
0.27929208490014534,
0.2791976305053602,
0.2791794654835857,
0.2792346286513668,
0.27935788890314006,
0.2795422840552217,
0.2797797449443397,
0.2800617331333781,
0.28037982420002994,
0.2807261814653152,
0.281093884399126,
0.28147709823773875,
0.28187109291244095,
0.2822721371367967,
0.2826773053446539,
0.2830842402040471,
0.28349091189553693,
0.2838954084279285,
0.2842957807932288
],
[
0.287311327925328,
0.28721987668816107,
0.28713139203668187,
0.2870445057925554,
0.2869571672734481,
0.28686660719921875,
0.2867693278204931,
0.28666112387336373,
0.2865371387967183,
0.2863919603822924,
0.2862197595688576,
0.2860144753092353,
0.2857700471673225,
0.2854806953563573,
0.28514124512444555,
0.2847474885801573,
0.284296572168358,
0.2837873921472459,
0.28322097390556583,
0.2826008044213971,
0.28193308157700125,
0.2812268407204472,
0.280493919345728,
0.27974872658762306,
0.27900779656539715,
0.278289123793584,
0.27761130392895694,
0.2769925314208603,
0.2764495329326169,
0.27599653635344407,
0.2756443844239801,
0.27539989543209376,
0.2752655498504033,
0.2752395435628541,
0.2753162013662375,
0.275486696976208,
0.27573998644985764,
0.27606383768651604,
0.27644583314323296,
0.2768742359012849,
0.27733863712807955,
0.2778303399334926,
0.27834247395765754,
0.27886987058559337,
0.2794087557246062,
0.2799563327826759,
0.28051033206666764,
0.28106859536493034,
0.28162874856255615,
0.28218799427121977
],
[
0.2873408890058988,
0.2872423166738123,
0.28714353898814565,
0.2870424839848383,
0.28693629127562265,
0.2868212669169545,
0.2866928661570693,
0.28654571007592144,
0.28637364243216723,
0.2861698332557259,
0.28592693572551425,
0.2856373024367001,
0.2852932660161218,
0.284887486866338,
0.2844133672665873,
0.28386552582165947,
0.28324031912452596,
0.28253638849964674,
0.2817551991873814,
0.2809015281794373,
0.2799838466028004,
0.27901453521711705,
0.2780098699271877,
0.27698972110735076,
0.2759769284421894,
0.2749963430270606,
0.2740735694179458,
0.2732334878120555,
0.2724986829493457,
0.2718879416999533,
0.2714149955313497,
0.271087669847793,
0.2709075579809851,
0.27087026904552336,
0.27096621816356115,
0.27118185049269666,
0.2715011321550958,
0.27190711200458334,
0.2723833616928235,
0.2729151342723365,
0.27349013506239805,
0.274098861746164,
0.27473453282363397,
0.275392675673508,
0.2760704814562151,
0.276766050893776,
0.277477652552305,
0.2782030962479778,
0.278939293320907,
0.27968203879845893
],
[
0.2874858899356281,
0.28738421593479696,
0.28727853217517924,
0.28716606780912846,
0.2870431869939386,
0.2869053338963088,
0.2867470053335819,
0.286561758440432,
0.2863422616198784,
0.28608039787302403,
0.2857674302051171,
0.28539423888707566,
0.28495163952830865,
0.28443078872118244,
0.2838236799276469,
0.2831237257763483,
0.28232641361046923,
0.2814300088146854,
0.2804362654565467,
0.2793510871111019,
0.278185064355019,
0.27695380238686645,
0.2756779466862224,
0.27438282133929043,
0.2730976180981152,
0.2718541170451207,
0.27068498084147274,
0.2696217375031988,
0.26869263907646,
0.2679206385991556,
0.2673217479344819,
0.26690401220924537,
0.26666726107929206,
0.2666036844894928,
0.2666991537437545,
0.2669350949622386,
0.2672906451441128,
0.26774479454327477,
0.26827824357010216,
0.2688747677430234,
0.2695219738799928,
0.2702114270465534,
0.27093821544906,
0.27170008830488673,
0.2724963430616412,
0.2733266507309962,
0.27418999297442376,
0.27508384684579684,
0.27600370054403717,
0.27694292567622436
],
[
0.2877144998877847,
0.2876139686943601,
0.2875057305300169,
0.28738645799895524,
0.2872519264871057,
0.2870969511280364,
0.28691534956610765,
0.286699938937234,
0.28644257687999536,
0.2861342577854163,
0.2857652766609964,
0.2853254735800855,
0.28480457124712655,
0.2841926161508845,
0.2834805294278613,
0.2826607662117629,
0.2817280712786484,
0.2806803038510194,
0.27951928566366413,
0.2782516048515036,
0.2768892861692504,
0.2754502193258654,
0.27395822727714053,
0.2724426618398775,
0.27093744165019623,
0.2694795018301315,
0.2681067052774538,
0.26685536394932097,
0.26575761744901105,
0.2648389910310925,
0.264116480044488,
0.2635974650133882,
0.2632796498729152,
0.263152054665564,
0.26319691890372787,
0.26339222353909775,
0.2637144505208244,
0.26414118409396725,
0.2646532126235483,
0.26523589471737347,
0.265879683381982,
0.2665798324859844,
0.26733542167280316,
0.2681479161198132,
0.26901951913828137,
0.26995157680071047,
0.27094325790324425,
0.27199066788087517,
0.273086474164786,
0.27422003745467183
],
[
0.28798488505357833,
0.28788962965596226,
0.28778382803582775,
0.28766386035016694,
0.28752523330849983,
0.28736251447625893,
0.287169289656657,
0.2869381521888871,
0.2866607347027663,
0.2863277955820649,
0.285929373862555,
0.2854550271586298,
0.2848941669742719,
0.2842365037779022,
0.28347260976427907,
0.28259459949922905,
0.28159691692226485,
0.2804772010105811,
0.2792371818850049,
0.27788353530985754,
0.2764285988445743,
0.2748908315811556,
0.2732948876266817,
0.27167117896530596,
0.2700548339327008,
0.26848401878648676,
0.26699768145227154,
0.2656328888230108,
0.26442204132174785,
0.2633903314090731,
0.26255383568716306,
0.26191857266475344,
0.2614807203429949,
0.261227994823386,
0.2611419874514863,
0.2612010924646877,
0.2613835667228633,
0.2616702624454555,
0.26204665427536034,
0.26250391871791984,
0.26303898634303385,
0.26365364633926663,
0.2643529161995139,
0.26514298030492117,
0.26602904029279206,
0.26701340463317763,
0.2680940800130523,
0.2692640263638255,
0.2705111205588581,
0.2718187632138602
],
[
0.2882581348358311,
0.2881718206504421,
0.28807348082191103,
0.28795952797808144,
0.2878255830009622,
0.28766641427912076,
0.28747589711630533,
0.2872470018009135,
0.28697182054624454,
0.2866416451857648,
0.2862471089014217,
0.2857784060147197,
0.2852256034951834,
0.28457905573392844,
0.2838299295921811,
0.2829708390366681,
0.2819965771772355,
0.2809049178742867,
0.27969743950311926,
0.2783803011086584,
0.2769648785700787,
0.2754681497282791,
0.2739127086813337,
0.2723262978550761,
0.27074077910106314,
0.26919052645132835,
0.26771031188113636,
0.2663328611410679,
0.2650863589184906,
0.2639922533045417,
0.26306372073167755,
0.26230508667814195,
0.2617123569964576,
0.2612748253641693,
0.2609775267078739,
0.2608041505262543,
0.260739946432601,
0.2607741609211522,
0.260901632137663,
0.26112331617248496,
0.261445695269307,
0.2618791960350466,
0.2624358974821193,
0.2631269117930044,
0.26395985848775344,
0.2649368184015641,
0.26605305417967273,
0.26729663979467333,
0.2686489840890562,
0.27008609567843167
],
[
0.2885064352821753,
0.2884318479141968,
0.28834522043739025,
0.28824329938932924,
0.28812216708076177,
0.2879771925195217,
0.287802999597797,
0.2875934599979306,
0.28734171969422273,
0.2870402692457466,
0.2866810690544656,
0.28625574107905716,
0.2857558377279241,
0.2851731963007774,
0.28450038285256757,
0.28373122218093516,
0.2828614003889484,
0.2818891130607977,
0.2808157159715439,
0.279646317729387,
0.2783902372284584,
0.2770612369582223,
0.2756774409243152,
0.2742608586003873,
0.27283646865224853,
0.2714308701709476,
0.270070581827299,
0.2687801508634473,
0.2675803073063352,
0.26648644305513886,
0.2655076908604129,
0.2646468138748144,
0.26390099658362454,
0.26326347309733716,
0.2627257712750954,
0.26228022559176184,
0.26192234523418595,
0.26165263002267536,
0.2614775040339888,
0.2614091720173882,
0.2614643756542781,
0.2616622090436853,
0.2620213157063139,
0.2625569023884919,
0.26327804238202834,
0.26418569025729477,
0.26527169820756163,
0.26651894049766417,
0.267902460126826,
0.26939139489729236
],
[
0.2887150431596536,
0.2886537239850893,
0.2885815476476081,
0.28849580085512144,
0.28839325585954134,
0.2882701361193213,
0.28812209622553686,
0.287944221988415,
0.28773105755820794,
0.28747666725928006,
0.2871747402518666,
0.2868187459428837,
0.286402146929161,
0.2859186738190207,
0.2853626621874163,
0.2847294458889011,
0.2840157928607228,
0.2832203595748743,
0.2823441290838453,
0.28139078641547327,
0.2803669759130742,
0.2792823807220207,
0.27814956821378417,
0.27698355984560813,
0.2758011118696392,
0.2746197342398499,
0.27345652532798104,
0.2723269517923041,
0.27124374463508666,
0.270216101103237,
0.2692493666569415,
0.26834531689521535,
0.26750307029895265,
0.2667205525894145,
0.2659963227991469,
0.2653314820814332,
0.26473133786014247,
0.2642065002928124,
0.26377314896581183,
0.263452320565517,
0.2632682198765335,
0.263245725168885,
0.2634074152430848,
0.2637705551600576,
0.2643445106146407,
0.26512900104616577,
0.2661134564500323,
0.2672775450362,
0.2685927370717875,
0.2700246128019469
],
[
0.28887994690254903,
0.28883204613862484,
0.2887751873711408,
0.2887072779188602,
0.28862585663718615,
0.28852807321446006,
0.2884106785364241,
0.2882700302858705,
0.28810211847529704,
0.28790261594306465,
0.28766695883276683,
0.28739046154362013,
0.28706846938713865,
0.2866965500120486,
0.28627072140009086,
0.2857877098118185,
0.2852452255513044,
0.2846422381362489,
0.28397922603760395,
0.2832583705991244,
0.28248366044846873,
0.281660873331335,
0.2807974085343387,
0.2799019562233097,
0.2789840104796481,
0.27805325938872993,
0.2771189150409218,
0.2761890735223015,
0.27527021322578965,
0.27436694230052733,
0.2734820876799898,
0.2726171773501784,
0.2717733075813879,
0.27095231583625434,
0.270158109705922,
0.2693979457830673,
0.26868342234549236,
0.2680309557879519,
0.26746155817418465,
0.26699982143970263,
0.26667213450781263,
0.2665042959915202,
0.2665188120322732,
0.2667322563954807,
0.26715309155952877,
0.26778029158292854,
0.2686029772121525,
0.2696010998722012,
0.27074703625662205,
0.2720078207926335
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.00660999 (SEM: 0.1)
x1: 0.156353
x2: 0.828955
x3: 0.18221
x4: 0.993831
x5: 0.278476
x6: 0.628853",
"Arm 1_0
hartmann6: -0.603912 (SEM: 0.1)
x1: 0.638525
x2: 0.295647
x3: 0.056867
x4: 0.174938
x5: 0.181975
x6: 0.433481",
"Arm 2_0
hartmann6: -0.0583315 (SEM: 0.1)
x1: 0.00682053
x2: 0.841453
x3: 0.119364
x4: 0.726945
x5: 0.762638
x6: 0.210246",
"Arm 3_0
hartmann6: -0.285483 (SEM: 0.1)
x1: 0.19718
x2: 0.641646
x3: 0.99326
x4: 0.206919
x5: 0.0810344
x6: 0.066097",
"Arm 4_0
hartmann6: -0.0339355 (SEM: 0.1)
x1: 0.454058
x2: 0.160317
x3: 0.119512
x4: 0.299947
x5: 0.989933
x6: 0.0766047",
"Arm 5_0
hartmann6: -0.0191288 (SEM: 0.1)
x1: 0.604522
x2: 0.925746
x3: 0.607682
x4: 0.265181
x5: 0.568391
x6: 0.474896",
"Arm 6_0
hartmann6: 0.0704789 (SEM: 0.1)
x1: 0.635463
x2: 0.26446
x3: 0.618036
x4: 0.907142
x5: 0.883884
x6: 0.555087",
"Arm 7_0
hartmann6: -0.0199609 (SEM: 0.1)
x1: 0.80227
x2: 0.59793
x3: 0.773525
x4: 0.867527
x5: 0.914255
x6: 0.357337",
"Arm 8_0
hartmann6: 0.115659 (SEM: 0.1)
x1: 0.885401
x2: 0.979298
x3: 0.52418
x4: 0.628868
x5: 0.398996
x6: 0.143867",
"Arm 9_0
hartmann6: -0.0396646 (SEM: 0.1)
x1: 0.652378
x2: 0.878267
x3: 0.698092
x4: 0.167317
x5: 0.394397
x6: 0.190446",
"Arm 10_0
hartmann6: -0.00460247 (SEM: 0.1)
x1: 0.925983
x2: 0.915254
x3: 0.332073
x4: 0.883105
x5: 0.483516
x6: 0.340959",
"Arm 11_0
hartmann6: -0.0462184 (SEM: 0.1)
x1: 0.171178
x2: 0.467583
x3: 0.13919
x4: 0.224523
x5: 0.955353
x6: 0.641796",
"Arm 12_0
hartmann6: -0.0979352 (SEM: 0.1)
x1: 0.628777
x2: 0.232364
x3: 0.0324917
x4: 0.115041
x5: 0.0810486
x6: 0.431374",
"Arm 13_0
hartmann6: -0.759589 (SEM: 0.1)
x1: 0.639537
x2: 0.316663
x3: 0.0687926
x4: 0.194442
x5: 0.226739
x6: 0.433794",
"Arm 14_0
hartmann6: -1.02313 (SEM: 0.1)
x1: 0.665487
x2: 0.293105
x3: 0.00011538
x4: 0.202545
x5: 0.258844
x6: 0.455193",
"Arm 15_0
hartmann6: -1.10021 (SEM: 0.1)
x1: 0.678476
x2: 0.283359
x3: 0
x4: 0.211517
x5: 0.302936
x6: 0.4686",
"Arm 16_0
hartmann6: -0.520247 (SEM: 0.1)
x1: 0.749384
x2: 0.324648
x3: 0
x4: 0.277968
x5: 0.307693
x6: 0.489239",
"Arm 17_0
hartmann6: -0.90135 (SEM: 0.1)
x1: 0.650144
x2: 0.273984
x3: 0
x4: 0.198529
x5: 0.326291
x6: 0.463495",
"Arm 18_0
hartmann6: -0.556067 (SEM: 0.1)
x1: 0.674411
x2: 0.343923
x3: 0
x4: 0.147457
x5: 0.299825
x6: 0.420233"
],
"type": "scatter",
"x": [
0.15635323524475098,
0.6385245202109218,
0.006820528768002987,
0.19717952515929937,
0.4540580715984106,
0.6045215185731649,
0.6354626258835196,
0.8022699747234583,
0.8854012526571751,
0.6523779574781656,
0.9259831020608544,
0.1711777811869979,
0.6287765378755477,
0.6395370128967905,
0.6654868598075332,
0.67847557079854,
0.7493839093609874,
0.6501439700915995,
0.6744106213979943
],
"xaxis": "x",
"y": [
0.8289545178413391,
0.29564727656543255,
0.8414526470005512,
0.641646427102387,
0.16031726449728012,
0.9257462248206139,
0.2644602181389928,
0.5979295829311013,
0.9792980570346117,
0.8782674390822649,
0.9152536084875464,
0.4675833899527788,
0.2323644744778219,
0.3166632560499294,
0.29310519871805407,
0.28335884805542194,
0.3246476561264138,
0.27398434725814963,
0.34392315900985115
],
"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.00660999 (SEM: 0.1)
x1: 0.156353
x2: 0.828955
x3: 0.18221
x4: 0.993831
x5: 0.278476
x6: 0.628853",
"Arm 1_0
hartmann6: -0.603912 (SEM: 0.1)
x1: 0.638525
x2: 0.295647
x3: 0.056867
x4: 0.174938
x5: 0.181975
x6: 0.433481",
"Arm 2_0
hartmann6: -0.0583315 (SEM: 0.1)
x1: 0.00682053
x2: 0.841453
x3: 0.119364
x4: 0.726945
x5: 0.762638
x6: 0.210246",
"Arm 3_0
hartmann6: -0.285483 (SEM: 0.1)
x1: 0.19718
x2: 0.641646
x3: 0.99326
x4: 0.206919
x5: 0.0810344
x6: 0.066097",
"Arm 4_0
hartmann6: -0.0339355 (SEM: 0.1)
x1: 0.454058
x2: 0.160317
x3: 0.119512
x4: 0.299947
x5: 0.989933
x6: 0.0766047",
"Arm 5_0
hartmann6: -0.0191288 (SEM: 0.1)
x1: 0.604522
x2: 0.925746
x3: 0.607682
x4: 0.265181
x5: 0.568391
x6: 0.474896",
"Arm 6_0
hartmann6: 0.0704789 (SEM: 0.1)
x1: 0.635463
x2: 0.26446
x3: 0.618036
x4: 0.907142
x5: 0.883884
x6: 0.555087",
"Arm 7_0
hartmann6: -0.0199609 (SEM: 0.1)
x1: 0.80227
x2: 0.59793
x3: 0.773525
x4: 0.867527
x5: 0.914255
x6: 0.357337",
"Arm 8_0
hartmann6: 0.115659 (SEM: 0.1)
x1: 0.885401
x2: 0.979298
x3: 0.52418
x4: 0.628868
x5: 0.398996
x6: 0.143867",
"Arm 9_0
hartmann6: -0.0396646 (SEM: 0.1)
x1: 0.652378
x2: 0.878267
x3: 0.698092
x4: 0.167317
x5: 0.394397
x6: 0.190446",
"Arm 10_0
hartmann6: -0.00460247 (SEM: 0.1)
x1: 0.925983
x2: 0.915254
x3: 0.332073
x4: 0.883105
x5: 0.483516
x6: 0.340959",
"Arm 11_0
hartmann6: -0.0462184 (SEM: 0.1)
x1: 0.171178
x2: 0.467583
x3: 0.13919
x4: 0.224523
x5: 0.955353
x6: 0.641796",
"Arm 12_0
hartmann6: -0.0979352 (SEM: 0.1)
x1: 0.628777
x2: 0.232364
x3: 0.0324917
x4: 0.115041
x5: 0.0810486
x6: 0.431374",
"Arm 13_0
hartmann6: -0.759589 (SEM: 0.1)
x1: 0.639537
x2: 0.316663
x3: 0.0687926
x4: 0.194442
x5: 0.226739
x6: 0.433794",
"Arm 14_0
hartmann6: -1.02313 (SEM: 0.1)
x1: 0.665487
x2: 0.293105
x3: 0.00011538
x4: 0.202545
x5: 0.258844
x6: 0.455193",
"Arm 15_0
hartmann6: -1.10021 (SEM: 0.1)
x1: 0.678476
x2: 0.283359
x3: 0
x4: 0.211517
x5: 0.302936
x6: 0.4686",
"Arm 16_0
hartmann6: -0.520247 (SEM: 0.1)
x1: 0.749384
x2: 0.324648
x3: 0
x4: 0.277968
x5: 0.307693
x6: 0.489239",
"Arm 17_0
hartmann6: -0.90135 (SEM: 0.1)
x1: 0.650144
x2: 0.273984
x3: 0
x4: 0.198529
x5: 0.326291
x6: 0.463495",
"Arm 18_0
hartmann6: -0.556067 (SEM: 0.1)
x1: 0.674411
x2: 0.343923
x3: 0
x4: 0.147457
x5: 0.299825
x6: 0.420233"
],
"type": "scatter",
"x": [
0.15635323524475098,
0.6385245202109218,
0.006820528768002987,
0.19717952515929937,
0.4540580715984106,
0.6045215185731649,
0.6354626258835196,
0.8022699747234583,
0.8854012526571751,
0.6523779574781656,
0.9259831020608544,
0.1711777811869979,
0.6287765378755477,
0.6395370128967905,
0.6654868598075332,
0.67847557079854,
0.7493839093609874,
0.6501439700915995,
0.6744106213979943
],
"xaxis": "x2",
"y": [
0.8289545178413391,
0.29564727656543255,
0.8414526470005512,
0.641646427102387,
0.16031726449728012,
0.9257462248206139,
0.2644602181389928,
0.5979295829311013,
0.9792980570346117,
0.8782674390822649,
0.9152536084875464,
0.4675833899527788,
0.2323644744778219,
0.3166632560499294,
0.29310519871805407,
0.28335884805542194,
0.3246476561264138,
0.27398434725814963,
0.34392315900985115
],
"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": [
"