{ "cells": [ { "cell_type": "markdown", "id": "2b0e617a", "metadata": { "papermill": { "duration": 0.002632, "end_time": "2024-11-13T05:10:48.298664", "exception": false, "start_time": "2024-11-13T05:10:48.296032", "status": "completed" }, "tags": [] }, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "id": "d5f3a8dc", "metadata": { "execution": { "iopub.execute_input": "2024-11-13T05:10:48.304460Z", "iopub.status.busy": "2024-11-13T05:10:48.304198Z", "iopub.status.idle": "2024-11-13T05:10:50.987443Z", "shell.execute_reply": "2024-11-13T05:10:50.986451Z" }, "papermill": { "duration": 2.704494, "end_time": "2024-11-13T05:10:51.005459", "exception": false, "start_time": "2024-11-13T05:10:48.300965", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:50] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:50] ax.utils.notebook.plotting: Please see\n", " (https://ax.dev/tutorials/visualizations.html#Fix-for-plots-that-are-not-rendering)\n", " if visualizations are not rendering.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "from ax.metrics.branin import branin\n", "\n", "from ax.plot.contour import plot_contour\n", "from ax.plot.trace import optimization_trace_single_method\n", "from ax.service.managed_loop import optimize\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import init_notebook_plotting, render\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "id": "5198c3c7", "metadata": { "papermill": { "duration": 0.042448, "end_time": "2024-11-13T05:10:51.087274", "exception": false, "start_time": "2024-11-13T05:10:51.044826", "status": "completed" }, "tags": [] }, "source": [ "## 1. Define evaluation function\n", "\n", "First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics." ] }, { "cell_type": "code", "execution_count": 2, "id": "3a314583", "metadata": { "execution": { "iopub.execute_input": "2024-11-13T05:10:51.173911Z", "iopub.status.busy": "2024-11-13T05:10:51.173414Z", "iopub.status.idle": "2024-11-13T05:10:51.177448Z", "shell.execute_reply": "2024-11-13T05:10:51.176875Z" }, "papermill": { "duration": 0.048853, "end_time": "2024-11-13T05:10:51.178737", "exception": false, "start_time": "2024-11-13T05:10:51.129884", "status": "completed" }, "tags": [] }, "outputs": [], "source": [ "def hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x**2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "id": "2933ea8f", "metadata": { "papermill": { "duration": 0.042335, "end_time": "2024-11-13T05:10:51.263423", "exception": false, "start_time": "2024-11-13T05:10:51.221088", "status": "completed" }, "tags": [] }, "source": [ "If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs." ] }, { "cell_type": "markdown", "id": "bbb4efbd", "metadata": { "papermill": { "duration": 0.046547, "end_time": "2024-11-13T05:10:51.352625", "exception": false, "start_time": "2024-11-13T05:10:51.306078", "status": "completed" }, "tags": [] }, "source": [ "## 2. Run optimization\n", "The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space." ] }, { "cell_type": "code", "execution_count": 3, "id": "6dc92440", "metadata": { "execution": { "iopub.execute_input": "2024-11-13T05:10:51.439485Z", "iopub.status.busy": "2024-11-13T05:10:51.439219Z", "iopub.status.idle": "2024-11-13T05:13:15.922237Z", "shell.execute_reply": "2024-11-13T05:13:15.921486Z" }, "papermill": { "duration": 144.528937, "end_time": "2024-11-13T05:13:15.924213", "exception": false, "start_time": "2024-11-13T05:10:51.395276", "status": "completed" }, "tags": [] }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:51] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='x1', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x2', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x3', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x4', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x5', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x6', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[ParameterConstraint(1.0*x1 + 1.0*x2 <= 20.0)]).\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:51] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:51] ax.modelbridge.dispatch_utils: Calculating the number of remaining initialization trials based on num_initialization_trials=None max_initialization_trials=None num_tunable_parameters=6 num_trials=None use_batch_trials=False\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:51] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:51] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:51] ax.modelbridge.dispatch_utils: `verbose`, `disable_progbar`, and `jit_compile` are not yet supported when using `choose_generation_strategy` with ModularBoTorchModel, dropping these arguments.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:51] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+BoTorch', steps=[Sobol for 12 trials, BoTorch for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:51] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n", "\n", "Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n", "\n", "[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:11:01] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:11:09] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:11:15] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:11:26] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:11:33] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:11:43] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:11:50] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:12:00] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:12:08] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:12:17] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:12:23] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:12:30] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:12:37] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:12:44] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:12:51] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:12:59] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 11-13 05:13:06] ax.service.managed_loop: Running optimization trial 30...\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "id": "3172ec0d", "metadata": { "papermill": { "duration": 0.058541, "end_time": "2024-11-13T05:13:16.053482", "exception": false, "start_time": "2024-11-13T05:13:15.994941", "status": "completed" }, "tags": [] }, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "id": "abb5aa5e", "metadata": { "execution": { "iopub.execute_input": "2024-11-13T05:13:16.150177Z", "iopub.status.busy": "2024-11-13T05:13:16.149460Z", "iopub.status.idle": "2024-11-13T05:13:16.155994Z", "shell.execute_reply": "2024-11-13T05:13:16.155366Z" }, "papermill": { "duration": 0.053696, "end_time": "2024-11-13T05:13:16.157378", "exception": false, "start_time": "2024-11-13T05:13:16.103682", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.0,\n", " 'x2': 0.09297047622460022,\n", " 'x3': 0.48707596520916485,\n", " 'x4': 0.24231039507925528,\n", " 'x5': 0.30778233051364695,\n", " 'x6': 0.6438256679892662}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "id": "7fb1c651", "metadata": { "execution": { "iopub.execute_input": "2024-11-13T05:13:16.247887Z", "iopub.status.busy": "2024-11-13T05:13:16.247397Z", "iopub.status.idle": "2024-11-13T05:13:16.251805Z", "shell.execute_reply": "2024-11-13T05:13:16.251155Z" }, "papermill": { "duration": 0.051378, "end_time": "2024-11-13T05:13:16.253169", "exception": false, "start_time": "2024-11-13T05:13:16.201791", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 0.9021490229201379, 'hartmann6': -2.778408867998504}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "id": "955143cc", "metadata": { "papermill": { "duration": 0.044968, "end_time": "2024-11-13T05:13:16.342693", "exception": false, "start_time": "2024-11-13T05:13:16.297725", "status": "completed" }, "tags": [] }, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "id": "a170bfcb", "metadata": { "execution": { "iopub.execute_input": "2024-11-13T05:13:16.434146Z", "iopub.status.busy": "2024-11-13T05:13:16.433637Z", "iopub.status.idle": "2024-11-13T05:13:16.438115Z", "shell.execute_reply": "2024-11-13T05:13:16.437483Z" }, "papermill": { "duration": 0.051884, "end_time": "2024-11-13T05:13:16.439438", "exception": false, "start_time": "2024-11-13T05:13:16.387554", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "id": "82eda241", "metadata": { "papermill": { "duration": 0.045698, "end_time": "2024-11-13T05:13:16.529935", "exception": false, "start_time": "2024-11-13T05:13:16.484237", "status": "completed" }, "tags": [] }, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "id": "9eb1e29a", "metadata": { "execution": { "iopub.execute_input": "2024-11-13T05:13:16.621876Z", "iopub.status.busy": "2024-11-13T05:13:16.621412Z", "iopub.status.idle": "2024-11-13T05:13:17.156383Z", "shell.execute_reply": "2024-11-13T05:13:17.155723Z" }, "papermill": { "duration": 0.585965, "end_time": "2024-11-13T05:13:17.161047", "exception": false, "start_time": "2024-11-13T05:13:16.575082", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -2.2944264494921254, -2.2905387504400534, -2.2851783163311774, -2.2783538588387593, -2.2700771205038897, -2.2603628406492557, -2.249228711121808, -2.236695322052591, -2.22278609786912, -2.2075272238409553, -2.1909475634831144, -2.173078567184003, -2.153954172464389, -2.1336106963117007, -2.112086720068807, -2.089422967388836, -2.0656621757969464, -2.040848962426252, -2.015029684518115, -1.988252295296843, -1.960566195845069, -1.9320220836189148, -1.9026717982513393, -1.8725681652977733, -1.8417648385803167, -1.8103161417854028, -1.7782769099650388, -1.7457023315834534, -1.7126477917394785, -1.6791687171801963, -1.645320423703732, -1.6111579665281437, -1.5767359941801762, -1.5421086064314937, -1.5073292167816854, -1.4724504199569577, -1.4375238648608846, -1.4026001333795772, -1.3677286254080738, -1.3329574504279305, -1.2983333259283114, -1.263901482924353, -1.2297055787876847, -1.1957876175647286, -1.1621878779192698, -1.1289448487967868, -1.0960951728695372, -1.0636735977835836, -1.031712935191921, -1.0002440275221156 ], [ -2.383494928316253, -2.379383723044727, -2.373736910376813, -2.3665636826191, -2.3578763921044557, -2.347690515307707, -2.3360246063586585, -2.3229002401504273, -2.3083419452898597, -2.292377127184227, -2.2750359816039674, -2.256351399105278, -2.2363588607377043, -2.2150963255011, -2.192604110052878, -2.168924761199944, -2.144102921740263, -2.1181851902465043, -2.0912199754078644, -2.06325734556696, -2.034348874105344, -2.00454748134461, -1.9739072736395322, -1.94248338034559, -1.9103317893453904, -1.877509181816939, -1.8440727669215833, -1.8100801170808325, -1.7755890044989928, -1.7406572395732294, -1.7053425118139476, -1.66970223387672, -1.6337933892824898, -1.597672384375601, -1.5613949050395655, -1.525015778658614, -1.4885888417793034, -1.4521668138907238, -1.4158011777048052, -1.3795420662798723, -1.3434381572910565, -1.3075365747112357, -1.2718827981253404, -1.236520579860139, -1.2014918700706305, -1.1668367498836056, -1.1325933726587425, -1.098797913388234, -1.0654845262173358, -1.0326853100309232 ], [ -2.463914824481579, -2.4595818980346866, -2.453656323196057, -2.446147759351518, -2.4370691433663536, -2.426436651982913, -2.4142696532228314, -2.400590647000895, -2.385425195208062, -2.368801841570411, -2.350752021638046, -2.331309963303399, -2.3105125782914726, -2.288399345105066, -2.2650121839457693, -2.240395324166289, -2.214595164841335, -2.187660129072432, -2.159640512666817, -2.1305883278518225, -2.1005571427033827, -2.069601916981161, -2.0377788350723893, -2.0051451367527466, -1.9717589464744156, -1.9376791018900708, -1.9029649823158952, -1.8676763378276875, -1.8318731196714535, -1.7956153126536547, -1.7589627701569213, -1.7219750524044364, -1.6847112685706307, -1.6472299233076044, -1.6095887682258985, -1.571844658834971, -1.5340534174137996, -1.4962697022447657, -1.4585468836055964, -1.4209369268741896, -1.3834902830602362, -1.3462557870359515, -1.3092805636959017, -1.27260994223368, -1.2362873786805448, -1.2003543868091704, -1.1648504774638995, -1.1298131063379975, -1.095277630178506, -1.061277271360493 ], [ -2.534717512946701, -2.5301660677395983, -2.5239714275578624, -2.5161437016100807, -2.506696380992847, -2.4956462994659168, -2.483013582882524, -2.4688215874901576, -2.4530968273694427, -2.435868891329231, -2.417170349625078, -2.3970366509149166, -2.375506009910108, -2.352619286221938, -2.3284198549424264, -2.3029534695340956, -2.2762681176359703, -2.2484138704220173, -2.2194427261737912, -2.1894084487506777, -2.15836640165906, -2.1263733784356917, -2.0934874300705353, -2.059767690200481, -2.0252741988072875, -1.9900677251513206, -1.9542095906669343, -1.9177614925357622, -1.8807853286409961, -1.8433430245889606, -1.8054963634641255, -1.7673068189602414, -1.7288353925039304, -1.6901424549576878, -1.6512875934574094, -1.612329463905286, -1.573325649602502, -1.534332526467916, -1.4954051352490558, -1.4565970610904961, -1.4179603207824802, -1.379545257969557, -1.3414004465554143, -1.3035726024963141, -1.2661065041316768, -1.229044921156898, -1.1924285523004186, -1.156295971724929, -1.1206835841313003, -1.0856255885038903 ], [ -2.5950452701134727, -2.5902799379739596, -2.5838279474068653, -2.575699836592177, -2.5659096157709893, -2.554474726508655, -2.5414159893107726, -2.526757539814966, -2.510526753835104, -2.492754161586533, -2.47347335147108, -2.452720863848505, -2.4305360752666516, -2.4069610736653306, -2.38204052510884, -2.3558215326387124, -2.3283534878715786, -2.2996879159967527, -2.269878314854263, -2.23897998879609, -2.207049878051752, -2.1741463843335618, -2.1403291934270277, -2.1056590955179577, -2.070197804009877, -2.034007773583264, -1.9971520182421474, -1.9596939300836682, -1.921697099512572, -1.8832251376051015, -1.8443415013061777, -1.805109322119323, -1.765591238921746, -1.7258492355066717, -1.6859444834222335, -1.6459371906409572, -1.6058864565563116, -1.5658501337636082, -1.5258846970412772, -1.4860451199063842, -1.446384759074644, -1.4069552471109317, -1.3678063935115912, -1.328986094414652, -1.290540251089198, -1.2525126973102918, -1.2149451356818055, -1.1778770829260312, -1.1413458241167267, -1.1053863757910887 ], [ -2.644167628704091, -2.639194465346554, -2.632498766523141, -2.6240914750983757, -2.6139870809155004, -2.6022035786718547, -2.5887624138952443, -2.5736884172512102, -2.557009727465799, -2.5387577032016084, -2.5189668242760295, -2.497674582659584, -2.47492136373868, -2.4507503183708597, -2.4252072263012217, -2.398340351546081, -2.370200290383916, -2.340839812623898, -2.3103136968487785, -2.278678560351566, -2.245992684503781, -2.2123158363076594, -2.1777090868948585, -2.142234627740266, -2.105955585361542, -2.0689358352726965, -2.0312398159538123, -1.9929323435887047, -1.9540784283081978, -1.9147430926589002, -1.874991192995816, -1.834887244472484, -1.7944952502742313, -1.7538785357091906, -1.7130995877381534, -1.6722199004879856, -1.631299827255153, -1.590398439465421, -1.5495733930138513, -1.5088808023658535, -1.468375122755499, -1.428109040772049, -1.3881333735797887, -1.3484969769702164, -1.3092466623995478, -1.270427123118854, -1.232080869458907, -1.1942481732875347, -1.1569670216140169, -1.1202730792730673 ], [ -2.6814952688973714, -2.6763217307494234, -2.669397774935872, -2.660734721491977, -2.650347496263559, -2.6382545875312884, -2.624477990537433, -2.6090431401509937, -2.591978831962802, -2.573317132156131, -2.5530932765503414, -2.531345559264929, -2.5081152114984, -2.4834462709608403, -2.457385442540283, -2.4299819508208778, -2.401287385105332, -2.371355537624778, -2.340242235646027, -2.3080051682089637, -2.274703708245668, -2.2403987308472404, -2.2051524284546824, -2.169028123756248, -2.132090081075457, -2.094403317031573, -2.0560334112478755, -2.0170463178723765, -1.97750817866123, -1.9374851383567773, -1.897043163070138, -1.8562478623530598, -1.8151643156150514, -1.7738569035102498, -1.7323891448840656, -1.690823539832858, -1.6492214193906243, -1.607642802315675, -1.5661462594074083, -1.5247887857390787, -1.4836256811471826, -1.4427104392718757, -1.4020946453962044, -1.361827883285021, -1.3219576511775915, -1.2825292870413456, -1.2435859031482916, -1.20516832999053, -1.1673150695072387, -1.1300622575528956 ], [ -2.706591087366139, -2.7012259910302054, -2.6940908956991114, -2.685197468092159, -2.674561022859832, -2.662200478104734, -2.6481382986618174, -2.6324004273789408, -2.6150162046951153, -2.596018276868386, -2.575442493257873, -2.5533277931148097, -2.529716082385094, -2.504652101070719, -2.4781832817390415, -2.4503595998072827, -2.4212334162642293, -2.390859313522169, -2.3592939251191574, -2.326595760014501, -2.292825022239408, -2.2580434266791123, -2.2223140117732307, -2.1857009499269235, -2.148269356427339, -2.1100850976570036, -2.0712145993892888, -2.0317246559400743, -1.9916822409350046, -1.9511543204329698, -1.9102076691242718, -1.8689086902959047, -1.827323240227547, -1.785516457649558, -1.7435525988594454, -1.7014948790558164, -1.659405320409016, -1.6173446073460536, -1.5753719494838707, -1.5335449526002352, -1.4919194979855446, -1.450549630472091, -1.4094874553899503, -1.3687830446512133, -1.3284843521167176, -1.28863713835234, -1.2492849048353487, -1.2104688376256272, -1.172227760472074, -1.1345980972812026 ], [ -2.719178163048654, -2.7136316280361306, -2.7063040117637827, -2.697207294470088, -2.6863571293245134, -2.673772797002257, -2.6594771479318196, -2.6434965324606354, -2.625860719240716, -2.606602802191098, -2.585759096446936, -2.56336902375565, -2.5394749878285316, -2.5141222402012406, -2.4873587371985764, -2.4592349886373506, -2.4298038989361164, -2.3991206013314743, -2.3672422859279902, -2.33422802233152, -2.3001385776347294, -2.2650362305381373, -2.228984582400087, -2.1920483660150616, -2.1542932529213026, -2.1157856600358294, -2.0765925564081327, -2.0367812708727007, -1.9964193013653333, -1.9555741266494011, -1.914313021175457, -1.8727028737714846, -1.8308100108316763, -1.7887000246390317, -1.746437607421928, -1.704086391706723, -1.6617087974885296, -1.6193658866999998, -1.577117225414117, -1.535020754171796, -1.4931326667786122, -1.4515072978677674, -1.4101970194787592, -1.3692521468531438, -1.3287208536009703, -1.28864909634387, -1.2490805488939125, -1.2100565459812382, -1.171616036498605, -1.1337955461874554 ], [ -2.7191444247093335, -2.7134278004228203, -2.705927598809419, -2.696656078113647, -2.685629177202748, -2.672866469360023, -2.6583911037219545, -2.6422297346075023, -2.624412439044805, -2.604972622855469, -2.5839469157098893, -2.5613750556174883, -2.5372997633639907, -2.511766607452863, -2.484823860149982, -2.456522345269146, -2.4269152783707804, -2.396058100077383, -2.364008303236216, -2.330825254682666, -2.296570012376558, -2.2613051386979457, -2.2250945106992157, -2.1880031281158594, -2.150096919939836, -2.111442550356455, -2.072107224838565, -2.0321584971805886, -1.9916640782396111, -1.9506916471316103, -1.9093086656079459, -1.8675821963110175, -1.8255787255781522, -1.783363991430163, -1.7410028173454584, -1.6985589523823912, -1.6560949181722862, -1.6136718632630378, -1.5713494252491924, -1.5291856010788711, -1.4872366258812395, -1.445556860610856, -1.404198688757225, -1.3632124223197541, -1.3226462172002096, -1.2825459981170368, -1.2429553930988144, -1.2039156775678852, -1.1654657279802212, -1.1276419849437844 ], [ -2.7065439175650443, -2.700669695814433, -2.6930179620030525, -2.6836012148787614, -2.6724356242328096, -2.6595409840824282, -2.644940653525416, -2.6286614855172727, -2.6107337438780753, -2.5911910088912027, -2.5700700719090417, -2.547410819431195, -2.523256107168657, -2.4976516246523923, -2.470645750986411, -2.4422894023838726, -2.412635872159317, -2.3817406638810414, -2.349661318414546, -2.316457235610645, -2.2821894914104353, -2.2469206511536113, -2.210714579886446, -2.1736362504713638, -2.1357515503012907, -2.097127087418828, -2.057829996833064, -2.017927747815328, -1.9774879529398883, -1.9365781796160764, -1.8952657648355842, -1.85361763383199, -1.8117001233198753, -1.7695788099480936, -1.7273183445660154, -1.684982292863529, -1.6426329829049688, -1.600331360034854, -1.5581368495890238, -1.516107227799338, -1.474298501233413, -1.4327647950633873, -1.3915582504098218, -1.3507289309586559, -1.3103247390010544, -1.2703913409982999, -1.2309721027268168, -1.1921080340122499, -1.153837743016513, -1.1161973999981263 ], [ -2.6815946612165567, -2.675576375828482, -2.6677950694786787, -2.6582634423068114, -2.6469978389041735, -2.634018201060155, -2.61934800826531, -2.6030142062227273, -2.5850471236755883, -2.5654803779134205, -2.544350769372076, -2.521698165792521, -2.497565376451119, -2.4719980170186564, -2.445044365646604, -2.4167552109172785, -2.3871836923287617, -2.356385134016013, -2.3244168724362027, -2.291338078768722, -2.257209576798626, -2.222093657066317, -2.186053888075809, -2.1491549253595084, -2.1114623191982913, -2.0730423217925376, -2.033961694672342, -1.9942875171235392, -1.9540869963907457, -1.9134272803991745, -1.872375273714053, -1.830997457429894, -1.789359713652169, -1.7475271552011797, -1.7055639611322455, -1.663533218628357, -1.6214967717810302, -1.5795150777327804, -1.537647070610713, -1.49595003363522, -1.4544794797415033, -1.4132890410041679, -1.372430367107571, -1.331953033056605, -1.2919044562747262, -1.252329823188639, -1.2132720253521803, -1.1747716051160357, -1.1368667108052213, -1.0995930613228233 ], [ -2.644673185489558, -2.638525300798663, -2.6306370695425647, -2.6210213529278845, -2.6096946134819214, -2.596676867539547, -2.5819916256262534, -2.565665820989048, -2.5477297265826184, -2.528216860872024, -2.507163882865158, -2.4846104768376494, -2.460599227259883, -2.4351754844797666, -2.4083872217556546, -2.380284884271413, -2.3509212307993006, -2.3203511687065395, -2.2886315830275095, -2.255821160345652, -2.2219802082469546, -2.187170471120792, -2.151454943093076, -2.114897678882023, -2.07756360336752, -2.03951832066184, -2.0008279234618547, -1.9615588034512992, -1.92177746350619, -1.8815503324370486, -1.8409435829787577, -1.8000229537124042, -1.758853575573911, -1.7174998035716393, -1.6760250542998296, -1.634491649796824, -1.592960668257081, -1.5514918020638908, -1.5101432235660956, -1.4689714589771004, -1.428031270728363, -1.3873755485627233, -1.3470552096055959, -1.307119107604549, -1.2676139514803835, -1.2285842332858068, -1.1900721656214248, -1.1521176285133083, -1.11475812571209, -1.0780287503306227 ], [ -2.5963059212714703, -2.5900437114600643, -2.5820716689285486, -2.572402774815565, -2.5610535525865896, -2.5480440204379495, -2.5333976317891445, -2.517141204114325, -2.4993048364183745, -2.4799218157163514, -2.4590285129258485, -2.4366642686306976, -2.412871269220519, -2.3876944139537857, -2.361181173532273, -2.333381440811441, -2.3043473743045446, -2.2741332351677537, -2.2427952183790834, -2.210391278845666, -2.176980953191209, -2.14262517798897, -2.107386105214539, -2.0713269156977114, -2.0345116313533023, -1.9970049269673185, -1.9588719423073038, -1.9201780953140057, -1.8809888971161017, -1.8413697695905094, -1.801385866167928, -1.7611018965572152, -1.720581956032804, -1.6798893598971012, -1.6390864836948245, -1.5982346097188334, -1.5573937803073954, -1.516622658391301, -1.4759783957061199, -1.4355165090404656, -1.3952907648455517, -1.3553530724851794, -1.3157533863584707, -1.2765396170808851, -1.2377575518622206, -1.1994507841739424, -1.161660652752472, -1.1244261899402013, -1.0877840793223568, -1.0517686225755418 ], [ -2.537157706938993, -2.530797128314218, -2.5227646327690154, -2.513073279832534, -2.501739597368211, -2.4887835340698183, -2.474228400287826, -2.4581007974349385, -2.440430536273342, -2.4212505444381565, -2.400596763601583, -2.378508036729878, -2.3550259859304847, -2.330194881428879, -2.3040615022539264, -2.2766749892463984, -2.248086691037885, -2.2183500036758756, -2.187520204595916, -2.155654281662665, -2.122810758018658, -2.0890495134925184, -2.0544316033270453, -2.019019074992264, -1.9828747838489171, -1.946062208424374, -1.9086452660551358, -1.8706881296387239, -1.832255046222183, -1.7934101581356128, -1.754217327356379, -1.714739963764045, -1.6750408579169571, -1.6351820189496757, -1.5952245181559745, -1.5552283387852373, -1.5152522325411213, -1.4753535832304825, -1.4355882779681712, -1.3960105862994725, -1.356673047557393, -1.3176263667263308, -1.2789193190379413, -1.240598663478824, -1.2027090653437744, -1.1652930279227711, -1.12839083336498, -1.0920404927190375, -1.0562777051060155, -1.021135825939969 ], [ -2.468017744738357, -2.4615753031007954, -2.4535057405485623, -2.443822153450073, -2.432541018550216, -2.4196821457297037, -2.4052686193832242, -2.3893267286623026, -2.3718858868812145, -2.3529785404349077, -2.3326400676266976, -2.310908667849877, -2.28782524161143, -2.263433261927114, -2.2377786376554707, -2.210909569373096, -2.1828763984251767, -2.153731449813135, -2.123528869605428, -2.0923244575779485, -2.0601754958068015, -2.0271405739487527, -1.9932794119528296, -1.95865268095107, -1.9233218230764875, -1.8873488709527368, -1.850796267592247, -1.8137266874281086, -1.7762028591898074, -1.7382873913141719, -1.7000426005606442, -1.6615303444746328, -1.62281185831425, -1.5839475970245003, -1.5449970828091517, -1.5060187588143852, -1.46706984940009, -1.428206227434631, -1.389482289007351, -1.3509508359102378, -1.3126629661964015, -1.2746679730784654, -1.237013252385083, -1.1997442187487022, -1.1629042306528108, -1.1265345244222482, -1.0906741571963972, -1.0553599588819265, -1.02062649303997, -0.9865060266220009 ], [ -2.3897834031677547, -2.3832760184319266, -2.3751925938366156, -2.365546221412341, -2.354353272823861, -2.341633352558949, -2.3274092400669204, -2.3117068210890914, -2.2945550084741138, -2.2759856528203937, -2.25603344333505, -2.2347357993439667, -2.2121327529301515, -2.1882668232174303, -2.1631828828536266, -2.136928017281061, -2.109551377412805, -2.0811040263600264, -2.0516387808792516, -2.021210048227823, -1.9898736591317585, -1.9576866975819955, -1.9247073281829834, -1.8909946217816052, -1.8566083801043887, -1.8216089601273062, -1.7860570988946902, -1.7500137394924837, -1.7135398588660964, -1.6766962981547193, -1.639543596192091, -1.602141826798972, -1.5645504404646382, -1.5268281109842299, -1.4890325875856871, -1.4512205530447746, -1.4134474882492527, -1.3757675436343486, -1.3382334178709576, -1.300896244146383, -1.263805484334613, -1.2270088313098018, -1.1905521196128352, -1.1544792446369498, -1.1188320904546063, -1.083650466364438, -1.0489720521943575, -1.014832352355021, -0.9812646585970998, -0.9483000213863433 ], [ -2.3034423092007965, -2.296887179377987, -2.2888127192393837, -2.279231976039058, -2.268161164443237, -2.2556196203077254, -2.2416297437743795, -2.2262169319240623, -2.2094095012727073, -2.191238600444662, -2.171738113403089, -2.150944553660933, -2.128896949936873, -2.105636723759429, -2.081207559557872, -2.0556552678112805, -2.0290276418564774, -2.0013743089814477, -1.9727465764534151, -1.9431972731494873, -1.9127805874728843, -1.8815519022491167, -1.8495676273039297, -1.8168850304285666, -1.7835620674377117, -1.7496572120216438, -1.7152292860865295, -1.680337291265617, -1.6450402422693136, -1.6093970027243027, -1.57346612413034, -1.5373056885393246, -1.5009731555340076, -1.4645252140539728, -1.4280176395843762, -1.391505157188599, -1.3550413108296298, -1.318678339387123, -1.2824670597375807, -1.246456757224605, -1.2106950838046828, -1.1752279641118697, -1.1400995096422104, -1.1053519412162323, -1.071025519835273, -1.0371584860054472, -1.0037870075615496, -0.9709451359826169, -0.9386647711514087, -0.9069756344717961 ], [ -2.210053206844018, -2.203467673395163, -2.1954244425376914, -2.1859364773895207, -2.1750197861812657, -2.1626933767733965, -2.148979200895364, -2.1339020883386475, -2.1174896713830096, -2.0997722997809634, -2.0807829466694234, -2.060557105819395, -2.039132680674073, -2.016549865662781, -1.9928510203123189, -1.9680805367086927, -1.9422847008902722, -1.915511548778298, -1.8878107172721832, -1.8592332911549903, -1.829831646468794, -1.7996592910304356, -1.7687707027651434, -1.737221166538916, -1.7050666101702001, -1.6723634402974863, -1.6391683787719256, -1.6055383002331216, -1.5715300715118379, -1.5372003934859084, -1.5026056459948371, -1.4678017363950775, -1.4328439523116456, -1.397786819112869, -1.3626839626038976, -1.3275879774013521, -1.2925503014163562, -1.2576210968364345, -1.2228491379586792, -1.1882817061873099, -1.1539644924687154, -1.1199415073963017, -1.0862549991764723, -1.0529453796058834, -1.0200511581691152, -0.9876088843252893, -0.9556530980121439, -0.9242162883568844, -0.8933288605450792, -0.8630191107619092 ], [ -2.1107260754180435, -2.104127491834479, -2.096137026768112, -2.086767521231226, -2.076034730445823, -2.0639572792421808, -2.0505566076111084, -2.035856906635657, -2.0198850450732606, -2.00267048690327, -1.9842452001968225, -1.9646435577060655, -1.9439022296076784, -1.9220600688709413, -1.8991579897533526, -1.8752388399566864, -1.8503472670032315, -1.8245295794156666, -1.797833603304489, -1.7703085349839518, -1.7420047902510793, -1.7129738509724604, -1.6832681096300601, -1.6529407124803215, -1.6220454019804023, -1.5906363591313015, -1.5587680463803237, -1.5264950517146159, -1.4938719345634461, -1.4609530741099515, -1.4277925205930013, -1.3944438501570164, -1.3609600237821362, -1.3273932507993158, -1.293794857464775, -1.260215161036187, -1.2267033497590998, -1.1933073691367104, -1.1600738148192864, -1.1270478324118878, -1.0942730244602963, -1.0617913648359911, -1.0296431207014267, -0.9978667821973117, -0.9664989999541452, -0.9355745304911759, -0.9051261895275008, -0.8751848131923752, -0.8457792270851521, -0.8169362230998767 ], [ -2.0066020020900703, -2.0000076073699153, -1.9920905680615462, -1.9828635667713765, -1.9723420623272587, -1.9605442461896845, -1.9474909894722463, -1.9332057807901646, -1.9177146551989102, -1.9010461145268147, -1.8832310394456406, -1.8643025936612865, -1.844296120642844, -1.823249033341957, -1.801200697385472, -1.778192308252918, -1.7542667629757043, -1.7294685269175893, -1.7038434962152265, -1.6774388564737932, -1.650302938325484, -1.6224850704681772, -1.5940354308076432, -1.5650048963293708, -1.5354448923254707, -1.5054072415980553, -1.4749440142532966, -1.4441073786898886, -1.412949454372126, -1.38152216696132, -1.3498771063599175, -1.3180653882007833, -1.286137519289531, -1.2541432674810467, -1.2221315364424041, -1.1901502457235664, -1.1582462165247012, -1.1264650635149973, -1.0948510930225819, -1.0634472078789483, -1.0322948191642145, -1.0014337650620468, -0.9709022369951675, -0.9407367131744448, -0.9109718996567902, -0.8816406789696433, -0.8527740663230295, -0.8244011733941046, -0.7965491796340611, -0.7692433110133611 ], [ -1.898833289159907, -1.8922600876262026, -1.8844361289739895, -1.8753739030168803, -1.8650885322522779, -1.853597729405211, -1.8409217460557452, -1.827083312561225, -1.8121075695257505, -1.7960219911089461, -1.7788563005041773, -1.7606423779526175, -1.7414141616937089, -1.7212075422845587, -1.700060250750226, -1.6780117410538198, -1.6551030673993763, -1.6313767569018214, -1.6068766781765218, -1.5816479064161455, -1.5557365855345608, -1.5291897879663732, -1.502055372716245, -1.474381842254658, -1.4462181988557963, -1.4176138009694177, -1.388618220211338, -1.3592810995471327, -1.329652013230516, -1.2997803290420777, -1.2697150733553695, -1.2395047995363577, -1.209197460158677, -1.1788402834915268, -1.1484796546893161, -1.1181610020826902, -1.0879286889394577, -1.0578259110314454, -1.0278946003096423, -0.9981753349553417, -0.9687072560396854, -0.9395279909881069, -0.9106735840100576, -0.8821784336181857, -0.8540752373251048, -0.8263949435701781, -0.7991667108936485, -0.7724178743410648, -0.7461739190475558, -0.7204584609191864 ], [ -1.788564248557304, -1.7820288972198153, -1.774316560973482, -1.765439504572922, -1.7554124778974205, -1.7442526747355096, -1.731979683141121, -1.718615427564588, -1.7041841030006146, -1.6887121014328244, -1.672227930890522, -1.6547621274675373, -1.6363471606852535, -1.6170173326120676, -1.596808671179342, -1.5757588181592466, -1.5539069122925633, -1.5312934680745653, -1.5079602507241832, -1.4839501478758863, -1.4593070385449562, -1.4340756599250175, -1.4083014725818157, -1.382030524609341, -1.3553093153134208, -1.3281846589839672, -1.3007035493101236, -1.272913024982807, -1.244860037016574, -1.2165913183075112, -1.1881532559260675, -1.1595917666236157, -1.1309521760090666, -1.102279101827403, -1.073616341745577, -1.0450067660231304, -1.0164922154152467, -0.9881134046250384, -0.9599098315897888, -0.9319196928529683, -0.9041798052401664, -0.8767255340230619, -0.8495907277210937, -0.822807659656207, -0.7964069763417065, -0.7704176527523674, -0.7448669544896667, -0.7197804068232642, -0.6951817705582378, -0.6710930246468567 ], [ -1.6769130955641516, -1.6704317999698566, -1.662848427304795, -1.6541749872892482, -1.6444258246831258, -1.6336175794070538, -1.6217691387318562, -1.60890158173123, -1.5950381162289875, -1.5802040085075344, -1.5644265060781393, -1.54773475384571, -1.5301597040311394, -1.5117340202425473, -1.4924919761129027, -1.4724693489452256, -1.4517033088278435, -1.43023230370094, -1.408095940871552, -1.3853348654874924, -1.3619906364910839, -1.3381056005811212, -1.3137227647161853, -1.2888856676942098, -1.263638251342143, -1.2380247318455848, -1.2120894717416342, -1.1858768530887462, -1.1594311523153813, -1.1327964172346898, -1.1060163466955337, -1.0791341733209432, -1.052192549763799, -1.025233438886227, -0.9982980082441886, -0.9714265292320025, -0.9446582812134734, -0.9180314609369729, -0.8915830975014207, -0.8653489731089189, -0.8393635498079303, -0.8136599023986076, -0.7882696576393637, -0.7632229398611816, -0.7385483230637824, -0.7142727895356757, -0.6904216950085689, -0.6670187403257783, -0.644085949574259, -0.6216436546009289 ], [ -1.5649553029379808, -1.5585437221952763, -1.551105386644427, -1.5426520234197794, -1.533197543525275, -1.522758003375237, -1.5113515589044306, -1.498998412433318, -1.4857207525088216, -1.4715426869738666, -1.4564901695507868, -1.4405909202537424, -1.4238743399737106, -1.4063714196060593, -1.3881146441151007, -1.3691378919522186, -1.3494763302639772, -1.3291663063441166, -1.308245235798112, -1.286751487901373, -1.2647242686417006, -1.2422035019436355, -1.2192297095764806, -1.1958438902493562, -1.172087398395419, -1.1480018231435494, -1.1236288679693232, -1.0990102315081078, -1.074187490001631, -1.0492019818355445, -1.0240946946094218, -0.9989061551624426, -0.9736763229577906, -0.9484444872068063, -0.9232491680901997, -0.8981280224084478, -0.8731177539669145, -0.8482540289735768, -0.8235713966985299, -0.7991032156150026, -0.774881585211566, -0.7509372836347797, -0.7272997112908075, -0.7039968405038948, -0.6810551712989873, -0.6584996933456032, -0.636353854070316, -0.6146395329161466, -0.5933770216989384, -0.572585010983488 ], [ -1.4537087176723666, -1.4473818790804798, -1.4401033390701587, -1.4318845171586436, -1.4227388658440523, -1.41268183363642, -1.401730821158404, -1.389905130492508, -1.3772259079836653, -1.363716080736884, -1.349400287079225, -1.33430480128348, -1.3184574528773125, -1.3018875408862898, -1.2846257433819273, -1.2667040227264335, -1.2481555269243556, -1.229014487507386, -1.20931611439246, -1.189096488164512, -1.1683924502442173, -1.1472414914072866, -1.125681639125753, -1.103751344202872, -1.0814893671720138, -1.0589346649261804, -1.036126278038534, -1.0131032192257374, -0.9899043633950403, -0.9665683397029284, -0.9431334260379264, -0.9196374463230076, -0.8961176710139642, -0.8726107211493856, -0.8491524762855237, -0.8257779866256276, -0.8025213896283243, -0.7794158313536068, -0.7564933927779817, -0.7337850212827052, -0.711320467490738, -0.6891282275995152, -0.6672354913277522, -0.6456680955657376, -0.6244504837898536, -0.6036056712737139, -0.5831552161004097, -0.5631191959530978, -0.5435161906346659, -0.5243632702416379 ], [ -1.3441206780486468, -1.3378929015251249, -1.33078757136184, -1.3228157770103017, -1.3139904915699177, -1.3043265363672996, -1.2938405391009795, -1.2825508857190393, -1.2704776662269548, -1.2576426146515207, -1.2440690434142558, -1.2297817723936741, -1.2148070529803627, -1.1991724874516116, -1.1829069440133644, -1.1660404678763228, -1.1486041887500946, -1.1306302251541531, -1.1121515859570787, -1.0932020695659945, -1.07381616119615, -1.0540289286564237, -1.0338759170898562, -1.0133930431093086, -0.9926164887670904, -0.9715825957936367, -0.9503277605344267, -0.9288883300061938, -0.9073004994831196, -0.8856002120113994, -0.8638230602362359, -0.8420041909091376, -0.8201782124255412, -0.79837910572327, -0.7766401388514271, -0.7549937854970453, -0.7334716477334446, -0.7121043832298238, -0.6909216371363693, -0.6699519788332822, -0.6492228437056691, -0.6287604800794875, -0.6085899014268097, -0.5887348439216998, -0.569217729401168, -0.5500596337591833, -0.5312802607756308, -0.5128979213566243, -0.4949295181378343, -0.4773905353785953 ], [ -1.2370573009365806, -1.2309421332196413, -1.224022071044069, -1.216307853959352, -1.20781195855386, -1.1985485646281324, -1.1885335154207795, -1.1777842720450773, -1.1663198623218394, -1.1541608242206178, -1.141329144146683, -1.1278481903352628, -1.1137426416371792, -1.0990384120010506, -1.083762570976636, -1.067943260581431, -1.051609608888329, -1.0347916407058388, -1.0175201857339828, -0.9998267845885497, -0.9817435930937302, -0.9633032852483413, -0.9445389552738905, -0.9254840191534472, -0.9061721160689795, -0.8866370101412052, -0.8669124928703962, -0.8470322866688518, -0.8270299498660308, -0.8069387835557772, -0.7867917406416117, -0.7666213374209484, -0.7464595680323597, -0.7263378220718124, -0.7062868056642286, -0.6863364662559619, -0.6665159213719651, -0.6468533915585989, -0.6273761377095728, -0.6081104029483081, -0.5890813592153696, -0.5703130586847389, -0.5518283901075244, -0.5336490401566516, -0.5157954598210639, -0.4982868358733034, -0.48114106741004475, -0.4643747474414327, -0.44800314948207176, -0.43204021907422074 ], [ -1.133295040968385, -1.127305199383567, -1.1205811103519188, -1.1131331462972165, -1.104973273847747, -1.096115021637376, -1.0865734426344595, -1.076365071147136, -1.0655078746789142, -1.054021200832815, -1.0419257194856644, -1.02924336047628, -1.0159972470720682, -1.002211625497908, -0.9879117908289735, -0.9731240095652538, -0.957875439219887, -0.942194045265965, -0.9261085157970539, -0.9096481742653912, -0.8928428906683641, -0.8757229915585605, -0.8583191692552972, -0.8406623906361513, -0.8227838058855872, -0.8047146575743701, -0.7864861904381074, -0.7681295622160078, -0.7496757559018256, -0.731155493748157, -0.7125991533526771, -0.6940366861408496, -0.6754975385440046, -0.6570105761547872, -0.6386040111237572, -0.6203053330416161, -0.6021412435312592, -0.5841375947526873, -0.566319332001973, -0.5487104405630159, -0.5313338969480125, -0.5142116246393575, -0.4973644544224632, -0.48081208937563785, -0.4645730745600167, -0.4486647714296378, -0.43310333695923253, -0.41790370746531236, -0.40307958707475383, -0.38864344077449287 ], [ -1.0335145565761275, -1.0276618820024566, -1.0211431347779356, -1.0139683055632989, -1.0061488410890347, -0.9976976136066293, -0.9886288853278032, -0.9789582679907944, -0.9687026777159611, -0.9578802853353003, -0.9465104624018914, -0.9346137231054682, -0.9222116623394045, -0.9093268901820699, -0.8959829630717283, -0.8822043119689077, -0.8680161678132319, -0.853444484593117, -0.8385158603563875, -0.8232574564977311, -0.8076969156649305, -0.7918622786299866, -0.7757819004735353, -0.759484366431418, -0.7429984077508022, -0.7263528179000321, -0.7095763694713387, -0.6926977321087107, -0.6757453917847918, -0.6587475717405509, -0.6417321553898035, -0.6247266114776353, -0.6077579217672581, -0.5908525115141747, -0.5740361829696664, -0.5573340521377362, -0.5407704889908733, -0.5243690613304439, -0.508152482457282, -0.4921425627973313, -0.47636016560604955, -0.4608251668538819, -0.44555641937359586, -0.4305717213287357, -0.41588778904103046, -0.40152023419345034, -0.3874835454047818, -0.3737910741512913, -0.36045502499129045, -0.3474864500293803 ], [ -0.9382968550516712, -0.9325922736045282, -0.9262869281426481, -0.9193904154633862, -0.9119136557927896, -0.9038688638986077, -0.8952695156337319, -0.8861303100397272, -0.8764671271612039, -0.8662969817422529, -0.8556379729955806, -0.8445092306534591, -0.8329308575269705, -0.8209238688160604, -0.8085101284277714, -0.7957122825733289, -0.7825536909266753, -0.7690583556373825, -0.7552508484996023, -0.7411562365858118, -0.7268000066595154, -0.7122079886847853, -0.697406278752509, -0.6824211617435193, -0.6672790340473449, -0.6520063266522715, -0.6366294289176283, -0.6211746133329279, -0.6056679615605873, -0.5901352920496119, -0.5746020894968598, -0.5590934364203933, -0.5436339470961052, -0.5282477040943085, -0.5129581976374359, -0.4977882679835494, -0.4827600510230201, -0.4678949272577444, -0.4532134743136407, -0.43873542311804287, -0.4244796178541988, -0.4104639797853368, -0.3967054750209646, -0.3832200862782496, -0.37002278867160804, -0.3571275295441573, -0.34454721233554503, -0.33229368446194374, -0.3203777291658623, -0.30880906127585994 ], [ -0.8481216315678323, -0.8425751244346955, -0.8364899690233469, -0.8298753586352288, -0.8227416835141669, -0.8151005036225447, -0.80696451727051, -0.7983475257184823, -0.7892643938925359, -0.7797310073706677, -0.7697642258157206, -0.7593818330473947, -0.7486024839615685, -0.7374456485197093, -0.7259315530445245, -0.7140811190701467, -0.7019159000058517, -0.6894580158816598, -0.6767300864520579, -0.6637551629404077, -0.6505566587115168, -0.6371582791630489, -0.6235839511282766, -0.6098577520827708, -0.5960038394462842, -0.5820463802681688, -0.5680094815802641, -0.5539171216953143, -0.5397930827217363, -0.5256608845568861, -0.5115437206111061, -0.4974643955036899, -0.4834452649596256, -0.4695081781227315, -0.4556744224864612, -0.4419646716285996, -0.42839893592016415, -0.41499651636230184, -0.40177596168789254, -0.38875502884706703, -0.37595064697798025, -0.36337888494614407, -0.3510549225174363, -0.3389930252117186, -0.32720652286595087, -0.3157077919178031, -0.3045082414032149, -0.29361830264420474, -0.28304742258655, -0.2728040607309066 ], [ -0.763367666945763, -0.7579882477665707, -0.752128843329226, -0.7457982361889954, -0.7390062860404835, -0.7317639041489853, -0.7240830240357808, -0.715976568528503, -0.707458413305145, -0.6985433470769964, -0.689247028571745, -0.6795859404931531, -0.6695773406478562, -0.6592392104430341, -0.6485902009707772, -0.637649576905831, -0.6264371584531397, -0.6149732615899455, -0.6032786368543104, -0.5913744069375996, -0.5792820033428153, -0.5670231023735253, -0.5546195607197002, -0.5420933509067605, -0.52946649687288, -0.5167610099368249, -0.5039988254145656, -0.491201740137466, -0.4783913511182049, -0.4655889956026493, -0.45281569273683886, -0.4400920870680603, -0.4274383940877574, -0.41487434801189993, -0.40241915198136746, -0.39009143085110953, -0.3779091867223357, -0.3658897573569038, -0.3540497775974481, -0.3424051439008376, -0.3309709820762234, -0.31976161830244687, -0.3087905534829946, -0.29807044098007685, -0.28761306775288464, -0.27742933890878996, -0.2675292656601923, -0.2579219566640262, -0.24861561270575416, -0.2396175246749198 ], [ -0.6843151069433177, -0.6791108061167851, -0.673481535897505, -0.6674356631278753, -0.6609825190689363, -0.6541323754702564, -0.6468964172716459, -0.6392867120389389, -0.6313161762517414, -0.6229985385760863, -0.614348300269304, -0.6053806928780125, -0.5961116334029117, -0.5865576771158517, -0.5767359682255403, -0.5666641885979695, -0.5563605047463935, -0.5458435133131583, -0.5351321852720022, -0.5242458090845807, -0.5132039330487544, -0.5020263070787663, -0.4907328241587366, -0.47934346171086617, -0.46787822311852123, -0.4563570796418255, -0.4447999129596436, -0.43322645856691755, -0.4216562502501742, -0.4101085658568534, -0.3986023745658129, -0.3871562858570895, -0.37578850036883477, -0.3645167628182144, -0.353358317151285, -0.34232986407423044, -0.3314475211052098, -0.320726785272298, -0.31018249856884966, -0.29982881626305696, -0.28967917814364125, -0.27974628276865166, -0.27004206476919645, -0.2605776752448534, -0.2513634652725133, -0.24240897253547378, -0.23372291106509024, -0.22531316407294644, -0.21718677983766754, -0.20934997059709315 ], [ -0.6111494126560635, -0.6061272679734091, -0.6007313908854859, -0.5949697297298796, -0.5888510918994461, -0.582385121526181, -0.5755822741508774, -0.5684537884721742, -0.561011655282593, -0.5532685837126181, -0.5452379649167786, -0.5369338333478414, -0.5283708257766422, -0.5195641382256735, -0.5105294809942239, -0.5012830319616421, -0.49184138836300156, -0.4822215172382103, -0.4724407047611902, -0.46251650466031163, -0.45246668594467193, -0.4423091801530436, -0.4320620283434483, -0.42174332804126147, -0.41137118036257875, -0.40096363752724723, -0.3905386509725758, -0.38011402027420615, -0.3697073430751327, -0.3593359662172801, -0.3490169382625762, -0.33876696358207453, -0.32860235818241723, -0.3185390074289495, -0.30859232581402823, -0.29877721890775555, -0.2891080476163734, -0.2795985948611809, -0.27026203477795285, -0.2611109045237089, -0.2521570787642359, -0.2434117469021706, -0.23488539309179057, -0.226587779072965, -0.218527929843072, -0.2107141221722646, -0.20315387595416756, -0.1958539483711753, -0.188820330840888, -0.18205824869809317 ], [ -0.5439667475654543, -0.5391328006185473, -0.5339725067435831, -0.5284933950399989, -0.5227037558144698, -0.516612619847123, -0.5102297349730414, -0.5035655400642711, -0.4966311365100438, -0.4894382573049204, -0.48199923386605825, -0.47432696071163305, -0.4664348581426225, -0.45833683307959966, -0.45004723821479625, -0.44158082964751455, -0.4329527231778283, -0.42417834943952976, -0.41527340805824203, -0.40625382102467095, -0.39713568547596906, -0.3879352260801757, -0.37866874721967625, -0.3693525851695279, -0.3600030604654405, -0.3506364306540975, -0.3412688436153869, -0.3319162916420935, -0.32259456645758655, -0.313319215346158, -0.3041054985639119, -0.29496834819056605, -0.2859223285741965, -0.27698159851194615, -0.26815987530006835, -0.25947040077642325, -0.2509259094678181, -0.24253859894336527, -0.23432010246346724, -0.22628146400218874, -0.21843311570863166, -0.21078485786070889, -0.20334584135233003, -0.19612455274269114, -0.1891288018840256, -0.18236571213201136, -0.17584171313107244, -0.16956253615504302, -0.16353321197232062, -0.15775807119358065 ], [ -0.48278055177368495, -0.47813984964986117, -0.4732163166089345, -0.4680170637163551, -0.46254987296197747, -0.45682317807069117, -0.4508460429331515, -0.44462813773377846, -0.4381797128642548, -0.4315115707214602, -0.42463503549888965, -0.4175619210903059, -0.4103044972333308, -0.4028754540291026, -0.3952878649817572, -0.38755514870841234, -0.3796910294764612, -0.37170949673026676, -0.36362476377380204, -0.3554512257793441, -0.34720341729499277, -0.33889596942555444, -0.3305435668621741, -0.3221609049360233, -0.3137626468703788, -0.30536338140353186, -0.2969775809522202, -0.2886195604816225, -0.2803034372435167, -0.2720430915389097, -0.26385212865543217, -0.2557438421230154, -0.24773117842394587, -0.23982670328530342, -0.2320425696731565, -0.22439048759871105, -0.2168816958369666, -0.20952693564842828, -0.20233642658399842, -0.1953198444425639, -0.1884863014398972, -0.18184432863649025, -0.17540186066083574, -0.16916622275356252, -0.1631441201467584, -0.15734162978184818, -0.15176419435860766, -0.14641661869732403, -0.14130306838582674, -0.13642707067316895 ], [ -0.42752904764318667, -0.42308564949756156, -0.4183990986684125, -0.413476091204885, -0.40832391131457946, -0.40295041367513323, -0.39736400364615604, -0.3915736154509755, -0.3855886884074362, -0.37941914129641574, -0.3730753449657069, -0.36656809327543394, -0.3599085724991214, -0.3531083293019564, -0.3461792374245517, -0.339133463206624, -0.3319834300904238, -0.32474178224844974, -0.3174213474839029, -0.3100350995555046, -0.30259612008066766, -0.29511756017257046, -0.2876126019674487, -0.28009442019834896, -0.2725761439707264, -0.2650708188936233, -0.2575913697176734, -0.2501505636280179, -0.24276097433620303, -0.23543494711049762, -0.2281845648786831, -0.22102161553136945, -0.21395756054729065, -0.20700350505481424, -0.2001701694362491, -0.19346786257332993, -0.18690645682367957, -0.18049536480911266, -0.17424351808735072, -0.16815934776924857, -0.16225076713385111, -0.15652515628383679, -0.15098934887387183, -0.1456496209345306, -0.14051168180445117, -0.13558066717359396, -0.13086113423075263, -0.12635705889899418, -0.12207183513342112, -0.11800827624671384 ], [ -0.3780834227444655, -0.373840410925825, -0.369390162737795, -0.3647389639192343, -0.3598936129827542, -0.3548614049790063, -0.3496501134174125, -0.34426797040547147, -0.33872364507734304, -0.333026220390728, -0.32718516837892353, -0.32121032395246196, -0.3151118573517199, -0.3089002453584385, -0.30258624138004914, -0.2961808445260625, -0.2896952678006357, -0.2831409055394982, -0.2765293002229485, -0.2698721087994135, -0.26318106865619373, -0.25646796337538247, -0.2497445884136711, -0.24302271684468624, -0.23631406530181998, -0.22963026025798605, -0.2229828047766912, -0.21638304586590884, -0.20984214256281342, -0.20337103487330943, -0.19698041368556118, -0.19068069177142988, -0.18448197598390148, -0.1783940407522261, -0.17242630296967654, -0.16658779836161597, -0.16088715941393517, -0.15533259493399487, -0.14993187130795405, -0.14469229550995033, -0.13962069990991277, -0.13472342891803935, -0.13000632749510233, -0.125474731548881, -0.12113346022811855, -0.11698681011664502, -0.11303855132158824, -0.10929192544112576, -0.10574964538887854, -0.1024138970440387 ], [ -0.3342564448212266, -0.33021594031305146, -0.32600046810334943, -0.3216159098899328, -0.3170685919293849, -0.31236527020170374, -0.3075131139640038, -0.30251968774842863, -0.29739293186696253, -0.2921411414930524, -0.28677294439688117, -0.2812972774176993, -0.2757233617627748, -0.2700606772282219, -0.2643189354422638, -0.2585080522361677, -0.25263811925236934, -0.2467193749029094, -0.24076217479443263, -0.23477696173846618, -0.22877423546758013, -0.22276452217931197, -0.2167583440303692, -0.21076618870363484, -0.2047984791699089, -0.19886554376507037, -0.19297758670152054, -0.18714465913031497, -0.18137663086738942, -0.1756831628936798, -0.17007368073484253, -0.16455734882162565, -0.15914304592683048, -0.15383934176925051, -0.14865447486895367, -0.1435963317319593, -0.13867242743560393, -0.13388988767891652, -0.129255432355057, -0.12477536069535722, -0.12045553802690989, -0.116301384177806, -0.11231786355631745, -0.10850947692238344, -0.10488025486188257, -0.10143375296634105, -0.0981730487129655, -0.09510074003228464, -0.09221894554325527, -0.08952930642846679 ], [ -0.29581127835572124, -0.29197446037360797, -0.28799144252418135, -0.2838677101726298, -0.279609131921823, -0.27522194612156503, -0.27071274597687467, -0.26608846330392355, -0.2613563509886998, -0.2565239642098819, -0.25159914049336185, -0.24658997867162558, -0.2415048168265581, -0.2363522092992668, -0.23114090285509226, -0.22587981209617058, -0.22057799421760926, -0.21524462320656457, -0.20988896358627918, -0.20452034380930695, -0.19914812940590154, -0.19378169599467576, -0.1884304022632538, -0.18310356302672637, -0.17781042247123935, -0.17256012768901863, -0.16736170260960215, -0.1622240224299546, -0.15715578864357949, -0.15216550476562485, -0.14726145284745218, -0.1424516708701028, -0.13774393110166838, -0.1331457194987089, -0.12866421622666124, -0.12430627736860023, -0.1200784178858667, -0.11598679588791339, -0.11203719826235015, -0.1082350277095897, -0.1045852912197438, -0.10109259002256665, -0.0977611110342792, -0.09459461981813222, -0.0915964550685453, -0.08876952462171672, -0.086116302988688, -0.08363883040007358, -0.08133871334501364, -0.07921712658047353 ], [ -0.26247029210718575, -0.25883742176239677, -0.2550837920475687, -0.251214501020505, -0.24723497522095506, -0.24315095746593662, -0.23896849343250393, -0.23469391707038023, -0.23033383489250903, -0.225895109197073, -0.22138484027973881, -0.2168103476999068, -0.21217915066939508, -0.20749894763636734, -0.2027775951413664, -0.19802308602593244, -0.1932435270775904, -0.18844711619782983, -0.18364211918214335, -0.1788368462031802, -0.1740396280896177, -0.1692587924944161, -0.1645026400467574, -0.15977942058207584, -0.15509730954427847, -0.15046438465342993, -0.1458886029309061, -0.14137777817230224, -0.13693955895616805, -0.13258140727406864, -0.12831057786439037, -0.12413409832891809, -0.12005875010733358, -0.11609105038067391, -0.11223723497021043, -0.10850324229343944, -0.10489469843373733, -0.10141690337491083, -0.09807481844628751, -0.09487305501823495, -0.09181586448210366, -0.08890712954253577, -0.08615035684398598, -0.08354867094712326, -0.08110480966459432, -0.07882112075947612, -0.07669956000360734, -0.07474169058697289, -0.07294868386338726, -0.07132132141194825 ], [ -0.2339236705042127, -0.23049411849606394, -0.2269661147501718, -0.22334438023866987, -0.21963391585528647, -0.2158399914359982, -0.21196813373515855, -0.20802411339369808, -0.2040139309409087, -0.19994380187602157, -0.1958201408803395, -0.1916495452149718, -0.18743877736333225, -0.18319474698133442, -0.1789244922217551, -0.1746351605024461, -0.17033398879095352, -0.1660282834806469, -0.16172539993562018, -0.15743272178344758, -0.15315764003627497, -0.148907532121747, -0.14468974090590203, -0.14051155379035674, -0.1363801819659144, -0.13230273990414032, -0.12828622516740007, -0.12433749861649812, -0.1204632650932046, -0.11667005465281366, -0.11296420441929955, -0.10935184113274887, -0.10583886445548807, -0.1024309310997692, -0.0991334398360022, -0.09595151743640062, -0.09289000560447935, -0.08995344893624846, -0.0871460839540954, -0.08447182924935881, -0.08193427676444398, -0.07953668424004612, -0.07728196884770999, -0.07517270202253001, -0.07321110550533583, -0.07139904859828661, -0.06973804663235916, -0.06822926063987922, -0.06687349821996535, -0.06567121557961364 ], [ -0.20983766780900426, -0.206609946143001, -0.20330315749953698, -0.1999216570651483, -0.1964700371823026, -0.19295311753302347, -0.18937593442686684, -0.1857437292244819, -0.18206193593215614, -0.17833616800682606, -0.17457220441491772, -0.17077597499212338, -0.16695354515474714, -0.16311110001656537, -0.15925492796823149, -0.15539140377905858, -0.15152697128358295, -0.14766812571754606, -0.14382139576990371, -0.13999332541910048, -0.13619045562316268, -0.13241930593415185, -0.12868635610813128, -0.12499802778211755, -0.121360666289415, -0.11778052268430372, -0.11426373604633777, -0.11081631613334975, -0.107444126450847, -0.10415286780370692, -0.10094806239393694, -0.09783503852589359, -0.09481891597761138, -0.09190459209388124, -0.08909672865347573, -0.08639973955935976, -0.0838177793969982, -0.08135473290188877, -0.07901420537329629, -0.07679951406685326, -0.07471368059421135, -0.07275942435336047, -0.07093915700856268, -0.06925497803409475, -0.06770867133122305, -0.06630170292305226, -0.06503521972708615, -0.06391004940060996, -0.06292670124933053, -0.0620853681850968 ], [ -0.1898623714034574, -0.1868341691453913, -0.1837435822016923, -0.1805946122357498, -0.1773914606745799, -0.17413851999189867, -0.17084036422666338, -0.1675017387633172, -0.16412754940352114, -0.16072285076266724, -0.15729283402777472, -0.15384281411661926, -0.1503782162809819, -0.14690456219980286, -0.14342745561070125, -0.13995256753080187, -0.13648562112009144, -0.13303237624251296, -0.1295986137818046, -0.12619011977057248, -0.12281266939235036, -0.11947201091732018, -0.11617384963305899, -0.1129238318320328, -0.1097275289176537, -0.10659042169045418, -0.10351788487545999, -0.10051517195096271, -0.09758740033782465, -0.09473953700700133, -0.09197638456129487, -0.08930256784536894, -0.08672252113582479, -0.08424047596064543, -0.08186044959457561, -0.0795862342740532, -0.07742138717211788, -0.0753692211703747, -0.07343279646151979, -0.0716149130122532, -0.06991810391254616, -0.06834462963327892, -0.06689647321020753, -0.06557533636809232, -0.06438263659464372, -0.06331950516972684, -0.062386786151069296, -0.06158503631350731, -0.060914526034659855, -0.060375241115835365 ], [ -0.1736388683329778, -0.170807091401039, -0.16792713572432494, -0.165002662553982, -0.16203750045305565, -0.15903563761481765, -0.15600121353128704, -0.1529385100335785, -0.1498519417287124, -0.14674604586050033, -0.1436254716249855, -0.14049496897366975, -0.13735937694042422, -0.13422361153046714, -0.13109265321216423, -0.12797153405458583, -0.12486532455577881, -0.12177912020850945, -0.1187180278518789, -0.11568715185858025, -0.11269158020876713, -0.10973637050243557, -0.10682653596292302, -0.10396703148458619, -0.101162739777935, -0.09841845766541923, -0.09573888258080832, -0.09312859932448914, -0.09059206712622658, -0.08813360706584883, -0.08575738990099246, -0.0834674243494844, -0.08126754587214458, -0.0791614059997483, -0.07715246224565508, -0.0752439686431452, -0.07343896694386332, -0.07174027851093567, -0.07015049693731634, -0.0686719814167972, -0.06730685089179522, -0.06605697899866325, -0.06492398982775072, -0.0639092545118618, -0.06301388865313717, -0.0622387505946691, -0.0615844405394993, -0.0610513005159109, -0.06063941518426286, -0.06034861347696263 ], [ -0.16080573646555218, -0.1581665514332854, -0.15549114484583149, -0.15278285138938852, -0.15004514511495703, -0.1472816327274673, -0.14449604632485402, -0.14169223560446054, -0.13887415955672877, -0.13604587766861276, -0.1332115406616401, -0.13037538079189248, -0.12754170174148194, -0.1247148681332676, -0.12189929470264382, -0.11909943516216126, -0.11631977079654776, -0.11356479882734616, -0.11083902058787654, -0.10814692955054372, -0.10549299924964206, -0.10288167114375735, -0.10031734246260826, -0.09780435408371013, -0.09534697848456675, -0.09294940781622985, -0.09061574214393686, -0.08834997790024413, -0.08615599659549944, -0.08403755382976708, -0.08199826864931237, -0.08004161328956749, -0.07817090334509735, -0.07638928840546744, -0.0746997431941051, -0.07310505924525357, -0.07160783715193886, -0.07021047941550695, -0.06891518392480134, -0.06772393809038602, -0.0666385136564358, -0.06566046221001365, -0.06479111140445681, -0.06403156191049109, -0.06338268510554501, -0.0628451215085103, -0.0624192799639578, -0.06210533757654513, -0.06190324039309081, -0.061812704826539 ], [ -0.15100480750507528, -0.1485536893394922, -0.14607628340555234, -0.14357561229780935, -0.14105481410131582, -0.13851713658724485, -0.13596593094460674, -0.13340464506158167, -0.13083681637214117, -0.12826606428576026, -0.12569608222009587, -0.12313062925856488, -0.12057352145672162, -0.11802862282325666, -0.11549983600323899, -0.11299109269299201, -0.1105063438175804, -0.10804954950342716, -0.10562466887994726, -0.10323564974533705, -0.10088641813276755, -0.0985808678141773, -0.09632284977964611, -0.0941161617309666, -0.09196453762846091, -0.08987163733037395, -0.08784103636424534, -0.08587621586956873, -0.08398055275075356, -0.08215731007891125, -0.08040962778032534, -0.07874051364859236, -0.07715283471637502, -0.07564930902146139, -0.07423249780041918, -0.0729047981415365, -0.07166843612698015, -0.07052546049218922, -0.06947773682844915, -0.06852694235238344, -0.06767456126375371, -0.0669218807105123, -0.06626998737747636, -0.06571976471234142, -0.06527189080002282, -0.06492683689350653, -0.06468486660655537, -0.06454603577073492, -0.06451019295632499, -0.06457698065379902 ], [ -0.1438861730172909, -0.14161795661140641, -0.13933158270032175, -0.13702977677742634, -0.13471535960362868, -0.13239124224565713, -0.13006042072436863, -0.1277259702830671, -0.1253910392876595, -0.12305884277223633, -0.1207326556454793, -0.11841580557501508, -0.11611166556858066, -0.11382364627251829, -0.11155518800974851, -0.10930975258092057, -0.1070908148539148, -0.10490185416827436, -0.102746345582438, -0.1006277509928486, -0.09854951015509306, -0.09651503163820274, -0.09452768374407294, -0.0925907854246607, -0.0907075972301884, -0.08888131232197072, -0.08711504758376087, -0.0854118348655809, -0.08377461239395356, -0.08220621638221393, -0.08070937287417113, -0.07928668985383225, -0.07794064965316039, -0.07667360168893134, -0.07548775555868736, -0.0743851745245665, -0.0733677694123851, -0.07243729295182577, -0.07159533458189926, -0.07084331574403369, -0.0701824856831863, -0.06961391777533354, -0.06913850639748698, -0.06875696435414702, -0.06846982087172349, -0.06827742017004113, -0.06817992061754785, -0.0681772944743142, -0.06826932822435094, -0.06845562349617929 ], [ -0.13911242611840458, -0.13702136139947863, -0.13491867762356125, -0.13280681858319587, -0.13068830636089512, -0.12856573714714148, -0.12644177673136536, -0.12431915567274221, -0.12220066415916853, -0.12008914656426206, -0.1179874957137671, -0.11589864687423479, -0.11382557147835037, -0.11177127060276515, -0.10973876821570927, -0.1077311042130984, -0.10575132726317304, -0.10380248748104015, -0.10188762895569725, -0.1000097821532916, -0.09817195622144159, -0.09637713122042502, -0.09462825030793354, -0.09292821190485079, -0.09127986187019077, -0.089685985713851, -0.08814930087625372, -0.08667244910422056, -0.08525798895255132, -0.0839083884407803, -0.08262601789441404, -0.08141314299965641, -0.08027191810016909, -0.07920437976380212, -0.07821244064647426, -0.07729788367947554, -0.0764623566054039, -0.07570736688675106, -0.0750342770098209, -0.07444430020517634, -0.07393849660423069, -0.0735177698498708, -0.07318286417717057, -0.07293436197832792, -0.07277268186392605, -0.07269807723053023, -0.07271063534244182, -0.07281027693321163, -0.07299675633023017, -0.07326966210341379 ] ], "zauto": true, "zmax": 2.719178163048654, "zmin": -2.719178163048654 }, { "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.3203976555625479, 0.32190723797973836, 0.32502894931581217, 0.32969793113278084, 0.33582505899293785, 0.3433026417252992, 0.3520105151783277, 0.3618218323280112, 0.3726080638691272, 0.3842429629097056, 0.39660545120591256, 0.4095815230853291, 0.42306533566552346, 0.4369596747815416, 0.45117597412909194, 0.4656340369700011, 0.4802615768150156, 0.49499366244937476, 0.5097721265480528, 0.5245449767348208, 0.5392658328731695, 0.5538934037434323, 0.5683910090659189, 0.5827261481746918, 0.5968701137948592, 0.6107976477628719, 0.6244866347391759, 0.6379178297008179, 0.6510746150643356, 0.6639427835392648, 0.6765103431595956, 0.6887673413269335, 0.700705705089571, 0.7123190952553213, 0.7236027722817531, 0.7345534722002476, 0.74516929110881, 0.755449577013664, 0.7653948280134506, 0.7750065960049876, 0.7842873952488871, 0.7932406152696413, 0.8018704376807425, 0.8101817566233372, 0.8181801025889982, 0.8258715694653204, 0.833262744698828, 0.8403606425146098, 0.8471726401674169, 0.8537064172257921 ], [ 0.31031704644384184, 0.3119566934247444, 0.31525951753464276, 0.32015359286709266, 0.3265412945713593, 0.3343058376153384, 0.34331813049264637, 0.35344314553969075, 0.3645452831700596, 0.37649249852817934, 0.3891591924866171, 0.40242801629111646, 0.4161908063514354, 0.430348874873433, 0.4448128576390709, 0.4595022816028025, 0.47434497448663304, 0.48927640269335715, 0.5042389950496042, 0.5191814882595357, 0.5340583145400324, 0.5488290414234133, 0.5634578668998507, 0.5779131688728572, 0.5921671054971344, 0.60619526175364, 0.6199763371627653, 0.6334918695479278, 0.6467259900411113, 0.6596652049403332, 0.6722982005053187, 0.6846156672623752, 0.6966101408538548, 0.7082758568966242, 0.7196086177008695, 0.730605669043708, 0.7412655854929089, 0.7515881630373269, 0.7615743180061747, 0.7712259914527294, 0.7805460583432411, 0.7895382410321071, 0.7982070266229067, 0.8065575879143743, 0.8145957077132708, 0.8223277063644022, 0.8297603724036078, 0.8369008962838813, 0.8437568071592914, 0.850335912737189 ], [ 0.3009617685920808, 0.3027200659734172, 0.3061906705169138, 0.31129450473294146, 0.3179253883374797, 0.3259574653969995, 0.3352528425646133, 0.3456685372972707, 0.35706218320156674, 0.36929628634562967, 0.3822410884069238, 0.3957762451874193, 0.40979158737579563, 0.4241872254204006, 0.43887322211723284, 0.4537690069677724, 0.46880265845451485, 0.48391014008673006, 0.4990345449956228, 0.514125381357443, 0.5291379154481977, 0.5440325789899412, 0.5587744411368792, 0.573332741777277, 0.5876804809059747, 0.6017940580202394, 0.6156529553744768, 0.6292394592076191, 0.6425384135434253, 0.6555370017406706, 0.6682245515661073, 0.680592360137218, 0.6926335356126584, 0.7043428529862878, 0.7157166217635055, 0.7267525636679019, 0.7374496988459422, 0.7478082393122198, 0.7578294886129058, 0.7675157468851476, 0.7768702206598198, 0.7858969368982931, 0.7946006608741429, 0.8029868176111543, 0.8110614166721084, 0.8188309801609509, 0.8263024738559595, 0.83348324143506, 0.8403809417879355, 0.847003489434223 ], [ 0.2925138958725016, 0.2943707809119835, 0.2979857364158827, 0.30327281322501565, 0.3101176132082566, 0.3183856155844304, 0.3279305934239937, 0.3386021175922068, 0.35025157238560733, 0.36273651058827555, 0.3759234640473576, 0.38968948034237344, 0.40392270271627884, 0.4185222895303095, 0.43339791682521983, 0.448469047280453, 0.46366409402541503, 0.47891956357348087, 0.49417922927544783, 0.5093933636606639, 0.5245180427193392, 0.5395145255096697, 0.554348706731411, 0.5689906367875904, 0.583414102419051, 0.5975962605950502, 0.611517318545306, 0.6251602533454513, 0.6385105651436911, 0.6515560588358691, 0.6642866496983232, 0.6766941891405555, 0.6887723073282155, 0.7005162699468442, 0.7119228468300183, 0.7229901905666484, 0.7337177235374112, 0.7441060321161049, 0.7541567670143483, 0.7638725489533318, 0.7732568790193516, 0.7823140532051401, 0.7910490807604167, 0.7994676060758912, 0.807575833908011, 0.8153804578193752, 0.8228885917639932, 0.8301077047891419, 0.8370455588579294, 0.8437101498200963 ], [ 0.2852743510690865, 0.2871992103752545, 0.29092204404059185, 0.29635087652258735, 0.30336404764357455, 0.31181938009726257, 0.3215633155012012, 0.3324389213291613, 0.34429217622340164, 0.3569763986432385, 0.370354995061336, 0.384302857583941, 0.3987067745177498, 0.41346518065596616, 0.4284875077163424, 0.44369332531443934, 0.45901140198676177, 0.4743787683911436, 0.4897398305914433, 0.5050455580411984, 0.520252755853847, 0.5353234217913575, 0.550224183221495, 0.5649258066920919, 0.5794027717746468, 0.5936329007851052, 0.6075970364716156, 0.6212787605000045, 0.6346641464051689, 0.647741541516301, 0.6605013731547894, 0.6729359751212504, 0.6850394311237732, 0.6968074323535158, 0.7082371468913932, 0.7193270990380893, 0.7300770570071059, 0.7404879277148421, 0.7505616576501677, 0.7603011390150268, 0.7697101205030757, 0.7787931222300007, 0.7875553544511944, 0.7960026398033603, 0.8041413388893407, 0.8119782790924537, 0.8195206865600329, 0.8267761213374049, 0.8337524156647328, 0.8404576154713297 ], [ 0.2796482659101684, 0.28159853735548057, 0.2853772811181106, 0.2908881075037654, 0.29800389835635027, 0.3065766541644022, 0.3164472145463589, 0.3274536736839359, 0.3394378840568872, 0.3522499446929739, 0.3657509000039549, 0.3798140276018377, 0.3943251159618487, 0.40918208284484975, 0.4242942079297523, 0.4395811752780454, 0.4549720556839677, 0.4704043091513614, 0.4858228525520343, 0.501179214091083, 0.5164307814493997, 0.5315401417469445, 0.5464745067397471, 0.5612052144707232, 0.5757072979417113, 0.5899591116048499, 0.6039420071673726, 0.6176400511076563, 0.6310397772598434, 0.6441299687545441, 0.6569014644604173, 0.6693469858374675, 0.681460980783575, 0.6932394816350591, 0.7046799749777138, 0.7157812813460425, 0.7265434432448599, 0.7369676202279393, 0.7470559900210283, 0.7568116548883862, 0.7662385526191354, 0.775341371657258, 0.7841254700214471, 0.7925967977618071, 0.800761822782717, 0.8086274599275093, 0.8162010032731791, 0.8234900616238979, 0.8305024972222028, 0.8372463677177159 ], [ 0.2761104502952162, 0.278031523905564, 0.281797835572996, 0.2873110732067512, 0.29444145624904433, 0.3030379712146474, 0.3129384461461242, 0.3239782284765644, 0.33599684307740074, 0.3488425397679247, 0.36237498315022193, 0.37646649108322955, 0.39100224503765724, 0.40587983825662727, 0.42100844369407303, 0.43630780119180174, 0.4517071548667761, 0.46714422028920183, 0.48256422515039665, 0.49791904351080235, 0.51316642905044, 0.5282693442181118, 0.5431953776744738, 0.5579162404474304, 0.5724073307515392, 0.5866473578053364, 0.6006180157958034, 0.614303700134791, 0.6276912591813658, 0.6407697755862396, 0.653530372310471, 0.6659660391651055, 0.6780714764100068, 0.6898429525446409, 0.7012781739302313, 0.7123761643119741, 0.7231371526721051, 0.7335624681491282, 0.743654441013925, 0.7534163089071471, 0.7628521277205572, 0.771966686653179, 0.7807654270956985, 0.7892543650972665, 0.7974400172508214, 0.8053293298988607, 0.8129296116134421, 0.8202484689439153, 0.8272937454550404, 0.8340734640980982 ], [ 0.27514950647364794, 0.2769767922320018, 0.2806479000131148, 0.28606586999331907, 0.2931019773105424, 0.3016059383846984, 0.3114160109441852, 0.3223677307303369, 0.3343006398614752, 0.3470629003508102, 0.3605140373724415, 0.37452621632681643, 0.3889844782703269, 0.4037863024723242, 0.4188407811139382, 0.4340676081993657, 0.4493960156318733, 0.464763737417132, 0.4801160465940202, 0.4954048855341552, 0.5105880953449239, 0.5256287414312077, 0.5404945276758676, 0.5551572896681557, 0.5695925569136079, 0.5837791743278697, 0.5976989741279738, 0.6113364902310621, 0.6246787083030018, 0.6377148455860402, 0.6504361555353046, 0.662835753092923, 0.6749084571241708, 0.6866506471380703, 0.6980601319245674, 0.709136028172185, 0.719878647494242, 0.7302893905979173, 0.7403706475871595, 0.7501257036051266, 0.7595586492008186, 0.768674294953217, 0.7774780900090636, 0.78597604429115, 0.7941746542157816, 0.8020808318235839, 0.8097018372791789, 0.8170452147343689, 0.8241187315779076, 0.8309303211140558 ], [ 0.2771960129041411, 0.2788596079877009, 0.28234385365173426, 0.2875568108248459, 0.29437507262029405, 0.3026534477097909, 0.31223468556025596, 0.3229580138466682, 0.3346658207562371, 0.34720832897065895, 0.3604464570712781, 0.3742532339527649, 0.38851416619385315, 0.40312691455120886, 0.4180005603443234, 0.4330546644153431, 0.4482182545290332, 0.4634288258011553, 0.4786314022489372, 0.49377768309948156, 0.5088252819894283, 0.5237370579489475, 0.5384805319951151, 0.5530273807541551, 0.5673529977512247, 0.5814361131642584, 0.5952584634964396, 0.6088045035090976, 0.6220611537124833, 0.6350175776450662, 0.6476649840359994, 0.6599964497194728, 0.672006759848741, 0.6836922625447822, 0.6950507356173903, 0.7060812634240262, 0.7167841222935547, 0.7271606732469028, 0.7372132610028563, 0.7469451184717861, 0.7563602761192024, 0.765463475729862, 0.7742600882261724, 0.7827560352954953, 0.790957714662763, 0.7988719289102094, 0.8065058177971545, 0.8138667940715137, 0.8209624827926763, 0.8278006642039183 ], [ 0.2825496811927508, 0.28398104348200837, 0.2871864938041815, 0.292082546677932, 0.29855526078747213, 0.3064689257432606, 0.31567499993424164, 0.3260201560819912, 0.3373527586288415, 0.34952755372998484, 0.3624086844429331, 0.37587132343758417, 0.3898022710408771, 0.40409984402011817, 0.4186733216450955, 0.4334421482086026, 0.4483350302737003, 0.46328901824341334, 0.47824862599125706, 0.49316501745725677, 0.5079952728157618, 0.5227017366942559, 0.5372514450357827, 0.5516156241030575, 0.5657692537925414, 0.5796906871623654, 0.5933613184193698, 0.6067652922645507, 0.6198892482824127, 0.6327220948714377, 0.645254807990405, 0.6574802507086541, 0.6693930101850347, 0.6809892492583322, 0.6922665703149022, 0.7032238895135368, 0.7138613198006596, 0.7241800614483058, 0.7341822991001253, 0.7438711045232373, 0.7532503444417896, 0.7623245929764194, 0.7710990483366399, 0.7795794535139878, 0.7877720208056039, 0.795683360063267, 0.8033204106139245, 0.8106903768363166, 0.8178006674059367, 0.824658838238701 ], [ 0.2913263748165335, 0.29246527743793505, 0.2953092775317719, 0.299785891091227, 0.3057939399111777, 0.31321089667056734, 0.32190069183359477, 0.33172098304936704, 0.34252923350665393, 0.3541873174436921, 0.3665646667122511, 0.3795401537767064, 0.39300298346861834, 0.406852869612392, 0.42099973635707816, 0.4353631327671443, 0.4498714981627102, 0.46446137215480526, 0.47907660950614406, 0.4936676353788584, 0.5081907596117958, 0.522607557580316, 0.536884318296359, 0.5509915563991504, 0.5649035825917067, 0.5785981262020862, 0.592056003415588, 0.6052608250189128, 0.618198738015868, 0.6308581960888735, 0.6432297545147412, 0.6553058857530006, 0.6670808124877164, 0.6785503554092465, 0.6897117934683971, 0.7005637347240096, 0.7111059962403969, 0.7213394917783974, 0.7312661262685991, 0.7408886962626313, 0.7502107957331203, 0.7592367267391863, 0.7679714145959301, 0.7764203272864545, 0.7845893989363442, 0.7924849572355853, 0.8001136547436739, 0.8074824040519513, 0.8145983168045405, 0.821468646597018 ], [ 0.30344160648109714, 0.30424128194739286, 0.3066580898830496, 0.31063181519987443, 0.31607596860718107, 0.3228836436450977, 0.3309339894664564, 0.3400984844355008, 0.3502464188812338, 0.36124926893149073, 0.3729838857005259, 0.38533459337334647, 0.3981943804542883, 0.4114653965463866, 0.4250589550728218, 0.43889521041126833, 0.45290264005192044, 0.4670174267177766, 0.48118280556050375, 0.49534841846905564, 0.5094697006710026, 0.5235073130667489, 0.5374266259190178, 0.5511972545598718, 0.5647926448179583, 0.5781897042611314, 0.5913684746248802, 0.6043118406265926, 0.617005270526301, 0.6294365841381804, 0.641595744428398, 0.6534746692945188, 0.665067060573887, 0.6763682477534118, 0.6873750442408932, 0.6980856144046802, 0.7084993498938903, 0.7186167540176032, 0.7284393331913178, 0.7379694946559565, 0.7472104498422467, 0.7561661228946914, 0.764841063987591, 0.7732403671633803, 0.7813695925033589, 0.7892346925048073, 0.7968419425883843, 0.8041978756972937, 0.8113092209763795, 0.8181828465365163 ], [ 0.3186329141844231, 0.319062106182035, 0.32100658529629184, 0.32441838797648326, 0.329226148874263, 0.33533952227633496, 0.34265428637485545, 0.3510575113066816, 0.36043229399063204, 0.37066174270688435, 0.381632074680844, 0.39323483311062996, 0.40536832211224716, 0.41793840246727104, 0.43085880002465016, 0.4440510658631723, 0.4574443042283782, 0.4709747585684209, 0.4845853221415016, 0.4982250196572209, 0.5118484907321376, 0.5254154942660487, 0.5388904445213387, 0.5522419839849368, 0.5654425943470266, 0.5784682445936126, 0.591298073854372, 0.6039141059549834, 0.6163009923647084, 0.6284457802445033, 0.6403377024776333, 0.6519679868299005, 0.6633296816916701, 0.6744174961684146, 0.6852276525918702, 0.695757749809513, 0.7060066358705113, 0.7159742889594929, 0.7256617056352328, 0.7350707956108465, 0.7442042824668894, 0.753065609820946, 0.7616588525888472, 0.769988633065591, 0.7780600416302333, 0.7858785619402378, 0.7934500005285634, 0.8007804207526777, 0.8078760810699895, 0.8147433776301681 ], [ 0.33650862135977755, 0.33655065810147317, 0.3379978199963819, 0.3408134023604393, 0.34494036452837457, 0.35030450828546467, 0.3568183238851596, 0.3643850639024142, 0.37290265741548123, 0.382267181300136, 0.392375726324391, 0.40312860482843554, 0.41443092827576905, 0.42619363301497565, 0.43833405525796587, 0.4507761590930062, 0.46345051206821797, 0.47629408778904486, 0.4892499583893252, 0.502266924199525, 0.5152991146631117, 0.5283055839021803, 0.5412499161841113, 0.5540998505452104, 0.5668269295706133, 0.5794061744147344, 0.5918157862304451, 0.6040368729810865, 0.6160531999230694, 0.6278509617080583, 0.6394185739455347, 0.6507464821057349, 0.6618269857711726, 0.6726540764224453, 0.6832232871440039, 0.6935315528406895, 0.7035770797551071, 0.7133592232627874, 0.7228783730929103, 0.7321358452755445, 0.7411337802513851, 0.7498750466972365, 0.7583631507207852, 0.7666021501625813, 0.7745965738127683, 0.7823513454062127, 0.7898717123034456, 0.797163178797478, 0.8042314440091963, 0.8110823443477855 ], [ 0.35660442549883337, 0.35625442728687584, 0.35719611277650165, 0.3594024957045358, 0.3628292740364672, 0.36741701976838415, 0.37309396472251266, 0.3797790881238463, 0.38738522357850563, 0.3958219548682502, 0.4049981425837965, 0.41482399849252355, 0.4252126884320429, 0.436081490938253, 0.4473525669532071, 0.4589534085796704, 0.47081703620029086, 0.4828820076044838, 0.4950922935328649, 0.5073970637104895, 0.5197504175136672, 0.5321110846946925, 0.5444421143756768, 0.5567105648196949, 0.5688872021410539, 0.5809462129094689, 0.592864933308989, 0.6046235959249734, 0.6162050941757351, 0.6275947637379393, 0.6387801799257756, 0.6497509697893753, 0.660498637635379, 0.6710164026965645, 0.6812990477552645, 0.6913427776340527, 0.7011450865908745, 0.7107046337837047, 0.7200211260948184, 0.7290952077223142, 0.7379283560539889, 0.746522783434446, 0.7548813445199267, 0.763007448986623, 0.7709049794175263, 0.7785782142407335, 0.786031755629275, 0.7932704622997503, 0.8002993871652404, 0.8071237198079874 ], [ 0.37843311892227044, 0.3776946238312502, 0.37813504651178986, 0.3797354069307444, 0.3824622116543997, 0.3862689076712374, 0.3910978342358218, 0.39688248579553437, 0.40354989188669355, 0.4110229400504636, 0.4192225063530573, 0.4280693044026482, 0.43748540863442503, 0.44739544495777095, 0.4577274688539186, 0.4684135676015605, 0.47939023107653994, 0.4905985368020668, 0.501984191908695, 0.5134974693201395, 0.5250930692298434, 0.5367299307064647, 0.548371012601525, 0.5599830580803915, 0.571536353123047, 0.5830044861983635, 0.59436411390473, 0.605594735571073, 0.6166784785065622, 0.6275998946674428, 0.6383457688841183, 0.6489049383863151, 0.6592681231196639, 0.6694277662174782, 0.6793778839420181, 0.6891139244138716, 0.6986326344871933, 0.7079319341881573, 0.7170107982043057, 0.725869143986277, 0.7345077260959042, 0.7429280365025767, 0.7511322105909877, 0.759122938696717, 0.7669033830308392, 0.7744770998908003, 0.7818479670822349, 0.7890201164955665, 0.7959978717927241, 0.8027856911637007 ], [ 0.40152074207979355, 0.40040264226079675, 0.40035411508492075, 0.4013625523212574, 0.40340332200271056, 0.40644070178082525, 0.41042920895570767, 0.4153152135419058, 0.4210387072977008, 0.42753510535053874, 0.4347369743998727, 0.44257560714818683, 0.4509823910676298, 0.4598899463316732, 0.4692330298191008, 0.47894921825801673, 0.48897939383930816, 0.49926806082204256, 0.5097635229712368, 0.5204179503397901, 0.5311873610005312, 0.5420315396799286, 0.5529139114225875, 0.5638013847915176, 0.5746641758839428, 0.5854756217002371, 0.5962119891533546, 0.6068522842129286, 0.6173780642857598, 0.6277732558789766, 0.6380239788114341, 0.6481183776764997, 0.6580464608666071, 0.6677999472064541, 0.6773721200746373, 0.6867576887969583, 0.695952657048236, 0.7049541979876546, 0.7137605358636375, 0.7223708338490721, 0.7307850878998953, 0.7390040264648075, 0.7470290159078479, 0.754861971536381, 0.7625052741531824, 0.7699616920718684, 0.7772343085493639, 0.7843264545974059, 0.7912416471373332, 0.7979835324590145 ], [ 0.42542898976594107, 0.4239431704835641, 0.423422677929398, 0.42385984481042344, 0.4252371258278749, 0.42752767762002636, 0.43069624394530187, 0.4347002796618747, 0.43949123364363285, 0.44501590738839647, 0.45121781176785036, 0.4580384568256495, 0.4654185258183145, 0.4732989019709203, 0.48162153243325506, 0.4903301272311335, 0.4993707009697845, 0.5086919716544435, 0.51824563465408, 0.5279865311587697, 0.5378727301243674, 0.5478655412555866, 0.557929474536442, 0.5680321595372797, 0.5781442354581224, 0.5882392207616884, 0.5982933693876524, 0.6082855189537018, 0.6181969350373291, 0.6280111545745799, 0.637713830577878, 0.6472925797311964, 0.6567368339340834, 0.6660376965062224, 0.6751878035046684, 0.6841811904241571, 0.6930131644281657, 0.701680182179614, 0.7101797332929578, 0.7185102294045094, 0.7266708988475168, 0.7346616869173045, 0.7424831617151492, 0.7501364255645234, 0.7576230319974614, 0.7649449083106336, 0.7721042836891961, 0.7791036228910913, 0.7859455654749824, 0.792632870541567 ], [ 0.44976683994962635, 0.44792656222173477, 0.44695332694822415, 0.44684321904653457, 0.4475842577896152, 0.44915674483685225, 0.4515338414049915, 0.4546823371117795, 0.4585635620108347, 0.46313438787392097, 0.4683482648968836, 0.47415624489491376, 0.4805079503456068, 0.48735245876436967, 0.4946390823915673, 0.5023180328833786, 0.5103409688815755, 0.5186614306381069, 0.5272351702550216, 0.5360203887544513, 0.544977892422665, 0.5540711810221913, 0.5632664798674673, 0.5725327266962752, 0.5818415229662108, 0.5911670578272002, 0.6004860116795644, 0.609777444991199, 0.619022676953434, 0.6282051576165305, 0.6373103363607836, 0.6463255289168122, 0.6552397846330505, 0.66404375528194, 0.6727295663811256, 0.6812906917655669, 0.6897218319659171, 0.6980187968150398, 0.7061783926071146, 0.7141983140633841, 0.7220770413078684, 0.729813742019315, 0.7374081788976329, 0.744860622560463, 0.752171769965601, 0.7593426684357754, 0.7663746453423731, 0.7732692434832563, 0.7800281621663296, 0.786653203984865 ], [ 0.47419493512817473, 0.47201383778193795, 0.47060776016872635, 0.4699755824939627, 0.4701096310270318, 0.47099587882121957, 0.4726143154000521, 0.47493946502964435, 0.47794102501688646, 0.4815845902197393, 0.48583242793268844, 0.4906442683535953, 0.4959780794077054, 0.5017908000334459, 0.5080390122879404, 0.5146795390438439, 0.5216699600187619, 0.5289690440004565, 0.5365370991979809, 0.5443362466179628, 0.552330623312467, 0.5604865234177591, 0.5687724852815157, 0.5771593328409853, 0.5856201789308558, 0.5941303975046134, 0.6026675709544977, 0.6112114178913672, 0.619743705950551, 0.628248153456531, 0.6367103231258764, 0.6451175104210846, 0.6534586286870794, 0.6617240928013937, 0.6699057027404315, 0.677996528198055, 0.6859907951795334, 0.6938837753243471, 0.7016716785770235, 0.7093515497186916, 0.7169211691869025, 0.7243789585421199, 0.7317238908817089, 0.7389554064526394, 0.7460733336697292, 0.7530778157049555, 0.759969242773631, 0.7667481902040579, 0.7734153623380293, 0.7799715422699799 ], [ 0.4984255995803802, 0.49591715686862053, 0.4940979186369259, 0.4929688036568928, 0.4925254289092562, 0.4927582201267024, 0.49365264530534675, 0.4951895605034039, 0.4973456515349349, 0.5000939509308011, 0.5034044070814617, 0.5072444818611865, 0.5115797541036665, 0.5163745087291303, 0.5215922946911881, 0.5271964387734366, 0.53315050621628, 0.539418702868834, 0.5459662168135772, 0.5527595000762159, 0.5597664930694571, 0.5669567958513421, 0.5743017911743379, 0.581774724751044, 0.5893507482639203, 0.5970069304936464, 0.6047222416160626, 0.6124775152895644, 0.6202553926765764, 0.6280402520537492, 0.6358181271928108, 0.643576617254898, 0.6513047905451559, 0.6589930841252751, 0.6666332009793544, 0.6742180061702389, 0.6817414232050869, 0.6891983316453008, 0.6965844668418092, 0.7038963225470117, 0.7111310570446201, 0.7182864033440826, 0.7253605839035556, 0.7323522302714851, 0.7392603079693811, 0.746084046875384, 0.7528228773083666, 0.7594763719546574, 0.7660441937234065, 0.772526049561953 ], [ 0.5222204683575695, 0.5193977584887131, 0.5171843901497587, 0.5155827273905893, 0.5145908663812901, 0.5142026934957488, 0.5144080320038352, 0.5151928719711683, 0.5165396741439863, 0.5184277354877548, 0.5208336018778317, 0.5237315123204936, 0.5270938590060071, 0.530891648351144, 0.535094949788887, 0.5396733211783687, 0.5445962021008326, 0.5498332687601225, 0.5553547465414034, 0.5611316783707515, 0.56713614878261, 0.5733414650084041, 0.5797222974502707, 0.5862547826269925, 0.5929165921186718, 0.5996869712434444, 0.6065467512256045, 0.6134783385081307, 0.6204656846659758, 0.6274942401243352, 0.6345508946057825, 0.6416239069419374, 0.6487028266034467, 0.6557784090358861, 0.6628425266438578, 0.6698880770435515, 0.6769088900054882, 0.6838996343328415, 0.6908557257645717, 0.6977732368540136, 0.7046488096498323, 0.7114795718948215, 0.7182630573564043, 0.724997130808903, 0.7316799180999147, 0.7383097416501603, 0.7448850616570046, 0.7514044231958685, 0.7578664093406577, 0.7642696003540863 ], [ 0.5453869453149311, 0.5422626214537728, 0.53967337603237, 0.5376225544081986, 0.5361100872651372, 0.5351325206680009, 0.5346831094783622, 0.5347519714560588, 0.5353262968907885, 0.5363906064602907, 0.537927048342915, 0.5399157245185165, 0.5423350357090058, 0.5451620345170869, 0.548372776948356, 0.5519426635422263, 0.555846762666738, 0.5600601100235435, 0.564557979944856, 0.5693161255456093, 0.5743109861475634, 0.579519861568943, 0.5849210538482793, 0.590493977738851, 0.5962192418801142, 0.6020787029442192, 0.6080554952946928, 0.6141340388081155, 0.6203000275254422, 0.6265404017423226, 0.6328433060390866, 0.6391980356088101, 0.6455949730802685, 0.6520255178621979, 0.6584820098638093, 0.6649576492789454, 0.6714464139607101, 0.6779429757613848, 0.6844426170693337, 0.6909411486401378, 0.6974348296926005, 0.7039202911206126, 0.7103944625581154, 0.7168545039257453, 0.7232977419834052, 0.7297216123124963, 0.7361236070546576, 0.7425012286404664, 0.7488519496519133, 0.7551731788768663 ], [ 0.5677741876329557, 0.5643605768758583, 0.5614129979159823, 0.5589354142169977, 0.5569290792869629, 0.5553925542212715, 0.554321770291329, 0.5537101352018795, 0.5535486800654564, 0.5538262427204389, 0.5545296818378199, 0.5556441153871646, 0.557153176502193, 0.5590392796093493, 0.5612838898389578, 0.5638677891855375, 0.5667713335627093, 0.569974695741672, 0.573458090101732, 0.5772019760933801, 0.5811872382643507, 0.5853953415845795, 0.5898084615971407, 0.5944095896013413, 0.599182613634117, 0.6041123764580772, 0.6091847120964818, 0.6143864626888919, 0.6197054775897838, 0.6251305967106006, 0.6306516201272653, 0.6362592659528161, 0.6419451184194009, 0.6477015680344868, 0.6535217455801045, 0.6593994516166762, 0.6653290830387854, 0.6713055581117889, 0.6773242412976361, 0.6833808690567151, 0.689471477690957, 0.695592334172151, 0.7017398707790107, 0.7079106242471639, 0.7141011800185016, 0.7203081220605828, 0.7265279886137888, 0.7327572341143418, 0.7389921974359711, 0.7452290764928724 ], [ 0.5892689949736093, 0.5855782764494138, 0.5822893850818465, 0.5794066174629193, 0.5769321432231508, 0.5748660196745911, 0.5732062383609016, 0.5719488026733848, 0.57108783470508, 0.570615708601165, 0.5705232068731199, 0.570799695516972, 0.5714333133401878, 0.5724111706706, 0.5737195525926422, 0.5753441220165224, 0.577270118209426, 0.5794825468717701, 0.5819663583895965, 0.5847066114994397, 0.5876886202301157, 0.5908980826067214, 0.5943211901916118, 0.5979447180771781, 0.6017560954240093, 0.6057434570492455, 0.6098956769118313, 0.6142023846158464, 0.6186539662646283, 0.6232415511528491, 0.6279569858880188, 0.6327927975938221, 0.6377421478719367, 0.6427987791925093, 0.6479569553515114, 0.6532113975801861, 0.6585572178214663, 0.6639898506035649, 0.6695049848444248, 0.6750984968144458, 0.6807663853706555, 0.6865047104549452, 0.6923095357236255, 0.698176876047051, 0.7041026504878365, 0.7100826412360368, 0.71611245885109, 0.7221875140351192, 0.7283029960419168, 0.7344538577121844 ], [ 0.609791797860041, 0.6058362283072443, 0.6022227801292573, 0.5989558591132543, 0.5960382271739194, 0.5934710198227404, 0.5912537862252258, 0.5893845511597261, 0.5878598975730627, 0.5866750678499114, 0.5858240814025806, 0.5852998657685727, 0.5850943980925916, 0.5851988536775483, 0.5856037582186505, 0.5862991403815022, 0.587274681539228, 0.5885198597297048, 0.5900240852139408, 0.591776825390601, 0.5937677172297726, 0.5959866658127205, 0.5984239279869467, 0.6010701805536983, 0.6039165727873477, 0.6069547634349416, 0.6101769426547531, 0.6135758396220339, 0.6171447167577161, 0.6208773517220646, 0.624768008462011, 0.6288113987102815, 0.6330026354091359, 0.6373371795741792, 0.6418107821270743, 0.6464194222124997, 0.6511592434769136, 0.6560264897269138, 0.6610174413055105, 0.6661283534278332, 0.6713553976059563, 0.6766946071682323, 0.6821418277442712, 0.6876926734452437, 0.6933424893233465, 0.6990863205467933, 0.7049188885805336, 0.7108345745206464, 0.7168274095946834, 0.7228910727133647 ], [ 0.6292928378830513, 0.6250850035804644, 0.6211637828896188, 0.6175335151213995, 0.614197296513794, 0.6111570037087511, 0.6084133332907341, 0.6059658566868155, 0.6038130893328639, 0.6019525726425495, 0.6003809669909165, 0.5990941536548375, 0.598087343448885, 0.5973551896633966, 0.5968919028544654, 0.5966913650523972, 0.596747241041487, 0.5970530845129307, 0.5976024370951124, 0.5983889185111394, 0.5994063063913223, 0.6006486045674192, 0.6021100989856693, 0.6037854006874716, 0.6056694756120908, 0.6077576612680388, 0.6100456705934756, 0.6125295835766918, 0.6152058274323404, 0.6180711463252386, 0.6211225617996502, 0.6243573252069493, 0.6277728635279156, 0.6313667200574218, 0.6351364914591945, 0.6390797627071557, 0.6431940414086402, 0.6474766929548649, 0.6519248778673442, 0.6565354926078159, 0.6613051149966002, 0.6662299552434793, 0.6713058134399192, 0.6765280441958463, 0.6818915289325076, 0.6873906561695191, 0.693019309973295, 0.6987708665696144, 0.7046381989687993, 0.7106136893108992 ], [ 0.647748575666239, 0.6433016554423484, 0.6390897844284212, 0.6351170986902527, 0.6313868239111564, 0.6279013063978447, 0.6246620556475547, 0.6216697977075124, 0.6189245382932053, 0.6164256343893835, 0.6141718728460092, 0.6121615543076352, 0.6103925806846767, 0.6088625442925663, 0.6075688167515725, 0.6065086357563123, 0.6056791878875886, 0.6050776857471132, 0.6047014378432345, 0.6045479098376699, 0.6046147759734991, 0.6048999597371231, 0.6054016630553147, 0.6061183835868512, 0.6070489199306829, 0.6081923648338446, 0.6095480867370475, 0.6111157002394892, 0.6128950262922778, 0.6148860431378074, 0.6170888291964861, 0.6195034992587402, 0.6221301354659868, 0.6249687146563768, 0.6280190337075143, 0.6312806345274239, 0.6347527303264041, 0.6384341347463198, 0.6423231953320697, 0.6464177327049451, 0.6507149866432285, 0.6552115700963856, 0.6599034319611555, 0.6647858292369734, 0.6698533089609282, 0.6750997001054607, 0.6805181154115326, 0.6861009629317905, 0.6918399668773354, 0.6977261972021048 ], [ 0.6651583298629018, 0.6604863567302809, 0.6560016027682105, 0.6517078961490864, 0.6476084306855756, 0.6437058048121878, 0.6400020690836677, 0.6364987813542489, 0.63319706861128, 0.6300976942647137, 0.6272011295458304, 0.6245076275485723, 0.6220172983585465, 0.6197301836605251, 0.6176463291965292, 0.6157658534638323, 0.6140890110949234, 0.612616249448439, 0.6113482570593874, 0.6102860027462657, 0.6094307643490323, 0.6087841462722565, 0.608348085228632, 0.6081248438157042, 0.6081169918091583, 0.6083273753148443, 0.6087590741842761, 0.6094153483592967, 0.6102995740652927, 0.6114151710127803, 0.6127655219878201, 0.6143538864061534, 0.6161833095676112, 0.6182565294702852, 0.6205758831228139, 0.623143214323853, 0.6259597848576478, 0.629026190982772, 0.632342286968741, 0.6359071172655257, 0.6397188586793674, 0.6437747736819293, 0.6480711757073742, 0.6526034070033158, 0.657365829307035, 0.6623518273282483, 0.667553824743755, 0.6729633121561232, 0.6785708862453236, 0.6843662991542052 ], [ 0.6815411306167135, 0.6766592405982604, 0.6719203075027652, 0.6673277741820398, 0.662884677777292, 0.6585936964377376, 0.654457202545591, 0.6504773215705603, 0.6466559955274309, 0.6429950498759212, 0.6394962625859221, 0.636161433996503, 0.6329924560258797, 0.6299913792438536, 0.6271604762993966, 0.6245023002050386, 0.6220197360171777, 0.6197160445176334, 0.6175948965969335, 0.6156603971637177, 0.6139170975570646, 0.6123699956188288, 0.6110245227903015, 0.609886517830198, 0.6089621870069508, 0.6082580508944583, 0.6077808781927334, 0.6075376072978032, 0.6075352566519905, 0.6077808252082888, 0.6082811846314499, 0.6090429651233681, 0.6100724369904049, 0.6113753902546153, 0.6129570147391591, 0.6148217831217859, 0.6169733394426925, 0.6194143954705204, 0.6221466371727368, 0.6251706433075542, 0.6284858178612868, 0.632090337708367, 0.6359811164849347, 0.6401537852566876, 0.6446026901444727, 0.6493209066636939, 0.654300270151772, 0.6595314213152426, 0.66500386563553, 0.6707060451375357 ], [ 0.6969327587573231, 0.6918574155660443, 0.6868842057967025, 0.6820161332042405, 0.6772559847357292, 0.6726063843245649, 0.6680698519026073, 0.6636488667451907, 0.6593459341373903, 0.6551636542347367, 0.6511047918896716, 0.6471723461284873, 0.6433696178938854, 0.639700274617167, 0.6361684101529302, 0.6327785985993971, 0.6295359405406085, 0.6264461002844832, 0.6235153327347956, 0.6207504986276422, 0.6181590669858953, 0.6157491038006643, 0.6135292461387032, 0.61150866110031, 0.6096969893141312, 0.6081042729525464, 0.6067408685815289, 0.6056173455174814, 0.6047443707435312, 0.6041325818294107, 0.6037924496901119, 0.6037341333940542, 0.6039673295749147, 0.6045011192946117, 0.6053438154303453, 0.6065028137995404, 0.6079844512791216, 0.6097938741101938, 0.6119349194015141, 0.6144100125572145, 0.617220082964525, 0.6203644998008063, 0.6238410292766224, 0.627645814047537, 0.6317733749291387, 0.6362166344649794, 0.6409669613516817, 0.6460142342419296, 0.6513469230420653, 0.6569521855084128 ], [ 0.7113829356345863, 0.7061321196605702, 0.7009459548784449, 0.6958269731418082, 0.6907776449913, 0.6858004396200482, 0.6808978892607035, 0.6760726571309282, 0.6713276079617571, 0.6666658800282027, 0.6620909575049826, 0.6576067418835663, 0.6532176211108146, 0.6489285350456313, 0.6447450357795159, 0.6406733413313636, 0.6367203812083857, 0.63289383232613, 0.6292021438044892, 0.6256545492070348, 0.6222610648723357, 0.6190324731029823, 0.6159802891357017, 0.613116711019202, 0.6104545517792549, 0.6080071535560523, 0.6057882837579309, 0.6038120136863918, 0.6020925805446159, 0.6006442342360266, 0.5994810708767851, 0.5986168554678449, 0.598064836675261, 0.5978375571255463, 0.5979466630075114, 0.598402717054985, 0.5992150191400368, 0.600391438712974, 0.601938263169844, 0.6038600659065686, 0.6061595973378715, 0.6088377015369013, 0.611893260415989, 0.6153231665570325, 0.6191223249535768, 0.6232836830898602, 0.6277982879974053, 0.63265536823447, 0.6378424381574296, 0.6433454214157792 ], [ 0.7249526274979081, 0.7195459774957641, 0.7141697651912264, 0.7088260365695898, 0.7035169037283938, 0.6982446099923123, 0.6930115989769736, 0.6878205867839595, 0.6826746364069672, 0.6775772333306974, 0.6725323612098969, 0.6675445764265349, 0.6626190802388133, 0.6577617871572494, 0.6529793881113937, 0.6482794069073078, 0.6436702484228766, 0.6391612369482157, 0.6347626430558811, 0.6304856973851625, 0.626342589752653, 0.6223464520646409, 0.6185113236138222, 0.6148520975019215, 0.6113844471497585, 0.608124732144929, 0.6050898830408218, 0.6022972651624255, 0.5997645219935885, 0.5975093993106996, 0.5955495518765367, 0.5939023351949801, 0.5925845855248161, 0.5916123920240449, 0.5910008655046822, 0.5907639087784475, 0.59091399392283, 0.5914619519559592, 0.5924167803474496, 0.5937854734937175, 0.5955728807489549, 0.5977815958436304, 0.6004118805752927, 0.6034616245712962, 0.6069263417610711, 0.6107992030238109, 0.615071103362947, 0.6197307609621202, 0.6247648446477791, 0.6301581256551109 ], [ 0.7377114326647314, 0.7321703289523982, 0.726628663534983, 0.7210879995373937, 0.7155500701018113, 0.7100168476008153, 0.7044906165288201, 0.6989740493147335, 0.6934702842054281, 0.6879830042771494, 0.6825165165401865, 0.6770758300106876, 0.6716667315322568, 0.6662958580388985, 0.6609707638603367, 0.6556999815816654, 0.6504930748833764, 0.6453606817077736, 0.6403145460275866, 0.6353675364376774, 0.6305336497581976, 0.625827997836225, 0.6212667757733826, 0.6168672099012483, 0.6126474839877178, 0.6086266423992035, 0.604824469278451, 0.6012613432361256, 0.5979580676027196, 0.5949356769461445, 0.5922152213219923, 0.589817530570363, 0.5877629618765321, 0.5860711347320539, 0.5847606583168091, 0.5838488571112234, 0.5833515011771481, 0.583282547952908, 0.5836539025376802, 0.5844752032527517, 0.585753638743449, 0.5874938020327403, 0.5896975857904254, 0.5923641217013825, 0.5954897652850273, 0.5990681259320151, 0.6030901403836014, 0.6075441864782629, 0.6124162328084877, 0.6176900190254562 ], [ 0.7497350291398451, 0.7440826082509301, 0.738401796329096, 0.7326936918192999, 0.726959647478202, 0.7212013426662645, 0.7154208591633335, 0.709620759818829, 0.7038041692630257, 0.6979748558198786, 0.6921373136736559, 0.6862968442504084, 0.6804596356801672, 0.6746328391060507, 0.6688246405017394, 0.6630443265492597, 0.6573023430155845, 0.6516103439512755, 0.6459812299206089, 0.640429173365517, 0.6349696291124122, 0.629619327961063, 0.6243962512601977, 0.6193195843900638, 0.6144096471545651, 0.6096877992535694, 0.6051763192787901, 0.6008982560728507, 0.5968772518263609, 0.5931373369721422, 0.5897026977707079, 0.5865974184566183, 0.5838452009067976, 0.5814690659580989, 0.5794910416840837, 0.5779318450661404, 0.5768105644759968, 0.5761443511345763, 0.575948128139036, 0.5762343256828796, 0.5770126506853971, 0.578289898182, 0.5800698105317276, 0.5823529888378366, 0.5851368590537893, 0.5884156931882797, 0.5921806839703534, 0.5964200694280744, 0.6011193021931747, 0.6062612570621658 ], [ 0.7611026740751492, 0.7553637667979172, 0.7495717685758296, 0.7437273446296894, 0.7378314825437141, 0.7318855666898768, 0.7258914560774735, 0.7198515650082087, 0.713768945841043, 0.7076473730920658, 0.7014914280115125, 0.6953065826913833, 0.6890992826614869, 0.6828770268278057, 0.6766484434936948, 0.6704233610808933, 0.6642128720336742, 0.6580293882466546, 0.6518866862073025, 0.6457999398921712, 0.6397857393079347, 0.6338620924335606, 0.6280484082108788, 0.6223654581631892, 0.6168353142147581, 0.6114812603607255, 0.6063276760221467, 0.6013998892409536, 0.5967239983497277, 0.5923266614126526, 0.5882348535904227, 0.5844755936347906, 0.5810756419528482, 0.5780611740615744, 0.5754574347207824, 0.5732883795048558, 0.5715763119469489, 0.5703415255454735, 0.5696019607394744, 0.5693728873240377, 0.5696666226011357, 0.5704922947968555, 0.5718556599250344, 0.5737589783991398, 0.5762009554021664, 0.579176746476665, 0.5826780271793237, 0.5866931231486621, 0.5912071947361468, 0.5962024685908125 ], [ 0.7718947631324924, 0.7660957507676154, 0.7602220326241016, 0.7542738833381518, 0.7482519546047965, 0.742157350883968, 0.7359917084511688, 0.7297572772381256, 0.7234570048410204, 0.7170946220022238, 0.7106747287943298, 0.7042028806510281, 0.6976856732960429, 0.6911308255171367, 0.6845472586152118, 0.6779451712273663, 0.6713361080764568, 0.6647330210381895, 0.6581503207412964, 0.6516039167298844, 0.645111244024906, 0.6386912737320821, 0.6323645051682539, 0.6261529368328954, 0.6200800134567002, 0.6141705463397324, 0.6084506042768166, 0.602947372590094, 0.5976889781818121, 0.5927042791166257, 0.5880226180684099, 0.5836735400374516, 0.5796864760585467, 0.5760903961549381, 0.5729134364949305, 0.5701825074940309, 0.5679228913613944, 0.5661578391752194, 0.5649081788322954, 0.5641919459974741, 0.5640240503446754, 0.5644159888385804, 0.5653756165212005, 0.5669069832779571, 0.5690102424763687, 0.571681634376291, 0.5749135440306885, 0.5786946302776137, 0.5830100196050796, 0.5878415563502005 ], [ 0.7821904755456675, 0.7763590629588152, 0.7704343602964401, 0.7644163031040941, 0.7583052477648182, 0.7521020477421428, 0.7458081330806046, 0.7394255926667765, 0.7329572586935765, 0.7264067927059494, 0.7197787725352537, 0.7130787793508007, 0.7063134839678672, 0.6994907314498013, 0.6926196229253058, 0.6857105934084594, 0.6787754842568166, 0.6718276087309828, 0.6648818089274788, 0.6579545021471929, 0.6510637145381488, 0.6442290996204739, 0.637471939073827, 0.630815122957961, 0.624283106365632, 0.6179018393993011, 0.6116986673504119, 0.6057021980788406, 0.5999421338806594, 0.5944490656356479, 0.5892542277801922, 0.584389213685692, 0.5798856523513635, 0.5757748489340487, 0.5720873934965103, 0.5688527443831154, 0.5660987947120472, 0.5638514324537535, 0.5621341062661204, 0.560967410486208, 0.5603687032557686, 0.5603517715397928, 0.5609265557036269, 0.5620989443478206, 0.563870647357063, 0.5662391517861985, 0.5691977615390796, 0.5727357180918763, 0.5768383960706495, 0.5814875645770783 ], [ 0.7920655472609046, 0.7862304557108069, 0.7802864498771809, 0.7742331840093484, 0.7680707680694826, 0.761799843871307, 0.7554216643691702, 0.7489381756486934, 0.7423521011164146, 0.7356670273275021, 0.7288874908257991, 0.7220190652971803, 0.7150684482530605, 0.7080435463633992, 0.7009535584450769, 0.6938090549795041, 0.6866220528804557, 0.679406084057672, 0.6721762561228245, 0.6649493033626434, 0.6577436258618541, 0.6505793144014471, 0.6434781584945812, 0.6364636346665454, 0.6295608718554611, 0.6227965906318291, 0.6161990128392523, 0.6097977382838256, 0.6036235852895747, 0.5977083923389775, 0.5920847786777097, 0.5867858627222631, 0.5818449383956471, 0.5772951111361085, 0.5731688972517506, 0.5694977924659554, 0.5663118178055818, 0.5636390532716693, 0.5615051718074946, 0.5599329877241891, 0.5589420347418014, 0.5585481889648043, 0.5587633513071166, 0.5595952020726193, 0.5610470376491331, 0.5631176957618101, 0.565801571724592, 0.5690887239566808, 0.5729650630449427, 0.5774126151560107 ], [ 0.8015902277062246, 0.7957808151906363, 0.7898497333512089, 0.7837964165237946, 0.7776207823343908, 0.7713233071850337, 0.7649051047562814, 0.758368007115477, 0.751714647971471, 0.7449485475633097, 0.7380741986107754, 0.7310971526864842, 0.7240241062901267, 0.7168629858127619, 0.7096230304700984, 0.7023148721556096, 0.6949506110145135, 0.6875438853658516, 0.6801099344006615, 0.6726656518592667, 0.6652296286415813, 0.6578221820350822, 0.6504653689632228, 0.6431829803744012, 0.6360005136253128, 0.6289451194862193, 0.6220455202399103, 0.6153318952988412, 0.6088357308707695, 0.6025896305119016, 0.5966270839696894, 0.5909821925832816, 0.5856893507162148, 0.5807828842619507, 0.5762966491777652, 0.5722635952165521, 0.5687153024425952, 0.5656815005891906, 0.563189583649304, 0.5612641340571298, 0.5599264721781675, 0.5591942473561978, 0.5590810862981146, 0.5595963130292261, 0.5607447520505202, 0.5625266228246296, 0.5649375295689554, 0.5679685458850057, 0.5716063893828633, 0.5758336775360628 ], [ 0.8108274835019608, 0.8050733050819386, 0.79918745692589, 0.7931692156680827, 0.787018362732906, 0.7807352586960148, 0.7743209204994, 0.7677771011375779, 0.7611063713874876, 0.7543122031055097, 0.7473990535595008, 0.7403724501998346, 0.7332390751988069, 0.7260068489998328, 0.7186850120139007, 0.7112842034779031, 0.7038165363450097, 0.6962956669087764, 0.6887368576683713, 0.6811570317214461, 0.6735748167246385, 0.6660105761926935, 0.6584864256219997, 0.6510262306334549, 0.643655584048533, 0.6364017585629483, 0.6292936314931571, 0.6223615779782943, 0.615637329067422, 0.6091537913586276, 0.6029448253351047, 0.5970449803152605, 0.5914891850425127, 0.5863123944127293, 0.5815491946737121, 0.5772333715952765, 0.5733974485178903, 0.5700722037088977, 0.567286178904141, 0.5650651930648855, 0.5634318769899378, 0.5624052452530643, 0.5620003217913558, 0.5622278342344144, 0.5630939897282514, 0.5646003416855219, 0.5667437528192633, 0.5695164553203512, 0.5729062045037879, 0.5768965180629345 ], [ 0.8198315133553563, 0.814161838136757, 0.8083531077275982, 0.8024045014367996, 0.7963157196579274, 0.7900870566922331, 0.783719476234523, 0.7772146891578366, 0.7705752331910272, 0.7638045540369626, 0.7569070874265635, 0.7498883415433045, 0.7427549791819261, 0.7355148989215025, 0.7281773144940595, 0.7207528314129578, 0.7132535197875819, 0.7056929820901982, 0.6980864144552754, 0.6904506598803335, 0.6828042514610225, 0.6751674435344, 0.6675622283287929, 0.6600123354356067, 0.652543211142058, 0.6451819744139184, 0.6379573461204477, 0.6308995479833166, 0.6240401677481306, 0.6174119872678817, 0.6110487706027055, 0.6049850099299725, 0.5992556280671246, 0.5938956377670036, 0.5889397596585743, 0.5844220027485745, 0.580375213702708, 0.5768306035711103, 0.573817263045102, 0.5713616795217737, 0.5694872709750138, 0.568213952651336, 0.5675577527237038, 0.5675304921108267, 0.568139541664765, 0.5693876669241396, 0.5712729668202168, 0.5737889084058759, 0.5769244552153877, 0.5806642826358818 ], [ 0.8286466318816016, 0.8230899366022683, 0.8173892510546616, 0.8115437133455953, 0.8055529943282743, 0.7994173685161057, 0.7931377874418138, 0.786715955108712, 0.7801544051407612, 0.7734565791934941, 0.7666269061374432, 0.7596708814675915, 0.7525951463245655, 0.745407565433535, 0.7381173031727486, 0.730734896872813, 0.7232723263179187, 0.7157430782690383, 0.7081622046551639, 0.7005463728811503, 0.6929139064803823, 0.685284814099796, 0.6776808045489967, 0.6701252853828651, 0.6626433422310921, 0.6552616958565582, 0.6480086337414336, 0.6409139128957487, 0.6340086305948153, 0.6273250599215985, 0.6208964473638904, 0.6147567703399028, 0.6089404534406013, 0.6034820434119149, 0.5984158444636528, 0.5937755173643943, 0.589593647904978, 0.5859012925862563, 0.5827275116634374, 0.5800989017737256, 0.5780391420739918, 0.5765685689039282, 0.5757037942740907, 0.575457382818535, 0.5758376001925586, 0.5768482432845126, 0.5784885592021475, 0.5807532560410252, 0.5836326042658436, 0.5871126234837173 ], [ 0.8373065665183037, 0.831890027636019, 0.8263268262101938, 0.820616108989082, 0.8147575628321853, 0.8087514833737461, 0.8025988458907634, 0.7963013780268826, 0.7898616339842164, 0.7832830697516664, 0.7765701188892918, 0.7697282683320418, 0.7627641336109809, 0.7556855328139896, 0.748501558518768, 0.7412226468266874, 0.7338606425046641, 0.7264288591020039, 0.7189421327489672, 0.7114168681632123, 0.7038710751902566, 0.6963243939872733, 0.6887981067309688, 0.6813151334980516, 0.6739000097427581, 0.6665788425964876, 0.659379243061325, 0.6523302310891331, 0.6454621105634328, 0.6388063113694086, 0.6323951960880153, 0.6262618294229438, 0.6204397092993278, 0.6149624596853798, 0.6098634865901462, 0.6051756003649535, 0.6009306093337107, 0.5971588918118287, 0.5938889556205523, 0.5911469961039287, 0.5889564652266996, 0.5873376653839374, 0.5863073819151481, 0.5858785678577294, 0.586060093135682, 0.5868565681838455, 0.5882682490731677, 0.5902910277322045, 0.5929165071227668, 0.596132157524474 ], [ 0.8458341923458847, 0.8405831989103526, 0.8351849263232343, 0.829638572015546, 0.8239438767671332, 0.8181011908022927, 0.8121115418300797, 0.805976704680514, 0.799699272149058, 0.7932827266189475, 0.7867315119829857, 0.7800511053318431, 0.7732480878132059, 0.7663302139936267, 0.7593064789708983, 0.7521871823875546, 0.7449839883840875, 0.7377099804024966, 0.7303797096060741, 0.7230092355200577, 0.715616157321189, 0.7082196340152266, 0.7008403915450494, 0.6935007146758736, 0.6862244213191924, 0.6790368167981436, 0.671964625443126, 0.6650358968611059, 0.6582798842729576, 0.6517268924915344, 0.6454080934521047, 0.6393553077387173, 0.6336007513030053, 0.6281767475649491, 0.6231154063223552, 0.6184482723609117, 0.6142059483069627, 0.6104176980278212, 0.6071110386556837, 0.6043113309591982, 0.6020413791602317, 0.6003210522355062, 0.599166939109071, 0.5985920498210617, 0.5986055736928662, 0.5992127037091795, 0.6004145338892998, 0.6022080334810593, 0.6045860985952851, 0.6075376786535857 ], [ 0.8542417065523997, 0.849179414919705, 0.8439710611384915, 0.8386159266119197, 0.8331138352776428, 0.827465216840957, 0.8216711716789787, 0.81573353706407, 0.809654954316201, 0.8034389364517611, 0.7970899358494078, 0.7906134114007356, 0.7840158945535688, 0.7773050535871746, 0.770489755380336, 0.7635801238437337, 0.7565875940863855, 0.7495249612712529, 0.7424064229873629, 0.7352476138254623, 0.7280656306930672, 0.7208790472458516, 0.7137079156506787, 0.70657375373844, 0.6994995154622807, 0.6925095424618342, 0.6856294944632878, 0.6788862562383942, 0.6723078189259426, 0.6659231337121353, 0.659761936198056, 0.6538545402780159, 0.6482316010328003, 0.6429238470195123, 0.6379617834152019, 0.6333753687283709, 0.6291936691934171, 0.6254444964472141, 0.6221540355693795, 0.6193464719421523, 0.6170436265313755, 0.6152646099818495, 0.614025506243238, 0.6133390962068815, 0.6132146309902087, 0.6136576630570231, 0.6146699413703691, 0.6162493743580946, 0.6183900617942507, 0.6210823939557841 ], [ 0.8625312200042394, 0.8576781687515842, 0.8526818744337371, 0.8475417266024955, 0.8422576525254465, 0.8368301772893851, 0.8312604852934785, 0.8255504827763047, 0.819702860982797, 0.8137211595357376, 0.8076098295308836, 0.8013742958241317, 0.7950210179223539, 0.7885575488256213, 0.7819925910965321, 0.7753360493513999, 0.7685990782775491, 0.761794125180606, 0.754934965955797, 0.7480367332588493, 0.7411159355271679, 0.7341904653738396, 0.7272795957505203, 0.7204039621572391, 0.7135855290765284, 0.7068475387375278, 0.7002144402867769, 0.6937117974727564, 0.6873661730594209, 0.6812049883898359, 0.6752563568445861, 0.6695488903990693, 0.6641114790932949, 0.6589730439945405, 0.6541622651541489, 0.6497072871184488, 0.6456354057176732, 0.6419727410753956, 0.6387439029862723, 0.6359716559181954, 0.6336765918126556, 0.6318768194881171, 0.6305876797074558, 0.6298214947830927, 0.629587360923773, 0.6298909903752525, 0.630734608817334, 0.6321169115382849, 0.6340330797373368, 0.6364748560534197 ], [ 0.8706957204974339, 0.8660695200244446, 0.8613042624518883, 0.8563994607354448, 0.8513551567980252, 0.8461719782711297, 0.8408511963439944, 0.8353947843610597, 0.8298054767709683, 0.8240868279901031, 0.8182432706999652, 0.8122801730497224, 0.8062038941823294, 0.8000218374440011, 0.7937425005719171, 0.7873755220833616, 0.7809317230108608, 0.7744231430424238, 0.7678630700343961, 0.7612660617680472, 0.7546479587220688, 0.7480258865350031, 0.7414182467388439, 0.7348446942638798, 0.7283261001531158, 0.721884497892044, 0.7155430117676451, 0.7093257657324836, 0.7032577713799898, 0.6973647938504578, 0.6916731947983543, 0.6862097519726043, 0.6810014555012545, 0.6760752816329504, 0.6714579454644738, 0.6671756350601827, 0.6632537303175077, 0.6597165109115503, 0.656586858607556, 0.6538859600983389, 0.6516330172337296, 0.6498449719891931, 0.6485362537058066, 0.6477185559731167, 0.6474006499916427, 0.6475882403426553, 0.6482838678406508, 0.6494868626112693, 0.6511933488134026, 0.6533963006173094 ], [ 0.8787203430608383, 0.8743354497414387, 0.8698168190390636, 0.8651640943113993, 0.8603774353454151, 0.8554575715479692, 0.8504058559688474, 0.8452243197950307, 0.8399157269188808, 0.8344836281444793, 0.8289324145550602, 0.8232673695198729, 0.8174947187703968, 0.8116216779231736, 0.805656496769364, 0.7996084995892828, 0.7934881206837856, 0.7873069342439397, 0.7810776776068805, 0.7748142668706853, 0.7685318037668062, 0.7622465726183242, 0.755976026150264, 0.7497387588699008, 0.7435544667071138, 0.7374438916053916, 0.7314287497922759, 0.7255316425440685, 0.7197759484042422, 0.714185696028972, 0.708785417126325, 0.7035999793356473, 0.6986543993649895, 0.6939736372663632, 0.6895823733742608, 0.6855047701472422, 0.6817642219117195, 0.678383096278404, 0.6753824717435036, 0.6727818766502418, 0.6705990352191219, 0.6688496267055117, 0.6675470638637554, 0.6667022967522791, 0.6663236474841276, 0.6664166808122668, 0.6669841144614527, 0.6680257719231192, 0.6695385790807779, 0.6715166046088594 ], [ 0.8865838688547617, 0.8824514486964431, 0.8781915188388422, 0.8738038528087596, 0.869288724463068, 0.8646469574913443, 0.8598799754892682, 0.8549898522427322, 0.8499793618282283, 0.8448520280989165, 0.8396121730875118, 0.8342649638164716, 0.8288164569626482, 0.8232736407774224, 0.8176444736143079, 0.8119379183642241, 0.8061639720444851, 0.8003336897317348, 0.7944592019727134, 0.7885537247515233, 0.7826315610402225, 0.776708092914105, 0.7707997631777135, 0.7649240454271239, 0.7590994014738747, 0.7533452250825019, 0.7476817710340631, 0.7421300686299271, 0.7367118189011571, 0.7314492749963492, 0.7263651054910012, 0.7214822406986315, 0.716823702469285, 0.7124124184321065, 0.7082710221677837, 0.7044216413704083, 0.7008856766570551, 0.6976835742810266, 0.6948345965695829, 0.6923565944030403, 0.6902657864413175, 0.6885765500491716, 0.6873012289397268, 0.6864499624227113, 0.6860305407958619, 0.6860482908561104, 0.6865059947478587, 0.6874038444408198, 0.6887394330850211, 0.6905077833813288 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
hartmann6: -0.0767134 (SEM: 0)
x1: 0.151049
x2: 0.80222
x3: 0.165584
x4: 0.148435
x5: 0.0323852
x6: 0.950737", "Arm 10_0
hartmann6: -0.0424803 (SEM: 0)
x1: 0.940238
x2: 0.871178
x3: 0.716303
x4: 0.0975526
x5: 0.283898
x6: 0.452116", "Arm 11_0
hartmann6: -0.27375 (SEM: 0)
x1: 0.464369
x2: 0.439654
x3: 0.123788
x4: 0.561775
x5: 0.5115
x6: 0.881498", "Arm 12_0
hartmann6: -0.0593292 (SEM: 0)
x1: 0.432881
x2: 0.201933
x3: 0.427252
x4: 0.381064
x5: 0.997119
x6: 0.00243286", "Arm 13_0
hartmann6: -0.0769789 (SEM: 0)
x1: 0
x2: 0.417843
x3: 0.20196
x4: 0
x5: 0
x6: 1", "Arm 14_0
hartmann6: -0.0275264 (SEM: 0)
x1: 0.310382
x2: 0
x3: 0.820433
x4: 0
x5: 0.165285
x6: 0.015951", "Arm 15_0
hartmann6: -0.294382 (SEM: 0)
x1: 0
x2: 0.153259
x3: 0.287662
x4: 0
x5: 0
x6: 0.593177", "Arm 16_0
hartmann6: -0.0143704 (SEM: 0)
x1: 0.274073
x2: 4.06894e-12
x3: 0.844319
x4: 0.177387
x5: 0.868363
x6: 0.0255218", "Arm 17_0
hartmann6: -0.0778413 (SEM: 0)
x1: 0.506342
x2: 0.708289
x3: 0.860554
x4: 0
x5: 1.67832e-16
x6: 0", "Arm 18_0
hartmann6: -0.866458 (SEM: 0)
x1: 0
x2: 0.409309
x3: 0.541239
x4: 2.39548e-12
x5: 0.138572
x6: 0.653377", "Arm 19_0
hartmann6: -1.14643 (SEM: 0)
x1: 9.79387e-17
x2: 0.268533
x3: 0.321841
x4: 0
x5: 0.257193
x6: 0.587977", "Arm 1_0
hartmann6: -0.0437483 (SEM: 0)
x1: 0.628794
x2: 0.386092
x3: 0.509957
x4: 0.698584
x5: 0.758152
x6: 0.380729", "Arm 20_0
hartmann6: -0.0703902 (SEM: 0)
x1: 0.245677
x2: 0.842709
x3: 0.204642
x4: 0
x5: 0.969852
x6: 0.0842652", "Arm 21_0
hartmann6: -1.03444 (SEM: 0)
x1: 2.31094e-13
x2: 0.220737
x3: 0.450272
x4: 0.166542
x5: 0.22728
x6: 0.978146", "Arm 22_0
hartmann6: -0.277716 (SEM: 0)
x1: 3.05368e-16
x2: 0.415202
x3: 0.409978
x4: 0.0192546
x5: 0.211704
x6: 0.232917", "Arm 23_0
hartmann6: -2.11135 (SEM: 0)
x1: 0.0365208
x2: 0.217949
x3: 0.483467
x4: 0.126903
x5: 0.215886
x6: 0.692569", "Arm 24_0
hartmann6: -2.52931 (SEM: 0)
x1: 0.0172091
x2: 0.13585
x3: 0.569265
x4: 0.174137
x5: 0.267994
x6: 0.676789", "Arm 25_0
hartmann6: -2.23812 (SEM: 0)
x1: 3.91382e-16
x2: 0.0513237
x3: 0.693434
x4: 0.209007
x5: 0.31231
x6: 0.644846", "Arm 26_0
hartmann6: -2.77843 (SEM: 0)
x1: 0
x2: 0.0929705
x3: 0.487076
x4: 0.24231
x5: 0.307782
x6: 0.643826", "Arm 27_0
hartmann6: -2.35064 (SEM: 0)
x1: 0
x2: 0
x3: 0.479246
x4: 0.206108
x5: 0.382805
x6: 0.672941", "Arm 28_0
hartmann6: -2.40487 (SEM: 0)
x1: 1.89458e-09
x2: 2.71357e-09
x3: 0.483291
x4: 0.311506
x5: 0.242222
x6: 0.63382", "Arm 2_0
hartmann6: -0.0653177 (SEM: 0)
x1: 0.793672
x2: 0.672334
x3: 0.317642
x4: 0.251004
x5: 0.566111
x6: 0.226271", "Arm 3_0
hartmann6: -0.0889706 (SEM: 0)
x1: 0.302699
x2: 0.0140186
x3: 0.975583
x4: 0.841437
x5: 0.354257
x6: 0.671767", "Arm 4_0
hartmann6: -0.114786 (SEM: 0)
x1: 0.434282
x2: 0.609244
x3: 0.64382
x4: 0.978195
x5: 0.387814
x6: 0.762737", "Arm 5_0
hartmann6: -0.0236119 (SEM: 0)
x1: 0.912088
x2: 0.205075
x3: 0.0478265
x4: 0.426799
x5: 0.660582
x6: 0.31773", "Arm 6_0
hartmann6: -2.21932 (SEM: 0)
x1: 0.510378
x2: 0.979358
x3: 0.874545
x4: 0.624344
x5: 0.983902
x6: 0.0382868", "Arm 7_0
hartmann6: -1.30964 (SEM: 0)
x1: 0.019464
x2: 0.333001
x3: 0.465044
x4: 0.0351062
x5: 0.194292
x6: 0.608782", "Arm 8_0
hartmann6: -0.0615707 (SEM: 0)
x1: 0.114111
x2: 0.743253
x3: 0.798537
x4: 0.489368
x5: 0.812672
x6: 0.723423", "Arm 9_0
hartmann6: -0.004947 (SEM: 0)
x1: 0.607023
x2: 0.0695411
x3: 0.392637
x4: 0.915749
x5: 0.102896
x6: 0.168553" ], "type": "scatter", "x": [ 0.15104858577251434, 0.9402376981452107, 0.4643686767667532, 0.43288128941456605, 0.0, 0.3103817281315674, 0.0, 0.27407340511027095, 0.5063418292737942, 0.0, 9.79386717272559e-17, 0.6287942994385958, 0.2456765463805269, 2.3109357035369174e-13, 3.05368381100543e-16, 0.036520837683747455, 0.017209067799860294, 3.913815733201904e-16, 0.0, 0.0, 1.8945762718047216e-09, 0.7936723520979285, 0.3026987947523594, 0.4342824285849929, 0.9120877645909786, 0.510377929545939, 0.019463995471596718, 0.11411143373697996, 0.6070231944322586 ], "xaxis": "x", "y": [ 0.8022201061248779, 0.8711780328303576, 0.439653679728508, 0.2019332659258263, 0.41784274597826465, 0.0, 0.1532587516949975, 4.068935787480984e-12, 0.7082886703880955, 0.4093087213867714, 0.26853266332644843, 0.3860921086743474, 0.8427091373589946, 0.22073741977397807, 0.41520181589672667, 0.21794852807987594, 0.13585037082790424, 0.05132373848295468, 0.09297047622460022, 0.0, 2.713565564402582e-09, 0.6723343254998326, 0.014018594287335873, 0.6092437170445919, 0.20507477037608624, 0.9793579112738371, 0.3330012522637844, 0.743252769112587, 0.06954112835228443 ], "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.0767134 (SEM: 0)
x1: 0.151049
x2: 0.80222
x3: 0.165584
x4: 0.148435
x5: 0.0323852
x6: 0.950737", "Arm 10_0
hartmann6: -0.0424803 (SEM: 0)
x1: 0.940238
x2: 0.871178
x3: 0.716303
x4: 0.0975526
x5: 0.283898
x6: 0.452116", "Arm 11_0
hartmann6: -0.27375 (SEM: 0)
x1: 0.464369
x2: 0.439654
x3: 0.123788
x4: 0.561775
x5: 0.5115
x6: 0.881498", "Arm 12_0
hartmann6: -0.0593292 (SEM: 0)
x1: 0.432881
x2: 0.201933
x3: 0.427252
x4: 0.381064
x5: 0.997119
x6: 0.00243286", "Arm 13_0
hartmann6: -0.0769789 (SEM: 0)
x1: 0
x2: 0.417843
x3: 0.20196
x4: 0
x5: 0
x6: 1", "Arm 14_0
hartmann6: -0.0275264 (SEM: 0)
x1: 0.310382
x2: 0
x3: 0.820433
x4: 0
x5: 0.165285
x6: 0.015951", "Arm 15_0
hartmann6: -0.294382 (SEM: 0)
x1: 0
x2: 0.153259
x3: 0.287662
x4: 0
x5: 0
x6: 0.593177", "Arm 16_0
hartmann6: -0.0143704 (SEM: 0)
x1: 0.274073
x2: 4.06894e-12
x3: 0.844319
x4: 0.177387
x5: 0.868363
x6: 0.0255218", "Arm 17_0
hartmann6: -0.0778413 (SEM: 0)
x1: 0.506342
x2: 0.708289
x3: 0.860554
x4: 0
x5: 1.67832e-16
x6: 0", "Arm 18_0
hartmann6: -0.866458 (SEM: 0)
x1: 0
x2: 0.409309
x3: 0.541239
x4: 2.39548e-12
x5: 0.138572
x6: 0.653377", "Arm 19_0
hartmann6: -1.14643 (SEM: 0)
x1: 9.79387e-17
x2: 0.268533
x3: 0.321841
x4: 0
x5: 0.257193
x6: 0.587977", "Arm 1_0
hartmann6: -0.0437483 (SEM: 0)
x1: 0.628794
x2: 0.386092
x3: 0.509957
x4: 0.698584
x5: 0.758152
x6: 0.380729", "Arm 20_0
hartmann6: -0.0703902 (SEM: 0)
x1: 0.245677
x2: 0.842709
x3: 0.204642
x4: 0
x5: 0.969852
x6: 0.0842652", "Arm 21_0
hartmann6: -1.03444 (SEM: 0)
x1: 2.31094e-13
x2: 0.220737
x3: 0.450272
x4: 0.166542
x5: 0.22728
x6: 0.978146", "Arm 22_0
hartmann6: -0.277716 (SEM: 0)
x1: 3.05368e-16
x2: 0.415202
x3: 0.409978
x4: 0.0192546
x5: 0.211704
x6: 0.232917", "Arm 23_0
hartmann6: -2.11135 (SEM: 0)
x1: 0.0365208
x2: 0.217949
x3: 0.483467
x4: 0.126903
x5: 0.215886
x6: 0.692569", "Arm 24_0
hartmann6: -2.52931 (SEM: 0)
x1: 0.0172091
x2: 0.13585
x3: 0.569265
x4: 0.174137
x5: 0.267994
x6: 0.676789", "Arm 25_0
hartmann6: -2.23812 (SEM: 0)
x1: 3.91382e-16
x2: 0.0513237
x3: 0.693434
x4: 0.209007
x5: 0.31231
x6: 0.644846", "Arm 26_0
hartmann6: -2.77843 (SEM: 0)
x1: 0
x2: 0.0929705
x3: 0.487076
x4: 0.24231
x5: 0.307782
x6: 0.643826", "Arm 27_0
hartmann6: -2.35064 (SEM: 0)
x1: 0
x2: 0
x3: 0.479246
x4: 0.206108
x5: 0.382805
x6: 0.672941", "Arm 28_0
hartmann6: -2.40487 (SEM: 0)
x1: 1.89458e-09
x2: 2.71357e-09
x3: 0.483291
x4: 0.311506
x5: 0.242222
x6: 0.63382", "Arm 2_0
hartmann6: -0.0653177 (SEM: 0)
x1: 0.793672
x2: 0.672334
x3: 0.317642
x4: 0.251004
x5: 0.566111
x6: 0.226271", "Arm 3_0
hartmann6: -0.0889706 (SEM: 0)
x1: 0.302699
x2: 0.0140186
x3: 0.975583
x4: 0.841437
x5: 0.354257
x6: 0.671767", "Arm 4_0
hartmann6: -0.114786 (SEM: 0)
x1: 0.434282
x2: 0.609244
x3: 0.64382
x4: 0.978195
x5: 0.387814
x6: 0.762737", "Arm 5_0
hartmann6: -0.0236119 (SEM: 0)
x1: 0.912088
x2: 0.205075
x3: 0.0478265
x4: 0.426799
x5: 0.660582
x6: 0.31773", "Arm 6_0
hartmann6: -2.21932 (SEM: 0)
x1: 0.510378
x2: 0.979358
x3: 0.874545
x4: 0.624344
x5: 0.983902
x6: 0.0382868", "Arm 7_0
hartmann6: -1.30964 (SEM: 0)
x1: 0.019464
x2: 0.333001
x3: 0.465044
x4: 0.0351062
x5: 0.194292
x6: 0.608782", "Arm 8_0
hartmann6: -0.0615707 (SEM: 0)
x1: 0.114111
x2: 0.743253
x3: 0.798537
x4: 0.489368
x5: 0.812672
x6: 0.723423", "Arm 9_0
hartmann6: -0.004947 (SEM: 0)
x1: 0.607023
x2: 0.0695411
x3: 0.392637
x4: 0.915749
x5: 0.102896
x6: 0.168553" ], "type": "scatter", "x": [ 0.15104858577251434, 0.9402376981452107, 0.4643686767667532, 0.43288128941456605, 0.0, 0.3103817281315674, 0.0, 0.27407340511027095, 0.5063418292737942, 0.0, 9.79386717272559e-17, 0.6287942994385958, 0.2456765463805269, 2.3109357035369174e-13, 3.05368381100543e-16, 0.036520837683747455, 0.017209067799860294, 3.913815733201904e-16, 0.0, 0.0, 1.8945762718047216e-09, 0.7936723520979285, 0.3026987947523594, 0.4342824285849929, 0.9120877645909786, 0.510377929545939, 0.019463995471596718, 0.11411143373697996, 0.6070231944322586 ], "xaxis": "x2", "y": [ 0.8022201061248779, 0.8711780328303576, 0.439653679728508, 0.2019332659258263, 0.41784274597826465, 0.0, 0.1532587516949975, 4.068935787480984e-12, 0.7082886703880955, 0.4093087213867714, 0.26853266332644843, 0.3860921086743474, 0.8427091373589946, 0.22073741977397807, 0.41520181589672667, 0.21794852807987594, 0.13585037082790424, 0.05132373848295468, 0.09297047622460022, 0.0, 2.713565564402582e-09, 0.6723343254998326, 0.014018594287335873, 0.6092437170445919, 0.20507477037608624, 0.9793579112738371, 0.3330012522637844, 0.743252769112587, 0.06954112835228443 ], "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 } } }, "title": { "text": "hartmann6" }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x=\"x1\", param_y=\"x2\", metric_name=\"hartmann6\"))" ] }, { "cell_type": "code", "execution_count": 8, "id": "0aa056b0", "metadata": { "execution": { "iopub.execute_input": "2024-11-13T05:13:17.280261Z", "iopub.status.busy": "2024-11-13T05:13:17.279976Z", "iopub.status.idle": "2024-11-13T05:13:17.799526Z", "shell.execute_reply": "2024-11-13T05:13:17.798850Z" }, "papermill": { "duration": 0.584435, "end_time": "2024-11-13T05:13:17.804185", "exception": false, "start_time": "2024-11-13T05:13:17.219750", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ 0.8588418809932781, 0.8609547133829323, 0.8633961124270348, 0.8661650602522475, 0.8692602515666463, 0.8726800944348396, 0.8764227114540546, 0.8804859413296166, 0.8848673408498371, 0.8895641872561275, 0.8945734810067523, 0.89989194892959, 0.9055160477595083, 0.911441968055441, 0.917665638490288, 0.9241827305078014, 0.9309886633384659, 0.9380786093663287, 0.9454474998380631, 0.9530900309047777, 0.9610006699864209, 0.9691736624480851, 0.9776030385771945, 0.9862826208492758, 0.9952060314702836, 1.00436670018235, 1.0137578723200353, 1.0233726171026736, 1.033203836148775, 1.043244272198365, 1.0534865180273179, 1.0639230255394247, 1.0745461150196165, 1.0853479845333613, 1.096320719455476, 1.1074563021125594, 1.1187466215223927, 1.130183483213928, 1.1417586191110858, 1.1534636974638888, 1.1652903328104431, 1.1772300959525028, 1.1892745239289302, 1.201415129969867, 1.2136434134158838, 1.2259508695855335, 1.2383289995754163, 1.250769319977332, 1.2632633724969682, 1.2758027334586175 ], [ 0.8584384737128558, 0.8605727389618876, 0.8630357719200826, 0.8658265394867526, 0.8689437209517228, 0.8723857087886757, 0.8761506098496894, 0.8802362469602981, 0.8846401609126344, 0.8893596128553942, 0.8943915870765913, 0.8997327941759704, 0.9053796746218026, 0.9113284026874174, 0.9175748907607928, 0.9241147940207928, 0.9309435154724686, 0.9380562113331693, 0.9454477967608326, 0.9531129519145765, 0.9610461283382048, 0.9692415556547787, 0.9776932485621878, 0.9863950141168981, 0.995340459293866, 1.0045229988098234, 1.0139358631961466, 1.0235721071079136, 1.0334246178544388, 1.0434861241371094, 1.0537492049790782, 1.0642062988317045, 1.074849712842237, 1.0856716322665954, 1.0966641300112843, 1.1078191762883138, 1.1191286483664369, 1.130584340402323, 1.1421779733351312, 1.153901204827529, 1.1657456392369987, 1.1777028376001597, 1.1897643276142027, 1.2019216135984419, 1.2141661864200621, 1.2264895333677168, 1.23888314795681, 1.2513385396514352, 1.2638472434866779, 1.2764008295767983 ], [ 0.8585059866104061, 0.8606616302827985, 0.8631461062180021, 0.8659583659930962, 0.8690970734982255, 0.8725606057489461, 0.876347054099518, 0.8804542258564054, 0.884879646290744, 0.8896205610467022, 0.8946739389434804, 0.9000364751660541, 0.9057045948410224, 0.911674456991331, 0.9179419588643968, 0.924502740626445, 0.9313521904159462, 0.9384854497470818, 0.9458974192557904, 0.9535827647773656, 0.961535923746541, 0.9697511119088131, 0.9782223303316399, 0.9869433727041261, 0.995907832911888, 1.0051091128750087, 1.0145404306352628, 1.024194828678649, 1.0340651824792457, 1.0441442092495443, 1.0544244768821256, 1.0648984130676793, 1.0755583145734968, 1.0863963566662764, 1.097404602663853, 1.108575013599036, 1.1198994579790023, 1.1313697216241871, 1.1429775175698722, 1.1547144960134335, 1.1665722542911436, 1.178542346867715, 1.1906162953215376, 1.2027855983102775, 1.2150417414989734, 1.227376207436202, 1.23978048536064, 1.2522460809238498, 1.2647645258127689, 1.277327387257336 ], [ 0.8590459203661738, 0.8612228792615145, 0.8637285980843235, 0.8665620130007854, 0.8697217725271764, 0.8732062383609154, 0.8770134866126392, 0.8811413094386877, 0.8855872170718437, 0.8903484402484609, 0.8954219330284017, 0.9008043760040294, 0.906492179893796, 0.9124814895144813, 0.9187681881264969, 0.9253479021451962, 0.9322160062104646, 0.9393676286068582, 0.9467976570246981, 0.9545007446533437, 0.9624713165958565, 0.9707035765945098, 0.9791915140559503, 0.9879289113637879, 0.9969093514662495, 1.006126225726266, 1.0155727420198553, 1.0252419330696738, 1.035126664999138, 1.0452196460920309, 1.0555134357433555, 1.066000453585305, 1.0766729887733655, 1.087523209416055, 1.098543172132653, 1.1097248317224584, 1.121060050928958, 1.1325406102827766, 1.1441582180063314, 1.1559045199638678, 1.1677711096400656, 1.1797495381305565, 1.1918313241279759, 1.2040079638868106, 1.2162709411510446, 1.228611737028216, 1.2410218397939863, 1.2534927546117904, 1.2660160131517435, 1.2785831830938115 ], [ 0.8600592152697318, 0.8622574170899948, 0.8647841693817662, 0.867638392818703, 0.8708187205759076, 0.8743234991798825, 0.8781507897594798, 0.8822983696970543, 0.8867637346774894, 0.891544101133426, 0.8966364090829546, 0.9020373253557922, 0.9077432472037881, 0.9137503062898672, 0.9200543730490554, 0.9266510614155348, 0.9335357339072784, 0.9407035070604557, 0.9481492572047134, 0.9558676265696481, 0.9638530297121606, 0.9720996602541494, 0.9806014979189557, 0.9893523158550253, 0.9983456882333663, 1.0075749981071245, 1.0170334455186838, 1.0267140558412347, 1.0366096883398426, 1.046713044937838, 1.0570166791731985, 1.0675130053296453, 1.0781943077267206, 1.0890527501531522, 1.100080385427173, 1.1112691650675934, 1.122610949059241, 1.1340975156961826, 1.1457205714860386, 1.1574717610987622, 1.1693426773435058, 1.181324871156328, 1.1934098615830357, 1.2055891457399384, 1.2178542087365858, 1.2301965335444904, 1.2426076107955675, 1.255078948494871, 1.2676020816321436, 1.2801685816770427 ], [ 0.8615462477769155, 0.8637656107931574, 0.8663131776298003, 0.8691878533938431, 0.872388255959107, 0.8759127168356006, 0.8797592824395792, 0.883925715762897, 0.8884094984403251, 0.8932078332123365, 0.8983176467798422, 0.9037355930471073, 0.9094580567482604, 0.9154811574515621, 0.9218007539354695, 0.9284124489297813, 0.9353115942138113, 0.9424932960637196, 0.9499524210399928, 0.9576836021051509, 0.9656812450619695, 0.9739395353011393, 0.9824524448467369, 0.9912137396880982, 1.000216987385311, 1.009455564934996, 1.0189226668836282, 1.0286113136741213, 1.0385143602111364, 1.048624504630792, 1.058934297259824, 1.0694361497480969, 1.0801223443598154, 1.0909850434067272, 1.1020162988077662, 1.1132080617584752, 1.124552192493905, 1.1360404701285434, 1.1476646025566377, 1.1594162363961487, 1.1712869669597374, 1.1832683482363933, 1.1953519028667707, 1.2075291320962873, 1.2197915256891727, 1.2321305717879765, 1.2445377667019308, 1.257004624609234, 1.2695226871572511, 1.2820835329461047 ], [ 0.8635068281103647, 0.8657472608302537, 0.8683154136075979, 0.8712101759159312, 0.8744301503754064, 0.8779736536415739, 0.8818387176943016, 0.8860230915256805, 0.8905242432251187, 0.8953393624592489, 0.9004653633432289, 0.9058988876996656, 0.9116363086999713, 0.9176737348833569, 0.9240070145463438, 0.9306317404969291, 0.9375432551647629, 0.9447366560596067, 0.9522068015693833, 0.9599483170872996, 0.9679556014588188, 0.9762228337368769, 0.984743980234415, 0.993512801862183, 1.002522861738922, 1.0117675330616824, 1.021240007221963, 1.0309333021546354, 1.0408402709044708, 1.0509536103962884, 1.0612658703932643, 1.0717694626282548, 1.0824566700921925, 1.0933196564642698, 1.1043504756670202, 1.1155410815306275, 1.1268833375499467, 1.1383690267173587, 1.1499898614153072, 1.161737493351764, 1.1736035235217939, 1.1855795121789237, 1.1976569887996016, 1.2098274620245326, 1.2220824295603994, 1.234413388026216, 1.2468118427278791, 1.2592693173462444, 1.271777363522056, 1.284327570324139 ], [ 0.8659401989123983, 0.8682015997493289, 0.8707901000100521, 0.8737045734759301, 0.8769436075686632, 0.880505504258681, 0.8843882813731738, 0.8885896743020845, 0.8931071381009055, 0.8979378499872421, 0.903078712228067, 0.9085263554138074, 0.9142771421139405, 0.9203271709093275, 0.9266722807942677, 0.9333080559420495, 0.9402298308257446, 0.9474326956864796, 0.9549115023397701, 0.9626608703105809, 0.9706751932865868, 0.9789486458791974, 0.987475190680643, 0.9962485856050018, 1.005262391501284, 1.0145099800248134, 1.0239845417538889, 1.0336790945380436, 1.0435864920628006, 1.0536994326171705, 1.0640104680481528, 1.074512012887198, 1.085196353633029, 1.0960556581748004, 1.1070819853396383, 1.1182672945481702, 1.1296034555618921, 1.1410822583055096, 1.1526954227481108, 1.1644346088261002, 1.1762914263919204, 1.1882574451711545, 1.2003242047125466, 1.2124832243135821, 1.224726012906161, 1.23704407888593, 1.2494289398694058, 1.2618721323636533, 1.2743652213327392, 1.286899809646407 ], [ 0.8688450349560228, 0.8711272919012498, 0.8737358911647101, 0.8766696907852449, 0.8799272630492472, 0.8835068954190592, 0.8874065918599685, 0.8916240745642855, 0.896156786071372, 0.9010018917806462, 0.9061562828540466, 0.9116165795045091, 0.9173791346650215, 0.9234400380331006, 0.9297951204842817, 0.9364399588477238, 0.9433698810361658, 0.9505799715221324, 0.9580650771510784, 0.9658198132821105, 0.9738385702460793, 0.9821155201096192, 0.9906446237347247, 0.9994196381208977, 1.0084341240179082, 1.017681453796137, 1.0271548195609213, 1.0368472414969572, 1.046751576428715, 1.0568605265819695, 1.0671666485313243, 1.0776623623188297, 1.0883399607275717, 1.0991916186947266, 1.1102094028478109, 1.1213852811482288, 1.1327111326250872, 1.1441787571836723, 1.15577988547135, 1.1675061887846172, 1.1793492890007078, 1.1913007685173589, 1.2033521801839242, 1.215495057207853, 1.2277209230204658, 1.240021301085302, 1.2523877246341926, 1.2648117463147386, 1.2772849477344899, 1.2897989488861692 ], [ 0.8722194439181186, 0.8745224342162126, 0.8771508738115537, 0.8801036049585493, 0.8833791848796593, 0.8869758867138133, 0.8908917008622922, 0.8951243367308932, 0.899671224866837, 0.9045295194876455, 0.9096961013984639, 0.9151675812938829, 0.9209403034396966, 0.9270103497285926, 0.9333735441034946, 0.9400254573422855, 0.9469614121951437, 0.9541764888670694, 0.9616655308363348, 0.9694231509987489, 0.9774437381282455, 0.9857214636424134, 0.9942502886618068, 1.0030239713506908, 1.0120360745274601, 1.0212799735308158, 1.0307488643291203, 1.0404357718583603, 1.050333558574916, 1.0604349332081653, 1.0707324596980163, 1.0812185663023326, 1.0918855548579713, 1.1027256101803735, 1.1137308095852763, 1.1248931325162332, 1.1362044702620424, 1.1476566357471654, 1.159241373379011, 1.1709503689352037, 1.1827752594746657, 1.1947076432558725, 1.206739089645723, 1.21886114900304, 1.2310653625202919, 1.2433432720077942, 1.2556864296044385, 1.2680864073995837, 1.2805348069508162, 1.2930232686827108 ], [ 0.8760609682145961, 0.8783845580440194, 0.8810325689472114, 0.8840038273613722, 0.8872968755247735, 0.890909972445248, 0.8948410952651289, 0.899087941021253, 0.9036479287984799, 0.9085182022738862, 0.9136956326484063, 0.9191768219613567, 0.9249581067837758, 0.9310355622841961, 0.9374050066610546, 0.9440620059346728, 0.9510018790908292, 0.9582197035679156, 0.9657103210785964, 0.9734683437561558, 0.9814881606153076, 0.9897639443170984, 0.9982896582254537, 1.0070590637446282, 1.016065727924053, 1.0253030313183404, 1.0347641760884025, 1.0444421943304274, 1.0543299566179534, 1.0644201807424454, 1.0747054406379564, 1.0851781754735956, 1.0958306988993711, 1.1066552084285521, 1.1176437949413685, 1.1287884522934346, 1.140081087012731, 1.1515135280687383, 1.1630775366972155, 1.1747648162642692, 1.1865670221531395, 1.1984757716569976, 1.2104826538620685, 1.2225792395043142, 1.2347570907835244, 1.2470077711192566, 1.259322854832819, 1.2716939367396467, 1.2841126416370388, 1.2965706336726066 ], [ 0.8803665878967822, 0.8827106320558433, 0.8853779347316313, 0.888367306520635, 0.8916772747651329, 0.8953060845421348, 0.8992517000470374, 0.9035118063715397, 0.9080838116733785, 0.9129648497354527, 0.9181517829109083, 0.9236412054498946, 0.929429447203348, 0.9355125776980214, 0.9418864105765182, 0.9485465083952538, 0.9554881877726664, 0.9627065248796662, 0.9701963612624118, 0.9779523099889729, 0.9859687621084372, 0.9942398934125265, 1.0027596714879439, 1.0115218630472205, 1.020520041526135, 1.0297475949344346, 1.039197733946518, 1.0488635002179478, 1.0587377749142908, 1.068813287436766, 1.0790826243302307, 1.0895382383585117, 1.1001724577307357, 1.1109774954639073, 1.1219454588648101, 1.1330683591158799, 1.1443381209482832, 1.1557465923862027, 1.1672855545455632, 1.1789467314710278, 1.1907217999948605, 1.2026023996009714, 1.214580142278167, 1.2266466223461874, 1.2387934262388351, 1.2510121422276475, 1.2632943700715347, 1.2756317305758205, 1.2880158750464241, 1.300438494624161 ], [ 0.8851327246033438, 0.8874970662030661, 0.8901833704524105, 0.8931904320931265, 0.8965167636686473, 0.9001605965330257, 0.9041198822539491, 0.9083922944078573, 0.9129752307657363, 0.9178658158667655, 0.9230609039761533, 0.9285570824233669, 0.9343506753155132, 0.9404377476203382, 0.9468141096127349, 0.9534753216776671, 0.9604166994612591, 0.9676333193625402, 0.9751200243563414, 0.9828714301376977, 0.9908819315775688, 0.9991457094790709, 1.0076567376229335, 1.0164087900897871, 1.0253954488474857, 1.0346101115898874, 1.0440459998142384, 1.0536961671228442, 1.0635535077352427, 1.0736107651960802, 1.0838605412636197, 1.094295304964215, 1.1049074017964862, 1.115689063070075, 1.1266324153630647, 1.1377294900813515, 1.148972233104664, 1.160352514502139, 1.1718621383015837, 1.1834928522959465, 1.195236357870252, 1.2070843198333636, 1.2190283762377412, 1.2310601481712853, 1.2431712495052905, 1.2553532965828018, 1.267597917831615, 1.2798967632867582, 1.2922415140072654, 1.3046238913726247 ], [ 0.890355246561291, 0.8927397167260945, 0.8954447215397021, 0.898469039885319, 0.9018111696133098, 0.9054693285709057, 0.909441456023981, 0.9137252144695331, 0.9183179918370983, 0.923216904076364, 0.9284187981273662, 0.933920255268985, 0.9397175948412712, 0.9458068783355671, 0.952183913845952, 0.9588442608755771, 0.9657832354896262, 0.9729959158065877, 0.9804771478192993, 0.9882215515352969, 0.9962235274272975, 1.004477263181614, 1.0129767407347254, 1.021715743584424, 1.0306878643646002, 1.0398865126695063, 1.0493049231151697, 1.0589361636231895, 1.0687731439137382, 1.0788086241922685, 1.0890352240157872, 1.0994454313229811, 1.1100316116132407, 1.120786017258481, 1.1317007969320974, 1.1427680051390423, 1.1539796118309902, 1.1653275120897655, 1.176803535863686, 1.1883994577395527, 1.2001070067346729, 1.2119178760920386, 1.2238237330633865, 1.2358162286628473, 1.247887007376497, 1.2600277168112743, 1.2722300172679921, 1.284485591223429, 1.296786152706147, 1.3091234565515781 ], [ 0.8960294746258297, 0.8984338922027919, 0.9011572856219563, 0.9041984179140585, 0.9075557723515991, 0.9112275534989092, 0.9152116886528534, 0.9195058296725257, 0.9241073551959008, 0.9290133732408192, 0.934220724186903, 0.9397259841337839, 0.9455254686313155, 0.9516152367753948, 0.9579910956636426, 0.9646486052036906, 0.9715830832662418, 0.9787896111745253, 0.9862630395214799, 0.9939979943047357, 1.0019888833688861, 1.010229903144917, 1.0187150456749077, 1.0274381059102744, 1.0363926892709219, 1.0455722194530366, 1.0549699464712528, 1.0645789549222715, 1.074392172455382, 1.0844023784354504, 1.0946022127834674, 1.104984184979658, 1.1155406832137462, 1.1262639836666846, 1.1371462599080835, 1.1481795923932696, 1.159355978044127, 1.1706673398973388, 1.182105536803735, 1.1936623731626317, 1.2053296086750143, 1.2170989680991666, 1.2289621509924922, 1.240910841424203, 1.2529367176423567, 1.2650314616796616, 1.2771867688833163, 1.2893943573526934, 1.3016459772707094, 1.3139334201141386 ], [ 0.9021501893463604, 0.9045743606246305, 0.9073158196095473, 0.9103733134961907, 0.9137453111034404, 0.9174300039447852, 0.9214253076878416, 0.9257288640007519, 0.9303380427839106, 0.9352499447840313, 0.9404614045868451, 0.9459689939844321, 0.9517690257120885, 0.9578575575493662, 0.9642303967782397, 0.9708831049921577, 0.9778110032477585, 0.9850091775509635, 0.99247248466852, 1.0001955582553306, 1.0081728152872924, 1.0163984627889366, 1.0248665048445027, 1.0335707498803448, 1.042504818206788, 1.0516621498060748, 1.061036012353201, 1.070619509456304, 1.0804055891019837, 1.0903870522914447, 1.1005565618524369, 1.1109066514123562, 1.1214297345163406, 1.1321181138757763, 1.1429639907309037, 1.1539594743115165, 1.165096591380062, 1.1763672958411708, 1.1877634784005626, 1.199276976258465, 1.2108995828200857, 1.2226230574079533, 1.234439134959738, 1.2463395356955085, 1.2583159747389325, 1.2703601716768547, 1.2824638600416374, 1.2946187967014013, 1.3068167711432823, 1.3190496146352382 ], [ 0.9087116390440357, 0.9111553574849343, 0.9139145477916679, 0.9169879413513555, 0.9203739926630177, 0.9240708804294062, 0.9280765090351673, 0.932388510409867, 0.9370042462744759, 0.9419208107676291, 0.9471350334488079, 0.9526434826738179, 0.958442469337736, 0.9645280509794008, 0.9708960362414478, 0.9775419896787094, 0.9844612369068529, 0.9916488700836343, 0.9990997537131091, 1.006808530763449, 1.0147696290883195, 1.022977268140583, 1.0314254659675142, 1.0401080464753678, 1.0490186469509326, 1.058150725827497, 1.0674975706816001, 1.0770523064474258, 1.0868079038341105, 1.0967571879321782, 1.1068928469939245, 1.1172074413730446, 1.1276934126080007, 1.1383430926338136, 1.1491487131063896, 1.1601024148238879, 1.1711962572286476, 1.1824222279743102, 1.1937722525413221, 1.2052382038854041, 1.2168119121022325, 1.228485174092957, 1.240249763214074, 1.2520974388961579, 1.2640199562156589, 1.2760090754043139, 1.2880565712808327, 1.300154242590057, 1.3122939212346318, 1.3244674813848998 ], [ 0.9157075488826949, 0.9181705948617244, 0.9209471709285938, 0.9240359927009971, 0.9274355005015937, 0.9311438604707045, 0.9351589660628652, 0.9394784399266773, 0.9440996361651881, 0.9490196429742643, 0.9542352856554082, 0.9597431299985645, 0.9655394860300803, 0.9716204121200206, 0.9779817194424985, 0.9846189767820228, 0.991527515677949, 0.9987024358989895, 1.0061386112384538, 1.0138306956208267, 1.021773129509447, 1.0299601466044446, 1.038385780819829, 1.0470438735277066, 1.0559280810574163, 1.0650318824368632, 1.074348587362645, 1.0838713443854795, 1.093593149297061, 1.103506853703638, 1.1136051737719619, 1.1238806991325567, 1.1343259019250334, 1.1449331459700347, 1.1556946960522803, 1.1666027272989943, 1.177649334637669, 1.1888265423171394, 1.2001263134764124, 1.2115405597447235, 1.2230611508570624, 1.2346799242692212, 1.2463886947564087, 1.2581792639798988, 1.270043430005841, 1.2819729967610702, 1.293959783410818, 1.305995633643106, 1.3180724248454043, 1.3301820771592276 ], [ 0.9231311309134512, 0.9256132714751883, 0.9284068763189199, 0.9315106453428674, 0.9349230048465154, 0.9386421086640406, 0.9426658396795653, 0.9469918117230468, 0.9516173718446205, 0.9565396029643002, 0.9617553268937925, 0.9672611077260187, 0.9730532555870605, 0.979127830745055, 0.9854806480699073, 0.9921072818360424, 0.9990030708614043, 1.00616312397333, 1.0135823257935273, 1.0212553428311615, 1.0291766298751002, 1.037340436674089, 1.0457408148933427, 1.0543716253362612, 1.0632265454188004, 1.0722990768833964, 1.081582553740196, 1.091070150420799, 1.1007548901316755, 1.110629653392322, 1.1206871867437065, 1.1309201116121552, 1.1413209333135723, 1.1518820501825222, 1.1625957628107157, 1.1734542833793038, 1.1844497450690148, 1.1955742115322197, 1.2068196864114946, 1.2181781228878874, 1.229641433243972, 1.241201498424903, 1.2528501775824978, 1.2645793175861173, 1.2763807624852137, 1.2882463629082488, 1.3001679853825945, 1.3121375215609912, 1.3241468973399475, 1.3361880818554455 ], [ 0.9309750950697454, 0.9334760836967634, 0.9362863488196733, 0.9394045746786789, 0.9428291737131442, 0.94655828771574, 0.9505897893661519, 0.9549212841428959, 0.959550112611024, 0.9644733530829452, 0.9696878246483923, 0.975190090569749, 0.9809764620372126, 0.9870430022782417, 0.9933855310152246, 0.9999996292637024, 1.006880644463933, 1.0140236959372193, 1.02142368065814, 1.0290752793329672, 1.0369729627744524, 1.0451109985618314, 1.0534834579751458, 1.0620842231920344, 1.070906994734876, 1.0799452991552492, 1.0891924969431401, 1.0986417906467225, 1.1082862331896912, 1.1181187363708796, 1.128132079532473, 1.1383189183816398, 1.1486717939505662, 1.1591831416794696, 1.1698453006076632, 1.1806505226562198, 1.191590981987538, 1.2026587844249523, 1.2138459769177594, 1.2251445570345256, 1.2365464824699486, 1.248043680549003, 1.2596280577127121, 1.2712915089701913, 1.2830259273013935, 1.2948232129956252, 1.3066752829105477, 1.3185740796372585, 1.330511580556859, 1.342479806774217 ], [ 0.9392316610887814, 0.9417512374855148, 0.9445777827939684, 0.9477099656699122, 0.951146184865562, 0.9548845704049, 0.9589229851355491, 0.9632590266562282, 0.9678900296176445, 0.9728130683935213, 0.9780249601183408, 0.9835222680877016, 0.9893013055154757, 0.9953581396431319, 1.0016885961939277, 1.0082882641651554, 1.0151525009512647, 1.0222764377886748, 1.0296549855138515, 1.037282840625169, 1.0451544916381927, 1.0532642257236127, 1.0616061356172564, 1.0701741267896168, 1.078961924863382, 1.0879630832660514, 1.0971709911047027, 1.1065788812492376, 1.1161798386105493, 1.1259668085992964, 1.1359326057509103, 1.1460699225018518, 1.1563713381027205, 1.166829327652249, 1.177436271237461, 1.1881844631640233, 1.1990661212617602, 1.2100733962488461, 1.2211983811396432, 1.2324331206802528, 1.2437696207956894, 1.2551998580336787, 1.2667157889889151, 1.2783093596930055, 1.2899725149539718, 1.301697207631136, 1.3134754078297963, 1.3252991120017799, 1.3371603519367081, 1.3490512036308502 ], [ 0.9478925713312576, 0.9504304612233991, 0.9532728949588996, 0.9564185256942997, 0.9598657386779972, 0.9636126524462628, 0.9676571203932373, 0.971996732713937, 0.9766288187177358, 0.9815504495090518, 0.9867584410323944, 0.9922493574765572, 0.9980195150334876, 1.0040649860057127, 1.0103816032562671, 1.0169649649938861, 1.0238104398856285, 1.0309131724890483, 1.0382680889945468, 1.045869903268568, 1.053713123187673, 1.0617920572525608, 1.0701008214712628, 1.0786333464995959, 1.0873833850266073, 1.0963445193930694, 1.1055101694291258, 1.1148736004984976, 1.1244279317351074, 1.134166144457878, 1.1440810907499428, 1.154165502186863, 1.1644119986994672, 1.1748130975561193, 1.1853612224488874, 1.1960487126685635, 1.2068678323528799, 1.217810779792128, 1.2288696967769281, 1.240036677972221, 1.2513037803020588, 1.2626630323295598, 1.2741064436165939, 1.285626014047963, 1.2972137431047528, 1.3088616390722332, 1.3205617281670143, 1.3323060635695843, 1.3440867343474872, 1.3558958742557101 ], [ 0.956949104470298, 0.959505019421443, 0.96236293810429, 0.9655214982738245, 0.9689790718680349, 0.9727337662246929, 0.9767834256693195, 0.9811256334734058, 0.9857577141798937, 0.9906767362934861, 0.9958795153317865, 1.0013626172329197, 1.0071223621147771, 1.0131548283799583, 1.0194558571599908, 1.0260210570920718, 1.0328458094202022, 1.0399252734127598, 1.047254392087619, 1.0548278982350718, 1.0626403207285944, 1.0706859911132405, 1.0789590504597524, 1.087453456473777, 1.0961629908471653, 1.1050812668396914, 1.114201737077376, 1.1235177015550701, 1.133022315828784, 1.1427085993841661, 1.152569444166834, 1.1625976232598372, 1.1727857996935043, 1.1831265353728422, 1.1936123001069494, 1.2042354807255125, 1.2149883902666818, 1.2258632772211855, 1.2368523348166283, 1.2479477103270857, 1.2591415143920899, 1.2704258303297022, 1.2817927234282658, 1.2932342502018224, 1.3047424675941288, 1.3163094421160664, 1.3279272589024154, 1.3395880306731507, 1.3512839065853066, 1.3630070809618036 ], [ 0.9663920900180014, 0.9689657272637013, 0.9718387156505529, 0.9750096776420236, 0.9784769720695, 0.9822386953695742, 0.986292683190098, 0.9906365123630314, 0.9952675032418323, 1.0001827224004607, 1.0053789856901494, 1.010852861649699, 1.0166006752641046, 1.022618512065832, 1.0289022225725424, 1.0354474270536156, 1.0422495206188094, 1.0493036786195087, 1.056604862355063, 1.064147825073662, 1.0719271182581098, 1.0799370981862064, 1.0881719327544168, 1.0966256085531694, 1.1052919381819772, 1.1141645677920748, 1.1232369848430854, 1.1325025260613117, 1.1419543855854313, 1.1515856232857993, 1.1613891732434312, 1.1713578523737904, 1.1814843691809527, 1.191761332627173, 1.2021812611026252, 1.2127365914804489, 1.2234196882413575, 1.2342228526530163, 1.2451383319879994, 1.2561583287658502, 1.2672750100031351, 1.2784805164563342, 1.2897669718429539, 1.3011264920247705, 1.3125511941392638, 1.324033205663783, 1.3355646733985076, 1.347137772353513, 1.358744714526379, 1.3703777575562057 ], [ 0.9762119236557862, 0.9788029659563765, 0.9816905970120129, 0.9848734241174295, 0.9883497932114593, 0.9921177901351566, 0.9961752422555379, 1.0005197204527965, 1.005148541469225, 1.0100587706162065, 1.0152472248361644, 1.0207104761144903, 1.0264448552369028, 1.0324464558858546, 1.0387111390704629, 1.0452345378819965, 1.0520120625680913, 1.0590389059168357, 1.0663100489421806, 1.0738202668611851, 1.081564135353263, 1.0895360370904994, 1.0977301685285883, 1.1061405469465717, 1.1147610177233374, 1.1235852618388684, 1.1326068035870622, 1.141819018487293, 1.151215141380634, 1.1607882746979332, 1.170531396884392, 1.1804373709671754, 1.1904989532510166, 1.2007088021272347, 1.2110594869809967, 1.221543497181751, 1.232153251142036, 1.2428811054287254, 1.2537193639120425, 1.2646602869367154, 1.2756961005002445, 1.286819005422749, 1.298021186493961, 1.3092948215815867, 1.3206320906868403, 1.3320251849326443, 1.3434663154694182, 1.3549477222851385, 1.366461682905398, 1.3780005209700332 ], [ 0.9863985833330204, 0.9890066988457462, 0.99190853372999, 0.9951026802470823, 0.9985874716678952, 1.002360983551776, 1.0064210353874559, 1.0107651925947108, 1.0153907688840067, 1.0202948289712477, 1.0254741916439898, 1.0309254331744178, 1.0366448910740895, 1.04262866818509, 1.0488726371004906, 1.0553724449078314, 1.0621235182474598, 1.0691210686777548, 1.0763600983385027, 1.083835405902564, 1.0915415928066319, 1.0994730697498882, 1.1076240634502992, 1.1159886236464018, 1.1245606303332691, 1.1333338012202545, 1.1423016993972828, 1.151457741197476, 1.1607952042418914, 1.1703072356529702, 1.179986860422874, 1.1898269899219018, 1.1998204305329645, 1.2099598923973127, 1.2202379982563236, 1.2306472923749427, 1.241180249531268, 1.2518292840571403, 1.2625867589151494, 1.273444994796086, 1.2843962792221928, 1.2954328756412694, 1.3065470324962793, 1.3177309922561284, 1.328977000392331, 1.3402773142878204, 1.3516242120631485, 1.363010001306388, 1.3744270276926536, 1.385867683480501 ], [ 0.9969416460964984, 0.9995664882681519, 1.0024820763382065, 1.0056869876828272, 1.00917954314022, 1.0129578083096766, 1.0170195952101349, 1.0213624642954326, 1.025983726824465, 1.0308804475832183, 1.0360494479542628, 1.041487309330067, 1.047190376864658, 1.053154763557795, 1.059376354665401, 1.0658508124295052, 1.072573581119438, 1.079539892376866, 1.0867447708552769, 1.0941830401447428, 1.101849328972226, 1.1097380776669692, 1.1178435448798598, 1.1261598145455285, 1.134680803075714, 1.1434002667710013, 1.1523118094387, 1.1614088902040398, 1.1706848315007579, 1.1801328272280287, 1.189745951059503, 1.1995171648902834, 1.2094393274073623, 1.2195052027696462, 1.229707469381413, 1.2400387287458843, 1.2504915143829032, 1.2610583007962932, 1.2717315124754645, 1.2825035329165917, 1.2933667136481521, 1.3043133832459315, 1.3153358563228874, 1.3264264424788017, 1.33757745519573, 1.3487812206643561, 1.3600300865276271, 1.3713164305276058, 1.3826326690419477, 1.3939712654967829 ], [ 1.0078303056115863, 1.0104715130920252, 1.0134003919210797, 1.0166155047512035, 1.0201151602333653, 1.0238974143369182, 1.0279600720248552, 1.0323006892826514, 1.0369165754985732, 1.0418047961919445, 1.0469621760858847, 1.0523853025198562, 1.058070529197176, 1.0640139802614006, 1.0702115546957272, 1.0766589310377386, 1.0833515724028067, 1.0902847318067577, 1.0974534577805088, 1.1048526002660022, 1.1124768167846342, 1.1203205788671098, 1.1283781787343967, 1.13664373621818, 1.1451112059091024, 1.1537743845208535, 1.1626269184572646, 1.1716623115695854, 1.180873933091029, 1.190255025734255, 1.1997987139390414, 1.2094980122550132, 1.219345833845897, 1.2293349991005174, 1.2394582443360134, 1.2497082305783893, 1.2600775524057712, 1.2705587468395492, 1.2811443022680649, 1.2918266673886771, 1.3025982601525894, 1.3134514766981171, 1.3243787002578347, 1.3353723100246049, 1.3464246899625332, 1.3575282375483766, 1.3686753724297096, 1.3798585449860048, 1.3910702447791043, 1.4023030088802904 ], [ 1.0190533903343697, 1.0217105869118646, 1.024652282324576, 1.0278770246755782, 1.0313831106849605, 1.0351685870300051, 1.03923125203704, 1.0435686577237113, 1.048178112188635, 1.0530566823456746, 1.0582011969989147, 1.06360825025389, 1.0692742052599333, 1.0751951982779366, 1.0813671430672456, 1.0877857355845895, 1.0944464589875877, 1.1013445889346332, 1.1084751991722428, 1.115833167401284, 1.1234131814112085, 1.1312097454732626, 1.1392171869807544, 1.1474296633258623, 1.1558411690011676, 1.1644455429136356, 1.1732364758987925, 1.1822075184221739, 1.191352088455004, 1.2006634795105697, 1.2101348688274034, 1.2197593256858617, 1.2295298198433164, 1.2394392300739914, 1.2494803527987748, 1.2596459107907387, 1.269928561940876, 1.280320908070554, 1.2908155037746334, 1.3014048652814105, 1.3120814793142754, 1.3228378119406003, 1.3336663173930938, 1.344559446849697, 1.3555096571572054, 1.3665094194851068, 1.3775512278955049, 1.388627607815678, 1.3997311244000155, 1.410854390768454 ], [ 1.0305993822924386, 1.0332721768515, 1.0362262029766451, 1.0394599944091296, 1.0429718362049676, 1.0467597660950907, 1.0508215761940372, 1.0551548150544865, 1.059756790066483, 1.0646245701968142, 1.069754989065624, 1.0751446483554576, 1.0807899215476582, 1.086686957980507, 1.092831687222517, 1.099219823754293, 1.1058468719510235, 1.1127081313577984, 1.1197987022488545, 1.1271134914618588, 1.1346472184969074, 1.1423944218708082, 1.1503494657152298, 1.158506546607941, 1.1668597006254178, 1.1754028106049847, 1.184129613603761, 1.1930337085422362, 1.202108564018839, 1.2113475262827065, 1.2207438273504427, 1.2302905932538166, 1.2399808524035427, 1.2498075440555576, 1.25976352686494, 1.269841587513571, 1.280034449396171, 1.2903347813512656, 1.300735206420941, 1.3112283106264715, 1.3218066517438776, 1.3324627680655574, 1.3431891871337727, 1.3539784344312087, 1.3648230420150058, 1.375715557080123, 1.3866485504384367, 1.3976146249004113, 1.408606423545594, 1.419616637870039 ], [ 1.042456436430669, 1.0451444229331113, 1.0481102822740553, 1.0513525340338619, 1.0548694518817632, 1.0586590649562067, 1.0627191595894487, 1.0670472813748206, 1.0716407375743586, 1.0764965998630691, 1.0816117074064113, 1.0869826702663044, 1.092605873130883, 1.0984774793617496, 1.1045934353528912, 1.1109494751939928, 1.1175411256309649, 1.1243637113152283, 1.1314123603332757, 1.1386820100076365, 1.1461674129590624, 1.1538631434200697, 1.1617636037893089, 1.1698630314151643, 1.1781555055979485, 1.1866349547977866, 1.195295164036607, 1.204129782481472, 1.2131323311960611, 1.222296211047498, 1.2316147107545252, 1.2410810150638258, 1.250688213040291, 1.2604293064569771, 1.270297218271073, 1.2802848011709307, 1.2903848461802483, 1.300590091304414, 1.310893230205221, 1.321286920888911, 1.3317637943933172, 1.3423164634598608, 1.3529375311762593, 1.3636195995754492, 1.3743552781772999, 1.3851371924590365, 1.3959579922410839, 1.4068103599750394, 1.4176870189205777, 1.4285807411990357 ], [ 1.0546124004774218, 1.0573151579669828, 1.0602923414905168, 1.0635424566815956, 1.067063766110659, 1.0708542906849796, 1.0749118113893223, 1.0792338713652758, 1.0838177783269047, 1.088660607309194, 1.0937592037459112, 1.099110186871707, 1.1047099534442748, 1.1105546817798928, 1.1166403360967851, 1.1229626711589216, 1.129517237213096, 1.1362993852109726, 1.1433042723076883, 1.1505268676277414, 1.1579619582889413, 1.165604155673628, 1.1734479019373423, 1.1814874767432832, 1.189717004211881, 1.1981304600727283, 1.2067216790075426, 1.2154843621712255, 1.2244120848781803, 1.2334983044409844, 1.2427363681477406, 1.2521195213650103, 1.2616409157518231, 1.2712936175715495, 1.28107061608707, 1.2909648320250742, 1.300969126095782, 1.3110763075525727, 1.3212791427787272, 1.3315703638857503, 1.3419426773095922, 1.3523887723904338, 1.3629013299221535, 1.3734730306573013, 1.384096563753732, 1.3947646351499314, 1.4054699758549256, 1.4162053501402305, 1.4269635636207998, 1.437737471212404 ], [ 1.0670548352848912, 1.0697719279161648, 1.0727599151599023, 1.0760172889303121, 1.079542300997399, 1.0833329644063794, 1.0873870552340557, 1.0917021146797685, 1.0962754514886521, 1.1011041447037804, 1.1061850467434011, 1.1115147867987245, 1.1170897745473642, 1.1229062041763909, 1.128960058708951, 1.1352471146275287, 1.1417629467863237, 1.1485029336047687, 1.1554622625336577, 1.1626359357848586, 1.170018776315119, 1.1776054340535083, 1.1853903923627607, 1.193367974722795, 1.2015323516257435, 1.2098775476702488, 1.218397448843435, 1.2270858099775142, 1.2359362623691343, 1.2449423215476743, 1.2540973951797405, 1.2633947910962475, 1.2728277254284186, 1.2823893308390075, 1.2920726648343395, 1.3018707181439637, 1.3117764231528803, 1.321782662372971, 1.3318822769386796, 1.3420680751136602, 1.3523328407934914, 1.3626693419909828, 1.3730703392899546, 1.3835285942536895, 1.3940368777746246, 1.4045879783516428, 1.4151747102820316, 1.4257899217550514, 1.436426502834451, 1.447077393317552 ], [ 1.079771035596863, 1.0825020126890743, 1.085500271887973, 1.0887642916291547, 1.0922923131909723, 1.0960823421332337, 1.1001321500689047, 1.1044392767663405, 1.1090010325795683, 1.1138145012035225, 1.1188765427502478, 1.1241837971411726, 1.1297326878113478, 1.135519425718822, 1.1415400136537048, 1.1477902508396092, 1.1542657378201924, 1.1609618816229896, 1.1678739011915116, 1.1749968330776002, 1.1823255373832922, 1.1898547039432827, 1.197578858736969, 1.2054923705195644, 1.213589457660817, 1.2218641951797353, 1.2303105219636776, 1.2389222481587687, 1.247693062720138, 1.2566165411078816, 1.2656861531165666, 1.2748952708246153, 1.2842371766497915, 1.2937050714976368, 1.303292082988643, 1.312991273750403, 1.3227956497607423, 1.3326981687279198, 1.3426917484937912, 1.352769275445856, 1.362923612924492, 1.3731476096114377, 1.38343410788547, 1.3937759521323996, 1.404165996994903, 1.4145971155501762, 1.4250622074013313, 1.4355542066703066, 1.4460660898799607, 1.456590883712583 ], [ 1.0927480511962229, 1.0954924473120715, 1.0985004355442605, 1.1017704811039128, 1.105300815096797, 1.109089435981404, 1.1131341113553868, 1.1174323800687909, 1.1219815546608907, 1.126778724117907, 1.131820756947184, 1.1371043045638147, 1.1426258049842457, 1.1483814868214286, 1.1543673735750815, 1.1605792882103174, 1.1670128580173054, 1.173663519743844, 1.180526524992634, 1.187596945874225, 1.1948696809062163, 1.2023394611485592, 1.2100008565652698, 1.2178482826010921, 1.2258760069623114, 1.234078156590368, 1.2424487248158826, 1.2509815786814114, 1.2596704664202996, 1.268509025078588, 1.2774907882675675, 1.286609194033175, 1.295857592829204, 1.3052292555807923, 1.3147173818244442, 1.3243151079106685, 1.3340155152558948, 1.343811638629191, 1.353696474460686, 1.3636629891569763, 1.3737041274106447, 1.383812820489378, 1.3939819944920329, 1.404204578557113, 1.4144735130114419, 1.4247817574453392, 1.4351222987014782, 1.4454881587653623, 1.4558724025443086, 1.466268145523614 ], [ 1.1059727083835689, 1.108730043433603, 1.1117472067860241, 1.1150226506947194, 1.1185545964223251, 1.1223410357172459, 1.12637973261471, 1.1306682255603002, 1.1352038298530929, 1.139983640405042, 1.145004534812695, 1.1502631767371565, 1.1557560195864647, 1.1614793104953614, 1.1674290945959886, 1.1736012195725647, 1.1799913404928715, 1.1865949249086802, 1.1934072582165207, 1.2004234492703965, 1.2076384362361858, 1.2150469926791365, 1.2226437338730534, 1.2304231233212013, 1.2383794794776268, 1.246506982657759, 1.2547996821257874, 1.263251503347887, 1.2718562553978465, 1.280607638503216, 1.2894992517185102, 1.2985246007133184, 1.3076771056607086, 1.3169501092141702, 1.3263368845580834, 1.3358306435190848, 1.3454245447244888, 1.355111701793755, 1.3648851915495719, 1.3747380622350132, 1.3846633417227467, 1.394654045703469, 1.4047031858391337, 1.4148037778689293, 1.4249488496538778, 1.4351314491479013, 1.445344652282122, 1.4555815707503175, 1.4658353596835707, 1.4760992252015017 ], [ 1.1194316317380788, 1.1222014111110516, 1.1252271848649213, 1.1285073925767772, 1.132040246005688, 1.1358237305883476, 1.1398556072544284, 1.1441334145600002, 1.1486544711363023, 1.1534158784503095, 1.1584145238735475, 1.1636470840540507, 1.169110028587312, 1.17479962397942, 1.1807119378973263, 1.1868428436984353, 1.1931880252330218, 1.199742981911011, 1.2065030340254623, 1.2134633283230176, 1.220618843813119, 1.2279643978053256, 1.23549465216499, 1.243204119776899, 1.2510871712053235, 1.2591380415398112, 1.2673508374148217, 1.2757195441910436, 1.2842380332864713, 1.2929000696445365, 1.3016993193268793, 1.3106293572173195, 1.3196836748244825, 1.3288556881694356, 1.3381387457454097, 1.3475261365354585, 1.3570110980755614, 1.3665868245486739, 1.3762464748968088, 1.3859831809376084, 1.395790055471565, 1.4056602003671161, 1.4155867146099999, 1.4255627023038704, 1.4355812806093635, 1.4456355876087486, 1.455718790083841, 1.4658240911947984, 1.4759447380478639, 1.486074029140402 ], [ 1.1331112661114342, 1.135892980830643, 1.1389267896670179, 1.1422111198142895, 1.1457441738777119, 1.1495239313875225, 1.153548150628515, 1.157814370782881, 1.1623199143840681, 1.1670618900780514, 1.1720371956880875, 1.1772425215788167, 1.1826743543139704, 1.1883289806027977, 1.1942024915284106, 1.2002907870517003, 1.2065895807831497, 1.213094405015379, 1.2198006160073454, 1.2267033995122674, 1.2337977765393964, 1.241078609340299, 1.2485406076095602, 1.2561783348893671, 1.2639862151671364, 1.2719585396548683, 1.280089473738952, 1.2883730640885336, 1.2968032459099303, 1.305373850335363, 1.314078611933045, 1.3229111763257329, 1.3318651079053645, 1.3409338976299539, 1.350110970890086, 1.3593896954317155, 1.3687633893214217, 1.378225328941656, 1.387768757001626, 1.3973868905513578, 1.4070729289851087, 1.4168200620213347, 1.4266214776459325, 1.4364703700058599, 1.4463599472406974, 1.4562834392390978, 1.4662341053083385, 1.4762052417445835, 1.4861901892921556, 1.4961823404802315 ], [ 1.146997898804793, 1.1497910257107216, 1.1528322839362546, 1.1561200885983982, 1.1596526335078896, 1.1634278927007258, 1.1674436222810523, 1.171697362573394, 1.1761864405807878, 1.1809079727462297, 1.1858588680128452, 1.1910358311790705, 1.196435366542761, 1.2020537818297257, 1.2078871923992827, 1.2139315257214602, 1.2201825261174464, 1.226635759756207, 1.2332866198989247, 1.2401303323826351, 1.2471619613334683, 1.2543764151006562, 1.2617684524006714, 1.2693326886615315, 1.2770636025562991, 1.2849555427146568, 1.2930027346014819, 1.3011992875502012, 1.3095392019394065, 1.3180163765001374, 1.3266246157418808, 1.3353576374839566, 1.3442090804801994, 1.3531725121235625, 1.362241436217773, 1.371409300802938, 1.3806695060218914, 1.3900154120140187, 1.399440346823849, 1.4089376143104155, 1.4185005020450547, 1.4281222891845715, 1.4377962543064644, 1.4475156831938119, 1.457273876557479, 1.4670641576826307, 1.476879879988199, 1.486714434486785, 1.4965612571338398, 1.5064138360544455 ], [ 1.1610776818792405, 1.1638816838385981, 1.1669297956318174, 1.170220420618513, 1.173751744183978, 1.177521735288638, 1.1815281483238815, 1.1857685252728134, 1.190240198172563, 1.1949402918750354, 1.199865727102105, 1.2050132237908555, 1.2103793047235536, 1.215960299437036, 1.221752348405228, 1.2277514074880513, 1.2339532526396746, 1.2403534848683562, 1.2469475354396864, 1.2537306713147442, 1.2606980008138207, 1.2678444794966683, 1.2751649162488485, 1.2826539795643204, 1.2903062040133684, 1.2981159968851155, 1.306077644993048, 1.3141853216322452, 1.3224330936763085, 1.3308149288018989, 1.3393247028287332, 1.3479562071624036, 1.3567031563273235, 1.365559195577502, 1.3745179085714618, 1.38357282509925, 1.3927174288478295, 1.4019451651922479, 1.4112494489995335, 1.4206236724322348, 1.4300612127387564, 1.439555440017771, 1.4490997249438806, 1.4586874464422714, 1.468311999299451, 1.4779668016985805, 1.4876453026669045, 1.4973409894239373, 1.50704739461863, 1.5167581034448179 ], [ 1.1753366545500892, 1.1781509806913293, 1.1812053403690301, 1.1844981255174512, 1.1880275134752307, 1.1917914685521207, 1.1957877438976736, 1.2000138836700038, 1.2044672255015387, 1.2091449032587136, 1.2140438500912754, 1.2191608017670907, 1.2244923002870671, 1.2300346977747127, 1.235784160634406, 1.24173667397151, 1.2478880462671142, 1.2542339143000523, 1.2607697483080005, 1.2674908573789705, 1.2743923950643017, 1.2814693652038276, 1.2887166279532916, 1.2961289060038088, 1.3037007909830485, 1.311426750026914, 1.3193011325110644, 1.3273181769302647, 1.3354720179141615, 1.343756693367706, 1.3521661517234824, 1.3606942592944882, 1.3693348077139045, 1.3780815214500475, 1.3869280653834846, 1.3958680524334266, 1.4048950512207605, 1.4140025937548186, 1.4231841831312002, 1.4324333012275714, 1.4417434163850127, 1.4511079910622247, 1.4605204894499304, 1.4699743850335, 1.4794631680910268, 1.4889803531155628, 1.4985194861492366, 1.5080741520179073, 1.5176379814551872, 1.527204658104814 ], [ 1.1897607656150941, 1.192584851590368, 1.1956448438946026, 1.198939123381142, 1.2024658597300055, 1.2062230130315554, 1.2102083356673177, 1.214419374486442, 1.2188534732745349, 1.2235077755113475, 1.2283792274138554, 1.2334645812596854, 1.23876039898629, 1.2442630560600243, 1.2499687456090598, 1.2558734828138989, 1.2619731095475768, 1.2682632992590257, 1.2747395620907112, 1.2813972502225404, 1.2882315634328694, 1.2952375548675665, 1.3024101370069625, 1.3097440878213102, 1.3172340571035388, 1.324874572969259, 1.3326600485123181, 1.3405847886054043, 1.3486429968330749, 1.3568287825465095, 1.3651361680270364, 1.3735590957470238, 1.3820914357152334, 1.3907269928945438, 1.399459514679438, 1.4082826984205061, 1.4171901989835787, 1.4261756363305462, 1.4352326031095284, 1.4443546722414409, 1.4535354044909732, 1.4627683560088585, 1.472047085833666, 1.4813651633408447, 1.4907161756267266, 1.5000937348161276, 1.5094914852817625, 1.5189031107639839, 1.5283223413801088, 1.5377429605124895 ], [ 1.204335895867651, 1.2071691641410973, 1.2102341645461485, 1.2135292672121873, 1.217052634557741, 1.2208022228907778, 1.2247757843014244, 1.228970868845494, 1.2333848270157137, 1.2380148124971284, 1.2428577852029192, 1.247910514586114, 1.2531695832221588, 1.2586313906563729, 1.2642921575112391, 1.2701479298458764, 1.2761945837612914, 1.2824278302435903, 1.2888432202374382, 1.2954361499413438, 1.3022018663153978, 1.3091354727931381, 1.3162319351871166, 1.3234860877787533, 1.3308926395818133, 1.3384461807690642, 1.346141189251102, 1.3539720373963708, 1.3619329988804807, 1.3700182556537421, 1.3782219050146023, 1.38653796677731, 1.3949603905213237, 1.4034830629105035, 1.4120998150695372, 1.4208044300050993, 1.429590650059747, 1.4384521843851812, 1.4473827164235162, 1.4563759113832742, 1.465425423698188, 1.4745249044565698, 1.483668008788835, 1.4928484032016998, 1.5020597728466372, 1.5112958287116203, 1.5205503147243369, 1.5298170147558805, 1.5390897595139825, 1.5483624333154993 ], [ 1.2190478804458875, 1.221889740608069, 1.2249591156479023, 1.2282543653396305, 1.2317736452463608, 1.235514908336453, 1.2394759068876011, 1.243654194677143, 1.2480471294549353, 1.2526518756958887, 1.2574654076280845, 1.26248451253184, 1.2677057943048406, 1.2731256772877633, 1.2787404103444466, 1.2845460711898167, 1.2905385709591233, 1.2967136590102177, 1.3030669279518508, 1.3095938188889575, 1.3162896268766395, 1.323149506573248, 1.3301684780837506, 1.3373414329826891, 1.3446631405072778, 1.3521282539095512, 1.359731316957133, 1.3674667705714776, 1.3753289595922567, 1.383312139656424, 1.391410484180199, 1.3996180914321896, 1.4079289916856608, 1.4163371544377787, 1.4248364956836335, 1.433420885232958, 1.442084154056996, 1.450820101653337, 1.4596225034167816, 1.4684851180033223, 1.4774016946757678, 1.4863659806185074, 1.4953717282098218, 1.5044127022397291, 1.5134826870617908, 1.5225754936676303, 1.5316849666727632, 1.540804991202969, 1.5499294996704278, 1.5590524784292379 ], [ 1.233882531069436, 1.2367323801778578, 1.2398054877932154, 1.243100203715377, 1.2466146770667534, 1.2503468579241979, 1.2542944992343248, 1.25845515900962, 1.2628262028028296, 1.267404806455904, 1.2721879591195973, 1.277172466539444, 1.2823549546026944, 1.2877318731410494, 1.2932994999832526, 1.299053945250641, 1.304991155889121, 1.3111069204300545, 1.3173968739719606, 1.3238565033753795, 1.3304811526615519, 1.337266028606234, 1.3442062065191844, 1.35129663619977, 1.3585321480580501, 1.3659074593915763, 1.373417180806894, 1.381055822774885, 1.3888178023088948, 1.3966974497543243, 1.4046890156777392, 1.4127866778444425, 1.4209845482722967, 1.4292766803496773, 1.437657076006165, 1.446119692923105, 1.4546584517727026, 1.4632672434730767, 1.471939936447189, 1.4806703838739796, 1.4894524309192896, 1.4982799219351495, 1.5071467076154073, 1.5160466520961648, 1.524973639989733, 1.5339215833408204, 1.5428844284938696, 1.551856162860977, 1.56083082157977, 1.569802494051109 ], [ 1.2488256581162034, 1.251682881061416, 1.2547590709668643, 1.2580525680502925, 1.261561515416464, 1.2652838607041605, 1.26921735801196, 1.2733595700999882, 1.277707870865136, 1.2822594480856069, 1.2870113064317523, 1.2919602707379172, 1.2971029895307329, 1.302435938808121, 1.307955426063423, 1.3136575945479234, 1.3195384277646875, 1.3255937541869685, 1.3318192521929135, 1.3382104552085026, 1.3447627570501643, 1.3514714174584757, 1.358331567812786, 1.3653382170181128, 1.3724862575535344, 1.3797704716723724, 1.3871855377433766, 1.3947260367221654, 1.4023864587418808, 1.4101612098121257, 1.418044618614386, 1.426030943382571, 1.4341143788573716, 1.442289063301954, 1.4505490855677312, 1.4588884921983132, 1.4673012945590573, 1.4757814759814383, 1.4843229989090068, 1.4929198120344136, 1.5015658574146915, 1.5102550775537948, 1.518981422440432, 1.5277388565302734, 1.5365213656607488, 1.5453229638879349, 1.554137700234517, 1.5629596653380768, 1.571782997989806, 1.5806018915534727 ], [ 1.2638630924924041, 1.2667270623895854, 1.2698056764598011, 1.2730972657424284, 1.2765999677556041, 1.280311728158275, 1.2842303026858488, 1.2883532593570013, 1.2926779809490245, 1.29720166773778, 1.3019213404987615, 1.3068338437643032, 1.3119358493324618, 1.3172238600216992, 1.3226942136657611, 1.328343087342125, 1.3341665018273006, 1.3401603262716453, 1.3463202830860992, 1.3526419530326277, 1.359120780509929, 1.3657520790254372, 1.372531036844892, 1.379452722809063, 1.386512092308683, 1.3937039934070068, 1.4010231730996197, 1.4084642837008565, 1.4160218893462078, 1.4236904725993687, 1.431464441152883, 1.4393381346108258, 1.4473058313424663, 1.455361755394616, 1.463500083451816, 1.4717149518318764, 1.4800004635056778, 1.488350695129241, 1.4967597040759597, 1.505221535458412, 1.513730229126935, 1.522279826634467, 1.5308643781558031, 1.5394779493501667, 1.5481146281563376, 1.5567685315090611, 1.565433811966755, 1.5741046642392427, 1.5827753316067428, 1.5914401122186985 ], [ 1.27898070725026, 1.2818507858555674, 1.284931158530855, 1.288220147551759, 1.2917158852888428, 1.2954163158839804, 1.2993191971954974, 1.303422103009749, 1.3077224255157405, 1.3122173780400057, 1.3169039980371882, 1.3217791503321448, 1.3268395306086291, 1.3320816691387913, 1.3375019347482928, 1.343096539009837, 1.3488615406591407, 1.354792850225345, 1.3608862348690813, 1.367137323419367, 1.373541611601482, 1.3800944674469078, 1.3867911368762338, 1.3936267494453292, 1.4005963242457637, 1.4076947759486529, 1.4149169209822272, 1.4222574838324717, 1.4297111034560588, 1.437272339794658, 1.4449356803798732, 1.4526955470170595, 1.4605463025373209, 1.4684822576056409, 1.4764976775742653, 1.4845867893693518, 1.492743788399581, 1.5009628454751454, 1.509238113725595, 1.5175637355050922, 1.5259338492736831, 1.534342596443432, 1.5427841281781076, 1.5512526121355719, 1.5597422391419924, 1.56824722978734, 1.5767618409316222, 1.5852803721118511, 1.5937971718397115, 1.60230664378042 ], [ 1.2941644389081781, 1.297039977059515, 1.3001214357699746, 1.3034071289766918, 1.306895184348946, 1.310583544978733, 1.3144699713346906, 1.3185520434775713, 1.3228271635342685, 1.3272925584263868, 1.3319452828501408, 1.3367822225024448, 1.3418000975487976, 1.3469954663271162, 1.3523647292820598, 1.357904133123157, 1.363609775200525, 1.3694776080902498, 1.3755034443827823, 1.3816829616657786, 1.3880117076931677, 1.394485105732126, 1.4010984600785583, 1.4078469617320315, 1.4147256942204127, 1.4217296395645402, 1.4288536843725668, 1.4360926260537747, 1.4434411791412387, 1.4508939817127948, 1.4584456018988883, 1.4660905444670853, 1.4738232574712093, 1.4816381389546225, 1.4895295436957963, 1.4974917899852271, 1.5055191664219967, 1.5136059387190133, 1.5217463565052478, 1.5299346601140562, 1.5381650873460342, 1.5464318801957468, 1.5547292915311366, 1.5630515917148609, 1.5713930751569207, 1.5797480667884705, 1.588110928445965, 1.596476065156477, 1.60483793131374, 1.613191036735993 ], [ 1.3094003084300334, 1.3122806465118726, 1.315362512119735, 1.3186442112876582, 1.3221238674374272, 1.3257994230821166, 1.329668641788769, 1.3337291103972158, 1.33797824149251, 1.3424132761271566, 1.3470312867892411, 1.3518291806123555, 1.356803702821521, 1.3619514404110364, 1.3672688260471537, 1.3727521421903048, 1.3783975254294736, 1.3842009710222074, 1.3901583376324413, 1.3962653522583328, 1.4025176153421204, 1.4089106060530352, 1.4154396877348239, 1.4221001135083782, 1.4288870320200648, 1.4357954933262744, 1.4428204549036745, 1.4499567877755704, 1.4571992827434355, 1.4645426567135214, 1.4719815591072363, 1.4795105783451006, 1.4871242483926186, 1.4948170553576388, 1.5025834441274777, 1.5104178250352316, 1.5183145805437799, 1.5262680719361348, 1.534272646001734, 1.5423226417067495, 1.5504123968381072, 1.5585362546100314, 1.5666885702223257, 1.5748637173602682, 1.5830560946249315, 1.5912601318844999, 1.5994702965360879, 1.60768109966848, 1.6158871021161954, 1.6240829203957932 ] ], "zauto": true, "zmax": 1.6240829203957932, "zmin": -1.6240829203957932 }, { "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.007017922302742244, 0.006969808254198431, 0.007110991651625304, 0.007414814531344533, 0.007849394211664355, 0.008384042010131987, 0.008992918779969005, 0.009656069064387972, 0.010358962442637997, 0.01109149645435161, 0.011846969025892273, 0.012621210138840698, 0.013411906346387403, 0.01421809380277193, 0.015039782367568949, 0.01587767666273926, 0.01673296743251046, 0.017607173743911932, 0.018502022263962768, 0.01941935401580141, 0.020361051940121614, 0.02132898459113914, 0.022324962646411883, 0.023350705809805347, 0.02440781828105749, 0.02549777135777502, 0.02662189199626563, 0.027781356336074394, 0.028977187321993034, 0.03021025565758816, 0.03148128340946261, 0.03279084965875304, 0.034139397669628105, 0.035527243114909374, 0.036954582966604387, 0.03842150472313466, 0.03992799570464038, 0.04147395220203704, 0.04305918831401716, 0.04468344434850664, 0.04634639470139272, 0.048047655155740415, 0.049786789569668546, 0.051563315941097025, 0.05337671185330507, 0.05522641931727802, 0.0571118490356093, 0.05903238411912471, 0.06098738329145889, 0.0629761836194864 ], [ 0.006648192677840868, 0.006609429796839593, 0.006761400649286887, 0.007075007100190486, 0.007516256449679538, 0.008053209503781442, 0.008659598916009969, 0.009315582042141116, 0.010007013722396273, 0.010724274935301658, 0.011461154318614773, 0.012213940986684095, 0.012980737352235693, 0.013760952691476085, 0.014554932239986825, 0.015363684049666976, 0.016188675452262685, 0.017031679199031924, 0.01789465551290804, 0.01877966064543847, 0.01968877551103719, 0.02062404996970819, 0.021587459648353253, 0.02258087304883912, 0.02360602724201675, 0.024664510797771242, 0.025757752825624362, 0.026887017148663758, 0.02805340073905361, 0.02925783562708146, 0.03050109357041766, 0.031783792842675504, 0.0331064065728009, 0.03446927213989798, 0.03587260120032561, 0.037316489993632455, 0.03880092963999406, 0.04032581620180092, 0.041890960336311664, 0.043496096413194185, 0.04514089101073141, 0.04682495073801138, 0.04854782935725063, 0.05030903420187153, 0.052108031902476176, 0.05394425344504582, 0.05581709859457541, 0.057725939723274056, 0.059670125086098834, 0.061648981588338835 ], [ 0.006305470766181754, 0.006275524357593615, 0.006438224635991277, 0.006761849584410845, 0.007210168503631672, 0.007749947968755196, 0.008354491039990357, 0.009004069847054494, 0.00968491494056427, 0.010387869831490875, 0.01110718636492567, 0.011839583208139737, 0.012583550049673684, 0.013338843463431399, 0.014106121864719972, 0.014886678487936726, 0.015682242951876983, 0.01649483114701835, 0.017326629756939205, 0.01817990624033734, 0.019056938121875224, 0.019959957427453046, 0.020891107383557036, 0.021852409314760207, 0.02284573817824985, 0.02387280548061424, 0.024935148506604998, 0.026034124903871105, 0.027170911746042935, 0.02834650826077104, 0.02956174147148733, 0.030817274067634202, 0.03211361388945921, 0.033451124489170925, 0.034830036307779345, 0.03625045808335515, 0.037712388179836624, 0.039215725592667124, 0.04076028044815086, 0.042345783865882905, 0.04397189709823858, 0.045638219897561276, 0.047344298091219095, 0.04908963036783255, 0.05087367429518516, 0.05269585160312242, 0.054555552773491556, 0.05645214098465416, 0.05838495546137346, 0.06035331428197544 ], [ 0.005991611629899746, 0.005969128385022679, 0.006141707800375661, 0.006474886046464874, 0.006930101765573334, 0.007472790694020855, 0.008075812661874281, 0.008719535861441753, 0.009390535629299899, 0.010080078531699505, 0.010782837131034928, 0.011495918271252735, 0.012218161031295362, 0.01294963601521675, 0.013691286559230867, 0.014444667826049138, 0.015211753263452634, 0.01599478792143903, 0.01679617505995769, 0.017618387128915572, 0.018463895257912248, 0.019335113367766582, 0.02023435426759075, 0.021163795872179047, 0.022125456133493968, 0.023121175539992007, 0.024152606178691517, 0.025221206431520524, 0.026328240424651646, 0.027474781390466364, 0.028661718148536502, 0.02988976396951721, 0.031159467154967892, 0.032471222744132805, 0.033825284841868405, 0.0352217791460938, 0.03666071533437763, 0.038141999045284265, 0.03966544325780376, 0.04123077893144717, 0.042837664819411404, 0.04448569640811743, 0.046174413968826836, 0.0479033097321636, 0.04967183421481599, 0.05147940174099122, 0.053325395209834606, 0.05520917016536242, 0.057130058228021585, 0.05908736994746828 ], [ 0.005710453555713365, 0.005693113270803551, 0.00587371949027765, 0.006215066877384546, 0.006676235777101533, 0.007221309612280728, 0.007822676493369542, 0.008460756116389653, 0.00912241177610136, 0.009799271775040619, 0.010486369680280033, 0.011181145799016348, 0.0118827403024147, 0.012591496256166502, 0.013308606880435354, 0.014035860365369295, 0.014775450771248462, 0.015529834314586153, 0.016301617598445485, 0.01709346911666716, 0.017908048451687295, 0.018747949554370157, 0.019615655719801117, 0.020513504607144177, 0.02144366206746638, 0.022408103757238514, 0.023408603611626028, 0.024446728286231692, 0.0255238366880818, 0.026641083729616145, 0.027799427466831794, 0.02899963882885516, 0.030242313211255575, 0.03152788328493608, 0.03285663246106017, 0.03422870854499391, 0.035644137202834776, 0.03710283494942379, 0.038604621443400565, 0.04014923094170983, 0.0417363228222625, 0.04336549112905715, 0.04503627313037421, 0.046748156907998994, 0.04850058801558206, 0.05029297525807565, 0.052124695653107136, 0.05399509864023512, 0.05590350960587554, 0.05784923279162596 ], [ 0.0054679822218588175, 0.005452364338454517, 0.00563791727633714, 0.005984885563265068, 0.006450070776961054, 0.0069962092122753715, 0.007595170815222557, 0.008227349826470186, 0.008879809002844135, 0.009544451040697939, 0.010216590720046912, 0.010893931822144503, 0.011575855553393263, 0.012262926592597966, 0.012956545467980965, 0.013658698212273761, 0.01437177095026239, 0.015098408517039873, 0.015841403751654236, 0.01660360900260494, 0.01738786451575275, 0.018196940351803668, 0.01903348969351753, 0.01990001211129407, 0.020798825734809477, 0.021732047450318474, 0.02270158029379842, 0.023709107200256523, 0.024756090241753986, 0.025843774466683418, 0.02697319545606138, 0.028145189743180338, 0.02936040730115971, 0.030619325381944226, 0.031922263084503126, 0.03326939613026745, 0.03466077142542025, 0.03609632108492342, 0.03757587568061468, 0.03909917655125496, 0.04066588707615167, 0.04227560286591175, 0.04392786086423452, 0.04562214738527896, 0.04735790513326582, 0.049134539265724426, 0.05095142257115733, 0.05280789983676943, 0.05470329148321849, 0.056636896542682606 ], [ 0.005272300299779118, 0.0052538123635800646, 0.005439804039638187, 0.005788439975042467, 0.006254485359766494, 0.0067993791383646925, 0.007394407679388196, 0.008019824240300039, 0.008662764938274614, 0.009315289010635648, 0.00997288943828828, 0.010633446059863097, 0.011296507821184009, 0.01196279984255458, 0.012633879076019008, 0.013311887319535861, 0.013999368361521207, 0.014699128071989047, 0.015414124079480174, 0.016147376696263527, 0.016901895952129844, 0.017680621604263952, 0.01848637421126066, 0.01932181605877918, 0.020189421079468636, 0.021091453046423167, 0.022029951326761565, 0.02300672342643475, 0.024023343485247154, 0.025081155822881195, 0.026181282609331242, 0.027324634743631945, 0.02851192507128966, 0.029743683147321714, 0.031020270849340614, 0.032341898254067095, 0.033708639302518384, 0.03512044688682339, 0.036577167090302, 0.03807855239848141, 0.03962427377179973, 0.04121393152937026, 0.04284706503939354, 0.0445231612460451, 0.04624166208753705, 0.04800197087609947, 0.04980345772076051, 0.05164546407853847, 0.05352730652071344, 0.05544827979929402 ], [ 0.0051332509811040355, 0.005106193374553374, 0.005286593133898686, 0.005631364823069892, 0.0060937078280222145, 0.006633887256412133, 0.007222528290030021, 0.00783958741459136, 0.008472106784979882, 0.009112150453433287, 0.009755260746146995, 0.01039938679837298, 0.011044157397160349, 0.011690385643764649, 0.012339725023059358, 0.012994423597555317, 0.01365714212820305, 0.014330814505996903, 0.01501853698010116, 0.01572347784699237, 0.01644880255735734, 0.01719761126438475, 0.017972887093427054, 0.018777454126129623, 0.019613944441295387, 0.02048477366788148, 0.021392124475762792, 0.022337937329810164, 0.023323907713114114, 0.024351488923019533, 0.02542189947948954, 0.02653613416829072, 0.027694977771643342, 0.028899020608273627, 0.03014867510366067, 0.03144419272749858, 0.03278568075826223, 0.034173118455450555, 0.035606372331523736, 0.03708521031435837, 0.03860931467401008, 0.04017829365545267, 0.04179169181153829, 0.04344899906985241, 0.045149658595000065, 0.04689307352627726, 0.04867861268162909, 0.05050561532374483, 0.05237339508516211, 0.054281243146775994 ], [ 0.005061551715595729, 0.005019401174698103, 0.0051867796771992375, 0.005520568705704112, 0.005973160723774881, 0.0065038891502694094, 0.007082651321206215, 0.007688920369358967, 0.008309438842221876, 0.008936090208417898, 0.00956431072383821, 0.010191991823232676, 0.010818738837908544, 0.011445368469118715, 0.012073561357873155, 0.012705614539783234, 0.013344258465816905, 0.013992516329453567, 0.014653591833592439, 0.015330776897982555, 0.01602737423275065, 0.016746631867445436, 0.017491688049824206, 0.0182655256849503, 0.019070935851913485, 0.019910490042354696, 0.02078652070899209, 0.02170110957145819, 0.022656082958710074, 0.02365301331570945, 0.024693225893903364, 0.02577780959306408, 0.026907630928036417, 0.02808335015094042, 0.029305438655489034, 0.03057419691164769, 0.03188977231238945, 0.03325217644829582, 0.03466130145220946, 0.036116935168364304, 0.03761877499635631, 0.03916644033833209, 0.04075948363881459, 0.04239740005215, 0.04407963580469032, 0.045805595340148414, 0.047574647348885724, 0.04938612978762226, 0.05123935399681347, 0.05313360802018466 ], [ 0.005067423417539503, 0.005003372327933798, 0.005149348599631423, 0.005463719156134687, 0.005899139051798652, 0.006414428389879367, 0.006978747974450193, 0.007570898480010069, 0.008177093604825245, 0.008788824203888483, 0.009401241618100813, 0.010012033618536241, 0.0106206638235065, 0.01122785632919226, 0.011835240042580547, 0.012445095823264798, 0.013060169854499658, 0.013683530105262055, 0.014318451432169773, 0.014968320460735028, 0.015636554983966246, 0.016326534916039758, 0.017041543270448743, 0.017784716464555476, 0.018559003666190135, 0.019367135021246533, 0.020211598535313045, 0.021094625208695303, 0.022018181809733493, 0.022983970466759925, 0.02399343409930327, 0.025047766613184815, 0.026147926757588272, 0.027294654578864794, 0.028488489494046327, 0.029729789130408385, 0.031018748220198233, 0.032355416987574305, 0.033739718606783736, 0.03517146543901021, 0.03665037386568695, 0.03817607762678776, 0.03974813964377487, 0.04136606236018034, 0.04302929667071973, 0.044737249534714175, 0.04648929038416587, 0.04828475644381379, 0.050122957081214434, 0.05200317730207579 ], [ 0.0051589689883886035, 0.005066642970046631, 0.005182664595499875, 0.0054684733038603325, 0.005878305230958356, 0.00637111031208458, 0.006915430246729387, 0.007489252474565088, 0.00807803985792981, 0.008672669084255694, 0.00926781341601863, 0.009860796807576965, 0.010450810451854359, 0.011038379146766752, 0.011624992398789162, 0.01221284230945246, 0.012804630411989424, 0.01340341925310185, 0.014012513459675963, 0.014635360861477003, 0.015275468045100294, 0.015936327188511415, 0.0166213526003708, 0.017333826333086118, 0.01807685273227922, 0.018853321953321796, 0.019665882420801098, 0.020516922014458212, 0.021408557509796942, 0.022342631542270917, 0.023320716146293306, 0.024344121770806325, 0.025413910602818304, 0.026530913037962, 0.02769574620895405, 0.028908833603516086, 0.03017042495232975, 0.0314806157290015, 0.032839365762495916, 0.03424651660905473, 0.03570180745766307, 0.037204889449187394, 0.038755338372780994, 0.04035266576632852, 0.041996328492805615, 0.04368573689426283, 0.045420261642985675, 0.04719923941779864, 0.0490219775351844, 0.05088775766153855 ], [ 0.005340823728181924, 0.005214971239881102, 0.005293268996489701, 0.005541554052895782, 0.005917034695088185, 0.006379655604889184, 0.006897649345318325, 0.007448163893979133, 0.008015743009336853, 0.008590446676999642, 0.009166279186380612, 0.009740035787408369, 0.01031049747592967, 0.010877875697305086, 0.011443425976805623, 0.012009172791698131, 0.012577706950106547, 0.013152030179736502, 0.013735430704256186, 0.014331379629085497, 0.014943441979067922, 0.015575198902683326, 0.016230179306671803, 0.016911800276348855, 0.017623316244050256, 0.018367777113313784, 0.019147995529494748, 0.019966523296107846, 0.02082563665008031, 0.02172732979771787, 0.0226733158323076, 0.023665033940899853, 0.024703661682706362, 0.025790131086667126, 0.026925147362600647, 0.0281092091297355, 0.029342629218013772, 0.030625555270226347, 0.0319579895489746, 0.0333398075183393, 0.034770774917105035, 0.03625056316427095, 0.03777876303627664, 0.039354896630949626, 0.040978427687411584, 0.04264877036768259, 0.04436529662772876, 0.04612734231691097, 0.0479342121473256, 0.0497851836716059 ], [ 0.005613606259761782, 0.005450524619513377, 0.005484946557054574, 0.00568788206353967, 0.006020714961948363, 0.006445377830084739, 0.00693032072644204, 0.007451999672471892, 0.0079939777272265, 0.008545351857231862, 0.009099292458077961, 0.009651910968375164, 0.01020144214461436, 0.010747668015585674, 0.011291511944990576, 0.011834747738924584, 0.012379785083777082, 0.012929505203788482, 0.013487129560589116, 0.014056110565623758, 0.014640037479972456, 0.015242553545859284, 0.015867282334099033, 0.016517762555553782, 0.017197391337438136, 0.01790937632097866, 0.018656696989317878, 0.01944207546893928, 0.020267956748218442, 0.021136497899705144, 0.02204956554602845, 0.02300874052349918, 0.024015328503516384, 0.025070375240928623, 0.02617468512631288, 0.027328841807710273, 0.02853322979441903, 0.029788056136188037, 0.031093371463841668, 0.03244908986433489, 0.033855007232934275, 0.035310817889910674, 0.036816129366924175, 0.03837047535889879, 0.03997332690329711, 0.04162410189387319, 0.04332217306386835, 0.04506687458820617, 0.04685750745894087, 0.048693343785590565 ], [ 0.0059743387380372685, 0.005771924143118514, 0.005758380816283463, 0.005910012592912948, 0.006193153563092598, 0.006572669029913954, 0.0070179173957998185, 0.007505005055217427, 0.008016601049693305, 0.008540786767308446, 0.009069787241371046, 0.009598903225310509, 0.010125700875604961, 0.010649422391805016, 0.011170562128508565, 0.011690559213268486, 0.012211569632964462, 0.01273629158282178, 0.013267826202494754, 0.013809561859098249, 0.01436507442307455, 0.01493803901077939, 0.0155321507892708, 0.016151053887229153, 0.01679827837801278, 0.017477185798599477, 0.01819092382396502, 0.01894239060728681, 0.019734209006159936, 0.02056871052533338, 0.02144792839622931, 0.022373598847337528, 0.023347169342970334, 0.024369812404161726, 0.025442443577571982, 0.02656574217216892, 0.027740173516139933, 0.028966011669687406, 0.030243361736739527, 0.03157218112796831, 0.03295229932225444, 0.0343834358436541, 0.03586521631137433, 0.037397186529924756, 0.03897882466788648, 0.040609551630124176, 0.04228873976399453, 0.044015720059689664, 0.045789788012227876, 0.047610208311325154 ], [ 0.006417538311712733, 0.006175029532704178, 0.00611147201038501, 0.006208037007328446, 0.006436244338461835, 0.006764597842854705, 0.007164094408672191, 0.00761098978084193, 0.00808730432926663, 0.00858017057568486, 0.009080834959824093, 0.009583708248312813, 0.010085593115321258, 0.010585096634929372, 0.011082195042043363, 0.01157791215195229, 0.012074078450123028, 0.012573145773415376, 0.01307803958996653, 0.013592036462566431, 0.01411865846894069, 0.014661579444643743, 0.015224540176571495, 0.015811271296336936, 0.016425423725127668, 0.01707050718734662, 0.017749837602222002, 0.018466494145972435, 0.019223286525933136, 0.02002273260643433, 0.020867046060096258, 0.02175813326790281, 0.02269759831891033, 0.023686754704330223, 0.024726642177313157, 0.02581804725059168, 0.026961525908169824, 0.02815742728422125, 0.029405917280462303, 0.0307070013247178, 0.032060545696191434, 0.03346629704230326, 0.034923899879772825, 0.03643291200629815, 0.037992817849628144, 0.039603039851882335, 0.041262948033050986, 0.04297186790414268, 0.044729086911703346, 0.046533859596172865 ], [ 0.006936470975465715, 0.006654056889338111, 0.006540112637306799, 0.006579929933254058, 0.00674996436546181, 0.007022706432059699, 0.007371412652517747, 0.007773052919847513, 0.008209371732698163, 0.00866674079478744, 0.009135487119419342, 0.009609115354585963, 0.01008361046319618, 0.010556874246703507, 0.011028290736294823, 0.011498396366407787, 0.01196862876990356, 0.012441131894057815, 0.012918600237746235, 0.013404149683587642, 0.013901206227523036, 0.014413406915893809, 0.01494450961946431, 0.015498310028560495, 0.016078565527861296, 0.016688926456529498, 0.017332875718085755, 0.018013677817189804, 0.018734338226034257, 0.01949757359815616, 0.020305792842240534, 0.021161088535536676, 0.022065237676061188, 0.023019710404956546, 0.02402568510600276, 0.02508406821376926, 0.026195517117922347, 0.027360464708251007, 0.028579144326720648, 0.029851614144846692, 0.031177780237486186, 0.03255741785788162, 0.033990190619818374, 0.03547566745623189, 0.03701333734871084, 0.03860262191238193, 0.04024288598070292, 0.041933446370329884, 0.04367357902331573, 0.04546252472735077 ], [ 0.007524177817932238, 0.007202620002512214, 0.007039093798384578, 0.007022168958324981, 0.007132663083696713, 0.007347037663584005, 0.007641211721332062, 0.007993390527599566, 0.0083854775268438, 0.00880336748486463, 0.00923661696706614, 0.009677878550075698, 0.010122315310887444, 0.010567087514374796, 0.011010935060799198, 0.011453848986665472, 0.01189681527298858, 0.01234161326521044, 0.012790653450034942, 0.013246842623059614, 0.01371346763520963, 0.014194091628534617, 0.014692458925319948, 0.015212406551039686, 0.015757781785630212, 0.01633236616451646, 0.01693980699775195, 0.01758355775585216, 0.01826682861557972, 0.018992548130831535, 0.019763336475872008, 0.020581490103009595, 0.021448977062123217, 0.022367441728576083, 0.023338217333113937, 0.024362344504899238, 0.02544059402066543, 0.026573492070076712, 0.027761346561176535, 0.029004273257406045, 0.030302220822228228, 0.03165499412017259, 0.03306227536465496, 0.03452364290349076, 0.03603858758983378, 0.0376065268011332, 0.039226816247177304, 0.04089875975654902, 0.04262161725572314, 0.044394611162573705 ], [ 0.008174130572510199, 0.007814476876471608, 0.007602882390119505, 0.0075304101741118, 0.007581523269433223, 0.00773635793623008, 0.007973644777929135, 0.00827321507041912, 0.008617550849028597, 0.008992403060139096, 0.009386776226728634, 0.009792590424309064, 0.010204235495605396, 0.010618133151618839, 0.011032355011733011, 0.011446307700751703, 0.01186047933747415, 0.012276235929919648, 0.01269565556922906, 0.013121389813397175, 0.013556543817014625, 0.014004568975778403, 0.014469163886851771, 0.014954181204332563, 0.015463539463430055, 0.016001140132152075, 0.016570790994080844, 0.017176137446023792, 0.0178206034073455, 0.01850734331527378, 0.019239206191609542, 0.020018712111648535, 0.02084804069892783, 0.021729030617347333, 0.022663188519439336, 0.023651705582781492, 0.024695479638490055, 0.02579514094447288, 0.026951079843031557, 0.028163474816764286, 0.029432319772225962, 0.030757449697724492, 0.032138564131941744, 0.03357524812742585, 0.0350669905903822, 0.036613200025786836, 0.03821321782008529, 0.03986632925881773, 0.04157177251241647, 0.043328745836954737 ], [ 0.008880554863940494, 0.008483955228519082, 0.008226156585227327, 0.008100060720621761, 0.008093056428669252, 0.008188495932681963, 0.008367848424563396, 0.008612790911281108, 0.008906724835703749, 0.009235586409441703, 0.009588082875069818, 0.00995557087004206, 0.010331763224250072, 0.010712385703592965, 0.011094848066741072, 0.01147795599173149, 0.011861669458325499, 0.012246903271615765, 0.012635361760899216, 0.013029399189414452, 0.013431898342372621, 0.013846161252458378, 0.014275807667991379, 0.014724678485832017, 0.01519674286426509, 0.015696009029711435, 0.016226439825801835, 0.01679187475929555, 0.017395960627514133, 0.018042092756314302, 0.01873336847574619, 0.019472553797043123, 0.020262063450497428, 0.021103953630535646, 0.02199992608800729, 0.022951341695004415, 0.02395924132169135, 0.02502437180521827, 0.02614721492103717, 0.027328017532467188, 0.028566821436133448, 0.029863491786572216, 0.03121774333208265, 0.03262916400013916, 0.03409723562057006, 0.03562135176606559, 0.03720083282536943, 0.03883493851334983, 0.04052287807276991, 0.04226381844452963 ], [ 0.009638527172597671, 0.009206131371320397, 0.008904105844073265, 0.00872668182056001, 0.00866353186884104, 0.008700709197724973, 0.008822194475181986, 0.009011565429914563, 0.009253370354964138, 0.00953401111466659, 0.009842152223443881, 0.010168781873673975, 0.010507067178152753, 0.0108521150845401, 0.011200709592509009, 0.011551062572859592, 0.011902593545107138, 0.012255741291949401, 0.012611804033730878, 0.01297280245988529, 0.013341359507368481, 0.013720591395068826, 0.014114005533552266, 0.01452540225738075, 0.014958778718332453, 0.015418234623041404, 0.015907880695131455, 0.016431751683505656, 0.01699372633249015, 0.01759745691149352, 0.018246310663073643, 0.01894332492135906, 0.019691176789854672, 0.020492167296068335, 0.021348219013127296, 0.022260885383675946, 0.02323136947819839, 0.024260549695038405, 0.025349009939137485, 0.026497072045477403, 0.02770482857083555, 0.028972174493785374, 0.030298836781612118, 0.03168440116301456, 0.03312833576437574, 0.03463001151641348, 0.03618871941901573, 0.037803684872671627, 0.03947407935653026, 0.04119902976688033 ], [ 0.010443945911133614, 0.009976856239322705, 0.009632555973182418, 0.009406227013510899, 0.009289293433044861, 0.009270011799939727, 0.0093345656278067, 0.00946835958024186, 0.009657198866768224, 0.00988815621545257, 0.010150076940409258, 0.010433776523493471, 0.010732025826576803, 0.011039414933896393, 0.011352163259515786, 0.01166791820281448, 0.011985564701308023, 0.012305054803403765, 0.012627258633420218, 0.012953834119972326, 0.013287111184964511, 0.013629985779283683, 0.013985819622579287, 0.014358342427175234, 0.014751554567133554, 0.015169629459246861, 0.01561681622667448, 0.016097344384463273, 0.016615333178465117, 0.017174708703948192, 0.01777913195053094, 0.01843194046571907, 0.019136105477226384, 0.019894205214379193, 0.02070841400435794, 0.02158050567103614, 0.022511868968717503, 0.0235035323147621, 0.02455619494834065, 0.0256702617901846, 0.02684587962872588, 0.02808297272354241, 0.029381276416927792, 0.03074036781802535, 0.03215969303365609, 0.03363859074711033, 0.03517631218861652, 0.03677203770650127, 0.03842489024876926, 0.040133946115443825 ], [ 0.011293446418402023, 0.010792702986530926, 0.010407985838332743, 0.010135153925763125, 0.009966961769880676, 0.009893428751641184, 0.009902609347885203, 0.009981578587170277, 0.01011740910025257, 0.010297967728690773, 0.010512453836020764, 0.01075168550895434, 0.01100818753072581, 0.011276147705133719, 0.011551299633986283, 0.011830773812407144, 0.012112943019036997, 0.012397275689781427, 0.012684202683826298, 0.012974997836458434, 0.01327166998900262, 0.013576863002786857, 0.013893760056180144, 0.01422598895698753, 0.014577526069878832, 0.01495259762346689, 0.015355578494549159, 0.015790889921673566, 0.01626289880595288, 0.016775822131496667, 0.017333640431478982, 0.017940024051941, 0.018598275240531235, 0.01931128792995406, 0.02008152569697905, 0.0209110169904451, 0.021801365547228564, 0.022753773099233456, 0.023769071074878453, 0.024847757991560925, 0.025990039538084785, 0.027195868848367225, 0.028464985059166625, 0.0297969488360947, 0.03119117408131979, 0.03264695547021548, 0.03416349179228087, 0.03573990529922431, 0.0373752574056631, 0.03906856116218163 ], [ 0.012184300273292979, 0.01165088363967337, 0.01122748731237818, 0.010910453255933752, 0.010693543280768443, 0.01056817067170419, 0.010523943849501335, 0.010549410750804731, 0.0106328502225022, 0.01076297283096834, 0.01092944841267781, 0.011123238937067239, 0.011336759463487183, 0.011563910557673373, 0.01180002756461254, 0.0120417841755414, 0.01228707671202682, 0.012534905384736417, 0.012785260949820045, 0.013039019794827321, 0.01329784710520607, 0.013564105863032774, 0.013840768578889074, 0.014131328559528599, 0.01443970798285477, 0.014770160968600468, 0.015127171089403443, 0.015515344232568265, 0.015939299216688508, 0.01640355986985071, 0.016912453156113946, 0.017470018207098335, 0.01807993068712977, 0.01874544584108733, 0.01946936202432763, 0.02025400476896636, 0.021101229797020397, 0.022012442095433137, 0.022988627367382615, 0.02403039189845519, 0.025138007056474395, 0.02631145515183689, 0.027550474073232925, 0.02885459885113167, 0.030223198989199583, 0.03165551098449224, 0.03315066590534428, 0.03470771221290949, 0.03632563421411119, 0.03800336664307991 ], [ 0.013114318911147166, 0.012549160742561231, 0.01208870164523738, 0.011729630550092558, 0.01146647319946636, 0.011291738896869272, 0.011196308053289018, 0.011169994464680073, 0.011202178615803502, 0.011282407284256753, 0.011400884040320611, 0.011548816648458374, 0.011718623519796032, 0.011904023535817602, 0.012100041650749325, 0.012302961059942911, 0.012510246361441614, 0.012720454646025042, 0.01293314476055118, 0.013148789800009516, 0.013368694216976448, 0.013594914547680846, 0.013830181360022812, 0.01407781940912237, 0.014341662999892547, 0.014625964122254139, 0.014935291979336487, 0.01527442398573465, 0.015648230019152724, 0.01606155343731104, 0.016519093831870637, 0.01702529738478187, 0.017584260789950446, 0.0181996539208362, 0.018874664864781208, 0.019611968884350413, 0.020413720682056522, 0.021281567415902793, 0.022216678522224715, 0.023219787682117684, 0.02429124219839249, 0.025431055497182997, 0.02663895924346407, 0.027914452472572893, 0.02925684603837424, 0.03066530146196492, 0.032138863884371816, 0.03367648927219796, 0.03527706631400311, 0.03693943360536972 ], [ 0.014081769545833359, 0.013485766075011769, 0.012989750881636309, 0.01259066511599086, 0.012283617242729524, 0.01206197770043095, 0.0119176594577806, 0.011841545406448262, 0.011823993120324118, 0.011855339494604445, 0.011926341710162726, 0.012028517393914404, 0.012154374136939693, 0.012297538741128562, 0.012452807192253841, 0.012616138878440875, 0.012784616008824155, 0.012956384358699358, 0.013130586280534075, 0.013307292356932735, 0.013487434475180773, 0.013672740472845097, 0.013865668713614636, 0.014069339869468294, 0.01428746272639196, 0.014524250961836885, 0.01478432856159799, 0.015072622831777962, 0.015394245737126845, 0.015754366373190276, 0.016158079451898434, 0.016610276358931815, 0.017115526236507247, 0.01767797437709734, 0.018301263920275115, 0.018988484623888333, 0.019742149752146124, 0.02056419940837591, 0.021456026416291678, 0.02241851943059498, 0.023452117427005065, 0.02455686997924267, 0.025732498548492314, 0.026978455124317652, 0.02829397572900884, 0.02967812736324783, 0.03112984783555616, 0.03264797855241107, 0.03423129076290637, 0.03587850598806487 ], [ 0.015085305192008147, 0.014459330748293333, 0.013929173413459658, 0.013491960823855134, 0.013143250029954447, 0.012877090189845222, 0.012686229680333113, 0.012562444526648148, 0.012496941545765704, 0.012480779660200813, 0.01250525813844983, 0.012562236572648051, 0.012644370934775318, 0.012745266832097481, 0.01285956195424393, 0.012982954465020798, 0.013112194238943135, 0.013245051302956591, 0.013380272214259468, 0.013517531406736885, 0.01365738128393168, 0.013801202198055125, 0.013951151436589806, 0.014110108890698282, 0.014281616172852073, 0.014469805599199118, 0.014679315711472105, 0.014915190948808232, 0.015182764713905905, 0.015487527321285225, 0.01583498292183633, 0.01623050204583194, 0.01667917836399412, 0.01718569911405164, 0.017754238046338043, 0.018388377697394622, 0.019091064665390844, 0.019864597968277733, 0.020710647233706077, 0.02163029498455456, 0.02262409595576446, 0.023692146208366457, 0.024834155556101644, 0.026049518133937796, 0.027337377460961643, 0.028696683805904656, 0.030126242883121778, 0.03162475581967327, 0.03319085094425915, 0.03482310830006344 ], [ 0.016123907760058856, 0.01546882708460299, 0.014905867217652946, 0.014432296778916198, 0.014044022334973288, 0.013735631392814621, 0.01350054872407826, 0.01333129232284291, 0.013219797482502134, 0.013157767885357984, 0.013137013379480297, 0.013149743411136597, 0.013188798545808629, 0.013247815658541454, 0.013321332252467706, 0.013404840984828638, 0.013494807323190482, 0.013588662468450922, 0.01368478145459018, 0.013782453572050614, 0.013881849516576557, 0.013983987207493437, 0.014090696140518595, 0.014204578455593954, 0.014328963616154426, 0.01446785276168126, 0.014625848508804265, 0.014808066381344092, 0.015020025283853827, 0.015267516558361439, 0.015556454071653089, 0.015892711124831437, 0.01628195316198729, 0.016729477536574982, 0.017240072283079517, 0.017817904554960014, 0.018466446239232073, 0.019188439867723065, 0.01998590326592281, 0.020860167382076508, 0.021811939110923786, 0.022841379917549455, 0.02394819150814244, 0.025131701245945257, 0.026390941954546325, 0.02772472273853158, 0.029131689182325733, 0.030610372617109555, 0.032159229048422784, 0.03377666886606631 ], [ 0.017196842165893605, 0.016513520997703476, 0.0159190414289331, 0.015410781615937695, 0.01498492445076327, 0.01463648831058665, 0.01435944784818903, 0.014146936671890188, 0.013991510332116876, 0.013885439628131477, 0.013821002864114319, 0.013790750757639457, 0.013787726742044638, 0.0138056353316465, 0.01383895960369728, 0.013883034468100219, 0.013934085133503905, 0.013989240607119757, 0.014046530980847046, 0.014104875376292268, 0.014164065258658742, 0.014224745682320888, 0.014288395039611396, 0.014357302099645091, 0.014434537574373161, 0.014523916189566161, 0.01462994438612986, 0.014757748521934231, 0.014912979025379325, 0.015101687597107, 0.01533017737106267, 0.015604829782695335, 0.015931916246255763, 0.016317406753241136, 0.016766790119837782, 0.017284920917883726, 0.01787590572023656, 0.01854303652646597, 0.019288773161004944, 0.02011477045612912, 0.021021941416395403, 0.022010545048260752, 0.023080287205726035, 0.024230424191002048, 0.025459861240876666, 0.026767240718635132, 0.028151017294194506, 0.029609519344878397, 0.03114099716163464, 0.03274365935186101 ], [ 0.01830361923247727, 0.017592933046809714, 0.016968175549400284, 0.016426812741428144, 0.01596524966220737, 0.015578853430723261, 0.015262048797823063, 0.01500848134209833, 0.014811233288773673, 0.014663069891252281, 0.0145566920418827, 0.01448497330676607, 0.014441165525657062, 0.014419064440834413, 0.014413133647167784, 0.014418590306677326, 0.014431459146233632, 0.01444860244173778, 0.014467733463765103, 0.014487419740427117, 0.014507080910468444, 0.014526984176672036, 0.014548238580082867, 0.014572787566047865, 0.014603397632401925, 0.014643639280916824, 0.014697855136485832, 0.01477110914590843, 0.014869110513874302, 0.01499810684291675, 0.015164743159383386, 0.015375887287524885, 0.01563842715695155, 0.015959051340703828, 0.016344029157058907, 0.01679900954051527, 0.017328857405869643, 0.017937542057790246, 0.018628085130997295, 0.019402567302666103, 0.020262185612037145, 0.021207348224893785, 0.0222377915500836, 0.023352705468248827, 0.024550855169959498, 0.025830691655207974, 0.02719044643195793, 0.028628208822325883, 0.030141986329775976, 0.03172974976550434 ], [ 0.019443965363300415, 0.018706806329432422, 0.018052985094501334, 0.01748004058338771, 0.016984559753514355, 0.01656219570206165, 0.01620774498180159, 0.0159152812155831, 0.015678334361639047, 0.015490099207261684, 0.015343654162037054, 0.015232172459240568, 0.015149111721415882, 0.015088373171471957, 0.01504442719165187, 0.015012406426435181, 0.014988170689614364, 0.014968349530341405, 0.014950368678927066, 0.01493246608499847, 0.014913702205325447, 0.014893967842631813, 0.014873991325164974, 0.014855345215520687, 0.01484045106617759, 0.014832579013111255, 0.01483583727646002, 0.014855145067026437, 0.014896181261547663, 0.01496530093678909, 0.015069412974654911, 0.015215814965628264, 0.015411986765906391, 0.01566535094843502, 0.015983015880234562, 0.016371523390860926, 0.016836625874255523, 0.017383115705074757, 0.018014722967424533, 0.018734087266708447, 0.019542798533239553, 0.020441492990133724, 0.021429985620213966, 0.022507419844710604, 0.023672417809427783, 0.02492321916244991, 0.026257801058010954, 0.0276739763343475, 0.029169469917822526, 0.030741975448388525 ], [ 0.02061779729431338, 0.019855079596135115, 0.01917339239666879, 0.01857033732465411, 0.018042653267703584, 0.017586231257456418, 0.017196178367280057, 0.01686692888509693, 0.01659239506242979, 0.016366145041925736, 0.016181593139101308, 0.016032187846889763, 0.015911585378496334, 0.015813800407558375, 0.01573332990436561, 0.015665249768897497, 0.015605286823914379, 0.015549870492055437, 0.015496169229126406, 0.015442116736919122, 0.015386432372953495, 0.01532863920859731, 0.015269081989278692, 0.015208945878599367, 0.015150275329012803, 0.01509599070045621, 0.015049898348342677, 0.015016687899414953, 0.015001908533984894, 0.015011914693053994, 0.015053771337271359, 0.015135110460822809, 0.015263934710974352, 0.01544837096191769, 0.01569638594277669, 0.016015485758300304, 0.01641242861279701, 0.016892982369955872, 0.017461754043049768, 0.018122107450157205, 0.018876170955184245, 0.01972492351485568, 0.020668337699361352, 0.021705554628307925, 0.02283506742398128, 0.02405489497905053, 0.02536273435633327, 0.026756086233145907, 0.02823235250299217, 0.029788908195346114 ], [ 0.02182520056745104, 0.021037864251824957, 0.020329501400917504, 0.019697769390758846, 0.01913953658395655, 0.018650895066532735, 0.018227214493163398, 0.017863236009364753, 0.01755320056794245, 0.017291002136851197, 0.01707035408102592, 0.01688495673520613, 0.016728655708441953, 0.01659558322509523, 0.016480278097316742, 0.01637778308204513, 0.0162837209469308, 0.01619435234177417, 0.016106619538576606, 0.01601818038051676, 0.0159274365340396, 0.015833559519629174, 0.01573651711283717, 0.01563710160690941, 0.01553696010804871, 0.015438625456455553, 0.015345544483446242, 0.015262098121843265, 0.015193605476639274, 0.015146301618575931, 0.015127277130194593, 0.015144367167354454, 0.01520598006057024, 0.015320861236096908, 0.01549779779083829, 0.015745281387473057, 0.01607115952978375, 0.016482313738833573, 0.01698440386256307, 0.017581709044916537, 0.018277079545796385, 0.01907199445845763, 0.019966704138552224, 0.020960426915942725, 0.022051568423521965, 0.023237936905919725, 0.024516936104799835, 0.02588572587277945, 0.027341347687685643, 0.028880817005839613 ], [ 0.023066410670531, 0.022255424185384336, 0.02152157547013917, 0.020862572951901207, 0.02027539756632968, 0.019756314034718045, 0.019300917049800068, 0.018904211763814658, 0.01856072429632233, 0.018264634861505535, 0.018009924153753586, 0.017790523132832223, 0.0176004572691933, 0.017433978296289926, 0.0172856790625487, 0.017150589670687683, 0.017024255346500507, 0.01690279817070106, 0.016782965874557722, 0.01666217139321427, 0.016538526896416453, 0.01641087568742081, 0.016278824764043003, 0.01614278001211289, 0.016003984944136313, 0.01586456255385424, 0.015727558150656854, 0.015596978891815405, 0.015477823125948625, 0.015376089722445696, 0.015298754668099074, 0.015253700118311701, 0.015249580973249086, 0.015295617368648193, 0.015401309491811163, 0.015576084087555482, 0.01582889815959013, 0.016167840571748818, 0.01659978090064125, 0.017130112269680704, 0.017762619983036625, 0.018499484543028764, 0.019341403535783, 0.020287799274573873, 0.021337071968150455, 0.02248686105375239, 0.0237342866311191, 0.02507615432187342, 0.02650911705973041, 0.02802979466300801 ], [ 0.024341796041663064, 0.023508157613216618, 0.022750017412071326, 0.02206513177788392, 0.02145058142007288, 0.020902781690572265, 0.02041752284433106, 0.019990039936422788, 0.01961510906022057, 0.01928716407215252, 0.019000426237602213, 0.018749038634419492, 0.018527197676137717, 0.018329275545282245, 0.018149929297579755, 0.017984194518450316, 0.017827563359940304, 0.017676048347582626, 0.017526234435261343, 0.017375322408112574, 0.01722116695350932, 0.017062312618598387, 0.016898030519289703, 0.016728358095855104, 0.016554143418325822, 0.01637709447856427, 0.01619983247196215, 0.01602594615248618, 0.015860041834153724, 0.01570778048427144, 0.015575889777839042, 0.01547213547799725, 0.015405234106134117, 0.015384689168869316, 0.015420538155600023, 0.015523008660353586, 0.015702099252129606, 0.015967121179513773, 0.016326254562572508, 0.016786179918242026, 0.01735183748927217, 0.01802634358753476, 0.018811062277308985, 0.019705802700614214, 0.02070909560341043, 0.02181849989045407, 0.023030898440108274, 0.024342756286290106, 0.02575032831223002, 0.02724981457286724 ], [ 0.025651842342402226, 0.024796580326349866, 0.024015351119201125, 0.023305956897361074, 0.022665568380512365, 0.02209073441263111, 0.021577417579077465, 0.021121055660146684, 0.02071664633246265, 0.02035885041423326, 0.020042107468089237, 0.019760756950224067, 0.019509158365284496, 0.019281804915195894, 0.019073426658327595, 0.01887908092544043, 0.01869422940385301, 0.01851480271180617, 0.018337254343809218, 0.01815860655406934, 0.0179764910941805, 0.017789187787633057, 0.017595663763378646, 0.01739561581476148, 0.01718951779666492, 0.016978674177976133, 0.016765279736732686, 0.01655248378978162, 0.016344455131159914, 0.016146440880266764, 0.015964808692376414, 0.015807057504081873, 0.015681777895418112, 0.015598540649011965, 0.015567693299133694, 0.015600051844327938, 0.0157064900437277, 0.01589745106078619, 0.01618243090936445, 0.016569501659539604, 0.01706494547534177, 0.017673053637194958, 0.018396111604044578, 0.019234553339027488, 0.020187238711413747, 0.021251794906392927, 0.022424966542704382, 0.023702933752480452, 0.025081575337101928, 0.02655666966135119 ], [ 0.02699713756802762, 0.02612130989654106, 0.025318204367448322, 0.024585667630444886, 0.023920952899717424, 0.023320729066579855, 0.022781112639155474, 0.02229772239689438, 0.02186575468576788, 0.021480075517477607, 0.02113532435516112, 0.02082602385616953, 0.02054668994998873, 0.0202919373706163, 0.020056576953445895, 0.0198357024180645, 0.0196247657750758, 0.019419641751278666, 0.0192166826258215, 0.019012765575821173, 0.018805335055588897, 0.01859244291760231, 0.018372788966462973, 0.018145764449020108, 0.017911500626476572, 0.017670924012973033, 0.017425819021459375, 0.017178897504556808, 0.016933872845444464, 0.016695533651437163, 0.01646980858164382, 0.016263809411007035, 0.01608583446962041, 0.015945310100109945, 0.015852645616403236, 0.015818980133413884, 0.015855810459879716, 0.015974509505276055, 0.016185772248352798, 0.016499054037058886, 0.01692208272576139, 0.017460521858649092, 0.018117834363732568, 0.01889535348698192, 0.019792525651161855, 0.020807262927342057, 0.02193633676688118, 0.023175756000034634, 0.024521092167689728, 0.02596773558907038 ], [ 0.028378357693396417, 0.02748305052923898, 0.026659292447719588, 0.02590497367201003, 0.0252174240581593, 0.024593421905348748, 0.024029222959158356, 0.02352060954314601, 0.02306295812462766, 0.022651322140589816, 0.02228052580245362, 0.02194526402030242, 0.0216402035915405, 0.02136008133320911, 0.021099795769552718, 0.02085449014031456, 0.020619625697728797, 0.02039104536812508, 0.020165028776581863, 0.019938340327042406, 0.01970827249523019, 0.01947268675046361, 0.019230054606915285, 0.018979501240032736, 0.01872085389575924, 0.018454696944792213, 0.01818243482892269, 0.01790636320158644, 0.017629747119654843, 0.01735690299509867, 0.017093277950052034, 0.016845516096589658, 0.01662149617439465, 0.01643031950274676, 0.01628222271905508, 0.01618838869665305, 0.01616063461256992, 0.016210971413505113, 0.016351054605603606, 0.016591578196846785, 0.016941691701039395, 0.01740853132094072, 0.017996941622121194, 0.01870942493123526, 0.019546306016550177, 0.020506057896049052, 0.021585714059701253, 0.02278129499121734, 0.024088195262469494, 0.02550150115024455 ], [ 0.029796252654662868, 0.0288825783557722, 0.02803940240872439, 0.027264657997268318, 0.026555746994517525, 0.02590954859861711, 0.025322445976683882, 0.024790370875271635, 0.024308864788335643, 0.023873154021016245, 0.02347823502904174, 0.02311896587886012, 0.02279015961367805, 0.022486675696205292, 0.022203506432515605, 0.02193585622831318, 0.02167921254866662, 0.021429408424065145, 0.021182677185691508, 0.02093570077609559, 0.02068565345794707, 0.020430243045428984, 0.02016775193371403, 0.019897080222589843, 0.019617793128632693, 0.01933017464179357, 0.019035288959057192, 0.01873505053109093, 0.018432302449578247, 0.018130901192987308, 0.017835803212385468, 0.017553145262704926, 0.017290305681535594, 0.01705592822857337, 0.01685988449921266, 0.016713147157625063, 0.01662754724325195, 0.016615398158587886, 0.016688989288209916, 0.01685998264698082, 0.01713877968162451, 0.017533949810338807, 0.01805181413191244, 0.01869625100376582, 0.019468742051449647, 0.020368625567756628, 0.021393487978643776, 0.022539612703750152, 0.023802416769714518, 0.025176828794358196 ], [ 0.03125163254692385, 0.03032072703917807, 0.029459377772180054, 0.028665560439143443, 0.02793674520881208, 0.027269905287038425, 0.026661541656611214, 0.026107723961255352, 0.02560414634142775, 0.02514619596161356, 0.02472903113699696, 0.02434766547876927, 0.023997054379796146, 0.023672180439972206, 0.02336813501138612, 0.023080193823944897, 0.02280388551732701, 0.022535052754611994, 0.0222699063505093, 0.022005073468716756, 0.021737641412123733, 0.021465198851879887, 0.02118587653161329, 0.020898389559480448, 0.02060208337064933, 0.020296985298489334, 0.01998386339923089, 0.019664293662531175, 0.019340735897123176, 0.019016617243137846, 0.01869642022351909, 0.018385769279143073, 0.018091505662935162, 0.0178217354264966, 0.017585829496430075, 0.01739434976215035, 0.01725887299816488, 0.01719168862916325, 0.01720536022998641, 0.01731216572595711, 0.01752346436093864, 0.01784907018241204, 0.018296728356625405, 0.01887178076981309, 0.01957707015595017, 0.020413079730650083, 0.0213782576637323, 0.02246944873247055, 0.023682353838459444, 0.025011955396758958 ], [ 0.03274535397940474, 0.03179837363116392, 0.030920103646127087, 0.030108561850188453, 0.029361283647509805, 0.028675330588148078, 0.028047313566281203, 0.027473430613159208, 0.026949518259308254, 0.026471114523949135, 0.026033530865405205, 0.025631929983409272, 0.025261406246387782, 0.0249170657156207, 0.024594103201381473, 0.024287874432102896, 0.02399396215357267, 0.023708235715978413, 0.023426904385558295, 0.02314656519178067, 0.02286424657154292, 0.022577449397654843, 0.02228418718983511, 0.021983027415925126, 0.021673135806320364, 0.02135432552164765, 0.02102711280718768, 0.020692780384687543, 0.02035344918387765, 0.02001215796945099, 0.019672948797865117, 0.019340953833968454, 0.01902247567700951, 0.018725048910757058, 0.018457465323812115, 0.018229739932810723, 0.018052991242786937, 0.017939209762561987, 0.01790089694992463, 0.0179505750941744, 0.01810019678376932, 0.01836051491770568, 0.018740499584418986, 0.019246893814740266, 0.0198839790940847, 0.020653578092437976, 0.021555271761105874, 0.022586768982069877, 0.023744350622204587, 0.025023316122617538 ], [ 0.0342783065770931, 0.03331642466598179, 0.03242249221169098, 0.03159456881048461, 0.03083025252294137, 0.030126688511585238, 0.029480590987926172, 0.028888278425785317, 0.028345721145425714, 0.0278485995816907, 0.02739237091678376, 0.02697234135918535, 0.02658374122286087, 0.026221800102742762, 0.025881819814384956, 0.025559243302664847, 0.025249718352248905, 0.02494915557813567, 0.024653780780063615, 0.02436018227018374, 0.024065354207579413, 0.02376673729210636, 0.023462258387831066, 0.023150370773327322, 0.02283009675775962, 0.022501074356539554, 0.02216360956960692, 0.021818735509611564, 0.02146827911671097, 0.021114935366955728, 0.020762347588776733, 0.020415190572250577, 0.020079250409793054, 0.019761491330652765, 0.019470095262191026, 0.019214454942444444, 0.019005097244968596, 0.018853511932886362, 0.018771865060711615, 0.018772588430564834, 0.018867858041735668, 0.01906900281703887, 0.01938591253307104, 0.019826529751584897, 0.020396504950132753, 0.02109906495031006, 0.02193510074614791, 0.022903437582343443, 0.02400122202178491, 0.025224353937313915 ], [ 0.03585139965311668, 0.03487580251279177, 0.0339674685952194, 0.03312449887998177, 0.03234455185333455, 0.03162485226618628, 0.030962212063507737, 0.030353063431417478, 0.029793503169003224, 0.029279346905026277, 0.028806191125205893, 0.02836948061733825, 0.027964578811995242, 0.02758683859682082, 0.027231671482951417, 0.02689461345119632, 0.02657138634227501, 0.026257954218412767, 0.025950574661967984, 0.025645845454144826, 0.025340747471338194, 0.025032684941300537, 0.024719524417227016, 0.02439963396116584, 0.02407192408384785, 0.023735891964466863, 0.023391670357964668, 0.023040082358843358, 0.022682702775887426, 0.02232192620042847, 0.021961040809540488, 0.021604305395233694, 0.02125702490273692, 0.020925616782383086, 0.020617656722071397, 0.020341888111199396, 0.02010817563566244, 0.01992738110754632, 0.019811141059518735, 0.019771533152787367, 0.019820633734157586, 0.019969991330412076, 0.020230066138993676, 0.020609705556109935, 0.021115731246167457, 0.021752698674158414, 0.022522857770983278, 0.023426303830277072, 0.02446127424314917, 0.02562452896657895 ], [ 0.03746554910164899, 0.0364774320335415, 0.035555957163850446, 0.03469926642005457, 0.033905076734442464, 0.03317068896119624, 0.03249300797598268, 0.03186857389183534, 0.03129360368044127, 0.030764041888046916, 0.030275618648440725, 0.02982391287370962, 0.02940441837670504, 0.029012610749107895, 0.028644013063336558, 0.028294258844292527, 0.027959151216870558, 0.027634717626580846, 0.027317260008442715, 0.027003400710406373, 0.026690124840949535, 0.02637481999689015, 0.026055314535204495, 0.025729915685859195, 0.025397448863434823, 0.02505729952367667, 0.024709458816227842, 0.024354574084107048, 0.0239940049132588, 0.023629884879311294, 0.023265188287963867, 0.022903799952362535, 0.02255058427969948, 0.02221144755521619, 0.021893384303528916, 0.021604495144298016, 0.02135396013377883, 0.021151949152040366, 0.021009450945793463, 0.020938006815336852, 0.020949345260872373, 0.021054930514010115, 0.021265458605072462, 0.021590354206486508, 0.02203733268231023, 0.022612088304295997, 0.02331814991583065, 0.024156914477113742, 0.02512783675090574, 0.026228729834612587 ], [ 0.0391216645787296, 0.03812222761044838, 0.03718886829982731, 0.036319769026429874, 0.03551270337035477, 0.0347650452168624, 0.03407378817673973, 0.03343557524304619, 0.03284673803928981, 0.03230334448825792, 0.03180125330179058, 0.031336173403658296, 0.030903726276267536, 0.030499509269798112, 0.030119158112685084, 0.02975840718122404, 0.029413146481956417, 0.02907947472951784, 0.02875374832628489, 0.028432626437948555, 0.028113112691380265, 0.027792594286959873, 0.027468879514131433, 0.027140234786942198, 0.026805422377935248, 0.02646374002240396, 0.026115063483454326, 0.02575989299369347, 0.025399404190958326, 0.02503550369618013, 0.02467088877666721, 0.024309109517434875, 0.023954630500132624, 0.023612887091722122, 0.02329032905852755, 0.022994441455698327, 0.02273372992745814, 0.022517655344705574, 0.022356502145597146, 0.022261167186690967, 0.02224286269224074, 0.022312738660410177, 0.02248144594453089, 0.022758678066004116, 0.02315274256314746, 0.02367021591662613, 0.024315726651127217, 0.025091890368529886, 0.02599939405161449, 0.02703720295422673 ], [ 0.0408206370489322, 0.039811080617212974, 0.038867085718736, 0.03798687462583527, 0.03716827590078833, 0.03640873370740808, 0.035705326672310446, 0.03505479620318335, 0.03445358367298731, 0.03389787541598431, 0.033383654102740336, 0.03290675480346082, 0.03246292393432756, 0.03204787931368842, 0.031657369719882644, 0.031287232613303746, 0.030933449026819406, 0.030592195003795262, 0.03025988933831038, 0.029933237719907198, 0.029609273687228488, 0.029285397039580253, 0.028959410538654716, 0.028629555853332194, 0.02829454975967717, 0.027953621604298748, 0.027606552966263374, 0.027253720297571372, 0.026896141061285805, 0.026535523484717535, 0.026174319454708477, 0.025815779244694026, 0.025464005615986832, 0.025124003328497783, 0.024801718218383322, 0.024504057828864168, 0.024238883343664558, 0.024014960720505445, 0.023841858176180137, 0.023729778496250183, 0.02368931904444612, 0.02373116049329862, 0.023865696924977513, 0.02410263333606465, 0.024450588449700925, 0.024916747019319445, 0.025506603210534533, 0.02622382444006465, 0.02707024591979503, 0.028045985393935532 ], [ 0.04256332678091545, 0.04154484741218417, 0.040591454400919644, 0.03970140929263211, 0.03887259406590693, 0.03810252066224211, 0.037388349383138626, 0.03672691604877021, 0.03611476737139147, 0.03554820358777615, 0.03502332705964767, 0.034536095320270035, 0.03408237693883802, 0.033658008594629925, 0.033258851889906155, 0.03288084866147121, 0.032520073846270175, 0.03217278528494209, 0.031835470179514776, 0.031504888232711546, 0.031178111769660254, 0.03085256336651259, 0.03052605167951653, 0.030196806280362237, 0.02986351235901134, 0.029525346151949097, 0.029182011887564103, 0.028833780900749555, 0.028481533338573617, 0.028126802532193036, 0.027771821611960696, 0.0274195712515968, 0.0270738264996773, 0.026739199459032876, 0.02642117310351845, 0.026126119834510218, 0.0258612966387839, 0.025634807227704625, 0.025455520814111714, 0.025332937887095435, 0.02527699621084758, 0.02529781585957608, 0.02540539042174383, 0.02560924165470685, 0.025918064835451803, 0.02633939902019189, 0.026879357652309744, 0.027542448980884704, 0.02833150331823769, 0.029247708250345308 ], [ 0.04435055187501647, 0.04332433793117887, 0.042362769204225166, 0.04146414584096157, 0.04062640174915465, 0.03984711434993592, 0.03912352258469503, 0.03845255305865052, 0.03783085381097885, 0.03725483483952316, 0.03672071421022891, 0.03622456837545414, 0.03576238522650743, 0.03533011841812314, 0.03492374161684452, 0.03453930152309094, 0.0341729687731614, 0.0338210861154015, 0.03348021354891339, 0.03314717039150136, 0.0328190744899442, 0.032493378989331884, 0.0321679072330701, 0.031840886468770695, 0.031510981086151746, 0.03117732611028359, 0.03083956161284862, 0.03049786857843173, 0.03015300655895732, 0.029806353149053465, 0.029459944892932168, 0.02911651866090254, 0.02877955178125134, 0.02845329826091015, 0.02814281727748875, 0.0278539888220951, 0.027593510035015312, 0.027368864625132053, 0.027188257144950177, 0.027060504269491466, 0.026994877118172892, 0.027000892492969886, 0.027088056796478136, 0.02726557387961503, 0.027542035951997876, 0.027925123120960026, 0.02842134006115015, 0.029035816254963712, 0.029772188966722513, 0.03063257700254736 ], [ 0.04618307740269472, 0.04515030495330232, 0.044181764221893294, 0.04327579324332516, 0.042430376434110136, 0.041643154565313686, 0.04091144243603593, 0.04023225411807519, 0.03960233529292503, 0.0390182018806218, 0.03847618389532576, 0.037972473278405784, 0.03750317436892116, 0.03706435567807694, 0.03665210173004322, 0.036262563901797336, 0.03589200941762645, 0.03553686790701082, 0.03519377519481192, 0.034859614241350194, 0.03453155337163567, 0.034207082117621614, 0.03388404513873368, 0.033560674780867716, 0.03323562288076733, 0.03290799242029686, 0.03257736957992559, 0.03224385662792086, 0.03190810590170141, 0.031571354877259046, 0.031235461964486635, 0.030902942190723797, 0.03057700132359919, 0.03026156622563983, 0.029961308333162393, 0.029681656148213078, 0.0294287916126344, 0.029209624355277585, 0.029031737308199912, 0.02890329739590185, 0.028832926275115443, 0.028829528756199853, 0.028902080699211907, 0.029059383623905685, 0.02930979929861066, 0.02966098299976187, 0.03011963752834987, 0.03069131017402781, 0.03138025105697417, 0.0321893441067213 ], [ 0.04806160523088607, 0.047023434105806575, 0.04604910294159555, 0.04513698691938058, 0.04428511960473604, 0.04349120313361082, 0.04275262559475149, 0.04206648546857736, 0.04142962267034752, 0.04083865545902971, 0.04029002223782468, 0.03978002710754788, 0.039304887951298856, 0.038860785831120376, 0.03844391455860501, 0.03805052944817685, 0.0376769944564451, 0.03731982713337135, 0.03697574104177219, 0.036641685523193586, 0.03631488288765071, 0.03599286327161904, 0.03567349753728552, 0.03535502867287762, 0.03503610219695251, 0.03471579606749941, 0.034393650547360204, 0.034069698376753985, 0.0337444954454055, 0.033419151931314166, 0.03309536356945018, 0.03277544231852597, 0.032462345196371985, 0.03215969944940685, 0.031871821517250966, 0.031603726480934624, 0.031361123909000574, 0.031150395353531587, 0.030978548368059616, 0.030853142043243423, 0.030782179935587198, 0.03077396812431971, 0.030836939085342165, 0.03097944601415524, 0.03120953674908005, 0.03153472080078801, 0.03196174621554648, 0.03249640413112276, 0.033143377304293994, 0.033906144591420204 ], [ 0.049986764595562894, 0.048944334664722616, 0.047965369252430924, 0.04704827992940517, 0.046191148109699244, 0.04539173543769405, 0.04464750090986533, 0.04395562458197532, 0.043313037432512885, 0.042716456697929193, 0.04216242578528611, 0.04164735772061113, 0.04116758101603785, 0.04071938683829216, 0.04029907643008923, 0.03990300786323971, 0.03952764137243523, 0.03916958271459211, 0.03882562420295863, 0.038492783263070006, 0.038168338536432776, 0.03784986370876503, 0.03753525935633917, 0.037222783183440515, 0.036911079063643305, 0.036599205296537214, 0.03628666244796815, 0.035973421052848176, 0.0356599493212068, 0.035347240793833966, 0.0350368416365206, 0.03473087693347077, 0.03443207493503009, 0.034143787731348955, 0.033870006271425515, 0.033615367051903634, 0.033385147213125785, 0.03318524428401679, 0.03302213653335371, 0.032902819967495896, 0.03283471863829352, 0.03282556624842292, 0.032883259155322336, 0.03301568373318419, 0.033230524412302814, 0.03353506211195676, 0.03393597557430678, 0.03443915960324114, 0.03504957387169756, 0.035771133591614636 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
l2norm: 1.2731 (SEM: 0)
x1: 0.151049
x2: 0.80222
x3: 0.165584
x4: 0.148435
x5: 0.0323852
x6: 0.950737", "Arm 10_0
l2norm: 1.56544 (SEM: 0)
x1: 0.940238
x2: 0.871178
x3: 0.716303
x4: 0.0975526
x5: 0.283898
x6: 0.452116", "Arm 11_0
l2norm: 1.33361 (SEM: 0)
x1: 0.464369
x2: 0.439654
x3: 0.123788
x4: 0.561775
x5: 0.5115
x6: 0.881498", "Arm 12_0
l2norm: 1.24506 (SEM: 0)
x1: 0.432881
x2: 0.201933
x3: 0.427252
x4: 0.381064
x5: 0.997119
x6: 0.00243286", "Arm 13_0
l2norm: 1.10244 (SEM: 0)
x1: 0
x2: 0.417843
x3: 0.20196
x4: 0
x5: 0
x6: 1", "Arm 14_0
l2norm: 0.89276 (SEM: 0)
x1: 0.310382
x2: 0
x3: 0.820433
x4: 0
x5: 0.165285
x6: 0.015951", "Arm 15_0
l2norm: 0.676828 (SEM: 0)
x1: 0
x2: 0.153259
x3: 0.287662
x4: 0
x5: 0
x6: 0.593177", "Arm 16_0
l2norm: 1.25466 (SEM: 0)
x1: 0.274073
x2: 4.06894e-12
x3: 0.844319
x4: 0.177387
x5: 0.868363
x6: 0.0255218", "Arm 17_0
l2norm: 1.22418 (SEM: 0)
x1: 0.506342
x2: 0.708289
x3: 0.860554
x4: 0
x5: 1.67832e-16
x6: 0", "Arm 18_0
l2norm: 0.952143 (SEM: 0)
x1: 0
x2: 0.409309
x3: 0.541239
x4: 2.39548e-12
x5: 0.138572
x6: 0.653377", "Arm 19_0
l2norm: 0.766522 (SEM: 0)
x1: 9.79387e-17
x2: 0.268533
x3: 0.321841
x4: 0
x5: 0.257193
x6: 0.587977", "Arm 1_0
l2norm: 1.41855 (SEM: 0)
x1: 0.628794
x2: 0.386092
x3: 0.509957
x4: 0.698584
x5: 0.758152
x6: 0.380729", "Arm 20_0
l2norm: 1.32669 (SEM: 0)
x1: 0.245677
x2: 0.842709
x3: 0.204642
x4: 0
x5: 0.969852
x6: 0.0842652", "Arm 21_0
l2norm: 1.13474 (SEM: 0)
x1: 2.31094e-13
x2: 0.220737
x3: 0.450272
x4: 0.166542
x5: 0.22728
x6: 0.978146", "Arm 22_0
l2norm: 0.66326 (SEM: 0)
x1: 3.05368e-16
x2: 0.415202
x3: 0.409978
x4: 0.0192546
x5: 0.211704
x6: 0.232917", "Arm 23_0
l2norm: 0.908261 (SEM: 0)
x1: 0.0365208
x2: 0.217949
x3: 0.483467
x4: 0.126903
x5: 0.215886
x6: 0.692569", "Arm 24_0
l2norm: 0.950264 (SEM: 0)
x1: 0.0172091
x2: 0.13585
x3: 0.569265
x4: 0.174137
x5: 0.267994
x6: 0.676789", "Arm 25_0
l2norm: 1.02006 (SEM: 0)
x1: 3.91382e-16
x2: 0.0513237
x3: 0.693434
x4: 0.209007
x5: 0.31231
x6: 0.644846", "Arm 26_0
l2norm: 0.902132 (SEM: 0)
x1: 0
x2: 0.0929705
x3: 0.487076
x4: 0.24231
x5: 0.307782
x6: 0.643826", "Arm 27_0
l2norm: 0.933566 (SEM: 0)
x1: 0
x2: 0
x3: 0.479246
x4: 0.206108
x5: 0.382805
x6: 0.672941", "Arm 28_0
l2norm: 0.889385 (SEM: 0)
x1: 1.89458e-09
x2: 2.71357e-09
x3: 0.483291
x4: 0.311506
x5: 0.242222
x6: 0.63382", "Arm 2_0
l2norm: 1.27182 (SEM: 0)
x1: 0.793672
x2: 0.672334
x3: 0.317642
x4: 0.251004
x5: 0.566111
x6: 0.226271", "Arm 3_0
l2norm: 1.5259 (SEM: 0)
x1: 0.302699
x2: 0.0140186
x3: 0.975583
x4: 0.841437
x5: 0.354257
x6: 0.671767", "Arm 4_0
l2norm: 1.63197 (SEM: 0)
x1: 0.434282
x2: 0.609244
x3: 0.64382
x4: 0.978195
x5: 0.387814
x6: 0.762737", "Arm 5_0
l2norm: 1.26322 (SEM: 0)
x1: 0.912088
x2: 0.205075
x3: 0.0478265
x4: 0.426799
x5: 0.660582
x6: 0.31773", "Arm 6_0
l2norm: 1.8286 (SEM: 0)
x1: 0.510378
x2: 0.979358
x3: 0.874545
x4: 0.624344
x5: 0.983902
x6: 0.0382868", "Arm 7_0
l2norm: 0.858564 (SEM: 0)
x1: 0.019464
x2: 0.333001
x3: 0.465044
x4: 0.0351062
x5: 0.194292
x6: 0.608782", "Arm 8_0
l2norm: 1.62061 (SEM: 0)
x1: 0.114111
x2: 0.743253
x3: 0.798537
x4: 0.489368
x5: 0.812672
x6: 0.723423", "Arm 9_0
l2norm: 1.18536 (SEM: 0)
x1: 0.607023
x2: 0.0695411
x3: 0.392637
x4: 0.915749
x5: 0.102896
x6: 0.168553" ], "type": "scatter", "x": [ 0.15104858577251434, 0.9402376981452107, 0.4643686767667532, 0.43288128941456605, 0.0, 0.3103817281315674, 0.0, 0.27407340511027095, 0.5063418292737942, 0.0, 9.79386717272559e-17, 0.6287942994385958, 0.2456765463805269, 2.3109357035369174e-13, 3.05368381100543e-16, 0.036520837683747455, 0.017209067799860294, 3.913815733201904e-16, 0.0, 0.0, 1.8945762718047216e-09, 0.7936723520979285, 0.3026987947523594, 0.4342824285849929, 0.9120877645909786, 0.510377929545939, 0.019463995471596718, 0.11411143373697996, 0.6070231944322586 ], "xaxis": "x", "y": [ 0.8022201061248779, 0.8711780328303576, 0.439653679728508, 0.2019332659258263, 0.41784274597826465, 0.0, 0.1532587516949975, 4.068935787480984e-12, 0.7082886703880955, 0.4093087213867714, 0.26853266332644843, 0.3860921086743474, 0.8427091373589946, 0.22073741977397807, 0.41520181589672667, 0.21794852807987594, 0.13585037082790424, 0.05132373848295468, 0.09297047622460022, 0.0, 2.713565564402582e-09, 0.6723343254998326, 0.014018594287335873, 0.6092437170445919, 0.20507477037608624, 0.9793579112738371, 0.3330012522637844, 0.743252769112587, 0.06954112835228443 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "Arm 0_0
l2norm: 1.2731 (SEM: 0)
x1: 0.151049
x2: 0.80222
x3: 0.165584
x4: 0.148435
x5: 0.0323852
x6: 0.950737", "Arm 10_0
l2norm: 1.56544 (SEM: 0)
x1: 0.940238
x2: 0.871178
x3: 0.716303
x4: 0.0975526
x5: 0.283898
x6: 0.452116", "Arm 11_0
l2norm: 1.33361 (SEM: 0)
x1: 0.464369
x2: 0.439654
x3: 0.123788
x4: 0.561775
x5: 0.5115
x6: 0.881498", "Arm 12_0
l2norm: 1.24506 (SEM: 0)
x1: 0.432881
x2: 0.201933
x3: 0.427252
x4: 0.381064
x5: 0.997119
x6: 0.00243286", "Arm 13_0
l2norm: 1.10244 (SEM: 0)
x1: 0
x2: 0.417843
x3: 0.20196
x4: 0
x5: 0
x6: 1", "Arm 14_0
l2norm: 0.89276 (SEM: 0)
x1: 0.310382
x2: 0
x3: 0.820433
x4: 0
x5: 0.165285
x6: 0.015951", "Arm 15_0
l2norm: 0.676828 (SEM: 0)
x1: 0
x2: 0.153259
x3: 0.287662
x4: 0
x5: 0
x6: 0.593177", "Arm 16_0
l2norm: 1.25466 (SEM: 0)
x1: 0.274073
x2: 4.06894e-12
x3: 0.844319
x4: 0.177387
x5: 0.868363
x6: 0.0255218", "Arm 17_0
l2norm: 1.22418 (SEM: 0)
x1: 0.506342
x2: 0.708289
x3: 0.860554
x4: 0
x5: 1.67832e-16
x6: 0", "Arm 18_0
l2norm: 0.952143 (SEM: 0)
x1: 0
x2: 0.409309
x3: 0.541239
x4: 2.39548e-12
x5: 0.138572
x6: 0.653377", "Arm 19_0
l2norm: 0.766522 (SEM: 0)
x1: 9.79387e-17
x2: 0.268533
x3: 0.321841
x4: 0
x5: 0.257193
x6: 0.587977", "Arm 1_0
l2norm: 1.41855 (SEM: 0)
x1: 0.628794
x2: 0.386092
x3: 0.509957
x4: 0.698584
x5: 0.758152
x6: 0.380729", "Arm 20_0
l2norm: 1.32669 (SEM: 0)
x1: 0.245677
x2: 0.842709
x3: 0.204642
x4: 0
x5: 0.969852
x6: 0.0842652", "Arm 21_0
l2norm: 1.13474 (SEM: 0)
x1: 2.31094e-13
x2: 0.220737
x3: 0.450272
x4: 0.166542
x5: 0.22728
x6: 0.978146", "Arm 22_0
l2norm: 0.66326 (SEM: 0)
x1: 3.05368e-16
x2: 0.415202
x3: 0.409978
x4: 0.0192546
x5: 0.211704
x6: 0.232917", "Arm 23_0
l2norm: 0.908261 (SEM: 0)
x1: 0.0365208
x2: 0.217949
x3: 0.483467
x4: 0.126903
x5: 0.215886
x6: 0.692569", "Arm 24_0
l2norm: 0.950264 (SEM: 0)
x1: 0.0172091
x2: 0.13585
x3: 0.569265
x4: 0.174137
x5: 0.267994
x6: 0.676789", "Arm 25_0
l2norm: 1.02006 (SEM: 0)
x1: 3.91382e-16
x2: 0.0513237
x3: 0.693434
x4: 0.209007
x5: 0.31231
x6: 0.644846", "Arm 26_0
l2norm: 0.902132 (SEM: 0)
x1: 0
x2: 0.0929705
x3: 0.487076
x4: 0.24231
x5: 0.307782
x6: 0.643826", "Arm 27_0
l2norm: 0.933566 (SEM: 0)
x1: 0
x2: 0
x3: 0.479246
x4: 0.206108
x5: 0.382805
x6: 0.672941", "Arm 28_0
l2norm: 0.889385 (SEM: 0)
x1: 1.89458e-09
x2: 2.71357e-09
x3: 0.483291
x4: 0.311506
x5: 0.242222
x6: 0.63382", "Arm 2_0
l2norm: 1.27182 (SEM: 0)
x1: 0.793672
x2: 0.672334
x3: 0.317642
x4: 0.251004
x5: 0.566111
x6: 0.226271", "Arm 3_0
l2norm: 1.5259 (SEM: 0)
x1: 0.302699
x2: 0.0140186
x3: 0.975583
x4: 0.841437
x5: 0.354257
x6: 0.671767", "Arm 4_0
l2norm: 1.63197 (SEM: 0)
x1: 0.434282
x2: 0.609244
x3: 0.64382
x4: 0.978195
x5: 0.387814
x6: 0.762737", "Arm 5_0
l2norm: 1.26322 (SEM: 0)
x1: 0.912088
x2: 0.205075
x3: 0.0478265
x4: 0.426799
x5: 0.660582
x6: 0.31773", "Arm 6_0
l2norm: 1.8286 (SEM: 0)
x1: 0.510378
x2: 0.979358
x3: 0.874545
x4: 0.624344
x5: 0.983902
x6: 0.0382868", "Arm 7_0
l2norm: 0.858564 (SEM: 0)
x1: 0.019464
x2: 0.333001
x3: 0.465044
x4: 0.0351062
x5: 0.194292
x6: 0.608782", "Arm 8_0
l2norm: 1.62061 (SEM: 0)
x1: 0.114111
x2: 0.743253
x3: 0.798537
x4: 0.489368
x5: 0.812672
x6: 0.723423", "Arm 9_0
l2norm: 1.18536 (SEM: 0)
x1: 0.607023
x2: 0.0695411
x3: 0.392637
x4: 0.915749
x5: 0.102896
x6: 0.168553" ], "type": "scatter", "x": [ 0.15104858577251434, 0.9402376981452107, 0.4643686767667532, 0.43288128941456605, 0.0, 0.3103817281315674, 0.0, 0.27407340511027095, 0.5063418292737942, 0.0, 9.79386717272559e-17, 0.6287942994385958, 0.2456765463805269, 2.3109357035369174e-13, 3.05368381100543e-16, 0.036520837683747455, 0.017209067799860294, 3.913815733201904e-16, 0.0, 0.0, 1.8945762718047216e-09, 0.7936723520979285, 0.3026987947523594, 0.4342824285849929, 0.9120877645909786, 0.510377929545939, 0.019463995471596718, 0.11411143373697996, 0.6070231944322586 ], "xaxis": "x2", "y": [ 0.8022201061248779, 0.8711780328303576, 0.439653679728508, 0.2019332659258263, 0.41784274597826465, 0.0, 0.1532587516949975, 4.068935787480984e-12, 0.7082886703880955, 0.4093087213867714, 0.26853266332644843, 0.3860921086743474, 0.8427091373589946, 0.22073741977397807, 0.41520181589672667, 0.21794852807987594, 0.13585037082790424, 0.05132373848295468, 0.09297047622460022, 0.0, 2.713565564402582e-09, 0.6723343254998326, 0.014018594287335873, 0.6092437170445919, 0.20507477037608624, 0.9793579112738371, 0.3330012522637844, 0.743252769112587, 0.06954112835228443 ], "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 } } }, "title": { "text": "l2norm" }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x=\"x1\", param_y=\"x2\", metric_name=\"l2norm\"))" ] }, { "cell_type": "markdown", "id": "b2effff0", "metadata": { "papermill": { "duration": 0.071551, "end_time": "2024-11-13T05:13:17.947452", "exception": false, "start_time": "2024-11-13T05:13:17.875901", "status": "completed" }, "tags": [] }, "source": [ "We also plot optimization trace, which shows best hartmann6 objective value seen by each iteration of the optimization:" ] }, { "cell_type": "code", "execution_count": 9, "id": "d3371e6e", "metadata": { "execution": { "iopub.execute_input": "2024-11-13T05:13:18.092959Z", "iopub.status.busy": "2024-11-13T05:13:18.092301Z", "iopub.status.idle": "2024-11-13T05:13:18.144305Z", "shell.execute_reply": "2024-11-13T05:13:18.143664Z" }, "papermill": { "duration": 0.126516, "end_time": "2024-11-13T05:13:18.145952", "exception": false, "start_time": "2024-11-13T05:13:18.019436", "status": "completed" }, "tags": [] }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.07671340166067078, -0.07671340166067078, -0.07671340166067078, -0.08897059576982433, -0.11478557796275599, -0.11478557796275599, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.5293104812556124, -2.5293104812556124, -2.778425184039115, -2.778425184039115, -2.778425184039115, -2.778425184039115 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "legendgroup": "objective value", "line": { "color": "rgba(128,177,211,1)" }, "mode": "lines", "name": "objective value", "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.07671340166067078, -0.07671340166067078, -0.07671340166067078, -0.08897059576982433, -0.11478557796275599, -0.11478557796275599, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.5293104812556124, -2.5293104812556124, -2.778425184039115, -2.778425184039115, -2.778425184039115, -2.778425184039115 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.07671340166067078, -0.07671340166067078, -0.07671340166067078, -0.08897059576982433, -0.11478557796275599, -0.11478557796275599, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.219317974321711, -2.5293104812556124, -2.5293104812556124, -2.778425184039115, -2.778425184039115, -2.778425184039115, -2.778425184039115 ] }, { "line": { "color": "rgba(253,180,98,1)", "dash": "dash" }, "mode": "lines", "name": "Optimum", "type": "scatter", "x": [ 1, 30 ], "y": [ -3.32237, -3.32237 ] } ], "layout": { "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "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 } } }, "title": { "text": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# `plot_single_method` expects a 2-d array of means, because it expects to average means from multiple\n", "# optimization runs, so we wrap out best objectives array in another array.\n", "best_objectives = np.array(\n", " [[trial.objective_mean for trial in experiment.trials.values()]]\n", ")\n", "best_objective_plot = optimization_trace_single_method(\n", " y=np.minimum.accumulate(best_objectives, axis=1),\n", " optimum=hartmann6.fmin,\n", " title=\"Model performance vs. # of iterations\",\n", " ylabel=\"Hartmann6\",\n", ")\n", "render(best_objective_plot)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.15" }, "papermill": { "default_parameters": {}, "duration": 153.122723, "end_time": "2024-11-13T05:13:20.520876", "environment_variables": {}, "exception": null, "input_path": "/tmp/tmp.jh7tLjWjTJ/Ax-main/tutorials/gpei_hartmann_loop.ipynb", "output_path": "/tmp/tmp.jh7tLjWjTJ/Ax-main/tutorials/gpei_hartmann_loop.ipynb", "parameters": {}, "start_time": "2024-11-13T05:10:47.398153", "version": "2.6.0" } }, "nbformat": 4, "nbformat_minor": 5 }