{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "execution": { "iopub.execute_input": "2022-09-15T17:05:47.492017Z", "iopub.status.busy": "2022-09-15T17:05:47.491045Z", "iopub.status.idle": "2022-09-15T17:05:50.650658Z", "shell.execute_reply": "2022-09-15T17:05:50.649749Z" } }, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\n", "from ax.plot.contour import plot_contour\n", "from ax.plot.trace import optimization_trace_single_method\n", "from ax.service.managed_loop import optimize\n", "from ax.metrics.branin import branin\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Define evaluation function\n", "\n", "First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true, "execution": { "iopub.execute_input": "2022-09-15T17:05:50.717869Z", "iopub.status.busy": "2022-09-15T17:05:50.716783Z", "iopub.status.idle": "2022-09-15T17:05:50.724355Z", "shell.execute_reply": "2022-09-15T17:05:50.723487Z" } }, "outputs": [], "source": [ "def hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x ** 2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Run optimization\n", "The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space." ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "execution": { "iopub.execute_input": "2022-09-15T17:05:50.728570Z", "iopub.status.busy": "2022-09-15T17:05:50.728242Z", "iopub.status.idle": "2022-09-15T17:10:20.011432Z", "shell.execute_reply": "2022-09-15T17:10:20.010441Z" } }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] 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 09-15 17:05:50] ax.modelbridge.dispatch_utils: Using Bayesian optimization since there are more ordered parameters than there are categories for the unordered categorical parameters.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 12 trials, GPEI for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:51] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:51] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:51] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:05:51] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n", "\n", "Optimization failed in `gen_candidates_scipy` with the following warning(s):\n", "[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n", "Trying again with a new set of initial conditions.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n", "\n", "Optimization failed on the second try, after generating a new set of initial conditions.\n", "\n", "[INFO 09-15 17:06:12] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n", "\n", "Optimization failed in `gen_candidates_scipy` with the following warning(s):\n", "[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n", "Trying again with a new set of initial conditions.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n", "\n", "Optimization failed on the second try, after generating a new set of initial conditions.\n", "\n", "[INFO 09-15 17:06:33] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n", "\n", "Optimization failed in `gen_candidates_scipy` with the following warning(s):\n", "[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n", "Trying again with a new set of initial conditions.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n", "\n", "Optimization failed on the second try, after generating a new set of initial conditions.\n", "\n", "[INFO 09-15 17:06:54] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n", "\n", "Optimization failed in `gen_candidates_scipy` with the following warning(s):\n", "[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n", "Trying again with a new set of initial conditions.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n", "\n", "Optimization failed on the second try, after generating a new set of initial conditions.\n", "\n", "[INFO 09-15 17:07:14] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n", "\n", "Optimization failed in `gen_candidates_scipy` with the following warning(s):\n", "[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n", "Trying again with a new set of initial conditions.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n", "\n", "Optimization failed on the second try, after generating a new set of initial conditions.\n", "\n", "[INFO 09-15 17:07:33] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n", "\n", "Optimization failed in `gen_candidates_scipy` with the following warning(s):\n", "[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n", "Trying again with a new set of initial conditions.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n", "\n", "Optimization failed on the second try, after generating a new set of initial conditions.\n", "\n", "[INFO 09-15 17:07:52] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n", "\n", "Optimization failed in `gen_candidates_scipy` with the following warning(s):\n", "[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n", "Trying again with a new set of initial conditions.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:08:09] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n", "\n", "Optimization failed in `gen_candidates_scipy` with the following warning(s):\n", "[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n", "Trying again with a new set of initial conditions.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n", "\n", "Optimization failed on the second try, after generating a new set of initial conditions.\n", "\n", "[INFO 09-15 17:08:29] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n", "\n", "Optimization failed in `gen_candidates_scipy` with the following warning(s):\n", "[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n", "Trying again with a new set of initial conditions.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n", "\n", "Optimization failed on the second try, after generating a new set of initial conditions.\n", "\n", "[INFO 09-15 17:08:50] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:08:58] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:09:07] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:09:16] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n", "\n", "Optimization failed in `gen_candidates_scipy` with the following warning(s):\n", "[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n", "Trying again with a new set of initial conditions.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n", "\n", "Optimization failed on the second try, after generating a new set of initial conditions.\n", "\n", "[INFO 09-15 17:09:36] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:09:46] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:09:53] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:10:01] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-15 17:10:10] ax.service.managed_loop: Running optimization trial 30...\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "execution": { "iopub.execute_input": "2022-09-15T17:10:20.016827Z", "iopub.status.busy": "2022-09-15T17:10:20.016500Z", "iopub.status.idle": "2022-09-15T17:10:20.031219Z", "shell.execute_reply": "2022-09-15T17:10:20.030305Z" } }, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.2960399268816468,\n", " 'x2': 0.051018639601891375,\n", " 'x3': 0.4244664445819664,\n", " 'x4': 0.31821727714367903,\n", " 'x5': 0.2720471541434911,\n", " 'x6': 0.5853630435103842}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "execution": { "iopub.execute_input": "2022-09-15T17:10:20.036839Z", "iopub.status.busy": "2022-09-15T17:10:20.034893Z", "iopub.status.idle": "2022-09-15T17:10:20.043971Z", "shell.execute_reply": "2022-09-15T17:10:20.043097Z" } }, "outputs": [ { "data": { "text/plain": [ "{'hartmann6': -2.869572675007806, 'l2norm': 0.8878918208206112}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "execution": { "iopub.execute_input": "2022-09-15T17:10:20.050059Z", "iopub.status.busy": "2022-09-15T17:10:20.048363Z", "iopub.status.idle": "2022-09-15T17:10:20.057594Z", "shell.execute_reply": "2022-09-15T17:10:20.056324Z" } }, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "metadata": { "execution": { "iopub.execute_input": "2022-09-15T17:10:20.061879Z", "iopub.status.busy": "2022-09-15T17:10:20.061425Z", "iopub.status.idle": "2022-09-15T17:10:21.263272Z", "shell.execute_reply": "2022-09-15T17:10:21.262138Z" } }, "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": [ [ -1.7820470158273376, -1.8410629901603488, -1.8993236844405055, -1.9564534288221584, -2.012046087863158, -2.065666498050074, -2.116852951274727, -2.1651209817249626, -2.2099687425952386, -2.250884264587157, -2.2873548471880643, -2.318878716975091, -2.344978868563298, -2.365218678272809, -2.3792184857950245, -2.386671964492382, -2.3873608649055242, -2.381166711222101, -2.3680782707485353, -2.3481940317018344, -2.3217194113330226, -2.2889588976385475, -2.2503037713584515, -2.206216444361733, -2.1572127504206104, -2.1038436750927074, -2.0466779589462334, -1.986286744108814, -1.9232310131555337, -1.8580520932419313, -1.7912650749038326, -1.7233546998339673, -1.6547731313899439, -1.5859390176511057, -1.5172373461645916, -1.449019723335482, -1.3816048494271496, -1.3152790764779672, -1.2502970194798042, -1.1868822400578756, -1.125228042234531, -1.0654984199157975, -1.0078291838065816, -0.9523292784057354, -0.8990822824456446, -0.8481480715781672, -0.7995646116510939, -0.7533498448240519, -0.7095036286079508, -0.66800968889696 ], [ -1.7803570808955305, -1.8394673919988749, -1.897823501834194, -1.9550475142749475, -2.0107306888144527, -2.0644348644193378, -2.1156949414377078, -2.1640226841208214, -2.208912136198321, -2.2498469481777517, -2.2863098741910663, -2.3177945788146728, -2.343819674030711, -2.363944578241035, -2.377786390455151, -2.385036592214168, -2.385476144667904, -2.378987529873151, -2.3655625081490714, -2.3453047614305937, -2.3184270712957633, -2.285243173618669, -2.2461549142437676, -2.2016357820883075, -2.1522122651638225, -2.0984446750042327, -2.040909038495983, -1.9801813482452593, -1.91682496410538, -1.8513813999941822, -1.784364246558858, -1.716255660918936, -1.647504723798773, -1.5785269918705662, -1.5097047013139555, -1.441387247439902, -1.3738917283640797, -1.3075034708752145, -1.2424765438063958, -1.1790343104615821, -1.117370085597939, -1.0576479548347635, -1.0000037951091623, -0.9445465117021556, -0.8913594856343374, -0.8405022077856071, -0.7920120640596081, -0.7459062292254234, -0.7021836249781197, -0.6608268992193465 ], [ -1.776199283727217, -1.8352691030988328, -1.8935827614030933, -1.9507608092360627, -2.00639273319893, -2.0600383877686967, -2.111230496953159, -2.1594784910093745, -2.2042739729390934, -2.2450981147461495, -2.2814312412910085, -2.312764741127183, -2.3386152236316766, -2.3585405157818093, -2.3721566971318104, -2.3791549937694088, -2.3793171032664504, -2.3725274894946224, -2.3587813829986293, -2.3381875912379986, -2.3109656825620837, -2.277437607049107, -2.2380143399101486, -2.1931786556603106, -2.1434655908738023, -2.0894424116845918, -2.0316898631172506, -1.9707861185242135, -1.9072942594647029, -1.8417534656626655, -1.7746735478352145, -1.7065321164385021, -1.6377735659568162, -1.5688091215178384, -1.50001736760337, -1.431744885275621, -1.3643068126352458, -1.2979872854884096, -1.2330398040298216, -1.1696876125108782, -1.1081241844298297, -1.0485138890832728, -0.9909928879448571, -0.9356702798535715, -0.8826294878032868, -0.8319298599563472, -0.7836084441360615, -0.7376818880298465, -0.6941484155521612, -0.6529898319432197 ], [ -1.769558068241765, -1.8284506674794851, -1.8865820025571451, -1.9435717579643743, -1.999008499647747, -2.0524511375004977, -2.103431468857832, -2.1514580684970044, -2.1960218182525493, -2.236603372106595, -2.272682807851897, -2.3037515966698825, -2.329326803947971, -2.3489671157850234, -2.3622899022242536, -2.368988161194985, -2.368845939822232, -2.3617507811546465, -2.3477019085117794, -2.326813188580364, -2.299310344904765, -2.2655223924778696, -2.225867826414741, -2.1808366964302293, -2.130970238397114, -2.0768400585697337, -2.019028834858974, -1.9581140821165082, -1.8946558397981605, -1.8291883894076144, -1.7622154981747362, -1.6942083311398548, -1.6256050868543128, -1.556811526860266, -1.4882017919551993, -1.4201191442849441, -1.3528764867014629, -1.2867566626980984, -1.2220126278840104, -1.1588676175144308, -1.097515429901071, -1.0381209185789715, -0.9808207500259667, -0.9257244477118093, -0.8729157127208993, -0.8224539885601098, -0.7743762233636902, -0.7286987756348161, -0.6854194084292518, -0.6445193198646036 ], [ -1.7604330625861198, -1.8190111482202092, -1.876819720738979, -1.9334783022783095, -1.9885754106331137, -2.0416700748802423, -2.092294442321998, -2.1399577398721172, -2.1841518775177517, -2.2243589803615866, -2.2600610873619966, -2.2907521338683607, -2.315952120995326, -2.3352230673656855, -2.348185972929831, -2.3545376746383924, -2.3540662320182717, -2.346663416632549, -2.3323330066045846, -2.31119386963765, -2.2834772119971367, -2.2495178640470623, -2.209740072865361, -2.1646389501330017, -2.114759358944423, -2.0606744182269163, -2.002965779132852, -1.9422073444096573, -1.8789533033936634, -1.8137304991121208, -1.7470344711751231, -1.6793281571799765, -1.611042184254879, -1.542575852417416, -1.474298187677297, -1.4065487283057687, -1.3396379419886035, -1.2738473299536217, -1.2094293575857864, -1.1466073745625083, -1.085575670958001, -1.0264997776774183, -0.9695170744783375, -0.9147377263443364, -0.8622459343685986, -0.8121014625558951, -0.7643413868629516, -0.7189820059697796, -0.6760208528180681, -0.6354387499467449 ], [ -1.748839399717692, -1.8069664907468141, -1.8643127773823964, -1.9204983419942283, -1.9751125468430892, -2.027715624247497, -2.077841366857993, -2.1250011761392633, -2.1686897474840006, -2.2083926643365213, -2.243596121102171, -2.273798872727377, -2.298526300634168, -2.3173461920529954, -2.329885486153592, -2.3358469120190213, -2.3350242103398116, -2.327314551861209, -2.3127268543476087, -2.291384932223922, -2.2635247663730853, -2.2294856642690792, -2.1896957148139222, -2.1446526978046503, -2.0949023402555205, -2.0410162779524814, -1.983572060254172, -1.9231369808805416, -1.8602566040147432, -1.7954478933586242, -1.7291961229309836, -1.661954390135598, -1.5941445452925613, -1.5261585825115942, -1.4583598679439094, -1.391083904779224, -1.3246385873301025, -1.259304057902789, -1.1953323563544596, -1.1329470635920984, -1.0723431105459362, -1.0136868743982166, -0.9571166296982949, -0.9027433732964185, -0.8506520037408314, -0.8009028093224868, -0.7535332035318265, -0.7085596403912403, -0.6659796426506732, -0.6257738809769497 ], [ -1.734807800902201, -1.7923496150659453, -1.8490964998253179, -1.904669840675905, -1.958660755977508, -2.010631781012724, -2.0601196586372406, -2.106639486986352, -2.1496904900047022, -2.18876366495891, -2.2233515041464793, -2.2529598659810075, -2.277121870037917, -2.2954134154544157, -2.3074696034268354, -2.3130010401838494, -2.3118087739507596, -2.303796527117888, -2.288978936224968, -2.2674846955783896, -2.239553812306647, -2.2055286504246574, -2.1658391056787467, -2.1209830812117376, -2.0715042578542207, -2.0179696847587074, -1.9609496946353522, -1.9010020172056612, -1.8386609363747692, -1.7744312749294484, -1.7087862151279194, -1.6421676180145621, -1.574987549953967, -1.5076300190889225, -1.4404523095100783, -1.3737856588031987, -1.3079352923000347, -1.2431799880997254, -1.1797714132388353, -1.1179334689413574, -1.0578618392658443, -0.999723875935332, -0.9436588892098517, -0.8897788602079322, -0.8381695485985967, -0.7888919418493207, -0.7419839768080962, -0.6974624588715442, -0.6553251056564238, -0.6155526484765066 ], [ -1.7183844141908868, -1.7752102278898056, -1.8312244609737092, -1.8860505653919568, -1.9392823437065339, -1.9904857434933199, -2.0392017616810247, -2.084950699167191, -2.127238015795383, -2.1655620183764555, -2.199423553448653, -2.228337755260295, -2.2518477079570562, -2.269539624778875, -2.2810588545422137, -2.286125745910071, -2.2845501881202632, -2.2762435429334644, -2.2612267000153983, -2.239633126065113, -2.2117060516364857, -2.177789396333671, -2.138312722651233, -2.0937714003051533, -2.044704065675517, -1.9916700468373956, -1.9352293950869368, -1.8759274581721859, -1.8142847951265275, -1.7507920830035202, -1.685908856486744, -1.6200645980875368, -1.5536607986986548, -1.4870729655317336, -1.4206519898635275, -1.3547246746959256, -1.289593500366938, -1.2255358629400612, -1.162803074535974, -1.1016193975298492, -1.042181326840862, -0.9846572615328539, -0.9291876357855708, -0.8758855196816564, -0.8248376561110569, -0.7761058715091362, -0.7297287830557468, -0.6857237204064028, -0.6440887829411367, -0.6048049611881592 ], [ -1.699630408278746, -1.7556143557294819, -1.8107679408390815, -1.8647174641518514, -1.9170603526751946, -1.9673670775222036, -2.0151841808996225, -2.0600386403885658, -2.1014438024240354, -2.1389070938305146, -2.171939655881711, -2.2000679260272338, -2.2228470111344167, -2.23987545952185, -2.2508107723602624, -2.2553847390562956, -2.2534174804553806, -2.244828970488053, -2.229646795488083, -2.208009010202746, -2.180161190889513, -2.146447231825884, -2.107294141711277, -2.0631920378830375, -2.014671498641352, -1.9622810557815031, -1.9065675634612123, -1.8480614038732175, -1.7872672631144875, -1.7246599917922032, -1.6606842367567451, -1.595756237187676, -1.5302663373243877, -1.4645811842331988, -1.3990450585961698, -1.3339801981607105, -1.2696862572747611, -1.2064391960227732, -1.144489933540759, -1.0840630678051304, -1.0253558928048545, -0.9685378602236204, -0.9137505541344708, -0.8611081831284062, -0.8106985480443446, -0.7625844144214615, -0.7168052042677107, -0.6733789182802381, -0.6323042038643047, -0.5935624932490918 ], [ -1.6786213305598696, -1.733643610190342, -1.7878150843089453, -1.840765699392104, -1.8920974530165964, -1.9413864436474806, -1.9881860245585639, -2.0320312754835137, -2.072445003826816, -2.1089454590194077, -2.1410558766676147, -2.1683158527246, -2.1902943775020542, -2.206604142124038, -2.216916487818348, -2.220976134638555, -2.2186146361609467, -2.2097613868843813, -2.1944509750966454, -2.172825744152095, -2.145132642557583, -2.111713882281702, -2.0729916501642682, -2.0294480916161, -1.9816027825829658, -1.9299905407593645, -1.8751423562500213, -1.8175713866044987, -1.7577646653575147, -1.6961799093573915, -1.633245979361375, -1.5693652903840003, -1.5049166807120313, -1.440257715565175, -1.3757259169381362, -1.3116388403383348, -1.2482932047218769, -1.1859634233982808, -1.1248999110673699, -1.065327495349698, -1.0074441770529798, -0.9514203899091593, -0.8973988253719385, -0.8454948202605328, -0.7957972571928493, -0.748369898566756, -0.7032530610475407, -0.6604655352127551, -0.620006660494637, -0.58185847573514 ], [ -1.6554462461370179, -1.7093942061769711, -1.762469780772655, -1.8143073692074052, -1.8645144834925276, -1.9126739349881983, -1.958347114816307, -2.0010785657310155, -2.0404020359116313, -2.075848172366941, -2.1069539430931283, -2.1332737644800686, -2.1543921511685866, -2.169937506808623, -2.1795964544848383, -2.183127891885297, -2.180375776632954, -2.17127952384626, -2.1558808484610212, -2.1343259351418613, -2.106862021586522, -2.0738279175431775, -2.035638716458019, -1.9927659441109338, -1.9457153909630618, -1.8950054981262203, -1.84114906408726, -1.784640159735158, -1.725946803888971, -1.6655086707173627, -1.6037382829209077, -1.5410239234983443, -1.4777327569373566, -1.4142131576817298, -1.3507957854712294, -1.2877933872287226, -1.2254995891441254, -1.1641870744672924, -1.1041055567704112, -1.0454798983776208, -0.9885086282632807, -0.9333630118231537, -0.8801867343204834, -0.8290961890328122, -0.7801813121618619, -0.7335068774858172, -0.6891141507375549, -0.6470228025120766, -0.6072329851911165, -0.5697274906651508 ], [ -1.630206681521897, -1.682975761903429, -1.7348503007760812, -1.7854699590796856, -1.8344486950710825, -1.8813770882315441, -1.9258257411964328, -1.9673499402612302, -2.0054957428579914, -2.039807623866488, -2.0698377433770836, -2.0951567902930783, -2.115366207839927, -2.1301114254494777, -2.139095522093889, -2.142092550525403, -2.138959582523703, -2.1296464117622467, -2.1142017931013544, -2.0927751374193355, -2.0656127788730956, -2.033048369145235, -1.9954876893783986, -1.953389149754024, -1.9072422249358034, -1.8575466605899245, -1.8047951467835954, -1.7494612492958441, -1.6919930476504994, -1.632811660334826, -1.572313047949751, -1.5108712994867746, -1.4488418994423768, -1.3865640071649243, -1.3243613370972702, -1.2625416730987786, -1.2013953297203652, -1.141192995500814, -1.0821833958202522, -1.0245911414211388, -0.968615023903203, -0.9144269107641664, -0.8621712976303038, -0.8119655023006455, -0.7639004355383305, -0.7180418547122439, -0.6744319941927595, -0.6330914662522684, -0.5940213339610778, -0.557205269829837 ], [ -1.6030154023973961, -1.65450991605366, -1.705087732190567, -1.7543945750569911, -1.8020517578271724, -1.8476586401715287, -1.890796142554609, -1.9310314799298647, -1.9679242609629237, -2.001034059438601, -2.029929495366511, -2.054198759902262, -2.0734613804167563, -2.0873808560977523, -2.095677613174832, -2.09814154957425, -2.0946432800636057, -2.0851430729754123, -2.0696964107039326, -2.0484551456973983, -2.0216634241779845, -1.989647990408645, -1.9528032128387784, -1.911572123139909, -1.8664256856993264, -1.817843045083948, -1.766295321679272, -1.7122346169302713, -1.6560885735142925, -1.598259608081232, -1.5391271845432983, -1.479051341895886, -1.4183760044514861, -1.3574311483220878, -1.2965334598585452, -1.2359855646333933, -1.1760741789839868, -1.1170676493651022, -1.0592133374860324, -1.0027352288168543, -0.9478320300192, -0.8946759069836203, -0.8434119170651609, -0.7941581145302721, -0.7470062581289216, -0.7020230211942793, -0.659251593182393, -0.6187135622740128, -0.5804109772651075, -0.5443285000162659 ], [ -1.5739950588537996, -1.6241288018726134, -1.6733242631661218, -1.7212340143852343, -1.767487597253286, -1.8116941073929689, -1.853445808152621, -1.892322918822988, -1.9278997013543389, -1.9597519280313276, -1.9874657442004657, -2.010647841784908, -2.028936731464294, -2.04201474960179, -2.049620270884147, -2.051559433419494, -2.0477165356463916, -2.038062151700249, -2.022657958510654, -2.0016573144295844, -1.975300838059685, -1.943906678714269, -1.9078558803549717, -1.8675741411266307, -1.8235121224970838, -1.7761269197190879, -1.7258670924776416, -1.6731627628984618, -1.6184210282399252, -1.5620257731591005, -1.5043402664372911, -1.4457107992518115, -1.3864699438002743, -1.3269385549562083, -1.2674261935058324, -1.2082300851218233, -1.1496329949540807, -1.0919005032181255, -1.0352781526353914, -0.979988851955775, -0.9262308029188617, -0.8741761007841238, -0.8239700584726486, -0.7757312288648819, -0.7295520495408834, -0.6855000060511623, -0.6436191988757745, -0.6039322005848328, -0.5664420989540737, -0.5311346354019656 ], [ -1.54327673384934, -1.5919734202974358, -1.6397113613354455, -1.6861507314981643, -1.73093012747341, -1.773669267386093, -1.8139726881719367, -1.8514345670982864, -1.8856447701031227, -1.9161961864949704, -1.942693342502456, -1.9647621928923846, -1.9820608712835832, -1.9942910407952352, -2.001209336204065, -2.002638238877792, -1.9984755908253298, -1.9887018523467161, -1.973384165510962, -1.9526763449485973, -1.9268141374858347, -1.896105533769358, -1.8609165963534573, -1.8216541028602462, -1.7787470634886264, -1.7326295491836137, -1.6837270239225992, -1.632447519010369, -1.5791778083014685, -1.524283665412569, -1.468112640445408, -1.4109976865752016, -1.3532602838693455, -1.295212236291745, -1.237155857909202, -1.179382687494082, -1.1221711275915007, -1.0657835033552945, -1.0104630173654512, -0.956430986659081, -0.9038846289566487, -0.85299554630042, -0.803908953386959, -0.756743622056369, -0.7115924631826294, -0.6685236392683689, -0.6275820904812763, -0.5887913586205211, -0.5521556031212133, -0.5176617171565898 ], [ -1.5109984313030709, -1.5581919545307736, -1.60440789848329, -1.6493147562535848, -1.6925609468135625, -1.7337776160253422, -1.7725823990292273, -1.808584251966984, -1.8413894351200792, -1.8706086855543043, -1.8958655520264172, -1.9168057766962798, -1.933107498240083, -1.9444919236842582, -1.9507339793835436, -1.9516723156927558, -1.947217918719059, -1.937360494659305, -1.9221717652864547, -1.9018048884888907, -1.8764894489305983, -1.8465218989957934, -1.8122519719215524, -1.774066344564748, -1.7323714872907574, -1.6875779330910436, -1.6400879330092175, -1.5902876609608971, -1.5385440505533345, -1.4852053663524378, -1.430604029144024, -1.375060123337679, -1.318884316620558, -1.262379424103512, -1.2058403648594227, -1.1495526648390268, -1.093789907125087, -1.0388106248800568, -0.9848551113144508, -0.9321425305016957, -0.8808685936788818, -0.8312039471575341, -0.783293317309506, -0.7372553825206203, -0.69318329199632, -0.651145723537405, -0.6111883619860136, -0.573335681920352, -0.5375929279073489, -0.5039481996724842 ], [ -1.4773035393381213, -1.522938066915164, -1.5675782674859375, -1.6109016177740103, -1.6525670562392938, -1.6922178696630645, -1.7294855000713465, -1.7639943623348284, -1.7953677349830737, -1.8232347424576572, -1.847238383734982, -1.8670444790361067, -1.88235130452586, -1.8928995685330836, -1.8984822588193124, -1.8989537686386466, -1.8942376031893613, -1.8843318965331113, -1.8693119599740493, -1.849329175252341, -1.8246057856819375, -1.79542556034446, -1.762120899650701, -1.725057619940589, -1.6846192117117758, -1.6411925822361515, -1.5951570150864454, -1.546877337717995, -1.4967013164744527, -1.4449604228115476, -1.391972594044173, -1.338045532629733, -1.283479367399203, -1.2285679672561898, -1.1735986820771938, -1.118850670432439, -1.0645922097355405, -1.0110774751381975, -0.9585432528654795, -0.9072059652855868, -0.8572592681857516, -0.8088723641707802, -0.7621890767997059, -0.7173276553019414, -0.6743812300786178, -0.6334188115205839, -0.5944867141888874, -0.5576102901421213, -0.5227958647691805, -0.4900327823946363 ], [ -1.4423393019721336, -1.4863692158853465, -1.5293905341545926, -1.5710903217244327, -1.6111386539878023, -1.6491915709051805, -1.6848949066534766, -1.7178890682043253, -1.7478148070347217, -1.7743199840031516, -1.7970672664448133, -1.8157426182853746, -1.8300643499230371, -1.8397923886285978, -1.8447373187381708, -1.844768633430066, -1.8398215497371284, -1.8299016846982914, -1.815086900163013, -1.7955257319467783, -1.77143206314989, -1.7430761035249762, -1.7107722748131375, -1.674865182427514, -1.635715311028025, -1.5936862273753678, -1.549134791387174, -1.5024052040911597, -1.4538268615181587, -1.403715213869965, -1.3523743708720746, -1.3001001246445614, -1.247182313706673, -1.1939058780804688, -1.1405504029735103, -1.087388308773258, -1.0346820689250678, -0.9826809250364377, -0.9316175502272284, -0.881705027698857, -0.8331343990974942, -0.7860729242293416, -0.7406630967695387, -0.6970223871716967, -0.6552436348977686, -0.6153959844436685, -0.5775262488882709, -0.541660586043182, -0.50780638144438, -0.4759542459636048 ], [ -1.4062553292693523, -1.4486450265073731, -1.4900146611380285, -1.530061421914045, -1.5684670510166523, -1.6049008463379184, -1.6390234913299655, -1.67049176973454, -1.6989641923969416, -1.7241075197592195, -1.7456041052119011, -1.7631599111935166, -1.7765129634173435, -1.7854419126537535, -1.7897742743757115, -1.789393823574264, -1.784246548425997, -1.7743445308869585, -1.7597671498599303, -1.74065912374294, -1.7172251524237727, -1.6897212948426552, -1.6584436972498997, -1.6237157804562667, -1.5858753595299466, -1.545263255489031, -1.502214679962156, -1.4570540731699841, -1.4100933259379438, -1.361632649365191, -1.3119629572692446, -1.26136856531365, -1.2101292339855025, -1.1585209651981585, -1.1068153697452003, -1.055277755821222, -1.0041642993344237, -0.9537187418715323, -0.9041690474911845, -0.8557243716137556, -0.8085725890375364, -0.7628785200263157, -0.7187828998321698, -0.6764020654528148, -0.6358282850854078, -0.5971306280996588, -0.560356262187565, -0.5255320650910137, -0.4926664468332609, -0.46175129133215986 ], [ -1.369202171921518, -1.4099257430335737, -1.4496208347219894, -1.4879952193212254, -1.5247427423730242, -1.5595463529310907, -1.5920819109773483, -1.622022814176261, -1.6490454556154879, -1.6728354815162694, -1.6930947622865238, -1.7095489220180813, -1.721955192444118, -1.7301102712833243, -1.73385777800428, -1.7330948215175783, -1.727777137123657, -1.7179222319217584, -1.703610021420277, -1.684980570345619, -1.6622287877255955, -1.6355962715961636, -1.6053609175754664, -1.5718253164818665, -1.5353052498294424, -1.4961196298635733, -1.4545829628062221, -1.4110008841215547, -1.3656686688447912, -1.3188720490261276, -1.2708893281854992, -1.2219937291473884, -1.1724551060474402, -1.1225404895937654, -1.072513300523402, -1.0226313702021628, -0.9731441034092958, -0.9242892007533738, -0.8762893478894551, -0.829349208195711, -0.7836529568405679, -0.7393624921855431, -0.6966163710710491, -0.6555294453524614, -0.6161931296956776, -0.5786762030316589, -0.5430260343797462, -0.5092701237153319, -0.4774178562482124, -0.4474623806571164 ], [ -1.3313299817101172, -1.3703707863775394, -1.4083779186538488, -1.4450701135548463, -1.4801536599125282, -1.5133254383439643, -1.5442766840806401, -1.5726975029198735, -1.5982821379269845, -1.6207349431507174, -1.6397769680482934, -1.6551529931520115, -1.666638785796005, -1.6740482683501245, -1.6772402165476226, -1.6761240411366254, -1.670664164675923, -1.6608825031373673, -1.646858618599771, -1.6287272443660816, -1.6066731099323177, -1.5809233046339806, -1.5517377789855986, -1.5193989188580361, -1.484201341604085, -1.4464430640033517, -1.406418939522844, -1.3644168000170207, -1.3207161864100934, -1.2755890694070475, -1.2293016708708515, -1.182116450304129, -1.1342934880918347, -1.0860907924680296, -1.037763381546853, -0.9895612660161077, -0.9417266389043775, -0.8944906581195807, -0.848070201835786, -0.8026649144183853, -0.7584547703006167, -0.7155982882424885, -0.6742314439109238, -0.6344672624066184, -0.5963960262392949, -0.5600860067467339, -0.5255846146895009, -0.49291986481891414, -0.46210205591930453, -0.4331255790742653 ], [ -1.292787274598094, -1.3301374337783614, -1.3664520524189654, -1.4014611238532404, -1.4348836225227308, -1.466430529565009, -1.495808529929581, -1.5227243965446833, -1.546890046753056, -1.5680282164970416, -1.5858786484402871, -1.6002046322528893, -1.6107996709036598, -1.6174939799693704, -1.6201604637941154, -1.6187197614963096, -1.6131439289618508, -1.6034583346104387, -1.589741413100953, -1.5721220567661531, -1.5507746358187569, -1.5259119145299138, -1.4977764354405223, -1.466631213787647, -1.4327507405375997, -1.3964132662381807, -1.3578951045339431, -1.3174672944349928, -1.2753944950396507, -1.2319355807713177, -1.1873451612948533, -1.1418752111032486, -1.0957761362640237, -1.0492968608247593, -1.0026837997317986, -0.9561788297672201, -0.9100165350008927, -0.8644210788765296, -0.8196030539061305, -0.7757566059301774, -0.7330570486035171, -0.6916590964167534, -0.6516957655497189, -0.6132779288395828, -0.5764944665262615, -0.5414129271547236, -0.5080806001837165, -0.4765258999483263, -0.4467599662315491, -0.4187783968955141 ], [ -1.253719808549031, -1.2893796324626225, -1.3240054050322234, -1.3573385893651881, -1.38911099157052, -1.4190477547226878, -1.4468709706559064, -1.4723039136798632, -1.4950758706835623, -1.514927504284093, -1.5316166398624045, -1.5449243146473202, -1.5546608698748523, -1.560671809479119, -1.5628430967300526, -1.5611055219411005, -1.5554377604182457, -1.5458677627434192, -1.5324721922063365, -1.5153737566657148, -1.4947364758043753, -1.47075916586385, -1.4436676782193365, -1.4137066415526864, -1.3811315670731656, -1.3462021317605624, -1.3091772421611947, -1.2703121383763956, -1.2298574073218767, -1.1880594366837076, -1.1451616381118366, -1.1014057356503435, -1.0570325360384052, -1.0122818157536038, -0.9673912064570183, -0.9225941764809031, -0.8781173550113628, -0.8341775169970895, -0.7909785496634467, -0.7487086757008022, -0.7075381360329448, -0.6676174557039225, -0.6290763432965765, -0.5920232149487525, -0.556545291183926, -0.5227091878711648, -0.49056190929113275, -0.4601321484007058, -0.43143180383893265, -0.40445763227334175 ], [ -1.2142695837752902, -1.2482469540528984, -1.2811950896356945, -1.312867051934027, -1.3430075319949728, -1.3713557948335646, -1.397649188229451, -1.4216272100101792, -1.4430360992162536, -1.4616338809229146, -1.4771957523216486, -1.4895196502904011, -1.4984317906391906, -1.5037919205074153, -1.5054979837321596, -1.5034898720110084, -1.4977519317223935, -1.4883139278023227, -1.4752502419387168, -1.458677208624816, -1.438748667160865, -1.4156500152410267, -1.3895912589909212, -1.3607997200926047, -1.3295131338567898, -1.2959738163572496, -1.2604243879308987, -1.223105248212101, -1.1842536720630332, -1.1441041165629315, -1.1028891618753787, -1.060840482370716, -1.0181893460434723, -0.9751663256519616, -0.9320001173355285, -0.8889155513438992, -0.846131012772381, -0.8038555568215408, -0.7622860092747876, -0.7216043048104731, -0.6819752525687446, -0.6435448471009022, -0.6064391758345832, -0.5707639187907998, -0.5366043954620964, -0.5040260874207879, -0.4730755514825721, -0.4437816344184832, -0.4161569034844791, -0.3901992149059845 ], [ -1.1745739691243038, -1.2068836919748311, -1.238172239182444, -1.2682043190892605, -1.2967374734779695, -1.3235249558567825, -1.348319121835729, -1.370875316934855, -1.390956219814262, -1.4083365657001639, -1.4228081363620888, -1.4341848608856844, -1.4423078282827564, -1.4470499725906927, -1.4483201589152266, -1.4460663817354746, -1.440277792792848, -1.4309853134567476, -1.4182606626783114, -1.402213749504486, -1.38298853401125, -1.3607576368657537, -1.335716147743561, -1.3080752094340646, -1.2780559998473244, -1.245884672589467, -1.2117886473704464, -1.1759943940592434, -1.1387265837643994, -1.100208250736459, -1.0606614718794056, -1.0203080496576982, -0.9793697695948612, -0.9380679600887926, -0.8966222635855164, -0.855248691943922, -0.8141571569050416, -0.7735487280761766, -0.7336128795990082, -0.6945249556438511, -0.6564440302211008, -0.6195112734493182, -0.5838488756352633, -0.5495595292664862, -0.5167264304321629, -0.485413735598756, -0.45566739565305747, -0.4275162844200361, -0.4009735409902151, -0.3760380518579465 ], [ -1.134764954826626, -1.1654281002819393, -1.1950812393305998, -1.2235007005176548, -1.2504567614920865, -1.275716446704667, -1.2990467864136688, -1.3202185150436725, -1.3390101610988618, -1.355212450181162, -1.3686329080410493, -1.3791005136181815, -1.3864702153113244, -1.390627090988679, -1.3914899084552663, -1.3890138342962763, -1.3831920519740803, -1.374056091322369, -1.3616747458908822, -1.3461515625867224, -1.327621023610879, -1.306243688791873, -1.2822007029716533, -1.2556881680991139, -1.2269119043885761, -1.1960830616293627, -1.163414892844771, -1.1291207939525674, -1.0934134895350522, -1.056505056916244, -1.018607369281619, -0.9799325222779507, -0.9406928801291595, -0.9011005088102598, -0.8613659176671327, -0.8216961718532756, -0.7822925417103146, -0.7433479113788398, -0.705044179533209, -0.6675498603539527, -0.6310180461414281, -0.5955848372439927, -0.561368290332747, -0.5284678890407182, -0.4969645048170337, -0.4669207911939477, -0.43838194053525414, -0.41137672686494753, -0.3859187594129476, -0.3620078770006705 ], [ -1.0949685289054527, -1.1240117691929445, -1.1520591113963057, -1.1788984079335658, -1.204312484700911, -1.2280818457058016, -1.249987790338642, -1.2698159153838429, -1.2873599497153037, -1.3024258416348709, -1.3148359879596667, -1.324433461928105, -1.3310860663157662, -1.3346900123314123, -1.3351730083485789, -1.3324965405413562, -1.3266571455348222, -1.3176865181297002, -1.305650367851443, -1.2906460354461078, -1.2727989976303777, -1.2522585114840206, -1.2291927583624362, -1.2037839171397415, -1.1762236064007352, -1.1467090731048608, -1.1154403755348106, -1.0826186333548689, -1.0484452334629117, -1.0131217271020239, -0.9768500634997308, -0.9398327929461759, -0.9022729321393861, -0.8643732946510816, -0.8263352191932035, -0.788356748930408, -0.7506304055676862, -0.713340752719622, -0.6766619548527636, -0.6407555187120214, -0.6057683646533651, -0.5718313267375513, -0.539058131747012, -0.5075448645222214, -0.477369893388098, -0.4485942058939473, -0.4212620910091034, -0.3954020978124987, -0.37102820075243237, -0.348141105906109 ], [ -1.0553041722018264, -1.082759130217758, -1.1092350357893286, -1.1345311059279035, -1.15844246305094, -1.180762736238013, -1.2012870290056445, -1.2198152210446864, -1.2361555490254126, -1.2501283862915784, -1.261570114086781, -1.2703369495736414, -1.2763085707484294, -1.2793913586287393, -1.2795210667199481, -1.276664731136694, -1.2708216562134593, -1.2620233534357914, -1.2503323774082198, -1.2358400891522616, -1.2186634772406877, -1.1989412686036185, -1.176829646154788, -1.1524979407651461, -1.1261246645767276, -1.0978941936802566, -1.0679942960477122, -1.0366145543482073, -1.0039455820345005, -0.9701788065401903, -0.9355065207518488, -0.9001218947690995, -0.8642186900232334, -0.8279905095544083, -0.7916295272929523, -0.7553247417149467, -0.7192598776241034, -0.6836111053099718, -0.6485447587188345, -0.6142152194587506, -0.5807631004168982, -0.5483138208081091, -0.5169766214362761, -0.48684403035732193, -0.45799175811884507, -0.43047897945357794, -0.40434894443116787, -0.37962985547843686, -0.3563359458255706, -0.3344686982296381 ], [ -1.015884465186432, -1.0417870819966244, -1.0667300047104897, -1.090523599935117, -1.112974979779809, -1.1338904916081942, -1.153078531077663, -1.1703526424519213, -1.1855348497278473, -1.1984591395159547, -1.2089749929512243, -1.2169508408406713, -1.222277296047826, -1.22487000265518, -1.2246719361160876, -1.2216549960094873, -1.215820756466275, -1.2072002811221678, -1.1958529698094962, -1.1818644802489713, -1.1653438528882736, -1.1464200497592767, -1.1252381846605912, -1.1019557573434482, -1.0767391970012004, -1.0497609657264513, -1.0211973763240447, -0.9912271570323139, -0.9600306717883765, -0.9277896036783185, -0.8946868508498171, -0.8609063775457814, -0.8266328046617968, -0.7920506004683565, -0.7573428233609523, -0.722689455257284, -0.6882654317603562, -0.6542385156434652, -0.6207671727318927, -0.5879985982257745, -0.5560670141239908, -0.5250923224497525, -0.4951791612292423, -0.4664163756095425, -0.43887688811822845, -0.4126179311301019, -0.38768159109256173, -0.364095607123605, -0.34187436497664314, -0.3210200296907175 ], [ -0.976814798466285, -1.0012047268258704, -1.0246565919288118, -1.0469916467800005, -1.068028640285258, -1.0875861895047536, -1.1054854350906973, -1.1215529415289176, -1.1356237852793098, -1.1475447539166532, -1.1571775590150235, -1.1644019463750954, -1.16911857134683, -1.1712514969915184, -1.1707501715148023, -1.167590751671653, -1.1617766631392212, -1.153338328520026, -1.1423320481305785, -1.1288380848313275, -1.1129580754606172, -1.0948119584697704, -1.0745346586075746, -1.052272793542652, -1.0281816557182804, -1.0024226730783212, -0.9751614701416578, -0.9465665497220163, -0.9168085142668752, -0.8860596640445888, -0.8544937626503324, -0.8222857556259906, -0.7896112627252314, -0.7566457275388068, -0.7235631842366191, -0.6905346742835515, -0.6577264038119053, -0.6252977680138717, -0.5933993812051119, -0.5621712432590096, -0.5317411506236988, -0.5022234295461867, -0.47371803625095554, -0.4463100380826599, -0.420069463837182, -0.39505149200799006, -0.37129693265104247, -0.3488329514352171, -0.3276739821877983, -0.30782277570204 ], [ -0.9381931780962339, -0.9611132072133968, -0.9831188270664422, -1.0040418732040117, -1.0237123411629017, -1.0419606372456924, -1.0586200756530224, -1.0735295821934436, -1.0865365481712386, -1.097499760548307, -1.1062923171708767, -1.1128044202228842, -1.1169459289886077, -1.1186485466756029, -1.117867517832686, -1.1145827250466642, -1.1087990978325262, -1.1005462835757038, -1.0898775789764366, -1.0768681773806084, -1.06161284685114, -1.0442232077980407, -1.024824818163589, -1.0035542897929561, -0.9805566457321142, -0.955983083760465, -0.929989241727196, -0.9027339764596691, -0.8743785853008414, -0.845086333256706, -0.8150221113276406, -0.7843520483702431, -0.7532429276664996, -0.7218613116013741, -0.6903723410369632, -0.658938237334123, -0.6277165842837555, -0.5968584984911762, -0.566506808545665, -0.5367943578151928, -0.507842527403502, -0.479760049967067, -0.45264215664491014, -0.42657007220198906, -0.4016108502267498, -0.37781752221048004, -0.3552295219124605, -0.3338733392146659, -0.31376335490443097, -0.294902808523813 ], [ -0.9001101164041072, -0.9216056316076355, -0.9422121618881121, -0.9617717881799126, -0.9801253335495221, -0.9971144903767054, -1.0125841603902388, -1.0263849672246987, -1.0383758863878934, -1.048426922358663, -1.0564217480046307, -1.0622602089757047, -1.0658605868456879, -1.0671615114104158, -1.0661234166257092, -1.062729447888611, -1.0569857518597012, -1.0489211138972927, -1.0385859510490005, -1.0260507172047386, -1.011403826307886, -0.9947492427155851, -0.9762039174814829, -0.9558952588507724, -0.9339588104410846, -0.9105362713259662, -0.885773933328133, -0.8598215415887988, -0.8328315170508944, -0.8049584261279344, -0.7763585529203687, -0.7471894271600206, -0.717609184919965, -0.6877756821799075, -0.6578453336914072, -0.6279717009243504, -0.5983038947545904, -0.5689848858184099, -0.5401498265646464, -0.5119244854707258, -0.4844238791207981, -0.4577511661560324, -0.4319968426475943, -0.4072382546077433, -0.3835394225124519, -0.3609511561918657, -0.3395114267091126, -0.3192459547032881, -0.30016897152509137, -0.2822841095479173 ], [ -0.8626485989642636, -0.8827670785876875, -0.9020235165082618, -0.9202698755711708, -0.9373573660470302, -0.9531384487580962, -0.967469020866132, -0.9802107441412592, -0.9912334625122506, -1.0004176426825462, -1.0076567595508037, -1.0128595383222565, -1.0159519589749397, -1.0168789277143433, -1.015605525734824, -1.012117759257222, -1.0064227570982756, -0.9985483926830201, -0.9885423449051602, -0.9764706535519847, -0.9624158656571056, -0.9464749035492667, -0.9287568076557673, -0.9093805122818016, -0.8884727977823734, -0.8661665282297857, -0.8425992341315272, -0.8179120426615931, -0.7922489029552351, -0.7657560109321887, -0.7385813141899193, -0.7108739760573878, -0.682783697573264, -0.6544598315516181, -0.6260502661605607, -0.5977000982571959, -0.5695501521571491, -0.5417354231585593, -0.5143835354435721, -0.48761330189743146, -0.4615334615708131, -0.4362416524169219, -0.4118236560215476, -0.3883529302435358, -0.3658904271248353, -0.3444846783931419, -0.32417211989358585, -0.3049776193017566, -0.2869151680567663, -0.26998869797180003 ], [ -0.8258841185391155, -0.8446746692059335, -0.8626313940946897, -0.879615754663523, -0.8954888938183587, -0.9101135159740013, -0.9233559228027127, -0.9350881652238552, -0.9451902608159695, -0.953552414774447, -0.9600771726838075, -0.9646814258076497, -0.9672981855512636, -0.9678780445028992, -0.9663902481929438, -0.962823315303891, -0.957185164838534, -0.9495027361978604, -0.9398211206611989, -0.9282022576436324, -0.9147232824806282, -0.899474639783973, -0.8825580930067269, -0.8640847630022669, -0.8441733141847265, -0.8229483771771169, -0.800539255317855, -0.7770789154074327, -0.7527032183885697, -0.7275503108664997, -0.7017600792185035, -0.6754735670795273, -0.6488322731525276, -0.621977275321071, -0.5950481626993689, -0.5681817928665402, -0.5415109214124331, -0.5151627713230135, -0.48925761917039157, -0.46390747410163924, -0.43921491625039255, -0.41527214618426345, -0.3921602792143126, -0.3699489003393258, -0.34869587917098943, -0.3284474305904471, -0.30923839668960085, -0.291092718812461, -0.2740240649375181, -0.2580365767296333 ], [ -0.7898847671875042, -0.8073976977625585, -0.824106053476711, -0.8398803971950733, -0.8545913418381543, -0.8681113095948274, -0.8803164229255204, -0.8910884891046287, -0.9003170301978025, -0.9079013010668141, -0.9137522300459913, -0.917794211288683, -0.9199666754741338, -0.9202253676295096, -0.9185432681528505, -0.9149111063033653, -0.9093374345183801, -0.9018482562637282, -0.8924862281900522, -0.8813094866892949, -0.8683901762595811, -0.8538127786722675, -0.8376723541807867, -0.8200728061439267, -0.8011252672600735, -0.7809466800664888, -0.7596586096906753, -0.7373862882262614, -0.7142578537538539, -0.6904037189278106, -0.6659559886780066, -0.641047845924513, -0.6158128374238082, -0.5903840156055452, -0.5648929215747077, -0.5394684239930518, -0.5142354536698955, -0.48931369121707236, -0.4648162736710657, -0.4408485858256771, -0.41750719465184793, -0.39487897279374773, -0.37304044207670695, -0.35205735237348845, -0.33198449671662844, -0.312865751330099, -0.2947343198646829, -0.2776131546973367, -0.2615155245122657, -0.2464456961342577 ], [ -0.7547113782558984, -0.7709978120000371, -0.7865097299871522, -0.8011263906621032, -0.814727411670878, -0.8271944114504162, -0.8384127616068782, -0.8482734133772535, -0.8566747529984329, -0.8635244330569685, -0.86874112057994, -0.8722560985682233, -0.8740146567289669, -0.8739772101519259, -0.8721200922535174, -0.8684359808333968, -0.862933933434634, -0.8556390296364607, -0.8465916419899617, -0.8358463818682683, -0.8234707888033516, -0.8095438489155633, -0.7941544370032065, -0.7773997757122204, -0.7593839932339475, -0.7402168391756627, -0.7200125893873345, -0.6988891388352653, -0.6769672520476262, -0.6543699179391245, -0.6312217434539455, -0.6076483199990272, -0.5837755074042466, -0.5597285995066726, -0.5356313594979202, -0.5116049376119697, -0.4877667047776457, -0.46422905085008936, -0.4410982037018515, -0.4184731258657526, -0.3964445396812666, -0.37509412172402845, -0.35449389461578995, -0.3347058309149369, -0.3157816711278283, -0.29776294697373074, -0.28068119245577583, -0.26455831923133555, -0.2494071291422647, -0.23523193527167097 ], [ -0.7204177105738427, -0.7355292344810507, -0.7498968958252268, -0.7634082388242769, -0.7759514224818951, -0.7874167485786516, -0.7976982821357914, -0.806695529445255, -0.8143151315304771, -0.820472524508495, -0.8250935133957672, -0.8281157031323015, -0.8294897306949904, -0.8291802457676132, -0.8271665949975535, -0.8234431765745929, -0.8180194474774747, -0.8109195844933467, -0.8021818206932736, -0.791857499567173, -0.7800099072027531, -0.7667129563202756, -0.7520498024798308, -0.736111470879073, -0.718995561471808, -0.7008050816355929, -0.6816474316524381, -0.661633542281135, -0.640877139650575, -0.6194940943140614, -0.5976018013188605, -0.5753185377745903, -0.5527627531244091, -0.5300522630645456, -0.5073033377249699, -0.4846296948902058, -0.4621414266235704, -0.4399439004269968, -0.41813668288290995, -0.39681253451723986, -0.3760565201909092, -0.35594527101191775, -0.3365464231205588, -0.31791824723779305, -0.3001094718362157, -0.28315929310818977, -0.2670975571187195, -0.25194509387166797, -0.2377141794590404, -0.22440910080004295 ], [ -0.6870506678290393, -0.701039017713277, -0.7143145521785443, -0.726772691433988, -0.7383096782292276, -0.7488239968776247, -0.7582178688967078, -0.766398792325507, -0.7732810856522176, -0.778787392063889, -0.7828500959591929, -0.7854126019307917, -0.7864304272915379, -0.7858720631736282, -0.7837195665848125, -0.7799688566086633, -0.7746297018753852, -0.7677254027631597, -0.7592921893191564, -0.7493783730043205, -0.7380433051813307, -0.7253562058503631, -0.7113949308242036, -0.6962447432567598, -0.6799971460328078, -0.6627488159076526, -0.6446006604330143, -0.625656997415331, -0.6060248370836387, -0.5858132322345392, -0.5651326535263121, -0.5440943467625439, -0.5228096360306801, -0.5013891493192429, -0.4799419592843063, -0.4585746484338187, -0.4373903226454615, -0.41648760776699867, -0.3959596700546144, -0.3758933022321389, -0.3563681135645065, -0.33745585557033375, -0.3192199061066644, -0.3017149247918023, -0.2849866831654976, -0.26907206443178233, -0.25399922060937696, -0.23978786967569288, -0.22644971185729335, -0.2139889424539987 ], [ -0.6546505467666928, -0.6675673263765886, -0.679802546256528, -0.691259096243999, -0.7018408541138764, -0.7114540006979604, -0.7200083979935816, -0.7274189993825044, -0.7336072559248226, -0.7385024784715275, -0.7420431125249254, -0.7441778818528259, -0.7448667582809182, -0.7440817192072748, -0.7418072613982076, -0.7380406494922374, -0.7327918900080224, -0.7260834358170414, -0.717949640940486, -0.7084359997926695, -0.6975982170715862, -0.6855011628532628, -0.672217770803514, -0.6578279350188014, -0.6424174528272284, -0.6260770477552511, -0.608901490452399, -0.5909888179324675, -0.5724396355553362, -0.5533564740623791, -0.5338431673843589, -0.5140042166123796, -0.49394411114674563, -0.47376658834354746, -0.45357382603607954, -0.43346557593272106, -0.413538258056918, -0.39388404554855483, -0.3745899743998101, -0.35573711384914763, -0.33739983058996537, -0.31964517446144214, -0.30253240588397545, -0.2861126770103777, -0.2704288703021148, -0.2555155907228689, -0.2413993014505934, -0.22809858819899387, -0.21562453397077708, -0.20398118425290646 ], [ -0.6232513085181347, -0.635147740768814, -0.6463939072439309, -0.656899767289346, -0.6665763963772136, -0.6753372026675026, -0.6830991949253784, -0.689784273014171, -0.6953205078704472, -0.6996433744929716, -0.7026968994418505, -0.7044346840457496, -0.7048207663059751, -0.7038302886246401, -0.7014499450754343, -0.6976781908736234, -0.6925252076214024, -0.6860126301529921, -0.6781730534485442, -0.6690493499724666, -0.6586938376525522, -0.6471673453315785, -0.6345382249182341, -0.6208813571058486, -0.6062771904833456, -0.5908108428782275, -0.5745712802243074, -0.5576505739746382, -0.5401432250944893, -0.5221455328083775, -0.5037549808765083, -0.4850696138310767, -0.46618738007367166, -0.44720542702773736, -0.428219344133408, -0.40932236062475014, -0.3906045150997144, -0.3721518215963374, -0.35404546144991444, -0.33636103139741613, -0.3191678764700562, -0.3025285317785503, -0.28649829114722714, -0.2711249135390724, -0.25644847110704394, -0.242501336131708, -0.22930829849992673, -0.21688680099563862, -0.20524727659767683, -0.19439357016725478 ], [ -0.5928808679968219, -0.6038075762992796, -0.6141151959690182, -0.6237203642862947, -0.6325409304245297, -0.6404970789514127, -0.6475124948221624, -0.6535155431729838, -0.6584404336363265, -0.6622283362330851, -0.6648284144881192, -0.6661987415865317, -0.6663070674107076, -0.6651314083496674, -0.6626604378915713, -0.6588936640519594, -0.6538413892920627, -0.6475244591495931, -0.6399738165298737, -0.6312298885197283, -0.6213418406557707, -0.6103667388395231, -0.5983686608007589, -0.5854177967993724, -0.5715895732440495, -0.5569638237459098, -0.5416240209600965, -0.525656570885181, -0.5091501606951857, -0.4921951431307027, -0.474882936029837, -0.45730541520962065, -0.43955428243339156, -0.4217203968451749, -0.4038930668191971, -0.3861593082750995, -0.3686030838190909, -0.35130454352690677, -0.3343392921162617, -0.317777708429399, -0.30168434171696357, -0.2861174056382677, -0.27112838580183585, -0.256761770754937, -0.2430549102395141, -0.23003799880567488, -0.21773417790579352, -0.20615974562507033, -0.19532446033884587, -0.1852319228113316 ], [ -0.5635613968930234, -0.5735682145153933, -0.5829868637910238, -0.5917402787422875, -0.5997526730288268, -0.6069505759296246, -0.613263901509162, -0.6186270263170542, -0.6229798480057086, -0.6262687951708419, -0.6284477578077742, -0.6294789082905761, -0.6293333849258049, -0.6279918140235681, -0.625444652055793, -0.6216923366681177, -0.6167452437289254, -0.6106234567058353, -0.6033563637586664, -0.5949821062205081, -0.5855469087648552, -0.5751043257649512, -0.5637144395785844, -0.5514430444870204, -0.538360844924559, -0.524542689021826, -0.5100668492948797, -0.4950143527468186, -0.47946835399261356, -0.46351353842983356, -0.44723553879538447, -0.43072034805045845, -0.41405371428845394, -0.3973205086608218, -0.3806040642203633, -0.36398549098603006, -0.34754297936729206, -0.3313511094722291, -0.3154801871894657, -0.299995629047475, -0.2849574168039256, -0.27041963984077966, -0.2564301392348969, -0.24303026239827874, -0.23025473197944912, -0.2181316277496036, -0.20668247581634203, -0.1959224359398215, -0.18586057508142884, -0.17650021360433443 ], [ -0.5353096363447074, -0.5444454417408625, -0.5530236168431684, -0.5609730230287874, -0.5682238450380463, -0.5747085449350378, -0.5803628423000813, -0.5851266979712809, -0.5889452762141755, -0.5917698586005795, -0.5935586823538888, -0.5942776766728467, -0.593901072730373, -0.5924118667254064, -0.5898021205016449, -0.5860730906590983, -0.5812351844478709, -0.5753077485757089, -0.5683187047865333, -0.560304053002678, -0.5513072682881526, -0.5413786212828455, -0.5305744526516514, -0.5189564303218583, -0.506590813999332, -0.493547745144722, -0.47990057303252187, -0.46572521968148695, -0.4510995793619894, -0.43610294297641616, -0.4208154345392917, -0.40531744656011826, -0.38968906325653263, -0.3740094647294745, -0.35835631077480257, -0.34280510900807837, -0.3274285775783158, -0.31229601722060363, -0.29747271025814914, -0.2830193651925538, -0.2689916247549158, -0.2554396529792833, -0.24240781339081297, -0.22993444622622827, -0.2180517481731571, -0.20678575382156705, -0.19615641417469687, -0.18617776437706757, -0.17685817039639729, -0.1682006427710242 ], [ -0.5081372158570542, -0.5164497919345684, -0.5242347823241451, -0.5314266192402016, -0.5379610815815126, -0.543776172254698, -0.5488130159502507, -0.5530167565630633, -0.5563374314548323, -0.558730798549216, -0.5601590920245587, -0.560591683283684, -0.5600056260432348, -0.5583860678286339, -0.5557265148190049, -0.5520289426816566, -0.5473037524675477, -0.5415695773935316, -0.5348529529060781, -0.5271878682466967, -0.5186152222691004, -0.5091822090187792, -0.4989416592540715, -0.4879513625577463, -0.4762733911089412, -0.463973440970871, -0.4511202005390952, -0.4377847493748891, -0.4240399848422166, -0.40996006951013275, -0.39561988970766393, -0.38109451517349735, -0.3664586513585173, -0.35178607925315597, -0.33714908204048966, -0.3226178627227103, -0.3082599614372882, -0.2941396848775987, -0.2803175626470502, -0.266849846303134, -0.2537880662931238, -0.24117866012731137, -0.22906268227753301, -0.21747560279317923, -0.20644719786271404, -0.19600153185113312, -0.18615702698172698, -0.17692661399442977, -0.16831795491354995, -0.16033372753272424 ], [ -0.48205097548605746, -0.4895868908470402, -0.49662467401595733, -0.5031039851541786, -0.5089658372587346, -0.5141534020671672, -0.5186128316424292, -0.5222940765993553, -0.5251516803102781, -0.5271455275358686, -0.5282415259252482, -0.5284121998405749, -0.5276371780596714, -0.525903560101424, -0.5232061501237897, -0.5195475523902511, -0.5149381279147022, -0.5093958177158256, -0.502945843709244, -0.4956203031764681, -0.4874576765272298, -0.47850227034222215, -0.46880361820269223, -0.4584158605160211, -0.44739712157372713, -0.4358088977795572, -0.42371546588517284, -0.41118331480595227, -0.3982805998203879, -0.3850766142718536, -0.37164127171750616, -0.35804459100915764, -0.3443561779965275, -0.33064470013549174, -0.316977353804481, -0.3034193280282629, -0.2900332720195218, -0.27687877698997476, -0.2640118847055035, -0.2514846360789692, -0.23934467269473092, -0.22763490266672426, -0.21639323987961212, -0.20565242273952722, -0.1954399153712938, -0.18577789102394104, -0.1766832945186747, -0.16816797806461992, -0.16023890278271447, -0.15289839686242934 ], [ -0.45705328869438633, -0.4638577989618299, -0.4701929546260458, -0.47600331502969373, -0.481234784207325, -0.4858353503853532, -0.48975583724816973, -0.49295064958905954, -0.4953784946483112, -0.4970030598005024, -0.4977936274150778, -0.497725608773528, -0.4967809809307243, -0.4949486133432712, -0.4922244748697596, -0.4886117162106679, -0.48412062775541265, -0.4787684778270551, -0.4725792410962809, -0.46558323109361954, -0.45781665391975246, -0.4493211021433773, -0.4401430082996748, -0.4303330763223646, -0.419945706787633, -0.40903842831290915, -0.397671343267088, -0.38590659162734664, -0.3738078328919582, -0.36143974290025627, -0.34886752056378156, -0.33615639904304007, -0.3233711567814541, -0.31057562581623455, -0.2978321975678404, -0.2852013294246486, -0.27274105843934193, -0.2605065309402338, -0.24854955854187444, -0.23691821175016847, -0.22565646206780476, -0.21480388230427405, -0.20439541285842677, -0.19446119930030414, -0.18502650388152764, -0.17611169088462353, -0.1677322831815734, -0.15989908516253026, -0.15261836541567575, -0.145892091236985 ], [ -0.433142383633059, -0.43925935106550706, -0.44493499291304994, -0.4501184533387921, -0.45476020129632255, -0.4588127084073025, -0.46223113541850647, -0.46497401139884353, -0.46700388877447296, -0.46828795685757796, -0.46879859680297453, -0.4685138619976438, -0.46741786977920496, -0.46550109306402354, -0.46276054385671594, -0.4591998445558382, -0.4548291872486746, -0.44966518552910806, -0.44373062746922876, -0.43705414191095315, -0.429669792924677, -0.4216166188744167, -0.4129381328931109, -0.40368180068850634, -0.39389850958522965, -0.38364203980730194, -0.3729685455707423, -0.36193605000490336, -0.3506039546817965, -0.33903256198460907, -0.3272826069669219, -0.31541479488095614, -0.30348934116802095, -0.2915655122425621, -0.27970116758211994, -0.26795230611207266, -0.25637262228399316, -0.2450130792673676, -0.23392150805970824, -0.22314224192583543, -0.21271579536485707, -0.20267859583255166, -0.19306277485200019, -0.18389602310802267, -0.17520151184352672, -0.16699788055318843, -0.15929928877347788, -0.1521155278304659, -0.14545218682006988, -0.13931086590717412 ], [ -0.4103126609046879, -0.41578449059901357, -0.4208422138657575, -0.4254392598334048, -0.429530352987167, -0.43307213395862554, -0.43602378632035954, -0.4383476549727694, -0.4400098408566555, -0.4409807564361592, -0.4412356267544737, -0.44075492192053634, -0.43952470865193405, -0.43753691094321734, -0.43478947296254455, -0.4312864207616969, -0.4270378231226156, -0.4220596556231849, -0.41637357552704646, -0.4100066181237856, -0.4029908274294298, -0.395362835516197, -0.38716340506955205, -0.3784369490621512, -0.36923103978992844, -0.35959591714028816, -0.3495840031448436, -0.33924942694780436, -0.328647561641343, -0.31783457228728507, -0.3068669730854282, -0.2958011911769566, -0.2846931349787317, -0.2735977661044998, -0.26256867562388986, -0.25165766736406703, -0.24091435288279373, -0.23038576437151936, -0.2201159928785389, -0.2101458597486584, -0.20051262901596456, -0.19124976769820035, -0.18238675962578665, -0.17394897673886467, -0.16595760986533825, -0.15842965901320805, -0.15137798131647473, -0.14481139308183888, -0.1387348209756788, -0.13314949631530182 ], [ -0.388555006127946, -0.3934225972101726, -0.39790244047073164, -0.4019519646092301, -0.40552985665525865, -0.408596629947906, -0.4111151960578404, -0.4130514275537681, -0.4143746978315018, -0.4150583840533869, -0.41508031965300185, -0.4144231838820934, -0.41307481751540387, -0.41102845604527105, -0.4082828744078856, -0.40484244035782346, -0.4007170768775934, -0.39592213727260894, -0.39047819964096864, -0.3844107900032693, -0.37775004533742673, -0.3705303289381653, -0.3627898108302611, -0.35457002540822435, -0.3459154171418931, -0.33687288324676, -0.32749131990715385, -0.31782117623360207, -0.3079140179129243, -0.29782210071826354, -0.28759795286969103, -0.2772939647707192, -0.2669619848896213, -0.25665292141260465, -0.2464163505977216, -0.23630013428700125, -0.22635005055759128, -0.21660944279647232, -0.2071188933974758, -0.19791592869459207, -0.1890347616196808, -0.18050607792893059, -0.17235687075506456, -0.16461032682419374, -0.15728576605844224, -0.15039863460106284, -0.14396054967222982, -0.13797939319101282, -0.13245944985644542, -0.12740158441346994 ], [ -0.36785709585355086, -0.372159806158591, -0.3761002258327011, -0.3796395120509205, -0.3827400373784715, -0.38536590895896383, -0.3874834900086247, -0.3890619117250982, -0.39007356317415365, -0.3904945466364529, -0.3903050863309564, -0.3894898794067845, -0.38803837960572374, -0.38594500600132786, -0.38320927163880847, -0.37983582961563744, -0.37583443700786245, -0.3712198398876797, -0.3660115853096686, -0.36023376838550347, -0.3539147242610057, -0.34708667583719066, -0.33978534837584295, -0.33204956170457267, -0.3239208096623545, -0.31544283484487523, -0.3066612048138595, -0.2976228939489187, -0.2883758732712961, -0.2789687090571433, -0.2694501700338712, -0.2598688424976545, -0.25027275280657957, -0.24070899732084983, -0.23122338084722827, -0.2218600658276525, -0.21266123570649376, -0.2036667769436583, -0.19491398487031886, -0.18643729891685534, -0.17826807263784694, -0.17043438342861417, -0.16296088592671631, -0.15586871190776275, -0.1491754181228625, -0.1428949820942471, -0.13703784448852596, -0.13161099540967935, -0.12661810086181358, -0.12205966476743657 ] ], "zauto": true, "zmax": 2.3873608649055242, "zmin": -2.3873608649055242 }, { "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.3672756886415219, 0.3542624693991282, 0.3412926376728919, 0.3284610577341625, 0.3158668563204765, 0.3036108634840846, 0.2917926539248497, 0.2805074776162177, 0.2698435353824332, 0.2598801968617272, 0.25068779990245627, 0.24232951646102086, 0.2348653377932195, 0.22835750947557618, 0.22287586362822023, 0.2185007649912931, 0.21532126443933056, 0.2134269503850016, 0.2128939604462812, 0.2137680824624729, 0.21604968282917747, 0.21968522507775917, 0.22456812675107246, 0.23054860496537172, 0.23744953512335767, 0.2450842673663598, 0.25327283970041525, 0.26185437787731275, 0.270694884255483, 0.2796906394616115, 0.28876799035482337, 0.2978804910567623, 0.30700435036129975, 0.3161330268399046, 0.32527166092807713, 0.3344318683478337, 0.3436272552051607, 0.35286986204996795, 0.36216761091765226, 0.3715227227569204, 0.38093099639030537, 0.39038179426685576, 0.39985856146567594, 0.40933970713678713, 0.41879969526319655, 0.4282102178972468, 0.4375413534576647, 0.44676264127552057, 0.45584402882150926, 0.4647566686858987 ], [ 0.36878751214797095, 0.35584536340239703, 0.3429210178591504, 0.33010125392006356, 0.31747612927031926, 0.3051366389088224, 0.29317213435564754, 0.2816678187308819, 0.27070278040033735, 0.26034914149877386, 0.25067290645205875, 0.24173691165211342, 0.2336058232890861, 0.22635239041097802, 0.22006324802073127, 0.21484177880197378, 0.21080535360282918, 0.20807517116796087, 0.20675908531842524, 0.20693072151237923, 0.20861053699111265, 0.2117547709527867, 0.21625589478070398, 0.22195426037233817, 0.22865720638178055, 0.2361604589742404, 0.24426735371451797, 0.25280321896760344, 0.2616240947924471, 0.2706202204844805, 0.2797153424998684, 0.2888630630172612, 0.2980413802146115, 0.3072464033506863, 0.31648602582545715, 0.32577413439299285, 0.3351257352603359, 0.34455319801311624, 0.35406366568369463, 0.36365756110398045, 0.37332803925014113, 0.3830611913256165, 0.392836793698031, 0.402629405926363, 0.41240964863082097, 0.42214552615134915, 0.4318036946469661, 0.44135060926274694, 0.4507535118304865, 0.45998124235845345 ], [ 0.3707632447159394, 0.3579238248248526, 0.3450767705914561, 0.33230052526417064, 0.3196758438279367, 0.3072836795729076, 0.2952029843751157, 0.2835087566668841, 0.2722708004071579, 0.26155374640872653, 0.25141886917104295, 0.24192802770525199, 0.23314959536373062, 0.22516550040038816, 0.21807756876441015, 0.2120105147145195, 0.20710863267469673, 0.20352406487922234, 0.2013967847126758, 0.2008297653979078, 0.2018658151257092, 0.20447334632290629, 0.20854585249908475, 0.21391509017618346, 0.22037350080403564, 0.2276994575900599, 0.2356797712055448, 0.24412623786208085, 0.2528853553504364, 0.2618418771420381, 0.2709175722464699, 0.2800666955646933, 0.2892695393013699, 0.2985252044528046, 0.3078444773400924, 0.3172434454782787, 0.3267382513697899, 0.33634117272887776, 0.34605804378201205, 0.35588690236197124, 0.3658176640816335, 0.37583258487461596, 0.3859072690494877, 0.396012001634746, 0.40611322072445155, 0.41617498861183766, 0.42616036284265935, 0.43603260558073237, 0.44575619974784236, 0.4552976628558121 ], [ 0.3731537316497912, 0.36044433092499445, 0.34770208982841827, 0.33499704819742526, 0.32240065619091085, 0.30998390319992514, 0.29781550047863403, 0.28596046233018996, 0.27447954139683295, 0.2634300385494068, 0.25286846826630466, 0.242855344325265, 0.23346189128654837, 0.22477775846345974, 0.21691788475769602, 0.21002576853320234, 0.20426998070294908, 0.19983142284822017, 0.19688106375201525, 0.19555152649479268, 0.19590961222618905, 0.19793836137331947, 0.20153486664224565, 0.2065244760642635, 0.2126863575774679, 0.21978268836693712, 0.22758464074998352, 0.23589126103378422, 0.24454026967946055, 0.2534116953121986, 0.26242605085134957, 0.27153886658088827, 0.28073319160870536, 0.2900113746989294, 0.29938712112563703, 0.3088785193314337, 0.3185024513835498, 0.3282705566675028, 0.3381867210893697, 0.34824592235179863, 0.3584341769982992, 0.368729301347186, 0.37910220545274603, 0.38951847367493075, 0.3999400343999061, 0.41032677425344205, 0.4206380013020043, 0.43083370298839335, 0.4408755763064156, 0.45072783022904117 ], [ 0.3759080641968581, 0.36335170862705524, 0.35073766748398627, 0.33812768264937987, 0.3255841128109304, 0.3131683190395527, 0.300939228395144, 0.28895242208385225, 0.2772601868504876, 0.2659130123288935, 0.25496296090344084, 0.24446911708983438, 0.23450488019552868, 0.22516616749548926, 0.21657869312492103, 0.2089015705442013, 0.20232395139203468, 0.1970518672332011, 0.19328450361815613, 0.19118291174976826, 0.19083851279170616, 0.1922511614716291, 0.19532458721058024, 0.19988087081688224, 0.20568866943153322, 0.2124961932596417, 0.22006072876739763, 0.22816997528219607, 0.23665403790467815, 0.24538920031646774, 0.25429552794548854, 0.2633304425977994, 0.2724801415035948, 0.28175036237947537, 0.2911576154138208, 0.3007216403452977, 0.3104595159172936, 0.3203815650801862, 0.3304889765773661, 0.34077291024037343, 0.35121476897651044, 0.3617872961865219, 0.37245617850880625, 0.3831818834733319, 0.39392152418371384, 0.40463060630712655, 0.4152645685302236, 0.4257800723480478, 0.4361360297708225, 0.446294379369106 ], [ 0.3789750766551521, 0.3665908174955884, 0.3541245684597082, 0.3416300393159237, 0.32916090205457077, 0.3167694458135613, 0.30450551635182665, 0.2924160793072695, 0.28054582032581105, 0.2689392202454676, 0.2576444746529609, 0.2467194100671763, 0.23623913085014414, 0.22630448123810176, 0.2170495547617845, 0.20864557548414586, 0.20129784950911764, 0.19523271565016706, 0.19067321442187665, 0.18780590748528264, 0.18674608214693153, 0.18751191605544293, 0.19001697988721372, 0.1940840776580836, 0.19947530919439238, 0.20592834605851912, 0.21318933787470393, 0.22103675710877072, 0.22929470725075213, 0.23783694605259376, 0.2465839840143315, 0.2554957273955458, 0.2645618188311068, 0.27379138914299833, 0.2832034810867459, 0.2928189742459858, 0.3026544500999605, 0.3127181074447881, 0.32300758761978265, 0.3335094044693553, 0.34419959254634847, 0.35504517546847814, 0.3660060948927539, 0.37703730796967455, 0.38809083862942856, 0.3991176419305553, 0.41006920291519994, 0.4208988387864216, 0.4315627059952156, 0.44202053416260145 ], [ 0.382304644373673, 0.3701079785172122, 0.357805786561562, 0.34544415343242246, 0.3330686300465191, 0.32072316661217254, 0.3084494180661516, 0.29628674551765305, 0.2842732936614275, 0.2724485321392384, 0.2608575702929419, 0.24955734418245637, 0.2386243872571212, 0.22816330279682034, 0.21831427261641997, 0.20925707075403757, 0.20120837698098176, 0.19440921848533835, 0.18910083666430527, 0.18549074642447672, 0.18371574565614074, 0.18381275966473368, 0.1857081544817355, 0.18923001025807698, 0.19413889696744105, 0.20016658336241616, 0.20705189248990544, 0.2145669781971546, 0.2225320612944306, 0.2308198622747943, 0.23935232440858423, 0.24809240640018423, 0.25703339169225414, 0.26618766280610917, 0.27557635929060914, 0.2852208278510237, 0.29513631462933204, 0.30532796970736537, 0.3157889526304123, 0.32650025263797117, 0.33743176157846133, 0.34854414224347124, 0.3597910942328554, 0.37112170695623947, 0.38248268292188775, 0.3938202990439465, 0.405082041507359, 0.41621789870575326, 0.42718132853309493, 0.4379299342667313 ], [ 0.3858487434277234, 0.37385210825584425, 0.36172744130805623, 0.3495137276087209, 0.33724908823528005, 0.3249699957769465, 0.31271093025167024, 0.3005047772476353, 0.2883843093116905, 0.2763850844257875, 0.2645500096364883, 0.2529356162662715, 0.2416197388148853, 0.23070975725384402, 0.22034985873103505, 0.21072497750837776, 0.20205839723224275, 0.19459989105541856, 0.1886024322337698, 0.18428861543105665, 0.18181282262496287, 0.1812297867479206, 0.18248090677571985, 0.1854041894962245, 0.18976444313781632, 0.1952932049177616, 0.2017267934104353, 0.20883475753482686, 0.2164361000725783, 0.22440430192463134, 0.2326638509050527, 0.24118131975793664, 0.24995373853193992, 0.2589964653173011, 0.268332150366817, 0.27798179090227365, 0.28795833757909683, 0.29826287623531783, 0.3088830941232543, 0.31979355496250894, 0.330957240328124, 0.34232783999914673, 0.3538523575699702, 0.36547370737978074, 0.3771330891077621, 0.38877202120121973, 0.40033398659221775, 0.41176569343753566, 0.42301798320116873, 0.43404643307804086 ], [ 0.3895622578725043, 0.3777755493103667, 0.36583961427942946, 0.35378695323367365, 0.3416490364367932, 0.32945579910491085, 0.3172356263998078, 0.305016102753211, 0.2928258237136898, 0.28069754809901126, 0.2686728772877231, 0.25680845713647227, 0.24518337704640866, 0.2339069692790754, 0.22312559227553935, 0.21302627077842226, 0.2038344319650609, 0.19580279273931508, 0.18918935378031676, 0.18422515310400733, 0.18107698761170482, 0.1798150516944521, 0.18039690468575342, 0.18267465476394315, 0.18642331256436476, 0.1913805033109395, 0.19728566731679348, 0.203910195818495, 0.21107508899159488, 0.21865673119701395, 0.22658343304193185, 0.23482597557077525, 0.24338518684385504, 0.25227902362281784, 0.2615309456457405, 0.2711606777553786, 0.2811778326696508, 0.29157836616339255, 0.30234348629295427, 0.313440444754169, 0.3248245840185983, 0.33644206354242034, 0.34823279968805826, 0.3601332877789805, 0.3720791019088873, 0.3840069722204243, 0.3958564146565264, 0.40757093627086904, 0.4190988653589725, 0.43039386621792053 ], [ 0.39340354161981317, 0.3818346133534498, 0.3700968535780335, 0.35821695469137016, 0.3462205647607355, 0.3341320532218408, 0.32197479777805604, 0.3097722361085107, 0.2975499357559418, 0.28533890399835704, 0.27318026525347316, 0.261131253219021, 0.249272176117424, 0.23771360019662935, 0.22660246063159425, 0.21612519323963, 0.20650541962677857, 0.19799352164751768, 0.19084615977015282, 0.18529608930545904, 0.18151668568700288, 0.17959009934790554, 0.17948987156658636, 0.18108536350080365, 0.18416727810604688, 0.1884857180681758, 0.19378929185846935, 0.19985621889924488, 0.2065131997634394, 0.21364201959484547, 0.2211762969863902, 0.22909169980394964, 0.2373929062690993, 0.246100051028727, 0.25523664526899387, 0.26482017137767516, 0.2748558379178679, 0.2853334105023727, 0.2962266460103472, 0.3074946567085526, 0.3190844925381812, 0.3309343082423694, 0.3429766240871933, 0.35514134794080643, 0.3673583701166424, 0.37955965427176885, 0.39168082413903793, 0.40366229113734675, 0.41544998946192374, 0.4269957909119489 ], [ 0.39733475777452487, 0.38598987093689713, 0.37445839478986426, 0.3627619219822026, 0.35092112014217125, 0.33895575253713256, 0.3268852345700481, 0.3147299367711774, 0.30251344256933377, 0.29026592853138156, 0.2780287389514145, 0.26586005772858823, 0.253841321890796, 0.24208366189982153, 0.23073319694597194, 0.21997349512004472, 0.21002304024104312, 0.201125386301124, 0.19353028909154493, 0.18746605261399132, 0.1831068122805106, 0.18054249343636172, 0.17976120893692615, 0.1806513349068194, 0.18302364334292312, 0.18664650376401093, 0.19128363121589617, 0.19672526583433508, 0.2028078349879276, 0.2094213242778137, 0.2165063649780855, 0.22404432122427248, 0.23204383870703843, 0.24052683898816993, 0.24951614786941498, 0.25902606664097916, 0.26905638560136547, 0.27958969588273375, 0.29059142773904656, 0.30201183696808376, 0.31378914296148974, 0.325853133147877, 0.3381287239562743, 0.3505391531609504, 0.3630086374048917, 0.3754644464167687, 0.387838421097283, 0.40006800345498694, 0.41209686220630515, 0.42387519801115053 ], [ 0.4013220283769864, 0.3902062326598479, 0.3788881569693128, 0.3673850064202934, 0.3557132902696621, 0.34388907615514575, 0.33192877977024854, 0.319850666951609, 0.3076772325758745, 0.29543857316811284, 0.2831767744384962, 0.2709511777363271, 0.2588441591274687, 0.2469667450650001, 0.2354630051053403, 0.22451173880943442, 0.2143236075423905, 0.20513176699232358, 0.19717460812626444, 0.19067086577042225, 0.18579026017877182, 0.18262621966583029, 0.18117910725838005, 0.18135660692829705, 0.18299238812899937, 0.18587766992700797, 0.1897965222656987, 0.1945561624486644, 0.2000068157145681, 0.2060496284827589, 0.21263412398002116, 0.21974832041309633, 0.22740506896753682, 0.23562779454714486, 0.244438010549678, 0.25384602157253816, 0.2638453260636064, 0.2744105125258452, 0.2854979745633053, 0.29704856022725107, 0.30899127717574026, 0.32124732303398534, 0.3337339208341459, 0.3463676495556072, 0.35906713222817715, 0.37175506529270425, 0.3843596456362473, 0.39681548651774906, 0.4090641227901282, 0.4210542000675627 ], [ 0.40533543236155156, 0.39445287010785596, 0.38335457416292057, 0.37205405331750824, 0.36056443310023123, 0.34889891749194313, 0.3370717725740333, 0.3250999758255518, 0.31300565395933194, 0.3008193798631719, 0.2885843052474601, 0.2763609604318286, 0.2642323490168194, 0.2523087007933545, 0.24073093019426994, 0.2296715139504016, 0.21933123679825856, 0.20993023699287866, 0.20169230891094805, 0.1948228224266209, 0.18948298570823602, 0.18576589646611183, 0.1836813964347483, 0.18315551293605056, 0.18404597174765966, 0.1861698267956701, 0.18933555374123082, 0.19337158854364378, 0.19814570187380087, 0.2035730845818876, 0.20961408316050412, 0.21626444056468472, 0.22354159682692976, 0.23147036684760705, 0.24007051875393282, 0.24934776103567058, 0.25928865943243656, 0.26985921191513446, 0.2810063020073404, 0.2926610403779897, 0.3047430389653, 0.3171648495100855, 0.3298360449726252, 0.34266665674699226, 0.3555698642396804, 0.36846395564577056, 0.3812736465254757, 0.3939308702640999, 0.406375156378634, 0.418553700766605 ], [ 0.4093488900696806, 0.3987030235968466, 0.38783031892304437, 0.3767412378957951, 0.36544622787249337, 0.3539563614013317, 0.34228447335073453, 0.3304469073116541, 0.318465955943815, 0.306373024746864, 0.2942124580049713, 0.2820458329597453, 0.26995634983170513, 0.25805272268962937, 0.24647172178320312, 0.23537826663579078, 0.22496179887334689, 0.2154277216780024, 0.20698320214167854, 0.19981782178969915, 0.1940814505375507, 0.18986382131372542, 0.18718149605459106, 0.18597703130695137, 0.18613188866998265, 0.1874902529948629, 0.18988754524348214, 0.19317653703779442, 0.1972455791010798, 0.20202641096399915, 0.2074919890332044, 0.21364686406922057, 0.22051356841890307, 0.22811839181690613, 0.2364791800136379, 0.24559674120296635, 0.25545038376339646, 0.26599724560254023, 0.2771745296827637, 0.2889035527484595, 0.3010945804548362, 0.31365165165935843, 0.32647687733464353, 0.3394739565111867, 0.3525508439781967, 0.3656216253988202, 0.37860771660644965, 0.3914385230567473, 0.4040516896283755, 0.4163930530174017 ], [ 0.41333996996578504, 0.40293373877319844, 0.3922919662898676, 0.38142265894300037, 0.3703342072500495, 0.3590361719949876, 0.3475405346082521, 0.33586349381116903, 0.3240278589245878, 0.3120660340025703, 0.3000235008514363, 0.28796258923189655, 0.2759661682990898, 0.26414070935278283, 0.2526179714990297, 0.24155438391439762, 0.23112711045327597, 0.2215259026324657, 0.21294033721703134, 0.20554303641407268, 0.19947095270148196, 0.19480837612164623, 0.19157619928798952, 0.18973130648109932, 0.1891774931847424, 0.18978587009066708, 0.19141977123069898, 0.19395805268912691, 0.19731164793872213, 0.20143066684758443, 0.20630208053512206, 0.21194018658349806, 0.218373151547882, 0.22562900134309688, 0.2337237593696389, 0.2426533725134631, 0.25238994327493625, 0.26288185860921215, 0.2740568260656012, 0.28582662600642633, 0.29809248912299136, 0.3107502807743792, 0.3236949914185767, 0.33682430961933846, 0.35004125264258706, 0.3632559472933166, 0.3763867069151948, 0.38936056093084126, 0.4021133798564248, 0.414589714945089 ], [ 0.41728964842232286, 0.40712556702175084, 0.3967196367641184, 0.38607793136309754, 0.37520731292685006, 0.36411633264440196, 0.3528165559245668, 0.34132436698578733, 0.3296632734108754, 0.3178666755322107, 0.30598098528995654, 0.29406887278340305, 0.2822122877251146, 0.27051475467008024, 0.25910229237997495, 0.24812219304043667, 0.23773887637871968, 0.22812619888296146, 0.2194560602767335, 0.21188398510729653, 0.20553350624823724, 0.20048233002699842, 0.19675385959538175, 0.19431711196895377, 0.19309619386882382, 0.19298780331561435, 0.1938827548951364, 0.1956863385258688, 0.19833287101257757, 0.2017917442913708, 0.20606474603916133, 0.21117653578323575, 0.21716136851989873, 0.2240493707476042, 0.23185509141738514, 0.24057000119896157, 0.25015944656710554, 0.26056358133089247, 0.2717011878027304, 0.2834751054628773, 0.29577811990284775, 0.3084984787045958, 0.32152455150251846, 0.33474844649657015, 0.34806859841205107, 0.361391456021458, 0.3746324423156846, 0.38771636219953126, 0.40057741184945905, 0.4131589147145299 ], [ 0.4211820475716334, 0.4112622566780793, 0.4010966463947345, 0.39068980560935423, 0.38004750084809535, 0.36917766032034877, 0.3580917383632196, 0.3468064913260656, 0.33534616014475466, 0.32374500122612426, 0.31205003395553693, 0.3003237803062957, 0.2886466631826634, 0.2771186142955131, 0.26585933749227353, 0.25500661119837126, 0.2447120441484124, 0.23513389032052975, 0.2264269532543488, 0.21873029901989333, 0.2121543764806218, 0.2067699709368154, 0.20260179755486443, 0.19962907703728133, 0.19779398602596882, 0.19701675864002932, 0.1972141784217663, 0.1983170815144641, 0.2002827775643219, 0.203099848355273, 0.20678495099803262, 0.21137324189242096, 0.21690529077287912, 0.22341368127665417, 0.2309120058383243, 0.23938794226160995, 0.24880090433993382, 0.2590837291434755, 0.27014722655071405, 0.28188622908211985, 0.2941859464697606, 0.3069277809864973, 0.3199941394791455, 0.3332720883706962, 0.346655903519769, 0.3600486751544855, 0.3733631651662326, 0.38652210787203123, 0.3994581180707936, 0.4121133363252995 ], [ 0.4250041700785901, 0.41533045419411796, 0.40540918237604207, 0.3952438302665463, 0.3848394084776982, 0.37420350083882764, 0.36334763676742743, 0.35228900819241177, 0.3410525056845312, 0.32967299802555833, 0.31819771382917794, 0.30668850456191216, 0.2952236802842073, 0.2838990226506964, 0.2728275118109572, 0.2621372829639363, 0.25196739463786166, 0.24246119289298265, 0.23375743551627126, 0.2259799019379087, 0.21922688156351852, 0.21356251745233942, 0.20901220350351418, 0.20556381866884063, 0.2031754292658903, 0.20178841411802909, 0.20134330477006396, 0.20179464702377534, 0.20312133158833676, 0.2053300891754611, 0.20845171738792082, 0.21253143560586502, 0.21761601114358475, 0.22374071317978173, 0.23091875523587363, 0.2391349112285203, 0.2483437863534027, 0.2584721615384786, 0.26942417041198713, 0.2810878834750268, 0.29334206489543774, 0.3060622495291732, 0.31912569191784085, 0.3324150620444253, 0.34582097063149075, 0.3592435110598278, 0.3725930354430773, 0.3857903695855157, 0.3987666388370331, 0.4114628390481221 ], [ 0.42874564386670816, 0.41931942732738203, 0.4096460141860039, 0.3997280644629797, 0.38957008591652953, 0.37917950024947444, 0.3685679968206927, 0.35775316711477695, 0.3467603785734746, 0.33562480009349016, 0.3243934340308078, 0.3131269435020206, 0.30190099486697, 0.29080677377564373, 0.27995029548929223, 0.2694501402412294, 0.25943333303827937, 0.2500292871816576, 0.2413620632921256, 0.23354164867006663, 0.22665546391812444, 0.22076170941276835, 0.21588627215883147, 0.2120245336393089, 0.20914848072723924, 0.20721817803957754, 0.2061953117233842, 0.20605568215275194, 0.20679759596209135, 0.20844412045963134, 0.21103876682711828, 0.2146358179475809, 0.21928772044779105, 0.22503243208081847, 0.23188330789962636, 0.23982319270821276, 0.24880319712068893, 0.25874555611422195, 0.26954929123214794, 0.28109721063909876, 0.2932629851982443, 0.3059174409176388, 0.3189336294806213, 0.3321905713964304, 0.34557577676497175, 0.3589867505593978, 0.37233171528186193, 0.3855297663212062, 0.39851063866281405, 0.4112142228639723 ], [ 0.43239848472007447, 0.42322081649967397, 0.41379824364776113, 0.40413283960291413, 0.394228785248633, 0.38409344038906074, 0.37373865739015955, 0.36318231645049853, 0.35245002931745484, 0.3415769167243447, 0.33060931565277013, 0.31960621898426533, 0.30864019829289013, 0.29779752034466084, 0.2871771538943405, 0.27688839507300994, 0.2670469396958336, 0.2577694196880366, 0.24916670635520166, 0.2413366453312358, 0.23435726331455878, 0.22828176226726457, 0.22313664567764385, 0.21892396943590675, 0.21562793052640514, 0.21322491903339658, 0.21169507002784796, 0.21103266995775982, 0.21125281908168042, 0.21239258327049118, 0.2145062344992644, 0.2176556455444505, 0.22189803809925368, 0.22727378710315177, 0.23379675665506988, 0.24144880053377207, 0.25017890875856524, 0.25990640815449567, 0.27052693632765307, 0.28191971205232563, 0.29395482833582004, 0.3064997029408798, 0.319424250733237, 0.3326046811654638, 0.345926037349305, 0.3592836948905432, 0.3725840627958724, 0.3857447088889236, 0.3986940932933329, 0.41137105103768407 ], [ 0.43595688049310644, 0.4270284158618887, 0.41785909243409497, 0.4084505650500233, 0.39880679799811714, 0.3889351229801231, 0.37884749650349653, 0.36856192558880707, 0.358104000676396, 0.3475084381876376, 0.3368204941439639, 0.32609706819799306, 0.3154072804487092, 0.30483228058287265, 0.29446405262359215, 0.2844030241096418, 0.2747543917489674, 0.26562324814674265, 0.2571088355206334, 0.2492985393175936, 0.24226251270431254, 0.23605000385150712, 0.23068843284455035, 0.22618593841317647, 0.2225374593061312, 0.21973352917758326, 0.2177700881827628, 0.2166570685732096, 0.21642355392397844, 0.21711800221337918, 0.2188031824665301, 0.22154676237457585, 0.22540952918924548, 0.23043373754319496, 0.23663392021241866, 0.2439917402162161, 0.25245537487049685, 0.2619428777884015, 0.2723482757432132, 0.28354894611555753, 0.29541300859446273, 0.30780586423920603, 0.32059544208172064, 0.33365605375315777, 0.3468709722507852, 0.36013395472197157, 0.37334995438008955, 0.3864352470820727, 0.39931715899619796, 0.41193353882822714 ], [ 0.43941699745518475, 0.43073798229894444, 0.42182372233941534, 0.4126755695870599, 0.40329732853078915, 0.39369628581991833, 0.3838844002353337, 0.3738796142015808, 0.36370722114943116, 0.35340119181303625, 0.343005329166336, 0.3325740898940895, 0.32217288577590136, 0.31187766913460907, 0.3017736227411233, 0.29195282774773906, 0.2825108838749531, 0.27354260972212285, 0.2651371522726533, 0.2573730601917206, 0.2503140790221907, 0.24400653852175974, 0.23847914155604644, 0.23374566258004553, 0.22981050934885755, 0.22667637823364248, 0.22435253287842397, 0.22286180730442942, 0.22224448165944155, 0.22255775719801807, 0.22387053828069464, 0.22625434782859394, 0.2297721463641454, 0.23446732237863446, 0.24035502133828676, 0.2474173144464748, 0.2556027066142217, 0.2648294916208429, 0.2749917861303084, 0.28596684619098156, 0.29762242974453107, 0.30982334376575577, 0.32243672754909997, 0.3353359593757917, 0.3484032907995672, 0.36153142028570684, 0.3746242469957898, 0.38759702884153374, 0.40037613167001296, 0.4128985144377555 ], [ 0.4427768070393665, 0.4343470684906987, 0.42568908187912435, 0.41680396933769503, 0.4076953910512949, 0.3983705357607586, 0.3888412366958534, 0.3791251691485902, 0.36924706222667386, 0.3592398311725164, 0.3491455102710073, 0.3390158434104795, 0.3289123749823028, 0.31890588479276055, 0.30907503507506656, 0.29950415383247414, 0.2902801731179219, 0.28148887489241053, 0.27321076283245566, 0.26551705394134384, 0.25846643008636727, 0.25210325184282284, 0.24645785397868847, 0.2415492665797036, 0.2373902366123783, 0.23399383494423223, 0.23138037667987607, 0.22958305222497008, 0.2286507212496348, 0.22864680945380733, 0.22964407592028696, 0.23171598048969208, 0.2349262163666234, 0.23931843943186762, 0.24490816893139108, 0.2516782608900237, 0.2595784564861808, 0.26852859086312675, 0.27842439910026845, 0.28914461321158064, 0.3005581671434927, 0.31253066445081495, 0.32492965067439245, 0.3376285567607897, 0.35050939593285363, 0.36346440836318994, 0.37639688297400214, 0.38922137426185605, 0.4018634986000764, 0.4142594548613032 ], [ 0.446035929847499, 0.43785487502296294, 0.4294537721484353, 0.4208335529396065, 0.41199771894901016, 0.4029532855705428, 0.39371182126693866, 0.38429053539972063, 0.374713347670561, 0.36501185079081916, 0.3552260578563989, 0.3454048103682839, 0.3356057164221597, 0.3258944968697715, 0.31634364640253, 0.30703037227291863, 0.2980338593166141, 0.2894320248942144, 0.28129806228804366, 0.2736972059966383, 0.26668425471445656, 0.26030241428552536, 0.254583927765582, 0.24955271130187842, 0.24522881881856473, 0.24163407938228648, 0.23879781132109673, 0.2367612672785071, 0.23557952657860987, 0.23531996462615953, 0.23605712536018447, 0.23786464093940154, 0.24080556914324064, 0.24492294116229246, 0.25023228617952503, 0.25671741521440106, 0.2643299591177762, 0.2729923296613004, 0.2826031656482872, 0.29304407392805915, 0.30418655780383613, 0.31589831645250865, 0.3280484510444906, 0.3405114191609196, 0.35316979083846894, 0.3659159754549631, 0.3786531307079942, 0.39129546051164277, 0.40376808070648246, 0.4160065956204666 ], [ 0.44919549304656525, 0.44126211620325567, 0.4331179250801844, 0.4247636757000143, 0.41620267711762154, 0.40744168474786563, 0.3984918634768243, 0.38936977290984137, 0.38009830992744503, 0.3707075266558008, 0.36123522717747, 0.35172723680758006, 0.34223723735995504, 0.3328260749728721, 0.323560478324122, 0.3145111781992319, 0.3057504958775144, 0.29734956492626263, 0.2893754595059897, 0.2818886044420441, 0.2749409111242212, 0.26857508474804725, 0.26282544869776836, 0.2577204107845237, 0.2532863643680276, 0.24955243042296205, 0.24655510247107498, 0.2443416714705349, 0.2429713757035235, 0.2425135721068395, 0.2430428089256337, 0.2446313684667319, 0.24734046852655475, 0.2512116816678611, 0.25626012446851265, 0.2624705671445782, 0.26979693940712074, 0.2781649824898317, 0.28747724351231896, 0.29761935493495073, 0.30846658513357184, 0.3198898861495411, 0.3317609744872947, 0.3439562619952623, 0.3563596571871833, 0.36886437551468865, 0.3813739462809847, 0.39380260744110523, 0.406075258375977, 0.4181271097798772 ], [ 0.4522579971191017, 0.4445708944666669, 0.43668308800558403, 0.42859515589642305, 0.4203101700946067, 0.4118345374686484, 0.40317888992190226, 0.394358976257394, 0.3853964943120753, 0.3763197886399595, 0.3671643287278606, 0.35797287798098004, 0.3487952676578741, 0.3396877060068351, 0.3307115843128125, 0.32193179066064276, 0.31341460903342777, 0.30522536229415687, 0.29742604374636755, 0.29007325785832444, 0.28321683420856414, 0.2768994633144824, 0.2711576042631154, 0.26602372009652125, 0.2615296211138112, 0.25771038600374135, 0.25460806418637216, 0.2522742297124532, 0.250770528519218, 0.25016665989062736, 0.2505357196194509, 0.25194740639108226, 0.2544601127474418, 0.25811323831847677, 0.2629210663953231, 0.2688692160507156, 0.2759141158085524, 0.28398532125359616, 0.29299000598620395, 0.3028187088647985, 0.31335142932675353, 0.3244633515150034, 0.3360297418559453, 0.3479298162642939, 0.36004956391134124, 0.37228363239132806, 0.38453643449122504, 0.3967226484492188, 0.4087672698945291, 0.420605348470492 ], [ 0.4552271881566642, 0.4477845788674629, 0.4401521095077669, 0.43233016802858343, 0.424321541125319, 0.41613220373112225, 0.40777214111756094, 0.3992561577754404, 0.3906046157140469, 0.3818440348450542, 0.37300748146992296, 0.36413466975757935, 0.3552717079940289, 0.34647043888980683, 0.33778735355242046, 0.3292821030164858, 0.321015688623805, 0.3130484790806031, 0.3054382694418759, 0.29823865231141733, 0.29149799622841266, 0.28525930024711627, 0.2795610998440364, 0.2744394315487953, 0.2699306365010109, 0.2660745365578528, 0.26291731261317314, 0.2605133223786976, 0.2589251674508552, 0.25822157366597903, 0.25847305242107493, 0.25974578391236836, 0.2620945921762679, 0.265556145116705, 0.27014352040354367, 0.2758430119708366, 0.28261358491309574, 0.2903888617377192, 0.2990810939419066, 0.30858634071248203, 0.3187900580800971, 0.3295724433861444, 0.3408130976065068, 0.3523947870356032, 0.3642062604200721, 0.37614419234273244, 0.3881143834823244, 0.40003236753481336, 0.4118235684460195, 0.42342313263441794 ], [ 0.45810793237853925, 0.4509076839825909, 0.4435290227803218, 0.43597212947851427, 0.4282394593420358, 0.4203364822472849, 0.412272442935339, 0.4040610977932944, 0.3957213753063618, 0.387277900085787, 0.3787613166106017, 0.37020835032467597, 0.3616615524595254, 0.35316869277786195, 0.34478179274802817, 0.33655583082027524, 0.32854720006291177, 0.32081205239506744, 0.31340471559617855, 0.30637640798725563, 0.29977448679421614, 0.29364243442774496, 0.2880207004875419, 0.28294837431621944, 0.27846547768091207, 0.2746154731371981, 0.2714474297305375, 0.2690172265701184, 0.26738724626355215, 0.2666242254768575, 0.2667952625227804, 0.26796236794128253, 0.270176292557785, 0.273470581780022, 0.2778568131289761, 0.2833217606373506, 0.2898268505531187, 0.2973098389922296, 0.305688276497928, 0.3148641120726757, 0.32472875127112283, 0.33516798317244534, 0.3460663649618616, 0.35731083838488886, 0.36879350812452544, 0.38041362081295743, 0.3920788454749257, 0.4037059815769338, 0.4152212218090988, 0.4265600840276295 ], [ 0.46090609020991197, 0.4539457464800956, 0.446818923927553, 0.4395255785584539, 0.4320677940383197, 0.4244504756108755, 0.41668205532816016, 0.4087751675217868, 0.40074724626411057, 0.3926209915529826, 0.3844246493869393, 0.3761920542216118, 0.367962391990075, 0.35977965922411087, 0.3516918196098524, 0.3437496933587792, 0.3360056553449259, 0.3285122611737041, 0.32132095967923024, 0.3144810765139473, 0.30803925518921826, 0.30203950786309935, 0.296523950705336, 0.2915341785313169, 0.28711308402460606, 0.28330677591119047, 0.2801661362259765, 0.2777475192707442, 0.27611216324682364, 0.27532406683169297, 0.27544635497862285, 0.27653646975598783, 0.2786408011617687, 0.2817895437400056, 0.28599257161442265, 0.29123695488927354, 0.2974864364750724, 0.30468283545814645, 0.31274903705131046, 0.32159303986953774, 0.3311124811361721, 0.3411991266415504, 0.3517429468581263, 0.3626355537498543, 0.37377290839166766, 0.3850573097188905, 0.3963987367729388, 0.40771564675239297, 0.4189353383038838, 0.4299939827304282 ], [ 0.46362838798008355, 0.4569051975385541, 0.45002784378090327, 0.4429960432435973, 0.43581147645902785, 0.4284784397405247, 0.42100450240455906, 0.4134011311808687, 0.40568423804743114, 0.39787460446751927, 0.3899981350559549, 0.38208589818739447, 0.3741739210592349, 0.3663027230756572, 0.35851659445429446, 0.3508626561248339, 0.34338977043790303, 0.3361474063470293, 0.32918459195289806, 0.3225491040435062, 0.3162870397870293, 0.3104428819090986, 0.3050601008687348, 0.3001822380563691, 0.2958542950282562, 0.29212413781802693, 0.289043542223186, 0.2866684857008751, 0.28505835526068, 0.2842738922409778, 0.2843739153783039, 0.28541111226065813, 0.2874274097659754, 0.29044956792108895, 0.2944856462041654, 0.2995228573453719, 0.30552708290634734, 0.31244404164242146, 0.3202018495174693, 0.32871454533915184, 0.3378860998838018, 0.3476144659955196, 0.3577953279604672, 0.36832533167181963, 0.3791046922730879, 0.3900391660003654, 0.40104143284460286, 0.41203196936876185, 0.4229395031027145, 0.43370113848200487 ], [ 0.4662822860399133, 0.4597932301828947, 0.4531626128054025, 0.446389900963455, 0.43947635061122, 0.43242562058867623, 0.4252443886779109, 0.4179429343420714, 0.41053564859752656, 0.4030414295536281, 0.3954839233346787, 0.38789157522997786, 0.3802974657532049, 0.37273892132203035, 0.3652569094976439, 0.3578952533898892, 0.3506997270927961, 0.3437171206520362, 0.33699438435033663, 0.3305779719741211, 0.32451349457066386, 0.3188457643349242, 0.3136192501618997, 0.3088788852156858, 0.3046710732631506, 0.30104465267007713, 0.2980515178202623, 0.2957465896603153, 0.29418688506983204, 0.29342956019412253, 0.2935289799780964, 0.294533062488716, 0.2964793185863667, 0.29939111059985724, 0.3032746560235639, 0.30811719714538793, 0.3138865686266886, 0.32053217033454545, 0.3279871478826369, 0.33617144248859626, 0.3449953144652519, 0.354362964499794, 0.3641759498434952, 0.3743361892525162, 0.3847484461246568, 0.395322258201535, 0.4059733382500573, 0.4166245038979189, 0.42720621050674357, 0.4376567639548036 ], [ 0.46887584280574346, 0.46261766139125926, 0.45623071950801736, 0.44971423066036614, 0.4430690153579641, 0.4362980816872311, 0.4294072065994868, 0.42240548530384003, 0.41530581305290815, 0.4081252626840369, 0.4008853231953582, 0.39361197002198006, 0.3863355470268779, 0.3790904537617975, 0.37191464907192723, 0.36484900274517457, 0.3579365488941565, 0.3512217152969197, 0.3447496181028784, 0.338565516374835, 0.3327145109702927, 0.32724154342878314, 0.3221917017598702, 0.3176107747802497, 0.31354592404330445, 0.31004627689610886, 0.3071632032956783, 0.30495003916136165, 0.30346107059192645, 0.30274969604145224, 0.3028658243418804, 0.30385271979280326, 0.3057436380123064, 0.30855867445513124, 0.31230224798772, 0.3169615599241416, 0.3225062220142423, 0.3288890703887159, 0.3360480180116985, 0.34390867990836405, 0.35238745030191326, 0.36139471668492373, 0.3708379466706427, 0.3806244575634694, 0.39066375622620425, 0.40086940443099583, 0.41116041585697943, 0.42146222420776935, 0.4317072799249067, 0.44183533944378117 ], [ 0.4714175748870721, 0.4653867895088674, 0.4592401634331904, 0.4529766589337064, 0.4465966605305899, 0.44010252634789343, 0.4334991404000223, 0.42679443578884163, 0.419999856504695, 0.4131307252963067, 0.4062064874181602, 0.39925080542058256, 0.3922914888102902, 0.3853602544156441, 0.3784923282893103, 0.3717259170726166, 0.3651015943322934, 0.3586616630628468, 0.35244956615811013, 0.34650941852353856, 0.3408857240619467, 0.33562331554635555, 0.33076751526742393, 0.32636446273357805, 0.32246150022571385, 0.3191074590110377, 0.3163526616973333, 0.3142484614758771, 0.3128461838217655, 0.3121954194356929, 0.3123417279411994, 0.3133239302675198, 0.3151712684784462, 0.3179007702931942, 0.3215151546180142, 0.3260015508052249, 0.3313311909471035, 0.33746009710033725, 0.344330654653458, 0.3518738651472058, 0.36001202099688195, 0.36866154121073885, 0.37773574098969465, 0.3871473634826969, 0.39681076371678886, 0.4066436914090423, 0.41656866457043057, 0.4265139574899954, 0.43641424578339016, 0.4462109601694631 ], [ 0.4739163140307137, 0.46810924807240845, 0.46219930434886647, 0.45618520250220057, 0.4500669000374848, 0.44384611832791376, 0.43752687092118964, 0.43111596648435313, 0.42462345703320875, 0.4180630023237159, 0.41145212381816415, 0.40481232677116474, 0.3981690768500098, 0.3915516282169374, 0.38499271272796554, 0.37852811396890773, 0.3721961638356322, 0.3660372112666468, 0.36009312003045174, 0.3544068523815115, 0.3490221854079332, 0.34398358550498126, 0.3393362340586313, 0.3351261572843049, 0.3314003714677831, 0.32820692037783084, 0.3255946641776343, 0.3236126872525402, 0.3223092305175425, 0.32173012030931186, 0.32191675206687104, 0.322903777422421, 0.32471671916300215, 0.327369781643605, 0.330864122354077, 0.33518680124687755, 0.34031053746190293, 0.3461942968928336, 0.35278463110315983, 0.36001760806775657, 0.3678211297634438, 0.37611742263185105, 0.38482550805573457, 0.3938635003566149, 0.4031506279511393, 0.4126089198982857, 0.42216453924857517, 0.43174877381607135, 0.44129871417836253, 0.4507576592913825 ], [ 0.47638106210621267, 0.4707938576038564, 0.46511670960422097, 0.4593481094669617, 0.45348760501100654, 0.44753630458341553, 0.44149738560984997, 0.4353765820526416, 0.42918262393079726, 0.42292760256054507, 0.4166272377309565, 0.4103010278135639, 0.40397227084663895, 0.39766795375366065, 0.39141851758959556, 0.3852575182409746, 0.3792212131078387, 0.3733481133224454, 0.36767854604028516, 0.36225427021474604, 0.35711818030790166, 0.35231411477644287, 0.34788676063773755, 0.3438816147676177, 0.340344931802411, 0.3373235643053556, 0.3348645904072113, 0.3330146333960948, 0.3318188095267245, 0.3313192928149932, 0.33155355172620943, 0.3325523808939286, 0.3343379073607997, 0.3369217821645688, 0.3403037656477802, 0.344470877140315, 0.3493972133523529, 0.35504445828035996, 0.3613630269628108, 0.3682937206935771, 0.37576973167652944, 0.3837188230896191, 0.3920655225207246, 0.4007331953554717, 0.40964590148769137, 0.418729976319366, 0.42791531028445917, 0.43713632736323466, 0.44633268155023587, 0.45544970163469767 ], [ 0.47882084576126155, 0.4734494772811058, 0.46800100189562954, 0.46247370197572657, 0.4568667399652887, 0.45118064342526504, 0.44541779725150515, 0.43958291930710913, 0.4336834947147782, 0.42773014469054976, 0.42173690825847865, 0.4157214195551875, 0.40970496966416986, 0.40371244978021437, 0.3977721815317728, 0.39191564974425064, 0.3861771617683683, 0.3805934643990379, 0.37520335285763246, 0.3700473048079049, 0.36516716477390926, 0.36060589025457374, 0.35640735113125027, 0.352616151023217, 0.34927741698409204, 0.3464364873701743, 0.34413842204332384, 0.34242726838689186, 0.3413450425702369, 0.34093042631583137, 0.3412172295771872, 0.34223272037768104, 0.3439959644008049, 0.3465163393291792, 0.34979238620856945, 0.3538111312269744, 0.35854796099258784, 0.36396707214296736, 0.3700224536311628, 0.37665930816378734, 0.3838157854022519, 0.3914248863389211, 0.39941640391769245, 0.4077187846246863, 0.41626082335556974, 0.4249731336807961, 0.4337893633591191, 0.4426471479775448, 0.45148881285561376, 0.46026184491944677 ], [ 0.4812445726895211, 0.4760848586406065, 0.470860709826237, 0.4655702229017127, 0.4602122047756234, 0.45478664101651256, 0.4492951743944189, 0.4437415713481643, 0.4381321533390916, 0.43247617071661854, 0.4267860990060407, 0.42107784145880217, 0.4153708271776356, 0.4096880008858859, 0.4040557080090745, 0.39850348652483425, 0.39306378414664256, 0.3877716247856069, 0.38266425073846344, 0.37778076561312646, 0.37316179689091783, 0.3688491861424165, 0.36488570010389093, 0.36131473904180705, 0.3581800031029952, 0.3555250663708183, 0.35339280580914123, 0.35182464092876686, 0.3508595607574073, 0.3505329459343451, 0.35087523124087583, 0.3519104912428136, 0.35365506161726556, 0.3561163244637123, 0.35929178310224624, 0.3631685298092012, 0.3677231719400899, 0.37292223459346974, 0.3787230097236399, 0.385074780375187, 0.39192032023929146, 0.399197555554924, 0.4068412778182146, 0.41478480874755913, 0.4229615392212577, 0.43130628716440317, 0.4397564420897656, 0.44825288381488587, 0.4567406785575943, 0.4651695668622794 ], [ 0.48366089167516824, 0.4787085036199089, 0.4737041237005456, 0.4686456890805453, 0.4635316850648646, 0.45836159874315857, 0.45313638580511933, 0.4478589296255314, 0.44253447096798704, 0.43717098727890535, 0.4317795026136892, 0.42637431273308823, 0.42097311469515536, 0.4155970360814381, 0.4102705654246307, 0.40502139188327946, 0.3998801680245968, 0.3948802139054736, 0.3900571826319756, 0.38544870648391866, 0.381094038064301, 0.3770336928364337, 0.37330908861045003, 0.3699621655974927, 0.3670349598394893, 0.3645690958270671, 0.3626051635074916, 0.36118195246985146, 0.36033553230973736, 0.3600981916647782, 0.36049727598343556, 0.36155399111793757, 0.36328226109241735, 0.3656877391789955, 0.3687670686680645, 0.37250747291228187, 0.37688672562070535, 0.3818735165976464, 0.38742819105823023, 0.39350380810209346, 0.4000474403093986, 0.4070016240102572, 0.41430586856240575, 0.42189814111048773, 0.4297162578853749, 0.437699130966095, 0.44578783777362935, 0.45392649732620666, 0.46206295121503294, 0.4701492578469556 ], [ 0.48607805870761595, 0.4813285293102988, 0.47653915896914506, 0.47170775351216043, 0.4668325133155026, 0.4619124735768809, 0.45694796072686344, 0.4519410451677532, 0.4468959698026823, 0.441819534353475, 0.4367214173046689, 0.4316144204005639, 0.4265146248094852, 0.42144145309437886, 0.4164176366188564, 0.41146909348960675, 0.40662472701059493, 0.40191615826353866, 0.397377408205005, 0.393044544070385, 0.38895530163830316, 0.3851486891729807, 0.3816645712804429, 0.37854322269617974, 0.375824834843915, 0.3735489537723466, 0.37175382854639694, 0.37047565550595596, 0.36974771617033747, 0.3695994238675413, 0.3700553140568374, 0.3711340324942132, 0.3728473901969068, 0.37519956131750637, 0.37818649741426197, 0.38179561879912055, 0.38600582217369594, 0.39078781679055247, 0.3961047730316624, 0.4019132417594649, 0.4081642834309354, 0.4148047347232927, 0.4217785376630207, 0.4290280609606246, 0.43649535350711954, 0.44412328350093694, 0.45185653127866937, 0.45964241788228805, 0.46743156353665005, 0.4751783799172552 ], [ 0.488503811495642, 0.48395254176492775, 0.47937322963768764, 0.4747635787427915, 0.4701215427318805, 0.46544575314491987, 0.46073596619987994, 0.45599350960638163, 0.4512217097576004, 0.4464262800791654, 0.44161565292295124, 0.4368012401157412, 0.43199761094787736, 0.42722258076722425, 0.422497208096132, 0.41784570290420264, 0.41329525287973484, 0.40887577775636813, 0.40461962350889547, 0.40056120818405466, 0.3967366291349315, 0.39318323763942203, 0.3899391818325583, 0.38704291347699954, 0.3845326495418962, 0.3824457771819752, 0.38081819168351333, 0.3796835620028983, 0.3790725276869818, 0.3790118433908613, 0.3795235012160417, 0.3806238743759444, 0.3823229357252989, 0.38462360920927013, 0.3875213098210061, 0.3910037178853759, 0.39505081739753406, 0.399635207873074, 0.4047226775721437, 0.41027300603630146, 0.41624094815517876, 0.42257734208837316, 0.4292302798416704, 0.43614628165465225, 0.44327142237344624, 0.45055236805070986, 0.45793729249292175, 0.4653766549449681, 0.4728238305140112, 0.4802355936438028 ], [ 0.49094525465290234, 0.4865875210992619, 0.4822131337842019, 0.4778197234027487, 0.4734050355637451, 0.46896734683598207, 0.4645059022504977, 0.4600213561212202, 0.4555161972576975, 0.45099513994716284, 0.44646546347641963, 0.4419372853643782, 0.4374237567236939, 0.432941172033122, 0.428508989785954, 0.4241497646383976, 0.4198889954376854, 0.4157548964841475, 0.411778101237303, 0.40799130817423074, 0.40442887757279755, 0.40112638576903775, 0.39812014033329257, 0.3954466562822556, 0.39314209073857304, 0.39124163226487957, 0.38977884220748327, 0.3887849492356698, 0.3882881048158462, 0.3883126159985004, 0.3888781814507785, 0.3899991655662637, 0.3916839520111701, 0.39393442069035406, 0.396745589815918, 0.40010545727843877, 0.40399506347231223, 0.40838878252634975, 0.4132548324951053, 0.4185559795982662, 0.42425039894189237, 0.43029264564247804, 0.436634686492636, 0.4432269431084738, 0.4500193021441545, 0.4569620555479212, 0.46400674274863546, 0.4711068759744663, 0.4782185387106861, 0.4853008549799186 ], [ 0.49340875767870973, 0.48923971993204923, 0.4850649530947734, 0.4808820435938805, 0.47668856727445236, 0.47248249390391195, 0.46826261536320835, 0.464028980034863, 0.4597833150543792, 0.4555294182753661, 0.45127350299713054, 0.4470244806292179, 0.44279416936496135, 0.43859742039175964, 0.43445215691871386, 0.4303793250597193, 0.4264027590658403, 0.4225489662602794, 0.4188468390416967, 0.4153273023194687, 0.4120229046849396, 0.40896736062302314, 0.4061950494241132, 0.40374047462701174, 0.40163768638233355, 0.39991966866630063, 0.3986176942926927, 0.3977606534384246, 0.3973743658637885, 0.3974808927447307, 0.3980978702595723, 0.399237892746212, 0.40090797723291555, 0.4031091424220307, 0.40583613306779565, 0.40907731492367444, 0.4128147564053148, 0.4170245017350716, 0.4216770279212694, 0.4267378659692637, 0.4321683566149081, 0.4379265036740471, 0.4439678843887336, 0.4502465759716078, 0.4567160604944212, 0.46333007560473377, 0.47004338540397583, 0.47681245330190836, 0.48359600602045066, 0.4903554845852211 ], [ 0.4958998676236696, 0.4919145769516978, 0.4879339680348871, 0.48395561050096825, 0.47997694759701465, 0.4759956891816337, 0.4720102303085257, 0.46802007847531174, 0.46402627171016847, 0.46003176974146714, 0.4560418015239019, 0.452064154290633, 0.44810939191665433, 0.4441909935173497, 0.440325406637183, 0.43653201285663706, 0.4328330069091858, 0.42925319322084277, 0.4258197059708612, 0.42256166019953906, 0.4195097421266033, 0.4166957467731494, 0.4141520704019436, 0.4119111645112088, 0.4100049575089242, 0.4084642501383404, 0.4073180915322319, 0.40659314460968815, 0.4063130523564224, 0.40649782007432184, 0.40716323245337777, 0.40832032764940995, 0.409974952716618, 0.4121274250741997, 0.4147723226993553, 0.4178984212565054, 0.4214887895892429, 0.42552104648677486, 0.4299677722609211, 0.43479705946465463, 0.43997317906636396, 0.44545733239826135, 0.4512084557453376, 0.45718404368831084, 0.4633409590667272, 0.469636201221969, 0.4760276093897049, 0.48247448406765264, 0.4889381152701596, 0.49538221229619805 ], [ 0.4984232380172149, 0.4946166470627461, 0.4908245899292298, 0.4870446452488649, 0.48327415917077643, 0.4795106266839276, 0.47575210010146557, 0.4719976082879498, 0.46824756925516625, 0.4645041787265029, 0.4607717581534303, 0.4570570473748443, 0.45336942950103326, 0.449721078498585, 0.4461270231444796, 0.4426051242908039, 0.4391759655246197, 0.43586266013028896, 0.4326905796108161, 0.42968701080083743, 0.42688074977492446, 0.4243016413664309, 0.4219800732876966, 0.41994643377203605, 0.41823054157247075, 0.41686105728567385, 0.41586488551450795, 0.41526657844520903, 0.415087752981349, 0.41534653549329625, 0.41605705022192496, 0.41722896902684387, 0.41886714104734857, 0.42097132052203795, 0.42353600916355, 0.42655042595841597, 0.42999861214306406, 0.433859672732823, 0.43810814891094074, 0.4427145085223804, 0.44764573559721504, 0.4528659948955768, 0.458337344374616, 0.46402046743064435, 0.469875397709888, 0.47586221193021494, 0.48194167008323735, 0.488075787091004, 0.49422832498153985, 0.5003651994960633 ], [ 0.5009825752547901, 0.49734954918072344, 0.493740310835678, 0.4901524716485216, 0.48658331409372896, 0.4830301610568849, 0.4794907736019088, 0.47596376119591666, 0.4724489874452945, 0.46894795428734776, 0.46546414834502886, 0.46200333470578625, 0.4585737855985378, 0.4551864341489021, 0.45185494640659934, 0.44859570796975967, 0.4454277245969096, 0.44237243903762646, 0.4394534687982208, 0.4366962716014873, 0.43412774686037264, 0.43177578257739085, 0.42966875776818914, 0.4278350108944623, 0.4263022850104089, 0.42509716051575236, 0.4242444866850837, 0.42376682358327483, 0.4236839065924638, 0.4240121465051941, 0.42476417884110457, 0.42594847651381273, 0.4275690399583524, 0.4296251780680102, 0.43211139156348766, 0.43501736760179815, 0.43832809054245353, 0.4420240690074124, 0.44608167404502475, 0.45047357780637914, 0.4551692771882468, 0.46013568288248435, 0.46533775157921975, 0.47073913791498856, 0.4763028431621521, 0.48199183947047236, 0.487769651408223, 0.4936008802425068, 0.49945166046091954, 0.5052900421140231 ], [ 0.5035806032114007, 0.5001159323149076, 0.4966836716811789, 0.49328148707884806, 0.48990662836485477, 0.48655628652358957, 0.4832279800319034, 0.47991995506626334, 0.47663158302974157, 0.4733637386992202, 0.47011914295768165, 0.4669026555056363, 0.4637215050167225, 0.460585446761649, 0.45750684060248314, 0.45450064528461864, 0.4515843279652918, 0.44877769077373997, 0.4461026187837263, 0.44358275601094044, 0.4412431178765715, 0.4391096499901076, 0.43720874411784194, 0.4355667228648628, 0.434209304973526, 0.4331610633063815, 0.4324448876103722, 0.43208146411329623, 0.4320887839200653, 0.43248169205858983, 0.43327148883501, 0.434465594812854, 0.43606729010821293, 0.4380755376462063, 0.4404848984091834, 0.44328554442011575, 0.4464633722199291, 0.4500002159979585, 0.4538741555218566, 0.45805990989180106, 0.4625293042802656, 0.4672517935833629, 0.47219502461576346, 0.4773254173338037, 0.482608745640249, 0.48801069954118337, 0.49349741260666435, 0.4990359415699055, 0.5045946881882971, 0.5101437568937089 ], [ 0.5062190463835706, 0.5029174601237443, 0.49965624869237696, 0.496433151348376, 0.4932454138339741, 0.4900901326810976, 0.4869646294712662, 0.48386684002629554, 0.4807957024437333, 0.47775152766025747, 0.4747363368109529, 0.4717541509802816, 0.4688112208966295, 0.46591618656333933, 0.46308015958850324, 0.4603167239164874, 0.4576418536292016, 0.45507374934507794, 0.4526325973910339, 0.45034025827409646, 0.4482198929760362, 0.4462955372012251, 0.4445916349117229, 0.4431325432908059, 0.44194202171057845, 0.4410427173791975, 0.4404556601585279, 0.4401997786304782, 0.44029144890737243, 0.44074408697737977, 0.44156779457969286, 0.4427690677148568, 0.44435057587613397, 0.446311018866354, 0.448645066550171, 0.45134338499843907, 0.4543927501618663, 0.45777624748501583, 0.4614735528446082, 0.4654612870572274, 0.4697134332027925, 0.47420180342563667, 0.47889653995589787, 0.4837666340251774, 0.48878044622218714, 0.49390621263153606, 0.4991125227109677, 0.5043687571058961, 0.5096454762509045, 0.5149147534338628 ], [ 0.5088986313836387, 0.5057548136654755, 0.5026586577180322, 0.49960799298347586, 0.49660008693174157, 0.4936319762265531, 0.49070082819955324, 0.48780431808209473, 0.4849410063678459, 0.48211070040862153, 0.47931478486622736, 0.4765565068873488, 0.4738412037286489, 0.47117646290108517, 0.4685722075792881, 0.4660407028872321, 0.46359648158801803, 0.46125619055134554, 0.45903836204343834, 0.4569631162956086, 0.4550518038923968, 0.45332659822776356, 0.4518100495736816, 0.45052461317091796, 0.4494921641852443, 0.4487335123909707, 0.4482679290851387, 0.44811269805712667, 0.4482827015123068, 0.44879005075383643, 0.4496437702356587, 0.45084954236313, 0.45240951915183136, 0.45432220553806385, 0.4565824177113886, 0.45918131824118485, 0.4621065279378485, 0.46534231230722767, 0.46886983816678707, 0.47266749360420607, 0.47671126214142373, 0.48097513991935736, 0.485431583138049, 0.4900519720338761, 0.4948070774451359, 0.499667516526777, 0.5046041853635624, 0.5095886579739544, 0.5145935433280195, 0.5195927943386469 ], [ 0.5116191061399682, 0.5086277116160727, 0.5056905756202432, 0.5028056320119567, 0.49997019312935476, 0.4971812674355712, 0.49443590757998784, 0.49173157481456886, 0.48906650462707696, 0.48644005815388314, 0.483853044403394, 0.48130799949441155, 0.4788094108905005, 0.47636387686503334, 0.47398019402341285, 0.4716693685003028, 0.46944454930979296, 0.4673208851378149, 0.4653153085265606, 0.4634462538229393, 0.4617333173739618, 0.46019687019085564, 0.4588576346229741, 0.457736237448971, 0.45685275219092003, 0.45622624339373125, 0.4558743251200329, 0.4558127450487367, 0.4560550044167732, 0.45661202270480716, 0.4574918545367349, 0.45869946482020674, 0.46023656675105434, 0.46210152594748866, 0.4642893326411766, 0.46679164247627974, 0.4695968849947918, 0.47269043727812116, 0.47605485847413626, 0.4796701791224835, 0.48351423740645955, 0.4875630528496439, 0.4917912266921442, 0.49617235735893855, 0.5006794591630288, 0.5052853727032995, 0.5099631562937647, 0.5146864491156176, 0.5194297984947367, 0.5241689456327117 ], [ 0.5143792757147837, 0.5115349468068922, 0.5087507775238149, 0.5060248179658592, 0.5033544457863899, 0.500736669990153, 0.49816846503157874, 0.49564712166594804, 0.49317059993614687, 0.4907378693600921, 0.4883492218095203, 0.4860065436817961, 0.483713535667169, 0.4814758705843824, 0.47930128226588903, 0.4771995811872635, 0.4751825953278071, 0.4732640375061554, 0.4714593030544529, 0.46978520408841845, 0.4682596487211308, 0.4669012752893163, 0.46572905295755535, 0.46476186089796034, 0.4640180585890539, 0.4635150596406808, 0.4632689209631475, 0.46329395812016916, 0.46360239642504814, 0.46420406586437096, 0.46510614637366726, 0.46631296844197206, 0.4678258725552267, 0.46964312963066124, 0.4717599233340435, 0.4741683939655906, 0.47685774239144735, 0.4798143912370791, 0.48302219922629575, 0.48646272316615435, 0.49011552070834546, 0.4939584857609171, 0.49796820739578346, 0.5021203424068251, 0.5063899914037495, 0.5107520685200102, 0.515181655463156, 0.5196543316919852, 0.5241464738797061, 0.5286355194069591 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
hartmann6: -0.0673179 (SEM: 0)
x1: 0.00500019
x2: 0.874178
x3: 0.246325
x4: 0.0464745
x5: 0.501489
x6: 0.957827", "Arm 10_0
hartmann6: -0.139477 (SEM: 0)
x1: 0.285348
x2: 0.344471
x3: 0.807655
x4: 0.350814
x5: 0.936768
x6: 0.256351", "Arm 11_0
hartmann6: -0.0654073 (SEM: 0)
x1: 0.0255972
x2: 0.359241
x3: 0.534968
x4: 0.538254
x5: 0.507815
x6: 0.0103999", "Arm 12_0
hartmann6: -0.455707 (SEM: 0)
x1: 0.673263
x2: 0.484185
x3: 0.434073
x4: 0.0235592
x5: 0.374813
x6: 0.824877", "Arm 13_0
hartmann6: -0.828721 (SEM: 0)
x1: 0.570419
x2: 0.467727
x3: 0.451646
x4: 0.0412614
x5: 0.358356
x6: 0.670113", "Arm 14_0
hartmann6: -1.05982 (SEM: 0)
x1: 0.578893
x2: 0.447142
x3: 0.475639
x4: 0.0895918
x5: 0.319048
x6: 0.624406", "Arm 15_0
hartmann6: -1.17634 (SEM: 0)
x1: 0.58632
x2: 0.428264
x3: 0.496297
x4: 0.132332
x5: 0.280331
x6: 0.581561", "Arm 16_0
hartmann6: -1.28544 (SEM: 0)
x1: 0.614484
x2: 0.353611
x3: 0.49863
x4: 0.156342
x5: 0.280051
x6: 0.561208", "Arm 17_0
hartmann6: -1.31589 (SEM: 0)
x1: 0.612976
x2: 0.291934
x3: 0.44681
x4: 0.149275
x5: 0.243753
x6: 0.563262", "Arm 18_0
hartmann6: -0.978163 (SEM: 0)
x1: 0.678597
x2: 0.265128
x3: 0.517192
x4: 0.116097
x5: 0.235119
x6: 0.558417", "Arm 19_0
hartmann6: -1.59089 (SEM: 0)
x1: 0.587128
x2: 0.295911
x3: 0.436473
x4: 0.187468
x5: 0.296084
x6: 0.551781", "Arm 1_0
hartmann6: -0.223056 (SEM: 0)
x1: 0.512245
x2: 0.489062
x3: 0.314054
x4: 0.0678942
x5: 0.563168
x6: 0.904405", "Arm 20_0
hartmann6: -1.80269 (SEM: 0)
x1: 0.546708
x2: 0.273753
x3: 0.401711
x4: 0.231875
x5: 0.328642
x6: 0.528128", "Arm 21_0
hartmann6: -1.79892 (SEM: 0)
x1: 0.537004
x2: 0.260776
x3: 0.355933
x4: 0.272078
x5: 0.349691
x6: 0.514127", "Arm 22_0
hartmann6: -2.06653 (SEM: 0)
x1: 0.485569
x2: 0.231123
x3: 0.403705
x4: 0.250465
x5: 0.343469
x6: 0.521525", "Arm 23_0
hartmann6: -2.40991 (SEM: 0)
x1: 0.427831
x2: 0.17197
x3: 0.43445
x4: 0.254316
x5: 0.335737
x6: 0.533183", "Arm 24_0
hartmann6: -2.75068 (SEM: 0)
x1: 0.361593
x2: 0.087317
x3: 0.466545
x4: 0.272066
x5: 0.315675
x6: 0.555154", "Arm 25_0
hartmann6: -2.84342 (SEM: 0)
x1: 0.298804
x2: 0.0166056
x3: 0.476615
x4: 0.290996
x5: 0.300872
x6: 0.572355", "Arm 26_0
hartmann6: -2.6478 (SEM: 0)
x1: 0.263035
x2: 0
x3: 0.5077
x4: 0.242947
x5: 0.314993
x6: 0.531817", "Arm 27_0
hartmann6: -2.8284 (SEM: 0)
x1: 0.320571
x2: 0.0399479
x3: 0.497476
x4: 0.343857
x5: 0.296859
x6: 0.604373", "Arm 28_0
hartmann6: -2.84664 (SEM: 0)
x1: 0.326197
x2: 9.4964e-19
x3: 0.427433
x4: 0.302079
x5: 0.299208
x6: 0.613003", "Arm 2_0
hartmann6: -0.413463 (SEM: 0)
x1: 0.731866
x2: 0.509426
x3: 0.367735
x4: 0.271838
x5: 0.43733
x6: 0.91647", "Arm 3_0
hartmann6: -7.46619e-05 (SEM: 0)
x1: 0.967263
x2: 0.655116
x3: 0.197203
x4: 0.75531
x5: 0.856316
x6: 0.985118", "Arm 4_0
hartmann6: -0.182484 (SEM: 0)
x1: 0.426973
x2: 0.688982
x3: 0.894953
x4: 0.0615389
x5: 0.43926
x6: 0.0651191", "Arm 5_0
hartmann6: -0.372979 (SEM: 0)
x1: 0.801046
x2: 0.583434
x3: 0.62531
x4: 0.934193
x5: 0.224422
x6: 0.996276", "Arm 6_0
hartmann6: -0.0031755 (SEM: 0)
x1: 0.248954
x2: 0.997674
x3: 0.1948
x4: 0.946118
x5: 0.616622
x6: 0.658008", "Arm 7_0
hartmann6: -0.0313259 (SEM: 0)
x1: 0.769907
x2: 0.797368
x3: 0.0479959
x4: 0.640898
x5: 0.977106
x6: 0.4298", "Arm 8_0
hartmann6: -0.249127 (SEM: 0)
x1: 0.315442
x2: 0.174175
x3: 0.769119
x4: 0.413574
x5: 0.639991
x6: 0.968338", "Arm 9_0
hartmann6: -0.0513974 (SEM: 0)
x1: 0.504292
x2: 0.902958
x3: 0.489927
x4: 0.937511
x5: 0.234177
x6: 0.479394" ], "type": "scatter", "x": [ 0.005000186152756214, 0.28534774389117956, 0.02559724450111389, 0.6732627264880868, 0.5704185639515666, 0.5788929442959532, 0.5863204280181247, 0.6144842401447831, 0.61297612641924, 0.6785971764678485, 0.5871277012272785, 0.5122449044138193, 0.5467075339617112, 0.5370042911982217, 0.4855692237413777, 0.4278305858635204, 0.36159312642398184, 0.29880443357331465, 0.26303539471407406, 0.3205711290269389, 0.3261971566620133, 0.7318663941696286, 0.9672631155699492, 0.4269726099446416, 0.801046334207058, 0.24895355477929115, 0.7699069436639547, 0.31544242426753044, 0.5042920913547277 ], "xaxis": "x", "y": [ 0.8741776347160339, 0.34447056986391544, 0.35924113634973764, 0.484185164700876, 0.46772671741689187, 0.44714209163123436, 0.42826389964633044, 0.3536107484553733, 0.2919338659362389, 0.2651282371799706, 0.295910898319476, 0.4890619143843651, 0.27375325986134913, 0.26077598501022686, 0.23112297528674897, 0.1719699250718645, 0.08731696580665907, 0.016605625132793345, 0.0, 0.039947903482525436, 9.496397417940653e-19, 0.5094257295131683, 0.6551159676164389, 0.6889820275828242, 0.5834340136498213, 0.9976742928847671, 0.7973677506670356, 0.17417488992214203, 0.9029575204476714 ], "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.0673179 (SEM: 0)
x1: 0.00500019
x2: 0.874178
x3: 0.246325
x4: 0.0464745
x5: 0.501489
x6: 0.957827", "Arm 10_0
hartmann6: -0.139477 (SEM: 0)
x1: 0.285348
x2: 0.344471
x3: 0.807655
x4: 0.350814
x5: 0.936768
x6: 0.256351", "Arm 11_0
hartmann6: -0.0654073 (SEM: 0)
x1: 0.0255972
x2: 0.359241
x3: 0.534968
x4: 0.538254
x5: 0.507815
x6: 0.0103999", "Arm 12_0
hartmann6: -0.455707 (SEM: 0)
x1: 0.673263
x2: 0.484185
x3: 0.434073
x4: 0.0235592
x5: 0.374813
x6: 0.824877", "Arm 13_0
hartmann6: -0.828721 (SEM: 0)
x1: 0.570419
x2: 0.467727
x3: 0.451646
x4: 0.0412614
x5: 0.358356
x6: 0.670113", "Arm 14_0
hartmann6: -1.05982 (SEM: 0)
x1: 0.578893
x2: 0.447142
x3: 0.475639
x4: 0.0895918
x5: 0.319048
x6: 0.624406", "Arm 15_0
hartmann6: -1.17634 (SEM: 0)
x1: 0.58632
x2: 0.428264
x3: 0.496297
x4: 0.132332
x5: 0.280331
x6: 0.581561", "Arm 16_0
hartmann6: -1.28544 (SEM: 0)
x1: 0.614484
x2: 0.353611
x3: 0.49863
x4: 0.156342
x5: 0.280051
x6: 0.561208", "Arm 17_0
hartmann6: -1.31589 (SEM: 0)
x1: 0.612976
x2: 0.291934
x3: 0.44681
x4: 0.149275
x5: 0.243753
x6: 0.563262", "Arm 18_0
hartmann6: -0.978163 (SEM: 0)
x1: 0.678597
x2: 0.265128
x3: 0.517192
x4: 0.116097
x5: 0.235119
x6: 0.558417", "Arm 19_0
hartmann6: -1.59089 (SEM: 0)
x1: 0.587128
x2: 0.295911
x3: 0.436473
x4: 0.187468
x5: 0.296084
x6: 0.551781", "Arm 1_0
hartmann6: -0.223056 (SEM: 0)
x1: 0.512245
x2: 0.489062
x3: 0.314054
x4: 0.0678942
x5: 0.563168
x6: 0.904405", "Arm 20_0
hartmann6: -1.80269 (SEM: 0)
x1: 0.546708
x2: 0.273753
x3: 0.401711
x4: 0.231875
x5: 0.328642
x6: 0.528128", "Arm 21_0
hartmann6: -1.79892 (SEM: 0)
x1: 0.537004
x2: 0.260776
x3: 0.355933
x4: 0.272078
x5: 0.349691
x6: 0.514127", "Arm 22_0
hartmann6: -2.06653 (SEM: 0)
x1: 0.485569
x2: 0.231123
x3: 0.403705
x4: 0.250465
x5: 0.343469
x6: 0.521525", "Arm 23_0
hartmann6: -2.40991 (SEM: 0)
x1: 0.427831
x2: 0.17197
x3: 0.43445
x4: 0.254316
x5: 0.335737
x6: 0.533183", "Arm 24_0
hartmann6: -2.75068 (SEM: 0)
x1: 0.361593
x2: 0.087317
x3: 0.466545
x4: 0.272066
x5: 0.315675
x6: 0.555154", "Arm 25_0
hartmann6: -2.84342 (SEM: 0)
x1: 0.298804
x2: 0.0166056
x3: 0.476615
x4: 0.290996
x5: 0.300872
x6: 0.572355", "Arm 26_0
hartmann6: -2.6478 (SEM: 0)
x1: 0.263035
x2: 0
x3: 0.5077
x4: 0.242947
x5: 0.314993
x6: 0.531817", "Arm 27_0
hartmann6: -2.8284 (SEM: 0)
x1: 0.320571
x2: 0.0399479
x3: 0.497476
x4: 0.343857
x5: 0.296859
x6: 0.604373", "Arm 28_0
hartmann6: -2.84664 (SEM: 0)
x1: 0.326197
x2: 9.4964e-19
x3: 0.427433
x4: 0.302079
x5: 0.299208
x6: 0.613003", "Arm 2_0
hartmann6: -0.413463 (SEM: 0)
x1: 0.731866
x2: 0.509426
x3: 0.367735
x4: 0.271838
x5: 0.43733
x6: 0.91647", "Arm 3_0
hartmann6: -7.46619e-05 (SEM: 0)
x1: 0.967263
x2: 0.655116
x3: 0.197203
x4: 0.75531
x5: 0.856316
x6: 0.985118", "Arm 4_0
hartmann6: -0.182484 (SEM: 0)
x1: 0.426973
x2: 0.688982
x3: 0.894953
x4: 0.0615389
x5: 0.43926
x6: 0.0651191", "Arm 5_0
hartmann6: -0.372979 (SEM: 0)
x1: 0.801046
x2: 0.583434
x3: 0.62531
x4: 0.934193
x5: 0.224422
x6: 0.996276", "Arm 6_0
hartmann6: -0.0031755 (SEM: 0)
x1: 0.248954
x2: 0.997674
x3: 0.1948
x4: 0.946118
x5: 0.616622
x6: 0.658008", "Arm 7_0
hartmann6: -0.0313259 (SEM: 0)
x1: 0.769907
x2: 0.797368
x3: 0.0479959
x4: 0.640898
x5: 0.977106
x6: 0.4298", "Arm 8_0
hartmann6: -0.249127 (SEM: 0)
x1: 0.315442
x2: 0.174175
x3: 0.769119
x4: 0.413574
x5: 0.639991
x6: 0.968338", "Arm 9_0
hartmann6: -0.0513974 (SEM: 0)
x1: 0.504292
x2: 0.902958
x3: 0.489927
x4: 0.937511
x5: 0.234177
x6: 0.479394" ], "type": "scatter", "x": [ 0.005000186152756214, 0.28534774389117956, 0.02559724450111389, 0.6732627264880868, 0.5704185639515666, 0.5788929442959532, 0.5863204280181247, 0.6144842401447831, 0.61297612641924, 0.6785971764678485, 0.5871277012272785, 0.5122449044138193, 0.5467075339617112, 0.5370042911982217, 0.4855692237413777, 0.4278305858635204, 0.36159312642398184, 0.29880443357331465, 0.26303539471407406, 0.3205711290269389, 0.3261971566620133, 0.7318663941696286, 0.9672631155699492, 0.4269726099446416, 0.801046334207058, 0.24895355477929115, 0.7699069436639547, 0.31544242426753044, 0.5042920913547277 ], "xaxis": "x2", "y": [ 0.8741776347160339, 0.34447056986391544, 0.35924113634973764, 0.484185164700876, 0.46772671741689187, 0.44714209163123436, 0.42826389964633044, 0.3536107484553733, 0.2919338659362389, 0.2651282371799706, 0.295910898319476, 0.4890619143843651, 0.27375325986134913, 0.26077598501022686, 0.23112297528674897, 0.1719699250718645, 0.08731696580665907, 0.016605625132793345, 0.0, 0.039947903482525436, 9.496397417940653e-19, 0.5094257295131683, 0.6551159676164389, 0.6889820275828242, 0.5834340136498213, 0.9976742928847671, 0.7973677506670356, 0.17417488992214203, 0.9029575204476714 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='hartmann6'))" ] }, { "cell_type": "code", "execution_count": 8, "metadata": { "execution": { "iopub.execute_input": "2022-09-15T17:10:21.273137Z", "iopub.status.busy": "2022-09-15T17:10:21.272744Z", "iopub.status.idle": "2022-09-15T17:10:21.983065Z", "shell.execute_reply": "2022-09-15T17:10:21.982138Z" } }, "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.9251791956407203, 0.9239988405206657, 0.923284246663316, 0.9230474650463676, 0.9232993652840371, 0.9240494731505668, 0.9253058040438455, 0.9270746971047263, 0.9293606571365313, 0.93216621452287, 0.9354918166609512, 0.9393357670237996, 0.943694228019373, 0.9485612989952551, 0.9539291695649269, 0.9597883324569374, 0.9661278249041056, 0.9729354601629938, 0.9801980142434593, 0.987901344751997, 0.9960304343167565, 1.004569367257999, 1.0135012623385478, 1.0228081930156236, 1.0324711270584006, 1.0424699103233248, 1.0527833081690674, 1.0633891061992813, 1.0742642624000187, 1.0853850965048917, 1.096727499704856, 1.108267148120633, 1.1199797059665753, 1.1318410081416908, 1.1438272162100043, 1.155914945655355, 1.1680813654281996, 1.1803042729166375, 1.192562148578718, 1.2048341947365218, 1.2171003627023973, 1.2293413717376533, 1.2415387225453944, 1.2536747072206134, 1.2657324169086515, 1.277695747893405, 1.2895494064517736, 1.3012789125524393, 1.312870602321755, 1.3243116291192407 ], [ 0.9269269154688969, 0.9257503322980429, 0.9250391050441882, 0.9248053179809691, 0.9250598758822208, 0.925812341504583, 0.927070769203572, 0.9288415395327114, 0.9311292021519071, 0.9339363374736681, 0.9372634508280149, 0.941108915518299, 0.9454689811175561, 0.9503378583451856, 0.9557078803357442, 0.9615697235644929, 0.9679126557160722, 0.9747247695015303, 0.9819931644487484, 0.9897040511052833, 0.9978427697663839, 1.0063937352408943, 1.0153403361799829, 1.0246648270324976, 1.034348249797856, 1.0443704129280693, 1.054709940530751, 1.0653443910521223, 1.0762504337942884, 1.0874040650657795, 1.098780843403533, 1.1103561244271236, 1.122105279484111, 1.1340038871997002, 1.1460278922873182, 1.1581537306403142, 1.1703584232510909, 1.182619643681586, 1.1949157647201705, 1.2072258897830759, 1.2195298739026652, 1.2318083381222145, 1.2440426800416264, 1.256215082293984, 1.2683085199566877, 1.2803067673327544, 1.292194404158398, 1.3039568210661738, 1.3155802240209438, 1.327051637411616 ], [ 0.9290955765680975, 0.9279249629638617, 0.9272188091361792, 0.9269892042149325, 0.9272470613509334, 0.9280019561584082, 0.9292619617733364, 0.931033485545605, 0.9333211148657145, 0.9361274826874868, 0.939453166544185, 0.9432966372412538, 0.9476542731311333, 0.952520450669377, 0.9578877104046464, 0.9637469811108755, 0.9700878286677599, 0.976898687305485, 0.9841670328584249, 0.9918794699784655, 1.000021724770767, 1.008578557119121, 1.0175336270816016, 1.0268693602246122, 1.0365668543092863, 1.0466058569384713, 1.0569648265557585, 1.067621073018107, 1.0785509619691078, 1.0897301604185303, 1.1011338990098314, 1.1127372285314427, 1.1245152530851492, 1.1364433286111382, 1.148497221874222, 1.1606532304867716, 1.1728882684420363, 1.185179923776987, 1.1975064955725578, 1.20984701695173, 1.2221812695337595, 1.23448979336463, 1.2467538949684582, 1.2589556550174261, 1.2710779362602282, 1.2831043917707743, 1.295019473233633, 1.3068084388124823, 1.3184573600977663, 1.3299531276547283 ], [ 0.931685051094483, 0.9305225643247648, 0.929823146533072, 0.929598864072637, 0.9298606128620892, 0.9306179588685584, 0.9318789759758268, 0.9336500864446581, 0.9359359116098553, 0.9387391433844257, 0.942060450112751, 0.945898432312936, 0.9502496431670913, 0.9551086832297349, 0.960468367563692, 0.9663199477616775, 0.9726533557064574, 0.9794574264991415, 0.9867200587959115, 0.9944282824946991, 1.0025682246342194, 1.0111249903300121, 1.020082498649267, 1.0294233246818905, 1.0391285950426161, 1.0491779683009297, 1.0595497116787036, 1.0702208670351832, 1.0811674859974414, 1.0923649069879104, 1.1037880454323425, 1.1154116715564217, 1.1272106564768456, 1.1391601751176987, 1.1512358622126218, 1.1634139239973331, 1.1756712124236306, 1.1879852707134837, 1.2003343591778892, 1.2126974690596415, 1.2250543303638513, 1.2373854177313457, 1.249671956722604, 1.2618959315702891, 1.274040094553079, 1.2860879765937474, 1.2980238984075063, 1.3098329814396912, 1.321501157862943, 1.3330151790000722 ], [ 0.934694272106193, 0.9335420336140683, 0.9328509797102498, 0.9326331279406063, 0.9328993334205723, 0.9336591324898524, 0.9349205847802764, 0.9366901190873478, 0.9389723907724008, 0.9417701611193949, 0.9450842116519278, 0.9489133078916647, 0.9532542258692418, 0.9581018491754552, 0.9634493336047389, 0.9692883217934718, 0.9756091756114702, 0.9824011845769077, 0.9896527083131232, 0.9973512220079146, 1.0054832556490831, 1.0140342461808876, 1.0229883471393018, 1.0323282523691413, 1.0420350850832156, 1.0520883852537026, 1.0624662055232699, 1.0731453054585476, 1.084101419586297, 1.0953095671485187, 1.1067443704430922, 1.1183803528641754, 1.1301921956870484, 1.1421549422413868, 1.1542441473524927, 1.1664359772059956, 1.1787072692739973, 1.191035563607686, 1.203399116234085, 1.2157769034490005, 1.2281486233047674, 1.2404946981706175, 1.2527962802510406, 1.2650352605116808, 1.2771942805574763, 1.2892567465318436, 1.3012068439352216, 1.3130295522845192, 1.3247106586648365, 1.336236769401122 ], [ 0.9381212739875526, 0.9369813800549975, 0.9363002993655971, 0.9360899770175555, 0.9363612066103035, 0.9371234782075792, 0.9383848259452006, 0.9401516808199628, 0.942428736371764, 0.9452188373587327, 0.9485229036251128, 0.9523399022433809, 0.95666687934247, 0.9614990574524949, 0.9668299941431346, 0.9726517843979754, 0.9789552757686504, 0.9857302562143467, 0.9929655736783511, 1.0006491567911735, 1.008767928260915, 1.0173076321696248, 1.0262526231221805, 1.035585677648189, 1.0452878820462268, 1.055338630748511, 1.065715744333052, 1.0763956940578177, 1.087353904076493, 1.0985650943842216, 1.1100036267420368, 1.121643821250236, 1.1334602210140396, 1.1454277939820516, 1.1575220719704795, 1.169719235136325, 1.1819961547920006, 1.1943304085981985, 1.2067002807145513, 1.219084756593566, 1.2314635188190446, 1.243816947436472, 1.2561261259555538, 1.2683728526979015, 1.2805396563175004, 1.2926098139715052, 1.3045673705928869, 1.3163971578747762, 1.3280848118189859, 1.3396167879639926 ], [ 0.9419632328804304, 0.9408377701284433, 0.9401682747645936, 0.9399665988706337, 0.9402434573340153, 0.9410082812049474, 0.9422690720551292, 0.9440322629500041, 0.9463025936058821, 0.9490830093203421, 0.9523745948341074, 0.9561765545636078, 0.9604862485238307, 0.9652992877128055, 0.9706096834409768, 0.9764100331327721, 0.9826917131313263, 0.9894450406564083, 0.9966593661983959, 1.004323067656403, 1.01242343954122, 1.0209465002673666, 1.0298767674243585, 1.0391970634317913, 1.0488884074309597, 1.0589300281720126, 1.0692995062028825, 1.0799730297331585, 1.0909257313416192, 1.102132063692565, 1.1135661717163252, 1.1252022253451834, 1.1370146887368207, 1.1489785158700723, 1.161069275212585, 1.1732632153958682, 1.1855372884567805, 1.1978691475878245, 1.2102371337597118, 1.2226202615762167, 1.2349982105777193, 1.2473513247310208, 1.2596606203559584, 1.2719078012322453, 1.284075278911841, 1.2961461960902276, 1.3081044510439437, 1.3199347214556538, 1.3316224863120727, 1.343154044910944 ], [ 0.9462165040967516, 0.94510756801724, 0.9444512969968213, 0.9442594330835058, 0.9445425991678964, 0.9453101587065434, 0.9465700778365529, 0.9483287954718354, 0.9505911086695366, 0.9533600821647341, 0.95663699200661, 0.9604213129522605, 0.9647107567944693, 0.9695013633738954, 0.9747876375374701, 0.980562714714899, 0.9868185272793577, 0.9935459365896648, 1.000734795257547, 1.0083739141426245, 1.0164509299487314, 1.0249520979269322, 1.033862060112976, 1.0431636517392517, 1.0528378020497668, 1.0628635645580755, 1.0732182845545468, 1.0838778863033693, 1.0948172435044317, 1.106010586383773, 1.1174318979598579, 1.129055259919168, 1.1408551226672816, 1.1528064906534117, 1.1648850289165849, 1.177067106987552, 1.1893298007024165, 1.2016508718430956, 1.214008741592229, 1.226382468542782, 1.238751736967478, 1.2510968570919674, 1.2633987764870445, 1.2756391002724816, 1.2878001173034397, 1.2998648295654893, 1.3118169823669277, 1.3236410933996652, 1.3353224792281713, 1.3468472782018992 ], [ 0.950876654225304, 0.9497863686831753, 0.9491450123586087, 0.9489642040106052, 0.9492544652253322, 0.950025087304647, 0.951284001872253, 0.9530376606533026, 0.9552909312895912, 0.9580470172452888, 0.9613074103882908, 0.9650718840746813, 0.9693385318296773, 0.9741038514990951, 0.9793628670673189, 0.9851092710825223, 0.9913355616688634, 0.9980331422038241, 1.005192352246649, 1.0128024082955105, 1.020851253256461, 1.0293253402167468, 1.0382094002601412, 1.0474862556426159, 1.057136733742213, 1.067139716713248, 1.0774723344742718, 1.0881102821347626, 1.0990282223075472, 1.110200221056977, 1.1216001651355794, 1.1332021173270532, 1.1449805833236248, 1.1569106828819142, 1.1689682349720205, 1.181129777674311, 1.1933725475670593, 1.2056744414211304, 1.2180139775454533, 1.230370267551036, 1.2427230033903145, 1.2550524601619295, 1.2673395124988487, 1.2795656611064474, 1.2917130657563334, 1.3037645813628702, 1.3157037943588525, 1.3275150572422412, 1.3391835197747393, 1.3506951558261113 ], [ 0.9559384865696836, 0.9548690222224263, 0.9542443446010211, 0.9540759395965129, 0.9543742218857716, 0.9551484095621962, 0.9564064036584821, 0.9581546777658261, 0.9603981840552632, 0.9631402827976945, 0.966382702558831, 0.9701255371034354, 0.9743672821642363, 0.9791049102952212, 0.9843339751717661, 0.9900487287511135, 0.9962422273124341, 1.0029063979879407, 1.0100320389022248, 1.0176087360146346, 1.0256246986622872, 1.0340665400425673, 1.0429190506961308, 1.0521650237350566, 1.0617851853909204, 1.0717582653006517, 1.0820612142048487, 1.092669549358789, 1.103557785487353, 1.1146998957770864, 1.1260697459022666, 1.137641454528357, 1.1493896529167782, 1.161289638443893, 1.1733174359139888, 1.1854497922765268, 1.1976641336664735, 1.2099385102488596, 1.2222515472015716, 1.234582412250984, 1.2469108034581706, 1.259216956289129, 1.271481666391874, 1.2836863235041893, 1.2958129519660897, 1.3078442539220532, 1.3197636521200768, 1.3315553300375704, 1.3432042677835339, 1.354696272806555 ], [ 0.9613960595197404, 0.9603496493480096, 0.9597435062716552, 0.9595889770453627, 0.9598963669592565, 0.9606748225354931, 0.9619322200669937, 0.9636750648421669, 0.9659084066998538, 0.9686357779808937, 0.9718591596435001, 0.9755789798850747, 0.9797941466958762, 0.9845021111892863, 0.9896989525307212, 0.9953794686153488, 1.0015372507943305, 1.008164718029639, 1.0152530883212358, 1.0227922750744811, 1.0307707133470676, 1.0391751424156448, 1.0479903903227425, 1.0571992156643777, 1.0667822575189958, 1.076718126960681, 1.086983647890258, 1.0975542270557648, 1.108404309036309, 1.1195078570251433, 1.1308387983207668, 1.1423713851082133, 1.1540804428078097, 1.1659415032349245, 1.1779308408090956, 1.1900254422401022, 1.2022029425212872, 1.2144415549667698, 1.2267200141798738, 1.2390175416486087, 1.2513138362646579, 1.2635890872269926, 1.275824004341916, 1.2879998600468205, 1.300098537875189, 1.3121025829862194, 1.323995251428442, 1.3357605557834302, 1.3473833056509805, 1.3588491420706437 ], [ 0.9672426983379365, 0.9662216489004403, 0.9656360006236262, 0.9654969575765866, 0.9658147155165075, 0.9665983527112718, 0.9678557272791, 0.9695933854375209, 0.9718164855708248, 0.974528743126781, 0.9777324007541865, 0.9814282264865947, 0.9856155399205933, 0.9902922621760228, 0.995454980246395, 1.0010990109118876, 1.0072184450005695, 1.0138061512389405, 1.0208537221983558, 1.0283513543435039, 1.0362876697101193, 1.04464950544879, 1.0534217140329185, 1.0625870253321452, 1.0721260181246455, 1.0820172329529274, 1.0922374338509466, 1.1027619985553925, 1.1135653915188304, 1.124621657792818, 1.1359048735633537, 1.1473895018975853, 1.159050626212035, 1.170864061386789, 1.182806365029891, 1.1948547837575365, 1.2069871706861737, 1.219181903561847, 1.2314178225010406, 1.2436741960172366, 1.2559307160920885, 1.2681675181736463, 1.280365219775363, 1.2925049710133871, 1.304568511152235, 1.3165382264146337, 1.3283972055602256, 1.3401292908467923, 1.3517191228815568, 1.3631521785438003 ], [ 0.973471001539456, 0.9724776990785681, 0.971914616440877, 0.9717928134419745, 0.9721223775773259, 0.9729123227780653, 0.9741704950575301, 0.9759034889216853, 0.978116578680048, 0.9808136686300408, 0.9839972652701365, 0.9876684730042229, 0.9918270120898368, 0.9964712538930476, 1.0015982641748795, 1.0072038408658093, 1.0132825297322838, 1.0198276009827796, 1.02683097371635, 1.0342830841334298, 1.042172707177673, 1.0504867573080616, 1.0592101081064473, 1.0683254775757045, 1.0778134228771865, 1.0876524742172422, 1.0978194146821338, 1.108289685342912, 1.1190378691199399, 1.1300381898674652, 1.1412649606839507, 1.1526929291427512, 1.164297492869799, 1.1760547881675862, 1.1879416780287642, 1.1999356780980146, 1.2120148593279032, 1.2241577577585947, 1.2363433100361887, 1.2485508221236756, 1.2607599704200017, 1.2729508297015217, 1.285103920378814, 1.2972002675735, 1.3092214655692023, 1.3211497426227317, 1.3329680225414244, 1.3446599806486634, 1.3562100927130707, 1.3676036761190606 ], [ 0.9800728435103565, 0.9791097545607618, 0.9785714185907417, 0.9784687507801475, 0.9788117321266381, 0.979609315718094, 0.9808693399664056, 0.9825984521162137, 0.9848020453898324, 0.9874842127608805, 0.990647719390772, 0.9942939940682061, 0.9984231375001982, 1.003033942119503, 1.0081239145517653, 1.0136892886905424, 1.0197250154413346, 1.0262247158049653, 1.0331805881955651, 1.040583269298974, 1.0484216598115534, 1.0566827399637464, 1.065351411382437, 1.074410407718097, 1.0838403135894665, 1.0936197186764507, 1.1037255123634186, 1.1141332977956984, 1.1248178786411505, 1.1357537547527214, 1.146915560602784, 1.1582783947230622, 1.1698180152297297, 1.181510906822374, 1.1933342486850596, 1.2052658244668908, 1.217283914608532, 1.2293672017065753, 1.2414947067904467, 1.2536457626748772, 1.2658000221886374, 1.2779374944430546, 1.2900386006788669, 1.30208424155451, 1.3140558690548674, 1.325935557829319, 1.3377060723198508, 1.349350927335941, 1.3608544407287553, 1.3722017775373798 ], [ 0.9870393752327546, 0.9861090418594379, 0.9855977371941432, 0.9855162318154701, 0.9858744016385929, 0.9866811411076881, 0.9879442831364392, 0.9896705285379536, 0.9918653875593639, 0.9945331356216461, 0.9976767843385095, 1.0012980672639813, 1.0053974375985772, 1.0099740724196333, 1.015025875249822, 1.0205494665375432, 1.0265401507134846, 1.0329918498348034, 1.0398969982224822, 1.0472464002218675, 1.0550290636450073, 1.0632320328103944, 1.0718402546215033, 1.080836515712057, 1.0902014857508167, 1.0999138902429362, 1.1099508161777811, 1.120288128731301, 1.1309009527345992, 1.141764156239133, 1.1528527716752726, 1.1641423048754818, 1.1756089094029147, 1.187229434000737, 1.198981374664215, 1.2108427738315133, 1.222792107336572, 1.2348081893448428, 1.24687011212228, 1.2589572255659913, 1.27104915312588, 1.2831258363291864, 1.2951675987634528, 1.3071552209472266, 1.3190700190309608, 1.3308939220403266, 1.342609544016272, 1.3542002487548723, 1.365650205872952, 1.376944437656806 ], [ 0.9943610249955306, 0.9934660551645089, 0.9929841580767231, 0.9929259594875478, 0.9933012306097889, 0.9941188075015156, 0.9953865167410125, 0.9971111095706648, 0.9992982064352229, 1.0019522532349467, 1.0050764895807385, 1.0086729278407522, 1.0127423398532918, 1.0172842460279845, 1.022296899509641, 1.0277772566606278, 1.0337209249957233, 1.0401220815766423, 1.0469733592701518, 1.054265705273185, 1.0619882252660335, 1.070128035964369, 1.0786701564682613, 1.0875974721186756, 1.096890801335095, 1.1065290848246438, 1.11648969796375, 1.126748863792733, 1.1372821213566027, 1.148064789183794, 1.159072362696854, 1.1702807992623339, 1.1816666712631958, 1.1932071970246358, 1.2048801820234993, 1.2166639128217274, 1.2285370436052134, 1.2404785044184916, 1.252467446741725, 1.2644832302618978, 1.2765054466165637, 1.2885139717143765, 1.300489037094521, 1.3124113115275984, 1.3242619856915678, 1.3360228546046078, 1.3476763941867291, 1.3592058296986567, 1.3705951948442623, 1.38182938105998 ], [ 1.002027500809492, 1.0011705546543075, 1.0007205167312905, 1.000687866964308, 1.0010822707192217, 1.0019125035893588, 1.0031863818072428, 1.0049106999396162, 1.0070911771773345, 1.0097324128862908, 1.0128378510962506, 1.0164097522725182, 1.0204491691213906, 1.0249559215115835, 1.0299285641698483, 1.035364340075026, 1.0412591129602753, 1.047607274547667, 1.054401626410043, 1.0616332426202981, 1.0692913269739142, 1.0773630862688894, 1.0858336470607615, 1.0946860453874887, 1.1039013152757753, 1.1134586912415412, 1.1233359227920476, 1.1335096776485485, 1.143955990032804, 1.1546506974151034, 1.1655698092058455, 1.1766897656454915, 1.1879875705865237, 1.1994408095023614, 1.2110275849481695, 1.222726410573093, 1.2345161017900657, 1.246375690524183, 1.2582843783972608, 1.2702215313421275, 1.282166710922651, 1.2940997337054054, 1.3060007490333796, 1.3178503263698806, 1.3296295450501323, 1.3413200811434085, 1.352904287828146, 1.3643652670642314, 1.3756869313890083, 1.3868540554040598 ], [ 1.010027795973087, 1.0092115688608259, 1.008795897482451, 1.0087911137739347, 1.009206774306723, 1.0100515896523132, 1.0113333585665611, 1.0130589081770467, 1.0152340409604943, 1.0178634886527682, 1.020950872326888, 1.024498666732813, 1.0285081657165298, 1.0329794443107643, 1.0379113122003931, 1.0433012530829, 1.049145345374914, 1.055438162117976, 1.0621726519855246, 1.0693400088346154, 1.0769295436693083, 1.0849285790744734, 1.0933223906049936, 1.1020942205360713, 1.1112253852101148, 1.1206954870294397, 1.1304827263451493, 1.140564289468644, 1.150916771322623, 1.1615165806184589, 1.1723402767065179, 1.1833648016001297, 1.1945675942829037, 1.205926599585283, 1.217420202658468, 1.2290271277472427, 1.2407263367945864, 1.2524969532393107, 1.2643182240628192, 1.2761695224524021, 1.2880303861847342, 1.2998805831372438, 1.311700194417246, 1.3234697064118544, 1.3351701046949431, 1.3467829645559077, 1.3582905345882503, 1.3696758111439786, 1.3809226024980743, 1.3920155823093352 ], [ 1.0183501989025834, 1.0175774022388973, 1.0171986389846457, 1.0172240895925755, 1.0176631970122787, 1.0185245998406236, 1.0198160693947722, 1.0215444514800682, 1.0237156132103915, 1.0263343946280947, 1.029404564071238, 1.0329287752953213, 1.0369085233820075, 1.0413440956341449, 1.0462345132128343, 1.0515774595152327, 1.0573691925284088, 1.0636044408592418, 1.0702762868997084, 1.0773760454255397, 1.0848931512638644, 1.0928150745311045, 1.101127285038944, 1.1098132873532038, 1.118854743387159, 1.1282316896606517, 1.1379228420087397, 1.1479059638596727, 1.1581582592781627, 1.1686567437293722, 1.1793785478834367, 1.1903011234533754, 1.201402341440664, 1.2126604954859184, 1.2240542393933471, 1.235562494385534, 1.2471643585137981, 1.2588390412908377, 1.2705658353353777, 1.2823241269789258, 1.2940934410431706, 1.3058535115204135, 1.3175843689946878, 1.329266436380694, 1.3408806260940485, 1.3524084335120459, 1.3638320232009975, 1.3751343057235745, 1.3862990038661176, 1.3973107078682272 ], [ 1.026982307995172, 1.0262556486613723, 1.02591634666756, 1.0259744261151822, 1.0264392097206976, 1.0273192550206025, 1.0286222935633995, 1.0303551735184269, 1.032523805724982, 1.035133112652528, 1.0381869790664666, 1.0416882024524423, 1.045638440553306, 1.0500381528760003, 1.0548865329391115, 1.0601814285902886, 1.0659192491457932, 1.0720948605347642, 1.0787014730531481, 1.0857305304960132, 1.0931716137958791, 1.1010123759960573, 1.1092385273361696, 1.117833888239778, 1.126780523081865, 1.136058958384468, 1.1456484762387844, 1.155527459443154, 1.1656737526405374, 1.176064997747742, 1.186678905236062, 1.1974934355890434, 1.2084868842175525, 1.2196378824591583, 1.230925341269285, 1.242328369594828, 1.2538261964797317, 1.2653981175844398, 1.277023476706109, 1.2886816839972801, 1.3003522663999045, 1.3120149425472885, 1.3236497134752312, 1.3352369611019266, 1.3467575478303524, 1.3581929122540077, 1.3695251574829077, 1.3807371298993094, 1.3918124871600674, 1.4027357550032724 ], [ 1.0359110519697476, 1.035233211181825, 1.0349359123079818, 1.0350290169544256, 1.0355217194396067, 1.0364224854108286, 1.0377389925194824, 1.0394780733124576, 1.0416456601193937, 1.0442467312360861, 1.0472852571566158, 1.0507641450538587, 1.054685179252555, 1.0590489552206397, 1.0638548047941747, 1.0691007111273114, 1.0747832133716073, 1.0808973034091423, 1.0874363200204966, 1.0943918493914855, 1.1017536443433185, 1.109509577363494, 1.1176456434986661, 1.1261460274961212, 1.1349932445216149, 1.1441683551830175, 1.1536512442589661, 1.1634209404830607, 1.173455945030981, 1.183734532325558, 1.1942349906693233, 1.2049357819004851, 1.2158156157697053, 1.2268534511973959, 1.2380284482989816, 1.2493198994707209, 1.260707165172421, 1.2721696327343608, 1.2836867076527279, 1.2952378389335881, 1.3068025744399332, 1.3183606391393348, 1.3298920282024316, 1.3413771073714083, 1.3527967142411732, 1.3641322555797382, 1.3753657972506923, 1.386480144536332, 1.3974589116414213, 1.4082865798941206 ], [ 1.0451227158487668, 1.0444963280945538, 1.044243540571847, 1.0443740451670631, 1.0448968984034053, 1.0458204619299794, 1.0471523441860997, 1.048899343193602, 1.0510673900945626, 1.05366149265418, 1.0566856775274018, 1.0601429297062435, 1.0640351273169424, 1.0683629699397246, 1.073125899016727, 1.0783220098243058, 1.0839479560110148, 1.0899988498574777, 1.0964681640907625, 1.1033476440089334, 1.1106272413737763, 1.1182950833653154, 1.1263374900974186, 1.134739052028166, 1.1434827735648443, 1.1525502812991961, 1.1619220854808665, 1.1715778733786963, 1.1814968056679847, 1.1916577845420286, 1.2020396664730069, 1.2126214030469213, 1.2233821074503275, 1.2343010579992335, 1.2453576598146778, 1.2565313893268915, 1.2678017439658575, 1.2791482131303271, 1.2905502788674985, 1.3019874477559654, 1.3134393104494264, 1.3248856224867196, 1.3363063989866542, 1.3476820161559346, 1.3589933135776393, 1.3702216925734685, 1.381349207257247, 1.392358646064992, 1.4032336024965353, 1.4139585345316183 ], [ 1.0546029725180484, 1.054030605084708, 1.0538247821351914, 1.0539950177901323, 1.0545502205179496, 1.055498635067278, 1.0568477847646256, 1.058604413987239, 1.060774430336785, 1.0633628457260145, 1.066373715287678, 1.0698100727839819, 1.0736738611171635, 1.0779658567161279, 1.0826855871048, 1.0878312419358767, 1.0933995792501774, 1.099385830673914, 1.1057836115629245, 1.1125848444737674, 1.1197797063665558, 1.1273566110711302, 1.135302238157064, 1.143601616880006, 1.1522382690250277, 1.1611944074108038, 1.1704511784327214, 1.179988928930226, 1.1897874719920907, 1.199826325083375, 1.2100848981711985, 1.220542618796888, 1.2311789930341137, 1.241973612746632, 1.2529061275425004, 1.2639562027247844, 1.275103482561748, 1.2863275729094772, 1.2976080506809315, 1.3089245016254147, 1.320256583395068, 1.3315841082276203, 1.342887138554038, 1.3541460889945252, 1.3653418290596435, 1.376455782035272, 1.3874700167341831, 1.3983673298893236, 1.4091313178755984, 1.41974643716151 ], [ 1.0643369196290635, 1.0638210530961696, 1.0636645728465781, 1.0638768066586926, 1.0644665042060728, 1.0654417801119749, 1.0668100566518035, 1.0685780058250474, 1.070751490288832, 1.0733355024132252, 1.0763341005225615, 1.0797503412825566, 1.0835862072504525, 1.087842528902895, 1.0925189010708232, 1.0976135947014187, 1.1031234662510172, 1.1090438687408588, 1.1153685704364975, 1.122089688985945, 1.1291976503003036, 1.1366811820204918, 1.1445273505943536, 1.1527216483854066, 1.1612481326901778, 1.170089612326166, 1.17922787040567, 1.1886439054341953, 1.198318168685037, 1.2082307754330435, 1.2183616717776453, 1.2286907468416821, 1.2391978901937217, 1.2498630038078171, 1.2606659844113293, 1.2715866944421916, 1.2826049382002818, 1.2937004553688518, 1.3048529385554646, 1.3160420763051082, 1.3272476190650118, 1.3384494631365134, 1.34962774660728, 1.3607629512703312, 1.3718360052109997, 1.3828283817423368, 1.3937221914496063, 1.4045002651160023, 1.4151462261690486, 1.4256445519843537 ], [ 1.0743091214877998, 1.0738521314411185, 1.0737472783192423, 1.07400369474641, 1.0746299607445267, 1.0756340476882202, 1.0770232612940522, 1.078804183322447, 1.0809826114970444, 1.0835634969893533, 1.086550878713181, 1.089947813672413, 1.09375630276436, 1.0979772118208966, 1.1026101883234056, 1.1076535751894911, 1.1131043242908856, 1.1189579138580685, 1.1252082755110522, 1.1318477380940888, 1.1388669964635465, 1.1462551135029813, 1.1539995625403325, 1.1620863147411886, 1.1704999719024491, 1.1792239396913275, 1.188240630535661, 1.1975316802558853, 1.2070781595025097, 1.2168607612617892, 1.2268599495446515, 1.2370560612758665, 1.2474293617725338, 1.2579600619750197, 1.2686283109424334, 1.2794141790837257, 1.2902976462786933, 1.3012586054129123, 1.3122768872198167, 1.3233323078744792, 1.3344047372866235, 1.345474183795558, 1.356520889921537, 1.367525433717039, 1.3784688307716217, 1.3893326327662041, 1.400099019429101, 1.41075088167326, 1.4212718945117733, 1.4316465790237531 ], [ 1.0845036554948395, 1.0841077956191219, 1.0840567433182842, 1.0843594272925035, 1.0850242472628175, 1.0860590186923875, 1.0874709160349723, 1.0892664141828128, 1.091451227664963, 1.094030247057454, 1.0970074720400407, 1.100385940614353, 1.104167654228705, 1.1083534989823223, 1.112943163740341, 1.1179350568935709, 1.123326224619762, 1.1291122747699616, 1.1352873117742952, 1.141843889026682, 1.1487729857961255, 1.156064015519772, 1.1637048710775468, 1.1716820101524417, 1.1799805800743377, 1.1885845769608636, 1.19747702919055, 1.2066401912472424, 1.2160557318295264, 1.2257049006576504, 1.2355686618783726, 1.2456277878055841, 1.2558629136519939, 1.2662545602707427, 1.2767831363080826, 1.2874289328107702, 1.2981721223066602, 1.3089927714232088, 1.3198708722591972, 1.330786393941119, 1.3417193527334226, 1.3526498970226364, 1.3635584024556218, 1.3744255722982857, 1.3852325384425779, 1.3959609591847477, 1.4065931107332406, 1.417111970245225, 1.4275012889547476, 1.4377456546032361 ], [ 1.0949041626550509, 1.0945715492912587, 1.0945763453184263, 1.094927267029626, 1.0956325236749018, 1.0966997628869442, 1.0981360142312315, 1.0999476305741918, 1.1021402268901812, 1.104718616095113, 1.1076867415305887, 1.1110476058614556, 1.114803196426782, 1.1189544075317166, 1.1235009608042175, 1.128441325565035, 1.1337726421362022, 1.1394906520636445, 1.1455896402236265, 1.1520623945367503, 1.158900189304756, 1.1660927977752422, 1.173628538225546, 1.1814943555369255, 1.1896759369819916, 1.1981578570948759, 1.206923742624619, 1.2159564454789646, 1.2252382100730879, 1.234750822210364, 1.2444757296654756, 1.2543941295206786, 1.2644870229850793, 1.2747352436216752, 1.2851194685039298, 1.2956202232204435, 1.3062178908793323, 1.31689273289031, 1.3276249261288742, 1.3383946178886101, 1.3491819973614119, 1.3599673805260448, 1.3707313043093654, 1.3814546255885385, 1.3921186208338583, 1.4027050827517598, 1.4131964110067827, 1.4235756948548213, 1.4338267862274126, 1.443934362422062 ], [ 1.1054939016508423, 1.1052264998535257, 1.1052890516349663, 1.1056900528879068, 1.1064375129129942, 1.1075389005439764, 1.1090010880917056, 1.110830292841703, 1.113032015809501, 1.1156109774721075, 1.1185710502774204, 1.121915187913649, 1.1256453516232434, 1.129762434291289, 1.134266183634973, 1.139155126555584, 1.1444264975473721, 1.1500761749102086, 1.1560986292689306, 1.162486889405099, 1.169232530476498, 1.1763256891545857, 1.183755108909259, 1.1915082165676687, 1.199571228472419, 1.2079292813632176, 1.216566580001137, 1.225466551177382, 1.2346119927291699, 1.2439852069568913, 1.2535681104521672, 1.26334231638447, 1.2732891899281262, 1.2833898817416913, 1.2936253473677588, 1.3039763616239144, 1.3144235365089627, 1.3249473492671748, 1.3355281846591356, 1.3461463928030466, 1.356782361642467, 1.3674166014218658, 1.3780298375724382, 1.3886031080530892, 1.39911786131221, 1.4095560514735326, 1.4199002279587627, 1.4301336174278203, 1.4402401965650662, 1.4502047548195502 ], [ 1.1162558059631673, 1.1160554170629673, 1.1161774795619699, 1.1166302616067516, 1.1174215639154101, 1.1185586666392004, 1.1200482738243671, 1.121896455262863, 1.12410858552573, 1.1266892800242776, 1.1296423280621997, 1.1329706230474446, 1.136676090343279, 1.1407596136663873, 1.1452209614840299, 1.1500587155045865, 1.155270204051758, 1.1608514437904867, 1.1667970938289947, 1.1731004265269562, 1.179753319251571, 1.1867462707067253, 1.194068444223031, 1.201707738528882, 1.2096508841394251, 1.2178835608670675, 1.2263905294829216, 1.235155768742128, 1.2441626083020851, 1.2533938488203757, 1.2628318627277926, 1.2724586724810933, 1.2822560068603828, 1.2922053393101398, 1.3022879147542326, 1.3124847723577762, 1.3227767713452057, 1.3331446255135637, 1.343568949979742, 1.3540303214626361, 1.3645093514181013, 1.3749867698479532, 1.3854435166749248, 1.3958608371764745, 1.4062203779995028, 1.4165042806073918, 1.4266952695187238, 1.4367767332817172, 1.4467327967150834, 1.4565483834863602 ], [ 1.1271725435214166, 1.127040794181914, 1.1272239589802338, 1.1277300717308165, 1.1285667168798021, 1.1297409771681965, 1.1312593787517757, 1.1331278336274047, 1.1353515792492077, 1.1379351152974833, 1.1408821377047926, 1.1441954702613641, 1.1478769944286058, 1.1519275783894969, 1.1563470068507646, 1.1611339136624435, 1.166285719891605, 1.1717985805138715, 1.1776673432798712, 1.1838855234692942, 1.1904452980512674, 1.197337522129382, 1.2045517694067067, 1.2120763967745687, 1.2198986311241935, 1.2280046743311375, 1.2363798204023597, 1.245008577392335, 1.2538747862441213, 1.2629617294120075, 1.2722522239595093, 1.2817286965152492, 1.2913732405034701, 1.301167658844825, 1.311093497321471, 1.3211320747071398, 1.3312645155449705, 1.3414717903246103, 1.3517347661256212, 1.3620342689445832, 1.3723511572316494, 1.3826664048370731, 1.392961190699046, 1.4032169921816608, 1.4134156789284698, 1.423539604332701, 1.4335716921407329, 1.4434955162101697, 1.4532953719697894, 1.4629563386267725 ], [ 1.138226578363582, 1.1381649111163097, 1.1384105969176412, 1.1389714294949413, 1.1398547703273707, 1.1410674971919215, 1.1426159500857112, 1.144505874437233, 1.146742361575371, 1.1493297865249354, 1.15227174335208, 1.1555709785037036, 1.1592293228777426, 1.1632476237264493, 1.1676256779211203, 1.1723621685708248, 1.1774546074483938, 1.1828992860764176, 1.1886912385904973, 1.1948242195419372, 1.201290699543231, 1.2080818810296021, 1.2151877353773939, 1.2225970612140256, 1.230297562083213, 1.2382759398864125, 1.2465179989744608, 1.255008754711517, 1.2637325400415877, 1.2726731042093407, 1.2818136992950273, 1.291137152391291, 1.300625923684085, 1.3102621529412342, 1.3200276985514747, 1.3299041740449338, 1.3398729869185662, 1.3499153837343385, 1.3600125041201454, 1.3701454447873085, 1.3802953332473997, 1.3904434097494198, 1.400571115156743, 1.4106601820545865, 1.4206927262798024, 1.4306513362220143, 1.4405191575774943, 1.4502799716676371, 1.4599182658994518, 1.4694192954000675 ], [ 1.1494002337881537, 1.149409899029874, 1.1497193435554147, 1.1503361161163426, 1.151267349535338, 1.1525197102231954, 1.15409934504239, 1.1560118254914171, 1.1582620892572193, 1.1608543792958612, 1.1637921807622746, 1.1670781563257409, 1.1707140806808578, 1.1747007753908778, 1.179038045568182, 1.183724620281841, 1.1887580989471649, 1.1941349062472582, 1.1998502583007487, 1.2058981427569786, 1.2122713152073694, 1.2189613137038298, 1.225958492258983, 1.233252073004408, 1.2408302153002089, 1.2486800986825874, 1.2567880153179454, 1.2651394668314697, 1.273719260191663, 1.2825115978658843, 1.291500158685974, 1.300668167597845, 1.3099984544123868, 1.3194735034757303, 1.3290754975180323, 1.3387863596218648, 1.3485877972246456, 1.358461351432902, 1.3683884538742945, 1.3783504920811258, 1.3883288831988907, 1.3983051548051648, 1.4082610308962646, 1.418178520677705, 1.4280400076564697, 1.4378283366264073, 1.4475268963978571, 1.4571196964842144, 1.4665914363661634, 1.475927566364495 ], [ 1.1606757564784231, 1.1607578059179149, 1.1611320591759693, 1.1618058160118252, 1.162785975888522, 1.1640789885483105, 1.1656908019443928, 1.167626807560955, 1.1698917832381912, 1.172489833739362, 1.1754243294574787, 1.1786978438651978, 1.1823120905608893, 1.18626786105262, 1.1905649647345378, 1.1952021728252957, 1.2001771683222742, 1.2054865042361649, 1.2111255724592744, 1.217088585535894, 1.223368573299129, 1.2299573957865688, 1.2368457730454299, 1.244023331425213, 1.2514786648173004, 1.2591994081693791, 1.2671723196433686, 1.2753833671745485, 1.2838178150701605, 1.2924603067323432, 1.301294940573291, 1.3103053375687745, 1.3194747004404186, 1.3287858658972593, 1.3382213524612947, 1.3477634069870663, 1.357394053014738, 1.3670951436301453, 1.3768484206868792, 1.3866355812518805, 1.3964383511386365, 1.4062385645261066, 1.416018248009987, 1.425759707030121, 1.4354456124555237, 1.4450590851510696, 1.454583776547746, 1.464003943538571, 1.4733045163750613, 1.4824711586061183 ], [ 1.1720353810782536, 1.1721906626225733, 1.1726305815441385, 1.173362185448913, 1.174392136682562, 1.1757266640456732, 1.1773715119046861, 1.1793318867825318, 1.1816124016054848, 1.1842170179055813, 1.1871489864346638, 1.1904107868380334, 1.194004067260667, 1.1979295850098408, 1.2021871496608407, 1.2067755702468725, 1.211692608391039, 1.216934939383154, 1.2224981232373788, 1.228376587649475, 1.2345636244729141, 1.2410514008332687, 1.2478309853066818, 1.2548923887378962, 1.2622246183399792, 1.269815742808193, 1.2776529654247202, 1.2857227016608763, 1.2940106577057542, 1.3025019067153265, 1.311180960357274, 1.3200318343150947, 1.3290381076352846, 1.338182976949075, 1.3474493074885172, 1.3568196833156867, 1.3662764592480485, 1.3758018166286858, 1.3853778244585837, 1.394986506613853, 1.404609915049027, 1.4142302081512295, 1.4238297328352798, 1.4333911085941355, 1.4428973115440782, 1.452331756509139, 1.4616783753352256, 1.4709216898702147, 1.4800468783487173, 1.4890398342449735 ], [ 1.1834613946971497, 1.183690548768279, 1.1841967932061728, 1.1849869211255073, 1.1860673548872975, 1.1874440990259627, 1.1891226906324428, 1.1911081473230178, 1.1934049130201512, 1.1960168018938309, 1.198946940961463, 1.2021977120204954, 1.2057706937882817, 1.2096666053392924, 1.2138852521480505, 1.2184254762490223, 1.2232851121867716, 1.2284609505235178, 1.2339487106651894, 1.2397430246326004, 1.2458374331190971, 1.252224394730484, 1.2588953087080506, 1.2658405507248225, 1.2730495205816499, 1.2805106998983933, 1.2882117172976026, 1.296139418213015, 1.3042799364016522, 1.312618764529963, 1.3211408218194503, 1.3298305175907104, 1.338671810504231, 1.347648264206968, 1.3567431008112871, 1.3659392540546749, 1.3752194240718292, 1.3845661354754442, 1.393961799959157, 1.403388784005546, 1.4128294816108957, 1.4222663913184435, 1.4316821963521202, 1.4410598462989945, 1.4503826386120373, 1.4596342981825643, 1.4687990533360866, 1.477861706804101, 1.486807700481288, 1.495623173062139 ], [ 1.19493620082301, 1.1952396580938722, 1.19581268818407, 1.1966618281587778, 1.1977932583551256, 1.199212756581799, 1.2009256498489402, 1.2029367637969226, 1.2052503700907171, 1.207870132165463, 1.210799049849129, 1.214039403548416, 1.2175926988599304, 1.2214596126524928, 1.2256399418459083, 1.230132556271138, 1.2349353571152502, 1.2400452425096349, 1.2454580817875136, 1.2511686997953766, 1.2571708723781088, 1.2634573337650599, 1.2700197960769588, 1.2768489805815353, 1.2839346597014234, 1.2912657081886085, 1.2988301614042224, 1.3066152783550826, 1.3146076070972985, 1.3227930503453162, 1.3311569296035872, 1.3396840468030382, 1.3483587431748913, 1.357164955813432, 1.3660862729561711, 1.3751059893627815, 1.3842071632649473, 1.3933726761972192, 1.4025852966522792, 1.4118277480072723, 1.4210827806236535, 1.4303332475063613, 1.439562182478537, 1.4487528795202742, 1.4578889717486134, 1.46695450847574, 1.475934028854589, 1.4848126307797496, 1.4935760339283464, 1.5022106360731116 ], [ 1.2064423821250054, 1.2068203626588685, 1.2074604375389684, 1.2083688869537463, 1.2095516479405217, 1.2110142699061068, 1.2127618677604552, 1.2147990728641147, 1.2171299820877315, 1.2197581053960127, 1.2226863124983993, 1.225916779253058, 1.2294509346640736, 1.2332894094670905, 1.2374319874451036, 1.2418775607399417, 1.2466240905090276, 1.2516685743038007, 1.257007021496443, 1.2626344379409669, 1.2685448208127612, 1.2747311642283525, 1.2811854758159165, 1.287898803914882, 1.2948612745718662, 1.302062137023463, 1.3094898159754327, 1.3171319687579224, 1.3249755454003074, 1.3330068498431797, 1.3412116008737827, 1.3495749918850695, 1.3580817491423893, 1.3667161888066492, 1.375462273423651, 1.384303668881658, 1.393223802929721, 1.4022059262400153, 1.4112331767208186, 1.4202886473980219, 1.4293554577447225, 1.4384168279122158, 1.4474561549505545, 1.45645708983628, 1.4654036139644644, 1.474280113711646, 1.4830714517240644, 1.4917630337113181, 1.5003408697075302, 1.5087916289756782 ], [ 1.217962761638207, 1.2184152754075162, 1.2191224532794478, 1.220090318418787, 1.221324563987008, 1.2228305100205765, 1.2246130580091314, 1.226676643400204, 1.2290251863527388, 1.231662041169232, 1.2345899449563198, 1.2378109661920078, 1.2413264540108204, 1.2451369891486483, 1.2492423376073352, 1.2536414081941991, 1.2583322151489775, 1.263311847076941, 1.2685764433471702, 1.2741211789798754, 1.2799402588285014, 1.2860269215654683, 1.2923734536150278, 1.2989712127672841, 1.3058106607876785, 1.3128814039491339, 1.3201722401050129, 1.3276712107344224, 1.3353656563553815, 1.3432422738307783, 1.3512871743717372, 1.3594859414370501, 1.3678236881787393, 1.3762851145246275, 1.3848545643548562, 1.3935160834687181, 1.402253479123267, 1.411050381852983, 1.4198903100724687, 1.4287567376612647, 1.4376331643795492, 1.4465031886143649, 1.455350581649662, 1.4641593624190345, 1.4729138715539043, 1.4815988434853278, 1.4901994753873062, 1.4987014918490262, 1.507091204315134, 1.5153555645173742 ], [ 1.2294804618373156, 1.230007310587838, 1.2307814501011598, 1.2318086470017053, 1.233094350639678, 1.2346436513524408, 1.2364612365137704, 1.2385513446178968, 1.2409177177374566, 1.243563552795581, 1.2464914522019985, 1.2497033745168606, 1.2532005859209585, 1.2569836133799321, 1.2610522004852072, 1.2654052670261495, 1.2700408733850947, 1.2749561908385096, 1.2801474787832843, 1.2856100697796755, 1.2913383631082125, 1.297325827281026, 1.3035650116388091, 1.310047566823432, 1.3167642735701672, 1.3237050789466844, 1.3308591389130342, 1.3382148659212179, 1.3457599802361289, 1.3534815637512976, 1.3613661152818552, 1.3693996066166048, 1.3775675389567021, 1.3858549997108756, 1.3942467199050936, 1.4027271326590267, 1.4112804332576927, 1.4198906413004118, 1.428541665254235, 1.4372173695044284, 1.4459016437156642, 1.4545784740347438, 1.4632320154105982, 1.4718466641077408, 1.4804071293594236, 1.4888985030523383, 1.4973063263521493, 1.5056166522578527, 1.5138161031994153, 1.5218919229513777 ], [ 1.2409789611298272, 1.2415797415442116, 1.242420504463141, 1.2435067610367985, 1.2448437174553622, 1.2464362346088655, 1.2482887856219749, 1.2504054115257872, 1.2527896754167474, 1.2554446155474355, 1.2583726978934173, 1.2615757688412583, 1.2650550087416668, 1.2688108871621817, 1.2728431207502955, 1.2771506346706694, 1.2817315286023527, 1.286583048263634, 1.2917015633665998, 1.297082552785403, 1.3027205975503602, 1.3086093820580085, 1.3147417036255964, 1.3211094902329967, 1.3277038260082743, 1.3345149837516206, 1.3415324635828132, 1.3487450366648077, 1.3561407929172402, 1.3637071916945367, 1.3714311145565086, 1.379298919483627, 1.3872964961517507, 1.395409322144581, 1.4036225202069277, 1.4119209167973976, 1.420289102265442, 1.4287114929479718, 1.4371723953658295, 1.445656072518745, 1.4541468120571095, 1.4626289958810303, 1.471087170507246, 1.4795061173766266, 1.4878709221623085, 1.4961670420871493, 1.504380370268908, 1.5124972961739838, 1.5205047613665599, 1.5283903098754519 ], [ 1.2524421473297662, 1.253116255432217, 1.254023110535846, 1.2551679699216582, 1.256555797809991, 1.258191226425439, 1.2600785150217195, 1.2622215071389369, 1.2646235864498223, 1.2672876316391117, 1.2702159708506686, 1.2734103363259968, 1.2768718199425755, 1.2806008304359755, 1.2845970531498776, 1.2888594131971423, 1.2933860429254476, 1.2981742545566854, 1.3032205188048438, 1.308520450168769, 1.3140687994445828, 1.3198594538111257, 1.3258854446193118, 1.3321389627766638, 1.338611381379083, 1.3452932850238342, 1.3521745050617258, 1.3592441599315894, 1.3664906996784931, 1.3739019537938206, 1.3814651816242698, 1.3891671247620634, 1.3969940610259914, 1.4049318598432419, 1.4129660390159473, 1.4210818229791211, 1.4292642027119982, 1.437497997446732, 1.4457679182323833, 1.454058633272065, 1.4623548347782682, 1.4706413069084692, 1.4789029941727083, 1.4871250695652238, 1.4952930015764931, 1.5033926191959999, 1.5114101740210477, 1.5193323986374678, 1.5271465605269552, 1.534840510872383 ], [ 1.2638543677120375, 1.2646010044433136, 1.2655732325943796, 1.2667760576813, 1.2682142036419592, 1.2698920753053708, 1.2718137189030219, 1.2739827809014526, 1.276402465514718, 1.2790754913369995, 1.2820040476171135, 1.2851897507755208, 1.2886336018372981, 1.292335945517008, 1.2962964317392045, 1.3005139804058643, 1.3049867502242123, 1.3097121123803868, 1.314686629782213, 1.3199060424960998, 1.3253652598691976, 1.3310583596627514, 1.3369785943328372, 1.3431184043922721, 1.3494694385863664, 1.3560225804314396, 1.3627679805154125, 1.3696950938578636, 1.3767927215831868, 1.3840490561778103, 1.3914517296763949, 1.3989878642413076, 1.4066441247453914, 1.4144067731185057, 1.4222617243509752, 1.4301946041426243, 1.4381908082308303, 1.4462355634198432, 1.4543139902693099, 1.462411167291953, 1.470512196375183, 1.4786022689959082, 1.4866667326603409, 1.494691156886481, 1.5026613979666694, 1.510563661708739, 1.518384563356256, 1.526111183930813, 1.5337311223141121, 1.541232542488502 ], [ 1.2752004752932489, 1.2760186531736397, 1.2770553534783973, 1.2783153325261842, 1.279803076120969, 1.2815227634189286, 1.2834782289164286, 1.2856729228416142, 1.2881098703074554, 1.290791629659175, 1.2937202505233478, 1.2968972321352277, 1.300323482583736, 1.3039992796653923, 1.3079242340760553, 1.3120972556881554, 1.3165165236574936, 1.3211794610736518, 1.3260827148090186, 1.3312221411326124, 1.3365927975370278, 1.3421889410832168, 1.348004033405692, 1.3540307523484278, 1.3602610100311583, 1.3666859769893973, 1.3732961119022635, 1.3800811963309005, 1.3870303738441683, 1.3941321929107588, 1.401374652983747, 1.4087452532868983, 1.4162310439173564, 1.423818678990526, 1.4314944716523335, 1.4392444508568958, 1.447054419842703, 1.4549100162331692, 1.4627967736386862, 1.4707001845545578, 1.4786057642433843, 1.4864991151757083, 1.4943659914929706, 1.502192362864425, 1.5099644770443552, 1.5176689204034093, 1.5252926757100225, 1.532823176473523, 1.540248357224828, 1.547556699197984 ], [ 1.2864658710375854, 1.2873544218252102, 1.2884545187952796, 1.2897706720677924, 1.2913071318912295, 1.2930678538954206, 1.2950564625414156, 1.2972762130517286, 1.2997299521750492, 1.3024200782092712, 1.3053485007738557, 1.3085166008841347, 1.3119251919341728, 1.3155744822381898, 1.3194640398096251, 1.3235927600694988, 1.3279588371676883, 1.332559739569997, 1.3373921905087638, 1.3424521538142267, 1.3477348255398072, 1.3532346316697441, 1.3589452320574886, 1.3648595305958506, 1.370969691473741, 1.3772671612398193, 1.38374269628038, 1.3903863952355504, 1.3971877358305946, 1.4041356155896216, 1.411218395925197, 1.418423949152381, 1.4257397080498113, 1.4331527176703303, 1.4406496891765261, 1.4482170555307865, 1.4558410288957078, 1.4635076595954608, 1.4712028964514183, 1.478912648241565, 1.4866228459510367, 1.4943195053909568, 1.5019887896759905, 1.5096170709773644, 1.5171909909158703, 1.5246975189337793, 1.532124007987373, 1.5394582469329425, 1.54668850903508, 1.5538035961022938 ], [ 1.2976365417437388, 1.2985941249869581, 1.2997563766047255, 1.3011275639191935, 1.3027117046044163, 1.3045125333095406, 1.30653346655225, 1.3087775661642809, 1.3112475016373506, 1.3139455117825924, 1.316873366177433, 1.3200323269286818, 1.3234231113273756, 1.3270458560069756, 1.3309000832392825, 1.3349846700099528, 1.3392978205044428, 1.3438370426049544, 1.3485991289470878, 1.3535801430126275, 1.358775410642354, 1.3641795172438007, 1.3697863108475088, 1.375588911037803, 1.381579723657964, 1.387750461072536, 1.3940921676695115, 1.4005952502085828, 1.407249512573499, 1.414044194468083, 1.4209680136057372, 1.4280092109756573, 1.4351555988183362, 1.4423946109987154, 1.4497133555167863, 1.4570986689346213, 1.4645371725172611, 1.4720153298804228, 1.4795195059087474, 1.4870360266593783, 1.4945512399015894, 1.5020515758730368, 1.5095236077653003, 1.516954111393443, 1.5243301234637985, 1.5316389978347251, 1.538868459169673, 1.5460066534095889, 1.5530421945413888, 1.5599642072060322 ], [ 1.3086990934303684, 1.3097242058065752, 1.3109472123882508, 1.312372141476071, 1.3140027815289617, 1.3158426491390056, 1.3178949553473436, 1.3201625705796016, 1.3226479885418436, 1.3253532894780558, 1.3282801032456442, 1.3314295727143153, 1.3348023180344049, 1.3383984023507391, 1.3422172995561157, 1.3462578646817913, 1.350518307509817, 1.3549961699621795, 1.3596883077737836, 1.3645908768906831, 1.3696993249527596, 1.3750083881242576, 1.3805120934294217, 1.386203766639422, 1.3920760456467607, 1.3981208991602785, 1.4043296504643643, 1.4106930059151606, 1.4172010877977939, 1.4238434711437746, 1.4306092241056652, 1.4374869515029582, 1.4444648411833814, 1.4515307128806183, 1.458672069284214, 1.465876149063883, 1.4731299816029528, 1.48042044319031, 1.4877343143975896, 1.49505833833008, 1.5023792793901596, 1.50968398213803, 1.5169594297815634, 1.5241928017827509, 1.5313715300374389, 1.538483353071373, 1.5455163677021124, 1.5524590776419573, 1.559300438561361, 1.5660298991920318 ], [ 1.3196407801005292, 1.3207317654291935, 1.3220139791748151, 1.3234912147437703, 1.3251670350952216, 1.327044742046574, 1.3291273439888291, 1.3314175222852058, 1.3339175966856351, 1.3366294901451756, 1.33955469348513, 1.3426942303794287, 1.3460486231843858, 1.3496178601553375, 1.3534013646073377, 1.3573979665778422, 1.3616058775354813, 1.3660226686501569, 1.370645253095349, 1.3754698727937469, 1.380492089944225, 1.3857067835829946, 1.391108151338655, 1.3966897164430034, 1.4024443399628646, 1.4083642381264383, 1.4144410045369535, 1.4206656370002804, 1.4270285686443989, 1.433519702979254, 1.4401284525339237, 1.4468437807125043, 1.4536542465257212, 1.4605480518770309, 1.4675130911037633, 1.474537002490464, 1.4816072214781026, 1.4887110352875372, 1.4958356386567222, 1.5029681903615404, 1.5100958701514702, 1.5172059356900076, 1.524285779049112, 1.5313229822735839, 1.5383053715087895, 1.545221069176828, 1.5520585436944494, 1.5588066562504286, 1.5654547042002322, 1.571992460689501 ], [ 1.3304495278289354, 1.3316045876444604, 1.3329443227614501, 1.334472296146486, 1.3361918493093046, 1.3381060729159204, 1.3402177758786455, 1.3425294531904282, 1.3450432528264316, 1.3477609420874996, 1.3506838738064977, 1.3538129528780014, 1.3571486036030096, 1.3606907383618756, 1.3644387281391248, 1.3683913754225756, 1.3725468899845894, 1.3769028680258102, 1.38145627512042, 1.3862034333476967, 1.3911400129289775, 1.3962610286131936, 1.4015608409715568, 1.4070331626754244, 1.4126710697452955, 1.4184670176769143, 1.4244128622767136, 1.430499884977053, 1.436718822353253, 1.4430598995319042, 1.44951286716145, 1.4560670416109749, 1.4627113480676945, 1.4694343662137408, 1.476224378174553, 1.483069418439555, 1.48995732545818, 1.4968757946078, 1.5038124322146467, 1.5107548102850965, 1.517690521575236, 1.5246072345946704, 1.5314927481102572, 1.5383350446909114, 1.5451223428189431, 1.5518431470898961, 1.5584862960324557, 1.5650410071038114, 1.5714969184526335, 1.5778441270903563 ], [ 1.3411139541774764, 1.3423311587471969, 1.3437266020335876, 1.3453036213223961, 1.3470653410388975, 1.3490146446441165, 1.3511541450736493, 1.353486153979458, 1.3560126500872383, 1.3587352470301508, 1.3616551610622547, 1.3647731790906756, 1.3680896274931544, 1.3716043422059956, 1.3753166405753956, 1.3792252954622106, 1.3833285120758931, 1.3876239079864816, 1.3921084967256796, 1.3967786753384006, 1.4016302161866685, 1.4066582632399722, 1.411857333012131, 1.4172213202276338, 1.4227435082231226, 1.4284165840157506, 1.434232657902558, 1.4401832873966642, 1.4462595052587532, 1.45245185134742, 1.4587504079887306, 1.4651448385530756, 1.4716244289234854, 1.4781781315411582, 1.484794611717216, 1.4914622959024084, 1.4981694216046622, 1.5049040886372533, 1.5116543113671685, 1.5184080716141422, 1.5251533718279675, 1.5318782881478965, 1.5385710229251977, 1.5452199562728106, 1.5518136961961895, 1.558341126859355, 1.5647914545518535, 1.5711542509451166, 1.5774194932610694, 1.5835776010201725 ], [ 1.3516233830026498, 1.3529006826770993, 1.3543499044519944, 1.3559741649732473, 1.3577763762408304, 1.3597592187623506, 1.361925113313763, 1.3642761915597819, 1.3668142658358406, 1.369540798438174, 1.3724568708079143, 1.3755631530275578, 1.378859874072681, 1.3823467932774123, 1.3860231734785466, 1.3898877562989524, 1.3939387400165206, 1.3981737604398359, 1.4025898751760892, 1.4071835516316216, 1.4119506590313127, 1.4168864646819175, 1.4219856346378656, 1.4272422388586243, 1.4326497608769733, 1.438201111930327, 1.4438886494447338, 1.4497041997063769, 1.4556390845090281, 1.461684151529759, 1.4678298081586298, 1.4740660584906047, 1.4803825431777071, 1.4867685818343592, 1.4932132176861006, 1.4997052641495077, 1.5062333530265497, 1.5127859839887294, 1.5193515750144628, 1.5259185134279243, 1.5324752071697572, 1.5390101359122148, 1.5455119016150771, 1.5519692781070973, 1.558371259272626, 1.5647071054261714, 1.570966387470588, 1.577139028456841, 1.5832153421957598, 1.5891860686127217 ] ], "zauto": true, "zmax": 1.5891860686127217, "zmin": -1.5891860686127217 }, { "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.05288981089194426, 0.04982031306841921, 0.04684629127699701, 0.04397993608290391, 0.04123404321778827, 0.03862198169069714, 0.0361576329783004, 0.03385528889265226, 0.031729493029977525, 0.02979480975126195, 0.02806550735297336, 0.02655514989470774, 0.025276103733487734, 0.024238973650478658, 0.023451979787102676, 0.022920269651488353, 0.022645154839520395, 0.02262331597202265, 0.022846143655819936, 0.02329949850905647, 0.02396415077475569, 0.024816959325713147, 0.02583258525975624, 0.026985373257546935, 0.028251045987053348, 0.029607989586083107, 0.031038062497035883, 0.03252696933849181, 0.034064291435766225, 0.035643272110110945, 0.03726044005539466, 0.038915134212802155, 0.040608976465822975, 0.04234532640571152, 0.044128744610056114, 0.04596448567058544, 0.04785803809455682, 0.049814724234685026, 0.051839369189809095, 0.05393604319902538, 0.056107877702341644, 0.058356951316267676, 0.06068423879009806, 0.06308961377390625, 0.06557189500935622, 0.06812892528468813, 0.0707576730119771, 0.07345434737017957, 0.076214519382015, 0.07903324285030768 ], [ 0.05354141831688001, 0.05048771383019742, 0.047521673418893955, 0.04465374427863265, 0.04189475426110913, 0.03925589348704904, 0.03674869655911333, 0.0343850284704891, 0.032177077982409895, 0.03013736186623415, 0.0282787401096355, 0.026614432245143958, 0.02515800218414788, 0.0239232363830617, 0.022923778620104154, 0.022172331399424348, 0.021679260042908436, 0.021450629677405866, 0.02148606856750093, 0.021777187643357787, 0.022307286184549496, 0.0230526224087449, 0.02398489336739011, 0.0250741723961943, 0.026291577534460053, 0.027611245832328466, 0.02901151606296739, 0.030475429475244026, 0.031990731894641966, 0.033549550998234014, 0.035147881552921596, 0.036784969427518924, 0.03846265388617572, 0.040184707941759094, 0.04195620517975452, 0.043782934744488446, 0.045670881339978694, 0.04762578257994143, 0.049652771249548845, 0.0517561050694324, 0.05393898174490203, 0.056203432879336934, 0.05855028709217398, 0.06097919061230914, 0.06348867274241594, 0.06607624377778175, 0.06873851397902762, 0.07147132376095876, 0.07426987709494116, 0.07712887199984067 ], [ 0.054284459622506, 0.05124993349472631, 0.04829562384413199, 0.04543037740273405, 0.04266322997697422, 0.04000339664531003, 0.03746028218955778, 0.0350435249741583, 0.03276309123989137, 0.030629439164337264, 0.028653769771194368, 0.026848368312002713, 0.025227003987291236, 0.023805283445214483, 0.02260073715335378, 0.02163228508698154, 0.02091868009572789, 0.02047573434191993, 0.020312701583155665, 0.02042891114655297, 0.020812066052774324, 0.02143907466992142, 0.022279142053889766, 0.02329793692663273, 0.024461531857154186, 0.025739317488527, 0.02710570119129829, 0.02854078293469728, 0.030030322534560637, 0.03156528027159207, 0.03314113158952232, 0.03475708187513123, 0.03641525610476531, 0.03811990848654468, 0.03987668171077043, 0.041691937180322006, 0.04357217209960613, 0.04552353424950311, 0.047551439912809634, 0.0496602948617447, 0.051853313068059244, 0.054132423388021225, 0.056498251308803066, 0.058950161101466454, 0.061486343364429624, 0.06410393373900414, 0.06679915021051136, 0.06956743852361018, 0.07240361752098187, 0.07530201841485644 ], [ 0.0550988623169369, 0.052085649248045915, 0.04914554747414737, 0.04628596197416066, 0.043514335160161045, 0.04083814494148215, 0.038264935476644106, 0.035802399478980194, 0.03345853669866136, 0.031241918228803994, 0.0291620873209453, 0.02723011745488556, 0.025459314366291782, 0.023865970367999857, 0.02246993630556083, 0.021294575802078004, 0.020365496926532844, 0.019707534929010062, 0.019340048849426018, 0.0192716752513876, 0.019496599028636517, 0.01999417141722874, 0.020732146637416255, 0.021672074970163428, 0.022774791351784857, 0.024004572554219172, 0.025331548591025477, 0.026732635711427605, 0.028191478117105692, 0.0296978294117539, 0.031246666556932503, 0.03283720789838813, 0.03447192835763894, 0.03615562244202745, 0.03789454530038593, 0.03969565220108491, 0.04156595065518265, 0.04351197375989808, 0.04553937729624756, 0.04765265692981514, 0.04985497619646294, 0.052148091454469685, 0.05453235707164473, 0.057006792915471935, 0.059569196575396305, 0.062216284327102925, 0.06494384721822806, 0.06774691138834474, 0.07061989448037424, 0.07355675250641895 ], [ 0.05596642122439992, 0.0529756822597161, 0.05005128965479323, 0.04719937358902652, 0.044425991981043744, 0.041737137938624304, 0.03913878740238991, 0.036637008232258524, 0.034238158613374356, 0.03194920926683543, 0.029778227910967958, 0.027735059613898886, 0.025832210654298218, 0.02408587468334668, 0.022516899809292105, 0.02115126723457554, 0.020019384308222532, 0.01915338148667928, 0.018582004580712054, 0.018323882920897372, 0.018381509441625723, 0.01873882983400159, 0.019363824615917423, 0.020214806671316185, 0.021247599368679936, 0.022421247460629876, 0.023701392818950756, 0.025061594369698563, 0.026483283182139723, 0.027954978338480593, 0.029471178416205435, 0.031031159667054477, 0.03263779724644314, 0.034296466933548556, 0.03601405826353446, 0.03779811815719887, 0.0396561370860357, 0.041594983337841056, 0.04362048403917068, 0.04573714468603993, 0.04794799289253281, 0.05025452763657902, 0.052656752866646596, 0.055153273945116196, 0.05774143673773836, 0.060417491714060405, 0.06317676864956136, 0.06601385092082189, 0.06892274158700804, 0.07189701622160852 ], [ 0.056871021740132165, 0.05390322147395116, 0.05099535939111506, 0.048152460481527354, 0.045379408291617955, 0.042680964096445506, 0.04006183046373931, 0.0375267806670074, 0.0350808820114437, 0.03272984817372418, 0.030480561178756277, 0.028341802803365252, 0.026325217606108446, 0.024446476048438415, 0.022726486604260205, 0.02119228966094107, 0.019876959026499667, 0.018817565107289824, 0.01805036527973332, 0.017603373821365734, 0.01748836827512943, 0.017695953879123764, 0.018196529045292453, 0.01894676401118381, 0.019898309508958142, 0.021005274755826444, 0.022228843616603874, 0.02353916736712402, 0.024915419308922104, 0.02634486972026005, 0.027821551379492982, 0.02934482472596343, 0.03091799066765522, 0.03254701884856985, 0.0342394245182338, 0.03600331230317845, 0.03784659655504653, 0.03977640012891983, 0.04179862531732712, 0.04391768289193367, 0.0461363588478316, 0.048455794311987925, 0.0508755524830665, 0.05339374723694999, 0.05600721063019318, 0.058711680267501704, 0.06150199168663886, 0.06437226500269179, 0.06731607867529708, 0.07032662622861205 ], [ 0.05779871699907627, 0.05485387764506139, 0.05196295561565492, 0.04913003860831534, 0.046359040576664144, 0.04365373486709073, 0.04101783374444501, 0.03845513463755995, 0.03596975943490265, 0.033566519732116246, 0.03125144665233569, 0.029032525059044748, 0.02692066057626113, 0.024930868183076695, 0.02308357722558543, 0.02140576536203063, 0.01993134155056241, 0.01869985109737433, 0.01775243275902321, 0.01712456255029694, 0.016836935609630753, 0.01688815535895904, 0.017253342771350964, 0.01788977640189751, 0.018746533261913185, 0.01977368358671359, 0.02092836457496825, 0.022177474346962687, 0.02349797423564386, 0.024875896505542196, 0.02630481160713463, 0.027784164607605147, 0.029317674026876177, 0.03091187878398453, 0.03257487262981859, 0.03431524545452419, 0.03614123922267185, 0.03806011613909111, 0.04007772670119874, 0.042198256412955104, 0.044424123340911156, 0.04675599516637229, 0.04919289403778206, 0.05173235986949506, 0.05437064692700063, 0.057102933654210083, 0.05992353092417755, 0.06282607865168689, 0.06580372466981296, 0.06884928283373651 ], [ 0.058737691474202554, 0.055815609245362455, 0.05294184918893119, 0.050119724245247556, 0.04735237328038376, 0.04464280981406083, 0.04199401762585398, 0.03940911168704887, 0.03689158793469532, 0.03444569095386898, 0.03207693357522956, 0.029792803953174678, 0.027603687793352837, 0.025524004182338723, 0.023573482289264456, 0.021778362342140197, 0.020172055613937163, 0.018794452349971267, 0.01768878129410136, 0.01689516184319218, 0.016441408510276572, 0.016334168642004175, 0.016555066273250606, 0.017064544556973083, 0.017811433274365324, 0.018743387137436493, 0.019814434580330515, 0.020988685656550092, 0.02224108749312591, 0.02355650034326648, 0.02492803847712113, 0.02635520847217496, 0.027842102547123534, 0.029395763333733605, 0.031024773251529025, 0.03273809285327528, 0.03454415538501096, 0.03645021069522348, 0.03846189890626839, 0.0405830238976911, 0.042815489917463256, 0.0451593621301779, 0.04761301334691071, 0.050173323601158656, 0.052835905385815445, 0.05559533404738354, 0.05844536912855383, 0.06137915780218938, 0.06438941572135091, 0.06746858363363804 ], [ 0.0596781428080532, 0.056778559618107446, 0.053922168995775364, 0.051111663104757225, 0.04834958609878294, 0.04563839920065704, 0.0429805920428918, 0.04037885644265779, 0.037836342787816404, 0.03535702347270224, 0.032946191447439474, 0.030611122787147955, 0.028361925701398418, 0.02621257582433371, 0.024182083407659597, 0.02229562744827708, 0.020585293410983894, 0.019089751045252065, 0.017851891368571245, 0.016913444201668733, 0.01630655389523887, 0.016044524659663103, 0.016116133830880324, 0.016487225213003862, 0.01710909578328056, 0.017929274839913672, 0.018900223702494195, 0.01998414368386567, 0.02115440116170724, 0.022394861577235144, 0.02369822576065302, 0.025064034462538014, 0.026496684492270703, 0.02800362129547122, 0.02959378652818699, 0.03127635643804056, 0.0330597805662743, 0.03495110975744373, 0.03695558552736985, 0.03907645042722012, 0.04131493228697272, 0.04367035427373857, 0.04614032659524847, 0.04872098275741941, 0.051407231759022176, 0.05419300599142274, 0.05707149193586961, 0.06003533655661229, 0.06307682651340811, 0.06618804014091334 ], [ 0.060612110368776805, 0.057734839609326995, 0.05489613302823156, 0.052098204605473125, 0.04934316694783448, 0.046633112535972424, 0.043970239727147836, 0.04135703723741683, 0.038796543752187655, 0.03629270222613577, 0.03385083054931618, 0.03147822985428951, 0.029184945360768155, 0.026984675815119458, 0.024895784818336993, 0.022942281936601316, 0.02115448789631346, 0.01956885852050925, 0.018226161931325705, 0.017167112319372915, 0.016425162748084733, 0.01601788496292109, 0.015940523495849977, 0.01616559699847591, 0.016649348261080724, 0.017341788248673214, 0.01819586165646088, 0.019173194189559453, 0.020246320475220275, 0.021398474941809457, 0.022622082156815094, 0.023916726171593728, 0.02528704178447467, 0.0267407598748161, 0.028287025424725536, 0.029935044573029708, 0.031693076909860944, 0.03356775891696807, 0.0355637212792467, 0.03768344752708507, 0.03992731484412247, 0.04229375917884165, 0.04477951396659962, 0.047379882144015416, 0.05008901227183943, 0.05290015972561127, 0.0558059221324065, 0.058798444272715106, 0.0618695917110311, 0.06501109485804532 ], [ 0.061533274550077385, 0.05867828373783594, 0.05585775706679561, 0.05307355908700282, 0.05032751440076666, 0.047621503989637895, 0.044957604014775596, 0.04233827831470736, 0.039766637727341216, 0.03724678098730855, 0.0347842325824463, 0.03238649116218634, 0.030063695176035268, 0.02782939551410228, 0.025701389621509054, 0.023702504337154085, 0.021861097250228903, 0.020210865658774904, 0.018789338329991773, 0.017634333732061035, 0.016778053039682925, 0.016239706412247416, 0.016019327695133728, 0.01609613667607274, 0.016432923811090183, 0.016984524259930515, 0.01770659750739762, 0.018561876610665124, 0.01952314788556415, 0.02057362809505399, 0.021705764005190125, 0.022919284955370944, 0.024219043296827815, 0.025612954271096937, 0.02711020835570708, 0.02871984360903118, 0.03044970678418788, 0.03230578785328579, 0.03429188056322721, 0.03640950251043142, 0.03865800195805368, 0.04103478305571961, 0.04353559251285761, 0.04615482510182211, 0.048885819414585405, 0.05172112712498181, 0.054652747869321845, 0.057672327830769435, 0.060771323709566845, 0.06394113561855612 ], [ 0.062436746075369115, 0.05960420176904933, 0.05680256565491738, 0.05403346578302872, 0.05129856093700347, 0.04859965016170821, 0.04593882177322935, 0.043318650597686775, 0.0407424531581403, 0.03821461099586262, 0.035740971610527174, 0.0333293334157105, 0.03099001347761362, 0.028736480948706126, 0.026586008950140072, 0.02456024394894313, 0.02268550296316248, 0.020992479516033228, 0.019514894790564126, 0.018286578912080822, 0.01733674085652393, 0.016684031564384427, 0.01633126592351851, 0.016263371692101132, 0.01645011006465554, 0.016852666796443212, 0.017431348490200328, 0.018151750273214886, 0.018988224704459034, 0.019924831734979172, 0.02095454104197612, 0.022077473956622982, 0.02329877503170383, 0.024626500694615583, 0.026069761051708506, 0.027637243193691177, 0.029336163538082577, 0.031171634676768065, 0.03314638844598001, 0.03526077288087295, 0.0375129352512643, 0.039899112069799465, 0.0424139636455611, 0.04505090964234635, 0.04780243916842248, 0.0506603821986328, 0.05361613824602136, 0.05666086372504585, 0.05978562229929818, 0.06298150358785529 ], [ 0.06331885998602406, 0.06050914182762281, 0.057727322973517806, 0.05497489067026859, 0.05225343772738899, 0.04956478274016015, 0.04691112615997031, 0.04429524855145741, 0.041720757531958495, 0.03919238936306657, 0.03671636934422737, 0.03430083100505225, 0.031956285888728043, 0.02969612070946688, 0.02753707265102923, 0.0254995908094817, 0.023607926546636005, 0.02188970860813033, 0.020374674403830343, 0.019092222721001487, 0.018067668852311133, 0.017317659111487766, 0.016846035837880077, 0.01664196374326229, 0.016681590578417203, 0.01693293141120096, 0.017362161496412322, 0.017939196769275752, 0.01864126965767164, 0.019454284808538568, 0.020372412067577495, 0.02139657254981126, 0.022532406459442312, 0.023788164106994678, 0.02517281757223849, 0.026694567453919404, 0.02835981557419995, 0.03017259120034047, 0.03213436021971418, 0.034244116987109254, 0.03649865475250578, 0.03889292498169656, 0.0414204190245726, 0.04407352954269358, 0.04684386910618422, 0.04972253766184513, 0.052700339434331195, 0.055767954460485346, 0.058916071756312714, 0.062135491243642337 ], [ 0.06417698481656282, 0.06139067610599832, 0.05862979509565725, 0.05589576595171378, 0.053190192846352215, 0.05051498794377024, 0.04787253104206794, 0.045265864916287216, 0.04269892987386082, 0.04017683970008827, 0.03770619848892704, 0.03529545295558734, 0.032955266385755404, 0.030698886442611942, 0.028542456992585813, 0.02650519099306062, 0.024609275886292706, 0.022879329980928502, 0.02134118991837036, 0.020019837772507036, 0.01893645457869347, 0.018104978386634385, 0.01752906719695012, 0.017200687335667937, 0.017101240610464044, 0.017205163865337315, 0.017484868824995076, 0.017915467450641778, 0.018478107321161945, 0.01916148409469715, 0.019961712296647227, 0.020881036902961645, 0.021925921250283396, 0.02310497505183159, 0.02442706992242087, 0.02589986206116479, 0.027528817396879016, 0.02931672800146232, 0.031263634191508044, 0.033367031323580695, 0.03562223964065773, 0.03802283750383254, 0.040561089211788005, 0.043228328016858504, 0.046015277581324336, 0.04891230983193382, 0.05190964517170181, 0.05499750429838166, 0.058166221339036525, 0.06140632703856808 ], [ 0.065009353786989, 0.06224721586434291, 0.059508549948615444, 0.056794776857138796, 0.05410756763192467, 0.05144897614805139, 0.04882159875080784, 0.04622876283164298, 0.04367474516450149, 0.041165018881971494, 0.03870652470451874, 0.03630795675925489, 0.033980045084835465, 0.031735804485325765, 0.02959070143215256, 0.02756266640820929, 0.025671849840118867, 0.023939992697303975, 0.022389276332053797, 0.02104056444335129, 0.01991109690660982, 0.01901195999083036, 0.01834597167702476, 0.017906789388669388, 0.01767984163496725, 0.017645075060210305, 0.017780799348656093, 0.01806753548071474, 0.018490907871368787, 0.019043087442474856, 0.019722782116286995, 0.020534095310969693, 0.021484709099503636, 0.022583851593062438, 0.02384043134196989, 0.025261598439728517, 0.02685184975430374, 0.028612664949764652, 0.030542568193812587, 0.032637470076435554, 0.03489114897846261, 0.037295762949722235, 0.03984232310831486, 0.042521094705486935, 0.0453219168395892, 0.04823444625759111, 0.05124833720589385, 0.054353370804089404, 0.05753954629353418, 0.06079714434012197 ], [ 0.06581492171979324, 0.06307785879083859, 0.06036279711659869, 0.05767119660377758, 0.05500483032470597, 0.05236591861582602, 0.04975728529903063, 0.04718253600714656, 0.044646257095895696, 0.04215423128044012, 0.039713662569948564, 0.03733339779278651, 0.035024124409670045, 0.03279851379608431, 0.030671265413034096, 0.028658990901481846, 0.026779861031179537, 0.025052929915536086, 0.023497064034915645, 0.02212945923336776, 0.0209638467959901, 0.02000866741160841, 0.019265674352505938, 0.018729499000857214, 0.018388553722591277, 0.01822725089909561, 0.018229050245186736, 0.018379557805216763, 0.018668927863065867, 0.019093102019682427, 0.019653783809127558, 0.020357347606235178, 0.02121306108573022, 0.022231064313439755, 0.023420513613846183, 0.02478818509566989, 0.026337674267872025, 0.028069171896173303, 0.029979686006038755, 0.03206353553104891, 0.03431295360737247, 0.036718682602701995, 0.0392704933921229, 0.04195760251926531, 0.04476898750468405, 0.0476936141419785, 0.050720594144164424, 0.05383929090032678, 0.0570393882336337, 0.06031093362517651 ], [ 0.06659324883364869, 0.0638822688973943, 0.06119226636010672, 0.05852476671070397, 0.05588166204225426, 0.05326534371604962, 0.05067885214561406, 0.04812604200574364, 0.04561175940848916, 0.04314202504482171, 0.04072421369805697, 0.038367215586145365, 0.036081558404941, 0.03387946061788489, 0.031774776853526934, 0.029782786671899646, 0.027919771830872374, 0.026202330899117873, 0.024646403452911497, 0.023266030585042934, 0.022071970345131715, 0.021070404583490954, 0.020262075518712633, 0.01964220681399998, 0.019201433855344004, 0.01892769602038011, 0.01880872934757251, 0.018834587271883262, 0.01899960517521622, 0.019303397513869454, 0.01975074201401777, 0.020350467304166925, 0.02111365993883681, 0.022051616428724885, 0.02317397007029035, 0.02448732125987392, 0.02599452626731183, 0.027694616022557985, 0.029583185908214973, 0.031653049024707426, 0.03389496724325992, 0.036298332598296214, 0.03885173366834056, 0.04154338904840928, 0.0443614582257002, 0.047294252515166404, 0.050330370939024836, 0.053458783050785025, 0.05666887602711633, 0.05995047867131107 ], [ 0.0673444105751008, 0.06466058694678713, 0.061997121369766775, 0.05935561734053168, 0.05673808749420468, 0.05414708228106153, 0.05158583085423021, 0.04905839108662416, 0.04656980374883327, 0.044126243323660705, 0.04173515454465658, 0.039405359391453725, 0.03714711393431591, 0.03497208835028323, 0.03289323743929337, 0.03092452481624602, 0.029080464855884426, 0.027375457391169273, 0.025822917363899012, 0.024434250370355414, 0.02321779467595893, 0.022177927255686992, 0.021314584822468997, 0.020623438442411695, 0.020096851118640544, 0.019725551629362945, 0.01950073798833434, 0.019416169543981555, 0.019469781567933518, 0.019664463773640593, 0.020007838989746944, 0.020511102235914673, 0.021187185616028083, 0.02204865812008233, 0.02310580939134809, 0.024365280224229145, 0.025829416468586972, 0.02749631240076784, 0.029360356586871323, 0.03141303863015832, 0.033643805690902924, 0.036040830328659644, 0.038591625509498746, 0.04128349677325723, 0.04410385152834054, 0.04704039663839859, 0.050081255465265824, 0.05321503044038986, 0.056430830823388504, 0.05971827943547676 ], [ 0.06806893119969429, 0.0654133679000353, 0.06277790374534453, 0.06016422085016038, 0.057574441464496036, 0.05501125059765534, 0.05247802622027362, 0.0499789728861016, 0.04751925273183695, 0.04510510540062866, 0.04274394542763159, 0.040444422033020316, 0.03821642226167617, 0.03607099446575329, 0.03402016623777533, 0.032076630817019225, 0.03025328140584141, 0.02856258727657016, 0.027015832568518628, 0.025622279819365518, 0.024388371788691084, 0.02331713440053821, 0.022407968382794585, 0.021656991460662967, 0.021058001269294524, 0.02060398245086827, 0.020288921675095547, 0.020109578393027835, 0.020066829809359595, 0.02016627539836218, 0.020417930156109123, 0.020835026256290655, 0.021432145236625864, 0.022223070102979327, 0.023218818488839284, 0.024426250467182622, 0.025847453250318616, 0.02747987165967968, 0.029316977349517652, 0.031349205539034024, 0.03356492341203561, 0.035951279063993695, 0.0384948655250927, 0.0411821953778486, 0.04400001377685754, 0.046935488335675714, 0.04997631262440592, 0.05311075308309355, 0.05632766123771941, 0.05961646617562891 ], [ 0.06876773786000874, 0.06614154096767916, 0.06353550139303148, 0.06095137112000039, 0.05839136176579818, 0.05585825963865282, 0.053355544172186846, 0.05088750481406295, 0.04845934967058906, 0.0460772970562493, 0.04374863858350687, 0.04148175966870133, 0.03928610061600364, 0.03717203935369453, 0.035150676437744, 0.033233505645374285, 0.031431961424942735, 0.029756849940798687, 0.028217695123970987, 0.02682206450380071, 0.025574976893251104, 0.02447852459773257, 0.023531850890826888, 0.022731592957218546, 0.022072823959504554, 0.02155041540582829, 0.02116062134575772, 0.020902596337985094, 0.020779528966106072, 0.020799113159453268, 0.020973186455013816, 0.021316525446711608, 0.021844981683597175, 0.02257332085408618, 0.02351322487431936, 0.024671870752352238, 0.02605131395322181, 0.02764865816248219, 0.02945679839415172, 0.031465447477512516, 0.03366219010797678, 0.03603340011910635, 0.03856495085763112, 0.04124271582701884, 0.0440528920475952, 0.04698218973314226, 0.05001792936403155, 0.05314807911211367, 0.05636125655627417, 0.05964671085696695 ], [ 0.0694421314348261, 0.06684638745432528, 0.06427113533503626, 0.061718181315072514, 0.059189799850490755, 0.056688840158265356, 0.05421883248311812, 0.051784088697856036, 0.04938979025520177, 0.04704205469040973, 0.04474796990422986, 0.042515583517946605, 0.04035383303516248, 0.03827240196272461, 0.03628148834362303, 0.0343914765821453, 0.03261251246763621, 0.03095399626281881, 0.02942403008636679, 0.028028882074165328, 0.026772556234358102, 0.025656575007371223, 0.024680080160736344, 0.02384032677350739, 0.023133581540271314, 0.02255634895660771, 0.0221067571894118, 0.021785864592008968, 0.021598618557284215, 0.021554221963733324, 0.021665742657310142, 0.021948937092615677, 0.022420437351944086, 0.023095630929045905, 0.023986674559521432, 0.025101059136341926, 0.02644097229452721, 0.028003461133962758, 0.029781192272671564, 0.031763516373254426, 0.033937570589504966, 0.036289243242469016, 0.03880392308660642, 0.04146702745265851, 0.044264342201974054, 0.04718221924084432, 0.050207675214528215, 0.05332842658845498, 0.05653288678209611, 0.059810142725975554 ], [ 0.07009377016311895, 0.06752953159320496, 0.06498635917920438, 0.06246609331433649, 0.05997104127580846, 0.05750407483811776, 0.055068724579749324, 0.052669265288423806, 0.050310785511408974, 0.047999232846174966, 0.045741425138758646, 0.04354501656814885, 0.041418407003944786, 0.03937058358013024, 0.03741088589099895, 0.03554869152698333, 0.03379302779558466, 0.03215212906722701, 0.030632977006798668, 0.029240881107830876, 0.02797917522499655, 0.026849115598119932, 0.02585005937983576, 0.024979973691163768, 0.024236272740632288, 0.02361691142392705, 0.02312159222423722, 0.022752885363303284, 0.022517035058196952, 0.022424238061388033, 0.022488242086218094, 0.02272522584449071, 0.02315208196655768, 0.023784394522447426, 0.024634518719455885, 0.025710163653438246, 0.027013731471086946, 0.02854243807237533, 0.030289036715239318, 0.03224286587130789, 0.034390956418679515, 0.03671901595671959, 0.039212203936182695, 0.04185568501782844, 0.044634989741143764, 0.047536226966319456, 0.05054619200892459, 0.053652406693581546, 0.056843118174287575, 0.06010727495719745 ], [ 0.07072466224505795, 0.06819293986709453, 0.06568306605657682, 0.06319689293611225, 0.060736729523679214, 0.05830543047138611, 0.05590647911917255, 0.0535440592847114, 0.051223109107081964, 0.04894934917808622, 0.046729276267374394, 0.0445701133973614, 0.04247970718824317, 0.04046636474287414, 0.03853862547659176, 0.03670496888473985, 0.03497346785731786, 0.03335140898920683, 0.03184491577814786, 0.03045862573034538, 0.029195484647977596, 0.028056725735011487, 0.027042092198742637, 0.02615033589282855, 0.02537998130274662, 0.02473028922421446, 0.024202297945407323, 0.023799773793136803, 0.023529878943807522, 0.023403372211145797, 0.023434207138765692, 0.02363848787572223, 0.024032882600356298, 0.024632747566621795, 0.025450324866298942, 0.02649338188447512, 0.027764538659173988, 0.029261327642245386, 0.03097683980724418, 0.03290070704336595, 0.03502017045661966, 0.0373210529483626, 0.03978854232589262, 0.04240776307346434, 0.04516415837260858, 0.04804372221458376, 0.05103312339588815, 0.054119757142823154, 0.057291751610529004, 0.060537948440113856 ], [ 0.07133716385731546, 0.06883892479786749, 0.06636349857002523, 0.06391272612417874, 0.061488888067987905, 0.059094784971063165, 0.05673381024896327, 0.05441001023618249, 0.052128125208900936, 0.0498936043768721, 0.04771258736975736, 0.0455918447061094, 0.04353867044749821, 0.041560722088131705, 0.03966580615937968, 0.03786161347934445, 0.03615541574083231, 0.03455374511544538, 0.03306208997629071, 0.03168465093564208, 0.030424209258810436, 0.029282160592938727, 0.028258757079577815, 0.027353577942684646, 0.02656621308662457, 0.0258971003053409, 0.025348411750356202, 0.024924848244458744, 0.024634179836506006, 0.02448737644993284, 0.02449821244947268, 0.02468231009302981, 0.025055705680858135, 0.025633154266204963, 0.02642648621269636, 0.02744333949762983, 0.028686494795786492, 0.030153870688902306, 0.031839067789918823, 0.033732249371111994, 0.03582113334689398, 0.03809192240764962, 0.04053007447271213, 0.04312088199047644, 0.04584987194628375, 0.0487030591355728, 0.05166709009870223, 0.05472931138554563, 0.05787778882036434, 0.061101297191428205 ], [ 0.0719339794293619, 0.06947014977063394, 0.06703025809908746, 0.06461611231332677, 0.06222993691821766, 0.0598744456268463, 0.057552905408853536, 0.05526918690642088, 0.05302779552901686, 0.05083387709653745, 0.04869319176188346, 0.04661205029300993, 0.04459720787577186, 0.042655712706401096, 0.040794710091446695, 0.03902120782763852, 0.037341815389144224, 0.03576247765079339, 0.03428823271237566, 0.03292303131566495, 0.03166966006082926, 0.03052980935168753, 0.029504317139113893, 0.028593599666604703, 0.027798251249737, 0.027119759906328856, 0.026561249868596367, 0.026128132406963295, 0.025828530249829104, 0.0256733458701724, 0.025675877868851917, 0.02585095805334998, 0.026213681047279638, 0.026777907832737376, 0.02755480609904473, 0.02855170224445062, 0.029771444938887347, 0.031212343265831718, 0.032868600506318374, 0.03473107197064408, 0.03678815370959747, 0.03902664419071483, 0.04143248154427888, 0.043991316923066716, 0.046688925568639704, 0.04951147927524951, 0.05244571149797491, 0.055479005225823885, 0.05859942867204833, 0.06179573779846538 ], [ 0.07251816148125914, 0.07008963206905802, 0.06768631059483403, 0.06530995217722083, 0.06296270105741135, 0.06064715642644887, 0.058366429105426894, 0.05612418439004878, 0.0539246659711631, 0.05177269565116017, 0.04967364371163592, 0.04763336540643853, 0.045658100348667956, 0.043754333745872814, 0.04192862172062964, 0.040187387469295295, 0.03853670072602699, 0.036982059581873034, 0.03552820039213214, 0.034178966991919156, 0.03293727293816239, 0.031805187969521545, 0.030784170552090723, 0.029875451427460255, 0.029080549228571798, 0.02840187103760074, 0.027843322403301583, 0.027410828090880697, 0.027112652675411623, 0.02695941550775695, 0.026963723987947913, 0.02713940628801495, 0.027500405774166698, 0.0280594873590429, 0.02882697102631087, 0.029809718573660413, 0.031010542883021908, 0.03242810239603868, 0.034057228825372515, 0.03588955564830129, 0.03791428862921624, 0.040118980440530846, 0.04249021695440842, 0.045014170641687105, 0.04767701339474442, 0.050465203241048806, 0.05336566903821437, 0.05636591859981039, 0.059454092726523744, 0.06261898304958685 ], [ 0.07309310778714716, 0.07070074188745307, 0.06833498672247804, 0.06599752782377374, 0.06369040918897756, 0.06141609337106062, 0.05917751229005458, 0.056978104507521284, 0.05482183448087336, 0.0527131893190738, 0.05065714889450376, 0.04865912595325861, 0.04672487425195746, 0.044860364882263734, 0.04307163394641284, 0.04136460866235253, 0.03974492369656875, 0.03821774469312777, 0.03678762090412513, 0.03545839247130628, 0.0342331788880311, 0.03311447201086193, 0.03210434849125024, 0.03120480220549946, 0.030418177875032273, 0.029747664625161405, 0.02919778599145366, 0.028774805053584016, 0.028486954844511202, 0.028344410243973682, 0.02835894310293331, 0.0285432496102323, 0.028910003780390638, 0.02947075957763197, 0.0302348741249599, 0.031208633078687816, 0.03239471707734873, 0.03379206750942856, 0.035396120434378675, 0.03719931059433847, 0.03919172000555251, 0.041361755314905366, 0.043696770081016995, 0.04618358560154948, 0.04880889536277798, 0.05155955907623783, 0.05442280304772526, 0.05738634702152733, 0.06043847666200486, 0.06356807782223463 ], [ 0.0736625540737458, 0.07130719562313934, 0.06897997484083333, 0.06668249422350336, 0.06441668200184046, 0.06218484756066963, 0.05998972783097728, 0.057834520829554155, 0.05572290243913253, 0.053659022670974194, 0.05164747811516874, 0.049693258157037304, 0.04780166392400705, 0.04597820092040964, 0.044228448967786695, 0.042557916379390735, 0.04097188911202531, 0.03947528961522268, 0.038072563650386054, 0.03676761563738675, 0.03556381306824555, 0.03446407715260766, 0.03347106933024912, 0.03258747138860359, 0.031816341307184574, 0.03116150926048678, 0.030627961036656628, 0.03022214284202158, 0.02995211599617701, 0.029827496520213256, 0.029859136557444557, 0.03005854293951465, 0.030437078969983336, 0.031005047700890742, 0.03177079218743341, 0.03273995462644023, 0.033915005498319585, 0.03529509430760412, 0.03687620577393093, 0.03865155169193057, 0.040612102631565686, 0.04274716562994466, 0.04504493487301177, 0.04749297016939138, 0.050078583535760016, 0.05278913282738883, 0.055612232337319836, 0.058535895091551125, 0.06154862227076848, 0.06463945365195185 ], [ 0.07423056087426519, 0.07191304222700458, 0.06962530584074926, 0.06736886123613457, 0.06514550977232418, 0.06295739643626264, 0.06080705314997174, 0.05869743018879271, 0.0566319123254891, 0.05461431656212958, 0.05264886884775756, 0.05074015807440959, 0.04889306696539652, 0.047112681270531656, 0.045404180979887465, 0.04377272000732091, 0.04222330381789223, 0.04076067746893564, 0.039389239017257334, 0.03811299455639042, 0.036935570520302496, 0.035860295581620065, 0.03489035796854519, 0.0340290342654406, 0.03327997333869013, 0.032647505280151715, 0.03213693225357344, 0.031754748545630616, 0.03150873405088825, 0.03140787195884706, 0.03146205986961459, 0.031681614079027885, 0.03207660565225691, 0.03265610575255401, 0.033427444798656565, 0.034395594650134066, 0.03556276097954141, 0.03692823000634031, 0.0384884636473618, 0.04023739537421224, 0.04216685590628702, 0.04426705506982003, 0.04652705852635051, 0.048935217622984827, 0.051479530346749694, 0.05414792710996183, 0.056928485493349994, 0.059809583610294086, 0.06278000370960932, 0.06582899736102758 ], [ 0.0748014935316851, 0.07252264180222485, 0.07027532930560013, 0.06806096605718567, 0.06588121957315615, 0.063738063988214, 0.06163382145551562, 0.059571192803015184, 0.05755327451438118, 0.055583559407600146, 0.05366591894725037, 0.051804565995210924, 0.05000399801923733, 0.04826892236267137, 0.04660416711831787, 0.04501458337421541, 0.04350494695114614, 0.04207986996366134, 0.04074373421530222, 0.03950065908229614, 0.038354515588837575, 0.03730899532029822, 0.03636773734006258, 0.03553450840750891, 0.034813422065013054, 0.03420917165882497, 0.03372724272187659, 0.03337406347046239, 0.033157050800511664, 0.03308451533615093, 0.03316540420786176, 0.03340888396233043, 0.03382379518610169, 0.03441803881641716, 0.035197973566647556, 0.03616790724942889, 0.03732974935300481, 0.0386828617880371, 0.04022410836679774, 0.04194807180610261, 0.04384738739309472, 0.04591313711517759, 0.04813525440503278, 0.050502902611247485, 0.053004804857821025, 0.05562951564820196, 0.05836563382150618, 0.06120196214124628, 0.06412762153720405, 0.06713212872288617 ], [ 0.07537999468565768, 0.0731406359997078, 0.07093468082335345, 0.06876343626508023, 0.06662843269180063, 0.06453147102148706, 0.062474663209245704, 0.06046046323505108, 0.05849168603877595, 0.05657151217780024, 0.054703476537709066, 0.05289144023685962, 0.05113954595088995, 0.049452158245080244, 0.04783379211114468, 0.04628903468219277, 0.04482246690223176, 0.04343859353026397, 0.04214179095601021, 0.04093628251824934, 0.03982614994917373, 0.038815386875764094, 0.03790799580870065, 0.03710812383047475, 0.03642022471300868, 0.035849227324759585, 0.035400683206200385, 0.03508086169720035, 0.03489676072058055, 0.034856006795293985, 0.03496662988540785, 0.03523671671864158, 0.035673967707808216, 0.036285203070311176, 0.03707587760175187, 0.03804966610243496, 0.03920817094273881, 0.04055078209576531, 0.04207469403210797, 0.04377506015379374, 0.045645249342429695, 0.04767716285991695, 0.049861572189885774, 0.05218844640710445, 0.05464724789031782, 0.05722718497194501, 0.05991741792419011, 0.0627072200362048, 0.06558609864007788, 0.06854388230908466 ], [ 0.07597094889380583, 0.0737719100791719, 0.07160824059173598, 0.0694811439382007, 0.06739201310818792, 0.06534247675462841, 0.06333443956458053, 0.061370114409759306, 0.059452044022831205, 0.05758311027439025, 0.05576652964829444, 0.05400583424535033, 0.05230483859255681, 0.05066759368524237, 0.04909833100397013, 0.0476014006507536, 0.04618120911540089, 0.0448421633312777, 0.04358862837499786, 0.04242490613081984, 0.0413552412005327, 0.04038385806944138, 0.039515029944240214, 0.03875317487102444, 0.03810296910315292, 0.03756946190547894, 0.0371581710261471, 0.03687513512464851, 0.03672689975116596, 0.03672041805127027, 0.03686285665295191, 0.037161310588569876, 0.037622446691446924, 0.038252109512013986, 0.03905493367873671, 0.040034008683925336, 0.04119063514659806, 0.042524197167829444, 0.044032157164252995, 0.04571016212725215, 0.04755223740900115, 0.04955103776393048, 0.05169812526031502, 0.053984248136232114, 0.05639960148972206, 0.058934057898572395, 0.06157736234817975, 0.06431929059192104, 0.06714977319674345, 0.07005898926714133 ], [ 0.0765794393419906, 0.07442154680178982, 0.07230108373672064, 0.0702191515573089, 0.06817700807854446, 0.0661761131583317, 0.06421816955855945, 0.062305156844801576, 0.06043935629779943, 0.05862336511917363, 0.056860098688260245, 0.05515278027213953, 0.05350491840253081, 0.05192027309137932, 0.05040281312095232, 0.04895666774423288, 0.04758607716366249, 0.04629534697849547, 0.045088812226829256, 0.04397081650136792, 0.042945710698131, 0.042017874124518934, 0.04119175790591414, 0.04047194700112233, 0.03986323297344023, 0.03937068548926279, 0.038999707050893305, 0.038756053570597235, 0.03864580392189163, 0.038675265232227814, 0.03885080762399819, 0.039178631856382255, 0.03966448447028535, 0.040313345409830885, 0.041129120187587735, 0.042114370428570636, 0.04327011225792548, 0.04459570233938813, 0.04608881872792643, 0.04774553104072797, 0.049560444412266626, 0.05152689582593431, 0.05363717992776403, 0.05588278349104962, 0.05825461195307301, 0.060743196516423244, 0.06333887514783536, 0.06603194480082106, 0.06881278510433766, 0.07167195563668563 ], [ 0.07721069689940921, 0.07509477260789646, 0.07301842302688603, 0.07098265063262625, 0.06898858204244997, 0.06703751354018786, 0.06513095285181202, 0.06327065516195934, 0.06145865150524917, 0.059697267943480646, 0.05798913435736417, 0.056337182238506575, 0.054744631553297105, 0.05321496754243017, 0.051751909178271195, 0.0503593718668572, 0.049041427768546024, 0.047802267711882285, 0.04664616896094002, 0.045577472928904, 0.04460057618328977, 0.043719936674308305, 0.042940095025639544, 0.0422657080546278, 0.04170158867300346, 0.041252743345607294, 0.04092439587365481, 0.040721985025960104, 0.04065112406064029, 0.04071751290164906, 0.04092679876783546, 0.04128438800435792, 0.04179521975888598, 0.04246351950240318, 0.04329255555272604, 0.044284423343850035, 0.04543987959617066, 0.04675824222452186, 0.048237363166420424, 0.04987367222293209, 0.05166228228828015, 0.053597141218999014, 0.05567121346066827, 0.05787667508116663, 0.06020510827330895, 0.06264768477801967, 0.06519533125206309, 0.06783887281538452, 0.07056915357576721, 0.0733771347645675 ], [ 0.0778700420794083, 0.07579689682023465, 0.07376554492409822, 0.07177689421094391, 0.06983194523069498, 0.06793183697219507, 0.06607788981599048, 0.06427164384904337, 0.0625148907787397, 0.060809697921473935, 0.05915842309916956, 0.05756371975071712, 0.056028532140805665, 0.05455608120261115, 0.05314984224767375, 0.05181351646549798, 0.05055099875139254, 0.04936634486240937, 0.048263741115599834, 0.047247479714305415, 0.046321942232996606, 0.045491592755111096, 0.044760980641830615, 0.04413475099014515, 0.0436176586884055, 0.0432145798723042, 0.042930512891048156, 0.04277056003444111, 0.042739881656410225, 0.04284361625748619, 0.04308676362354849, 0.043474032988517895, 0.044009663733380784, 0.044697231367839714, 0.045539455351666105, 0.04653802675997888, 0.04769347241438617, 0.04900506808075005, 0.05047080749103294, 0.052087427483952044, 0.053850483707597874, 0.055754467018269596, 0.05779294838748633, 0.059958739747486035, 0.06224405935942179, 0.06464069240796629, 0.06714014004728477, 0.0697337525997155, 0.07241284475468299, 0.0751687922948914 ], [ 0.07856282077703824, 0.07653324490205612, 0.07454774016782058, 0.07260712463137987, 0.07071227850824267, 0.06886419024410857, 0.06706400077015268, 0.06531304414640834, 0.06361288288720049, 0.06196533645812619, 0.0603725017345512, 0.05883676461048155, 0.057360802429076346, 0.05594757745047837, 0.05460032214751429, 0.05332251768476876, 0.052117867440317336, 0.05099026781284673, 0.04994377875300789, 0.04898259640115457, 0.04811102984617909, 0.04733348330722345, 0.046654443982595654, 0.046078474463380245, 0.04561020709179338, 0.04525433614762344, 0.04501560252400181, 0.04489876490163799, 0.044908551635094336, 0.04504958883914355, 0.04532630256353903, 0.045742796298664505, 0.04630270893070408, 0.0470090620092247, 0.04786410805251884, 0.048869192937393176, 0.05002464482652459, 0.051329699618191595, 0.05278246901874013, 0.054379952786573184, 0.05611809230966438, 0.05799185915298691, 0.05999536996609043, 0.06212201827028483, 0.06436461397797158, 0.0667155226986394, 0.06916679857519156, 0.07171030622762317, 0.07433782910431051, 0.07704116300090595 ], [ 0.07929433496401735, 0.07730908708527297, 0.07537023034239405, 0.07347849810513414, 0.07163465613596282, 0.06983954910548072, 0.06809414616523579, 0.06639958383527772, 0.06475720452057586, 0.06316858912377561, 0.06163558246971132, 0.06016031059176018, 0.05874518933792581, 0.0573929242153288, 0.05610650187942664, 0.054889174155880835, 0.05374443592004087, 0.052675998506592756, 0.0516877605328901, 0.05078377804610124, 0.0499682357055296, 0.04924542026075721, 0.04861969688131679, 0.04809548796781596, 0.04767725300581967, 0.047369466941171515, 0.047176593634558874, 0.04710305040220274, 0.04715315967736951, 0.04733108459592581, 0.04764074687718821, 0.048085727643555023, 0.048669154523772136, 0.049393581083307735, 0.050260866808175694, 0.05127206706249586, 0.05242734233989132, 0.053725894691725444, 0.05516593667991125, 0.0567446950281256, 0.058458447888908575, 0.060302591819142964, 0.062271732523807376, 0.06435979234489145, 0.06656012730270579, 0.06886564706298412, 0.0712689322610688, 0.07376234491356824, 0.07633812897946916, 0.0789884993481211 ], [ 0.08006976981902285, 0.07812956395501437, 0.07623809211159674, 0.07439600788295063, 0.07260396826571236, 0.07086268062138204, 0.06917294949855234, 0.06753572159895029, 0.06595212719510007, 0.06442351642130285, 0.06295148906149732, 0.06153791673986333, 0.06018495677021785, 0.058895057320507115, 0.05767095397738508, 0.05651565822595738, 0.055432438761782166, 0.054424796891722665, 0.05349643752220753, 0.05265123734124079, 0.051893211742576995, 0.05122648179264282, 0.050655242095977465, 0.050183729788737814, 0.04981619413081792, 0.04955686536046461, 0.04940992074421759, 0.0493794452503701, 0.049469384154509174, 0.04968348528152263, 0.05002522956412596, 0.05049775011006665, 0.051103741849703975, 0.05184536579567115, 0.05272415363122545, 0.05374091940628774, 0.05489568530981124, 0.05618762771973263, 0.05761504811590201, 0.05917537125161806, 0.06086517058417404, 0.06268021873806076, 0.06461555901309822, 0.06666559282518825, 0.0688241775165758, 0.07108472911864397, 0.07344032524743561, 0.07588380418693273, 0.07840785720528101, 0.0810051121244768 ], [ 0.0808941190381099, 0.07899961081494358, 0.07715618100479295, 0.07536440792625185, 0.07362484507809976, 0.07193806849516206, 0.07030472469411235, 0.06872557750094742, 0.06720155204405033, 0.06573377427548681, 0.06432360454619382, 0.0629726640020689, 0.061682852875621946, 0.060456360106879686, 0.059295664118516646, 0.058203524972094564, 0.0571829685200708, 0.056237263515288495, 0.055369892917258495, 0.05458452081312286, 0.05388495642316808, 0.05327511656274054, 0.05275898767190471, 0.05234058810485309, 0.05202393082076236, 0.051812985993339056, 0.05171164244647563, 0.05172366634166095, 0.051852655314106356, 0.05210198638967396, 0.05247475657948069, 0.05297371603461446, 0.05360119494869498, 0.05435902682945389, 0.05524847207165067, 0.05627014669314735, 0.05742396143854558, 0.05870907611087046, 0.060123872994685676, 0.06166595174138324, 0.06333214634101153, 0.06511856307333688, 0.06702063684977948, 0.06903320229025095, 0.07115057529489952, 0.07336664075542004, 0.07567494232488113, 0.07806877071564507, 0.08054124770180025, 0.08308540375842005 ], [ 0.08177211028496241, 0.07992388284117949, 0.07812905678261949, 0.07638813909346939, 0.0747015845120678, 0.07306984318890017, 0.07149340959460712, 0.06997287096488203, 0.0685089535325244, 0.06710256484511165, 0.06575483059860793, 0.0644671246274865, 0.06324109097001085, 0.06207865725984082, 0.060982039065149624, 0.05995373518528424, 0.058996514301262584, 0.058113393737511336, 0.05730761140295826, 0.05658259221440678, 0.05594191043750023, 0.05538924938782774, 0.05492835979983449, 0.054563017890682644, 0.054296983734887866, 0.05413396006241147, 0.05407755106445323, 0.05413122032617274, 0.05429824670626938, 0.05458167694489909, 0.054984274068944315, 0.0555084612881662, 0.056156261978963305, 0.05692923740614791, 0.057828424857363475, 0.0588542796643916, 0.06000662499225039, 0.061284613191111656, 0.06268670191910165, 0.0642106472414401, 0.06585351464893377, 0.0676117076073916, 0.06948101203208792, 0.07145665412049111, 0.07353336835430309, 0.07570547221687754, 0.07796694423024937, 0.08031150222799384, 0.08273267926093053, 0.08522389509881309 ], [ 0.08270813288076327, 0.08090668313894424, 0.07916091247565837, 0.07747125987147888, 0.0758380855014871, 0.07426171858261998, 0.07274250706478314, 0.0712808674407431, 0.06987733288764418, 0.0685325979758484, 0.0672475582882543, 0.0660233434809775, 0.0648613425748837, 0.06376322058418199, 0.06273092594804956, 0.061766688616127184, 0.06087300902963731, 0.0600526386156905, 0.05930855274991109, 0.0586439174177795, 0.05806205099269507, 0.05756638262560491, 0.057160408688736807, 0.05684764852669892, 0.056631600449252265, 0.05651569848053113, 0.056503269910276856, 0.05659749324701571, 0.056801355835325425, 0.0571176102525767, 0.05754872870571261, 0.058096855027560894, 0.058763754492818905, 0.05955076244947296, 0.060458733561958855, 0.06148799413853802, 0.0626383004313636, 0.06390880585992512, 0.06529803978903803, 0.06680389983077546, 0.06842365873542938, 0.07015398592274033, 0.07199098272120429, 0.07393022954906756, 0.07596684266689252, 0.078095537793691, 0.08031069780013594, 0.08260644183509364, 0.08497669354868279, 0.08741524648385245 ], [ 0.0837061698781234, 0.08195189582573552, 0.08025550915931762, 0.07861738360796282, 0.07703778851386894, 0.07551693674741981, 0.07405503499770127, 0.07265233469882876, 0.07130918176863402, 0.07002606333845075, 0.06880364974174677, 0.0676428302015828, 0.06654474090308998, 0.0655107844458699, 0.06454264002687209, 0.0636422640901465, 0.06281188157702224, 0.06205396829804802, 0.06137122530455377, 0.060766546439047206, 0.060242980465974316, 0.05980368930446184, 0.05945190388450041, 0.059190879017783256, 0.059023848418656794, 0.05895398065106692, 0.05898433635662825, 0.05911782669717309, 0.05935717259388749, 0.05970486413633868, 0.06016311952356423, 0.06073384311222215, 0.06141858256750363, 0.06221848568227381, 0.06313425805324176, 0.06416612336582966, 0.06531378843203357, 0.06657641526556195, 0.06795260232829582, 0.06944037665569318, 0.07103719792674898, 0.07273997477893254, 0.07454509288491058, 0.07644845360236864, 0.07844552145398194, 0.08053137833386025, 0.08270078217878384, 0.08494822787047467, 0.08726800831288647, 0.08965427391119689 ], [ 0.08476973659830214, 0.08306292616492285, 0.0814161183909783, 0.07982962402535984, 0.07830362497444075, 0.07683822216330752, 0.07543348624569947, 0.07408950940909269, 0.0728064564195333, 0.07158461303690948, 0.07042443000671232, 0.06932656099620114, 0.06829189308196668, 0.0673215687008388, 0.06641699833113346, 0.06557986355954462, 0.06481211059107993, 0.06411593465524289, 0.06349375612878062, 0.0629481895113006, 0.06248200663102518, 0.06209809560305954, 0.06179941709366965, 0.06158895935267806, 0.06146969326458517, 0.06144452835623026, 0.0615162703202525, 0.061687580220309714, 0.06196093519704725, 0.06233859025423312, 0.0628225406220855, 0.06341448429570459, 0.06411578462501236, 0.06492743324788122, 0.06585001414008648, 0.06688367001698016, 0.0680280726739083, 0.06928239902528027, 0.07064531455585539, 0.07211496563130816, 0.07368898166394947, 0.07536448755640737, 0.07713812622875896, 0.07900609044931402, 0.0809641626990611, 0.08300776144693672, 0.08513199201555764, 0.08733170017098114, 0.0896015266550972, 0.09193596106443479 ], [ 0.08590182752953189, 0.08424264956042264, 0.08264547399077547, 0.08111055052305825, 0.07963797686025573, 0.07822774639689568, 0.07687979917643546, 0.0755940743506706, 0.0743705622606273, 0.07320935423204865, 0.07211068824446902, 0.07107498878773544, 0.07010289945515615, 0.06919530712575805, 0.06835335694383565, 0.06757845769381607, 0.06687227757336697, 0.06623673076642872, 0.0656739555888038, 0.0651862852999849, 0.06477621292385415, 0.06444635157793578, 0.06419939186063059, 0.06403805778013263, 0.06396506253054561, 0.06398306514633112, 0.06409462872638777, 0.06430218055748395, 0.0646079741351275, 0.06501405283046813, 0.06552221482781458, 0.06613397898357874, 0.06685055143370094, 0.06767279307513999, 0.06860118841570033, 0.06963581665824092, 0.07077632618991347, 0.07202191382532554, 0.07337131016662231, 0.07482277228399026, 0.07637408460630582, 0.07802256848558425, 0.07976510041703083, 0.08159813841818944, 0.0835177556484286, 0.08551968002285884, 0.08759933836403444, 0.08975190354484039, 0.09197234309711898, 0.09425546787233675 ], [ 0.0871048731919401, 0.08549337090394449, 0.08394573450465666, 0.08246215441372284, 0.08104264737808196, 0.07968710388368051, 0.0783953391974035, 0.07716714626897532, 0.07600234859535213, 0.07490085111471453, 0.07386268725640274, 0.07288806042350066, 0.07197737841799173, 0.07113127962070369, 0.07035065009404927, 0.069636631165384, 0.06899061745317266, 0.06841424569544802, 0.0679093751092286, 0.06747806032888996, 0.06712251822076004, 0.06684509003256561, 0.06664820039631386, 0.06653431465571015, 0.06650589583728489, 0.0665653623433332, 0.0667150471410818, 0.06695715889389425, 0.06729374517060588, 0.0677266576225629, 0.06825751887168463, 0.06888769082971052, 0.0696182442712656, 0.07044992969305351, 0.0713831497690924, 0.07241793400666882, 0.07355391646335555, 0.074790317553426, 0.07612593101788305, 0.07755911704306669, 0.07908780229701173, 0.08070948733784275, 0.08242126147540314, 0.0842198247809437, 0.0861015165831156, 0.0880623494958257, 0.09009804781624435, 0.09220408901894084, 0.09437574705092863, 0.0966081361910352 ], [ 0.0883807081868743, 0.0868167953595029, 0.0853184572683568, 0.08388582681444527, 0.08251884321958951, 0.08121729905673891, 0.07998089122152555, 0.07880927407489505, 0.07770211285151271, 0.0766591353869552, 0.07568018027126268, 0.07476523968410642, 0.07391449539793454, 0.0731283467368734, 0.07240742963329037, 0.0717526263114901, 0.07116506552863149, 0.07064611369506736, 0.07019735755912773, 0.06982057945456922, 0.069517726353699, 0.0692908741299741, 0.06914218849954654, 0.0690738840771443, 0.06908818285206447, 0.06918727317829182, 0.06937327010306928, 0.06964817756224555, 0.07001385268614455, 0.07047197222363984, 0.07102400093611005, 0.07167116175762246, 0.0724144075668516, 0.07325439455774013, 0.07419145740088201, 0.0752255866165841, 0.07635640878981419, 0.07758317040654637, 0.07890472615065819, 0.08031953245580449, 0.08182564696003584, 0.08342073427956669, 0.08510207823077613, 0.08686660032058706, 0.08871088402868335, 0.09063120414963069, 0.09262356026950491, 0.0946837133307934, 0.09680722419271875, 0.09898949311499802 ], [ 0.08973055119154455, 0.08821401120315181, 0.08676458452253355, 0.08538234845320881, 0.08406716844699312, 0.0828187446561857, 0.08163666268561369, 0.08052044678126274, 0.07946961355188936, 0.07848372427430259, 0.0775624338846641, 0.07670553490338088, 0.07591299477053887, 0.07518498536771047, 0.07452190385291786, 0.07392438431816789, 0.07339330017301561, 0.07292975754124614, 0.07253508031129043, 0.07221078778486746, 0.07195856610593955, 0.0717802348096637, 0.07167770989968805, 0.07165296483900717, 0.07170799072898937, 0.0718447567663807, 0.07206517182935983, 0.07237104777946299, 0.07276406480729711, 0.07324573892842759, 0.07381739157817645, 0.07448012117791618, 0.07523477655639103, 0.07608193219887666, 0.0770218654437533, 0.07805453592011836, 0.07917956768691545, 0.08039623466118918, 0.08170344998517011, 0.08309975996431063, 0.08458334310978388, 0.08615201464959815, 0.08780323665236321, 0.08953413366244603, 0.09134151350130328, 0.09322189267127863, 0.09517152562339665, 0.09718643703099775, 0.09926245615035967, 0.10139525234525922 ], [ 0.09115499716661732, 0.08968548484304999, 0.08828444154630863, 0.08695189118884156, 0.08568762963243791, 0.08449127066867274, 0.08336229640585634, 0.08230011031324501, 0.08130409103033275, 0.08037364500119044, 0.07950825604347651, 0.07870753010493699, 0.07797123368678976, 0.07729932470860175, 0.0766919749347094, 0.07614958345771097, 0.07567278111922371, 0.07526242612108351, 0.07491959142194703, 0.07464554480713856, 0.07444172274846778, 0.07430969932378526, 0.07425115153642121, 0.07426782236059114, 0.07436148274554419, 0.07453389365028024, 0.07478676897091946, 0.0751217399876983, 0.07554032172519928, 0.07604388141404436, 0.07663360908762153, 0.07731049025908215, 0.07807528060678724, 0.07892848264623338, 0.07987032446673026, 0.08090074073976367, 0.08201935633536749, 0.08322547298719886, 0.0845180595048841, 0.08589574603003558, 0.08735682276658649, 0.08889924349231548, 0.0905206339903759, 0.09221830534593829, 0.09398927185430582, 0.09583027310267128, 0.09773779963355927, 0.09970812148533756, 0.10173731883840281, 0.10382131397553795 ], [ 0.09265402155113124, 0.09123106766217991, 0.08987774631406364, 0.08859403061110516, 0.08737965148456762, 0.08623414300882869, 0.08515689227939287, 0.08414719212492695, 0.08320429478221986, 0.08232746461442898, 0.08151602800130855, 0.08076941867103013, 0.08008721696608125, 0.07946918182546892, 0.07891527460345008, 0.07842567421108713, 0.07800078343999671, 0.0776412266881481, 0.07734783963619953, 0.07712165170373848, 0.07696386233417236, 0.07687581230512082, 0.07685895133242462, 0.07691480322995056, 0.0770449298093713, 0.07725089456500389, 0.07753422700511634, 0.07789638828300366, 0.07833873857173732, 0.07886250643775866, 0.07946876031988552, 0.08015838212493466, 0.08093204291480247, 0.08179018067914937, 0.08273298025188695, 0.08376035552070069, 0.08487193417621652, 0.08606704533002561, 0.08734471038074458, 0.08870363751292391, 0.09014222016970698, 0.09165853974966717, 0.09325037265002832, 0.09491520162608724, 0.09665023127597965, 0.09845240730615892, 0.10031843909989654, 0.10224482500806066, 0.10422787971453011, 0.10626376299892673 ], [ 0.09422699576085423, 0.09285001388695774, 0.09154362976969761, 0.09030776871481443, 0.08914210187001573, 0.08804609078392577, 0.08701903663227267, 0.0860601324123092, 0.08516851626479603, 0.08434332403487095, 0.08358373923055556, 0.08288903867568442, 0.08225863237217472, 0.08169209636919111, 0.08118919776528032, 0.08074991132420893, 0.08037442754520265, 0.08006315237454778, 0.07981669906033692, 0.07963587292038281, 0.0795216500030811, 0.07947515076402391, 0.07949760995297654, 0.07959034390713246, 0.07975471638244057, 0.0799921039353475, 0.08030386170708823, 0.0806912902791357, 0.08115560408115875, 0.08169790166041821, 0.08231913798054574, 0.08302009881942181, 0.08380137728580511, 0.08466335247108057, 0.0856061702878235, 0.08662972660773317, 0.08773365288159746, 0.08891730448671203, 0.0901797520878523, 0.09151977630606853, 0.09293586596000271, 0.09442622007784224, 0.09598875378006252, 0.09762110801354093, 0.09932066298821698, 0.10108455504045503, 0.10290969653365538, 0.10479279831504175, 0.10673039418352488, 0.1087188667893551 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
l2norm: 1.41279 (SEM: 0)
x1: 0.00500019
x2: 0.874178
x3: 0.246325
x4: 0.0464745
x5: 0.501489
x6: 0.957827", "Arm 10_0
l2norm: 1.38518 (SEM: 0)
x1: 0.285348
x2: 0.344471
x3: 0.807655
x4: 0.350814
x5: 0.936768
x6: 0.256351", "Arm 11_0
l2norm: 0.981632 (SEM: 0)
x1: 0.0255972
x2: 0.359241
x3: 0.534968
x4: 0.538254
x5: 0.507815
x6: 0.0103999", "Arm 12_0
l2norm: 1.30292 (SEM: 0)
x1: 0.673263
x2: 0.484185
x3: 0.434073
x4: 0.0235592
x5: 0.374813
x6: 0.824877", "Arm 13_0
l2norm: 1.15209 (SEM: 0)
x1: 0.570419
x2: 0.467727
x3: 0.451646
x4: 0.0412614
x5: 0.358356
x6: 0.670113", "Arm 14_0
l2norm: 1.12294 (SEM: 0)
x1: 0.578893
x2: 0.447142
x3: 0.475639
x4: 0.0895918
x5: 0.319048
x6: 0.624406", "Arm 15_0
l2norm: 1.099 (SEM: 0)
x1: 0.58632
x2: 0.428264
x3: 0.496297
x4: 0.132332
x5: 0.280331
x6: 0.581561", "Arm 16_0
l2norm: 1.08124 (SEM: 0)
x1: 0.614484
x2: 0.353611
x3: 0.49863
x4: 0.156342
x5: 0.280051
x6: 0.561208", "Arm 17_0
l2norm: 1.02935 (SEM: 0)
x1: 0.612976
x2: 0.291934
x3: 0.44681
x4: 0.149275
x5: 0.243753
x6: 0.563262", "Arm 18_0
l2norm: 1.08575 (SEM: 0)
x1: 0.678597
x2: 0.265128
x3: 0.517192
x4: 0.116097
x5: 0.235119
x6: 0.558417", "Arm 19_0
l2norm: 1.02473 (SEM: 0)
x1: 0.587128
x2: 0.295911
x3: 0.436473
x4: 0.187468
x5: 0.296084
x6: 0.551781", "Arm 1_0
l2norm: 1.31906 (SEM: 0)
x1: 0.512245
x2: 0.489062
x3: 0.314054
x4: 0.0678942
x5: 0.563168
x6: 0.904405", "Arm 20_0
l2norm: 0.987873 (SEM: 0)
x1: 0.546708
x2: 0.273753
x3: 0.401711
x4: 0.231875
x5: 0.328642
x6: 0.528128", "Arm 21_0
l2norm: 0.971444 (SEM: 0)
x1: 0.537004
x2: 0.260776
x3: 0.355933
x4: 0.272078
x5: 0.349691
x6: 0.514127", "Arm 22_0
l2norm: 0.951244 (SEM: 0)
x1: 0.485569
x2: 0.231123
x3: 0.403705
x4: 0.250465
x5: 0.343469
x6: 0.521525", "Arm 23_0
l2norm: 0.929 (SEM: 0)
x1: 0.427831
x2: 0.17197
x3: 0.43445
x4: 0.254316
x5: 0.335737
x6: 0.533183", "Arm 24_0
l2norm: 0.915371 (SEM: 0)
x1: 0.361593
x2: 0.087317
x3: 0.466545
x4: 0.272066
x5: 0.315675
x6: 0.555154", "Arm 25_0
l2norm: 0.90527 (SEM: 0)
x1: 0.298804
x2: 0.0166056
x3: 0.476615
x4: 0.290996
x5: 0.300872
x6: 0.572355", "Arm 26_0
l2norm: 0.876367 (SEM: 0)
x1: 0.263035
x2: 0
x3: 0.5077
x4: 0.242947
x5: 0.314993
x6: 0.531817", "Arm 27_0
l2norm: 0.960975 (SEM: 0)
x1: 0.320571
x2: 0.0399479
x3: 0.497476
x4: 0.343857
x5: 0.296859
x6: 0.604373", "Arm 28_0
l2norm: 0.919594 (SEM: 0)
x1: 0.326197
x2: 9.4964e-19
x3: 0.427433
x4: 0.302079
x5: 0.299208
x6: 0.613003", "Arm 2_0
l2norm: 1.42669 (SEM: 0)
x1: 0.731866
x2: 0.509426
x3: 0.367735
x4: 0.271838
x5: 0.43733
x6: 0.91647", "Arm 3_0
l2norm: 1.91778 (SEM: 0)
x1: 0.967263
x2: 0.655116
x3: 0.197203
x4: 0.75531
x5: 0.856316
x6: 0.985118", "Arm 4_0
l2norm: 1.28799 (SEM: 0)
x1: 0.426973
x2: 0.688982
x3: 0.894953
x4: 0.0615389
x5: 0.43926
x6: 0.0651191", "Arm 5_0
l2norm: 1.81349 (SEM: 0)
x1: 0.801046
x2: 0.583434
x3: 0.62531
x4: 0.934193
x5: 0.224422
x6: 0.996276", "Arm 6_0
l2norm: 1.6744 (SEM: 0)
x1: 0.248954
x2: 0.997674
x3: 0.1948
x4: 0.946118
x5: 0.616622
x6: 0.658008", "Arm 7_0
l2norm: 1.66765 (SEM: 0)
x1: 0.769907
x2: 0.797368
x3: 0.0479959
x4: 0.640898
x5: 0.977106
x6: 0.4298", "Arm 8_0
l2norm: 1.49656 (SEM: 0)
x1: 0.315442
x2: 0.174175
x3: 0.769119
x4: 0.413574
x5: 0.639991
x6: 0.968338", "Arm 9_0
l2norm: 1.57266 (SEM: 0)
x1: 0.504292
x2: 0.902958
x3: 0.489927
x4: 0.937511
x5: 0.234177
x6: 0.479394" ], "type": "scatter", "x": [ 0.005000186152756214, 0.28534774389117956, 0.02559724450111389, 0.6732627264880868, 0.5704185639515666, 0.5788929442959532, 0.5863204280181247, 0.6144842401447831, 0.61297612641924, 0.6785971764678485, 0.5871277012272785, 0.5122449044138193, 0.5467075339617112, 0.5370042911982217, 0.4855692237413777, 0.4278305858635204, 0.36159312642398184, 0.29880443357331465, 0.26303539471407406, 0.3205711290269389, 0.3261971566620133, 0.7318663941696286, 0.9672631155699492, 0.4269726099446416, 0.801046334207058, 0.24895355477929115, 0.7699069436639547, 0.31544242426753044, 0.5042920913547277 ], "xaxis": "x", "y": [ 0.8741776347160339, 0.34447056986391544, 0.35924113634973764, 0.484185164700876, 0.46772671741689187, 0.44714209163123436, 0.42826389964633044, 0.3536107484553733, 0.2919338659362389, 0.2651282371799706, 0.295910898319476, 0.4890619143843651, 0.27375325986134913, 0.26077598501022686, 0.23112297528674897, 0.1719699250718645, 0.08731696580665907, 0.016605625132793345, 0.0, 0.039947903482525436, 9.496397417940653e-19, 0.5094257295131683, 0.6551159676164389, 0.6889820275828242, 0.5834340136498213, 0.9976742928847671, 0.7973677506670356, 0.17417488992214203, 0.9029575204476714 ], "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.41279 (SEM: 0)
x1: 0.00500019
x2: 0.874178
x3: 0.246325
x4: 0.0464745
x5: 0.501489
x6: 0.957827", "Arm 10_0
l2norm: 1.38518 (SEM: 0)
x1: 0.285348
x2: 0.344471
x3: 0.807655
x4: 0.350814
x5: 0.936768
x6: 0.256351", "Arm 11_0
l2norm: 0.981632 (SEM: 0)
x1: 0.0255972
x2: 0.359241
x3: 0.534968
x4: 0.538254
x5: 0.507815
x6: 0.0103999", "Arm 12_0
l2norm: 1.30292 (SEM: 0)
x1: 0.673263
x2: 0.484185
x3: 0.434073
x4: 0.0235592
x5: 0.374813
x6: 0.824877", "Arm 13_0
l2norm: 1.15209 (SEM: 0)
x1: 0.570419
x2: 0.467727
x3: 0.451646
x4: 0.0412614
x5: 0.358356
x6: 0.670113", "Arm 14_0
l2norm: 1.12294 (SEM: 0)
x1: 0.578893
x2: 0.447142
x3: 0.475639
x4: 0.0895918
x5: 0.319048
x6: 0.624406", "Arm 15_0
l2norm: 1.099 (SEM: 0)
x1: 0.58632
x2: 0.428264
x3: 0.496297
x4: 0.132332
x5: 0.280331
x6: 0.581561", "Arm 16_0
l2norm: 1.08124 (SEM: 0)
x1: 0.614484
x2: 0.353611
x3: 0.49863
x4: 0.156342
x5: 0.280051
x6: 0.561208", "Arm 17_0
l2norm: 1.02935 (SEM: 0)
x1: 0.612976
x2: 0.291934
x3: 0.44681
x4: 0.149275
x5: 0.243753
x6: 0.563262", "Arm 18_0
l2norm: 1.08575 (SEM: 0)
x1: 0.678597
x2: 0.265128
x3: 0.517192
x4: 0.116097
x5: 0.235119
x6: 0.558417", "Arm 19_0
l2norm: 1.02473 (SEM: 0)
x1: 0.587128
x2: 0.295911
x3: 0.436473
x4: 0.187468
x5: 0.296084
x6: 0.551781", "Arm 1_0
l2norm: 1.31906 (SEM: 0)
x1: 0.512245
x2: 0.489062
x3: 0.314054
x4: 0.0678942
x5: 0.563168
x6: 0.904405", "Arm 20_0
l2norm: 0.987873 (SEM: 0)
x1: 0.546708
x2: 0.273753
x3: 0.401711
x4: 0.231875
x5: 0.328642
x6: 0.528128", "Arm 21_0
l2norm: 0.971444 (SEM: 0)
x1: 0.537004
x2: 0.260776
x3: 0.355933
x4: 0.272078
x5: 0.349691
x6: 0.514127", "Arm 22_0
l2norm: 0.951244 (SEM: 0)
x1: 0.485569
x2: 0.231123
x3: 0.403705
x4: 0.250465
x5: 0.343469
x6: 0.521525", "Arm 23_0
l2norm: 0.929 (SEM: 0)
x1: 0.427831
x2: 0.17197
x3: 0.43445
x4: 0.254316
x5: 0.335737
x6: 0.533183", "Arm 24_0
l2norm: 0.915371 (SEM: 0)
x1: 0.361593
x2: 0.087317
x3: 0.466545
x4: 0.272066
x5: 0.315675
x6: 0.555154", "Arm 25_0
l2norm: 0.90527 (SEM: 0)
x1: 0.298804
x2: 0.0166056
x3: 0.476615
x4: 0.290996
x5: 0.300872
x6: 0.572355", "Arm 26_0
l2norm: 0.876367 (SEM: 0)
x1: 0.263035
x2: 0
x3: 0.5077
x4: 0.242947
x5: 0.314993
x6: 0.531817", "Arm 27_0
l2norm: 0.960975 (SEM: 0)
x1: 0.320571
x2: 0.0399479
x3: 0.497476
x4: 0.343857
x5: 0.296859
x6: 0.604373", "Arm 28_0
l2norm: 0.919594 (SEM: 0)
x1: 0.326197
x2: 9.4964e-19
x3: 0.427433
x4: 0.302079
x5: 0.299208
x6: 0.613003", "Arm 2_0
l2norm: 1.42669 (SEM: 0)
x1: 0.731866
x2: 0.509426
x3: 0.367735
x4: 0.271838
x5: 0.43733
x6: 0.91647", "Arm 3_0
l2norm: 1.91778 (SEM: 0)
x1: 0.967263
x2: 0.655116
x3: 0.197203
x4: 0.75531
x5: 0.856316
x6: 0.985118", "Arm 4_0
l2norm: 1.28799 (SEM: 0)
x1: 0.426973
x2: 0.688982
x3: 0.894953
x4: 0.0615389
x5: 0.43926
x6: 0.0651191", "Arm 5_0
l2norm: 1.81349 (SEM: 0)
x1: 0.801046
x2: 0.583434
x3: 0.62531
x4: 0.934193
x5: 0.224422
x6: 0.996276", "Arm 6_0
l2norm: 1.6744 (SEM: 0)
x1: 0.248954
x2: 0.997674
x3: 0.1948
x4: 0.946118
x5: 0.616622
x6: 0.658008", "Arm 7_0
l2norm: 1.66765 (SEM: 0)
x1: 0.769907
x2: 0.797368
x3: 0.0479959
x4: 0.640898
x5: 0.977106
x6: 0.4298", "Arm 8_0
l2norm: 1.49656 (SEM: 0)
x1: 0.315442
x2: 0.174175
x3: 0.769119
x4: 0.413574
x5: 0.639991
x6: 0.968338", "Arm 9_0
l2norm: 1.57266 (SEM: 0)
x1: 0.504292
x2: 0.902958
x3: 0.489927
x4: 0.937511
x5: 0.234177
x6: 0.479394" ], "type": "scatter", "x": [ 0.005000186152756214, 0.28534774389117956, 0.02559724450111389, 0.6732627264880868, 0.5704185639515666, 0.5788929442959532, 0.5863204280181247, 0.6144842401447831, 0.61297612641924, 0.6785971764678485, 0.5871277012272785, 0.5122449044138193, 0.5467075339617112, 0.5370042911982217, 0.4855692237413777, 0.4278305858635204, 0.36159312642398184, 0.29880443357331465, 0.26303539471407406, 0.3205711290269389, 0.3261971566620133, 0.7318663941696286, 0.9672631155699492, 0.4269726099446416, 0.801046334207058, 0.24895355477929115, 0.7699069436639547, 0.31544242426753044, 0.5042920913547277 ], "xaxis": "x2", "y": [ 0.8741776347160339, 0.34447056986391544, 0.35924113634973764, 0.484185164700876, 0.46772671741689187, 0.44714209163123436, 0.42826389964633044, 0.3536107484553733, 0.2919338659362389, 0.2651282371799706, 0.295910898319476, 0.4890619143843651, 0.27375325986134913, 0.26077598501022686, 0.23112297528674897, 0.1719699250718645, 0.08731696580665907, 0.016605625132793345, 0.0, 0.039947903482525436, 9.496397417940653e-19, 0.5094257295131683, 0.6551159676164389, 0.6889820275828242, 0.5834340136498213, 0.9976742928847671, 0.7973677506670356, 0.17417488992214203, 0.9029575204476714 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='l2norm'))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We also plot optimization trace, which shows best hartmann6 objective value seen by each iteration of the optimization:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": { "execution": { "iopub.execute_input": "2022-09-15T17:10:21.993412Z", "iopub.status.busy": "2022-09-15T17:10:21.992756Z", "iopub.status.idle": "2022-09-15T17:10:22.084928Z", "shell.execute_reply": "2022-09-15T17:10:22.083470Z" } }, "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.06731794639560283, -0.22305552651355381, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.45570732596071334, -0.8287211318029982, -1.0598238682854373, -1.1763390029042389, -1.2854355282421628, -1.3158944504808596, -1.3158944504808596, -1.5908880870955084, -1.80269181565632, -1.80269181565632, -2.066526960816533, -2.4099095889268365, -2.7506808273620584, -2.8434166348011547, -2.8434166348011547, -2.8434166348011547, -2.8466404678329136, -2.8695767257943254 ] }, { "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.06731794639560283, -0.22305552651355381, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.45570732596071334, -0.8287211318029982, -1.0598238682854373, -1.1763390029042389, -1.2854355282421628, -1.3158944504808596, -1.3158944504808596, -1.5908880870955084, -1.80269181565632, -1.80269181565632, -2.066526960816533, -2.4099095889268365, -2.7506808273620584, -2.8434166348011547, -2.8434166348011547, -2.8434166348011547, -2.8466404678329136, -2.8695767257943254 ] }, { "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.06731794639560283, -0.22305552651355381, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.413462936651033, -0.45570732596071334, -0.8287211318029982, -1.0598238682854373, -1.1763390029042389, -1.2854355282421628, -1.3158944504808596, -1.3158944504808596, -1.5908880870955084, -1.80269181565632, -1.80269181565632, -2.066526960816533, -2.4099095889268365, -2.7506808273620584, -2.8434166348011547, -2.8434166348011547, -2.8434166348011547, -2.8466404678329136, -2.8695767257943254 ] }, { "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([[trial.objective_mean for trial in experiment.trials.values()]])\n", "best_objective_plot = optimization_trace_single_method(\n", " y=np.minimum.accumulate(best_objectives, axis=1),\n", " optimum=hartmann6.fmin,\n", " title=\"Model performance vs. # of iterations\",\n", " ylabel=\"Hartmann6\",\n", ")\n", "render(best_objective_plot)" ] } ], "metadata": { "kernelspec": { "display_name": "python3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.13" } }, "nbformat": 4, "nbformat_minor": 2 }