{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\n", "from ax.plot.contour import plot_contour\n", "from ax.plot.trace import optimization_trace_single_method\n", "from ax.service.managed_loop import optimize\n", "from ax.metrics.branin import branin\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Define evaluation function\n", "\n", "First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "def hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x ** 2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Run optimization\n", "The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] 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 10-01 15:33:46] 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 10-01 15:33:46] 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 10-01 15:33:46] 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 10-01 15:33:46] 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 10-01 15:33:46] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 trials, GPEI for subsequent trials]). Iterations after 6 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 10-01 15:33:46] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/models/torch/utils.py:274: UserWarning:\n", "\n", "This overload of nonzero is deprecated:\n", "\tnonzero()\n", "Consider using one of the following signatures instead:\n", "\tnonzero(*, bool as_tuple) (Triggered internally at /pytorch/torch/csrc/utils/python_arg_parser.cpp:766.)\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:33:52] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:33:57] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:01] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:05] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:09] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:13] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:17] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:21] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:25] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:29] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:33] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:38] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:41] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:44] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:45] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:49] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:50] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:51] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:55] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:34:59] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:35:03] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:35:06] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n", "[INFO 10-01 15:35:10] ax.service.managed_loop: Running optimization trial 30...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.13885218555350543,\n", " 'x2': 0.1895580979279669,\n", " 'x3': 0.5334107177939718,\n", " 'x4': 6.101103775164642e-17,\n", " 'x5': 0.36076409245282803,\n", " 'x6': 0.6357817796984754}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 0.934937777293862, 'hartmann6': -1.8081028481672667}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n" ] }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -0.837372719581054, -0.8525895554603647, -0.8657507577032888, -0.8765634752521939, -0.8847602914985112, -0.8901141728678374, -0.8924524930482001, -0.8916681079771308, -0.887725802501442, -0.8806633532089071, -0.8705875341077886, -0.8576661471954818, -0.8421174298672222, -0.824198129586261, -0.8041913372893961, -0.7823949328904812, -0.7591112527578572, -0.7346383567000259, -0.7092630644118825, -0.6832557596212802, -0.6568668315892566, -0.6303245403430231, -0.6038340508318389, -0.5775773745197832, -0.5517139749302196, -0.5263818264225143, -0.5016987546090395, -0.4777639261591854, -0.454659391425449, -0.43245161340990873, -0.41119294048879923, -0.390922998316166, -0.371669989189111, -0.3534518958164488, -0.3362775918393982, -0.3201478644684917, -0.3050563559532834, -0.29099043087027976, -0.2779319758403759, -0.26585813758446697, -0.2547420044081701, -0.244553235405357, -0.23525864095845073, -0.22682271752227567, -0.2192081392128401, -0.21237620837214644, -0.20628726702791744, -0.20090107099332932, -0.1961771282384679, -0.19207500309669712 ], [ -0.8473088588650041, -0.8632491293472297, -0.8771003234450433, -0.8885479553749617, -0.8973019068012644, -0.9031131790949588, -0.90579008769145, -0.9052114541930408, -0.9013345816611377, -0.8941968527365491, -0.8839112194180012, -0.8706569528383965, -0.8546674324154571, -0.8362166231532162, -0.8156055373419749, -0.7931496089498988, -0.7691675917615921, -0.7439723280361001, -0.7178635152951713, -0.6911224234001322, -0.6640083853589123, -0.6367568048264275, -0.6095783875267071, -0.5826593044444974, -0.5561620205951323, -0.5302265634750636, -0.5049720507849083, -0.480498341236368, -0.45688771135565487, -0.43420649343372597, -0.412506634852838, -0.3918271575099132, -0.37219550895374715, -0.3536288052794324, -0.3361349708603631, -0.31971378259525607, -0.3043578272863753, -0.29005338065637987, -0.27678121580841886, -0.26451734795638127, -0.2532337212094128, -0.24289884221311941, -0.2334783645951637, -0.22493562745921203, -0.2172321506174717, -0.21032808883285747, -0.2041826470357846, -0.19875445826557603, -0.19400192594225907, -0.18988353198381736 ], [ -0.8560059194936315, -0.872633277975652, -0.8871459106400545, -0.8992085428394933, -0.908508794056535, -0.9147756763614838, -0.9177979987097046, -0.9174398146335905, -0.9136501053090391, -0.9064650463942301, -0.8960030236509215, -0.8824540761488767, -0.8660660282434447, -0.847129351216541, -0.8259622580824659, -0.8028970233636815, -0.7782681301606574, -0.7524025561933503, -0.7256122833135548, -0.6981889368387973, -0.670400332087841, -0.6424886275865244, -0.6146697541669592, -0.5871337973414821, -0.5600460445309443, -0.5335484567320818, -0.5077613761086706, -0.48278533002415797, -0.45870283441331217, -0.4355801336253107, -0.41346883998340817, -0.3924074551666814, -0.3724227683661684, -0.35353113430750155, -0.33573963887133657, -0.3190471622118415, -0.3034453498014009, -0.2889195013526854, -0.27544938655042595, -0.2630099952850159, -0.25157222882356933, -0.24110353720119304, -0.23156850712404264, -0.2229294038638513, -0.21514666998402976, -0.20817938325020802, -0.2019856757183196, -0.19652311573679004, -0.19174905442370094, -0.1876209380670789 ], [ -0.8633494366981883, -0.8806144473717765, -0.8957470918011068, -0.9083927676788957, -0.918217978785898, -0.9249304430855829, -0.9282996303705756, -0.9281744800206211, -0.9244948873070695, -0.9172947670638305, -0.9066967104152387, -0.8929002109082085, -0.8761662104042324, -0.8568004024116102, -0.835137001817396, -0.8115240352125316, -0.7863107482449367, -0.7598374114732753, -0.732427570341136, -0.704382602242336, -0.6759783128670305, -0.6474632278830861, -0.6190582111137463, -0.5909570562642231, -0.5633277419301265, -0.5363140954826526, -0.510037669747835, -0.4845996901542161, -0.4600829755410695, -0.43655377190519207, -0.4140634653854809, -0.39265015992314983, -0.37234011777609793, -0.35314906889192377, -0.3350833993805943, -0.31814123107773723, -0.3023134043242164, -0.287584375262697, -0.2739330376377045, -0.2613334776008627, -0.249755668567757, -0.23916611185953585, -0.22952842774243765, -0.22080390056271704, -0.21295198095109547, -0.2059307475158697, -0.199697330029865, -0.1942082958171194, -0.1894200008372635, -0.18528890683000265 ], [ -0.8692393197680238, -0.8870797902454967, -0.9027782370138829, -0.915962792159492, -0.9262807171387455, -0.9334199103692638, -0.9371313743332004, -0.9372490648631031, -0.9337031601046959, -0.9265240303475635, -0.9158367371203306, -0.90184827090485, -0.8848307093112374, -0.8651031001230659, -0.8430139821183856, -0.8189256753039923, -0.793200949635714, -0.7661923380160127, -0.7382341090019555, -0.7096367228437499, -0.680683459150928, -0.6516288289747665, -0.6226983643407429, -0.5940894020512765, -0.565972529937551, -0.5384934275457691, -0.511774897952741, -0.48591894577278333, -0.46100880493300816, -0.4371108576016926, -0.4142764134885161, -0.3925433380937172, -0.37193753109315236, -0.35247426356020284, -0.3341593865776518, -0.31699042515213305, -0.3009575711168049, -0.28604458756602713, -0.2722296357839662, -0.25948603392226555, -0.2477829550455486, -0.23708607070216947, -0.22735814493683837, -0.21855958264644382, -0.21064893537470208, -0.20358336701823587, -0.1973190814470347, -0.19181171369848027, -0.18701668616245137, -0.18288953101564576 ], [ -0.8735943119065444, -0.891936438010287, -0.9081346438033222, -0.9218023936484004, -0.9325702531154757, -0.9401085249677242, -0.9441513229724596, -0.9445182593785199, -0.9411293492319861, -0.934009965638793, -0.9232854616976011, -0.9091677831182168, -0.8919375595929684, -0.8719247823466899, -0.8494901853304857, -0.8250085704036426, -0.7988547311071607, -0.7713922479566911, -0.742965152925399, -0.7138922528678948, -0.6844637581784898, -0.6549397866790323, -0.6255502977860102, -0.5964960437388042, -0.5679501847816624, -0.5400602869239473, -0.5129504918930945, -0.4867237117257269, -0.4614637518149253, -0.43723730565603247, -0.41409579311779676, -0.3920770336224154, -0.3712067581072307, -0.3514999708736268, -0.33296217593947297, -0.3155904835270239, -0.29937461177479485, -0.2842977973442087, -0.27033762677597306, -0.2574667985497676, -0.2456538240028192, -0.23486367366729333, -0.22505837423266795, -0.21619756022831016, -0.20823898363413618, -0.20113898393494112, -0.19485292060635384, -0.1893355696297836, -0.18454148535603665, -0.18042532885282625 ], [ -0.8763558080787384, -0.8951160954278233, -0.9117379724751964, -0.9258232592899927, -0.9369889185091839, -0.944890504258431, -0.9492474294035376, -0.9498660749133352, -0.9466560744688521, -0.9396362971592861, -0.9289299204385393, -0.9147508765637485, -0.8973852918564171, -0.8771712389290505, -0.8544791229359705, -0.8296940910443491, -0.8032012069245221, -0.7753736987997799, -0.7465642765590399, -0.7170992811487371, -0.6872752736653379, -0.6573575927204958, -0.627580397896206, -0.5981477565586154, -0.5692353999957228, -0.5409928543042652, -0.5135457285081224, -0.4869980094951261, -0.46143426744945953, -0.43692171641848837, -0.4135121039630433, -0.39124342361255615, -0.37014145626063655, -0.3502211536488585, -0.3314878803219998, -0.3139385311735132, -0.2975625408988398, -0.28234280002962486, -0.2682564902123288, -0.25527584932929015, -0.24336887512238992, -0.2324999742638475, -0.22263056236003542, -0.21371961917080828, -0.20572420235808853, -0.19859992231350565, -0.19230138002649755, -0.1867825695135008, -0.1819972460125856, -0.1778992609367338 ], [ -0.8774906024866301, -0.8965784054987757, -0.913540286368626, -0.9279697257513632, -0.9394735406941536, -0.9476958049901519, -0.9523438489151648, -0.953212310051843, -0.9502004795497119, -0.9433193140000118, -0.9326872843157326, -0.918517144545612, -0.9010971807006766, -0.8807703662467082, -0.857913937941705, -0.832920966495955, -0.8061847930819845, -0.7780867065383084, -0.748986872903385, -0.7192182638616138, -0.6890831579445792, -0.6588517046533199, -0.628762033948119, -0.5990214400121471, -0.5698082449305952, -0.5412740346592181, -0.5135460424207083, -0.48672952579335976, -0.4609100404197222, -0.43615555570654946, -0.41251838793549045, -0.39003694624783825, -0.3687372993852667, -0.34863457794920294, -0.329734229988793, -0.31203314826409745, -0.2955206865411816, -0.28017958046231717, -0.2659867863764256, -0.25291424931887085, -0.24092960927575036, -0.22999685304701056, -0.2200769174671342, -0.21112824844948486, -0.20310731926897485, -0.19596911065982492, -0.18966755465173535, -0.18415594357330844, -0.17938730529363167, -0.17531474553301518 ], [ -0.8769922418898003, -0.8963126630038978, -0.9135261574110306, -0.9282212900781243, -0.9399983456592708, -0.948493372332609, -0.9534044528679786, -0.9545162194937075, -0.9517179321677314, -0.9450114814213406, -0.934508280443155, -0.9204168018541508, -0.9030240916784776, -0.8826746837967393, -0.8597495918608282, -0.8346471581208206, -0.8077667928625768, -0.7794960745703126, -0.750201258768529, -0.7202209384583659, -0.6898624046802161, -0.6594001643292583, -0.6290760657661774, -0.5991005348538708, -0.5696545077692177, -0.540891740153089, -0.5129412600845458, -0.48590980717881227, -0.45988415918152564, -0.43493329132018166, -0.41111034450287054, -0.38845439885983934, -0.366992061656403, -0.34673888546848536, -0.3277006354786977, -0.309874425182759, -0.2932497386976245, -0.27780935594459144, -0.26353019472392436, -0.25038408140764157, -0.23833845983211677, -0.22735704606154916, -0.21740043504925555, -0.2084266638437361, -0.20039173485154116, -0.19325010175305357, -0.186955119944766, -0.18145946282891112, -0.17671550486845922, -0.17267567205477374 ], [ -0.8748808332179092, -0.8943376827764755, -0.91171259540072, -0.9265925991499504, -0.9385750134731257, -0.9472912830430654, -0.9524331001340973, -0.953776962638129, -0.9512026846508747, -0.9447023145809155, -0.9343782414510663, -0.9204318460056646, -0.9031456827978624, -0.8828625119567842, -0.8599639706321554, -0.8348508631633068, -0.8079262839709437, -0.7795821616801561, -0.7501893292104203, -0.7200908748905965, -0.6895983093785611, -0.6589899806205437, -0.6285111609290931, -0.5983752858321064, -0.5687659134022292, -0.5398390712881413, -0.5117257509763088, -0.4845343868686814, -0.45835321904670134, -0.4332524838900298, -0.40928640839318514, -0.3864950049046319, -0.36490567579415234, -0.34453464453282595, -0.3253882326780582, -0.30746400268981566, -0.2907517853851862, -0.27523460888636575, -0.26088954361540306, -0.24768847554449136, -0.2355988177009486, -0.2245841679422429, -0.2146049192914481, -0.20561882765877837, -0.19758154055424282, -0.19044708939871413, -0.18416834724388287, -0.17869745309619112, -0.1739862035883898, -0.16998641243892754 ], [ -0.8712013548112418, -0.8906998944035199, -0.9081469071001643, -0.9231310705103117, -0.9352500928036591, -0.9441340380789616, -0.9494709482883704, -0.9510311065072714, -0.9486857279610215, -0.9424166841415084, -0.9323158857744253, -0.9185752694873925, -0.9014699677913653, -0.8813377943373615, -0.8585578815455461, -0.8335306180092079, -0.8066602780515724, -0.7783410639625081, -0.7489467407844519, -0.7188236483221091, -0.6882866258474702, -0.657617267750221, -0.6270639152993075, -0.5968428458766768, -0.5671402132022388, -0.5381143942834371, -0.5098984944866337, -0.48260284284958815, -0.45631737299254815, -0.4311138316415507, -0.4070477893655419, -0.3841604496130256, -0.3624802653114219, -0.3420243795325423, -0.3227999099104295, -0.3048050970474857, -0.2880303360999762, -0.2724591088224775, -0.2580688310614533, -0.2448316283298444, -0.23271504984856872, -0.22168272940029654, -0.21169499954375315, -0.20270946418918523, -0.19468153322720239, -0.18756492181915274, -0.18131211608083853, -0.17587480620839324, -0.1712042875916907, -0.16725183012255784 ], [ -0.8660207036635581, -0.8854699685372913, -0.9029028842877158, -0.917912656431827, -0.9301004060384838, -0.9390977396895342, -0.9445915976236345, -0.9463479672274748, -0.9442305474050514, -0.9382111411409907, -0.9283702806344362, -0.9148886495326146, -0.8980314658728432, -0.8781287138790168, -0.8555540378445602, -0.8307045628978872, -0.8039831924624256, -0.7757842368006347, -0.7464826412661301, -0.7164266457586265, -0.6859334277415079, -0.6552871462129235, -0.6247387823703083, -0.5945072261401942, -0.5647811502661901, -0.535721317585395, -0.507463064859051, -0.4801187891772315, -0.4537803278053799, -0.42852117026152203, -0.4043984749648113, -0.3814548850057741, -0.35972015131139123, -0.3392125791304884, -0.3199403172595805, -0.3019025102135946, -0.2850903326729216, -0.2694879237451323, -0.2550732363617261, -0.24181881480146927, -0.22969251107814337, -0.2186581488512248, -0.2086761416572429, -0.19970407063101425, -0.19169722548764045, -0.1846091113607936, -0.17839192313161556, -0.17299698812714492, -0.16837517750806097, -0.1644772862914612 ], [ -0.8594238396537346, -0.8787384304317557, -0.8960758885691111, -0.9110364429906426, -0.9232272588378266, -0.9322840654523885, -0.9378950318588902, -0.9398237421286771, -0.9379276575282864, -0.9321690182859196, -0.9226166041591337, -0.9094385938855634, -0.8928882960349485, -0.8732853639245497, -0.8509952187322946, -0.8264090021641198, -0.7999257301847162, -0.7719376259340743, -0.7428189960633258, -0.7129185435761551, -0.6825547027537737, -0.6520134270531818, -0.6215478272261131, -0.5913791039941794, -0.5616983094474717, -0.5326685747162663, -0.5044275397573466, -0.47708980478648727, -0.4507492888976233, -0.425481430436269, -0.40134519822267883, -0.37838490575577743, -0.3566318349345363, -0.33610568404180335, -0.31681585867668477, -0.29876262545825516, -0.28193814772035874, -0.26632742082122807, -0.25190912260530096, -0.23865639229909852, -0.22653754889173028, -0.21551675795040126, -0.20555465390591754, -0.19660892313590184, -0.1886348516827172, -0.1815858401716417, -0.17541388744330977, -0.170070043581664, -0.16550483240085656, -0.16166864304322248 ], [ -0.8515094457231341, -0.8706107681406702, -0.887777434321216, -0.902618777022598, -0.9147502253006641, -0.9238138643811925, -0.9295012019494024, -0.9315752639186231, -0.9298886975927223, -0.9243950096304063, -0.9151513098931656, -0.9023125403055994, -0.8861186126782927, -0.866876782202064, -0.844941839243077, -0.8206964363892517, -0.7945332997245234, -0.766840406000733, -0.7379895848143851, -0.7083285110129194, -0.67817572087378, -0.6478181107887713, -0.6175103288441073, -0.5874755070470916, -0.5579068659766144, -0.5289698240256553, -0.5008043405637738, -0.47352730602918075, -0.44723485856528344, -0.42200455670686476, -0.3978973730783549, -0.3749594979893211, -0.353223957012427, -0.33271205552068145, -0.31343466767321404, -0.29539338893945755, -0.27858157101367564, -0.2629852566499238, -0.24858403005272323, -0.23535179632077807, -0.22325750126214083, -0.21226580079699664, -0.20233768720330592, -0.1934310776767344, -0.18550136909078363, -0.1785019614706893, -0.17238475154713273, -0.16710059684129164, -0.16259975005323646, -0.15883226307685494 ], [ -0.8423855137549938, -0.8612025107193532, -0.8781298039510859, -0.8927874999252996, -0.9048011132931779, -0.9138209859568149, -0.9195438559031646, -0.9217339635079596, -0.9202406510862826, -0.9150097591247789, -0.9060871784017168, -0.8936143370406502, -0.8778167457729924, -0.8589876467376364, -0.8374691698272553, -0.8136332550837068, -0.7878641212682183, -0.7605434389041319, -0.7320387539727942, -0.7026952049430712, -0.672830226373814, -0.6427307387388534, -0.6126522594760193, -0.5828193950803513, -0.5534272493809389, -0.5246433781162383, -0.49661001417905354, -0.46944637041762427, -0.443250893404794, -0.4181033920046247, -0.39406700083263185, -0.371189963523322, -0.3495072367864502, -0.3290419259100677, -0.30980656755901825, -0.2918042778830766, -0.27502978416420387, -0.2594703572580628, -0.24510666043967888, -0.23191352828590917, -0.2198606871310569, -0.20891342654609268, -0.1990332292948298, -0.1901783653622553, -0.18230445396740746, -0.1753649959951452, -0.16931187803226322, -0.1640958481926097, -0.15966696317262408, -0.15597500549228127 ], [ -0.8321652049316153, -0.85063466380981, -0.8672611084257152, -0.881676709302541, -0.8935185215331996, -0.9024467330357726, -0.9081649838310397, -0.9104403963271925, -0.9091205385604145, -0.9041448049004297, -0.8955485952329848, -0.8834599253301845, -0.8680893374210626, -0.8497148887907126, -0.828664421059858, -0.8052972667620157, -0.7799871611550911, -0.7531075642545141, -0.7250200130163136, -0.6960656237870434, -0.666559505771715, -0.6367876368519461, -0.607005671820373, -0.5774391634131091, -0.5482847407006513, -0.5197118767252334, -0.4918649668801057, -0.4648655196574726, -0.43881432707207624, -0.4137935325830682, -0.38986855121476577, -0.3670898222326354, -0.34549439169262797, -0.32510733271073816, -0.3059430172519121, -0.2880062560526043, -0.27129332403769335, -0.25579288803268596, -0.24148685223066702, -0.2283511350983649, -0.2163563894210898, -0.20546867513489953, -0.19565009257007404, -0.18685938179962003, -0.1790524920039862, -0.17218312317412932, -0.16620324111997353, -0.1610635656600058, -0.15671403105895676, -0.15310421725763135 ], [ -0.8209632400474904, -0.8390297734999876, -0.8553010668839526, -0.869422311567136, -0.8810432302753386, -0.8898351557019432, -0.895510075513391, -0.8978395207171461, -0.896670775636237, -0.8919380818423777, -0.8836672685488183, -0.8719733414047088, -0.8570516865671979, -0.839164419401468, -0.8186238682725365, -0.7957752162647072, -0.770980019402117, -0.7446018233394566, -0.7169945553619204, -0.6884938845175772, -0.6594113817521686, -0.6300310908410556, -0.6006080239896403, -0.5713680908316374, -0.5425090208149059, -0.5142019167652534, -0.4865931607696716, -0.4598064700589263, -0.4339449645829069, -0.4090931580802406, -0.38531882165549897, -0.362674695249184, -0.34120004021391126, -0.32092203761838894, -0.3018570436694321, -0.2840117171713489, -0.2673840352843293, -0.2519642137562199, -0.23773554681355435, -0.22467518036282852, -0.2127548303075093, -0.2019414557865049, -0.19219789509692542, -0.18348347006308485, -0.1757545627283339, -0.16896516654187976, -0.16306741274557546, -0.15801207148063012, -0.15374902625860154, -0.15022771988342798 ], [ -0.8088929689377357, -0.8265087661590446, -0.8423776438162803, -0.8561584884895168, -0.8675145305002021, -0.8761292751628239, -0.8817242703483904, -0.8840768079220879, -0.8830352841504321, -0.8785300850920797, -0.8705785055335312, -0.8592831704400693, -0.8448244409302269, -0.827448107246832, -0.8074501453770195, -0.7851604053026301, -0.7609268705328419, -0.7351017007525311, -0.7080297729728415, -0.6800399783434339, -0.6514391772456525, -0.6225084874407589, -0.593501469511633, -0.5646437532978497, -0.5361336863482761, -0.5081436522829683, -0.4808217826819672, -0.45429385793573784, -0.42866525400658495, -0.4040228411901298, -0.38043677816855564, -0.3579621715479297, -0.33664058968517707, -0.316501431882408, -0.2975631616330848, -0.2798344168894398, -0.2633150123065089, -0.2479968488511891, -0.23386474557085402, -0.2208972070556413, -0.20906713844646974, -0.19834251790875856, -0.18868703443744284, -0.18006069678867287, -0.17242041734231295, -0.16572057287389952, -0.1599135426307673, -0.15495022282473803, -0.1507805157109363, -0.14735379083272948 ], [ -0.7960641662677226, -0.8131885992228458, -0.8286145644113042, -0.8420150846371801, -0.8530674886856875, -0.8614682308341841, -0.8669493954023338, -0.8692951878313496, -0.868356373706912, -0.8640607281287966, -0.8564180988289049, -0.8455195198379909, -0.8315307155474398, -0.8146810934925313, -0.7952497939502123, -0.773550497764931, -0.7499165314058766, -0.7246874478359219, -0.6981978188924155, -0.6707685498909874, -0.6427006860721324, -0.614271450981505, -0.5857321355570357, -0.5573074217338467, -0.5291957475201254, -0.5015703755659724, -0.4745808942955155, -0.4483549467868284, -0.4230000408042098, -0.398605340975586, -0.37524338090782616, -0.3529716602199763, -0.3318341107397266, -0.31186242918564044, -0.2930772820916022, -0.2754893937864553, -0.2591005309018004, -0.24390439786900897, -0.22988745770103003, -0.21702969139673622, -0.20530530780876433, -0.19468341396431532, -0.1851286537690059, -0.17660182088413434, -0.169060449466782, -0.1624593845101152, -0.15675133181536005, -0.1518873862443958, -0.14781753589203417, -0.14449113919898804 ], [ -0.7825815173650962, -0.7991806687172999, -0.8141296382476209, -0.8271158356333658, -0.8378310642834775, -0.845985272624754, -0.8513218246624078, -0.8536327786301081, -0.8527723589537921, -0.8486668788384253, -0.8413198245131791, -0.8308115302849132, -0.8172936706594054, -0.8009794867076941, -0.7821311164726688, -0.761045560250077, -0.7380407046768238, -0.7134425324667366, -0.6875742569117578, -0.6607477333850786, -0.6332571781295425, -0.6053749982490392, -0.5773494080028755, -0.5494034588143076, -0.5217351198283751, -0.4945180888111946, -0.46790307086524946, -0.4420193220646709, -0.416976309327547, -0.39286538330644083, -0.3697613970555161, -0.347724230421869, -0.32680019984869524, -0.30702334706186385, -0.2884166093277063, -0.27099287978882747, -0.254755969729367, -0.23970148618562725, -0.22581763860485315, -0.21308598762203557, -0.2014821477299078, -0.19097645385744144, -0.18153459981165887, -0.17311825432742933, -0.1656856582544427, -0.15919220432581316, -0.15359099911997365, -0.1488334053418625, -0.14486956147349794, -0.14164887520187708 ], [ -0.7685437009332197, -0.7845898611713709, -0.7990337644128466, -0.8115773029543508, -0.82192694669201, -0.8298064741199453, -0.8349710498831765, -0.837221308698971, -0.836415840066804, -0.8324805201621246, -0.8254135166623972, -0.8152854068546578, -0.8022345464565129, -0.7864584478179072, -0.7682023527696253, -0.7477463624575367, -0.725392425008061, -0.7014522423443049, -0.6762368239089893, -0.6500480687869652, -0.6231724590924002, -0.5958767285672897, -0.5684052374366363, -0.540978726346184, -0.513794118969412, -0.4870250739201933, -0.4608230346133243, -0.4353185783141776, -0.4106229152339713, -0.3868294313387333, -0.3640152032719448, -0.34224244067159926, -0.32155983116568043, -0.30200377768758724, -0.2835995276770641, -0.2663622002787194, -0.2502977216714556, -0.23540368080968122, -0.22167011861028674, -0.20908026332636975, -0.19761122376850293, -0.18723465037336573, -0.17791737206018177, -0.1696220145319698, -0.16230760334285643, -0.15593015282895883, -0.15044324003499354, -0.14579856117793266, -0.14194646704838842, -0.1388364730895152 ], [ -0.7540429469839951, -0.7695141110116698, -0.7834304669778951, -0.795508358876732, -0.8054689574698548, -0.8130500212792405, -0.8180188315695213, -0.820185116279294, -0.8194125502283006, -0.8156274575054567, -0.8088236585221119, -0.7990629270507836, -0.7864711269954054, -0.7712306507937062, -0.7535701762087952, -0.7337529420613773, -0.7120647179979331, -0.6888024547415693, -0.6642643189728182, -0.6387415118572716, -0.6125119976353582, -0.5858360607384898, -0.5589534761942598, -0.5320820118002655, -0.5054169661392184, -0.47913146630141756, -0.4533772875613539, -0.42828600252932164, -0.40397031187628624, -0.38052544843345076, -0.35803057955406925, -0.33655015887916395, -0.3161351986816885, -0.2968244487349394, -0.27864547818174645, -0.2616156640977786, -0.24574309511324666, -0.23102740118028986, -0.2174605217961264, -0.20502742504639138, -0.19370678897444205, -0.18347165522426767, -0.17429006284573267, -0.16612566778989524, -0.15893835115921706, -0.15268481690748503, -0.1473191775810715, -0.1427935249950797, -0.1390584815344128, -0.13606372709663372 ], [ -0.7391649439228144, -0.7540443239103288, -0.767415812154606, -0.779010068993978, -0.7885628667319667, -0.7958259320577458, -0.8005787959581101, -0.8026406060340109, -0.8018806641904899, -0.7982264827349624, -0.7916684159817461, -0.7822603669881072, -0.7701165891721328, -0.7554050883212043, -0.738338490440735, -0.7191634242170916, -0.698149469056585, -0.6755785748638128, -0.6517356245221624, -0.6269005449773015, -0.6013421275950839, -0.5753135241463696, -0.5490492532214958, -0.5227634800595353, -0.4966493089813294, -0.47087883715339524, -0.4456037475393232, -0.42095625679798765, -0.39705027315324326, -0.3739826554939699, -0.35183449604694494, -0.33067237428435864, -0.3105495495474502, -0.2915070748750872, -0.27357482554185053, -0.25677244362026974, -0.24111020515872073, -0.22658981984379734, -0.21320517470120992, -0.20094303379083134, -0.18978370521593957, -0.17970168531137554, -0.17066628781383741, -0.16264226337265675, -0.15559041216155112, -0.1494681898276392, -0.1442303047677006, -0.1398293029142451, -0.136216134950654, -0.1333407001956074 ], [ -0.7239889808855104, -0.738264542983503, -0.7510785778352127, -0.7621758400634772, -0.7713064917807597, -0.7782360783217513, -0.7827563554253311, -0.7846960483693562, -0.7839304641600445, -0.7803889028048618, -0.7740590341279416, -0.7649877796573773, -0.753278683787448, -0.7390861819627562, -0.7226074975081469, -0.7040730762566546, -0.683736490668607, -0.661864637257862, -0.638728858133583, -0.6145973902439874, -0.5897293282422209, -0.5643701080138934, -0.5387483909993782, -0.5130741545140256, -0.48753776199342924, -0.4623097876205352, -0.43754139030807737, -0.4133650627231681, -0.3898956148881882, -0.3672312844073283, -0.345454894152757, -0.3246350023472429, -0.3048270093477681, -0.2860742004916642, -0.2684087157318056, -0.2518524450982529, -0.23641785484791622, -0.22210875296196408, -0.20892100478117048, -0.19684321031039254, -0.18585735430702266, -0.17593943891173702, -0.16706010651012027, -0.15918525797697103, -0.15227666871326728, -0.14629260219939533, -0.1411884183929375, -0.13691717238156875, -0.13343019738134432, -0.13067766549331195 ], [ -0.7085882322464115, -0.7222522592978549, -0.7345005731698886, -0.7450917285535748, -0.7537899724369487, -0.7603744050170581, -0.7646488493467527, -0.766451622393835, -0.765664269621996, -0.7622183471811901, -0.756099520134822, -0.7473485587560124, -0.736059193039157, -0.7223731520497133, -0.7064730029512464, -0.6885735725571127, -0.6689127710031049, -0.6477425596575521, -0.6253206493516164, -0.6019033226189383, -0.5777395827959549, -0.5530666704011091, -0.5281068669135732, -0.5030654302200483, -0.47812946915155496, -0.45346755744168676, -0.42922990017824103, -0.40554888972096054, -0.3825399165425273, -0.36030232911074606, -0.3389204631925194, -0.31846468360399266, -0.2989924001240096, -0.28054903420915966, -0.2631689247197151, -0.24687616957394776, -0.2316854065495101, -0.21760254072516783, -0.20462542860569455, -0.19274453003819525, -0.18194353882180503, -0.17220000164740235, -0.16348593291755853, -0.15576843035899735, -0.14901029344410754, -0.14317064378109456, -0.13820554408277297, -0.13406861029479655, -0.13071161009069476, -0.1280850402731899 ], [ -0.6930301143319828, -0.706078794018028, -0.7177570333874042, -0.727836833221146, -0.7360961446323155, -0.7423272666302998, -0.7463458245751691, -0.7479996219758688, -0.7471765524726592, -0.7438107791923215, -0.73788654321144, -0.7294392259765893, -0.7185536106552554, -0.7053596024530902, -0.6900259220170339, -0.6727524421460038, -0.6537618839623044, -0.6332915356965982, -0.6115855329733358, -0.5888880784523307, -0.5654378132459505, -0.541463406859914, -0.5171803201460448, -0.4927886208580965, -0.46847169079005513, -0.44439565020133837, -0.4207093311629042, -0.39754464907812903, -0.37501724495132227, -0.35322729576070666, -0.3322604138894778, -0.31218857755977936, -0.2930710520346602, -0.274955275962411, -0.25787769887070444, -0.24186456481375296, -0.22693264387513978, -0.2130899179268928, -0.20033622997969835, -0.18866390782787024, -0.1780583726820496, -0.16849874229758655, -0.15995843599307025, -0.15240578620349354, -0.14580465815293064, -0.14011507619549668, -0.1352938526646722, -0.1312952129299515, -0.12807140893722002, -0.12557331285884332 ], [ -0.6773766657217621, -0.6898097026169667, -0.7009170391597461, -0.7104837193976605, -0.7183009577008019, -0.7241738237050142, -0.7279293956523997, -0.7294247630054184, -0.7285541747818083, -0.7252546494862412, -0.7195094924648223, -0.7113493870243832, -0.700850995786969, -0.6881332781816853, -0.6733519522092404, -0.6566926715031364, -0.6383635398432845, -0.6185875515546461, -0.5975954487697511, -0.5756193532109636, -0.552887388213992, -0.5296193775474765, -0.5060236042838442, -0.4822945405578519, -0.45861141630014657, -0.4351374769765693, -0.41201978051287247, -0.38938939556437413, -0.36736188175950923, -0.3460379535345465, -0.3255042500436798, -0.3058341528280959, -0.28708860971101446, -0.2693169375237402, -0.2525575878243036, -0.23683886894228146, -0.22217962469729302, -0.2085898751999019, -0.19607142842234138, -0.18461847287132027, -0.17421816186183603, -0.16485119877227328, -0.15649243050814865, -0.14911145352883648, -0.14267323355771433, -0.137138736873205, -0.1324655682062319, -0.1286086080165415, -0.12552064045350975, -0.12315296268172782 ], [ -0.6616849201160612, -0.6735051700923603, -0.6840439288477936, -0.6930988418621918, -0.7004738998628209, -0.7059864607837085, -0.7094746426806727, -0.7108045465844615, -0.7098767015374796, -0.7066311428854364, -0.7010506445016073, -0.693161810369954, -0.68303395834278, -0.670775958328775, -0.6565313802740493, -0.640472436500837, -0.6227932562502672, -0.6037030113822641, -0.5834193369919438, -0.562162381453265, -0.5401496997849842, -0.5175920908766793, -0.49469038524392994, -0.4716331212059922, -0.44859500389532775, -0.4257360199814197, -0.4032010763957038, -0.38112003839217334, -0.35960805630332515, -0.33876608771490335, -0.3186815399307621, -0.2994289749241005, -0.2810708345911742, -0.2636581576529621, -0.24723127090258756, -0.23182044673588909, -0.21744652614503635, -0.20412151171563298, -0.19184913874499665, -0.18062543448876378, -0.17043927586504992, -0.16127295487654203, -0.1531027588057704, -0.14589956923099412, -0.13962948049281443, -0.13425443482493382, -0.1297328683241462, -0.1260203595708298, -0.12307027120459135, -0.12083437416743248 ], [ -0.6460072540956192, -0.6572203798515037, -0.6671956858948249, -0.6757429472413959, -0.6826784105532376, -0.6878312013326637, -0.6910500188483617, -0.69220964656924, -0.6912167537167843, -0.6880144818477252, -0.6825854031097869, -0.6749525916284597, -0.6651787405862415, -0.6533634523045853, -0.6396389955426202, -0.6241649398833371, -0.607122130261075, -0.58870645691157, -0.5691228190326584, -0.5485795918031826, -0.5272838048035324, -0.505437141324115, -0.4832327837036116, -0.46085306552892613, -0.4384678484679392, -0.4162335176846001, -0.394292481443169, -0.3727730633571064, -0.3517896857859341, -0.33144325686488435, -0.3118216891590937, -0.29300049335636, -0.27504340478162537, -0.2580030133257726, -0.2419213784162294, -0.2268306198619474, -0.21275348279165862, -0.19970388049778476, -0.1876874228252755, -0.17670193984342586, -0.16673801099157337, -0.15777950885277237, -0.14980416443845868, -0.14278415771420017, -0.13668673348771765, -0.1314748391651076, -0.1271077776747822, -0.12354186638621101, -0.12073109130915771, -0.11862774530690257 ], [ -0.6303917015323564, -0.6410058484195983, -0.650425293184021, -0.6584714465580803, -0.6649722681624671, -0.6697681054342687, -0.672717750120968, -0.6737043005504617, -0.6726403775804697, -0.6694722598571816, -0.6641825826953389, -0.6567913747089222, -0.6473553667807237, -0.635965672864719, -0.6227440857555906, -0.60783833363988, -0.5914166947432627, -0.5736623677145394, -0.5547679530618111, -0.5349303297227921, -0.5143461259512665, -0.4932078987348444, -0.4717010609319825, -0.45000153598964265, -0.42827407837705206, -0.4066711727715527, -0.3853324138654312, -0.3643842680378715, -0.3439401247064141, -0.32410055606691396, -0.3049537169312405, -0.2865758299127612, -0.26903171428061623, -0.2523753288093872, -0.23665030957264133, -0.22189049270679972, -0.20812041962056893, -0.19535582788525563, -0.18360413506662354, -0.1728649250297889, -0.16313044680537903, -0.15438613508195642, -0.14661115903965982, -0.1397790029330518, -0.13385807802497074, -0.12881236165674403, -0.12460205586629836, -0.1211842553875625, -0.11851361329393884, -0.11654299204215424 ], [ -0.6148822326385601, -0.624907724268521, -0.6337810523173288, -0.6413347548363103, -0.647407948354157, -0.6518516430612753, -0.6545342171213102, -0.6553466912906493, -0.654207414265415, -0.6510657862236524, -0.6459047149715063, -0.6387416080666378, -0.6296278389738761, -0.6186467647122983, -0.6059104956585437, -0.5915557087188106, -0.5757388438468382, -0.5586310299010089, -0.5404130551652726, -0.5212706411544401, -0.5013902079096704, -0.4809552462986306, -0.46014334669395873, -0.4391238793181296, -0.4180562818310842, -0.39708888420767924, -0.3763581877861109, -0.3559885119602925, -0.3360919255908052, -0.31676838834574045, -0.298106037854178, -0.2801815702792836, -0.263060673679012, -0.24679848466890408, -0.23144004903342452, -0.21702077580211276, -0.20356688174211934, -0.19109582908085654, -0.17961676344445743, -0.16913096140168393, -0.1596322976359621, -0.15110774074007716, -0.14353788418731006, -0.1368975155654235, -0.13115622315377962, -0.12627903490699266, -0.12222708137002891, -0.1189582713707188, -0.11642796774063302, -0.11458964985958286 ], [ -0.5995189994396913, -0.6089680527323547, -0.6173068694365355, -0.6243785984906862, -0.6300329522685472, -0.6341310403577811, -0.6365503143717001, -0.6371893113101735, -0.6359718598337492, -0.6328504300703288, -0.6278083646645716, -0.6208608203562319, -0.6120543624347261, -0.6014652721424176, -0.5891967325093863, -0.5753751375149365, -0.5601458148640573, -0.5436684624908588, -0.5261125773706914, -0.5076531105138997, -0.48846652401717905, -0.46872736428825956, -0.44860540771970775, -0.4282633862898109, -0.40785526334256833, -0.38752500452018485, -0.367405774372956, -0.3476194836148403, -0.328276613123043, -0.3094762465048433, -0.2913062516060021, -0.2738435613424861, -0.2571545147097032, -0.24129522908131062, -0.2263119844948095, -0.2122416092139784, -0.19911186321151964, -0.1869418221177349, -0.17574226844831375, -0.1655160994222452, -0.1562587613623192, -0.1479587196198099, -0.14059797042423738, -0.13415259742791164, -0.1285933715106271, -0.12388638819661957, -0.1199937333389165, -0.11687416495231384, -0.11448379746213655, -0.11277677423396093 ], [ -0.5843385515194707, -0.5932250109219651, -0.6010425111627706, -0.6076442933435771, -0.6128901063470922, -0.6166505992139422, -0.6188117854459524, -0.6192793072130334, -0.6179822102979327, -0.6148759559763983, -0.6099444448262548, -0.6032009045323965, -0.5946875887161319, -0.584474333186261, -0.5726561060280085, -0.5593497572874979, -0.5446902157037534, -0.5288263921343068, -0.5119170348540648, -0.4941267470042242, -0.4756223290077567, -0.456569556622743, -0.43713045508535237, -0.4174610861681684, -0.39770983053176556, -0.37801612324449174, -0.35850958521587145, -0.3393094861518582, -0.3205244737683806, -0.30225250765967937, -0.2845809428767536, -0.26758671668769063, -0.2513366012242666, -0.2358874940832152, -0.221286727950327, -0.20757238857597426, -0.19477363764134725, -0.18291104293947824, -0.1719969226082957, -0.16203571270575212, -0.15302436811978892, -0.14495280571616354, -0.13780439597983885, -0.13155650561177168, -0.12618108914621762, -0.12164532325296806, -0.11791227354245692, -0.11494158083075978, -0.11269015219307355, -0.11111284178735148 ], [ -0.5693740267765773, -0.5777131173551796, -0.585023835064018, -0.5911689971021411, -0.59601783677908, -0.5994499920653866, -0.6013595346706719, -0.6016588029054803, -0.6002817891438301, -0.5971868471007696, -0.5923585259268735, -0.5858084030912406, -0.577574867851024, -0.5677218909772078, -0.5563368931842092, -0.5435278850478898, -0.5294200890923044, -0.51415226821347, -0.49787297552402093, -0.4807369137414982, -0.4629015536431653, -0.44452411733149094, -0.4257589887294435, -0.40675557503510257, -0.3876566113406946, -0.3685968772784412, -0.3497022792357193, -0.331089243457978, -0.31286436291518227, -0.29512424273937976, -0.27795549404304354, -0.26143483289769986, -0.2456292493153286, -0.2305962195605875, -0.21638394351517587, -0.20303159670080706, -0.19056959358317205, -0.1790198645932537, -0.16839615361421256, -0.15870434525185395, -0.14994283190473967, -0.14210292950731784, -0.13516934806255343, -0.12912071912945533, -0.1239301778530868, -0.11956599254993927, -0.11599223087834998, -0.11316944868494638, -0.11105538598009723, -0.10960565420249946 ], [ -0.5546553220729771, -0.5624634211077179, -0.5692829991920197, -0.574985940400822, -0.5794504220787354, -0.5825645346685924, -0.584229917204, -0.5843652024450129, -0.582909056844813, -0.579822613922666, -0.5750911354667447, -0.5687247898475656, -0.5607585038998673, -0.5512509156450416, -0.5402825205613461, -0.5279531564677193, -0.5143790062419862, -0.4996893115902794, -0.48402298603512384, -0.46752529470509824, -0.45034473729996694, -0.43263023403831513, -0.4145286772300626, -0.39618287704724486, -0.3777299014938908, -0.35929978865683165, -0.34101459419609276, -0.3229877281407532, -0.305323531428062, -0.28811704314353104, -0.27145391299944577, -0.2554104192671164, -0.24005355935738348, -0.22544118788381518, -0.2116221848233828, -0.19863664386889546, -0.186516077844199, -0.17528364374903527, -0.1649543942661258, -0.15553556511403743, -0.14702690829850573, -0.13942108010783894, -0.1327040898324564, -0.1268558110908813, -0.1218505529022158, -0.11765768291482415, -0.11424229109729267, -0.11156587919239391, -0.10958705959126624, -0.10826224704341214 ], [ -0.5402092483465408, -0.5475036749594162, -0.5538486549502634, -0.5591246403591402, -0.5632182273362356, -0.5660254398854108, -0.5674550098925879, -0.5674314741463933, -0.5658979030699234, -0.5628180882436009, -0.5581780466004588, -0.5519867455728769, -0.5442760100741961, -0.5350996320259382, -0.5245317588899661, -0.5126646830054494, -0.4996061841069589, -0.48547659134615595, -0.4704057290602668, -0.45452989502357094, -0.43798899482906584, -0.42092392564693826, -0.4034742708870814, -0.3857763374802162, -0.3679615418114065, -0.35015513000667486, -0.33247520364097033, -0.3150320127195182, -0.2979274733072662, -0.28125486657924537, -0.26509867844750523, -0.24953454346438175, -0.2346292626937576, -0.22044087208157648, -0.20701874503127193, -0.19440371994337557, -0.18262824998047855, -0.17171657785384842, -0.16168494260654298, -0.15254182786636206, -0.1442882616600204, -0.1369181766003037, -0.1304188362885751, -0.12477132954624914, -0.11995112920412443, -0.11592870731578742, -0.11267019445695359, -0.1101380677132675, -0.10829185031374355, -0.10708880567174106 ], [ -0.5260596742135452, -0.532858496460247, -0.5387461270569782, -0.543611100210172, -0.5473479234406208, -0.5498600554534674, -0.5510628654725376, -0.5508864179813389, -0.5492779229551894, -0.5462037030119581, -0.5416505554109727, -0.535626426140384, -0.5281603610967717, -0.5193017499492565, -0.5091189257760229, -0.4976972227637976, -0.48513662148482045, -0.4715491247808449, -0.4570560073413447, -0.44178507056730754, -0.42586801425707316, -0.40943801148446474, -0.39262754608943096, -0.3755665462570274, -0.35838082474765615, -0.3411908176750992, -0.32411059979990087, -0.307247145043429, -0.29069979588832084, -0.2745599038664225, -0.2589106047330402, -0.24382669549215386, -0.22937458554406598, -0.21561230032062706, -0.2025895223589521, -0.19034766138129533, -0.1789199511477353, -0.16833157618547911, -0.15859983555269197, -0.14973435320993056, -0.14173734511961544, -0.13460395183688312, -0.12832264229061086, -0.1228756901144451, -0.11823971888724716, -0.11438630767524749, -0.11128264398600951, -0.10889220814492973, -0.1071754714612625, -0.10609059039477009 ], [ -0.5122276614359522, -0.5185495202003967, -0.5239975837753779, -0.5284679980465962, -0.5318626941772966, -0.5340920884634991, -0.5350777525877503, -0.5347549183999238, -0.5330746790968615, -0.5300057590244028, -0.525535747157867, -0.5196717226805718, -0.5124402414450786, -0.5038866949224864, -0.4940740937208437, -0.48308136161178283, -0.47100125013760497, -0.4579379967060976, -0.4440048506321925, -0.42932158323191266, -0.4140120821359839, -0.3982021092391963, -0.382017278895665, -0.36558129050226434, -0.3490144293004216, -0.33243233224343977, -0.31594500269595716, -0.2996560486399771, -0.28366211369872607, -0.2680524681900831, -0.2529087280265877, -0.23830467201615368, -0.22430613244209952, -0.21097093920959675, -0.19834890386718507, -0.18648183598944912, -0.17540359028107577, -0.16514014787025422, -0.15570973915572883, -0.14712301787569038, -0.13938329652709436, -0.13248685182722642, -0.12642330576274163, -0.12117608334666496, -0.11672294311943487, -0.11303657138987366, -0.11008522687754463, -0.107833419293763, -0.10624260375941807, -0.10527187283266837 ], [ -0.49873159496138475, -0.504595543918627, -0.5096221999760886, -0.5137148671878666, -0.5167824336420823, -0.5187418189038377, -0.5195203838552906, -0.5190581845922071, -0.5173099509655301, -0.5142466797589663, -0.5098567521875466, -0.5041465137668442, -0.49714028876915, -0.48887983777154215, -0.47942330131087024, -0.46884370188133695, -0.45722709782827126, -0.4446704946968771, -0.43127962215015403, -0.4171666786573827, -0.40244813356442277, -0.38724265910899014, -0.37166924571413623, -0.3558455345202174, -0.3398863832109131, -0.32390266585820787, -0.3080002953678622, -0.2922794483468887, -0.2768339667230375, -0.26175090790613076, -0.24711021526722354, -0.2329844827588805, -0.21943879114263543, -0.20653059807625962, -0.1943096698009117, -0.18281804790976086, -0.17209005021354784, -0.16215230957051063, -0.15302385825750475, -0.14471626762749223, -0.13723385315885872, -0.13057395348641088, -0.12472728879172379, -0.11967839944811465, -0.11540616068198284, -0.1118843639334508, -0.10908235124011867, -0.10696568583479371, -0.10549684051633124, -0.10463588524887557 ], [ -0.48558730961162466, -0.4910126704705547, -0.49563631501924, -0.4993682701422858, -0.5021239359422708, -0.503826304229578, -0.5044081338859661, -0.5038139799824044, -0.5020019733245196, -0.4989452556032152, -0.49463299233391617, -0.48907090992302177, -0.4822813321670506, -0.4743027222824612, -0.4651887660072975, -0.45500705652357953, -0.4438374607265368, -0.43177025746544, -0.4189041415695173, -0.4053441834386469, -0.3911998240972235, -0.3765829716523182, -0.36160624893494675, -0.3463814254629727, -0.3310180511609535, -0.3156222955282142, -0.30029598478396047, -0.28513582120743675, -0.27023276342548075, -0.2556715435828364, -0.24153029684905458, -0.22788028020008066, -0.21478566046932202, -0.20230335589083426, -0.19048292034400494, -0.17936646482334995, -0.16898861584022573, -0.15937651503843409, -0.15054986780334878, -0.14252105065679732, -0.13529528747970077, -0.12887090301453985, -0.12323965884039156, -0.11838717250440012, -0.11429341534762827, -0.11093327948228848, -0.10827720002211261, -0.10629181554263267, -0.10494064812634063, -0.10418478425498501 ], [ -0.4728082149269496, -0.47781444712903964, -0.48205358692201755, -0.48544196764994174, -0.4879010787063454, -0.4893595765105704, -0.48975524881872134, -0.4890368424644759, -0.48716566503250885, -0.48411687863168734, -0.4798804186342328, -0.47446149085145434, -0.46788062521510293, -0.4601732901973285, -0.4513890973427112, -0.441590647027266, -0.4308520830614883, -0.41925743392036113, -0.40689882193083055, -0.39387461914530136, -0.38028762092953267, -0.36624329690450264, -0.35184816533755675, -0.3372083228341021, -0.3224281474705555, -0.3076091812627322, -0.2928491876916024, -0.27824137222499723, -0.26387374845361244, -0.24982862949980644, -0.236182223539104, -0.2230043133083518, -0.21035800203379706, -0.19829951194268602, -0.1868780260432389, -0.17613556875657077, -0.16610692581175035, -0.1568196080967087, -0.148293867424115, -0.14054277401153015, -0.13357236560792263, -0.1273818765408271, -0.12196405167309887, -0.11730554575467833, -0.11338740353478505, -0.11018561095337287, -0.10767170340855325, -0.10581341399636457, -0.10457534301007565, -0.10391962989444714 ], [ -0.4604054191816165, -0.46501200321420305, -0.468885143823559, -0.4719470838612569, -0.47412500151733483, -0.47535283333354084, -0.47557304858329735, -0.4747382965874766, -0.4728128493661942, -0.469773768912846, -0.4656117410937377, -0.46033153578006014, -0.4539520737417689, -0.4465061030949289, -0.43803950957958093, -0.4286103036975027, -0.41828734221542124, -0.4071488507824591, -0.3952808181161663, -0.38277533068825165, -0.36972891088893406, -0.35624091238614725, -0.3424120150760777, -0.3283428498664687, -0.31413277161152264, -0.29987878766512044, -0.2856746403196506, -0.2716100341896739, -0.2577699945130677, -0.2442343393477967, -0.23107724759620463, -0.2183669054716192, -0.2061652161640759, -0.19452756075275135, -0.18350260250348882, -0.1731321311881281, -0.1634509485327169, -0.15448679987845926, -0.14626036015892818, -0.1387852839529078, -0.1320683293845405, -0.12610956392584682, -0.1209026568671554, -0.1164352587552463, -0.11268946304242466, -0.1096423402135619, -0.1072665303977377, -0.10553087741173284, -0.10440108558915961, -0.10384038064832102 ], [ -0.44838785317382723, -0.45261418665279385, -0.4561397333764194, -0.45889226833742813, -0.46080428003039564, -0.46181462329483675, -0.46187012278626266, -0.46092705860797045, -0.4589524667467806, -0.4559251931252988, -0.45183665109580606, -0.44669124726308, -0.44050645834849583, -0.43331256077611824, -0.4251520330412695, -0.4160786670986623, -0.40615643768809884, -0.3954581868700107, -0.3840641847631273, -0.3720606267548263, -0.3595381228968406, -0.3465902276905778, -0.3333120490291375, -0.31979896472024827, -0.30614546468467896, -0.2924441273559343, -0.2787847305446701, -0.265253490421096, -0.2519324174785287, -0.23889877539616045, -0.22622462753593076, -0.21397645622465566, -0.2022148417686015, -0.1909941910521762, -0.18036250926721598, -0.17036121243366964, -0.16102498248833996, -0.1523816703832579, -0.144452255397866, -0.13725087033301586, -0.1307849021462557, -0.12505517582344328, -0.1200562260100444, -0.11577665652910119, -0.11219958295521482, -0.10930314854255208, -0.1070610996330491, -0.10544340366856819, -0.10441689135606158, -0.10394590441664053 ], [ -0.4367623940588525, -0.44062769974396104, -0.4438238703808489, -0.44628385525410724, -0.44794509623640844, -0.4487510266282786, -0.44865252083398954, -0.447609235061459, -0.4455907805144968, -0.44257767606050386, -0.4385620369003857, -0.43354796867463846, -0.42755165164890996, -0.42060111580712034, -0.41273572341885995, -0.4040053896066707, -0.3944695825344992, -0.38419615235292126, -0.3732600416710253, -0.3617419301888281, -0.3497268626732292, -0.33730290339496727, -0.3245598522952283, -0.31158804937280105, -0.29847728486366365, -0.2853158243863214, -0.2721895508520109, -0.2591812189300836, -0.24636981340636244, -0.23382999994058595, -0.221631655481355, -0.20983946581830804, -0.19851257926286203, -0.18770430801556515, -0.17746187210937447, -0.16782618456663434, -0.1588316801743076, -0.15050619363265194, -0.1428708953326604, -0.13594029428546595, -0.12972231750085228, -0.12421847331144731, -0.11942410290734373, -0.11532872004804806, -0.11191643409290408, -0.10916644675594567, -0.10705360893259086, -0.10554902101513686, -0.10462065856145175, -0.10423400503864189 ], [ -0.4255339892309471, -0.4290572341541814, -0.4319419827303533, -0.43412601994480077, -0.4355514050899239, -0.43616583127003145, -0.43592393666681417, -0.43478851527416473, -0.43273157618116825, -0.4297352054010981, -0.4257921925217124, -0.4209063955277344, -0.4150928301437584, -0.4083774838744405, -0.4007968684097769, -0.3923973361130378, -0.3832341960091607, -0.37337067142341435, -0.3628767449015225, -0.3518279363251952, -0.340304057560973, -0.32838798209821995, -0.3161644616197827, -0.30371901401789336, -0.2911368996916457, -0.2785021956225414, -0.26589697018123515, -0.25340055620022506, -0.2410889157559427, -0.2290340874314878, -0.21730370557637102, -0.2059605811642643, -0.19506233513015692, -0.18466107733985093, -0.1748031273432883, -0.16552877646429132, -0.15687209420562243, -0.14886078498632282, -0.14151610346479326, -0.13485283777382062, -0.12887936965545466, -0.12359781866004771, -0.11900427440222838, -0.11508911669371813, -0.11183741870806252, -0.10922942376079292, -0.10724108236531438, -0.10584463337982808, -0.10500921153405862, -0.10470146345203724 ], [ -0.41470578006053055, -0.4179056049716895, -0.420496555547605, -0.4224209327314187, -0.42362509752828115, -0.42406070446829996, -0.4236858882832928, -0.422466358044434, -0.42037635440840715, -0.41739942999939644, -0.4135290201385146, -0.40876878064892325, -0.4031326805879844, -0.3966448495892069, -0.38933919107306847, -0.38125878299212723, -0.3724550962507562, -0.36298706695100363, -0.3529200619024489, -0.3423247774071018, -0.3312761094423521, -0.3198520294513327, -0.3081324945595125, -0.2961984147611003, -0.2841306930324933, -0.2720093479416792, -0.2599127225482516, -0.24791677853885363, -0.23609447082263868, -0.22451519532988307, -0.213244301538142, -0.20234266124546796, -0.19186628620367663, -0.18186598923859987, -0.1723870861784027, -0.16346913898390492, -0.15514574357170163, -0.14744436855195764, -0.1403862530789517, -0.1339863728942583, -0.12825348319983865, -0.12319024516510835, -0.11879343977926204, -0.1150542687353211, -0.11195873755294672, -0.1094881117622657, -0.10761943320175982, -0.10632608073567229, -0.10557835820010131, -0.10534409218092444 ], [ -0.404279225149411, -0.40717388351174816, -0.4094882732521556, -0.4111689098494068, -0.4121661597645562, -0.4124353598962693, -0.41193789208063564, -0.4106421725696, -0.4085245178106955, -0.40556985174411947, -0.40177222607283886, -0.39713513314861754, -0.39167160064930934, -0.3854040673587191, -0.3783640493038017, -0.3705916144957644, -0.36213469192233777, -0.35304824579158706, -0.3433933490947889, -0.33323619132211696, -0.3226470538149575, -0.31169928311574757, -0.3004682882255837, -0.28903058239355084, -0.27746288442787226, -0.2658412889808368, -0.254240510190754, -0.24273319875361454, -0.23138932914686838, -0.22027565145604133, -0.20945520110391747, -0.19898685972436925, -0.1889249613661813, -0.17931894000083637, -0.17021301672412315, -0.16164592780530862, -0.15365069751818927, -0.14625446212167603, -0.13947835308053513, -0.13333744831535188, -0.12784079973390927, -0.1229915434661486, -0.11878709622770911, -0.11521943737882501, -0.11227547197135657, -0.10993746589680886, -0.10818354064840474, -0.10698821257007607, -0.10632296000362873, -0.10615680150405205 ], [ -0.3942542226705347, -0.39686152847088724, -0.39891615920763096, -0.40036856117805303, -0.40117282863459763, -0.4012877201182615, -0.400677631923462, -0.39931349357790386, -0.39717355156797807, -0.39424401099632905, -0.3905195102806034, -0.38600341105432345, -0.380707893610898, -0.3746538569260648, -0.36787063084379723, -0.36039551578442136, -0.3522731717941606, -0.34355488351185803, -0.3342977304657481, -0.3245636929989459, -0.3144187231910638, -0.3039318076647636, -0.2931740455014471, -0.2822177600488235, -0.27113565859858113, -0.2600000491304786, -0.24888211889246092, -0.23785127578110155, -0.22697455049673942, -0.2163160553950465, -0.20593649489502797, -0.19589272222108312, -0.18623733807921594, -0.17701832845877163, -0.16827874091237782, -0.16005640114102782, -0.1523836741908663, -0.14528727671567931, -0.13878814823967067, -0.13290138988050204, -0.12763627837259894, -0.12299636141670578, -0.11897963749381846, -0.1155788196050257, -0.11278167834461206, -0.11057145575265426, -0.10892733797411791, -0.10782497222714338, -0.10723701216049597, -0.1071336754038742 ], [ -0.38462923130164905, -0.3869665149730591, -0.38877771253982907, -0.3900169344259035, -0.3906417427118169, -0.3906140741858672, -0.38990112277401, -0.38847615054208023, -0.3863191977493836, -0.38341766549686435, -0.379766749227893, -0.37536970742039705, -0.3702379568373587, -0.36439099316955964, -0.3578561432629481, -0.3506681618474816, -0.34286869132304504, -0.33450560737650126, -0.32563227580985704, -0.3163067469104403, -0.3065909130861266, -0.2965496535342733, -0.2862499867051246, -0.27576024759898254, -0.2651493028525691, -0.2544858124573346, -0.2438375431063614, -0.2332707348293166, -0.2228495199296685, -0.21263539140625975, -0.20268671708211716, -0.19305829557661358, -0.1838009509825116, -0.1749611645266368, -0.16658074342171325, -0.15869652932069944, -0.15134015098027442, -0.14453782761665024, -0.13831023068812198, -0.13267241220410808, -0.1276338069692542, -0.12319831438508844, -0.11936446266444378, -0.11612565482940018, -0.11347049203909121, -0.11138316606027743, -0.10984390946284195, -0.10882948972011164, -0.10831373201444738, -0.1082680552388795 ], [ -0.375401389237199, -0.37748546102656616, -0.379069041690843, -0.3801096553909051, -0.3805680888671432, -0.38040923009775096, -0.37960286866771586, -0.37812443079786395, -0.3759556231946517, -0.37308496259489915, -0.36950817198136227, -0.3652284296936727, -0.3602564637050233, -0.3546104897550187, -0.34831599836853505, -0.3414054016106953, -0.333917555349163, -0.3258971765306823, -0.3173941773587618, -0.30846293923543366, -0.2991615489705435, -0.2895510182330864, -0.2796945047594014, -0.269656550724399, -0.25950235022249435, -0.24929705428254323, -0.23910511851661687, -0.22898969559497884, -0.21901207241921583, -0.20923115024908756, -0.19970296518871244, -0.19048024636069216, -0.18161200974344582, -0.17314318691020947, -0.16511428962438135, -0.1575611131984127, -0.15051448345236318, -0.14400005373058788, -0.13803815947273246, -0.13264373805433538, -0.12782632086312917, -0.1235901028291736, -0.1199340919891001, -0.11685233837900699, -0.11433423796121933, -0.11236490378892772, -0.1109255935749125, -0.10999418055471788, -0.10954565320234233, -0.10955262901651741 ] ], "zauto": true, "zmax": 0.9545162194937075, "zmin": -0.9545162194937075 }, { "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.13308539430016508, 0.12238589756724379, 0.1123855031316594, 0.10333549127179968, 0.09556177622159712, 0.08945876646654134, 0.08544429182606292, 0.0838641764680133, 0.0848749792604269, 0.08837803868624287, 0.09405713412913298, 0.10148805944284003, 0.11024456771300256, 0.1199582907867027, 0.13033595953374738, 0.1411534168695812, 0.15224174667305004, 0.1634731762701145, 0.17474945746048554, 0.18599316537246605, 0.1971415523996393, 0.20814240908801718, 0.2189514112452934, 0.2295305156133994, 0.23984705448133437, 0.24987325996952495, 0.25958601937817044, 0.26896672365968305, 0.2780011213168967, 0.28667912952624114, 0.2949945832906176, 0.30294492291059305, 0.3105308315694213, 0.3177558401906098, 0.32462591778078154, 0.33114906383649234, 0.33733491636293195, 0.3431943855555974, 0.34873931983220074, 0.3539822080003004, 0.3589359190377503, 0.36361347924963217, 0.3680278853749944, 0.37219195144593026, 0.37611818674300035, 0.37981870194998346, 0.3833051405126725, 0.38658863219762596, 0.3896797658933522, 0.39258857877932835 ], [ 0.12771674306032205, 0.11702190183643081, 0.10706026972259462, 0.09808285575990867, 0.09041762846609484, 0.08446377867955324, 0.08064326896025413, 0.07929727986840794, 0.08056197223034638, 0.08430677212842029, 0.09018672415985549, 0.09776364177644324, 0.10661265919357736, 0.11637610663852772, 0.12677451474423815, 0.13759680652479173, 0.14868476671869935, 0.1599185484042966, 0.1712052400881427, 0.1824705628965411, 0.1936531679315346, 0.20470091954828346, 0.21556862040778055, 0.22621673290091812, 0.23661074499667553, 0.24672091144272543, 0.2565221739970383, 0.2659941270594115, 0.2751209469896473, 0.2838912439418124, 0.2922978243692924, 0.30033737151910106, 0.3080100619663559, 0.3153191405831248, 0.32227047630411015, 0.328872118394275, 0.33513386900630154, 0.3410668835989318, 0.3466833068682453, 0.35199594853183963, 0.3570180007039782, 0.36176279668069733, 0.3662436096202093, 0.37047348873192587, 0.37446513005533155, 0.37823077861378046, 0.38178215858825315, 0.3851304281168513, 0.3882861553528771, 0.39125931248926415 ], [ 0.12270290598407471, 0.11204858317508935, 0.10217046999866694, 0.09331980094607299, 0.08582564049138425, 0.08008837561422633, 0.07652674581401674, 0.07546668705352347, 0.0770141039167446, 0.08100290517221304, 0.08706355483874141, 0.094752040742263, 0.10365253903869327, 0.11342324091595471, 0.12380122785553639, 0.13458963510473151, 0.14564119000263623, 0.15684379839552318, 0.16810956063356097, 0.17936699622528446, 0.19055584081079693, 0.20162377186187655, 0.21252451514060522, 0.22321688829487454, 0.23366443161533051, 0.24383535892976554, 0.2537026354217235, 0.26324405347309543, 0.2724422310571282, 0.2812844986938797, 0.28976267053750593, 0.29787271393133297, 0.305614341667037, 0.3129905544742103, 0.3200071601394639, 0.32667229198241654, 0.33299594463233645, 0.3389895401370604, 0.34466553298549757, 0.3500370589220969, 0.35511762954954823, 0.35992087259798294, 0.36446031626261405, 0.3687492150342977, 0.3728004138342599, 0.37662624690358026, 0.38023846770665726, 0.3836482060296059, 0.38686594845565053, 0.38990153846264985 ], [ 0.11803468943472867, 0.10744705911988002, 0.09768687922722159, 0.0890066634105973, 0.08173625168640695, 0.07627417902323509, 0.07302889313909959, 0.07230078777707999, 0.07415659498005205, 0.07839250474624741, 0.08461917491611974, 0.0923941075600144, 0.10131653521333982, 0.11106405875359769, 0.1213919040864131, 0.13211788357722337, 0.14310561277176875, 0.15425051973957063, 0.16546947180581026, 0.17669359018970732, 0.1878635619828482, 0.1989268043679497, 0.20983594237648442, 0.2205481637245248, 0.23102510454833455, 0.24123300148208784, 0.25114291995022253, 0.260730934395671, 0.2699781910980321, 0.2788708266569524, 0.2873997449832282, 0.29556027398713747, 0.30335173221217965, 0.31077693790772937, 0.31784169083654806, 0.3245542524619186, 0.33092484454768223, 0.3369651806328359, 0.34268803988993396, 0.3481068888033209, 0.3532355529521881, 0.35808793886923, 0.36267780432224367, 0.36701857427337375, 0.3711231990632619, 0.37500405092787875, 0.37867285469920237, 0.38214064841169687, 0.38541776950273254, 0.3885138623410141 ], [ 0.11370916148236483, 0.10320417969033688, 0.09358502862166627, 0.08510705682891863, 0.07810117509780336, 0.07296164148263803, 0.07008017973492199, 0.06972236046371326, 0.07190850273002769, 0.07639635263933892, 0.0827814913273343, 0.09062869599931947, 0.09955621559961479, 0.10926292558942001, 0.11952272163678886, 0.1301680129932093, 0.14107305598788245, 0.1521405860674663, 0.1632921204034873, 0.17446136585270078, 0.18559002685127315, 0.19662538470602248, 0.20751912571670125, 0.2182269905890528, 0.22870890257028587, 0.2389293115141002, 0.24885756614537707, 0.25846819431183005, 0.26774102755751894, 0.2766611497723775, 0.28521867968513426, 0.2934084149269344, 0.3012293736518628, 0.3086842709550777, 0.3157789641223568, 0.3225218951762314, 0.3289235528006238, 0.3349959695407482, 0.340752264753992, 0.3462062393642419, 0.3513720250603547, 0.3562637880667291, 0.3608954858329774, 0.36528067376581036, 0.36943235830544785, 0.3733628921106447, 0.37708390677600845, 0.3806062783095111, 0.38394012051790444, 0.3870948014697602 ], [ 0.10973468561886067, 0.09931885291764507, 0.08985302106116913, 0.08159738094537962, 0.07488476682064069, 0.07010332075999687, 0.06762235135922412, 0.06766468588939283, 0.07019898348584638, 0.07494516756900935, 0.081488001612153, 0.08940347182003008, 0.0983308006051103, 0.10799050788728222, 0.11817479524729149, 0.12873016015497293, 0.1395411161897039, 0.15051752297613424, 0.16158555095456675, 0.1726816392844747, 0.18374875349402137, 0.19473434065694203, 0.2055894777062369, 0.21626879342689892, 0.22673082362097843, 0.23693853695904854, 0.24685984500444969, 0.2564679793234869, 0.2657416769213317, 0.27466515977208744, 0.28322792456184753, 0.29142437642824154, 0.29925334803836473, 0.30671754571405957, 0.3138229601978997, 0.3205782732572244, 0.3269942842430746, 0.33308337397835797, 0.33885901749711667, 0.34433535240338076, 0.3495268059500672, 0.3544477812194609, 0.3591124008314305, 0.3635343052276042, 0.36772650161987736, 0.3717012590288506, 0.37547004439006804, 0.3790434944242288, 0.3824314178269502, 0.3856428223237377 ], [ 0.1061358769331474, 0.09580841596358197, 0.08649950024778205, 0.07847653339748417, 0.07207553536917913, 0.06767706746144703, 0.06562290889346246, 0.06608659542628713, 0.06898190454943212, 0.07399277072135174, 0.08069686306824245, 0.0886837086147489, 0.09761384518532205, 0.1072286558644885, 0.11733760815058739, 0.1278004420904559, 0.13851141856496224, 0.14938733477917887, 0.16035908425078868, 0.17136608971489872, 0.1823529450747968, 0.19326769475702707, 0.20406126349920162, 0.2146876230641601, 0.225104355284723, 0.23527334744017578, 0.24516143316546982, 0.25474086365857496, 0.2639895542204703, 0.2728910969403929, 0.28143456117041954, 0.28961412095854716, 0.29742855562971104, 0.3048806693420806, 0.3119766705650355, 0.3187255453227602, 0.3251384503641564, 0.33122814518720733, 0.33700847560419755, 0.3424939164703893, 0.34769917727594407, 0.3526388713627482, 0.357327247374749, 0.36177797998872807, 0.36600401584109793, 0.3700174697470993, 0.3738295657251069, 0.3774506169479557, 0.3808900385257915, 0.3841563869740136 ], [ 0.10295790427210186, 0.09271437553705145, 0.08356096811544615, 0.07577482280741384, 0.06969647609495531, 0.06569736151066002, 0.06408681553548556, 0.06498381530480922, 0.06824611923417478, 0.07352478650827646, 0.08039383947600241, 0.08845757384679649, 0.09739709332190923, 0.10697308833872884, 0.11701077346827166, 0.1273820080370624, 0.13799013864720866, 0.1487586422441825, 0.1596231882750415, 0.17052645555138488, 0.18141508142278984, 0.19223820404879477, 0.20294712678544505, 0.21349569503702895, 0.22384104290419152, 0.233944442339222, 0.24377206608785054, 0.2532955494949685, 0.26249229856695916, 0.27134553885548135, 0.27984413122948115, 0.2879821982075894, 0.2957586112333078, 0.303176388400239, 0.3102420466774881, 0.31696494503060174, 0.3233566466640551, 0.3294303209693662, 0.33520019918040395, 0.34068109238454797, 0.34588797636007396, 0.3508356445353349, 0.35553842798529717, 0.3600099795991594, 0.3642631182107507, 0.3683097274696564, 0.3721607034776661, 0.37582594468826785, 0.3793143772540571, 0.38263400890518756 ], [ 0.10026930842634396, 0.09010650479990602, 0.08110723484591562, 0.07356063129593855, 0.06781250284950113, 0.06422279703793697, 0.06306328171261387, 0.06439454299042009, 0.06801965546775583, 0.07356153384517618, 0.080594145245393, 0.08873720446845039, 0.09769101033395834, 0.10723353882753248, 0.11720390028013786, 0.12748470107488033, 0.13798751816881907, 0.14864210133525232, 0.15938884122515853, 0.1701738764570731, 0.1809462683221583, 0.1916567381750522, 0.202257512079078, 0.2127028659362613, 0.22295002520074314, 0.23296014724005276, 0.24269919413607158, 0.2521385796099917, 0.26125553810326757, 0.2700332127300193, 0.2784604912071254, 0.28653163682928695, 0.2942457682467338, 0.3016062406877342, 0.3086199754701757, 0.31529677662840194, 0.3216486649669503, 0.3276892518979344, 0.3334331685528046, 0.33889556004209265, 0.3440916503018681, 0.34903637953337974, 0.3537441136008221, 0.35822842270737243, 0.36250192507106194, 0.36657619006941233, 0.3704616943598146, 0.3741678237890233, 0.37770291347621493, 0.3810743182914244 ], [ 0.09816220767877408, 0.0880838208374372, 0.079243137184812, 0.07194256379031286, 0.06653238899351441, 0.06335703518882614, 0.06264524061692722, 0.06439750569239724, 0.0683667935392281, 0.07415465247163014, 0.08133906748164897, 0.08955560862494412, 0.09852208593789882, 0.10803146903546858, 0.11793466908945942, 0.12812342932783305, 0.13851646990365948, 0.14904919260239588, 0.15966647052854027, 0.1703179588149139, 0.18095541449880223, 0.19153155797163238, 0.20200003756169446, 0.2123160941233369, 0.22243757660450664, 0.23232603138621602, 0.24194766841896048, 0.25127408472384144, 0.26028269202286686, 0.2689568455087062, 0.27728570426276167, 0.2852638724583825, 0.2928908774958751, 0.3001705401821523, 0.307110286207629, 0.3137204400147905, 0.3200135334598448, 0.3260036535151926, 0.3317058461796796, 0.3371355879130207, 0.34230833121976045, 0.34723912729577405, 0.3519423257082317, 0.35643134872345456, 0.3607185359894884, 0.36481505373813194, 0.36873086145645606, 0.3724747280833207, 0.3760542892190887, 0.3794761366033373 ], [ 0.09674859783505818, 0.08677062265610842, 0.07810410254039078, 0.07106408956004921, 0.06600190110899182, 0.06324011431028813, 0.06295921719707201, 0.06510131377120167, 0.06937781078411812, 0.0753778401615294, 0.08268799712107779, 0.09096006042875301, 0.0999275051350674, 0.10939584327914592, 0.11922550926051327, 0.1293155546367631, 0.13959051324105703, 0.14999057274249483, 0.160464621331175, 0.17096568878581175, 0.18144833743248265, 0.1918675770508791, 0.2021788856530316, 0.21233893927407582, 0.2223067001682015, 0.23204458124878702, 0.24151948424807437, 0.2507035874912558, 0.2595748268336399, 0.26811706506033484, 0.2763199798351456, 0.28417871989639315, 0.29169338689270846, 0.298868399656656, 0.30571179210472765, 0.3122344879081643, 0.31844958639951554, 0.3243716859610129, 0.33001626392757455, 0.33539912599228455, 0.34053593315906233, 0.3454418102715736, 0.3501310368623426, 0.3546168183434082, 0.3589111332843001, 0.3630246506345939, 0.3669667092315162, 0.3707453507999532, 0.37436739692291837, 0.37783856014733236 ], [ 0.09615174100858126, 0.0863060464105963, 0.07784342459978527, 0.07108809965671684, 0.06638558626045574, 0.06402832494492822, 0.06414502175699584, 0.06662566551782492, 0.07115261999560757, 0.07731315752503634, 0.08470727597531022, 0.09300321058747477, 0.10194818473451467, 0.11135774599518489, 0.12109947647469145, 0.131077750054274, 0.1412213798810994, 0.15147424437765955, 0.16178854909700324, 0.17212034226985776, 0.18242691349453358, 0.19266569626983368, 0.2027942814955393, 0.21277115556048345, 0.22255681376530553, 0.23211496331983075, 0.24141360773701762, 0.2504258826614939, 0.25913058166240527, 0.2675123635709902, 0.2755616691181349, 0.283274395502824, 0.2906513862654231, 0.2976977940535428, 0.3044223688447843, 0.3108367165388283, 0.31695456437993014, 0.32279106153988585, 0.32836213594311675, 0.3336839222253888, 0.338772270531692, 0.343642341517607, 0.34830828924496504, 0.3527830305141426, 0.35707809646618793, 0.3612035599895028, 0.3651680305922464, 0.36897870698895585, 0.37264147673412984, 0.3761610518349515 ], [ 0.09649269834933094, 0.08682706802377424, 0.07861117181402787, 0.07217164892307142, 0.06783838967187807, 0.06586509570661782, 0.06632868045307798, 0.06907803751149173, 0.07378158133170247, 0.08003560853957568, 0.08745799751575756, 0.09573355954828511, 0.10462142302311152, 0.11394477503261853, 0.12357602016920306, 0.13342283280500497, 0.14341666039488174, 0.15350381551200623, 0.16363893590497605, 0.17378053946805533, 0.1838883825121618, 0.19392229370544478, 0.20384212165051813, 0.2136084255417848, 0.223183565103623, 0.23253290283919145, 0.24162590546654622, 0.250437008107459, 0.25894617328356423, 0.2671391307444756, 0.2750073216900093, 0.28254759329378043, 0.2897616995488397, 0.29665566583613606, 0.30323907051800786, 0.3095242898909537, 0.315525744840928, 0.3212591796720273, 0.32674099640848664, 0.3319876615951649, 0.3370151972087212, 0.341838762604353, 0.3464723303132652, 0.35092845486653124, 0.3552181306057112, 0.3593507316617239, 0.36333402499289746, 0.3671742456367869, 0.3708762222033077, 0.37444354014361925 ], [ 0.09787388493325506, 0.08844760994513123, 0.08052856686011546, 0.07443636123944931, 0.07047434176552626, 0.06885114601608257, 0.06959648296241198, 0.07253233134576359, 0.07732833485331794, 0.08359948167815434, 0.09098523861047386, 0.09918705709108899, 0.10797442462016364, 0.1171761164146642, 0.126667290945517, 0.13635703819197567, 0.14617782406397506, 0.15607708558051642, 0.16601089925837656, 0.17593956456059984, 0.18582489310118944, 0.1956289322553198, 0.20531379785045709, 0.21484226717372942, 0.22417879890842568, 0.23329069514019607, 0.2421491889430988, 0.25073031474256785, 0.2590154861103083, 0.2669917599703381, 0.2746518049156773, 0.2819936152397968, 0.28902002401825794, 0.2957380714381141, 0.302158281721264, 0.3082938959958612, 0.3141601011815048, 0.3197732875251957, 0.32515036045852286, 0.3303081261593008, 0.33526276458385773, 0.34002939868432347, 0.34462176392917576, 0.3490519780437195, 0.3533304070855896, 0.3574656206331531, 0.3614644260910168, 0.3653319700097104, 0.3690718929536805, 0.37268652386422474 ], [ 0.10036339098397325, 0.0912391970217192, 0.08366547889095963, 0.0779444334076353, 0.07434366838433919, 0.07302485779450581, 0.07397909827696102, 0.07701599985830086, 0.08181915558971752, 0.08802950846035104, 0.09531080118967601, 0.10338125529736052, 0.11201969052606064, 0.12105899314759765, 0.13037547406716146, 0.13987807491974516, 0.14949884884847559, 0.1591851212396498, 0.1688934045218164, 0.1785850253006435, 0.18822333853924547, 0.19777231758061625, 0.20719623698780285, 0.21646012733116998, 0.22553068439852073, 0.23437735413776792, 0.24297337588808307, 0.2512966356273407, 0.25933024623224815, 0.26706282569182244, 0.2744884837702549, 0.2816065530278627, 0.28842111360041145, 0.2949403657284386, 0.3011759027087016, 0.30714193220094876, 0.3128544874804931, 0.31833066343600597, 0.32358790548879457, 0.32864337339288413, 0.33351339608406744, 0.33821302831324573, 0.34275571466373944, 0.3471530617109224, 0.3514147146059648, 0.3555483303836372, 0.3595596369650538, 0.3634525642982214, 0.3672294324568137, 0.37089118083828704 ], [ 0.1039844348481617, 0.09521926733588623, 0.08802892591442833, 0.08268922123255361, 0.07942685979863895, 0.07835951236879334, 0.07945023546651343, 0.08250856524182554, 0.08724079726272846, 0.09331821375478255, 0.10043043671577544, 0.10831270500299608, 0.11675276254040937, 0.12558683356711686, 0.13469139066257219, 0.1439741275593893, 0.15336557160961387, 0.1628118916734336, 0.1722691221130285, 0.18169887398267684, 0.19106549171194437, 0.20033450688064194, 0.20947215316805445, 0.2184456552319778, 0.22722399537878388, 0.23577889001121902, 0.24408576055646808, 0.252124546802079, 0.2598802724403763, 0.2673433253246326, 0.2745094548256542, 0.28137951539512274, 0.2879590007121577, 0.2942574192672693, 0.3002875626783104, 0.3060647147953296, 0.311605844487656, 0.31692881905006276, 0.32205166903240684, 0.3269919292423363, 0.33176607474117503, 0.33638906482388176, 0.3408740022416095, 0.345231909358657, 0.34947161768551205, 0.35359976250751574, 0.3576208703651137, 0.36153752413997337, 0.3653505885973637, 0.36905947847251974 ], [ 0.10871283193633358, 0.10035052812020422, 0.09356580797176846, 0.08860232491393746, 0.08564545259136935, 0.08477535362713454, 0.0859373224561698, 0.08894950940275304, 0.09354554563576949, 0.09942875181608382, 0.10631519738160321, 0.11395742870437668, 0.12215224897755411, 0.13073912858988834, 0.1395943517164897, 0.1486237937309814, 0.1577557428516012, 0.1669344427063823, 0.1761147043318348, 0.1852577618358961, 0.1943284101608852, 0.2032933400940263, 0.21212048514291432, 0.22077913148363812, 0.22924052135484937, 0.23747869715168377, 0.24547137661136798, 0.25320070552757856, 0.260653791748957, 0.26782297475291456, 0.27470582467172583, 0.28130489232642947, 0.2876272487613684, 0.29368386119131445, 0.29948885463074904, 0.3050587069445214, 0.310411421288901, 0.3155657149831018, 0.32054025836127403, 0.32535299136054713, 0.33002053957304833, 0.3345577452484109, 0.3389773223413771, 0.34328963831151976, 0.3475026192482693, 0.35162176932549727, 0.35565029090524447, 0.35958928807941126, 0.36343803423370824, 0.3671942833877533 ], [ 0.11448240485485207, 0.10655014555701833, 0.10017663661894316, 0.09557137939229175, 0.09288178556787328, 0.0921584891501157, 0.09333749799269728, 0.09625064958553478, 0.10066020940397194, 0.1063011392631174, 0.1129156111708359, 0.12027366139237587, 0.12818162506951783, 0.13648265295070547, 0.1450530484654488, 0.15379680421805725, 0.1626396727325026, 0.17152351987674078, 0.1804014069133779, 0.18923366235848216, 0.19798505490802576, 0.2066230442280845, 0.21511697620328576, 0.22343801569217167, 0.2315595779284222, 0.23945802535152214, 0.24711342961295044, 0.25451024643746956, 0.26163780276749565, 0.2684905430755597, 0.2750680203148028, 0.2813746451594501, 0.2874192255611744, 0.29321433895916543, 0.29877558383564556, 0.30412075764086194, 0.3092690059216363, 0.3142399837689437, 0.3190530660039029, 0.32372663708946, 0.3282774856714386, 0.3327203219808759, 0.3370674292074964, 0.34132845263826656, 0.34551032321339764, 0.3496173056175714, 0.3536511555235172, 0.3576113664873719, 0.3614954844745544, 0.3652994671212734 ], [ 0.12119562227988305, 0.11370420061174226, 0.10773351836645112, 0.1034601185252308, 0.10099895699010837, 0.10037888514998806, 0.10153279100702199, 0.10430842487147053, 0.10849575281879655, 0.11385958340766711, 0.12016711390891831, 0.12720580882412574, 0.13479210632754413, 0.14277357803061713, 0.1510271552067792, 0.15945529727541438, 0.16798130068166703, 0.17654451231761722, 0.18509595333447018, 0.19359467975179484, 0.20200505257165305, 0.21029495085254662, 0.21843484532413174, 0.22639756895538415, 0.23415857934331333, 0.2416965027750849, 0.24899377250543173, 0.25603721305666094, 0.26281846774004286, 0.2693342101566175, 0.2755861173086724, 0.28158061011073954, 0.2873283865735786, 0.2928437849964217, 0.2981440208547306, 0.3032483433660402, 0.30817715726100603, 0.31295115294627324, 0.31759048449153443, 0.3221140299060206, 0.32653876207229815, 0.33087925158032855, 0.33514731477170895, 0.3393518119375689, 0.34349859232403557, 0.3475905749657072, 0.3516279479468367, 0.3556084639251194, 0.35952780690543423, 0.36338000436908624 ], [ 0.12873583728764063, 0.1216824686169583, 0.11609651767865632, 0.11212480472158305, 0.10985593686450751, 0.10930353976418963, 0.11040142315211185, 0.11301357546116206, 0.11695548612613395, 0.1220192414265096, 0.12799546877857002, 0.13468869095799932, 0.14192592653053374, 0.14956000209020767, 0.15746930738958398, 0.165555404245554, 0.17373950956940434, 0.18195858140475732, 0.19016153502846644, 0.1983059558912903, 0.20635552887883382, 0.2142782660434955, 0.22204549783472569, 0.22963150704246926, 0.2370136354380353, 0.24417267853346808, 0.25109339669786757, 0.25776500132119995, 0.26418151325182276, 0.2703419297375112, 0.27625017060425633, 0.2819148019914023, 0.2873485561688288, 0.29256767955564617, 0.29759114934220315, 0.30243980342279375, 0.3071354297452631, 0.31169986037137315, 0.31615411287077333, 0.3205176172706344, 0.324807560711852, 0.32903837435512207, 0.3332213782425185, 0.33736459026356663, 0.341472695778014, 0.34554716556554776, 0.3495865023175224, 0.3535865904114985, 0.3575411205302567, 0.36144205984426186 ], [ 0.13697826418219086, 0.13035037782636033, 0.12512556498344643, 0.12142507424008797, 0.11931687182874369, 0.1188044345324994, 0.11982488083097378, 0.12225765929236322, 0.12594107415510372, 0.13069161195933524, 0.13632142997282787, 0.14265144318281675, 0.1495195232310122, 0.15678451877489913, 0.16432717143412365, 0.1720489353924434, 0.1798695260131053, 0.18772385306191616, 0.19555885249994823, 0.2033305991438362, 0.21100195001842664, 0.21854083901692734, 0.22591922953513086, 0.23311264450285105, 0.24010013863561822, 0.24686455516350633, 0.253392913089966, 0.25967679293012147, 0.26571262037440563, 0.2715017813223609, 0.27705053331809987, 0.28236970490881824, 0.28747419496505383, 0.2923822988590892, 0.29711489848813405, 0.3016945594452564, 0.3061445819816305, 0.3104880532514522, 0.31474694687724053, 0.3189413121375895, 0.3230885890711802, 0.3272030776624628, 0.3312955794234506, 0.3353732187793524, 0.33943944058088726, 0.343494169767682, 0.34753411059181955, 0.3515531565625733, 0.3555428787648899, 0.35949305946172194 ], [ 0.14579828880611967, 0.13957715732739376, 0.13468770627889176, 0.1312298645458307, 0.12925579672008705, 0.12876252624565784, 0.12969170669056898, 0.13193692237989732, 0.13535649343308342, 0.13978842573774644, 0.14506438118463927, 0.1510207667114992, 0.15750633973289538, 0.16438657558385247, 0.1715454061297791, 0.17888500949360603, 0.18632428593247202, 0.19379657996506594, 0.20124712342788903, 0.20863057531500886, 0.21590892224597547, 0.22304988724204894, 0.2300258876625751, 0.23681349762119427, 0.24339331270410527, 0.24975008607838295, 0.25587300105541055, 0.26175595912793714, 0.26739778708089007, 0.2728022955526158, 0.2779781496886711, 0.2829385374739587, 0.2877006417561763, 0.2922849378049362, 0.29671434998991253, 0.3010133094529576, 0.3052067599918544, 0.3093191619977013, 0.31337354417934865, 0.3173906498345457, 0.32138821851515553, 0.3253804352372894, 0.3293775683976212, 0.33338580511812915, 0.3374072799637943, 0.3414402810745271, 0.34547960783924975, 0.34951704715202214, 0.3535419314625599, 0.357541741267438 ], [ 0.15507693731117028, 0.14924058243987995, 0.144660758948619, 0.1414199642573379, 0.13955842298838594, 0.139069275071828, 0.1398991797750258, 0.14195433195464155, 0.1451104167953361, 0.14922424993633318, 0.15414498128160806, 0.15972345544500224, 0.16581912469371415, 0.17230449460707042, 0.17906739856631146, 0.18601152835031015, 0.1930556854742602, 0.20013221027024236, 0.20718500738646212, 0.2141675199685372, 0.22104091582106736, 0.2277726489273126, 0.23433546306734745, 0.24070682322368517, 0.24686870246894155, 0.2528076190787292, 0.2585148082004784, 0.26398641930643535, 0.26922364872040744, 0.2742327400711127, 0.2790248102297566, 0.28361548133325176, 0.2880243194738239, 0.29227409715418656, 0.29638990981880553, 0.30039818697960613, 0.30432564584023164, 0.30819823982894023, 0.31204015581076744, 0.31587291163419245, 0.3197145998821107, 0.3235793143762442, 0.3274767837136828, 0.33141222193728304, 0.33538639174098683, 0.3393958618932158, 0.34343342919943126, 0.34748866732894984, 0.3515485607034266, 0.35559818134677806 ], [ 0.1647039919367142, 0.1592292445561674, 0.15493464792408004, 0.15188859524307977, 0.15012233546165488, 0.14962684642415025, 0.15035380218354136, 0.15222047733744432, 0.15511752789188712, 0.15891812487514034, 0.16348698544674228, 0.1686882599276833, 0.1743917237145731, 0.18047711631334884, 0.18683672362168824, 0.19337644586658226, 0.2000156732394618, 0.20668632659947445, 0.2133314180733119, 0.21990344864945682, 0.2263628938260514, 0.23267694608404138, 0.23881859848783044, 0.24476607931283764, 0.2505025912338238, 0.25601627333631344, 0.2613002889331743, 0.2663529430752118, 0.2711777457904193, 0.2757833556464119, 0.28018335929788724, 0.28439586358390173, 0.28844289597721307, 0.29234962613163584, 0.2961434357806357, 0.2998528762947148, 0.30350656266355336, 0.30713205915584496, 0.3107548148636853, 0.31439720618092354, 0.31807773763785957, 0.3218104425073993, 0.32560451088882203, 0.329464156831896, 0.33338871918496643, 0.3373729750864749, 0.3414076320449791, 0.3454799555792931, 0.3495744849904061, 0.35367378991543685 ], [ 0.17457942962478565, 0.16944325065864912, 0.16541143330569555, 0.16254099975216846, 0.16085644277526634, 0.1603476913617716, 0.16097118099918242, 0.16265382968475858, 0.16529916003573816, 0.16879452647146523, 0.17301843784616588, 0.17784720220078284, 0.183160416158691, 0.18884508086869717, 0.19479832040707976, 0.200928816207076, 0.20715716663446823, 0.21341543990585626, 0.21964621057140152, 0.2258013552452129, 0.23184083806350134, 0.23773165149734654, 0.24344700670731495, 0.24896580132109672, 0.2542723394855181, 0.2593562431542543, 0.2642124749142787, 0.26884138871330965, 0.2732487318253822, 0.2774455353166486, 0.28144784777238174, 0.2852762856804376, 0.2889553921423804, 0.29251281272968305, 0.29597831294269994, 0.2993826755608602, 0.3027565277294238, 0.3061291561948092, 0.309527373776491, 0.3129745000706327, 0.3164895139484551, 0.32008642465386516, 0.3237738929879828, 0.32755511570996376, 0.3314279669470584, 0.33538537234439425, 0.33941587692251013, 0.34350435758905823, 0.34763282661531975, 0.35178127296550604 ], [ 0.18461378866540015, 0.17979403321522675, 0.17600469182089085, 0.17329360516795128, 0.17168014612828825, 0.17115388710206375, 0.1716756376570811, 0.17318066123226356, 0.1755835271178977, 0.17878387854974315, 0.18267240777929566, 0.18713646100286876, 0.1920648715573046, 0.19735178770140416, 0.2028994044153914, 0.20861962738006104, 0.21443479296873413, 0.2202776371024802, 0.22609074272656343, 0.23182569836047912, 0.237442172563295, 0.24290706035383, 0.24819379909915004, 0.25328189389921163, 0.25815664401750216, 0.2628090268083854, 0.26723567491294714, 0.2714388748385163, 0.27542651765399506, 0.2792119423013354, 0.282813626140451, 0.2862546936852975, 0.28956223165866424, 0.292766415664944, 0.2958994704120592, 0.29899450095726837, 0.3020842461339379, 0.3051998160642306, 0.30836948219704735, 0.31161758940007217, 0.3149636544439063, 0.31842170364587297, 0.3219998853414946, 0.3257003720161241, 0.3295195448380346, 0.3334484327044568, 0.3374733611757167, 0.3415767555313143, 0.3457380373542559, 0.3499345552606692 ], [ 0.19472791237105402, 0.19020371358411928, 0.18663863540174458, 0.18407306552729263, 0.1825224526456567, 0.18197642146021617, 0.18239971399095428, 0.1837347923489362, 0.18590571298547393, 0.18882276982581409, 0.19238740176687766, 0.19649693095248588, 0.201048799941211, 0.2059440825271454, 0.21109014582492058, 0.21640243835852488, 0.22180546631326337, 0.22723309000690745, 0.23262831686908286, 0.2379427816035403, 0.24313609051374827, 0.24817517210674672, 0.25303372961476917, 0.2576918424920152, 0.26213572074087405, 0.2663575826824637, 0.27035560524411345, 0.27413388551300455, 0.27770235138234445, 0.2810765652661398, 0.28427737586484936, 0.287330387069718, 0.290265229081003, 0.2931146338808897, 0.29591333470803083, 0.2986968263822875, 0.30150003916538065, 0.3043559918770539, 0.30729449852405155, 0.3103410051024338, 0.31351562834582714, 0.31683245576047664, 0.32029914723460223, 0.3239168549295566, 0.32768045300669607, 0.3315790452669251, 0.3355966998772552, 0.339713348026186, 0.3439057783800311, 0.3481486611990429 ], [ 0.20485236711990118, 0.20060427988837276, 0.19724716714531662, 0.19481531840001293, 0.19332112876515867, 0.19275449818970825, 0.193083652828027, 0.19425725444631764, 0.19620751724197033, 0.19885397671060917, 0.2021075469052836, 0.2058745377927531, 0.21006036118149848, 0.21457271995146365, 0.21932414773122352, 0.22423384289075446, 0.22922881630121658, 0.23424443773754836, 0.2392245119592479, 0.24412103693404597, 0.2488937933093932, 0.2535098908713332, 0.25794336195669815, 0.26217485168603594, 0.2661914172373339, 0.2699864177256429, 0.2735594547706539, 0.2769163117620513, 0.28006883614290834, 0.2830347121173064, 0.28583707940632097, 0.2885039656688105, 0.2910675149883352, 0.2935630116954197, 0.29602771707888914, 0.29849955535183714, 0.30101570325846394, 0.30361115313271564, 0.3063173299115502, 0.3091608464678473, 0.3121624771237555, 0.31533641588249145, 0.3186898647534837, 0.3222229709622042, 0.325929103314261, 0.32979543137818856, 0.33380374988912564, 0.33793147718134303, 0.34215275139794243, 0.34643955113333996 ], [ 0.21492671617672598, 0.21093672042365758, 0.20777296819090718, 0.20546471085678777, 0.20402192435042424, 0.20343488815894184, 0.20367488452983964, 0.20469591244823018, 0.20643721364801465, 0.20882635646632605, 0.21178261199868292, 0.2152203718903711, 0.21905238679345762, 0.2231926445109013, 0.2275587569586022, 0.23207378421589883, 0.23666748693565637, 0.24127705662940438, 0.24584741790303716, 0.2503312215993892, 0.2546886516115983, 0.2588871538222952, 0.26290116895843124, 0.2667119187695779, 0.2703072627685678, 0.27368161511350214, 0.2768358904689438, 0.2797774346242095, 0.28251988988394094, 0.2850829458048066, 0.2874919316266277, 0.28977721678814433, 0.29197339952229784, 0.29411828013617314, 0.29625163456342285, 0.2984138241523779, 0.30064429787866837, 0.30298006108376346, 0.3054541978371416, 0.30809453949653287, 0.31092256802197843, 0.3139526283835075, 0.3171915010018518, 0.3206383553399651, 0.32428507358553854, 0.32811690336219274, 0.3321133745986318, 0.33624940076138143, 0.3404964795579498, 0.34482391218352954 ], [ 0.22489875247175595, 0.2211501819812111, 0.21816665205925773, 0.21597320753912636, 0.21457786970252404, 0.21397132882017728, 0.2141275295013794, 0.21500506787634388, 0.2165492534969378, 0.2186946520741819, 0.22136791268229683, 0.22449068638566966, 0.22798245685119692, 0.23176312664559692, 0.2357552370355721, 0.23988574389300024, 0.24408732349575354, 0.24829923211128888, 0.25246778415109905, 0.256546539436692, 0.2604962984892967, 0.26428499726063676, 0.26788757352099796, 0.2712858514896052, 0.27446846426226196, 0.27743080907485784, 0.28017501090172614, 0.28270985643847335, 0.2850506532778415, 0.2872189676129035, 0.28924219747669533, 0.29115294680449993, 0.29298817808077027, 0.2947881376477339, 0.29659506736179986, 0.2984517381694599, 0.30039986360935234, 0.30247847172567427, 0.3047223293173221, 0.30716051969654506, 0.3098152717191402, 0.3127011227711256, 0.31582447267433206, 0.31918355222266626, 0.3227687939779714, 0.3265635593139288, 0.3305451491723336, 0.334686009680285, 0.3389550386835524, 0.34331890439912083 ], [ 0.2347237448313117, 0.2312011826657262, 0.22838599508191362, 0.22629967662935543, 0.2249486372312668, 0.22432396652247746, 0.22440191815053934, 0.22514505290029344, 0.22650393342607084, 0.22841923612542236, 0.2308241331648876, 0.23364679472049288, 0.23681286574462734, 0.24024778404224906, 0.2438788292816348, 0.24763682602789844, 0.25145746471901886, 0.2552822465374802, 0.2590590943719965, 0.26274269697295877, 0.26629466432630505, 0.26968356966163043, 0.27288494021517623, 0.2758812389466819, 0.27866185701049373, 0.28122311535515426, 0.28356825575599565, 0.28570738819064767, 0.2876573532380826, 0.2894414551128244, 0.29108902284837035, 0.2926347638500456, 0.2941178854538009, 0.2955809761239856, 0.2970686580880047, 0.2986260465332601, 0.3002970751123529, 0.30212277059216835, 0.3041395774764445, 0.306377842602216, 0.3088605670411499, 0.3116025167686799, 0.3146097554905978, 0.31787962621041477, 0.3214011679444264, 0.32515591652068226, 0.3291190090180404, 0.33326049363907206, 0.3375467417558671, 0.34194186529255705 ], [ 0.2443637236703841, 0.24105288820520135, 0.23839523936416163, 0.23640924385286155, 0.23509995740465955, 0.23445883482026775, 0.23446412722968005, 0.23508182106943404, 0.23626704032081228, 0.2379658126702264, 0.24011708830194972, 0.24265489391321027, 0.24551050353188267, 0.2486145135523311, 0.25189872439848043, 0.2552977559643655, 0.2587503561117792, 0.26220039612943297, 0.26559757835000286, 0.2688979041510807, 0.27206396256290827, 0.275065100409204, 0.2778775261291975, 0.2804843841927349, 0.2828758186588821, 0.28504902589821285, 0.28700828001436207, 0.28876490146948786, 0.2903371305900255, 0.29174986334246766, 0.29303420720012974, 0.2942268202498775, 0.29536900712425407, 0.2965055610072661, 0.29768336160803044, 0.29894976367540455, 0.3003508373703981, 0.30192954751144463, 0.30372397932478634, 0.3057657295478387, 0.3080785799463885, 0.3106775537558156, 0.3135684251716422, 0.3167477116108521, 0.32020313409258755, 0.32391448966367253, 0.3278548474617947, 0.3319919607578375, 0.3362897823189275, 0.3407099781925829 ], [ 0.25378681640605694, 0.2506744510120244, 0.24816446047979468, 0.24627270414180544, 0.24500307974047947, 0.24434736300423543, 0.2442855313997708, 0.24478653864553077, 0.24580948237973624, 0.24730509089903446, 0.24921744381437216, 0.25148583398175733, 0.254046674271293, 0.2568353545367124, 0.25978796373699337, 0.26284281029224094, 0.26594169877820795, 0.2690309491898016, 0.27206217149634626, 0.2749928288245839, 0.2777866346598774, 0.28041383224380406, 0.2828513989046046, 0.2850832065603052, 0.28710015469273253, 0.28890027617516306, 0.2904888014382562, 0.29187815398889155, 0.2930878411684831, 0.2941441988501556, 0.2950799480057929, 0.29593352521010263, 0.29674815869072696, 0.29757067685234057, 0.2984500572475936, 0.2994357498808226, 0.3005758374872915, 0.3019151236740841, 0.3034932630566328, 0.30534306086587765, 0.3074890687276272, 0.3099465862255307, 0.3127211452771733, 0.31580851041242564, 0.31919517947973125, 0.32285932390048105, 0.3267720722681355, 0.3308990203233759, 0.33520184538620756, 0.33963991242637465 ], [ 0.2629666346735697, 0.2600404072887364, 0.2576689915348224, 0.25586598205039646, 0.2546342716971936, 0.2539659107759474, 0.2538423695400794, 0.2542351798287732, 0.25510691341306385, 0.2564124413327328, 0.25810040844532467, 0.26011484957795855, 0.26239686856829064, 0.2648863009041845, 0.26752328657664776, 0.27024969293812356, 0.27301034668855184, 0.27575405671159015, 0.27843443157071324, 0.2810105134793353, 0.28344726201375575, 0.28571592478995167, 0.28779432925563986, 0.2896671211591821, 0.2913259631401442, 0.29276969326215674, 0.29400442992062054, 0.2950435977593793, 0.29590784002571674, 0.2966247769682254, 0.29722856815617865, 0.2977592397211227, 0.2982617462574814, 0.29878475208769695, 0.29937913795151805, 0.30009626618049107, 0.30098606802628236, 0.30209504746504945, 0.30346432161006354, 0.3051278333512261, 0.30711087218755234, 0.3094290217587155, 0.3120876179958314, 0.3150817545118977, 0.3183968192326771, 0.3220094969632085, 0.3258891343055233, 0.32999934106142137, 0.3342996973237073, 0.3387474458505451 ], [ 0.2718817115419645, 0.2691301263828066, 0.266888896164534, 0.26516963394593235, 0.26397435036798317, 0.26329532654230753, 0.2631153260585626, 0.2634081289261652, 0.26413935619372986, 0.2652675430223148, 0.2667454089713777, 0.268521266647642, 0.27054050431366045, 0.2727470761498359, 0.2750849372817959, 0.2774993701813743, 0.27993816388372833, 0.2823526254655892, 0.2846984214186625, 0.2869362619782677, 0.2890324519352855, 0.29095933591524925, 0.2926956646496519, 0.29422690237567484, 0.29554548566516703, 0.2966510323183151, 0.2975504869557667, 0.2982581788634974, 0.29879575852551704, 0.29919197303350403, 0.29948223809419616, 0.2997079666326642, 0.2999156220118329, 0.30015547850543545, 0.30048009322908603, 0.3009425216512501, 0.30159434104853045, 0.30248357912205, 0.3036526732084344, 0.3051366030954227, 0.306961341988281, 0.3091427525285051, 0.31168601844477206, 0.31458565205659833, 0.3178260614517561, 0.32138260816293074, 0.32522304505357136, 0.3293092003514895, 0.3335987688034134, 0.33804708249112086 ], [ 0.28051498535715075, 0.2779273068087388, 0.27580848438019423, 0.27416838678402133, 0.2730082435341032, 0.2723205279800708, 0.27208912798442697, 0.27228979231931405, 0.27289082975491835, 0.2738540286463134, 0.27513575681367636, 0.27668819441266707, 0.27846064697543843, 0.2804008832275035, 0.2824564440437191, 0.2845758756827594, 0.286709851756344, 0.2888121626259369, 0.29084056574577094, 0.2927575034812822, 0.29453070422039573, 0.2961336871001459, 0.2975461902410067, 0.29875453761421983, 0.2997519516369643, 0.3005388085655352, 0.3011228229946181, 0.3015191374148414, 0.30175028386294167, 0.3018459782100528, 0.3018427046148953, 0.30178304926270005, 0.3017147499145246, 0.30168944206060777, 0.30176110415368945, 0.30198423303554556, 0.3024118142823836, 0.3030931869584419, 0.3040719326440718, 0.30538393813078996, 0.3070557839158486, 0.3091035929870434, 0.3115324366662136, 0.31433634128066285, 0.31749887967528917, 0.320994275238897, 0.3247889023809725, 0.3288430421957642, 0.33311274697260934, 0.33755167977574135 ], [ 0.28885332644655554, 0.28641951405969845, 0.2844158664878298, 0.28285070970458226, 0.28172457783339394, 0.2810301042979442, 0.2807521588995615, 0.28086822283627305, 0.2813489847451754, 0.28215913310685425, 0.28325831327784984, 0.2846022109565593, 0.28614371866811344, 0.28783413900596294, 0.28962437903274907, 0.29146609501688525, 0.2933127552646297, 0.295120599993169, 0.2968494891680618, 0.2984636400541328, 0.2999322642765913, 0.3012301184481142, 0.30233798258439687, 0.30324307692340935, 0.3039394211342817, 0.3044281312286179, 0.30471763981240907, 0.30482381566258593, 0.304769949977797, 0.30458657006939177, 0.30431103786158326, 0.3039868916351452, 0.3036628963332098, 0.3033917816798867, 0.30322866906137813, 0.30322921726477653, 0.30344755184450756, 0.3039340792047769, 0.3047333186890296, 0.30588190721528247, 0.30740693489406157, 0.3093247526035432, 0.31164035376077925, 0.3143473774178735, 0.3174287172611364, 0.3208576618895494, 0.32459944570140264, 0.3286130631921978, 0.33285319418142545, 0.3372721008079148 ], [ 0.2968871030689072, 0.2945977561311378, 0.2927025413880981, 0.2912084157369764, 0.2901152926016118, 0.28941594007114696, 0.28909609082677534, 0.2891347588047159, 0.2895047502402602, 0.29017335014364115, 0.2911031590434278, 0.29225304904421057, 0.2935792034454767, 0.295036201285777, 0.2965781081338391, 0.2981595377524691, 0.2997366557290617, 0.3012681049005928, 0.30271584199827695, 0.3040458838360936, 0.30522896819852524, 0.306241138417934, 0.3070642610856718, 0.30768648353475986, 0.3081026321712833, 0.30831454515764467, 0.3083313242181574, 0.3081694813496225, 0.30785294792692935, 0.3074129071398122, 0.30688740707686957, 0.3063207124574782, 0.3057623594780558, 0.3052658918524939, 0.30488727774753815, 0.3046830367458715, 0.30470814136787583, 0.30501379514267946, 0.30564522283583145, 0.30663963110039005, 0.30802450276388443, 0.3098163708360173, 0.312020178994556, 0.314629278703529, 0.3176260484574105, 0.3209830591857337, 0.32466466189965654, 0.3286288459550874, 0.3328292107098609, 0.3372169071441528 ], [ 0.30460978335037303, 0.3024560934045299, 0.3006630163988418, 0.2992362916298079, 0.2981752784357984, 0.29747286072575563, 0.29711553509950833, 0.2970836796828826, 0.2973519947494572, 0.29789010055207765, 0.298663272343464, 0.2996332874304945, 0.30075935477091953, 0.3019990948382546, 0.3033095369919666, 0.30464810381724844, 0.30597355673394633, 0.30724688394852456, 0.30843211944997423, 0.30949708898063794, 0.31041408460247233, 0.3111604727969368, 0.3117192415628223, 0.3120794896995072, 0.31223685670454865, 0.31219388502637746, 0.3119602984910432, 0.31155317236004326, 0.3109969625684245, 0.3103233552740009, 0.30957089414586936, 0.3087843432642525, 0.3080137496528484, 0.3073131827832457, 0.30673914984468564, 0.3063487150661472, 0.30619738714137945, 0.30633687695471606, 0.3068128623652769, 0.307662920499647, 0.30891479382718007, 0.31058513962385487, 0.31267887294775565, 0.3151891558310527, 0.3180980194018149, 0.3213775426385302, 0.32499146208887847, 0.3288970581857852, 0.3330471577824665, 0.3373921064680037 ], [ 0.3120175703472701, 0.30999128013218946, 0.30829445634462743, 0.3069317542945519, 0.3059020397958631, 0.30519829978578444, 0.3048077130470291, 0.3047118797598596, 0.3048872035425768, 0.3053054147791345, 0.3059342192748129, 0.3067380517561142, 0.3076789098580391, 0.30871724162939473, 0.3098128588270074, 0.3109258497085586, 0.3120174686101314, 0.3130509848079041, 0.31399247917106987, 0.31481158291643535, 0.3154821574252576, 0.31598291684765023, 0.3162979956770632, 0.3164174615300258, 0.31633776920154266, 0.3160621460896147, 0.3156008918582893, 0.31497156743352767, 0.3141990409358523, 0.3133153519620385, 0.3123593519690453, 0.31137607884755886, 0.3104158297040859, 0.30953290892109997, 0.30878404976787427, 0.30822653716847814, 0.30791609499824013, 0.30790463964044995, 0.3082380365300205, 0.3089540207096604, 0.3100804489086278, 0.3116340345364689, 0.31361967777663585, 0.3160304454388641, 0.3188481887421605, 0.3220447234151839, 0.32558344626216, 0.32942123288384934, 0.33351045472783264, 0.3378009673952307 ], [ 0.3191090677412764, 0.3172024352193577, 0.3155963600743153, 0.31429453264011226, 0.3132953810744349, 0.31259198792685117, 0.3121721470869375, 0.3120185610139888, 0.3121091738675758, 0.3124176319637303, 0.31291385882891576, 0.3135647281530175, 0.3143348145068627, 0.31518719927899286, 0.3160843083717598, 0.31698875905881124, 0.31786419601184956, 0.318676100476792, 0.3193925612627401, 0.3199850008029795, 0.32042885327101384, 0.3207041939497777, 0.32079631935335245, 0.32069627584010696, 0.32040133072668964, 0.31991537450754365, 0.3192492361646592, 0.31842088632942006, 0.31745549601202017, 0.31638531272729603, 0.31524931234261666, 0.31409258531740647, 0.3129654218106605, 0.31192207294261065, 0.31101918637130077, 0.3103139433052708, 0.3098619594817857, 0.30971505073903194, 0.30991899872165796, 0.31051147671401363, 0.31152030249022494, 0.3129621695612227, 0.3148419696739206, 0.3171527624855099, 0.31987638220476566, 0.3229846072420181, 0.32644076839469915, 0.33020164114419226, 0.3342194605542802, 0.338443910500058 ], [ 0.32588497397873817, 0.3240907403347859, 0.3225702628437165, 0.3213263737341776, 0.3203571155809837, 0.31965566375257204, 0.31921037255654994, 0.3190049458366921, 0.3190187291317974, 0.31922711687756566, 0.3196020645107903, 0.3201126918583195, 0.32072596115751606, 0.32140741085347463, 0.32212192532478573, 0.3228345211297231, 0.32351113222137495, 0.3241193795666366, 0.32462931420758817, 0.3250141263851787, 0.3252508162567024, 0.3253208234316673, 0.32521061264844475, 0.32491221124302483, 0.32442369064984045, 0.3237495792346546, 0.3229011876688723, 0.321896821355705, 0.3207618478383183, 0.31952858160559533, 0.31823594546146156, 0.31692886808274295, 0.31565738315503233, 0.31447540806824575, 0.313439200625694, 0.3126055206060051, 0.31202955772886276, 0.3117627249575272, 0.31185045039318476, 0.31233012517987563, 0.3132293718805062, 0.3145647829133947, 0.3163412411652304, 0.3185518792217091, 0.32117866870727024, 0.3241935683121784, 0.3275601088980975, 0.3312352639238793, 0.3351714457434604, 0.33931848075324245 ], [ 0.3323478029084375, 0.3306591636201701, 0.32921946317528633, 0.3280307723006247, 0.3270907968443532, 0.3263928060558784, 0.32592567035905506, 0.32567400998119106, 0.3256184526844232, 0.3257359956995346, 0.3260004638037632, 0.3263830524428952, 0.3268529421206125, 0.3273779682797666, 0.32792532987692974, 0.32846231998292186, 0.3289570630195509, 0.3293792454457952, 0.329700829432091, 0.32989674179544226, 0.32994553267646726, 0.32982999965257903, 0.32953777285664826, 0.32906185502580676, 0.32840110722828086, 0.3275606664606551, 0.32655227568906753, 0.3253945007109617, 0.3241128021185365, 0.3227394255588344, 0.3213130705713636, 0.3198782989470516, 0.31848464934307474, 0.31718543727838955, 0.31603623963309435, 0.31509309039870353, 0.3144104481290172, 0.3140390317872889, 0.31402365495151635, 0.3144012117925375, 0.3151989751715201, 0.3164333529776411, 0.3181092127239991, 0.32021983060089, 0.32274745817761025, 0.32566443862419736, 0.3289347550528253, 0.3325158635400251, 0.33636065509962665, 0.3404194022362458 ], [ 0.33850162915945375, 0.33691220743593747, 0.3355487729123952, 0.33441272258270893, 0.33350147156639315, 0.3328083871686843, 0.33232282026344895, 0.3320302357881249, 0.3319124414629637, 0.3319479111142359, 0.3321121962255143, 0.33237841668080365, 0.33271781930257166, 0.33310039097916955, 0.3334955121534807, 0.33387263635014686, 0.3342019822474812, 0.334455226380268, 0.33460618657169994, 0.3346314882222784, 0.3345112071895414, 0.33422948377493156, 0.33377510198699567, 0.33314202659484815, 0.3323298874869396, 0.3313443966212534, 0.3301976776632318, 0.3289084826967305, 0.32750226479810784, 0.32601107065080015, 0.32447321486507263, 0.3229326986045705, 0.3214383409899321, 0.32004260394342027, 0.31880011059284624, 0.31776588404620193, 0.3169933657648236, 0.31653230750466754, 0.3164266625955164, 0.31671262469952066, 0.31741696877986253, 0.31855583542278015, 0.32013406518783166, 0.32214513820906077, 0.3245717138680405, 0.3273867063103044, 0.3305547837654525, 0.3340341500138715, 0.3377784574915689, 0.3417387116259427 ], [ 0.3443518566434298, 0.3428556786965675, 0.3415642892462386, 0.3404784915923473, 0.3395954534772305, 0.3389086468533999, 0.3384078744870105, 0.3380793854755125, 0.33790607944991385, 0.3378677968550316, 0.3379416902951626, 0.33810266960330726, 0.33832391120844113, 0.3385774207394965, 0.33883463680112097, 0.33906706359653277, 0.3392469205529997, 0.3393477981896923, 0.3393453109007895, 0.33921773877296646, 0.3389466516512553, 0.33851750907137457, 0.33792022912067327, 0.3371497176063801, 0.33620634605289884, 0.33509636310776986, 0.33383221914464095, 0.33243277861483345, 0.33092338961587975, 0.3293357760399644, 0.3277077156026213, 0.3260824683132022, 0.32450792592814137, 0.32303546491842694, 0.3217185043236337, 0.3206107954772367, 0.31976450148207425, 0.3192281572448771, 0.31904463087451057, 0.31924922823343127, 0.31986808848390397, 0.32091700550732044, 0.3224007774459883, 0.3243131379414576, 0.32663726539379007, 0.32934681035863345, 0.33240733532804556, 0.3357780322425337, 0.33941357374695696, 0.343265962919189 ], [ 0.3499050086746733, 0.34849648042932707, 0.34727318752663555, 0.34623541274238956, 0.3453801172620377, 0.344700886056514, 0.344187951009269, 0.34382829405853854, 0.343605830622883, 0.34350167150689953, 0.343494459380641, 0.34356077388349787, 0.34367559756048033, 0.3438128333576644, 0.34394586342929934, 0.34404813862855055, 0.34409378826270065, 0.3440582403826951, 0.3439188438407747, 0.34365548431513154, 0.343251187165517, 0.34269270006173475, 0.3419710475839952, 0.3410820482787412, 0.3400267819183821, 0.33881199103231807, 0.33745039636287627, 0.3359609011285157, 0.3343686544127032, 0.3327049404210035, 0.3310068587678103, 0.3293167625693822, 0.3276814272240062, 0.3261509345280595, 0.324777274936037, 0.3236126951752912, 0.32270784760686205, 0.32210982860162074, 0.3218602211330501, 0.32199327615499723, 0.3225343726993856, 0.32349888427511164, 0.3248915485069308, 0.32670639135827223, 0.32892720359911665, 0.331528514264547, 0.3344769623170426, 0.33773293981818864, 0.34125237020338556, 0.34498849252551167 ], [ 0.3551685382866385, 0.3538424232485096, 0.3526835336863325, 0.3516916988317694, 0.35086371165739005, 0.35019327973186254, 0.3496710459177303, 0.34928468128310586, 0.3490190508677877, 0.3488564511366093, 0.3487769161108624, 0.34875858737308646, 0.34877814150598235, 0.34881126718195776, 0.3488331831799302, 0.34881918813745694, 0.34874523284348835, 0.34858850625108095, 0.34832802697342913, 0.3479452325969281, 0.3474245594519631, 0.34675400528436856, 0.34592566636734073, 0.34493623885226193, 0.3437874715348971, 0.3424865537781864, 0.34104641828240695, 0.3394859340802572, 0.3378299610917821, 0.33610923453833763, 0.33436004642951467, 0.3326236933162986, 0.33094566572789297, 0.32937456622459144, 0.32796076041084704, 0.32675478833931865, 0.3258055910591488, 0.3251586357158915, 0.32485404830179876, 0.3249248807505966, 0.3253956436544648, 0.32628122412466454, 0.32758627975405125, 0.3293051573232525, 0.33142233505786434, 0.33391333794251604, 0.33674603471007053, 0.33988219844413003, 0.3432792027705359, 0.34689173144654073 ], [ 0.36015065739229807, 0.3589020554821189, 0.357804115120499, 0.35685627332950187, 0.35605519075635356, 0.3553947078506677, 0.35486586396710695, 0.354456981812891, 0.3541538181549335, 0.35393978012060345, 0.35379620480965185, 0.35370269835212415, 0.35363752909214263, 0.35357806835342853, 0.3535012713387659, 0.3533841901832706, 0.3532045110134428, 0.3529411069870436, 0.3525745995662462, 0.3520879205246977, 0.351466867201224, 0.35070064308686943, 0.34978237479783403, 0.3487095947319436, 0.34748467619692675, 0.34611520460150036, 0.34461426460330374, 0.34300061924490866, 0.34129875358398504, 0.3395387528271859, 0.33775598438607507, 0.3359905556086815, 0.3342865252631908, 0.33269085807248105, 0.33125212820080885, 0.3300189992819771, 0.3290385339445683, 0.32835441211625493, 0.328005160741818, 0.3280225132942233, 0.3284300212102107, 0.3292420282159627, 0.3304630920676702, 0.3320878992931899, 0.3341016726891872, 0.3364810258369614, 0.33919518086971356, 0.3422074404639498, 0.34547679495280675, 0.3489595499118989 ], [ 0.36486018349450666, 0.36368451072585156, 0.36264428887442196, 0.3617386188864044, 0.3609640625171768, 0.36031460364668916, 0.35978166644333903, 0.35935419279903014, 0.35901878014690963, 0.358759879387959, 0.3585600512304633, 0.3584002778466511, 0.3582603254503481, 0.3581191522806015, 0.35795535560860975, 0.35774765080732335, 0.35747537522663353, 0.3571190095405994, 0.35666070926421284, 0.35608483912454686, 0.35537850274367044, 0.35453205948028443, 0.3535396191419191, 0.3523995035271175, 0.3511146613650502, 0.34969302025751825, 0.348147755877387, 0.3464974552558599, 0.3447661479732894, 0.34298317709894754, 0.3411828816115397, 0.3394040646991319, 0.3376892287240576, 0.3360835685216521, 0.3346337304401409, 0.33338636476036515, 0.33238652249081996, 0.33167597149106, 0.3312915278650418, 0.331263512448375, 0.33161444513002336, 0.33235807917128934, 0.3334988533667076, 0.3350318043426575, 0.33694293949995163, 0.3392100295058979, 0.3418037441890223, 0.3446890319947125, 0.34782663311232376, 0.35117461955930995 ], [ 0.3693064027051324, 0.36819937163448785, 0.3672138460063758, 0.3663486419951308, 0.3656002534411054, 0.36496281809659886, 0.364428135358641, 0.36398573788075794, 0.36362301831031757, 0.36332541118109984, 0.36307662873588487, 0.36285894821126957, 0.36265354694928903, 0.36244088067316516, 0.36220109943175754, 0.3619144951074404, 0.36156197398607515, 0.3611255476534996, 0.3605888353174025, 0.3599375704319227, 0.35916010408360505, 0.358247896842689, 0.35719598957694215, 0.3560034419933179, 0.35467372540578523, 0.35321505349935856, 0.3516406318486057, 0.3499688039567092, 0.3482230690544539, 0.346431945434444, 0.34462865343067656, 0.3428505951147071, 0.34113861418549585, 0.3395360300253414, 0.3380874547226565, 0.336837420603614, 0.33582886715043236, 0.3351015577877308, 0.334690515680138, 0.33462457974996185, 0.33492518423770706, 0.3356054551401522, 0.33666969462865515, 0.33811329232965165, 0.33992306454380306, 0.3420779847486421, 0.34455023669315704, 0.3473064993596896, 0.35030936318076905, 0.3535187789287971 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.40631841495633125, 0.10850354201021155, 0.06266618908905407, 0.13277755856902204, 0.13566965397100922, 0.12207390058516551, 0.13431377387187596, 0.1300220652446769, 0.14733743609315936, 0.09592975423456065, 0.1327919480312895, 0.13826872501522303, 0.13838009321973196, 0.1329903707486445, 0.14501954753368532, 0.13599538052590515, 0.14366783490174728, 0.13885218555350543, 0.1415888640696876, 0.04970893813382803, 0.20254851573484908, 0.8202256867662072, 0.53971675503999, 0.41197490971535444, 0.48323400039225817, 0.48209049857632635, 0.3135523075208145, 0.25853742105056615, 0.19345673782844824 ], "xaxis": "x", "y": [ 0.1306498358026147, 0.2552005301020799, 0.28076470721630264, 0.2746411843234637, 0.22261026078235893, 0.16961257464470256, 0.23198495432064256, 0.22674909294137421, 0.1818223914382159, 0.15625931568079454, 0.17329367117182073, 0.5537603888660669, 0.12327044542745802, 0.12129317186133434, 0.031850642915132045, 0.12923317726443795, 0.15929369934866147, 0.1895580979279669, 0.2088963861522143, 0.21337350642276565, 0.22028171323853676, 0.7847294453531504, 0.2395413126796484, 0.0635403199121356, 0.13265602104365826, 0.15104498116011145, 0.21843513819769445, 0.23696584492752143, 0.2504237011950966 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.40631841495633125, 0.10850354201021155, 0.06266618908905407, 0.13277755856902204, 0.13566965397100922, 0.12207390058516551, 0.13431377387187596, 0.1300220652446769, 0.14733743609315936, 0.09592975423456065, 0.1327919480312895, 0.13826872501522303, 0.13838009321973196, 0.1329903707486445, 0.14501954753368532, 0.13599538052590515, 0.14366783490174728, 0.13885218555350543, 0.1415888640696876, 0.04970893813382803, 0.20254851573484908, 0.8202256867662072, 0.53971675503999, 0.41197490971535444, 0.48323400039225817, 0.48209049857632635, 0.3135523075208145, 0.25853742105056615, 0.19345673782844824 ], "xaxis": "x2", "y": [ 0.1306498358026147, 0.2552005301020799, 0.28076470721630264, 0.2746411843234637, 0.22261026078235893, 0.16961257464470256, 0.23198495432064256, 0.22674909294137421, 0.1818223914382159, 0.15625931568079454, 0.17329367117182073, 0.5537603888660669, 0.12327044542745802, 0.12129317186133434, 0.031850642915132045, 0.12923317726443795, 0.15929369934866147, 0.1895580979279669, 0.2088963861522143, 0.21337350642276565, 0.22028171323853676, 0.7847294453531504, 0.2395413126796484, 0.0635403199121356, 0.13265602104365826, 0.15104498116011145, 0.21843513819769445, 0.23696584492752143, 0.2504237011950966 ], "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 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "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": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='hartmann6'))" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/build/facebook/Ax/ax/modelbridge/torch.py:311: UserWarning:\n", "\n", "To copy construct from a tensor, it is recommended to use sourceTensor.clone().detach() or sourceTensor.clone().detach().requires_grad_(True), rather than torch.tensor(sourceTensor).\n", "\n" ] }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ 1.0612690203194755, 1.060807023561869, 1.0606852565617304, 1.0609138869825074, 1.0615016520169236, 1.0624556082409855, 1.0637808866410277, 1.0654804689810298, 1.0675550050714242, 1.0700026910658431, 1.0728192252645639, 1.0759978502379184, 1.0795294803233897, 1.0834029042455804, 1.087605045671404, 1.0921212607661694, 1.0969356512182424, 1.1020313731995324, 1.1073909265090556, 1.1129964128096204, 1.118829756601049, 1.124872886771931, 1.131107879886837, 1.1375170686802785, 1.1440831205996413, 1.1507890918220225, 1.157618462158147, 1.1645551558410778, 1.1715835525423324, 1.178688492192243, 1.185855276399729, 1.1930696685322753, 1.2003178938684926, 1.2075866406917393, 1.214863062759765, 1.2221347832564138, 1.2293899000968438, 1.2366169923032952, 1.2438051270792718, 1.2509438671711497, 1.2580232781049572, 1.265033934910907, 1.2719669279899626, 1.2788138678285605, 1.2855668883231712, 1.2922186485331841, 1.2987623327345694, 1.3051916486970725, 1.3115008241529305, 1.3176846014648698 ], [ 1.0607938615925576, 1.0603575641815692, 1.060268273481116, 1.060536703591473, 1.061172082206499, 1.0621818731994481, 1.0635715032569157, 1.0653441110121864, 1.067500341150256, 1.0700382069101557, 1.0729530405554906, 1.0762375426363537, 1.0798819292450406, 1.0838741650515022, 1.0882002612826005, 1.092844613270835, 1.097790351788722, 1.103019685314769, 1.1085142154470367, 1.1142552136313646, 1.1202238531503481, 1.1264013952155898, 1.1327693316726934, 1.139309489219918, 1.1460041013019104, 1.1528358542119974, 1.1597879136774203, 1.166843937546142, 1.1739880793277768, 1.1812049864042562, 1.1884797958126834, 1.1957981296735347, 1.2031460916247252, 1.210510265038196, 1.2178777133414975, 1.2252359824300956, 1.2325731049241007, 1.2398776058767085, 1.24713850946422, 1.2543453461621605, 1.2614881599241634, 1.268557514918496, 1.2755445014306628, 1.2824407406028917, 1.2892383877463869, 1.2959301340266127, 1.3025092063824155, 1.3089693655955115, 1.3153049024762888, 1.321510632175136 ], [ 1.0606369700602558, 1.0602295351183046, 1.0601757357515833, 1.0604868579159046, 1.061172645460448, 1.0622409917245448, 1.063697633825986, 1.0655458710320325, 1.067786333211612, 1.0704168265629594, 1.0734322795753906, 1.076824802117476, 1.0805838567112158, 1.0846965271406535, 1.0891478590132981, 1.0939212416188484, 1.098998800496552, 1.104361774355883, 1.1099908566766798, 1.1158664897564132, 1.1219691058695453, 1.1282793157709181, 1.1347780487112453, 1.1414466504964056, 1.1482669471773976, 1.1552212820431609, 1.1622925330331373, 1.169464116761669, 1.176719984259271, 1.1840446124270996, 1.1914229941629129, 1.198840629201491, 1.2062835169448103, 1.2137381519426993, 1.221191522216209, 1.2286311102782246, 1.2360448964798294, 1.2434213641762273, 1.2507495061423013, 1.258018831657416, 1.265219373705711, 1.272341695789902, 1.2793768979223923, 1.2863166214305854, 1.2931530522876977, 1.299878922752307, 1.3064875111670853, 1.3129726398279504, 1.319328670888769, 1.3255505003129813 ], [ 1.060811813559344, 1.0604366924372304, 1.0604216376035172, 1.060778528596172, 1.061517648817063, 1.0626473419695361, 1.06417366925064, 1.0661000925965736, 1.0684272145472702, 1.0711526064759571, 1.0742707518225199, 1.0777731190137956, 1.0816483622053321, 1.085882631285427, 1.0904599601671625, 1.095362696682631, 1.1005719383598978, 1.1060679442938743, 1.1118305018859989, 1.1178392362835872, 1.1240738583656318, 1.1305143532788906, 1.1371411156154192, 1.1439350395405936, 1.1508775729325313, 1.1579507443261015, 1.1651371705636417, 1.1724200518461974, 1.179783159569713, 1.187210821059028, 1.1946879041612295, 1.2021998036712593, 1.2097324307513624, 1.2172722058697807, 1.2248060553090614, 1.23232141096046, 1.2398062129050251, 1.2472489141611407, 1.254638486929588, 1.2619644296725592, 1.2692167744044216, 1.2763860936372333, 1.2834635065021418, 1.2904406836513753, 1.297309850628905, 1.3040637894774452, 1.3106958384230265, 1.3171998895442194, 1.3235703843911253, 1.3298023075688337 ], [ 1.0613320629743945, 1.0609930711555224, 1.0610203213303757, 1.061426300080489, 1.0622218469496862, 1.0634157715861055, 1.0650144687055028, 1.0670215612950809, 1.0694376086891497, 1.0722599169705143, 1.0754824822909153, 1.0790960828612846, 1.083088515456583, 1.087444952731901, 1.0921483837303536, 1.0971800943737557, 1.102520147094475, 1.1081478267291056, 1.1140420304009724, 1.1201815898097556, 1.126545523407984, 1.1331132225666878, 1.1398645799353824, 1.1467800701549036, 1.1538407934433856, 1.1610284919031968, 1.168325547147458, 1.175714966351131, 1.183180362310465, 1.1907059316754514, 1.1982764342718384, 1.2058771753820876, 1.2134939920118695, 1.2211132435198757, 1.2287218065141057, 1.2363070735916515, 1.243856955296362, 1.2513598845624725, 1.25880482288039, 1.2661812674407318, 1.273479258569392, 1.2806893868444444, 1.2878027993756946, 1.294811204821231, 1.3017068768075413, 1.3084826555066966, 1.3151319472035885, 1.3216487217572659, 1.3280275079223829, 1.3342633865495663 ], [ 1.0622114565538463, 1.061912860745252, 1.0619863664194895, 1.0624450664172647, 1.0633003596062158, 1.0645615254053447, 1.0662352919542524, 1.068325434714561, 1.0708324499352895, 1.0737533475156236, 1.0770815980003634, 1.0808072494040473, 1.0849172056411829, 1.0893956361564903, 1.0942244716498557, 1.0993839360466096, 1.1048530690996896, 1.1106102042078996, 1.1166333787081886, 1.1229006661502479, 1.129390430040686, 1.136081505487078, 1.1429533191562533, 1.1499859595455446, 1.157160209471708, 1.1644575515738549, 1.171860156015445, 1.179350857803233, 1.1869131294272297, 1.1945310529799114, 1.2021892945872226, 1.2098730828931152, 1.2175681924770179, 1.2252609324305779, 1.2329381398504433, 1.2405871776892392, 1.2481959362181136, 1.2557528372639226, 1.2632468403671488, 1.2706674500420942, 1.278004723390823, 1.2852492774130801, 1.2923922954551035, 1.2994255323436397, 1.3063413178517274, 1.313132558236682, 1.3197927356763266, 1.3263159055051457, 1.3326966912180658, 1.3389302772656155 ], [ 1.063463552506705, 1.0632101539665637, 1.0633343374756863, 1.0638497806165887, 1.0647684236235808, 1.0660999997276628, 1.0678515539364744, 1.070026994344555, 1.0726267296667782, 1.0756474457546665, 1.079082059957516, 1.0829198677192344, 1.0871468674200113, 1.0917462251143277, 1.0966988261747408, 1.1019838576190315, 1.1075793713140847, 1.1134627907231303, 1.1196113385144675, 1.126002376022439, 1.1326136562992155, 1.1394234996210602, 1.1464109040636297, 1.153555604900375, 1.1608380959893498, 1.1682396247623503, 1.1757421704702973, 1.1833284133207003, 1.190981700262673, 1.1986860115255427, 1.206425930632858, 1.2141866194937958, 1.2219537993021559, 1.2297137373217364, 1.2374532391765676, 1.2451596459623109, 1.2528208353207975, 1.260425225544114, 1.2679617817720963, 1.2754200233961002, 1.2827900318643342, 1.29006245818592, 1.2972285295418235, 1.3042800545226814, 1.3112094266216585, 1.3180096257110459, 1.3246742173221966, 1.331197349629074, 1.337573748105437, 1.3437987078847562 ], [ 1.065101355554881, 1.0648985481044446, 1.065078362221742, 1.065655012434019, 1.0666409342473866, 1.0680462713807912, 1.0698783460089212, 1.0721411636775429, 1.0748350163622151, 1.0779562449777933, 1.0814972039878106, 1.0854464402585935, 1.0897890654424662, 1.0945072751769533, 1.0995809544258435, 1.104988306928928, 1.1107064553809805, 1.1167119736023692, 1.122981328438495, 1.1294912240695945, 1.136218852796745, 1.1431420635674243, 1.150239462946627, 1.1574904638940664, 1.1648752966186005, 1.172374993802188, 1.1799713602050992, 1.1876469344259768, 1.1953849485713972, 1.2031692898599418, 1.2109844667600873, 1.2188155811246304, 1.2266483069102885, 1.2344688754260995, 1.242264066604165, 1.2500212054969186, 1.2577281630440609, 1.2653733600894501, 1.272945773638778, 1.2804349444090173, 1.287830984814111, 1.2951245866431842, 1.302307027807094, 1.3093701776493154, 1.3163065004321777, 1.3231090567161488, 1.3297715024463206, 1.3362880856453598, 1.3426536406857112, 1.3488635801761242 ], [ 1.0671368278157798, 1.0669906078384237, 1.0672315468429485, 1.067874319204763, 1.0689317774992477, 1.070414400850616, 1.0723297219190244, 1.0746817910833153, 1.07747075012933, 1.08069258432808, 1.0843390986113723, 1.088398127493779, 1.092853951613336, 1.0976878665442644, 1.102878836388698, 1.1084041650493934, 1.1142401287468964, 1.1203625299282212, 1.126747150833081, 1.1333701010682269, 1.140208065465272, 1.147238465707325, 1.1544395523184656, 1.1617904437857878, 1.1692711280204002, 1.1768624389966966, 1.1845460188462618, 1.192304273260094, 1.2001203259226072, 1.2079779759114653, 1.2158616605439725, 1.2237564250060449, 1.2316478992280822, 1.2395222818348302, 1.2473663305567726, 1.2551673582120562, 1.262913233217914, 1.2705923835386892, 1.2781938029973618, 1.2857070589479178, 1.2931223004075603, 1.3004302658680764, 1.3076222901328967, 1.3146903096534104, 1.3216268659596977, 1.3284251068931856, 1.3350787854504895, 1.3415822561369344, 1.3479304688059506, 1.3541189600255392 ], [ 1.0695803233203547, 1.069497235747676, 1.069805281654484, 1.0705194895334218, 1.0716530195480056, 1.073216580368743, 1.0752178226155449, 1.0776607727309098, 1.0805453859899163, 1.0838672928116033, 1.0876177860520375, 1.0917840569555224, 1.096349647868879, 1.1012950616288595, 1.1065984548049903, 1.1122363435347435, 1.1181842628528071, 1.124417338601704, 1.1309107505683231, 1.1376400825964135, 1.144581567836804, 1.1517122445148327, 1.1590100404034975, 1.166453803943947, 1.1740232979812595, 1.181699169385945, 1.1894629050349566, 1.1972967820540183, 1.2051838180067977, 1.2131077248831805, 1.221052869267663, 1.229004239920687, 1.2369474231380424, 1.244868585623509, 1.2527544641787347, 1.2605923612438472, 1.2683701451804574, 1.2760762541439135, 1.283699702419004, 1.2912300881701488, 1.298657601665768, 1.30597303316312, 1.3131677797734544, 1.3202338507605162, 1.3271638708527262, 1.3339510812670765, 1.3405893382493004, 1.3470731090288186, 1.3533974651679068, 1.359558073353082 ], [ 1.0724400082766001, 1.0724270258298254, 1.0728085271194712, 1.0735997650036269, 1.0748140724662147, 1.0764622578654781, 1.0785519778858719, 1.0810871549594747, 1.0840675207958612, 1.0874883623047622, 1.091340518248438, 1.0956106333433568, 1.100281635662877, 1.1053333742056846, 1.11074334049752, 1.1164873999176332, 1.1225404713933629, 1.1288771134207585, 1.1354719950812235, 1.1423002487093172, 1.149337713732439, 1.1565610884774211, 1.1639480093434833, 1.1714770761804691, 1.1791278404261214, 1.1868807696065446, 1.1947171988285967, 1.2026192772077013, 1.210569914893364, 1.2185527344895228, 1.2265520291823035, 1.234552728737835, 1.2425403736675693, 1.2505010972332926, 1.258421614537552, 1.266289217679415, 1.2740917758174037, 1.2818177389408756, 1.2894561441819883, 1.2969966235814363, 1.304429412334239, 1.3117453566728154, 1.3189359206834652, 1.3259931914903076, 1.3329098823732362, 1.3396793335091315, 1.3462955101367757, 1.352752998043869, 1.3590469963596643, 1.36517330770799 ], [ 1.0757213366243872, 1.0757856844954663, 1.076247181174168, 1.0771211579086044, 1.0784209703305991, 1.0801573835429235, 1.0823379391561034, 1.0849663713964501, 1.0880421531670856, 1.091560247160848, 1.0955111096466559, 1.0998809537329675, 1.1046522383471102, 1.1098043196890794, 1.1153141880379367, 1.121157213977179, 1.1273078410239559, 1.1337401814678225, 1.1404284936765472, 1.14734753777357, 1.15447281986734, 1.161780742425985, 1.1692486809364735, 1.1768550062687997, 1.1845790697018477, 1.1924011644619172, 1.2003024745337632, 1.2082650187417572, 1.216271595772111, 1.2243057339173622, 1.2323516478289986, 1.240394203410187, 1.2484188911147451, 1.256411807293527, 1.2643596428032455, 1.2722496778268948, 1.2800697817166873, 1.2878084166297996, 1.2954546437585381, 1.302998131038825, 1.3104291613357257, 1.3177386402388447, 1.3249181027424695, 1.3319597182276204, 1.338856293299773, 1.3456012721635875, 1.3521887343312526, 1.3586133895634684, 1.364870570030644, 1.37095621975663 ], [ 1.0794266398372974, 1.0795755886974614, 1.0801236088760522, 1.081085957274539, 1.08247585803539, 1.0843038891542462, 1.086577357750608, 1.0892997290964643, 1.092470186354932, 1.0960833921402282, 1.1001294975366336, 1.1045944061368087, 1.1094602618323446, 1.1147060996323872, 1.1203085837711908, 1.1262427572546676, 1.1324827390914833, 1.1390023250451122, 1.1457754693702609, 1.1527766439777245, 1.1599810850661942, 1.1673649448944527, 1.1749053690265698, 1.1825805186933358, 1.190369555427349, 1.1982526019807516, 1.2062106903985366, 1.2142257053207541, 1.2222803282336638, 1.2303579864822667, 1.2384428093507374, 1.246519592355687, 1.2545737700262913, 1.2625913968154543, 1.2705591353548227, 1.2784642509960382, 1.2862946114373441, 1.2940386901902263, 1.3016855726688366, 1.3092249637656626, 1.3166471958911408, 1.3239432365899466, 1.3311046949909655, 1.338123826492932, 1.344993535228574, 1.3517073739811518, 1.3582595413471423, 1.364644876045296, 1.3708588483641622, 1.376897548818552 ], [ 1.0835548667042405, 1.0837955200700502, 1.0844363757138442, 1.085492466097432, 1.0869767363827172, 1.0888994433866583, 1.0912675512885233, 1.094084185333647, 1.0973482143481472, 1.1010540272471976, 1.1051915461380184, 1.1097464844763456, 1.1147008227418156, 1.1200334453687315, 1.1257208667139524, 1.1317379721449763, 1.138058710974259, 1.144656696570678, 1.151505690114139, 1.1585799633413136, 1.1658545493782608, 1.173305398659362, 1.1809094598677234, 1.1886447053643034, 1.1964901182338616, 1.2044256550084032, 1.2124321950268397, 1.2204914845980843, 1.2285860817763892, 1.2366993056405986, 1.244815192452392, 1.2529184598965786, 1.2609944797251027, 1.2690292584861798, 1.2770094255786084, 1.2849222275906187, 1.2927555277304332, 1.3004978091028176, 1.308138180608035, 1.3156663843150123, 1.3230728032724044, 1.3303484688551672, 1.3374850668890044, 1.3444749419423552, 1.3513110993191189, 1.3579872044201948, 1.3644975792656986, 1.3708371960799135, 1.3770016679368704, 1.3829872365455445 ], [ 1.0881014826119728, 1.0884405807847695, 1.089180184975979, 1.0903349637250395, 1.0919174505234723, 1.0939374642673632, 1.096401534836275, 1.0993123900313102, 1.1026685673880865, 1.1064642090865169, 1.1106890787466506, 1.1153288091538096, 1.1203653574939922, 1.1257776174458332, 1.1315421211132919, 1.1376337605715579, 1.1440264676015939, 1.1506938071514343, 1.1576094600348972, 1.164747588670835, 1.172083093328119, 1.179591774495984, 1.1872504203278256, 1.1950368380285301, 1.2029298460237445, 1.21090924088769, 1.2189557500248327, 1.227050978367714, 1.2351773550179788, 1.2433180838424265, 1.2514571005117585, 1.259579037285346, 1.267669195949535, 1.275713528661824, 1.283698625996294, 1.2916117111907333, 1.2994406394299116, 1.307173900934939, 1.314800626640625, 1.3223105953110024, 1.3296942410496686, 1.3369426602928756, 1.3440476175170992, 1.35100154904138, 1.35779756445016, 1.3644294453007217, 1.3708916409065668, 1.3771792611020026, 1.3832880659926756, 1.389214452780955 ], [ 1.093058516741969, 1.0935022720081553, 1.094345991093035, 1.095603855516243, 1.097287874321081, 1.0994073331239314, 1.1019682560766342, 1.104972931429822, 1.1084195566149495, 1.112302053821355, 1.1166100905700027, 1.1213293143559062, 1.1264417818206345, 1.1319265378474133, 1.1377602838735565, 1.1439180703177312, 1.1503739548563747, 1.1571015831431326, 1.164074666809294, 1.17126735080773, 1.1786544754528798, 1.1862117468183861, 1.1939158329227344, 1.2017444035604918, 1.2096761300452674, 1.2176906585901148, 1.2257685682756665, 1.2338913219398415, 1.2420412160435532, 1.2502013336719753, 1.2583555033058698, 1.266488264802761, 1.2745848431151832, 1.2826311295998074, 1.2906136702951536, 1.298519660231875, 1.306336942656501, 1.314054011969428, 1.3216600191774053, 1.3291447787184472, 1.3364987756166875, 1.3437131720511994, 1.3507798125644082, 1.3576912272845574, 1.3644406326831882, 1.3710219295301538, 1.3774296978388851, 1.3836591887122234, 1.3897063131020668, 1.3955676275829538 ], [ 1.0984147328234364, 1.0989687027928805, 1.0999212481933327, 1.1012859602488665, 1.103074232987759, 1.105294745886949, 1.1079529660980891, 1.111050715330029, 1.11458584997705, 1.1185520984458124, 1.1229390857114698, 1.1277325536322662, 1.1329147608096943, 1.1384650233400873, 1.144360342592444, 1.1505760610059275, 1.1570864918650372, 1.1638654815467107, 1.1708868788623175, 1.1781249018804245, 1.1855544052378262, 1.1931510592543868, 1.2008914563414752, 1.2087531611771332, 1.2167147200564188, 1.2247556426998911, 1.23285636731205, 1.2409982172404068, 1.2491633554016108, 1.2573347407895332, 1.2654960898676162, 1.273631844447229, 1.281727146726593, 1.289767821471211, 1.2977403648196821, 1.3056319388630566, 1.3134303709427002, 1.321124156513436, 1.3287024644022492, 1.3361551433387544, 1.3434727287231978, 1.3506464487186314, 1.3576682288919681, 1.3645306947761646, 1.371227171873704, 1.3777516827647327, 1.3840989411167242, 1.3902643425134809, 1.3962439521270307, 1.402034489346108 ], [ 1.10415589370363, 1.1048248935857146, 1.1058902519678453, 1.1073648876846374, 1.1092595115262243, 1.1115821455579233, 1.114337667348263, 1.1175274187875008, 1.1211489213257575, 1.125195735072923, 1.129657487390128, 1.1345200785265872, 1.1397660507816274, 1.1453750880710785, 1.1513245989062806, 1.1575903303471704, 1.164146963823919, 1.1709686539404354, 1.1780294852066204, 1.1853038356828638, 1.192766648214038, 1.200393618046197, 1.2081613100988433, 1.2160472206850472, 1.2240297979688963, 1.2320884337984357, 1.2402034374093056, 1.2483559992827653, 1.2565281513939288, 1.264702728306282, 1.2728633320858642, 1.2809943028119781, 1.2890806955242289, 1.2971082637337465, 1.3050634491072972, 1.312933376574628, 1.320705853883756, 1.3283693745102976, 1.3359131227932823, 1.3433269802008443, 1.3506015317084967, 1.35772807138529, 1.3646986064173627, 1.3715058589435412, 1.3781432652261398, 1.384604971824913, 1.3908858285782442, 1.3969813783197271, 1.402887843366896, 1.408602108911627 ], [ 1.1102650895723944, 1.111053140306007, 1.112234537433106, 1.1138214662253039, 1.1158239070316895, 1.118249192731382, 1.121101595068069, 1.1243819745257886, 1.1280875294963841, 1.1322116763188752, 1.1367440816851155, 1.1416708537537745, 1.1469748805774467, 1.1526362876735874, 1.1586329742914536, 1.1649411825325096, 1.1715360554977818, 1.1783921487105942, 1.1854838706138513, 1.1927858401284523, 1.2002731598357348, 1.207921611079605, 1.215707781926179, 1.2236091408969414, 1.2316040694330899, 1.2396718648931628, 1.2477927241324904, 1.2559477157754189, 1.2641187474189501, 1.272288532328644, 1.2804405587558088, 1.2885590638271323, 1.296629013018297, 1.3046360854979766, 1.3125666650890009, 1.3204078362126535, 1.3281473839334335, 1.335773797081674, 1.343276273378598, 1.3506447255038083, 1.3578697871122432, 1.3649428179115304, 1.3718559070393794, 1.3786018741234847, 1.385174267554301, 1.3915673596473694, 1.3977761385104392, 1.403796296557186, 1.4096242157209153, 1.4152569495163867 ], [ 1.1167231022357877, 1.1176334093189944, 1.1189333015413485, 1.120634188964959, 1.1227452931300603, 1.1252732427991585, 1.1282217013097688, 1.1315910556040951, 1.1353781973019905, 1.1395764222254898, 1.14417546612896, 1.1491616817084525, 1.1545183471716653, 1.1602260825239892, 1.1662633391094366, 1.1726069228549276, 1.1792325126862693, 1.1861151417916465, 1.1932296188302174, 1.2005508765308504, 1.208054244477856, 1.2157156500690405, 1.223511756278546, 1.2314200471798262, 1.2394188727083133, 1.2474874634692505, 1.25560592504675, 1.2637552196358783, 1.271917141154954, 1.2800742884483716, 1.288210039832088, 1.2963085310907492, 1.3043546381054911, 1.3123339645589593, 1.3202328346091725, 1.3280382900220535, 1.3357380909819248, 1.3433207196376882, 1.3507753853701023, 1.3580920307647686, 1.3652613373290918, 1.3722747300863019, 1.3791243803020932, 1.3858032057392633, 1.3923048679830186, 1.3986237665268697, 1.4047550294497388, 1.410694500644024, 1.4164387236682447, 1.4219849223945125 ], [ 1.1235087821817995, 1.124543739236982, 1.125963826374503, 1.1277796542385112, 1.1299996734164948, 1.1326298076391803, 1.1356731202257704, 1.1391295396999375, 1.1429956702221618, 1.1472647087559111, 1.151926483441043, 1.15696761705373, 1.1623718071806395, 1.1681202029821143, 1.174191849402814, 1.1805641650510073, 1.1872134202790774, 1.1941151866541686, 1.2012447365420431, 1.2085773801434831, 1.2160887354254435, 1.223754932918369, 1.2315527618573772, 1.2394597666815157, 1.2474543038229573, 1.25551556847901, 1.2636236001045322, 1.271759274042692, 1.279904285277485, 1.288041128898654, 1.2961530806075416, 1.304224179501367, 1.3122392144653898, 1.3201837147730902, 1.328043944929189, 1.335806903372198, 1.3434603243623973, 1.3509926821993394, 1.358393196821568, 1.3656518398239001, 1.3727593399680145, 1.3797071873474014, 1.3864876354835654, 1.3930937007672448, 1.3995191588044957, 1.4057585373760353, 1.4118071058604815, 1.4176608611037416, 1.4233165098328031, 1.428771447810079 ], [ 1.130599420440424, 1.1317606315646067, 1.133301885372902, 1.1352329838845552, 1.137561608076625, 1.1402929869763152, 1.143429600716621, 1.1469709397796035, 1.150913341970499, 1.1552499251915556, 1.159970627684391, 1.1650623585741975, 1.1705092514527782, 1.176293004043852, 1.1823932794358734, 1.1887881402507197, 1.1954544869545352, 1.2023684749327066, 1.2095058908768725, 1.2168424760896668, 1.2243541912098435, 1.232017422667944, 1.2398091354296246, 1.2477069792067526, 1.2556893565240714, 1.2637354611590008, 1.2718252948785247, 1.2799396693863547, 1.2880601991981875, 1.296169289941596, 1.3042501254285424, 1.3122866558262107, 1.3202635883798786, 1.3281663814248752, 1.3359812418574357, 1.3436951258042165, 1.351295741923487, 1.358771556570473, 1.3661117999505998, 1.3733064723508415, 1.3803463495673876, 1.38722298672313, 1.3939287197786845, 1.4004566641737102, 1.4068007101811797, 1.4129555147061965, 1.418916489405454, 1.4246797851369482, 1.430242272867432, 1.4356015212640967 ], [ 1.1379711025877317, 1.1392594180641686, 1.1409221212341218, 1.1429682087586468, 1.1454046041687076, 1.1482358607851277, 1.1514638985682333, 1.1550877938468898, 1.1591036399344963, 1.1635044934423961, 1.1682804156105735, 1.173418610621046, 1.1789036545685623, 1.1847178008153816, 1.1908413411782668, 1.197252998809, 1.2039303281733602, 1.2108500999868799, 1.217988653563432, 1.225322204735749, 1.2328271032888356, 1.240480038919127, 1.248258198635903, 1.2561393811212551, 1.2641020749595322, 1.2721255080680782, 1.280189675382077, 1.2882753511229823, 1.2963640910211762, 1.3044382288212168, 1.3124808703764326, 1.3204758876995677, 1.3284079145130803, 1.336262344149261, 1.3440253300893987, 1.3516837889958861, 1.3592254057722366, 1.3666386399706862, 1.3739127327423737, 1.3810377134773684, 1.388004405298085, 1.3948044286358265, 1.4014302022249487, 1.4078749409793698, 1.4141326503615772, 1.4201981170043712, 1.426066895491978, 1.4317352913428456, 1.4372003403558, 1.4424597845808405 ], [ 1.1455990370026585, 1.1470145977564914, 1.1487983893011569, 1.1509586162367338, 1.1535014651725075, 1.1564308390950675, 1.1597481250367563, 1.16345201112421, 1.1675383679931481, 1.1720002066502095, 1.1768277201674837, 1.182008410484983, 1.1875272948042128, 1.1933671795626124, 1.1995089847954505, 1.2059320986068716, 1.2126147408525505, 1.219534316860331, 1.226667745542992, 1.2339917508145348, 1.2414831100077792, 1.2491188573504861, 1.256876444070066, 1.2647338591870856, 1.2726697165465892, 1.2806633142698394, 1.2886946727884414, 1.2967445571548968, 1.3047944885872071, 1.312826749341647, 1.320824384119059, 1.3287712003628906, 1.3366517690428286, 1.3444514268582983, 1.3521562802490201, 1.3597532111663326, 1.3672298842329955, 1.3745747546927025, 1.3817770764130721, 1.3888269091459544, 1.3957151242546524, 1.402433408176508, 1.4089742629892146, 1.415331003577492, 1.4214977510423037, 1.4274694221465665, 1.4332417147398597, 1.43881108924239, 1.4441747463891634, 1.4493306015352223 ], [ 1.1534578532750073, 1.1550001403663397, 1.1569040641743327, 1.1591770583187273, 1.1618245991879923, 1.1648499692115044, 1.168254052349072, 1.1720351753841252, 1.1761890074463004, 1.1807085275788702, 1.1855840661658845, 1.1908034209649998, 1.1963520429345469, 1.20221328174921, 1.2083686766348944, 1.2147982755253208, 1.2214809648500913, 1.2283947934466788, 1.2355172767704932, 1.2428256711867645, 1.2502972120486897, 1.2579093129644998, 1.2656397267599162, 1.2734666709629414, 1.281368922144284, 1.2893258842193296, 1.2973176359984764, 1.3053249630199284, 1.3133293781640811, 1.3213131348547462, 1.3292592358972195, 1.3371514402541567, 1.3449742693626763, 1.3527130139779668, 1.3603537420037535, 1.3678833073442966, 1.3752893594853193, 1.3825603532776283, 1.3896855582502698, 1.396655066710604, 1.403459799885926, 1.4100915114143318, 1.4165427875890666, 1.422807043887843, 1.4288785174655234, 1.434752255442342, 1.4404240989711672, 1.4458906632072355, 1.4511493134256601, 1.4561981376318256 ], [ 1.1615218694047746, 1.163189755742516, 1.1652123099372773, 1.1675962215043474, 1.1703462876181263, 1.173465202698194, 1.1769533788003763, 1.1808088082517598, 1.1850269788017427, 1.1896008492399048, 1.1945208900343418, 1.1997751893436568, 1.2053496202108707, 1.2112280604335015, 1.2173926531034758, 1.2238240935858122, 1.2305019279976601, 1.2374048490371996, 1.2445109770344112, 1.2517981169347892, 1.2592439851115689, 1.2668264030045784, 1.2745234572853292, 1.282313628361853, 1.2901758905018514, 1.2980897877019297, 1.306035489757401, 1.3139938329091916, 1.321946349082747, 1.3298752871959723, 1.3377636293856408, 1.345595104352069, 1.3533541993951235, 1.3610261721443848, 1.368597062489515, 1.3760537048051145, 1.3833837402408644, 1.3905756286113542, 1.397618659267267, 1.4045029602532866, 1.4112195050493974, 1.4177601162415692, 1.4241174655622673, 1.4302850698696052, 1.4362572827826434, 1.4420292818474199, 1.4475970512630378, 1.4529573603391643, 1.4581077379796026, 1.4630464435856787 ], [ 1.1697653282451512, 1.1715571304978833, 1.1736963159845455, 1.176188861083156, 1.1790389175145584, 1.182248625694464, 1.1858179572559397, 1.18974459634578, 1.194023868167471, 1.1986487211977146, 1.2036097666261727, 1.2088953750903346, 1.2144918270589742, 1.2203835097014184, 1.2265531502072822, 1.2329820736460266, 1.2396504727704276, 1.2465376776724797, 1.253622414715064, 1.260883046383324, 1.2682977862688176, 1.2758448859789442, 1.2835027930859368, 1.2912502811198838, 1.2990665539929822, 1.3069313281173698, 1.3148248959023066, 1.3227281743729338, 1.3306227424359283, 1.3384908699159164, 1.3463155409781113, 1.3540804739980434, 1.3617701393856616, 1.369369776351409, 1.3768654091383687, 1.3842438628516769, 1.3914927787009552, 1.3986006282371213, 1.4055567260093111, 1.4123512399879385, 1.418975199087866, 1.4254204971730944, 1.43167989301918, 1.4377470058403794, 1.4436163061403353, 1.449283101807121, 1.4547435195313874, 1.4599944817717652, 1.4650336796157617, 1.4698595419826421 ], [ 1.1781626047277791, 1.1800761340678816, 1.1823295012488393, 1.1849280031507663, 1.187875181304798, 1.1911726565692018, 1.194819991207803, 1.1988145864158624, 1.2031516222716572, 1.2078240453017632, 1.212822606417328, 1.2181359490990356, 1.2237507446639846, 1.2296518685784892, 1.2358226094225806, 1.2422449005354859, 1.2488995637291351, 1.2557665547608923, 1.262825201383739, 1.2700544265216536, 1.2774329511794362, 1.284939473825137, 1.292552824957646, 1.3002520972372404, 1.3080167528306639, 1.3158267104849821, 1.3236624153241394, 1.3315048945159211, 1.3393358018555708, 1.3471374540273242, 1.3548928609025641, 1.3625857517680877, 1.370200598895128, 1.377722639392283, 1.3851378958579328, 1.3924331959774439, 1.399596190907097, 1.406615372057374, 1.413480085733961, 1.4201805450138394, 1.4267078382215745, 1.4330539334185934, 1.4392116784156865, 1.4451747959533812, 1.4509378738523315, 1.456496350102641, 1.4618464930242023, 1.4669853767784846, 1.471910852637512, 1.47662151651282 ], [ 1.1866883859758823, 1.1887209968110888, 1.1910856899082072, 1.1937871178095412, 1.1968282476455845, 1.200210214841326, 1.2039322023948038, 1.2079913524573895, 1.2123827159587477, 1.2170992444619457, 1.222131826384192, 1.2274693673336048, 1.2330989118167677, 1.2390058012263971, 1.245173861080724, 1.251585609162252, 1.2582224756157219, 1.2650650262293306, 1.2720931809568117, 1.2792864210799455, 1.2866239800586485, 1.2940850148623522, 1.301648756241105, 1.3092946378434043, 1.317002405239225, 1.3247522067296251, 1.3325246683276502, 1.3403009555144378, 1.3480628243616959, 1.3557926644219283, 1.363473535477071, 1.3710891998516925, 1.378624151580492, 1.3860636433037772, 1.3933937113741992, 1.4006011993123204, 1.4076737794606426, 1.4145999724645453, 1.4213691640581068, 1.42797161855409, 1.4343984884266852, 1.4406418194262742, 1.4466945507674525, 1.4525505100716076, 1.4582044029097043, 1.463651796964183, 1.4688891009977134, 1.473913538968441, 1.4787231197579755, 1.4833166030740017 ], [ 1.1953178266323927, 1.1974664628653335, 1.1999392616140887, 1.2027402668534346, 1.2058719068852743, 1.2093348649544637, 1.2131279736002891, 1.2172481383679905, 1.221690295605706, 1.2264474077239678, 1.2315104975679088, 1.2368687215754757, 1.2425094793456821, 1.2484185553199953, 1.254580286684992, 1.260977750493507, 1.2675929624713969, 1.274407080046122, 1.2814006027453857, 1.28855356415246, 1.2958457109172694, 1.3032566657484272, 1.3107660727052202, 1.3183537243555152, 1.325999671390664, 1.3336843160536822, 1.341388491239381, 1.3490935273839924, 1.356781309312825, 1.3644343251010953, 1.3720357087686574, 1.3795692783159765, 1.387019570252849, 1.3943718714039468, 1.4016122484217153, 1.4087275751173325, 1.415705557449495, 1.4225347558002923, 1.429204604023308, 1.4357054246748102, 1.4420284398322833, 1.448165776960466, 1.4541104693931437, 1.4598564511467937, 1.4653985459546173, 1.470732450590626, 1.4758547127283776, 1.4807627037353641, 1.485454586931587, 1.489929281935071 ], [ 1.2040266817389667, 1.206287920368094, 1.208865279068777, 1.21176222892754, 1.2149806942285888, 1.2185209380432123, 1.2223814697537607, 1.2265589792114315, 1.2310483014177853, 1.2358424144569076, 1.2409324719513455, 1.2463078696746885, 1.2519563442676993, 1.2578641004281699, 1.2640159616290785, 1.2703955384874928, 1.2769854084340888, 1.283767300338699, 1.290722278193187, 1.2978309187542947, 1.305073479092295, 1.3124300511508626, 1.319880701584303, 1.327405596202212, 1.3349851092526444, 1.3425999184727075, 1.3502310873190213, 1.3578601360681084, 1.3654691035717663, 1.3730406013967438, 1.3805578619061671, 1.3880047815871188, 1.3953659606268642, 1.402626739417421, 1.4097732323499312, 1.4167923589661453, 1.423671872281888, 1.430400383898576, 1.4369673853834382, 1.443363265330972, 1.449579321517858, 1.4556077676261732, 1.461441734126086, 1.4670752630661847, 1.47250329670141, 1.477721660078583, 1.482727037881489, 1.487516945998249, 1.492089698402876, 1.4964443700350931 ], [ 1.2127914193897766, 1.2151615114464502, 1.2178395954930998, 1.2208286047918784, 1.224129993276395, 1.2277436343655974, 1.2316677399765197, 1.2358988036632073, 1.2404315710868286, 1.2452590400222885, 1.2503724908823735, 1.255761547378426, 1.2614142655459943, 1.2673172480668473, 1.2734557797311017, 1.2798139791006262, 1.2863749610171957, 1.2931210045631225, 1.3000337214040867, 1.3070942200608675, 1.314283262483804, 1.3215814102444294, 1.3289691586200947, 1.3364270577492285, 1.3439358208180465, 1.3514764198658005, 1.3590301702487835, 1.366578805083614, 1.3741045411130004, 1.3815901374230368, 1.3890189483190056, 1.3963749714635185, 1.403642892125295, 1.4108081241045642, 1.417856847615089, 1.4247760441340547, 1.4315535279966638, 1.4381779743268657, 1.4446389427698116, 1.450926896431338, 1.4570332154373984, 1.4629502045970477, 1.4686710947788697, 1.474190037777506, 1.479502094639924, 1.4846032176199198, 1.4894902261195615, 1.4941607771413374, 1.4986133309055893, 1.502847112378057 ], [ 1.2215893152133521, 1.2240642241413002, 1.2268389442219765, 1.229915904963113, 1.2332961222172618, 1.236979108652906, 1.240962802774556, 1.2452435197761693, 1.2498159268728097, 1.2546730448972696, 1.2598062769179341, 1.265205463500795, 1.2708589630896734, 1.2767537549084351, 1.2828755608882463, 1.2892089824648427, 1.2957376477239024, 1.3024443643118606, 1.30931127375873, 1.3163200033335987, 1.32345181220836, 1.3306877294660213, 1.3380086822833104, 1.3453956133769085, 1.3528295874774532, 1.360291887149877, 1.3677640986942443, 1.375228189133228, 1.382666575428886, 1.3900621870866463, 1.397398523219538, 1.404659704983342, 1.4118305240770936, 1.4188964877558712, 1.4258438605468688, 1.4326597026140915, 1.4393319045009338, 1.4458492178078979, 1.4522012812473422, 1.4583786414661044, 1.464372768042976, 1.4701760621484852, 1.4757818584908582, 1.481184420350429, 1.486378927708299, 1.4913614586844415, 1.4961289646981095, 1.5006792399335778, 1.505010885826316, 1.5091232713731866 ], [ 1.2303985305449776, 1.2329739681882785, 1.2358410123794374, 1.23900162168692, 1.2424564046008288, 1.2462045402662738, 1.2502437162143247, 1.2545700858404585, 1.259178247817231, 1.2640612488928178, 1.2692106106588816, 1.2746163799271093, 1.2802672014018328, 1.2861504104512655, 1.2922521430315945, 1.2985574592646325, 1.305050476848642, 1.3117145104069343, 1.3185322130397115, 1.3254857167075982, 1.3325567685932302, 1.3397268612013598, 1.3469773546102228, 1.354289589923739, 1.3616449935508372, 1.369025172423533, 1.3764120006398233, 1.3837876982735626, 1.3911349032336062, 1.3984367370884958, 1.4056768657155734, 1.4128395555029103, 1.4199097256486357, 1.4268729968850011, 1.433715736724654, 1.4404251011028593, 1.446989072090375, 1.4533964911933146, 1.4596370876519489, 1.4657015011089454, 1.4715812980433398, 1.477268981457043, 1.4827579934480468, 1.4880427104944338, 1.4931184314880577, 1.4979813587762738, 1.5026285726754032, 1.507058000094701, 1.5112683780429796, 1.515259212876641 ], [ 1.2391981759634638, 1.2418696363535997, 1.2448245003311549, 1.2480642869183434, 1.2515892263336574, 1.2553981897526754, 1.2594886346203726, 1.263856567820811, 1.268496528516754, 1.2734015918421988, 1.2785633938993828, 1.2839721777235957, 1.2896168590886947, 1.2954851102926352, 1.3015634594392358, 1.3078374022660555, 1.3142915232881047, 1.3209096229456871, 1.3276748475542768, 1.3345698191323454, 1.3415767625910586, 1.3486776282650823, 1.3558542082984868, 1.3630882459306142, 1.3703615372169875, 1.3776560251404564, 1.3849538864005633, 1.3922376114038741, 1.3994900781149764, 1.4066946204718984, 1.4138350920314298, 1.4208959254040707, 1.427862187880311, 1.4347196334586234, 1.4414547512782927, 1.4480548102564106, 1.4545078995453922, 1.4608029642823794, 1.4669298360084855, 1.472879257104554, 1.4786428986255873, 1.484213371016875, 1.489584227353144, 1.4947499589432036, 1.4997059833683803, 1.5044486252519085, 1.5089750902694523, 1.5132834330900864, 1.517372520072238, 1.5212419876232044 ], [ 1.2479683616918311, 1.2507311528247744, 1.253769168396749, 1.2570835177596786, 1.2606740803038001, 1.2645394431577013, 1.2686768531011223, 1.2730821846283658, 1.2777499256684108, 1.2826731819301582, 1.2878437002236154, 1.2932519104488363, 1.2988869852868197, 1.3047369160163158, 1.310788602360784, 1.3170279538760523, 1.3234400001455082, 1.3300090069663213, 1.3367185957828875, 1.3435518638348247, 1.3504915028087405, 1.3575199141810061, 1.364619319876267, 1.3717718673072294, 1.3789597282748702, 1.386165191569443, 1.393370749403509, 1.4005591780200266, 1.40771361294648, 1.4148176194140079, 1.4218552584348467, 1.4288111489436437, 1.435670526271115, 1.4424192970483443, 1.4490440904527448, 1.4555323055205147, 1.4618721540826884, 1.468052698749621, 1.4740638852864774, 1.4798965687009447, 1.4855425324096692, 1.490994499960944, 1.49624613895964, 1.5012920570523742, 1.5061277900662047, 1.5107497826323852, 1.515155361845732, 1.5193427046935866, 1.5233108001244244, 1.5270594067087577 ], [ 1.2566902362054804, 1.2595395099860902, 1.2626558721239285, 1.2660400506200928, 1.2696915998543523, 1.2736088452685208, 1.2777888410306844, 1.2822273423123738, 1.2869187934345878, 1.2918563326788928, 1.2970318140382828, 1.3024358456302538, 1.30805784394614, 1.3138861026019746, 1.3199078738214365, 1.326109460548526, 1.332476316876063, 1.3389931543940317, 1.3456440521072834, 1.3524125677321066, 1.3592818484339082, 1.3662347393881173, 1.373253888902757, 1.3803218492061087, 1.38742117234972, 1.3945345009845669, 1.4016446540202254, 1.4087347073634187, 1.4157880700489502, 1.422788556122577, 1.429720452617612, 1.4365685838917026, 1.4433183724700085, 1.4499558963878934, 1.4564679428564336, 1.4628420579035442, 1.4690665914901233, 1.4751307374804579, 1.4810245677747984, 1.486739059900563, 1.4922661174132394, 1.4975985825785258, 1.502730240985134, 1.5076558179586503, 1.5123709668912824, 1.516872249847229, 1.5211571110282762, 1.5252238438709056, 1.5290715526826701, 1.5327001098070234 ], [ 1.2653460142557849, 1.2682767947648208, 1.271466587278795, 1.2749157652130108, 1.2786235821800163, 1.2825881228192202, 1.2868062654788885, 1.2912736581287791, 1.2959847085547223, 1.3009325894932526, 1.306109258923728, 1.311505495271617, 1.3171109468181987, 1.3229141941866924, 1.3289028244103767, 1.335063514806323, 1.3413821246945503, 1.347843792924089, 1.3544330391929063, 1.3611338672690971, 1.3679298684186176, 1.374804323601404, 1.3817403032868558, 1.3887207640408454, 1.3957286413253482, 1.4027469382116626, 1.4097588099238407, 1.416747644290762, 1.4236971382880168, 1.4305913708933589, 1.4374148724647373, 1.4441526907839526, 1.4507904538010283, 1.4573144289758573, 1.4637115789585344, 1.469969613194006, 1.4760770348959404, 1.4820231827268862, 1.4877982664606682, 1.493393395901228, 1.4988006023955762, 1.504012852407211, 1.509024052802327, 1.5138290477296859, 1.5184236072258464, 1.5228044079282317, 1.5269690065072565, 1.530915806617433, 1.534644020304653, 1.538153624886578 ], [ 1.2739189953996046, 1.2769262056133182, 1.2801844255854289, 1.2836936993881158, 1.287453002606205, 1.2914601985814822, 1.2957120054796039, 1.3002039753470487, 1.3049304860417819, 1.3098847465852916, 1.3150588161101084, 1.3204436361876684, 1.3260290759364057, 1.3318039889543831, 1.3377562808139603, 1.3438729856169744, 1.3501403499494142, 1.356543922500671, 1.3630686476239933, 1.3696989612039119, 1.3764188873516476, 1.383212134653562, 1.3900621909327184, 1.3969524157299391, 1.4038661299507058, 1.4107867023417084, 1.4176976326431652, 1.4245826314011352, 1.4314256965118868, 1.438211186606913, 1.4449238913726123, 1.451549098838953, 1.4580726595726548, 1.464481047584292, 1.4707614176162334, 1.4769016583356347, 1.4828904408286223, 1.488717261695066, 1.4943724799927498, 1.4998473472870393, 1.505134030133498, 1.5102256244568544, 1.5151161614819153, 1.5198006051057709, 1.5242748408561662, 1.528535656834917, 1.53258071727629, 1.5364085295402323, 1.5400184054972765, 1.5434104183410553 ], [ 1.2823935740238672, 1.2854720610908006, 1.2887936421483777, 1.2923580556994123, 1.2961640206198901, 1.3002091971798078, 1.3044901579497468, 1.3090023695854371, 1.313740186236642, 1.3186968550390326, 1.3238645338316366, 1.3292343209137538, 1.334796296332549, 1.3405395738933668, 1.346452362826739, 1.3525220378425546, 1.3587352161634265, 1.365077840060792, 1.3715352634182458, 1.3780923409125123, 1.3847335185224476, 1.391442924239322, 1.3982044580407773, 1.4050018803920783, 1.411818898735623, 1.4186392516103379, 1.4254467901946455, 1.4322255571824087, 1.4389598629744067, 1.4456343591964447, 1.452234109539667, 1.4587446578620542, 1.4651520933991253, 1.4714431128154382, 1.4776050786976649, 1.4836260739593037, 1.489494951510788, 1.4952013784631868, 1.500735874093078, 1.5060898408118004, 1.5112555874610192, 1.5162263443980142, 1.5209962700303854, 1.5255604486970085, 1.5299148800492173, 1.5340564603414335, 1.5379829562718865, 1.541692972203882, 1.5451859117343947, 1.5484619346553237 ], [ 1.29075524176707, 1.293899800922362, 1.2972796354090412, 1.3008942005329596, 1.304741978449405, 1.3088204434044468, 1.3131260360118302, 1.3176541474118382, 1.3223991139458726, 1.3273542227339306, 1.3325117282741252, 1.3378628799058652, 1.3433979597066505, 1.3491063301406152, 1.3549764905588733, 1.3609961414784428, 1.3671522554462352, 1.373431153231336, 1.3798185840828014, 1.386299808837266, 1.3928596847535755, 1.3994827510801426, 1.4061533145126475, 1.4128555338627466, 1.4195735034198265, 1.4262913346358468, 1.4329932358890807, 1.4396635901768535, 1.4462870306466806, 1.452848513895305, 1.4593333909468706, 1.4657274757669572, 1.472017111084185, 1.4781892311829459, 1.4842314212107013, 1.4901319724235391, 1.4958799326891317, 1.5014651514910708, 1.506878318647816, 1.5121109959829189, 1.517155641268102, 1.5220056239060962, 1.5266552320189128, 1.5310996708445375, 1.535335052601854, 1.5393583782373617, 1.5431675116970838, 1.546761147555504, 1.5501387729685698, 1.5533006249957269 ], [ 1.2989905831631894, 1.3021959803395262, 1.3056289404175303, 1.3092886565533888, 1.3131733929315315, 1.3172804537424794, 1.3216061604260911, 1.3261458379055007, 1.3308938103525545, 1.3358434068146994, 1.3409869768053027, 1.3463159157247209, 1.3518206997501974, 1.35749092962017, 1.3633153825538729, 1.3692820713991785, 1.3753783099969952, 1.3815907836925045, 1.3879056239124148, 1.3943084857603898, 1.4007846276535352, 1.407318992123579, 1.4138962870278493, 1.4205010665458084, 1.4271178114676555, 1.4337310084017973, 1.4403252276293816, 1.4468851994101168, 1.4533958885887923, 1.4598425673639828, 1.4662108860587502, 1.4724869416797355, 1.4786573439704969, 1.4847092785646392, 1.4906305667335737, 1.4964097211148166, 1.5020359967130423, 1.5074994364016883, 1.512790910131185, 1.517902147080628, 1.5228257600796484, 1.527555261774919, 1.5320850722146107, 1.5364105177595118, 1.540527821483129, 1.544434085473174, 1.5481272656731013, 1.5516061400879733, 1.5548702713126916, 1.5579199644179569 ], [ 1.3070872652663623, 1.310348258442713, 1.313829216142085, 1.3175290891739588, 1.3214459413553643, 1.3255769218039797, 1.329918244800319, 1.3344651778430685, 1.339212038361958, 1.344152199371925, 1.3492781041582826, 1.3545812898836282, 1.3600524198136368, 1.3656813236787309, 1.3714570455321942, 1.3773678983383895, 1.3834015244336644, 1.3895449609494732, 1.3957847092727331, 1.402106807640202, 1.4084969060167345, 1.4149403424858118, 1.4214222204761762, 1.427927486252832, 1.434441006205007, 1.440947643559742, 1.447432334230477, 1.4538801615687804, 1.4602764298201938, 1.4666067360892088, 1.4728570405931072, 1.4790137349315036, 1.4850637080219082, 1.4909944092581522, 1.496793908346924, 1.5024509511789303, 1.5079550110083297, 1.5132963341597896, 1.5184659794694733, 1.5234558507037852, 1.5282587212931302, 1.5328682508668345, 1.5372789932718853, 1.5414863959896545, 1.5454867911126615, 1.549277378287494, 1.5528562002510462, 1.5562221117687218, 1.5593747429148148, 1.5623144577122592 ], [ 1.3150340219553043, 1.3183453812698518, 1.321869227486183, 1.3256042877077303, 1.3295484419301515, 1.333698698283294, 1.3380511752132904, 1.3426010911442885, 1.3473427620211644, 1.3522696069796125, 1.3573741622246251, 1.362648103029468, 1.3680822736030178, 1.3736667244207612, 1.3793907564813515, 1.3852429718417998, 1.391211329704925, 1.3972832072839756, 1.4034454646528347, 1.4096845128030466, 1.415986384168015, 1.4223368049347491, 1.428721268537897, 1.4351251098129663, 1.4415335793674748, 1.4479319178044752, 1.4543054294949098, 1.4606395556393257, 1.4669199463806242, 1.4731325317264954, 1.4792635910111438, 1.485299820573551, 1.491228399256508, 1.4970370512437114, 1.5027141056591788, 1.5082485522645852, 1.5136300925175694, 1.518849185209627, 1.5238970858973084, 1.528765879383799, 1.5334485046040722, 1.537938771414853, 1.5422313689835012, 1.546321865695071, 1.5502067007368678, 1.5538831677561848, 1.5573493912006486, 1.560604296127235, 1.563647572394503, 1.5664796342292178 ], [ 1.3228206335626886, 1.326177160205408, 1.3297388226375657, 1.3335041418156977, 1.3374708294872626, 1.3416357660626481, 1.3459949848596717, 1.3505436631893057, 1.3552761206318404, 1.3601858247195866, 1.365265404101074, 1.3705066691180412, 1.3759006395867617, 1.3814375794458662, 1.3871070378185493, 1.3928978959435725, 1.3987984193598442, 1.404796314684737, 1.410878790308597, 1.4170326203334849, 1.4232442111123593, 1.4294996697895284, 1.4357848743003485, 1.442085544351303, 1.4483873129649065, 1.4546757982316219, 1.4609366749571209, 1.4671557459241855, 1.4733190124996323, 1.4794127443068148, 1.4854235476523996, 1.491338432343861, 1.4971448764647395, 1.5028308885940622, 1.5083850668714704, 1.5137966542308272, 1.5190555890623798, 1.5241525505285067, 1.5290789977609478, 1.5338272022154118, 1.5383902725573748, 1.5427621715986792, 1.5469377249920377, 1.550912621607599, 1.5546834057463135, 1.5582474615715087, 1.5616029903456905, 1.5647489812296396, 1.5676851765263753, 1.5704120323283115 ], [ 1.3304379024263766, 1.333834446318813, 1.3374289063316176, 1.3412196138299959, 1.3452041269925012, 1.3493792110355018, 1.353740824298091, 1.358284110596882, 1.3630033981565457, 1.367892205307607, 1.3729432530222803, 1.3781484842366678, 1.383499089788633, 1.3889855406902205, 1.3945976263556632, 1.400324498325436, 1.406154718965146, 1.412076314577911, 1.4180768323493802, 1.4241434005456377, 1.4302627914025576, 1.436421486177738, 1.4426057418787523, 1.4488016592289397, 1.4549952514792714, 1.4611725137175327, 1.4673194923585986, 1.4734223545188418, 1.479467456980418, 1.4854414144353258, 1.491331166664832, 1.4971240442581504, 1.5028078324084504, 1.5083708322496243, 1.5138019191206937, 1.5190905970751047, 1.524227048899167, 1.5292021808776795, 1.5340076615544818, 1.5386359537877516, 1.5430803394982622, 1.5473349366512419, 1.5513947081932367, 1.5552554628728443, 1.5589138480939648, 1.5623673351658738, 1.565614197510588, 1.5686534825510399, 1.5714849781250824, 1.5741091743453839 ], [ 1.3378776249149553, 1.3413091011797977, 1.3449314095735039, 1.3487427074955916, 1.352740413413808, 1.3569211891991215, 1.3612809278594142, 1.3658147470314046, 1.3705169885005273, 1.3753812239202805, 1.3804002667989033, 1.385566190716763, 1.3908703536360947, 1.396303428070353, 1.401855436796258, 1.407515793721801, 1.4132733494689953, 1.419116441193259, 1.4250329461415185, 1.4310103384477002, 1.437035748675257, 1.4430960256388912, 1.4491778000680386, 1.4552675497090704, 1.4613516654972978, 1.4674165184594443, 1.4734485270282605, 1.4794342244605727, 1.4853603260450652, 1.49121379576561, 1.4969819120497432, 1.5026523321808956, 1.5082131548911126, 1.5136529805821601, 1.5189609685544458, 1.5241268905622483, 1.5291411799702752, 1.5339949757680031, 1.5386801607144904, 1.5431893929414155, 1.5475161304398772, 1.551654647994811, 1.5556000463034383, 1.559348253211317, 1.562896017207249, 1.56624089352223, 1.569381223363429, 1.5723161069695062, 1.5750453712906993, 1.5775695331712052 ], [ 1.3451325604392952, 1.3485939646600622, 1.352239256327945, 1.356066433641116, 1.3600727884594355, 1.3642548905388454, 1.3686085767480378, 1.3731289455847364, 1.377810357231334, 1.382646439304638, 1.387630098365772, 1.3927535371667081, 1.398008277522793, 1.4033851886194453, 1.4088745204889734, 1.4144659423321473, 1.4201485853112292, 1.4259110894069684, 1.431741653912041, 1.437628091126684, 1.4435578828270916, 1.4495182390913883, 1.4554961590883266, 1.4614784934574387, 1.4674520079321454, 1.4734034478760463, 1.4793196034139597, 1.4851873748405626, 1.4909938379782275, 1.4967263091315317, 1.5023724092480795, 1.5079201268460465, 1.5133578792103257, 1.5186745712967293, 1.5238596517225218, 1.5289031651694338, 1.5337958004900192, 1.5385289337974515, 1.5430946658400584, 1.5474858530194049, 1.55169613150712, 1.5557199340486048, 1.5595524992058518, 1.5631898729772709, 1.5666289029276288, 1.5698672251527825, 1.5729032445786433, 1.5757361092412308, 1.5783656793067415, 1.5807924916633558 ], [ 1.3521963979238323, 1.355682820194942, 1.3593463276522504, 1.3631847732586766, 1.3671953346731907, 1.3713745002000064, 1.3757180593443206, 1.3802210982563847, 1.3848780002781165, 1.3896824517334585, 1.394627453027074, 1.3997053350392052, 1.4049077807295838, 1.410225851793533, 1.415650020150505, 1.421170203991964, 1.4267758080725028, 1.4324557678965903, 1.4381985974331475, 1.4439924399808093, 1.4498251218065166, 1.4556842081874461, 1.461557061498534, 1.4674309010020816, 1.4732928640094367, 1.4791300680944675, 1.4849296740416218, 1.4906789492058343, 1.4963653309453138, 1.5019764897612269, 1.5075003917397063, 1.5129253598442314, 1.5182401335518816, 1.5234339262703038, 1.5284964799184884, 1.5334181160103706, 1.5381897825526503, 1.5428030960643517, 1.5472503780510092, 1.5515246853256273, 1.5556198336624076, 1.559530414396579, 1.563251803738423, 1.5667801647435367, 1.5701124420638206, 1.573246349782468, 1.5761803527998808, 1.5789136423764927, 1.5814461065452374, 1.5837782961777553 ], [ 1.359063720176092, 1.36257035794528, 1.366247423716558, 1.3700926384426175, 1.3741030773451597, 1.3782751574170231, 1.3826046291917602, 1.3870865730320556, 1.3917154001298637, 1.3964848583477516, 1.4013880429652468, 1.4064174123274733, 1.4115648083291095, 1.416821481606071, 1.422178121252836, 1.4276248888361696, 1.4331514564375452, 1.4387470484271736, 1.444400486652447, 1.45010023871205, 1.4558344689827916, 1.4615910920679074, 1.4673578283410265, 1.4731222612666417, 1.478871896183687, 1.48459422024107, 1.4902767631703357, 1.4959071585695476, 1.5014732053525126, 1.5069629289880018, 1.5123646421156123, 1.517667004079048, 1.5228590788675405, 1.5279303909050888, 1.5328709780804264, 1.5376714413739956, 1.5423229904177753, 1.5468174843255504, 1.5511474671604846, 1.5553061974664453, 1.5592876713807626, 1.5630866389669813, 1.566698613551428, 1.570119874009596, 1.5733474601178785, 1.5763791612522873, 1.5792134988683577, 1.5818497033267258, 1.5842876857305057, 1.586528005509728 ] ], "zauto": true, "zmax": 1.586528005509728, "zmin": -1.586528005509728 }, { "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.02178744236147069, 0.020376150705081517, 0.019116023363812063, 0.018017690767659564, 0.01709305425240609, 0.01635469966340883, 0.015814773699826173, 0.015483402443280855, 0.015366986280780336, 0.015466905017526435, 0.01577912775764913, 0.0162948898372228, 0.017002160237511048, 0.017887362927035976, 0.018936857836508524, 0.02013792210611289, 0.021479213420239555, 0.022950837906534727, 0.02454418145723825, 0.026251638717352095, 0.028066329729361742, 0.029981853423303034, 0.03199209772631371, 0.0340911080714067, 0.036273006795723664, 0.03853195235424839, 0.040862127048257965, 0.04325774341645447, 0.04571306150998335, 0.04822241136993809, 0.05078021684934587, 0.05338101836282364, 0.05601949320582286, 0.05869047281368387, 0.061388956799231016, 0.06411012388556203, 0.06684933999836114, 0.069602163844656, 0.0723643503170318, 0.07513185204628055, 0.07790081939617227, 0.08066759916040955, 0.08342873218860682, 0.08618095013748725, 0.08892117151689137, 0.09164649717663387, 0.09435420536043525, 0.09704174643577806, 0.09970673739354693, 0.10234695619808337 ], [ 0.020473382861038142, 0.01910498891437899, 0.01788841370143151, 0.016832748187093363, 0.015948225807015135, 0.015245731231045176, 0.014735802047569753, 0.014427197233629445, 0.014325349846999645, 0.014431206151595096, 0.014740905654484309, 0.015246434717604401, 0.015936977807968645, 0.01680046310031699, 0.01782485586718597, 0.0189989797078696, 0.02031286708722595, 0.021757763451358596, 0.023325935491875668, 0.025010406395162794, 0.026804697392355567, 0.028702616232505404, 0.030698106020637234, 0.032785151810948335, 0.03495773464189181, 0.03720982038886952, 0.039535371532850444, 0.04192837206274351, 0.044382858230724576, 0.046892950205018546, 0.049452881566778836, 0.05205702501669081, 0.0546999136337994, 0.05737625764802213, 0.060080957040722326, 0.06280911045832027, 0.0655560209772348, 0.06831719924463224, 0.07108836447031669, 0.0738654436828466, 0.07664456959930391, 0.07942207739972715, 0.08219450064666264, 0.08495856654791818, 0.0877111907260571, 0.09044947162990127, 0.09317068470044168, 0.09587227638476095, 0.09855185807584117, 0.10120720004301792 ], [ 0.019248055763038598, 0.017923798230094788, 0.016752160155014167, 0.015740610201759528, 0.014897617961523986, 0.014232271701760602, 0.013753422816511554, 0.013468422590394913, 0.01338174656586009, 0.013493969803544916, 0.013801502629239237, 0.01429719313446041, 0.014971532177591252, 0.015814002561302443, 0.01681417870514049, 0.017962393901403726, 0.019249990363691197, 0.020669272808862188, 0.022213304867887387, 0.02387565881883591, 0.025650187466412597, 0.02753085076997907, 0.029511604867282906, 0.03158634692712474, 0.03374890305838162, 0.035993045391725216, 0.038312526084385304, 0.04070111875241294, 0.04315266072000646, 0.04566109198158906, 0.04822048870752072, 0.05082509048151282, 0.05346932132313388, 0.05614780503717342, 0.05885537565730993, 0.06158708380779651, 0.06433819976568982, 0.06710421391622087, 0.06988083518727252, 0.07266398794386458, 0.07544980772918465, 0.0782346361591571, 0.08101501521252352, 0.08378768110693549, 0.08654955791120499, 0.08929775101240141, 0.09202954053203975, 0.09474237476621163, 0.09743386370900985, 0.10010177270598511 ], [ 0.018105377223126766, 0.01682468174773176, 0.015697488188908315, 0.014729618365095355, 0.013927768676447693, 0.013299253573825366, 0.01285130345549527, 0.012589967491553054, 0.012518891150856967, 0.012638396220142505, 0.012945238410775856, 0.01343313525885432, 0.014093819995343407, 0.014918207427278025, 0.01589732337162916, 0.017022842539415446, 0.018287257523845496, 0.019683793960232586, 0.021206200687382337, 0.022848515051962424, 0.024604863615621895, 0.02646932420030209, 0.028435851897908752, 0.03049825889892324, 0.03265023308358162, 0.03488538032552989, 0.03719727797663464, 0.03957953037478361, 0.04202582046860538, 0.044529954318613146, 0.047085897181336045, 0.04968780116166634, 0.052330025160927586, 0.05500714820148735, 0.057713977306052974, 0.0604455510553177, 0.06319713981610535, 0.06596424347196463, 0.06874258732922545, 0.07152811672849806, 0.07431699077093036, 0.07710557547108525, 0.07989043657176492, 0.08266833219755704, 0.08543620547931044, 0.0881911772484003, 0.0909305388743375, 0.0936517453000771, 0.09635240831439518, 0.09903029008899154 ], [ 0.017041620340529858, 0.015802231931829742, 0.014717270643264179, 0.01379095072245924, 0.013028273985267496, 0.012434916823474475, 0.012016684510138053, 0.011778557640271114, 0.011723573809003542, 0.011851950845919043, 0.012160817136535522, 0.012644649492894818, 0.01329619843664613, 0.014107517871448816, 0.015070775785655842, 0.016178703463878247, 0.01742470744207985, 0.018802755116199263, 0.02030715715340802, 0.02193234139133074, 0.023672673483309977, 0.02552234560186906, 0.027475331707979094, 0.029525395901979196, 0.031666136452780935, 0.03389104913036165, 0.03619359686408191, 0.03856727676313007, 0.04100567917508482, 0.04350253629916515, 0.046051759841201856, 0.04864746840794277, 0.05128400596800594, 0.05395595293621952, 0.056658131418244384, 0.059385605997788235, 0.06213368123594271, 0.06489789683018579, 0.06767402117531099, 0.07045804389299656, 0.07324616775340774, 0.07603480029971504, 0.07882054540040771, 0.0816001948899137, 0.08437072041033594, 0.0871292655323302, 0.08987313820737308, 0.09259980358483037, 0.09530687721288947, 0.09799211863161267 ], [ 0.016056288737813795, 0.014854515820598487, 0.013808137368366755, 0.012919870426591039, 0.012193188720356813, 0.011632368021750421, 0.011242089784860358, 0.01102658983308499, 0.010988570418851373, 0.011128284033361767, 0.011443181479453137, 0.011928258771102854, 0.012576905019135661, 0.013381873194213448, 0.01433604512057256, 0.015432842162444184, 0.016666303748608613, 0.018030946197056374, 0.019521527746611228, 0.02113281618664651, 0.02285941395641517, 0.024695659735980452, 0.026635601731123337, 0.028673025829646537, 0.030801518542400447, 0.03301454661238078, 0.03530553948159553, 0.037667965521947094, 0.04009539702639693, 0.0425815620261678, 0.04512038303762343, 0.04770600402148108, 0.050332807384571104, 0.05299542298421172, 0.055688730978830495, 0.05840786012894297, 0.06114818287113371, 0.06390530821207667, 0.0666750732450359, 0.06945353388699994, 0.07223695527166121, 0.07502180210768251, 0.07780472921712266, 0.08058257239916564, 0.08335233971369513, 0.0861112032428516, 0.08885649136235158, 0.09158568153565867, 0.09429639363013746, 0.09698638374415357 ], [ 0.015153008902879298, 0.013984071446464744, 0.012971575162670548, 0.012116928402299167, 0.011422329869023523, 0.010890978531938711, 0.010526805508073462, 0.010333665277199594, 0.01031418688647014, 0.010468728124248722, 0.010794896062565238, 0.011287827442511073, 0.01194104040255293, 0.012747445853598749, 0.013700148564159607, 0.014792866991856512, 0.01601999376774435, 0.017376421233856, 0.018857271559643698, 0.0204576373545363, 0.022172391685994202, 0.02399608615556536, 0.025922929370597533, 0.027946825370349693, 0.03006144868938677, 0.032260335615916624, 0.034536976477220725, 0.03688489929227628, 0.0392977397608383, 0.04176929593523045, 0.044293568093388934, 0.04686478553323584, 0.049477422517198145, 0.052126205659614726, 0.05480611486155574, 0.05751237959153052, 0.06024047197289741, 0.06298609781814848, 0.0657451864714421, 0.06851388009090406, 0.0712885228213192, 0.07406565016918157, 0.07684197878887795, 0.07961439681354171, 0.08237995480970417, 0.08513585739630591, 0.08787945554133007, 0.09060823952973819, 0.09331983258273989, 0.09601198509835318 ], [ 0.014340461878457644, 0.01319896561448911, 0.012215100993672864, 0.011389235724881451, 0.010722625563919275, 0.010217780169733777, 0.009878283566701299, 0.009707950371897662, 0.00970951670668166, 0.009883385233826923, 0.010227003754740678, 0.01073514228484383, 0.01140085782314189, 0.012216652401210872, 0.013175380644223845, 0.014270708022406615, 0.015497152531871923, 0.016849860235516392, 0.018324278193248562, 0.01991584602793325, 0.021619771659256274, 0.023430910294634316, 0.025343736106146184, 0.027352382128108765, 0.029450721296554343, 0.03163246531831868, 0.033891264341259573, 0.03622079676403875, 0.038614843769789596, 0.04106734693027121, 0.0435724496036098, 0.04612452413335816, 0.048718187374649155, 0.05134830710823181, 0.054010001670182335, 0.05669863477136721, 0.05940980709897257, 0.06213934593458146, 0.06488329371422898, 0.06763789620257994, 0.07039959075479285, 0.07316499498768353, 0.07593089606934472, 0.07869424075412065, 0.0814521262307826, 0.0842017918100352, 0.08694061144782567, 0.089666087080332, 0.09237584273188486, 0.09506761934709344 ], [ 0.013633274194069941, 0.012513853320149764, 0.011553475124199053, 0.010751801353640844, 0.010109531240094673, 0.009628894426576795, 0.009313499404213768, 0.009167364593964835, 0.009193357553142061, 0.00939168723565403, 0.009759179830373652, 0.010289660151035945, 0.01097515035639637, 0.011807259017306618, 0.012778228993159122, 0.013881431686711309, 0.015111371319639896, 0.016463388787567618, 0.017933257869999768, 0.019516811332670112, 0.021209668715986583, 0.023007084941175766, 0.0249039060649108, 0.026894603587805994, 0.028973356327736094, 0.031134153439120935, 0.03337089938656506, 0.035677508885583596, 0.03804798570623734, 0.04047648342804401, 0.042957348872237476, 0.045485150359453684, 0.0480546935159141, 0.050661027395151416, 0.05329944343194873, 0.05596546936313495, 0.05865485983637578, 0.06136358504034618, 0.06408781835396767, 0.06682392373731305, 0.06956844336994743, 0.07231808587690144, 0.07506971535863845, 0.077820341351279, 0.08056710977783249, 0.08330729490500219, 0.08603829228723656, 0.08875761265688618, 0.09146287670324485, 0.09415181067265618 ], [ 0.01305258236527396, 0.011950726335201396, 0.011009617113712244, 0.010228574323656705, 0.00960812625883163, 0.009150577820594823, 0.008859810295859638, 0.008740102539642285, 0.0087942659244215, 0.009021907372447725, 0.00941870604600297, 0.009977029539622886, 0.010687456814838108, 0.011540422706706438, 0.012527385424547247, 0.013641324111480242, 0.014876680617487896, 0.016228977819773335, 0.017694332486653492, 0.01926901179505112, 0.02094910886196989, 0.022730355779404823, 0.024608057811585107, 0.02657711675425054, 0.02863210912554124, 0.030767389936861223, 0.03297720070194923, 0.03525576821977354, 0.03759738711602183, 0.03999648374596939, 0.042447661990581344, 0.04494573308220562, 0.04748573227276286, 0.0500629252483163, 0.05267280695590472, 0.05531109511880247, 0.0579737202851562, 0.060656813845439625, 0.06335669509620137, 0.06606985813233564, 0.06879295911529595, 0.07152280428400286, 0.07425633893933577, 0.07699063753280684, 0.07972289491702125, 0.08245041876331718, 0.08517062311465894, 0.08788102301584631, 0.0905792301450517, 0.09326294935869599 ], [ 0.012625722049949198, 0.011538691320476316, 0.010614446429313569, 0.009852289062147628, 0.009252868950693889, 0.008818755452337767, 0.008554115128945088, 0.008463281775084699, 0.00854861848771035, 0.00880866416026494, 0.009237552541592236, 0.009825952101405333, 0.010562911708150453, 0.01143769926839125, 0.012441022426330934, 0.013565490368752015, 0.014805483911495637, 0.0161566968263604, 0.017615578900439226, 0.0191788336930158, 0.020843047192910028, 0.022604465618419233, 0.02445890504223825, 0.026401759249754644, 0.028428069536302652, 0.030532625170464588, 0.03271007136647038, 0.034955009844100944, 0.037262083902512774, 0.03962604491799516, 0.04204180039992812, 0.044504445559090375, 0.0470092811637013, 0.04955182063607484, 0.05212778915034363, 0.05473311711849746, 0.057363930020067976, 0.060016536109840715, 0.06268741316455972, 0.06537319511644558, 0.0680706591697565, 0.07077671380060538, 0.07348838789080435, 0.0762028211350809, 0.07891725577891452, 0.08162902968459153, 0.08433557068038897, 0.08703439211763253, 0.0897230895395778, 0.09239933835242024 ], [ 0.012384338192904621, 0.011311881370280904, 0.010404541128328492, 0.009661793267191259, 0.009084497601698445, 0.008675400194575278, 0.00843865485476534, 0.008378192925630891, 0.008495458730865173, 0.00878761784385905, 0.009247219904747101, 0.009863427665188764, 0.010624058587329503, 0.011517489379677639, 0.012533857862625458, 0.013665477025792858, 0.014906657783788137, 0.01625320941046056, 0.01770184534967037, 0.01924964489900994, 0.020893647161308513, 0.022630597350560982, 0.024456830068852006, 0.026368257038436736, 0.02836042300412247, 0.03042859772632165, 0.032567879683346346, 0.03477329526761683, 0.0370398842632888, 0.039362767633071165, 0.04173719713699036, 0.04415858836291969, 0.04662253975260979, 0.049124840513473066, 0.05166147019515161, 0.05422859238238007, 0.056822544543449226, 0.05943982565555443, 0.06207708284775193, 0.06473109797635881, 0.06739877478155837, 0.07007712706274397, 0.07276326814709559, 0.075454401802071, 0.07814781465012233, 0.08084087007583726, 0.08353100356656261, 0.08621571939239714, 0.08889258850749247, 0.09155924753890508 ], [ 0.012360478002909703, 0.011304904412607498, 0.010416855686850843, 0.009695962837644406, 0.009143115941114593, 0.008760855419893568, 0.008552780011163713, 0.00852187446123209, 0.008668342638884528, 0.008988035691082127, 0.009472339434405296, 0.01010951659642247, 0.010886735821104084, 0.011791906913706457, 0.012814825808424043, 0.013947568653967018, 0.015184321261076975, 0.016520892875509563, 0.01795412747065329, 0.019481357718435895, 0.02109997963043089, 0.022807172862254935, 0.024599756581889412, 0.02647415239432638, 0.02842642025374392, 0.030452335912639305, 0.03254748508141639, 0.034707357091994344, 0.03692742771987755, 0.039203226161995355, 0.04153038487794087, 0.04390467329746483, 0.046322017614031374, 0.048778509357690965, 0.05127040544867076, 0.05379412218234667, 0.05634622522805033, 0.05892341732653412, 0.06152252499438083, 0.06414048521251874, 0.06677433279889178, 0.06942118894098949, 0.07207825118746931, 0.07474278506147082, 0.07741211735481915, 0.08008363108496433, 0.08275476203979244, 0.08542299679500111, 0.08808587206099878, 0.09074097519836564 ], [ 0.012581172014636759, 0.011546458812058987, 0.010681314614434717, 0.009985296029388493, 0.009458940358660644, 0.009104062593341069, 0.00892316242923752, 0.00891790952401478, 0.009087266457749276, 0.00942619126777683, 0.009925619969891141, 0.010573695030169276, 0.011357587757444053, 0.01226517095639111, 0.013286104483582148, 0.014412256089809297, 0.015637598124509176, 0.016957789815813973, 0.01836963656980124, 0.019870565043919354, 0.02145819517044803, 0.02313004162161466, 0.02488334271968937, 0.02671499489069385, 0.028621562917687752, 0.030599336681812625, 0.032644410053398375, 0.03475276420364316, 0.03692034399875779, 0.03914312138746168, 0.041417143521727685, 0.043738565855444424, 0.04610367190514094, 0.048508882025458014, 0.050950753712098576, 0.05342597580212055, 0.05593135864263884, 0.058463821941124976, 0.06102038165193799, 0.06359813692641518, 0.06619425787125062, 0.0688059746256101, 0.07143056807848741, 0.07406536239909665, 0.07670771943795235, 0.07935503496931873, 0.08200473668100867, 0.08465428377126838, 0.08730116798071001, 0.0899429158674326 ], [ 0.013063289866765396, 0.012053441479414966, 0.011214261111994911, 0.01054490869017143, 0.010045181727617517, 0.00971577841777337, 0.009557819603907955, 0.009571624268347786, 0.009755194966389595, 0.010103151668742687, 0.010606670577185812, 0.011254440271309266, 0.012034164974720148, 0.012934027961963319, 0.01394372268472915, 0.015054933580054535, 0.016261342904919467, 0.017558323083809644, 0.01894247893137125, 0.02041117008882301, 0.021962097878420055, 0.023592997507977657, 0.02530144330819053, 0.027084753537651465, 0.028939971092492873, 0.030863894403150908, 0.03285313572051744, 0.03490418918986799, 0.03701349670436821, 0.03917750445242755, 0.041392706880094395, 0.04365567743465448, 0.04596308709656163, 0.04831171257803976, 0.05069843639941246, 0.05312024104403754, 0.05557419918667917, 0.0580574616914362, 0.06056724474981097, 0.06310081721624089, 0.0656554889177382, 0.06822860047383732, 0.07081751496451344, 0.07341961162333001, 0.07603228160715149, 0.07865292579660685, 0.08127895450905451, 0.08390778895341343, 0.08653686422080847, 0.08916363358331084 ], [ 0.013810915866683319, 0.012828367099021654, 0.012016164226411412, 0.011372829731859465, 0.010897228267121532, 0.010588849715835454, 0.010447497927031722, 0.010472374879519514, 0.010660894651265913, 0.011007779118082291, 0.01150488549000948, 0.012141845222128024, 0.012907221722731486, 0.013789747800504872, 0.014779294360005071, 0.01586741422743482, 0.01704747283373881, 0.018314471387852235, 0.019664695154465166, 0.021095304801858446, 0.022603955483560496, 0.024188491873618455, 0.02584673652393808, 0.027576367307250497, 0.029374867549213583, 0.031239527969873438, 0.033167480251913614, 0.03515574556110295, 0.03720128585072425, 0.03930105013332555, 0.04145201151121567, 0.04365119343101432, 0.04589568541291339, 0.048182649558255235, 0.05050931964624223, 0.052872994765900114, 0.055271029333066886, 0.05770082111895632, 0.06015979863825281, 0.06264540895644385, 0.06515510670473539, 0.0676863448498604, 0.07023656756069675, 0.07280320534377145, 0.07538367248374359, 0.07797536671843061, 0.08057567099793501, 0.08318195711965207, 0.08579159099219616, 0.08840193925866358 ], [ 0.01481627744884442, 0.013861111971634574, 0.01307439433675951, 0.012453955794527525, 0.011997782788014886, 0.01170433361466024, 0.011572375551836224, 0.011600320604707132, 0.011785294541743763, 0.012122348154713882, 0.01260417929565082, 0.013221492941774058, 0.013963844177305269, 0.014820651808053713, 0.01578208536777549, 0.016839649552568486, 0.017986425845944995, 0.019217026290244656, 0.020527357431800227, 0.021914295286847834, 0.023375352170888427, 0.024908387957744416, 0.02651139130565955, 0.028182335492597424, 0.029919100169640698, 0.03171944383715049, 0.03358101042340717, 0.03550135506321529, 0.03747797739414069, 0.03950835425108083, 0.04158996685995431, 0.043720320193968945, 0.0458969539938085, 0.04811744613687013, 0.05037940970041071, 0.0526804853402272, 0.05501833062565734, 0.05739060783391638, 0.059794971485579225, 0.06222905664887704, 0.06469046878599484, 0.06717677567797366, 0.06968550175660769, 0.07221412499484463, 0.07476007636274049, 0.07732074174162945, 0.07989346610258807, 0.0824755596931036, 0.08506430593523112, 0.0876569707160292 ], [ 0.01606326649395522, 0.015133406613587277, 0.014368701923336677, 0.013766408765302765, 0.013323852701143701, 0.013038759234525169, 0.012909188980151592, 0.012933051152037026, 0.013107361551648792, 0.0134275504141304, 0.013887120061908764, 0.014477798271057243, 0.01519012381424179, 0.016014252913732697, 0.016940745858427572, 0.017961158890904317, 0.019068367626374795, 0.02025663499635936, 0.02152148766480985, 0.02285948103987584, 0.024267925340721135, 0.025744625741219954, 0.027287667649467377, 0.028895259255284307, 0.0305656299844991, 0.0322969756515135, 0.03408743790610079, 0.03593510559449954, 0.037838027520234505, 0.039794228716170346, 0.04180172500487659, 0.04385853292847054, 0.04596267390651987, 0.04811217271883117, 0.05030505117612714, 0.052539318236729894, 0.054812957953487985, 0.05712391658284939, 0.05947009002813817, 0.06184931257466845, 0.06425934764184452, 0.06669788104987295, 0.06916251709113225, 0.07165077751517776, 0.07416010338577705, 0.0766878596479634, 0.0792313421519171, 0.08178778681590558, 0.08435438056986735, 0.08692827370113326 ], [ 0.017531586159406833, 0.016623552589797478, 0.015876354794624622, 0.015286874537176962, 0.014852036915312764, 0.014569126626387763, 0.01443577346516565, 0.014449584521814997, 0.014607544720481773, 0.014905415745911442, 0.015337373606711098, 0.015896027342165216, 0.016572809488049157, 0.017358602376897955, 0.018244414711443713, 0.019221950073403375, 0.020283978106854034, 0.021424491074245135, 0.022638679669874026, 0.023922786305494617, 0.025273896442736983, 0.026689717612170993, 0.028168379543249255, 0.029708272910189404, 0.03130793156437065, 0.03296595474217068, 0.034680961306423834, 0.036451566687099424, 0.03827637377576515, 0.04015397066904999, 0.04208293015689906, 0.04406180776996308, 0.04608913680330373, 0.04816341993526744, 0.05028311786925467, 0.05244663589766015, 0.054652309496549145, 0.056898390080167276, 0.05918303194122934, 0.061504281227399094, 0.0638600675948641, 0.06624819896400715, 0.06866635959710567, 0.07111211153553093, 0.07358289927936609, 0.07607605746873622, 0.078588821232906, 0.08111833880921451, 0.0836616859961778, 0.08621588199046831 ], [ 0.019200028477483335, 0.018309777290849764, 0.017575403663297674, 0.01699361752685057, 0.01656116728385037, 0.01627512042779513, 0.0161328676278176, 0.016131834981369855, 0.016268996512899758, 0.016540361183292527, 0.01694062363891836, 0.017463105798310063, 0.01810000813809114, 0.018842887709916996, 0.019683225764428502, 0.020612951146102836, 0.02162482852028664, 0.022712675584953705, 0.023871419429509978, 0.02509702971271273, 0.02638637563059472, 0.027737049949478003, 0.029147192873292097, 0.030615336207234643, 0.03214027732846449, 0.03372098434430664, 0.03535652876753748, 0.03704603963199342, 0.03878867249346002, 0.04058358747680862, 0.04242993183272245, 0.044326823919657816, 0.046273336859746106, 0.048268481194698086, 0.0503111866459637, 0.05240028357759339, 0.05453448501405737, 0.0567123701339548, 0.058932370098365515, 0.06119275692663164, 0.06349163594153742, 0.06582694209874437, 0.06819644031322075, 0.0705977297120235, 0.07302825158672918, 0.07548530069442239, 0.07796603946457874, 0.08046751460943473, 0.08298667560492551, 0.08552039450430832 ], [ 0.02104841400929334, 0.020171969215585638, 0.019446117298481027, 0.01886755664387942, 0.018433016842403126, 0.0181394939302078, 0.017984256518116627, 0.01796461490257743, 0.018077524552375848, 0.018319156346906958, 0.018684580597507924, 0.01916767210593512, 0.019761267258085222, 0.02045752551952464, 0.021248397398203056, 0.022126091315557064, 0.023083455501058576, 0.02411423033066447, 0.025213164583597653, 0.02637601594655216, 0.027599469220809376, 0.02888100741115154, 0.030218765411084394, 0.031611387407376415, 0.03305790036569205, 0.034557608714004436, 0.0361100102562538, 0.03771473038289362, 0.03937147039615996, 0.041079965715257495, 0.042839950379445, 0.044651125232682616, 0.0465131281801314, 0.048425505789423944, 0.05038768618958018, 0.05239895367780389, 0.05445842569557405, 0.05656503291600375, 0.05871750313670107, 0.06091434953743735, 0.06315386367676006, 0.06543411339551021, 0.06775294559144801, 0.07010799364333238, 0.07249668910590794, 0.07491627717469494, 0.07736383533339576, 0.07983629454622458, 0.08233046233946022, 0.0848430471270489 ], [ 0.023058419768416445, 0.022192240736324184, 0.021471255400609558, 0.02089225640426216, 0.020452048860843675, 0.020147639542767545, 0.01997623859554193, 0.019935071777620418, 0.02002105937262314, 0.020230462485026125, 0.0205586098648862, 0.02099979265274748, 0.021547361020611524, 0.022193997570546437, 0.02293209941439737, 0.023754185631842964, 0.024653257587024236, 0.025623065845977528, 0.026658266903192823, 0.027754476740623656, 0.028908242611002607, 0.030116959646620638, 0.03137875740969952, 0.03269237629931388, 0.03405704731993899, 0.03547238276456679, 0.036938280722661816, 0.03845484322788945, 0.040022306171544175, 0.04164097850497223, 0.043311188375606983, 0.04503323436256589, 0.046807340648550674, 0.048633615614820595, 0.05051201387654666, 0.0524423021431305, 0.05442402948687607, 0.056456502652853985, 0.05853876697355505, 0.06066959329966583, 0.06284747115689311, 0.06507060811803159, 0.06733693516339757, 0.06964411760909058, 0.07198957102292261, 0.07437048142865844, 0.07678382902274981, 0.07922641459199922, 0.08169488782215176, 0.08418577672018267 ], [ 0.02521372292606315, 0.024354858865463045, 0.023635800243505867, 0.023053491382810154, 0.022604858434737137, 0.022286957092371676, 0.02209696884582632, 0.0220320478446876, 0.02208906284805425, 0.022264310980384595, 0.022553289820673433, 0.022950597434299617, 0.02344999258687753, 0.0240446036767713, 0.024727240068214817, 0.025490743015491146, 0.026328316221425983, 0.02723379247799976, 0.02820181443584468, 0.029227927241681273, 0.030308594579393916, 0.031441156641228575, 0.032623749860795956, 0.03385520582491467, 0.035134942588922455, 0.03646285713014186, 0.037839223789276184, 0.03926460067365559, 0.04073974417896586, 0.042265530874640043, 0.04384288575186297, 0.045472716003967226, 0.04715584988329327, 0.04889298059676878, 0.05068461555941446, 0.052531031564531976, 0.05443223653241331, 0.0563879384731019, 0.05839752216678492, 0.06046003385853624, 0.06257417401570349, 0.06473829793636333, 0.06695042375136588, 0.06920824714954846, 0.07150916198803453, 0.07385028583343056, 0.07622848941609847, 0.07864042896537611, 0.08108258042255052, 0.0835512745923784 ], [ 0.027499816246291282, 0.026645925492817305, 0.02592652700459171, 0.025338738227330238, 0.02487961920579689, 0.02454628559911636, 0.0243359007932982, 0.024245551629633766, 0.024272043105212165, 0.024411670570531976, 0.024660035358802467, 0.025011958476125237, 0.025461520779011076, 0.026002226068456622, 0.02662725611674228, 0.027329771157401796, 0.028103207796401387, 0.028941535757757215, 0.029839449966419712, 0.030792489892071513, 0.0317970902508257, 0.03285057463518487, 0.03395110663689904, 0.035097612679552394, 0.036289688470593925, 0.03752749791910615, 0.038811670389280524, 0.04014319974059532, 0.041523346914284186, 0.042953546832313706, 0.04443531994107362, 0.045970188679994625, 0.04755959931256554, 0.04920484978271939, 0.05090702445141739, 0.05266693666597107, 0.054485080092436154, 0.05636158960124066, 0.058296212258684865, 0.06028828867316972, 0.06233674461020246, 0.06444009245771531, 0.06659644182121315, 0.06880351827781407, 0.07105868913197015, 0.0733589948990827, 0.07570118519493264, 0.07808175772221367, 0.0804969991111827, 0.08294302647720211 ], [ 0.029903714948160375, 0.029053013212509755, 0.028331591846743005, 0.027736739265275378, 0.027265642852585432, 0.026915474375629446, 0.026683379952714616, 0.02656638034078087, 0.026561209681774545, 0.026664137431093922, 0.026870823628283306, 0.02717624996999508, 0.02757475068369966, 0.028060143882265708, 0.028625942946987146, 0.02926561399009989, 0.029972841729883355, 0.030741770951303645, 0.03156720079976485, 0.03244472070727347, 0.03337078685552933, 0.03434274517829801, 0.03535881069681372, 0.03641801400253105, 0.03752012485049607, 0.03866556101157081, 0.03985528847165472, 0.0410907172256139, 0.04237359552290233, 0.043705904531390165, 0.045089754933033334, 0.04652728682914186, 0.048020574378770255, 0.04957153669795089, 0.0511818566149777, 0.05285290884657756, 0.05458569900397673, 0.056380814558105494, 0.058238388512585115, 0.06015807608847224, 0.06213904425819905, 0.06417997351904069, 0.06627907090274829, 0.06843409290343144, 0.07064237678385699, 0.07290087859545184, 0.07520621621418963, 0.07755471574197566, 0.07994245973551002, 0.08236533588445993 ], [ 0.032413665220579514, 0.03156484504369715, 0.03084019999670334, 0.03023717365982224, 0.02975306426603719, 0.02938508896213184, 0.029130373524126417, 0.02898587370726024, 0.028948250637136342, 0.0290137344867074, 0.029178014588626684, 0.029436188780094723, 0.029782791681752775, 0.030211904635183768, 0.030717333932879887, 0.03129283272125352, 0.031932337469289106, 0.03263019183917586, 0.03338133721070102, 0.03418145744174191, 0.03502707344980127, 0.03591558944471208, 0.0368452965907791, 0.03781534167108306, 0.03882566849351812, 0.03987693895657684, 0.04097043945318998, 0.042107977050165966, 0.04329176888249644, 0.04452432754172611, 0.04580834490254756, 0.04714657674263169, 0.04854173055879854, 0.04999635905828269, 0.051512761814775626, 0.053092897462615606, 0.0547383085297083, 0.05645006058359689, 0.05822869681526315, 0.06007420855946024, 0.06198602160451557, 0.06396299753366552, 0.06600344881058343, 0.0681051659069319, 0.07026545448742687, 0.07248118052094105, 0.07474882116486682, 0.07706451935619708, 0.07942414021224703, 0.0818233275714885 ], [ 0.03501889803206686, 0.03417104347423258, 0.03344236117066334, 0.032830427533675564, 0.032332631408663645, 0.03194622261460513, 0.03166830288875875, 0.0314957653147932, 0.031425200077280516, 0.03145279282261523, 0.031574244660986676, 0.03178473904454293, 0.03207897139155663, 0.032451244944982485, 0.03289562418782551, 0.03340612801220445, 0.033976940345804285, 0.03460261617473417, 0.035278264763151934, 0.035999697672871846, 0.03676353528492373, 0.0375672707251008, 0.03840929379362086, 0.039288879613939544, 0.040206147511455355, 0.04116199552923399, 0.0421580154141316, 0.04319639221094245, 0.04427979201587337, 0.0454112410773996, 0.04659399930863124, 0.04783143133807811, 0.04912687838292784, 0.050483534375660534, 0.05190432981561615, 0.053391826681416114, 0.054948127393026965, 0.056574800256067606, 0.05827282309306187, 0.060042545928947935, 0.06188367272765483, 0.06379526134934022, 0.06577574018046987, 0.06782293932881557, 0.06993413389856519, 0.07210609667059185, 0.07433515749531161, 0.0766172668324934, 0.07894806110922725, 0.08132292787679286 ], [ 0.03770943784754892, 0.03686194626543491, 0.036128719056540366, 0.03550744128703401, 0.03499557218139205, 0.03459038229585078, 0.0342889467135056, 0.034088099941551604, 0.03398436672112175, 0.03397388896584997, 0.03405237095545791, 0.03421506215644402, 0.03445679028229452, 0.03477204814260037, 0.035155128661295526, 0.035600295173929715, 0.03610196999540219, 0.03665492355536509, 0.03725444854455562, 0.03789650742069644, 0.03857784611962027, 0.039296070964110426, 0.04004968899262225, 0.040838114053723146, 0.0416616421247128, 0.04252139967316959, 0.043419268795657676, 0.04435779261763619, 0.04534006422812561, 0.04636960236831594, 0.047450217227121005, 0.04858586998156961, 0.04978053007199164, 0.05103803451332181, 0.05236195370731959, 0.05375546814927653, 0.05522126006717699, 0.05676142338652535, 0.05837739452089834, 0.0600699054250834, 0.061838959215136505, 0.0636838275644733, 0.06560306812252648, 0.06759455944340083, 0.06965555039691082, 0.07178272077161235, 0.07397224975018166, 0.07621988910369064, 0.07852103826337695, 0.08087081883488809 ], [ 0.0404759611959454, 0.03962847676643413, 0.038890436900949156, 0.03825961215043311, 0.037733513958661154, 0.03730942384080703, 0.036984389440675024, 0.03675519259998108, 0.036618300760299295, 0.03656981728738012, 0.036605447607926396, 0.03672049601085027, 0.036909903037846734, 0.03716832671963059, 0.037490264006682074, 0.037870203014647406, 0.03830279311281283, 0.038783018747516704, 0.03930636392779545, 0.03986895683087957, 0.040467687201619806, 0.041100292409706495, 0.041765410705852796, 0.042462602159267525, 0.04319233896220918, 0.04395596739969827, 0.04475564401797856, 0.04559424860195614, 0.0464752766662924, 0.04740271438942376, 0.04838089931508824, 0.04941437068524958, 0.05050771387111769, 0.05166540392018192, 0.052891653610876846, 0.054190271490542535, 0.05556453509140321, 0.05701708385035339, 0.05854983523783515, 0.06016392631858184, 0.06185968155015192, 0.06363660621693261, 0.06549340363164267, 0.06742801321858302, 0.06943766588704252, 0.07151895272851301, 0.07366790300761333, 0.07588006761395462, 0.07815060453452802, 0.08047436342236444 ], [ 0.043309695324659295, 0.04246205511958169, 0.04171912288864292, 0.041078734081436655, 0.04053843725995659, 0.04009551782668208, 0.039746997232722105, 0.039489612200071605, 0.0393197829803124, 0.03923358270160796, 0.03922672072093886, 0.03929455136040026, 0.039432115777891776, 0.03963421978496965, 0.03989554521261921, 0.04021078794055865, 0.04057481266753605, 0.04098281321061433, 0.0414304674657447, 0.04191407772419851, 0.0424306892706677, 0.042978182564055, 0.04355533642838518, 0.04416186134217387, 0.04479840305924104, 0.04546651749826542, 0.04616861824876116, 0.04690789832725756, 0.04768822813026887, 0.048514031976998905, 0.049390146261727885, 0.05032166302597125, 0.051313763636965805, 0.052371548098369095, 0.053499866173798705, 0.05470315682960666, 0.055985302387940826, 0.057349503170948876, 0.05879817733046577, 0.06033288908754174, 0.061954306903357924, 0.06366219135036512, 0.06545541083152331, 0.06733198195732347, 0.06928913043389058, 0.07132336778031298, 0.07343057906220145, 0.07560611704158439, 0.07784489861487051, 0.08014150004685573 ], [ 0.04620234697397668, 0.0453545385485423, 0.04460678246151925, 0.04395696178614236, 0.04340265047712642, 0.04294113352620229, 0.042569409374913755, 0.04228417852459518, 0.0420818255386258, 0.0419584037764178, 0.04190963275572319, 0.04193091685794823, 0.04201739139011407, 0.04216399833572222, 0.0423655901815286, 0.04261705670655767, 0.04291346709905974, 0.04325021848677742, 0.04362318189998723, 0.04402883758552962, 0.04446439308505951, 0.04492787920408351, 0.04541822062375836, 0.045935279254102984, 0.04647986942709226, 0.04705374471348881, 0.047659556619993604, 0.04830078581600175, 0.04898164698350802, 0.04970696898179019, 0.05048205282523923, 0.051312510981507, 0.052204092638013275, 0.053162500729832, 0.05419320750331975, 0.05530127602792054, 0.0564911952069569, 0.057766735378812946, 0.05913083052908938, 0.06058549153367709, 0.062131752887948616, 0.06376965326945577, 0.06549824826571139, 0.06731565188243266, 0.06921910217820217, 0.07120504561920288, 0.0732692345068805, 0.07540683203488546, 0.0776125200740384, 0.07988060554490417 ], [ 0.04914605279524531, 0.04829818153656316, 0.04754578817759748, 0.04688678964792455, 0.0463187768726632, 0.04583903271370436, 0.04544453748100363, 0.045131965397170654, 0.044897677757868903, 0.04473772004174153, 0.04464783056564149, 0.04462346735684419, 0.044659857881512305, 0.04475207350310713, 0.044895127544792544, 0.045084093099905714, 0.045314234668101756, 0.04558114650687245, 0.045880890294680024, 0.04621012515701278, 0.046566224065454305, 0.04694737181315513, 0.04735264096609432, 0.047782043229616655, 0.04823655448413123, 0.04871811234284451, 0.04922958553942218, 0.04977471487205032, 0.05035802592898926, 0.05098471450018069, 0.0516605065033264, 0.05239149542882585, 0.05318396167776976, 0.05404417960489652, 0.05497821940167285, 0.05599175195110843, 0.05708986525147621, 0.05827690078821291, 0.0595563172714991, 0.060930587505064346, 0.062401131976220846, 0.06396829030996325, 0.06563132930045315, 0.06738848409340135, 0.06923702745059114, 0.07117336099764138, 0.07319312195415509, 0.0752912990036753, 0.07746235155539315, 0.07970032753148722 ], [ 0.052133344812641265, 0.051285609163072204, 0.05052886055529515, 0.04986103939630738, 0.04927974818047672, 0.048782268178633764, 0.04836556784089509, 0.048026305793344985, 0.047760833015472876, 0.0475651998439681, 0.047435173641089186, 0.04736627223210483, 0.047353816670206265, 0.04739300479280824, 0.04747900474075818, 0.04760706548014126, 0.04777263968506029, 0.047971513279241235, 0.048199935529216274, 0.04845474374790004, 0.048733477243653664, 0.04903447594622596, 0.04935695998393667, 0.04970108725015215, 0.0500679866178597, 0.050459764938811075, 0.05087948635121385, 0.05133112280677019, 0.05181947522016737, 0.05235006534270695, 0.05292899943995251, 0.053562806135596795, 0.05425825232906688, 0.05502214278597386, 0.055861110650679925, 0.056781407501015305, 0.057788702406824564, 0.05888789955547389, 0.06008298324912692, 0.061376897469278234, 0.06277146489415708, 0.0642673475131763, 0.06586404814766712, 0.06755994959843394, 0.06935238607644167, 0.07123774020550094, 0.07321155826544773, 0.07526867641153082, 0.07740335122238912, 0.07960938891794041 ], [ 0.055157126051221916, 0.05430979886541783, 0.05354905549242282, 0.052872852533478704, 0.05227880129213674, 0.05176418387680891, 0.05132596423139219, 0.05096079652988279, 0.0506650346019893, 0.0504347467916158, 0.05026574074026, 0.05015360199634893, 0.05009374916242211, 0.0500815066925018, 0.050112194689338155, 0.05018123338248961, 0.05028425860503148, 0.050417243662578125, 0.05057662254157991, 0.05075940938796707, 0.050963309496124445, 0.05118681754776245, 0.0514292994031996, 0.05169105427464966, 0.051973354549855126, 0.052278460879779366, 0.052609610438132934, 0.05297097658007401, 0.05336759857084906, 0.05380528072392732, 0.054290461265336515, 0.054830052568972505, 0.055431256065852204, 0.056101357018922174, 0.056847506290592806, 0.057676497959877254, 0.05859455288217986, 0.059607118759982355, 0.06071869682091475, 0.06193270373171046, 0.06325137502690195, 0.06467571336885329, 0.06620548175484492, 0.06783923875146951, 0.06957441032054942, 0.0714073910452877, 0.07333366666857132, 0.07534794977783506, 0.0774443210681464, 0.07961636968487346 ], [ 0.0582106528532217, 0.05736406739948925, 0.05659975538337188, 0.05591568503785191, 0.055309475945248134, 0.0547784150001298, 0.05431946977818299, 0.05392930136113109, 0.05360427955181158, 0.053340503916283005, 0.053133834111079976, 0.0529799324710544, 0.05287432090869381, 0.0528124529433673, 0.05278980031472729, 0.052801952322983715, 0.052844724935099875, 0.052914275902285396, 0.05300722168680965, 0.053120751870599954, 0.053252736843638196, 0.05340182485305265, 0.05356752483982661, 0.05375027182361796, 0.05395147187445166, 0.05417352392824284, 0.05441981589570067, 0.054694692749114246, 0.055003394641061715, 0.055351963714344365, 0.05574711919554386, 0.0561961016845502, 0.05670648926105955, 0.0572859900481771, 0.057942218033753136, 0.05868246099532957, 0.05951345099181603, 0.060441148757517486, 0.061470553210570565, 0.06260554605160018, 0.06384877914216883, 0.06520160926509634, 0.06666408137223098, 0.06823495797747664, 0.06991178938163879, 0.07169101723853619, 0.0735681027466109, 0.07553767047104645, 0.07759365932791647, 0.07972947337331861 ], [ 0.061287521468339094, 0.06044206085892171, 0.05967466211734445, 0.05898330286506279, 0.05836561225778904, 0.05781888709645721, 0.05734010723982949, 0.05692595203770475, 0.05657282013392929, 0.05627685532532058, 0.05603398113791067, 0.05583994638301106, 0.05569038322872383, 0.055580878364087455, 0.05550705676973168, 0.05546467657283858, 0.05544973256988785, 0.05545856532467763, 0.055487972323687816, 0.05553531748298854, 0.05559863530395272, 0.0556767261022966, 0.055769238917457054, 0.0558767388894323, 0.05600075603458242, 0.0561438124567124, 0.05630942512535375, 0.05650208150010298, 0.05672718556490302, 0.056990972359329976, 0.05730038995367173, 0.057662949084222974, 0.05808654236828093, 0.05857923710108537, 0.059149047950883146, 0.059803698165338655, 0.06055037985803724, 0.06139552520453421, 0.06234460063414552, 0.06340193517041151, 0.06457059194954617, 0.06585228884146929, 0.06724737040215396, 0.06875482959242027, 0.07037237430055772, 0.07209653109797616, 0.07392277706566408, 0.07584568999402795, 0.07785910765748666, 0.07995628796792138 ], [ 0.06438165727996588, 0.06353774637006093, 0.06276779085162401, 0.0620697774157174, 0.061441347533471906, 0.060879813888438605, 0.0603821775467731, 0.059945147302578806, 0.059565163080005756, 0.05923842549227908, 0.058960933603355206, 0.05872853260454658, 0.05853697254034975, 0.05838197846549948, 0.058259331579522816, 0.05816496006214264, 0.05809503760576192, 0.058046087068109875, 0.05801508627515275, 0.05799957278518163, 0.05799774434828395, 0.058008551813314775, 0.05803178129635992, 0.05806812248709603, 0.05811922000637972, 0.05818770473871041, 0.0582772020732615, 0.0583923140523504, 0.058538572627494706, 0.0587223616581553, 0.058950806058793784, 0.05923162769027517, 0.059572969244133495, 0.05998318945366206, 0.06047063536011815, 0.06104339983542061, 0.061709074791396985, 0.06247451211555345, 0.063345605010035, 0.06432710182406834, 0.06542246259265183, 0.0666337654809155, 0.06796166655049402, 0.0694054122195329, 0.07096290002422068, 0.07263078027113654, 0.07440458919482337, 0.07627890340027894, 0.07824750558386434, 0.08030355256212698 ], [ 0.06748730557929922, 0.06664540459561719, 0.06587346391982561, 0.0651694805479604, 0.06453111211488692, 0.06395569373998555, 0.06344025668512762, 0.06298155002378648, 0.06257606682861046, 0.06222007651870892, 0.061909664935268505, 0.06164078343222109, 0.06140930780391046, 0.061211107275092366, 0.06104212311643222, 0.060898455790119356, 0.06077645893657228, 0.06067283802760706, 0.06058475115454406, 0.060509909188711776, 0.06044667242506516, 0.06039414076251106, 0.06035223444974613, 0.0603217623999206, 0.06030447503214237, 0.06030309853307694, 0.06032134737191756, 0.06036391189741193, 0.06043641797135021, 0.060545355943235984, 0.060697976947744245, 0.060902155601468055, 0.06116621974539275, 0.06149874991717492, 0.061908353644527396, 0.06240342222134824, 0.06299188005175037, 0.06368093854386792, 0.06447686752144417, 0.06538479689458578, 0.06640855975878611, 0.06755058526605119, 0.0688118458581934, 0.07019185926979667, 0.07168874166769887, 0.07329930491555918, 0.07501918860304158, 0.07684301631842794, 0.07876456562182974, 0.08077694208539182 ], [ 0.0705990231807264, 0.06975962252329658, 0.06898630453231641, 0.06827707896199223, 0.06762962426381403, 0.06704130488066394, 0.0665091911430773, 0.06603008276551721, 0.06560053714963544, 0.06521690377535877, 0.06487536587745578, 0.06457199036449794, 0.0643027865589682, 0.06406377385928909, 0.06385105789472714, 0.06366091421314983, 0.06348987805381995, 0.06333483834534992, 0.06319313374766547, 0.06306264832599388, 0.06294190428837994, 0.06283014911133211, 0.06272743429264586, 0.062634682881881, 0.06255374283318642, 0.062487423104179644, 0.062439509311282705, 0.06241475569193163, 0.06241885018732398, 0.06245834973470595, 0.06254058344556153, 0.06267352234013343, 0.06286561577644427, 0.06312559666408284, 0.06346225991582793, 0.06388422118367745, 0.06439966546185288, 0.06501609724610809, 0.06574010521976065, 0.06657715455338473, 0.06753141866813497, 0.0686056597510943, 0.06980116369496901, 0.07111773093428478, 0.07255372044142752, 0.07410614048579334, 0.07577077707307528, 0.07754234949051883, 0.07941468209058583, 0.0813808821716635 ], [ 0.07371167043161206, 0.07287528623975156, 0.0721012301108047, 0.07138752792869121, 0.07073188415644571, 0.07013169957454511, 0.06958409218780644, 0.06908592212964773, 0.06863382152916847, 0.06822423033785006, 0.06785343902421116, 0.06751763883716645, 0.06721298002743459, 0.0669356380292043, 0.06668188717603182, 0.06644818109284592, 0.06623123850242704, 0.06602813283314946, 0.06583638372729357, 0.06565404832497684, 0.06547981002662823, 0.06531306229804781, 0.06515398495602655, 0.06500361024013933, 0.06486387582871864, 0.0647376617967399, 0.06462880836250012, 0.06454211116997324, 0.06448329086906265, 0.06445893396964532, 0.06447640245281491, 0.06454371051873477, 0.06466936820696559, 0.06486219346668831, 0.06513109652779701, 0.06548484297647983, 0.06593180450889916, 0.06647970857181458, 0.06713539960504514, 0.06790462501991155, 0.06879185814742671, 0.06980016814112719, 0.07093114343116155, 0.07218487122349203, 0.07355997127835723, 0.07505367835778433, 0.07666196477015419, 0.07837969263848975, 0.08020078493590374, 0.08211840483016371 ], [ 0.07682040334390224, 0.07598757353338127, 0.07521344520962131, 0.07449606441381097, 0.0738331671317658, 0.07322219744573721, 0.07266032924599547, 0.07214449218897988, 0.07167140267269058, 0.07123760060158119, 0.07083949262286875, 0.07047340233556383, 0.07013562771403581, 0.06982250567050323, 0.0695304833311961, 0.06925619524564687, 0.06899654541174569, 0.0687487926977238, 0.06851063798486791, 0.06828031114095014, 0.06805665575569014, 0.06783920941197102, 0.06762827711442923, 0.06742499533683571, 0.0672313839748352, 0.0670503833060394, 0.06688587288501656, 0.06674266917527359, 0.06662649870239719, 0.06654394367872182, 0.06650235749054616, 0.06650974824437818, 0.06657462981341228, 0.06670584154200511, 0.06691233991857576, 0.06720296798779495, 0.0675862108083838, 0.06806994754770734, 0.0686612124599994, 0.06936597765969187, 0.07018897001519997, 0.07113353257332598, 0.07220153782963683, 0.07339335625401576, 0.07470787928409299, 0.07614259207747968, 0.07769368815692378, 0.07935621601375453, 0.08112424686568981, 0.08299105300683689 ], [ 0.07992066569027227, 0.07909194625886883, 0.07831843403968322, 0.07759819968778428, 0.07692901634750524, 0.07630837816950117, 0.0757335226416443, 0.07520145730138732, 0.07470899144266503, 0.07425277341137243, 0.07382933399373204, 0.07343513624302597, 0.07306663187146337, 0.07272032407054066, 0.07239283633429247, 0.07208098656467903, 0.07178186545433046, 0.07149291788153962, 0.07121202582149078, 0.07093759107619425, 0.07066861594630247, 0.07040477980098409, 0.07014650933510293, 0.06989504012658154, 0.06965246691714669, 0.0694217798424053, 0.06920688365176877, 0.06901259682017524, 0.06884462741580148, 0.06870952272082026, 0.06861458998904033, 0.06856778645015363, 0.06857757780785083, 0.06865276606504761, 0.06880228952133456, 0.0690350001180373, 0.06935942575164922, 0.06978352744153303, 0.07031446296918659, 0.07095836945207047, 0.07172017700275335, 0.07260346403949729, 0.0736103620515772, 0.07474151398976298, 0.07599608641992033, 0.07737183168390184, 0.07886519305066596, 0.08047144356514535, 0.08218484817135002, 0.0839988386612443 ], [ 0.08300818098295465, 0.08218414245062051, 0.08141195264457575, 0.080689711525432, 0.0800152349951234, 0.07938607371990017, 0.07879953591420369, 0.07825271455288332, 0.07774251949698364, 0.07726571498512984, 0.07681896285495196, 0.07639887171805522, 0.07600205212543798, 0.07562517753895455, 0.07526505068267701, 0.07491867459994296, 0.07458332749991936, 0.07425664025068877, 0.07393667516824733, 0.07362200456185343, 0.07331178732047935, 0.0730058416550468, 0.07270471193770918, 0.07240972739595267, 0.07212305022424702, 0.07184771047575171, 0.07158762490994532, 0.0713475968311209, 0.07113329390638247, 0.0709512010636328, 0.07080854591557056, 0.07071319481349801, 0.07067351867270699, 0.07069822916762881, 0.07079618775516598, 0.07097619215998725, 0.07124674726907342, 0.07161582957160667, 0.07209065602175538, 0.07267746916410396, 0.0733813502733246, 0.07420607098287643, 0.07515399146059155, 0.07622600988017167, 0.07742156414955043, 0.07873868308617861, 0.08017408095491209, 0.08172328687364104, 0.08338079924068648, 0.08514025505549484 ], [ 0.08607894430191843, 0.08526016820393173, 0.08449002079384954, 0.08376663610052311, 0.08308787821232354, 0.08245136034016402, 0.08185446790518049, 0.08129438603424044, 0.08076813184431063, 0.08027259185425313, 0.07980456477779047, 0.07936080982552372, 0.07893810048251533, 0.07853328353987256, 0.07814334295385288, 0.07776546789500716, 0.07739712414148993, 0.07703612777138291, 0.07668071992138699, 0.07632964120277679, 0.07598220419599883, 0.07563836227677616, 0.07529877285272164, 0.07496485290572089, 0.0746388245421338, 0.07432374805724609, 0.07402353984026128, 0.07374297231119037, 0.07348765303534692, 0.07326398026204356, 0.07307907244935691, 0.07294066993725704, 0.07285700787900277, 0.07283666087199375, 0.07288836143511498, 0.0730207964855999, 0.0732423881219941, 0.07356106708969738, 0.07398404900291167, 0.07451762441694464, 0.07516697392772553, 0.07593601847166428, 0.07682731292064936, 0.07784198810830519, 0.07897974293637473, 0.08023888463968254, 0.08161641208432663, 0.08310813450283801, 0.08470881655217238, 0.0864123400660995 ], [ 0.08912921396986884, 0.08831628936019442, 0.08754891366329563, 0.0868252596732354, 0.08614324481445311, 0.08550055037553203, 0.0848946447668454, 0.08432281111425931, 0.08378217948459867, 0.08326976399038921, 0.08278250493977722, 0.08231731608419411, 0.08187113687524453, 0.0814409894803536, 0.08102404013084596, 0.08061766419446671, 0.08021951418289802, 0.07982758972826359, 0.07944030839249419, 0.07905657600919426, 0.07867585509585337, 0.07829822971055664, 0.07792446495748029, 0.07755605916655836, 0.07719528658672922, 0.07684522824681704, 0.07650978847024958, 0.07619369440705184, 0.07590247590841073, 0.07564242316690542, 0.07542051983920338, 0.07524434992055234, 0.07512197750668213, 0.07506179979186167, 0.07507237520551527, 0.0751622304208502, 0.07533965194621695, 0.0756124699318838, 0.07598784343715537, 0.07647205743128525, 0.07707034200566179, 0.07778672350253069, 0.07862391550392507, 0.07958325502005116, 0.08066468606296613, 0.08186678947791738, 0.08318685484190949, 0.08462098777844408, 0.08616424441142147, 0.0878107839731536 ], [ 0.09215550309065862, 0.09134902304095145, 0.09058515337081405, 0.08986211015838283, 0.08917786894768512, 0.08853018408262882, 0.08791661201449873, 0.0873345388349442, 0.08678121226020784, 0.08625377824058485, 0.08574932229107092, 0.0852649155363118, 0.0847976653382854, 0.08434477023390012, 0.0839035787570372, 0.08347165156114039, 0.0830468260989237, 0.08262728295798376, 0.08221161279622825, 0.08179888266843453, 0.08138870038222287, 0.08098127536522147, 0.08057747436242384, 0.08017887011245037, 0.07978778097664879, 0.0794072993238098, 0.0790413063218623, 0.07869447068152208, 0.0783722288710294, 0.07808074442123798, 0.07782684421916086, 0.07761793020021421, 0.07746186564275818, 0.07736683637142973, 0.07734118858287659, 0.07739324666471908, 0.07753111617272233, 0.07776247888838266, 0.07809438837782529, 0.07853307547156095, 0.07908377336548365, 0.07975057146073314, 0.08053630558343029, 0.08144248996294855, 0.08246929353923706, 0.08361556014886289, 0.08487886927079792, 0.08625563162416215, 0.0877412122341032, 0.0893300727252784 ], [ 0.09515457097896438, 0.09435512907877991, 0.09359550043185014, 0.09287394865071273, 0.09218851174908516, 0.0915370215060177, 0.09091712671522446, 0.09032632052052841, 0.08976197200546222, 0.0892213621513898, 0.0887017242043073, 0.08820028839627786, 0.08771433085634989, 0.08724122642111105, 0.08677850492087585, 0.0863239103779996, 0.08587546241198961, 0.08543151900416683, 0.08499083963326479, 0.08455264765171466, 0.08411669062884623, 0.08368329723949385, 0.08325342912302207, 0.08282872597881066, 0.08241154200330547, 0.08200497161954046, 0.08161286231755933, 0.08123981233681128, 0.08089115091086273, 0.08057289890078101, 0.08029170791189975, 0.08005477646645234, 0.0798697425320163, 0.07974455270654882, 0.07968730962926385, 0.07970610067557533, 0.07980881260613218, 0.08000293842554074, 0.0802953840744964, 0.0806922835202633, 0.08119883113198552, 0.08181913979421415, 0.08255613198457591, 0.08341146909721418, 0.08438552182543063, 0.08547738170480311, 0.08668491127933708, 0.0880048280848266, 0.08943281597022652, 0.09096365631947985 ], [ 0.09812341451529204, 0.09733160139260587, 0.09657694519227583, 0.09585776097204997, 0.09517215308225742, 0.0945180344915857, 0.09389314988105558, 0.09329510266379072, 0.09272138605060842, 0.09216941822748784, 0.0916365816401315, 0.09112026629439332, 0.09061791688115696, 0.09012708342308538, 0.0896454750216017, 0.08917101615816343, 0.08870190487693229, 0.08823667204747966, 0.08777424077677771, 0.08731398490870483, 0.08685578541559107, 0.08640008334839551, 0.08594792786959479, 0.08550101774683774, 0.08506173454019558, 0.08463316558000823, 0.08421911472029586, 0.08382409878544164, 0.08345332763360211, 0.08311266587392155, 0.0828085745353448, 0.08254803143225474, 0.08233842963996789, 0.0821874543995875, 0.08210293991068833, 0.08209270879959521, 0.08216439848693796, 0.0823252800925311, 0.08258207674580115, 0.08294078903593315, 0.08340653567039395, 0.08398341709208658, 0.08467440879062942, 0.0854812893862389, 0.08640460641874377, 0.08744368037091572, 0.08859664506570944, 0.08986052046405309, 0.09123131226306194, 0.09270413167940883 ], [ 0.10105925946306833, 0.1002756593529073, 0.09952669928966594, 0.0988107492940343, 0.098125983402454, 0.09747039888832368, 0.09684183911326699, 0.09623802012893716, 0.09565656110952604, 0.09509501864148083, 0.09455092482959453, 0.09402182909875488, 0.09350534347962454, 0.09299919106654236, 0.09250125722911583, 0.09200964304747056, 0.09152272032645817, 0.09103918742747173, 0.09055812503787301, 0.09007905087724455, 0.08960197221594088, 0.08912743495404453, 0.08865656787821917, 0.08819112058194639, 0.08773349340607627, 0.08728675763982072, 0.08685466413104131, 0.08644163840762178, 0.08605276043397579, 0.08569372724841144, 0.08537079698141957, 0.08509071317505267, 0.08486060893652186, 0.08468789127878534, 0.08458010701969143, 0.08454479279179386, 0.08458931298453319, 0.08472069069024199, 0.08494543781718521, 0.08526939131398362, 0.08569756277721782, 0.08623400848110022, 0.08688172603151914, 0.08764258244345836, 0.08851727659132756, 0.08950533687537533, 0.09060515281211537, 0.09181403732081543, 0.0931283149318631, 0.09454343011040162 ], [ 0.10395955178498, 0.10318473917864297, 0.10244218718698413, 0.10173032388008739, 0.10104739579207256, 0.10039148697454482, 0.09976054152667861, 0.09915238969057785, 0.09856477755882194, 0.0979954003882388, 0.09744193945008944, 0.09690210227267769, 0.0963736660491438, 0.09585452389255682, 0.09534273352385876, 0.0948365678773671, 0.0943345670045559, 0.09383559055043206, 0.09333886996814134, 0.092844059526483, 0.09235128505122053, 0.09186118922473704, 0.09137497215036712, 0.09089442577031819, 0.09042196061434303, 0.0899606232587401, 0.08951410280401012, 0.08908672465203771, 0.08868342990147865, 0.08830973880915408, 0.08797169701355499, 0.08767580361116886, 0.087428920738557, 0.08723816505277839, 0.08711078241103679, 0.08705400809378938, 0.08707491603108848, 0.08718026158704852, 0.08737632341561334, 0.08766875059399655, 0.08806242154716387, 0.08856132110604287, 0.08916844135265942, 0.08988571072223304, 0.09071395424930254, 0.09165288601554276, 0.09270113297038143, 0.09385628754677311, 0.09511498505245437, 0.0964730007997683 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.40631841495633125, 0.10850354201021155, 0.06266618908905407, 0.13277755856902204, 0.13566965397100922, 0.12207390058516551, 0.13431377387187596, 0.1300220652446769, 0.14733743609315936, 0.09592975423456065, 0.1327919480312895, 0.13826872501522303, 0.13838009321973196, 0.1329903707486445, 0.14501954753368532, 0.13599538052590515, 0.14366783490174728, 0.13885218555350543, 0.1415888640696876, 0.04970893813382803, 0.20254851573484908, 0.8202256867662072, 0.53971675503999, 0.41197490971535444, 0.48323400039225817, 0.48209049857632635, 0.3135523075208145, 0.25853742105056615, 0.19345673782844824 ], "xaxis": "x", "y": [ 0.1306498358026147, 0.2552005301020799, 0.28076470721630264, 0.2746411843234637, 0.22261026078235893, 0.16961257464470256, 0.23198495432064256, 0.22674909294137421, 0.1818223914382159, 0.15625931568079454, 0.17329367117182073, 0.5537603888660669, 0.12327044542745802, 0.12129317186133434, 0.031850642915132045, 0.12923317726443795, 0.15929369934866147, 0.1895580979279669, 0.2088963861522143, 0.21337350642276565, 0.22028171323853676, 0.7847294453531504, 0.2395413126796484, 0.0635403199121356, 0.13265602104365826, 0.15104498116011145, 0.21843513819769445, 0.23696584492752143, 0.2504237011950966 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.40631841495633125, 0.10850354201021155, 0.06266618908905407, 0.13277755856902204, 0.13566965397100922, 0.12207390058516551, 0.13431377387187596, 0.1300220652446769, 0.14733743609315936, 0.09592975423456065, 0.1327919480312895, 0.13826872501522303, 0.13838009321973196, 0.1329903707486445, 0.14501954753368532, 0.13599538052590515, 0.14366783490174728, 0.13885218555350543, 0.1415888640696876, 0.04970893813382803, 0.20254851573484908, 0.8202256867662072, 0.53971675503999, 0.41197490971535444, 0.48323400039225817, 0.48209049857632635, 0.3135523075208145, 0.25853742105056615, 0.19345673782844824 ], "xaxis": "x2", "y": [ 0.1306498358026147, 0.2552005301020799, 0.28076470721630264, 0.2746411843234637, 0.22261026078235893, 0.16961257464470256, 0.23198495432064256, 0.22674909294137421, 0.1818223914382159, 0.15625931568079454, 0.17329367117182073, 0.5537603888660669, 0.12327044542745802, 0.12129317186133434, 0.031850642915132045, 0.12923317726443795, 0.15929369934866147, 0.1895580979279669, 0.2088963861522143, 0.21337350642276565, 0.22028171323853676, 0.7847294453531504, 0.2395413126796484, 0.0635403199121356, 0.13265602104365826, 0.15104498116011145, 0.21843513819769445, 0.23696584492752143, 0.2504237011950966 ], "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 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "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": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='l2norm'))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We also plot optimization trace, which shows best hartmann6 objective value seen by each iteration of the optimization:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.03448058307954166, -0.11545494698213513, -0.11545494698213513, -0.11545494698213513, -0.11545494698213513, -0.11545494698213513, -0.11545494698213513, -0.42362629756943193, -0.5752350560810098, -0.7062641070919621, -0.7694239322909142, -0.7694239322909142, -0.8438979938942297, -0.9093643373465709, -0.9093643373465709, -0.967727013570364, -0.9714674998891675, -1.0001207221150619, -1.0001207221150619, -1.0214154930023975, -1.0214154930023975, -1.0407398279217643, -1.0407398279217643, -1.163517641224491, -1.5090638914065964, -1.8081043036775877, -1.8081043036775877, -1.8081043036775877, -1.8081043036775877, -1.8081043036775877 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "legendgroup": "mean", "line": { "color": "rgba(128,177,211,1)" }, "mode": "lines", "name": "mean", "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.03448058307954166, -0.11545494698213513, -0.11545494698213513, -0.11545494698213513, -0.11545494698213513, -0.11545494698213513, -0.11545494698213513, -0.42362629756943193, -0.5752350560810098, -0.7062641070919621, -0.7694239322909142, -0.7694239322909142, -0.8438979938942297, -0.9093643373465709, -0.9093643373465709, -0.967727013570364, -0.9714674998891675, -1.0001207221150619, -1.0001207221150619, -1.0214154930023975, -1.0214154930023975, -1.0407398279217643, -1.0407398279217643, -1.163517641224491, -1.5090638914065964, -1.8081043036775877, -1.8081043036775877, -1.8081043036775877, -1.8081043036775877, -1.8081043036775877 ] }, { "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.03448058307954166, -0.11545494698213513, -0.11545494698213513, -0.11545494698213513, -0.11545494698213513, -0.11545494698213513, -0.11545494698213513, -0.42362629756943193, -0.5752350560810098, -0.7062641070919621, -0.7694239322909142, -0.7694239322909142, -0.8438979938942297, -0.9093643373465709, -0.9093643373465709, -0.967727013570364, -0.9714674998891675, -1.0001207221150619, -1.0001207221150619, -1.0214154930023975, -1.0214154930023975, -1.0407398279217643, -1.0407398279217643, -1.163517641224491, -1.5090638914065964, -1.8081043036775877, -1.8081043036775877, -1.8081043036775877, -1.8081043036775877, -1.8081043036775877 ] }, { "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 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "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": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# `plot_single_method` expects a 2-d array of means, because it expects to average means from multiple \n", "# optimization runs, so we wrap out best objectives array in another array.\n", "best_objectives = np.array([[trial.objective_mean for trial in experiment.trials.values()]])\n", "best_objective_plot = optimization_trace_single_method(\n", " y=np.minimum.accumulate(best_objectives, axis=1),\n", " optimum=hartmann6.fmin,\n", " title=\"Model performance vs. # of iterations\",\n", " ylabel=\"Hartmann6\",\n", ")\n", "render(best_objective_plot)" ] } ], "metadata": { "kernelspec": { "display_name": "python3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.1" } }, "nbformat": 4, "nbformat_minor": 2 }