{ "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 09-24 14:38:50] ipy_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 09-24 14:38:50] ax.service.utils.dispatch: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 arms, GPEI for subsequent arms], generated 0 arm(s) so far). Iterations after 6 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:50] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:50] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:50] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:51] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:51] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:51] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:51] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:38:51] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:39:01] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:39:11] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:39:20] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:39:31] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:39:44] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:39:55] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:40:06] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:40:21] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:40:38] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:40:55] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:41:11] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:41:28] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:41:44] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:42:00] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:42:13] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:42:17] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:42:32] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:42:43] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/virtualenv/python3.6.7/lib/python3.6/site-packages/botorch/optim/optimize.py:275: BadInitialCandidatesWarning:\n", "\n", "Unable to find non-zero acquisition function values - initial conditions are being selected randomly.\n", "\n", "[INFO 09-24 14:43:16] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/virtualenv/python3.6.7/lib/python3.6/site-packages/botorch/optim/optimize.py:275: BadInitialCandidatesWarning:\n", "\n", "Unable to find non-zero acquisition function values - initial conditions are being selected randomly.\n", "\n", "[INFO 09-24 14:43:51] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:44:28] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/virtualenv/python3.6.7/lib/python3.6/site-packages/botorch/optim/optimize.py:275: BadInitialCandidatesWarning:\n", "\n", "Unable to find non-zero acquisition function values - initial conditions are being selected randomly.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:45:09] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/virtualenv/python3.6.7/lib/python3.6/site-packages/botorch/optim/optimize.py:275: BadInitialCandidatesWarning:\n", "\n", "Unable to find non-zero acquisition function values - initial conditions are being selected randomly.\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 09-24 14:45:46] ax.service.managed_loop: Running optimization trial 30...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/travis/virtualenv/python3.6.7/lib/python3.6/site-packages/botorch/optim/optimize.py:275: BadInitialCandidatesWarning:\n", "\n", "Unable to find non-zero acquisition function values - initial conditions are being selected randomly.\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.4189901873064764,\n", " 'x2': 0.8864858582276492,\n", " 'x3': 7.598012711675545e-17,\n", " 'x4': 0.5809428513029617,\n", " 'x5': 0.49750333110320993,\n", " 'x6': 0.05501258768377206}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 1.2447663379566005, 'hartmann6': -3.0136142558043515}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -0.14783224703445064, -0.14384391872524005, -0.13988567455470124, -0.1359763895229824, -0.13213505944817117, -0.12838061134079415, -0.12473174097633932, -0.1212067907886587, -0.11782367833336971, -0.11459988004252764, -0.11155246683363029, -0.10869817795591663, -0.10605350854424578, -0.10363477662166187, -0.10145812905768214, -0.09953944553805694, -0.09789410665254561, -0.09653660734803649, -0.09548001923838267, -0.0947353318810924, -0.0943107298696837, -0.09421088432182478, -0.09443634909109733, -0.0949831501721925, -0.09584264010715837, -0.09700165954909856, -0.0984430101654028, -0.100146203331821, -0.10208841453564577, -0.10424554980372691, -0.10659332108722919, -0.10910823272189107, -0.11176839854411624, -0.11455413490294863, -0.11744830390544214, -0.12043640932711619, -0.12350647127969872, -0.12664872285262674, -0.12985518175462585, -0.13311915279681474, -0.1364347139713722, -0.13979623141386144, -0.1431979383494426, -0.14663360177765572, -0.15009628946521025, -0.15357823978580099, -0.15707082871485611, -0.16056462217538825, -0.16404949798135826, -0.16751481967226756 ], [ -0.14721677955181223, -0.14329278581984362, -0.1394126196210388, -0.1355956001152001, -0.13186088636772686, -0.12822723056689234, -0.12471276339543036, -0.12133482992840561, -0.11810989198910704, -0.11505350711743279, -0.11218038503332894, -0.10950451026269614, -0.10703930585462729, -0.10479780011251183, -0.10279274882249978, -0.10103666249690368, -0.09954169395998225, -0.09831935717249096, -0.09738007262004622, -0.0967325648546884, -0.09638316897207644, -0.09633512889788265, -0.0965879854141205, -0.09713715148704205, -0.09797375510278328, -0.09908479746882937, -0.10045363246084738, -0.10206072918203302, -0.10388464148052523, -0.10590308277688121, -0.10809399521855334, -0.11043650918919523, -0.11291170970712172, -0.11550315542937217, -0.1181971283577068, -0.12098262293854067, -0.1238511083373719, -0.12679611510089117, -0.12981270655767663, -0.13289689672705585, -0.1360450715958701, -0.1392534611942995, -0.14251769784971047, -0.14583248305791452, -0.14919137300634766, -0.1525866819470525, -0.156009493982751, -0.15944976766690644, -0.1628965140996803, -0.16633802767944417 ], [ -0.14698392524774784, -0.14316056356122053, -0.1393973185760662, -0.13571395077226156, -0.13212972822602453, -0.12866311013897813, -0.12533146713785004, -0.12215086304627798, -0.11913592112683591, -0.11629979195095852, -0.11365422965482441, -0.11120976882032596, -0.10897597711748985, -0.10696174180571516, -0.10517553468557672, -0.10362559380092407, -0.10231996415543088, -0.10126635543351759, -0.10047180143911105, -0.09994214033966387, -0.09968137115473574, -0.0996909731649196, -0.09996929397618048, -0.10051111355492126, -0.10130747366015602, -0.10234582693819005, -0.10361051367809115, -0.10508352563232126, -0.10674547462143646, -0.10857665629146251, -0.11055809034836273, -0.11267242780639064, -0.11490463973796361, -0.11724243502970744, -0.11967639045841794, -0.12219980945333164, -0.12480835220919984, -0.1274994972116239, -0.13027190229588625, -0.1331247329759826, -0.13605701868878106, -0.13906708592712103, -0.14215210313365745, -0.14530775760277925, -0.1485280710068999, -0.1518053485814146, -0.15513024807307985, -0.15849194847981263, -0.16187839526824366, -0.1652765978060038 ], [ -0.1471783528720929, -0.1434963729189067, -0.13989367412715503, -0.13639046025516666, -0.13300605345457162, -0.12975849357992564, -0.12666417821986964, -0.12373757570786648, -0.1209910428069767, -0.11843477313147921, -0.11607689087891226, -0.11392368734146019, -0.11197997657264591, -0.11024952459814252, -0.10873548792231946, -0.1074407864443907, -0.10636833725067008, -0.10552109127140064, -0.10490184392326407, -0.10451282988600163, -0.1043551545108532, -0.104428151675936, -0.10472878179144796, -0.1052511877389366, -0.10598650831066658, -0.10692301062860587, -0.10804655216976866, -0.10934132954553633, -0.11079082568204268, -0.11237883792856973, -0.11409046117926502, -0.11591291194832509, -0.11783610716963766, -0.11985294865007123, -0.12195930344393147, -0.12415370579845764, -0.12643683350938328, -0.12881082844076674, -0.1312785374505987, -0.13384274730212709, -0.13650547746761266, -0.1392673805240665, -0.14212728351115267, -0.14508188724645166, -0.14812562576382993, -0.15125067581382434, -0.1544470972873464, -0.1577030796039205, -0.1610052663165955, -0.1643391299733865 ], [ -0.14784678803692608, -0.14435168800864262, -0.14095826892701302, -0.13768718606499464, -0.13455776122214513, -0.1315874810668909, -0.12879153906734975, -0.12618246220469143, -0.12376986476469942, -0.12156036646974, -0.11955769974585762, -0.11776301094563468, -0.116175334538136, -0.11479219123176887, -0.11361023590622477, -0.1126258649684484, -0.11183569051585751, -0.11123680354302379, -0.11082678009077762, -0.11060342856731098, -0.1105643258246014, -0.11070623409337887, -0.11102452058513013, -0.11151270881524966, -0.1121622724037572, -0.11296274098363424, -0.11390213208904965, -0.11496766421685978, -0.11614665681629632, -0.11742749222393867, -0.11880050711973356, -0.12025869609461748, -0.12179814210767392, -0.123418130204068, -0.12512094376721872, -0.12691138006021818, -0.1287960494478131, -0.13078253855640765, -0.13287852194630534, -0.1350909013844046, -0.1374250391119951, -0.13988413445655334, -0.14246877441999373, -0.1451766707190021, -0.14800257979897036, -0.1509383896194345, -0.15397334797574858, -0.15709440176929523, -0.16028661460828864, -0.16353363083349381 ], [ -0.14903782513064012, -0.14578014368059367, -0.14265017028858695, -0.1396690279626771, -0.13685598570010948, -0.13422783667912475, -0.13179832129238545, -0.12957764668228822, -0.12757215788485343, -0.12578421179567334, -0.1242122919448354, -0.12285137895476028, -0.12169356019012723, -0.12072882665772311, -0.11994597203173663, -0.11933348518915099, -0.11888032059622233, -0.11857644447850046, -0.11841308903668413, -0.1183826973929556, -0.11847859952787121, -0.11869451254411967, -0.11902399530472874, -0.11945999869889201, -0.11999463471454952, -0.12061924320374762, -0.12132477420367827, -0.12210243946518595, -0.12294453336778721, -0.123845291278742, -0.12480164747696176, -0.125813773550417, -0.12688531524173152, -0.1280232920196085, -0.12923767006867215, -0.1305406586068425, -0.1319458069277526, -0.13346699366856463, -0.1351174012330032, -0.13690855936251878, -0.13884952565698283, -0.1409462506594128, -0.1432011538845026, -0.14561291724910563, -0.14817648541461903, -0.1508832495371537, -0.15372138217889497, -0.15667628650398302, -0.15973112185203298, -0.1628673696293439 ], [ -0.15080168684046424, -0.14783728579974387, -0.14503067248418033, -0.14240346379277113, -0.13997482721144405, -0.1377607170223103, -0.13577315433182124, -0.1340196147153352, -0.13250259393590458, -0.1312194201845176, -0.13016236767584743, -0.12931909995148816, -0.1286734333609394, -0.1282063666956954, -0.12789727963446107, -0.1277251699166333, -0.12766978575866683, -0.12771252161387214, -0.12783698254086828, -0.12802917992530838, -0.12827738857768622, -0.12857175849912283, -0.12890381975950893, -0.1292660350568362, -0.1296515370396969, -0.1300541398615307, -0.13046864772420697, -0.13089141305145802, -0.13132103935914352, -0.1317590907147388, -0.13221066588715824, -0.13268471857908293, -0.1331940476576854, -0.133754932554629, -0.13438643877082446, -0.13510945884128067, -0.13594558067251072, -0.1369158866168143, -0.13803978433787, -0.13933395742237975, -0.1408115034918913, -0.14248130394972458, -0.14434764565717662, -0.146410093227197, -0.14866359288390885, -0.15109877580744446, -0.15370242073937024, -0.1564580320209923, -0.15934648948295438, -0.1623467298209309 ], [ -0.15318992562308908, -0.15058025760098537, -0.14816296896335324, -0.1459602088018621, -0.14399100021116018, -0.14227030983559374, -0.14080815712210892, -0.13960884100120752, -0.13867037269257287, -0.13798420420686752, -0.1375353287028298, -0.13730279885733077, -0.13726066391557, -0.13737927055900334, -0.1376268167264163, -0.13797100298577125, -0.1383806043500846, -0.13882679408930287, -0.13928409131198127, -0.1397308698173907, -0.1401494445024314, -0.14052582704797212, -0.14084929793974887, -0.14111196408484905, -0.141308454824161, -0.1414358580107311, -0.14149392490567414, -0.1414854961792209, -0.14141703958560403, -0.1412991561051553, -0.14114691051176376, -0.14097987099929465, -0.1408217911249905, -0.14069992373429696, -0.14064400933362875, -0.1406850222587981, -0.14085378259829473, -0.14117954953929623, -0.14168870474923279, -0.14240361634316012, -0.1433417492420146, -0.14451506040973006, -0.14592969098612252, -0.14758594420534799, -0.14947851974735515, -0.15159696248504884, -0.15392627642076318, -0.15644765238808622, -0.1591392599323347, -0.1619770586250795 ], [ -0.15625506142376389, -0.15406741534557122, -0.15211174652726744, -0.1504107891780293, -0.14898338738259653, -0.14784337028838168, -0.14699845880844498, -0.1464492973463838, -0.14618872071790046, -0.14620137154064272, -0.14646377103939567, -0.14694491268279442, -0.14760739374640242, -0.14840903091212465, -0.14930483413141693, -0.15024915343104595, -0.15119778089670666, -0.15210979468405195, -0.1529489754968758, -0.15368470142383717, -0.15429231949511246, -0.1547530823130563, -0.1550538057195805, -0.1551864331743753, -0.15514767762369108, -0.15493885673686192, -0.15456595760032887, -0.15403988359855658, -0.15337677031572716, -0.15259822351711194, -0.15173133541727712, -0.15080837057182128, -0.14986606817713244, -0.14894456925089306, -0.14808603250348407, -0.14733304304120565, -0.1467269394156656, -0.14630618716420352, -0.14610491401102266, -0.1461516979857862, -0.14646866987871143, -0.1470709602197402, -0.14796649192988776, -0.14915609541192865, -0.15063390449937408, -0.15238797979526741, -0.1544011001942076, -0.1566516629645569, -0.15911463654882474, -0.16176251698482558 ], [ -0.160050150052635, -0.15835786649800254, -0.1569426933479139, -0.15582802021515474, -0.15503248860152952, -0.15456864188810515, -0.15444159339525076, -0.1546478236666058, -0.15517424220055642, -0.15599765993389103, -0.15708480884464837, -0.15839300819990165, -0.15987151248638276, -0.16146349067496146, -0.16310849469309185, -0.16474519634686247, -0.16631412571049542, -0.16776014324758215, -0.16903442535114377, -0.17009582999856643, -0.17091161798436483, -0.1714576125670917, -0.17171796278752005, -0.17168471469765167, -0.17135738210139184, -0.17074264940978834, -0.16985425169531276, -0.16871298605807494, -0.1673467383130336, -0.1657903760146322, -0.16408536727392886, -0.16227902771270175, -0.16042336098104726, -0.1585735252686018, -0.15678601535589598, -0.15511668818554458, -0.15361877643541, -0.15234103051408976, -0.15132610914492606, -0.15060930797195082, -0.1502176801530628, -0.15016956761908307, -0.150474530247106, -0.15113363496052235, -0.1521400488362048, -0.15347986977304973, -0.1551331245094305, -0.15707486563879458, -0.15927630538606685, -0.16170593284862522 ], [ -0.16462827692507775, -0.16351092383392496, -0.16272191277531278, -0.16228537939063248, -0.16221975319365023, -0.1625361483308847, -0.16323675233105495, -0.16431334341087744, -0.16574610045803562, -0.16750288917283784, -0.16953920215877982, -0.17179889118339653, -0.17421575376193177, -0.17671593084829862, -0.1792209556754194, -0.1816511908957983, -0.18392932738542056, -0.1859836104473258, -0.18775051112911822, -0.18917666120659926, -0.19021999850787674, -0.19085019729552344, -0.1910485586924704, -0.19080758661443808, -0.19013046521855492, -0.1890305903941616, -0.187531211440348, -0.1856651395325848, -0.18347440521321268, -0.1810097159407893, -0.17832958012207145, -0.17549901629972586, -0.17258783779033515, -0.16966857527523116, -0.1668141576508848, -0.16409550621314462, -0.16157920683929472, -0.1593254121465575, -0.15738609651852853, -0.1558037483041559, -0.15461054189629886, -0.15382799302656913, -0.15346706712090707, -0.15352868502819006, -0.15400455358938814, -0.15487824003610995, -0.15612640804551914, -0.15772013795624762, -0.15962626251800804, -0.16180866099092772 ], [ -0.1700419714106458, -0.16958546933684016, -0.16951523520225198, -0.16985626481437266, -0.17062678387936492, -0.17183634233903122, -0.17348387840424206, -0.1755559037865031, -0.1780250071684737, -0.1808489035452887, -0.18397025823747293, -0.18731747321931258, -0.19080653434311845, -0.19434388834958538, -0.19783017040804052, -0.20116446916524056, -0.20424873024795498, -0.20699188305314697, -0.20931333336158953, -0.2111455817822352, -0.2124358789758345, -0.21314698100369145, -0.2132571898606732, -0.21275992907804864, -0.21166309934560457, -0.20998839070524267, -0.20777062113138856, -0.20505706189122797, -0.20190663133471598, -0.1983888106545173, -0.1945821596043047, -0.19057237373158564, -0.18644990583656118, -0.18230725145285298, -0.1782360551088804, -0.17432422293462668, -0.17065322733228272, -0.16729576583138184, -0.16431389658381268, -0.16175772543825295, -0.15966467138910057, -0.15805929387035023, -0.15695363033149956, -0.1563479674568189, -0.15623195447274818, -0.1565859613799676, -0.1573825871194745, -0.15858823077257544, -0.16016465096869803, -0.16207045292941102 ], [ -0.17634253786718412, -0.17663922251113018, -0.17738742093213333, -0.17861313005414736, -0.18033440117382815, -0.1825590976714535, -0.18528258415830146, -0.188485520583056, -0.1921319952816114, -0.19616827651492352, -0.20052247368290654, -0.20510535863095702, -0.20981249414332925, -0.21452765746129931, -0.21912735888474955, -0.2234860823587348, -0.22748176089120964, -0.23100097352451776, -0.2339434159412339, -0.23622533434583337, -0.2377817897195802, -0.23856780017645596, -0.23855855649822444, -0.23774898886327933, -0.23615296437024202, -0.2338023212591409, -0.23074582667182675, -0.2270480236822221, -0.22278784999764478, -0.21805688737433138, -0.21295713697551677, -0.20759829317219491, -0.2020945800349574, -0.19656129607693296, -0.19111126682301016, -0.18585142468044014, -0.1808797232149828, -0.17628255575366114, -0.1721327960667245, -0.16848852136566417, -0.1653924228822401, -0.1628718623571812, -0.16093949695435628, -0.15959437147645783, -0.15882336480575687, -0.1586028757234219, -0.15890063959710088, -0.15967757958189166, -0.16088961173007021, -0.16248934077446608 ], [ -0.18357930062266958, -0.18472790890414403, -0.18640124810994396, -0.18862648737248766, -0.19142155791629034, -0.1947925312193095, -0.19873087850115811, -0.2032108074871275, -0.20818695113909813, -0.213592748225663, -0.21933988263670057, -0.22531911116479986, -0.23140269103802735, -0.23744842338231464, -0.24330509079031093, -0.24881884353305583, -0.25383993976457075, -0.25822920785069114, -0.26186367522015086, -0.2646409700305452, -0.26648230944805107, -0.26733410082236175, -0.2671683598059271, -0.26598225561471467, -0.26379710487825747, -0.26065705632440817, -0.2566275745569664, -0.25179369586771627, -0.24625794074063556, -0.2401377512306513, -0.23356237271482239, -0.226669193369464, -0.21959965813203897, -0.21249495832648368, -0.20549174633925915, -0.19871813198975374, -0.19229018861005098, -0.18630914300716195, -0.18085935673878284, -0.17600713761338294, -0.1718003584544301, -0.16826881024318396, -0.16542518121638805, -0.16326653253710033, -0.16177613341584873, -0.16092552175046704, -0.16067666777564038, -0.1609841351319159, -0.1617971536687275, -0.16306153906613674 ], [ -0.19179876177086919, -0.19390432627002707, -0.19661648142612442, -0.1999637730432564, -0.203964095186016, -0.20862164358733337, -0.21392368650264548, -0.21983737081618027, -0.22630688192849502, -0.23325136641324296, -0.2405640754190823, -0.24811315817783663, -0.2557444014128385, -0.2632859720743619, -0.2705549188777274, -0.27736489935415, -0.2835344060291447, -0.28889471704912073, -0.2932968892737633, -0.29661730329554614, -0.2987615099959655, -0.2996663750759696, -0.2993007314873801, -0.2976648862026343, -0.29478935370737247, -0.2907331041098775, -0.2855814613811545, -0.27944363419233076, -0.27244976798199394, -0.2647474000379264, -0.25649727011400114, -0.24786855296853605, -0.23903369523559825, -0.23016312476899237, -0.22142013917109815, -0.21295627014306273, -0.20490737095567702, -0.19739060037212441, -0.1905023928827061, -0.18431742473684043, -0.1788885167125951, -0.17424736263061624, -0.1704059387599508, -0.16735843253264537, -0.16508352693305506, -0.16354688635764614, -0.16270370726145478, -0.16250121932039852, -0.16288104736874565, -0.1637813687938574 ], [ -0.20104367273074164, -0.20421730800491078, -0.2080887195920944, -0.2126880707782064, -0.21803333328046315, -0.22412676900857176, -0.2309511497959269, -0.23846595289277328, -0.2466038965929671, -0.25526830278054935, -0.26433185271204507, -0.27363728978422097, -0.28300047589198574, -0.2922159178476602, -0.3010644965448974, -0.309322757998592, -0.3167728774234779, -0.32321235037970664, -0.32846258353730473, -0.33237578503794585, -0.33483982744327934, -0.3357810372632064, -0.335165119978039, -0.33299660670805475, -0.3293172574400327, -0.324203766917037, -0.31776494382069775, -0.3101383581423185, -0.30148635134716373, -0.29199131028442693, -0.2818502013533213, -0.27126849931094, -0.2604537744290374, -0.24960928597995213, -0.23892795390335442, -0.22858704728974177, -0.21874385304919097, -0.2095324902162774, -0.2010619329981529, -0.1934152128592348, -0.18664969535060116, -0.18079827487399247, -0.1758713002036465, -0.17185903296553384, -0.16873444663190562, -0.16645619068606932, -0.16497156931541768, -0.16421941264179374, -0.16413274809808054, -0.1646412078352133 ], [ -0.21135202314286183, -0.21571058631783613, -0.22086812261851585, -0.22685669251821117, -0.233694494850621, -0.24138182905774697, -0.24989669879703857, -0.25919031118800784, -0.2691828821805704, -0.2797603204679049, -0.2907724833746863, -0.3020337125381891, -0.31332620071961226, -0.3244063899118925, -0.33501411194380437, -0.3448836975451808, -0.3537559629615983, -0.3613899234743321, -0.36757324346984155, -0.3721307041272879, -0.3749302710341156, -0.3758866538266321, -0.3749625522929154, -0.3721680168373138, -0.36755843577765446, -0.3612315709746017, -0.35332385817727596, -0.34400598306232855, -0.3334776359157161, -0.32196137214251985, -0.3096956329349634, -0.2969271468541581, -0.2839030758037775, -0.2708633475879627, -0.2580336198090145, -0.2456192564117181, -0.23380059097046235, -0.22272962485288095, -0.21252818517899863, -0.20328746207294013, -0.19506876524238725, -0.18790528878104418, -0.1818046484953293, -0.17675195378003172, -0.17271319079826908, -0.16963872005147929, -0.16746672444650024, -0.1661264795892765, -0.1655413530965235, -0.16563147197325145 ], [ -0.22275595388975034, -0.22842156114870704, -0.23499802380436852, -0.2425196200596984, -0.2510049618721679, -0.26045238962753614, -0.270834893411809, -0.28209482626675686, -0.294138863860812, -0.30683387459344, -0.32000454008470913, -0.33343362274151134, -0.3468656199005671, -0.360014122704271, -0.3725725734195704, -0.38422748054754274, -0.39467274658396967, -0.40362371394724117, -0.41082976347368794, -0.4160846254390307, -0.41923387890269037, -0.42017943905772803, -0.4188811883178769, -0.41535622027232333, -0.4096763065534641, -0.40196410722362863, -0.3923884011613912, -0.38115836802830194, -0.368516835992007, -0.3547324577607358, -0.3400909446238829, -0.32488568811866037, -0.3094082541733565, -0.29393930181062067, -0.27874045125607827, -0.2640475240943505, -0.2500654321870399, -0.23696483383267108, -0.22488052989411456, -0.21391145500688924, -0.2041220364843359, -0.19554464636827884, -0.18818285605604435, -0.18201521162091305, -0.1769992742462767, -0.17307570743611822, -0.17017223516096602, -0.16820733838280488, -0.16709359823906533, -0.16674063043760534 ], [ -0.23528060486146307, -0.24237998516162995, -0.2505134361530641, -0.25971781631144353, -0.27001237403124834, -0.281393527206961, -0.293829036277486, -0.3072518398482018, -0.3215540460106334, -0.33658183771936834, -0.35213229722296413, -0.3679532745946108, -0.38374728288751836, -0.39917990383002167, -0.4138923893626467, -0.42751730799859367, -0.4396955666018185, -0.45009312290628967, -0.45841604621570786, -0.4644229764616499, -0.4679343328921337, -0.4688379315399216, -0.46709108751151396, -0.46271970827455955, -0.4558151129926866, -0.4465292304281656, -0.43506853102359466, -0.42168675075314566, -0.40667633573944406, -0.3903586176020686, -0.3730729469620333, -0.3551652510186778, -0.3369766463502757, -0.3188327855168187, -0.30103454826089315, -0.2838505371003188, -0.2675116450287254, -0.2522077683830941, -0.23808656853582022, -0.22525405748116523, -0.21377669952028033, -0.203684681380093, -0.19497599902606155, -0.18762103207712455, -0.18156731701827744, -0.17674428031964262, -0.1730677456786176, -0.1704440811579142, -0.16877389880607097, -0.1679552595479632 ], [ -0.24894291254908407, -0.25760658026138117, -0.2674394687332766, -0.27848142150163, -0.2907525834383482, -0.30424751880743783, -0.31892857209920744, -0.3347187352782859, -0.35149454440147476, -0.36907985632690576, -0.3872416909081058, -0.40568953465044433, -0.42407939911965276, -0.4420233499845725, -0.45910420201946023, -0.4748939622117938, -0.48897393172947035, -0.5009544359956248, -0.5104926805318619, -0.517307707176416, -0.5211916561100918, -0.52201677679372, -0.5197381184471692, -0.5143924347757514, -0.5060942015846845, -0.49502957676319137, -0.4814487619332186, -0.46565685545129165, -0.44800314524420015, -0.42886891502468627, -0.4086541176433207, -0.3877635510301187, -0.3665933424724872, -0.34551856317605867, -0.32488267339455357, -0.3049892870229096, -0.2860964984263761, -0.2684137794097552, -0.2521012609224613, -0.23727107677275328, -0.22399036704444564, -0.2122855104827146, -0.20214716694074908, -0.19353575095772912, -0.18638701439751748, -0.1806174804478864, -0.1761295360675963, -0.1728160502814653, -0.17056443857049963, -0.16926013750405655 ], [ -0.263750377599824, -0.274111606993108, -0.2857896753192781, -0.298827857431486, -0.31324748942721103, -0.3290413800044443, -0.3461662984025671, -0.3645347865924977, -0.3840068359966562, -0.4043823636985482, -0.4253958630655952, -0.446714938108685, -0.4679444062680165, -0.48863700786020314, -0.5083104623946204, -0.5264691165253264, -0.5426275431660927, -0.5563336456442969, -0.5671896525345774, -0.5748699721762709, -0.5791349390843814, -0.5798395624483692, -0.5769369618872784, -0.5704770415337621, -0.5606015197254834, -0.5475363813733716, -0.5315823462895475, -0.513103481558072, -0.4925139323565031, -0.4702629304558763, -0.44681859710714766, -0.4226513852197722, -0.3982181726034846, -0.3739479877368477, -0.350230157771803, -0.32740538366778016, -0.3057599391346639, -0.2855229119277771, -0.2668661897415354, -0.24990675040782606, -0.2347107446077381, -0.2212988473504658, -0.20965238676039188, -0.1997198197224852, -0.19142320007420732, -0.1846643656118423, -0.17933064758470474, -0.17529997573266365, -0.1724453106747379, -0.1706383826557285 ], [ -0.27969982801677107, -0.2918934148224772, -0.30556436543905874, -0.32075987188941824, -0.33750278754902996, -0.35578428749166413, -0.3755554269911152, -0.3967178190881109, -0.41911397328812305, -0.4425182994739465, -0.46663034096127487, -0.4910722962489087, -0.5153929961822994, -0.5390798169081694, -0.5615783756790012, -0.58231783409933, -0.6007384376116782, -0.6163183409920271, -0.6285980869958858, -0.6372018232017508, -0.6418540765619148, -0.6423906863224333, -0.6387631909954278, -0.6310372243491403, -0.6193863344694733, -0.6040826093037447, -0.58548487105671, -0.5640246117464822, -0.5401896798999795, -0.5145059939699583, -0.4875180089362994, -0.4597690377865402, -0.4317826796112474, -0.40404650930642516, -0.3769989027625613, -0.35101949895374895, -0.3264234222719491, -0.30345906517554955, -0.28230899440678314, -0.26309340132118053, -0.24587545953685086, -0.23066796359542074, -0.21744068021679386, -0.206127929745356, -0.19663601355135296, -0.18885020157939136, -0.18264108500288478, -0.17787017747837242, -0.17439471280418206, -0.17207163669498504 ], [ -0.2967762095695978, -0.31093700850514217, -0.3267489166072457, -0.3442635655042494, -0.3635056786490065, -0.3844649361484289, -0.4070865513283899, -0.43126074353707433, -0.456811634023502, -0.4834866163661038, -0.5109479412376778, -0.538768949290759, -0.5664376939216158, -0.5933700274578062, -0.6189322077161948, -0.6424703427098915, -0.6633423324642718, -0.6809487373126593, -0.694761077934663, -0.7043469576076625, -0.7093905503261795, -0.7097062883164569, -0.7052444609925378, -0.696089278676128, -0.682451219716472, -0.6646554576074531, -0.6431273366792809, -0.6183751177835441, -0.5909700551088308, -0.5615242390682713, -0.5306672009728137, -0.49902269318648673, -0.4671871717535092, -0.4357113199994447, -0.4050855588502451, -0.3757300145241427, -0.3479889594322687, -0.3221293735500437, -0.2983430206048334, -0.27675129737007675, -0.2574120786594629, -0.24032782045527679, -0.225454272769104, -0.21270926901762288, -0.20198118158292222, -0.19313675093988336, -0.1860281003315749, -0.18049883546525813, -0.17638919796639052, -0.17354029314131214 ], [ -0.31495144094521943, -0.33121267328660386, -0.3493121357847313, -0.36930645441826204, -0.3912225969134193, -0.41504889564067016, -0.44072459250032536, -0.46812804703029554, -0.4970641033535177, -0.5272516886853087, -0.5583135322148607, -0.5897708154761043, -0.6210461527789417, -0.6514777442980608, -0.680345126722462, -0.7069032611021692, -0.7304193448708934, -0.7502080050452916, -0.7656637506499683, -0.7762906460494459, -0.7817273667435592, -0.7817643472133529, -0.7763509082180027, -0.7655929279811265, -0.7497434211210623, -0.7291883448657909, -0.7044288415946942, -0.6760601928379631, -0.6447476234372972, -0.6111996106309995, -0.5761400379176438, -0.5402809824036121, -0.5042979726639032, -0.46880924267301527, -0.43435997793715564, -0.40141195720090894, -0.37033845621798034, -0.34142386834542204, -0.3148672344689616, -0.2907887541937959, -0.26923834512931344, -0.25020539413314524, -0.23362897092769486, -0.21940792308910284, -0.2074104215325172, -0.19748266374536305, -0.18945656056884408, -0.18315632824266026, -0.17840398075764252, -0.17502377025256388 ], [ -0.33418337685076316, -0.3526747091383913, -0.37320472760085055, -0.39583563383734477, -0.4205970296639727, -0.4474760476292867, -0.4764058147269854, -0.5072523447265669, -0.5398003116592136, -0.5737387721459382, -0.6086488363428061, -0.6439964522966032, -0.6791344108726416, -0.7133173632539513, -0.7457308623712541, -0.7755305660538264, -0.8018843702943719, -0.8240121683092749, -0.8412228010985076, -0.8529490611909991, -0.8587783528817349, -0.8584741359435971, -0.8519849477405695, -0.8394416229318976, -0.8211457872371771, -0.7975525773828621, -0.7692490617644032, -0.7369286983535507, -0.7013620912935083, -0.6633650052395785, -0.6237654143009783, -0.5833718191940522, -0.5429450112799308, -0.5031749902865224, -0.46466404929830407, -0.4279163159620796, -0.393333417015268, -0.3612154834228578, -0.33176645131957927, -0.30510251986542536, -0.2812626630573296, -0.2602202154586708, -0.2418947221574883, -0.22616342940738776, -0.21287197197086893, -0.20184397243563734, -0.19288939996056875, -0.1858116393262128, -0.18041329735791622, -0.17650082610407192 ], [ -0.35441492721619294, -0.37526033109762413, -0.3983579360209173, -0.423776119198112, -0.4515475159339446, -0.4816582012551285, -0.5140350199130097, -0.5485311171054703, -0.5849100746294824, -0.622829694477856, -0.6618274981937952, -0.7013114103214207, -0.7405604444121313, -0.7787402801686695, -0.8149355907530238, -0.8481947208008579, -0.8775775348871261, -0.9021999649508778, -0.921275875859263, -0.9341583454012786, -0.9403771316724869, -0.9396653444902585, -0.9319707701900597, -0.917452604095795, -0.896467551307142, -0.8695489677214066, -0.8373807913249666, -0.8007666805771473, -0.7605948196694121, -0.717799770214035, -0.6733236960210917, -0.6280797142249271, -0.5829199179104592, -0.5386099397506432, -0.49581104096088424, -0.4550698411440808, -0.4168150982598269, -0.3813604686494483, -0.34891192768068735, -0.3195784772645036, -0.2933848553752849, -0.2702851409044882, -0.2501763678784319, -0.23291149066773964, -0.21831125255970774, -0.20617469061017646, -0.19628815469228122, -0.18843282823417784, -0.18239081566776405, -0.17794991206872313 ], [ -0.3755733842547835, -0.3988887983350531, -0.4246824341453055, -0.4530294525506975, -0.483965924720301, -0.5174770010868368, -0.5534830489011773, -0.5918237756848888, -0.6322406997478145, -0.674358974842227, -0.7176706694101535, -0.7615232049983914, -0.805118426671005, -0.8475283551502353, -0.887730575716392, -0.9246585107543024, -0.9572552548879226, -0.9845231740823661, -1.0055712730987045, -1.0196638817865982, -1.0262662309841155, -1.0250773157396007, -1.0160439694361063, -0.9993571418034152, -0.9754353567861574, -0.9448997769764366, -0.9085428933861472, -0.867291382403119, -0.8221639094466645, -0.7742258354541683, -0.7245438361737692, -0.6741437833255658, -0.6239748128341771, -0.5748815774326665, -0.5275855759340238, -0.4826754297631184, -0.44060519128892617, -0.4016992724306343, -0.3661623612352376, -0.3340926951907781, -0.305497215104777, -0.28030736676836576, -0.2583945951425879, -0.2395848482893137, -0.22367165129319533, -0.210427511778299, -0.1996135750371033, -0.19098756071732348, -0.18431009002763954, -0.17934955933836516 ], [ -0.397570010773713, -0.42346083798932455, -0.452067542658529, -0.4834726706374255, -0.5177161261382579, -0.5547822572926822, -0.594584734562746, -0.6369492165711564, -0.6815941343677869, -0.7281105719952234, -0.7759433561744731, -0.8243772285247769, -0.8725341173116283, -0.9193886584786555, -0.9638061602986218, -1.00459819876378, -1.0405825003026687, -1.0706379904923007, -1.0937585425855678, -1.1091103580374364, -1.1160869248200318, -1.1143489873789219, -1.1038418738158087, -1.0847914949310367, -1.0576850324503635, -1.023241449354965, -0.9823740921914947, -0.9361461442737357, -0.8857202140843039, -0.8323047949980192, -0.7771014427843432, -0.7212566883246405, -0.6658219878499375, -0.611723780748314, -0.5597443746522812, -0.5105131988178147, -0.46450711108230447, -0.42205794813679876, -0.3833653359646614, -0.34851285157032175, -0.31748586274820334, -0.2901896913978328, -0.26646708633720073, -0.24611431168963027, -0.22889543252146782, -0.21455460033149643, -0.20282630678781466, -0.1934436901176637, -0.1861450528980666, -0.18067879150457844 ], [ -0.42029994210539123, -0.44885843013357607, -0.4803808598755879, -0.5149577365508602, -0.5526331778928313, -0.5933908410755515, -0.6371374681927242, -0.6836840369580283, -0.7327248381376165, -0.7838154490744822, -0.8363517316061748, -0.8895538470968104, -0.9424617096477189, -0.9939499281529822, -1.0427676164520128, -1.087598539240245, -1.1271268128343674, -1.1600980269580448, -1.1853806243878584, -1.202033323051679, -1.2093705413602924, -1.2070102742658688, -1.1948952864611686, -1.1732892487530455, -1.1427547252452708, -1.104118694079192, -1.0584281092771552, -1.0068966452317345, -0.9508446797119093, -0.891636287606, -0.8306180977977533, -0.7690647614762856, -0.7081346860822636, -0.6488380991180984, -0.5920178893740891, -0.5383423397745148, -0.48830795673432137, -0.44225012797671126, -0.40035923846161636, -0.36270004139881973, -0.32923241272390125, -0.2998320216513495, -0.2743098587670323, -0.2524299327033286, -0.23392475394813128, -0.21850846273000735, -0.20588763040211622, -0.1957698791142395, -0.1878705338006934, -0.18191755462455794 ], [ -0.4436424497287128, -0.4749450165500053, -0.5094683840198051, -0.5473115369790842, -0.5885231533292505, -0.6330862971776641, -0.6809005546364065, -0.731761606434709, -0.785338574043074, -0.8411501320143717, -0.8985415551301946, -0.9566667901354614, -1.0144822356687944, -1.0707608760223677, -1.1241330525851128, -1.1731499220759887, -1.2163544488267022, -1.2523494567986064, -1.2798681913666665, -1.2978530188608217, -1.305532077476598, -1.3024757312773454, -1.2886224368113743, -1.2642757765487955, -1.2300800712214313, -1.186980529773672, -1.1361706946994974, -1.0790289722937643, -1.0170474388171526, -0.9517580416424024, -0.8846622334716379, -0.8171695634392467, -0.7505491780413828, -0.6858961856438752, -0.6241129413214078, -0.5659038308662605, -0.5117811924927209, -0.46207959133974286, -0.4169756559970017, -0.37651096818899554, -0.34061593962533565, -0.30913310943074057, -0.28183877732596563, -0.25846230742249476, -0.23870277511730342, -0.22224288241411538, -0.20876024280756011, -0.19793624845001423, -0.18946279381237918, -0.18304715470896138 ], [ -0.4674616066049271, -0.5015661874887096, -0.5391552000421356, -0.5803365399687543, -0.6251637331331316, -0.6736193261666391, -0.7255955399780675, -0.7808722021440353, -0.8390923352452633, -0.8997364538658789, -0.9620978171925545, -1.0252628248474591, -1.08810337730818, -1.1492900924084857, -1.207333140773278, -1.2606475537084245, -1.3076288053692284, -1.3467287376758474, -1.3765368718517432, -1.3958713099030005, -1.403866998868088, -1.4000413688739743, -1.384325971914723, -1.3570655929261997, -1.3189921057222969, -1.271178924175149, -1.2149791176285454, -1.1519500137675887, -1.0837690844844547, -1.0121479433299694, -0.9387518595883759, -0.8651311065439077, -0.7926683096332233, -0.7225435060513776, -0.6557164455406288, -0.5929240583371322, -0.5346900740286247, -0.4813434325054067, -0.43304224727875607, -0.389800500709923, -0.3515152207590313, -0.3179924922974391, -0.2889712139073748, -0.26414398014985596, -0.24317483399313677, -0.2257138974212991, -0.21140906340181287, -0.1999150367088336, -0.1909000620698842, -0.1840506912615909 ], [ -0.4916073822769713, -0.5285508868140489, -0.5692467880212975, -0.6138121921651565, -0.6623056676885252, -0.7147092779057215, -0.7709076925786222, -0.8306644283342238, -0.8935956578748772, -0.9591427352614592, -1.026545801628239, -1.0948227661973955, -1.1627605174161222, -1.2289271817082372, -1.2917122601834619, -1.3493924750012534, -1.4002112770698596, -1.4424633932904563, -1.474588045943951, -1.4952725039696306, -1.5035520421404152, -1.4988854176773985, -1.4811937444210612, -1.4508633072948791, -1.4087185673569311, -1.355970625304184, -1.2941446496775746, -1.2249906430475832, -1.1503845219407671, -1.0722284545147516, -0.9923593988911276, -0.9124729366582667, -0.8340666582174157, -0.7584044121121608, -0.6865002707431639, -0.619119362742857, -0.5567918130430201, -0.49983580494529445, -0.4483860531804238, -0.40242455705030133, -0.36181121528051174, -0.32631259927839906, -0.29562781708261165, -0.26941091637163095, -0.24728966235968586, -0.22888079534047812, -0.21380204262727887, -0.2016812529715324, -0.19216305919297194, -0.1849134744629004 ], [ -0.5159171800637081, -0.5557131569310767, -0.5995309876602792, -0.6474971086340093, -0.6996751889217919, -0.7560467696493594, -0.8164887957776658, -0.8807481336639564, -0.9484135947169554, -1.018886733505178, -1.0913539308046993, -1.1647641666640913, -1.2378192873042915, -1.3089852797554093, -1.3765311981118757, -1.4385947049009422, -1.4932650436831272, -1.5386764977961604, -1.5731139017068072, -1.5951287292890348, -1.603650646652857, -1.5980736416583137, -1.5783039777046333, -1.5447687398060834, -1.4983891336074608, -1.4405226869757914, -1.3728784970444334, -1.2974120913138198, -1.216209730286342, -1.1313736436641153, -1.044918826361623, -0.9586892062974313, -0.8742973744334972, -0.7930886119810208, -0.7161272313357774, -0.6442014818763445, -0.5778424346655462, -0.5173521867145094, -0.4628371876441395, -0.4142432561394591, -0.3713897229163772, -0.33400096953945924, -0.3017343453884933, -0.2742040040889919, -0.25100060527019363, -0.23170709633415232, -0.21591094880787853, -0.20321330238462187, -0.193235491388849, -0.18562341290574547 ], [ -0.5402178098527897, -0.5828544213087468, -0.6297806242094611, -0.6811320728662132, -0.736977408442222, -0.797297494723791, -0.8619613613162911, -0.9306989974938892, -1.0030716083426865, -1.078440737384035, -1.1559389239702824, -1.2344464004061326, -1.31258052146165, -1.388706030845636, -1.460972571020482, -1.5273796370920614, -1.5858627696440444, -1.6343956349008117, -1.6711073148613647, -1.6944102765014724, -1.7031233444384464, -1.6965695103838352, -1.6746351354664355, -1.6377865521373896, -1.587044955728758, -1.5239220526324662, -1.4503215201800344, -1.3684158032520792, -1.280511670263022, -1.1889190012566424, -1.0958352193558056, -1.0032537878411323, -0.9129007099040891, -0.8261989996910699, -0.7442581469226268, -0.6678838085843862, -0.597602237322092, -0.5336940746921661, -0.4762328195178447, -0.42512425379909313, -0.38014414761087223, -0.34097251840626663, -0.307223507932469, -0.2784705359977613, -0.2542668050464525, -0.23416149180958934, -0.21771210693445986, -0.20449356348923087, -0.194104498378588, -0.18617135854779687 ], [ -0.5643278691309805, -0.6097662756218034, -0.6597567669211954, -0.7144438212130937, -0.7739006845797841, -0.8381072213307855, -0.9069242938251485, -0.9800648684006378, -1.0570625544552665, -1.1372391188235937, -1.2196737958409452, -1.3031789772111722, -1.3862888346765132, -1.4672685828700094, -1.5441506454815277, -1.6147991650320253, -1.6769992651534094, -1.7285669313264573, -1.7674768075741665, -1.7920009616807373, -1.8008430927341197, -1.7932492303000904, -1.7690805546269015, -1.7288405190171585, -1.6736526706775723, -1.60518939918286, -1.5255579354528879, -1.4371569362062886, -1.3425214466359545, -1.2441740889612274, -1.1444967105152697, -1.0456313692350396, -0.9494141348625291, -0.8573407216287776, -0.7705598322612858, -0.6898883213664403, -0.6158417155697584, -0.5486739763556145, -0.4884213258054433, -0.43494615752260013, -0.3879782746049074, -0.3471517731781084, -0.3120367476884447, -0.28216561944825536, -0.25705430680266916, -0.23621870424001923, -0.21918706200371885, -0.20550889574308306, -0.19476103829781666, -0.18655139581273894 ], [ -0.5880604834246372, -0.6362337304522321, -0.6892125544531938, -0.7471495381783739, -0.8101218788100663, -0.8781079007682491, -0.9509599337919996, -1.0283738073454103, -1.1098557617924698, -1.1946884479002589, -1.2818989686820825, -1.3702336033318336, -1.4581456298056417, -1.543803644536202, -1.6251266383768492, -1.6998483871379628, -1.7656095702449441, -1.8200742460887382, -1.8610664095519827, -1.886718215998933, -1.8956152466803533, -1.8869213923232182, -1.8604676890882512, -1.8167923789334754, -1.75712289739819, -1.6832972819345633, -1.5976330364289335, -1.502761507191876, -1.4014506794412596, -1.2964379226649023, -1.1902886951746248, -1.0852903471144202, -0.9833838374782156, -0.8861312617650375, -0.7947138007563428, -0.7099529809625934, -0.632347755432925, -0.5621205287141418, -0.4992664677280485, -0.4436018931893486, -0.3948089548229623, -0.35247499138866467, -0.3161258966414642, -0.28525345746366715, -0.25933704058835216, -0.2378602329383086, -0.22032313956899152, -0.20625105616862216, -0.19520019346180284, -0.18676106260978598 ], [ -0.6112263369092977, -0.662038821432376, -0.7178974857229772, -0.77896194125661, -0.8453123584932754, -0.9169247194741351, -0.9936422924749745, -1.0751436335759772, -1.16090800269235, -1.2501799795644595, -1.3419363423994022, -1.434859883648388, -1.5273264663764654, -1.617412519590194, -1.7029293317716185, -1.7814876037743146, -1.8505920407072733, -1.9077629966069383, -1.950679870437099, -1.9773373825389287, -1.9862017259357718, -1.9763508832936125, -1.9475817092955228, -1.9004650927741826, -1.8363331000809766, -1.7571924778994419, -1.6655748099695575, -1.5643470165459903, -1.4565108581119197, -1.3450168139152707, -1.2326099820808114, -1.121717187261377, -1.0143772721751625, -0.9122112240325674, -0.8164253813196526, -0.7278393211115342, -0.6469298625618796, -0.5738835380228211, -0.5086514156284456, -0.4510018798305826, -0.40056857956597924, -0.3568920677921361, -0.3194546287024891, -0.2877084429535022, -0.2610976354292891, -0.23907495155083347, -0.22111387753011869, -0.20671700558647554, -0.19542138241390106, -0.18680149248142386 ], [ -0.6336369062555569, -0.6869644790513038, -0.7455620429879748, -0.8095947913248288, -0.8791445451882784, -0.9541838509284081, -1.0345461847833062, -1.1198926222200134, -1.2096759382033584, -1.30310401940315, -1.3991057333315942, -1.4963039456914395, -1.5930019016322805, -1.6871900532533182, -1.7765798273387223, -1.858668442852462, -1.9308353902390405, -1.99046774255324, -2.0351085162322997, -2.062619667666595, -2.0713489512670846, -2.060286739388442, -2.0291932109073008, -1.9786703064779685, -1.9101546175968607, -1.8258222905364545, -1.728419146806755, -1.6210461761553316, -1.506935244194489, -1.3892441939673565, -1.2708903945522867, -1.154431765244101, -1.0419962938272302, -0.9352553858182494, -0.8354328677156906, -0.743339901533462, -0.6594261405409029, -0.5838387046063487, -0.516482429998276, -0.4570768575887243, -0.4052072230293069, -0.3603681345697496, -0.3219996368705693, -0.2895160101765324, -0.26232802314962433, -0.23985952588329185, -0.22155930599971208, -0.20690908751072645, -0.19542846602163344, -0.18667746913529504 ], [ -0.6551077972966216, -0.7107985322126837, -0.7719624894594507, -0.8387686314680428, -0.911298762766442, -0.9895206019072985, -1.0732568815627974, -1.162150885593901, -1.255629459497682, -1.352865452387829, -1.4527427924745528, -1.5538288859879046, -1.6543604792427875, -1.7522499872313453, -1.845118885109234, -1.9303626753421212, -2.005248496986936, -2.0670426270992994, -2.1131621132440377, -2.1413433142114013, -2.149819258348717, -2.1374937308125594, -2.104089849507478, -2.0502398077418045, -1.977483572456149, -1.888164419472244, -1.7852381334050025, -1.672033131000003, -1.5520026482081974, -1.4285017222968532, -1.304609135691607, -1.1830030397897495, -1.065890287531063, -0.9549834997264046, -0.8515162490058199, -0.7562852424477912, -0.6697087051643726, -0.5918917786714608, -0.5226919968772321, -0.46178021141358583, -0.4086943316654372, -0.3628847631253329, -0.3237514661553009, -0.290673192901892, -0.2630297951150464, -0.24021862551255713, -0.2216660563772006, -0.20683506649065153, -0.19522973852456738, -0.18639738723468136 ], [ -0.6754620759494273, -0.7333377086170293, -0.7968656688355124, -0.8662165368472977, -0.9414701119550168, -1.0225876100039915, -1.1093798516956506, -1.2014719016830981, -1.2982652574835563, -1.3988996067869988, -1.50221738833115, -1.6067358233260038, -1.710632472094867, -1.8117512296725606, -1.9076353806622577, -1.9955924213261291, -2.072791940799956, -2.1363939355334125, -2.183702257497655, -2.212337705386315, -2.220425614716614, -2.2067875449552306, -2.171111730456213, -2.1140606917870564, -2.037275205664785, -1.9432597570488626, -1.8351706277706898, -1.716551270895056, -1.5910621340805646, -1.4622407455636526, -1.3333130382961924, -1.2070642612797207, -1.0857685923817324, -0.9711702427339449, -0.8645050187597073, -0.7665498300845105, -0.6776882062731037, -0.5979818896684432, -0.5272412196188634, -0.46508964088806515, -0.4110198492269417, -0.36444068617747005, -0.32471494373467746, -0.29118884780302867, -0.26321428301987604, -0.2401649094656646, -0.22144728648609702, -0.20650801740978886, -0.19483779829427195, -0.18597311643952597 ], [ -0.6945334826406908, -0.754391492035344, -0.8200536299837821, -0.8916896524776425, -0.9693750900431802, -1.053062738627427, -1.1425501504072193, -1.2374436361739387, -1.3371199348339797, -1.44068761433304, -1.5469514498687198, -1.6543843971772578, -1.761113102271075, -1.8649237259427531, -1.9632946269387261, -2.05346064445863, -2.1325103824401825, -2.1975141132406164, -2.245677836629522, -2.2745200968301864, -2.282069414716273, -2.2670733302697856, -2.229190202612366, -2.16911368369665, -2.0885808413084392, -1.990247090191069, -1.8774539395190435, -1.753941382290809, -1.6235574127222374, -1.4900029425031538, -1.3566336480933252, -1.2263267967697247, -1.1014114387523881, -0.9836536660992968, -0.8742845399477379, -0.7740567797305992, -0.6833171376196108, -0.6020838075877122, -0.5301212881405595, -0.46700804644638416, -0.41219468531415093, -0.36505197604851625, -0.3249091628148921, -0.29108351433563384, -0.2629023454066348, -0.23971877488840865, -0.22092241561066417, -0.2059460628389651, -0.1942692975027056, -0.18541976919130132 ], [ -0.7121694233935597, -0.7737857016692166, -0.841327906731529, -0.9149623045985414, -0.9947576860497003, -1.0806563309553225, -1.1724410306072819, -1.269698732484572, -1.3717820144943635, -1.4777704857591165, -1.586435349061376, -1.696211664049248, -1.8051840989776415, -1.9110927503923119, -2.0113653963328955, -2.1031808366659526, -2.1835647930041366, -2.249516381418028, -2.298161831458974, -2.326934339368236, -2.3337807406978683, -2.3173869131433147, -2.2773891833640296, -2.21451348749057, -2.130586093015344, -2.0283981320787747, -1.9114549594173333, -1.7836685135047146, -1.6490494083569416, -1.5114387988538585, -1.374301967784103, -1.240591585898339, -1.112678591616975, -0.992341500870117, -0.8808004628497246, -0.7787807745594245, -0.6865916522778654, -0.6042089326276096, -0.5313538829451472, -0.46756353486017366, -0.4122504635493256, -0.3647516389072043, -0.3243669963322535, -0.2903888983022185, -0.26212385437133734, -0.23890786773653905, -0.22011667121318523, -0.2051719617439558, -0.19354457471613107, -0.18475537646659812 ], [ -0.7282336403393729, -0.7913656714785159, -0.8605132994475451, -0.9358364933243435, -1.0173947105061214, -1.1051175219987508, -1.1987714030364756, -1.2979233072915561, -1.401902278748702, -1.5097612193337318, -1.6202420164591185, -1.7317484609669351, -1.8423325460264197, -1.9497004622391891, -2.0512443870525683, -2.1441045524071076, -2.2252631352470003, -2.2916685319079924, -2.340388047034195, -2.3687901840172296, -2.374759626759476, -2.356937077643765, -2.3149471815897518, -2.249549095806101, -2.1626480879140146, -2.0571506280073075, -1.936698580407796, -1.8053455882610738, -1.6672352774141326, -1.5263224533742092, -1.3861596572212072, -1.2497572574914615, -1.1195149382149316, -0.9972147371318287, -0.8840607646199159, -0.7807489707955564, -0.6875516695654007, -0.6044048712972078, -0.5309904245761237, -0.46680849171052285, -0.4112385222831163, -0.3635886143319724, -0.3231341401271146, -0.28914698472854194, -0.2609168912299895, -0.23776636558226194, -0.21906045760911486, -0.20421255935005744, -0.1926871793917404, -0.18400047949951248 ], [ -0.7426084789240895, -0.8069989264525617, -0.8774610301834711, -0.9541456070974764, -1.0371001617647262, -1.1262393631675198, -1.2213118414860076, -1.32186397736858, -1.4272019802621059, -1.5363543839549323, -1.6480381140290246, -1.7606324215564804, -1.872166036795454, -1.980323538397379, -2.082476701174282, -2.17574508665328, -2.2570875187419093, -2.3234236834919644, -2.371785359640487, -2.3995005817207655, -2.4044155487797285, -2.385145920645265, -2.3413168468368313, -2.2737208136466442, -2.1843285520286813, -2.0761366290566676, -1.952890858730473, -1.8187516119018456, -1.6779621119063481, -1.5345614995529946, -1.3921655823609362, -1.2538240621111056, -1.1219523948995302, -0.9983280313582363, -0.8841351073556717, -0.7800396751034091, -0.686279159392268, -0.6027535409521585, -0.5291101478421885, -0.4648177235717954, -0.40922818405862915, -0.36162620322802086, -0.32126771111548424, -0.28740880544345493, -0.25932667492239725, -0.2363340539642338, -0.21778856541724112, -0.20309811438420744, -0.19172330207030241, -0.18317764908210554 ], [ -0.7551966873670217, -0.8205772767525993, -0.8920511744357227, -0.9697572401882818, -1.053728483408054, -1.1438625812332457, -1.2398889147416303, -1.3413328493990062, -1.447478593782632, -1.5573327643534984, -1.66959174507504, -1.7826169770071756, -1.8944232638481315, -2.0026857295704246, -2.1047708142390738, -2.197795332164062, -2.2787153703761334, -2.3444450361831874, -2.392006034157956, -2.418713094528777, -2.4224008901688, -2.4016827908314693, -2.3561975185485355, -2.2867696922375877, -2.1954189054637316, -2.0852026713791014, -1.9599342732248597, -1.8238424025191282, -1.6812337512664643, -1.5362005703350825, -1.3923968644806561, -1.252893029873613, -1.1201077449281356, -0.9958067087451583, -0.8811513958697084, -0.776778755213339, -0.6828946169582065, -0.5993678463007479, -0.5258170597242, -0.4616857340023497, -0.4063043567946809, -0.3589399823836841, -0.31883445238908603, -0.28523290643098953, -0.25740426154181417, -0.23465522853526632, -0.21633924860963116, -0.20186152583327988, -0.1906811284288612, -0.1823109472786517 ], [ -0.7659227046950945, -0.8320182776871511, -0.9041943076915526, -0.9825750398897113, -1.067176625739993, -1.1578778681206843, -1.2543877209750018, -1.356210321342478, -1.4626089194510086, -1.5725708242046548, -1.6847763728308112, -1.7975758829522497, -1.9089793847458716, -2.0166643883096445, -2.1180066793320163, -2.2101379327307544, -2.2900320994388017, -2.3546213830104916, -2.4009441216063276, -2.426330734208684, -2.4286331845690214, -2.4064864117666525, -2.359555569200955, -2.288694723288859, -2.1959535009280593, -2.084418838072187, -1.9579328366303947, -1.8207522486466814, -1.677209612153837, -1.5314180000980304, -1.3870440105042232, -1.2471601452192735, -1.114176350250375, -0.9898404069473535, -0.8752896460824928, -0.771133928834676, -0.6775518847933767, -0.5943870819935417, -0.5212359233840025, -0.45752325971323904, -0.4025645756578391, -0.3556152977145077, -0.3159086218366993, -0.28268357798584476, -0.2552050664383836, -0.2327774647474885, -0.21475320287390898, -0.2005374863573346, -0.18959013898714439, -0.18142534902389507 ], [ -0.7747334155474438, -0.8412660317523696, -0.9138323413835528, -0.9925395569305396, -1.077384884353819, -1.1682266743900156, -1.264752597008438, -1.366445665333018, -1.4725494997510942, -1.5820349293856169, -1.6935708478145153, -1.8055030922118895, -1.9158458450407445, -2.0222904276920417, -2.122236092932936, -2.212846396323407, -2.291133312598957, -2.354070691727575, -2.398740432843774, -2.422517967801859, -2.4233013708392783, -2.3997703425001515, -2.3516280774920593, -2.2797540600419772, -2.1862081499048034, -2.0740746965539674, -1.947185769982485, -1.8097857616445074, -1.6661952115014975, -1.520515524109172, -1.3764002761911478, -1.2369058115545837, -1.1044220777073004, -0.9806737280139837, -0.8667735268832691, -0.7633072693395105, -0.6704316245569232, -0.5879713228474417, -0.5155074890045563, -0.452453249796845, -0.3981156350896504, -0.35174445713049285, -0.31256966142861486, -0.2798289252979336, -0.25278727070313467, -0.23075030416594866, -0.2130724842165348, -0.19916159319758564, -0.18848037888598812, -0.1805461429347428 ], [ -0.781598371587198, -0.848291336709397, -0.9209385583668124, -0.9996281179409932, -1.084336546491481, -1.1749005526472158, -1.2709860680225336, -1.372055480324518, -1.4773344625917335, -1.5857804662075796, -1.6960556929638395, -1.8065081189215744, -1.915164769437534, -2.0197417383743286, -2.117675195903157, -2.2061767898730937, -2.2823158295868273, -2.34313051890936, -2.385772300482916, -2.4076896157501846, -2.406853527441888, -2.382009324191039, -2.3329077818012864, -2.2604488025402993, -2.1666830895706353, -2.0546618037372477, -1.9281698540222911, -1.7914003401698637, -1.6486250014387487, -1.50390175214559, -1.3608460508408993, -1.2224803946505605, -1.0911641895662667, -0.9685945822295016, -0.8558601771994545, -0.7535264424547197, -0.6617338676779271, -0.5802951530768545, -0.5087832551138511, -0.4466065145998408, -0.3930699906303978, -0.34742376471626923, -0.3088997585438238, -0.27673886684175186, -0.2502101805050585, -0.22862391105007052, -0.21133940983146093, -0.19776944951787767, -0.1873817235716182, -0.17969833161207283 ], [ -0.7865094995661502, -0.8530912092984753, -0.9255168904865195, -1.0038537798561893, -1.0880564278173606, -1.1779391628229252, -1.273146186705762, -1.3731202093066894, -1.4770710406349528, -1.5839461696641017, -1.6924060355720594, -1.8008073645010652, -1.9071984773093025, -2.009330704341762, -2.1046898223797053, -2.1905507754218614, -2.2640582698299894, -2.322336006852809, -2.3626288648172014, -2.3824834249117264, -2.379967013681133, -2.353907663813845, -2.304110696807926, -2.231490902536784, -2.138072035725025, -2.0268444474584095, -1.9015121095577836, -1.7661808599877855, -1.625039072701119, -1.4820708946638512, -1.3408296379673632, -1.204287089974205, -1.0747622951649047, -0.9539211634584657, -0.842829083139636, -0.7420353156789093, -0.6516701606146693, -0.5715411437475244, -0.5012200820503032, -0.44011729547255074, -0.3875421259762113, -0.34275054791220594, -0.30498141695587466, -0.2734831517612202, -0.2475326100228672, -0.22644775413406593, -0.20959548394004934, -0.19639578942512292, -0.18632316630202306, -0.17890605166262108 ], [ -0.7894803338581682, -0.8556878364039169, -0.9276005085342875, -1.0052634607369513, -1.088608425422028, -1.1774271053580159, -1.2713424790347085, -1.369779002769586, -1.4719331292587667, -1.5767461245333292, -1.6828817734137145, -1.7887121468350726, -1.8923150534357223, -1.991486979358208, -2.083775136785322, -2.1665317585656814, -2.2369933726445805, -2.2923880905783482, -2.3300750509616543, -2.3477200585083984, -2.3435052627445194, -2.3163541909400527, -2.2661309231997877, -2.1937594425692413, -2.1012211430960503, -1.9914219756682716, -1.8679557310618446, -1.7348091568941424, -1.5960560000640054, -1.4555787587711997, -1.3168462077612513, -1.1827636510613089, -1.0556006650246754, -0.9369886324897287, -0.8279708870616405, -0.7290846343336986, -0.640455849740716, -0.5618935025109486, -0.4929749854937564, -0.4331190080620675, -0.3816450796139468, -0.3378203271241582, -0.3008951524352177, -0.27012948479453236, -0.24481135627929151, -0.22426936639656714, -0.2078803894762309, -0.1950736583753212, -0.1853321521147442, -0.1781920326205031 ] ], "zauto": true, "zmax": 2.4286331845690214, "zmin": -2.4286331845690214 }, { "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.6414429903186597, 0.6388495675978075, 0.6360900720836029, 0.6331699745196496, 0.6300980397869691, 0.6268867156991109, 0.6235525112725057, 0.6201163613864225, 0.6166039746577209, 0.6130461573102711, 0.6094790956227656, 0.6059445616912421, 0.6024899819872507, 0.5991682786051504, 0.5960373657922972, 0.5931591693164063, 0.5905980452120023, 0.5884185179372565, 0.5866823409237986, 0.5854450001006896, 0.5847519160500901, 0.5846347244571404, 0.5851080932172252, 0.5861675378841611, 0.5877886102702605, 0.5899276662195101, 0.5925241995958672, 0.5955045071459885, 0.5987862706793136, 0.6022835430276821, 0.6059116145317052, 0.609591307185959, 0.613252368518783, 0.6168357856708401, 0.6202949839535423, 0.6235959936352208, 0.6267167535965441, 0.6296457687668935, 0.6323803534537458, 0.6349246813978423, 0.6372878332960223, 0.6394819911385274, 0.6415208826807578, 0.6434185342140436, 0.6451883496882221, 0.646842501944217, 0.6483915987294577, 0.649844572422695, 0.6512087370833519, 0.6524899579404715 ], [ 0.6390171126563033, 0.6361529074920051, 0.6331061142981202, 0.6298837724303858, 0.6264967578082998, 0.6229601812676143, 0.619293751861982, 0.6155221007841236, 0.6116750646720682, 0.6077879265240826, 0.6039016052271347, 0.6000627682349957, 0.5963238154354467, 0.5927426482457999, 0.5893821034536825, 0.5863089078066619, 0.5835920112859287, 0.581300198045173, 0.5794989617877238, 0.5782467629804929, 0.577590939746018, 0.5775636892228477, 0.5781786307617501, 0.5794284700960648, 0.5812841863097137, 0.5836959705855842, 0.5865958951313897, 0.5899020378764663, 0.5935235892180658, 0.5973663599741441, 0.6013381067606802, 0.605353178210665, 0.609336131614494, 0.6132241383312539, 0.6169681561747236, 0.6205329766851291, 0.6238963447113872, 0.6270473960963246, 0.6299846714197443, 0.6327139475828034, 0.6352460931973483, 0.637595106531297, 0.6397764433637376, 0.6418056924016413, 0.6436976123229132, 0.6454655099311717, 0.6471209147178021, 0.6486734913228697, 0.6501311268332887, 0.6515001326445443 ], [ 0.6364029301812882, 0.6332421766866386, 0.6298804147247643, 0.6263265070636849, 0.6225938047605096, 0.6187005597643477, 0.6146702701686123, 0.610531950673968, 0.6063203279587432, 0.6020759649791141, 0.5978453157017091, 0.5936806984275481, 0.5896401494278821, 0.585787080570447, 0.582189622010929, 0.57891949700654, 0.5760502680752771, 0.5736548297647565, 0.5718021143910155, 0.5705531208192522, 0.5699565517897378, 0.5700445136678715, 0.5708288451600717, 0.5722986546107949, 0.5744195367322006, 0.5771347202279374, 0.5803681126831669, 0.5840289238511674, 0.5880173277529757, 0.5922305111965097, 0.5965684626907942, 0.6009389623945145, 0.6052614030976946, 0.6094692623310883, 0.6135112215651303, 0.6173510677325207, 0.620966605487602, 0.6243478561365302, 0.6274948275212375, 0.630415117515976, 0.6331215718778519, 0.635630163939555, 0.6379582067450278, 0.640122953939258, 0.6421405986854696, 0.6440256431034611, 0.6457905855640895, 0.6474458594841604, 0.6489999536552012, 0.6504596483885877 ], [ 0.6335931100406528, 0.6301080250544662, 0.6264012988136811, 0.6224838802104073, 0.6183719870526985, 0.6140875416662651, 0.6096584978519954, 0.6051190458823695, 0.6005096942872407, 0.5958772380022599, 0.5912746268740728, 0.5867607407575798, 0.5824000531099004, 0.5782621238359549, 0.5744208107615306, 0.5709530422234573, 0.5679369722030514, 0.5654493669618129, 0.5635621641809166, 0.5623383019820869, 0.5618271131533672, 0.5620597743391926, 0.563045433088544, 0.5647686549331274, 0.5671887113792796, 0.5702409812343242, 0.5738404154069945, 0.5778866961440201, 0.5822704799707202, 0.586879997235377, 0.5916072997693301, 0.5963535769722166, 0.6010331548512382, 0.6055760044141733, 0.609928777165569, 0.61405453322218, 0.6179314232182873, 0.6215506308157732, 0.6249138864177909, 0.628030835132277, 0.630916493755665, 0.6335889721352672, 0.6360675718620589, 0.6383713163982551, 0.6405179163336605, 0.6425231346075859, 0.6444004905656903, 0.6461612283274147, 0.6478144724578501, 0.6493674998142592 ], [ 0.6305814246145566, 0.6267421841363628, 0.6226581018834305, 0.6183424741151803, 0.6138147969697237, 0.6091012394130905, 0.6042349561419836, 0.5992562172891435, 0.5942123496185976, 0.5891575030982235, 0.5841522709585598, 0.5792631925725998, 0.5745621493821826, 0.5701256216458204, 0.5660337132867568, 0.5623687896460521, 0.5592135341954914, 0.5566482444890599, 0.5547472770951845, 0.5535747191734456, 0.5531795861923164, 0.5535910686108164, 0.5548145065844295, 0.556828798232916, 0.5595858120898582, 0.5630120943587232, 0.567012799821525, 0.5714774213777054, 0.5762866318443943, 0.5813194346113505, 0.5864598538810826, 0.5916025486905757, 0.5966569551559858, 0.6015497948324408, 0.6062259927932352, 0.6106482038074074, 0.6147952417218846, 0.6186597498486391, 0.622245448691205, 0.6255642635086553, 0.6286335794524768, 0.631473806444676, 0.6341063681104964, 0.6365521657814894, 0.6388305149367405, 0.6409585106765907, 0.6429507522307623, 0.6448193435997145, 0.6465740862594789, 0.6482227875178346 ], [ 0.6273630838798688, 0.623137845253651, 0.6186415907604215, 0.6138902112144343, 0.60890690142713, 0.603722692352766, 0.598376760832766, 0.5929164784756703, 0.5873971854548401, 0.5818817046460155, 0.5764396391150562, 0.5711465107963891, 0.5660827889301631, 0.5613328162198779, 0.5569835713849934, 0.5531231256605077, 0.5498385885936099, 0.5472133327753612, 0.5453233688165285, 0.5442329191981491, 0.5439894864879388, 0.544618966756538, 0.5461215413909637, 0.5484691153803962, 0.5516049205611494, 0.5554455885239272, 0.5598855949007889, 0.5648035884222423, 0.5700698395528244, 0.5755539294863369, 0.5811318534563087, 0.5866918926456417, 0.5921388557101667, 0.5973965449760541, 0.6024085206721161, 0.6071373964428592, 0.611562995614572, 0.6156797363671558, 0.6194936066768723, 0.6230190495744159, 0.626276018039609, 0.6292873872694944, 0.6320768389321921, 0.6346672644602582, 0.637079677745763, 0.639332585110317, 0.6414417334114059, 0.6434201449338818, 0.645278348037076, 0.6470247221023047 ], [ 0.6239351079400635, 0.6192900911261771, 0.6143444541977915, 0.60911689939227, 0.6036347336706601, 0.5979344916836994, 0.592062262700511, 0.5860736603457553, 0.5800334048352923, 0.5740145295675614, 0.5680972691989563, 0.5623677209364918, 0.5569163780594916, 0.5518366011058188, 0.5472230156015254, 0.5431697221372757, 0.5397681114477095, 0.5371040422737119, 0.535254205965991, 0.5342816848228019, 0.5342309838376402, 0.5351231064970979, 0.536951457452772, 0.539679399816144, 0.5432401297800677, 0.5475391818520752, 0.5524594329367177, 0.5578680521876895, 0.5636245513727216, 0.5695889839055389, 0.5756294164530827, 0.5816280058084148, 0.5874852864667995, 0.5931225470766972, 0.5984824023692481, 0.6035278298915706, 0.6082400349157625, 0.6126155405718626, 0.6166628867348872, 0.6203992743752075, 0.6238474245955316, 0.6270328442561955, 0.629981611987186, 0.6327187268391156, 0.6352670023446164, 0.6376464447971867, 0.6398740273490744, 0.6419637602105431, 0.6439269592091742, 0.6457726265697455 ], [ 0.6202967370981556, 0.6151963800646582, 0.6097618636508368, 0.6040148677258715, 0.5979871971429116, 0.5917215395602863, 0.58527184283991, 0.5787032185043448, 0.5720913145553247, 0.5655211574596124, 0.5590855310727458, 0.5528830227301662, 0.5470159001804062, 0.5415879647600411, 0.5367024459809944, 0.532459874396843, 0.5289557357661528, 0.5262776325204791, 0.5245017178043381, 0.5236883500522179, 0.5238772148386704, 0.5250824917237056, 0.5272888906887572, 0.5304494402746015, 0.5344857288477309, 0.5392909142418151, 0.5447353302053325, 0.5506740667037631, 0.5569556002548701, 0.5634304563312962, 0.5699589874632971, 0.5764175885802316, 0.582702968268223, 0.5887343831259664, 0.594453977837199, 0.5998255365649259, 0.6048320414434963, 0.6094724617732028, 0.6137581775738705, 0.6177093880272848, 0.6213517819680241, 0.6247136649490578, 0.6278236547288026, 0.6307089818503133, 0.6333943700282383, 0.6359014258985201, 0.6382484405311677, 0.6404504948824563, 0.6425197651408026, 0.6444659376303045 ], [ 0.6164498742160768, 0.6108570789153762, 0.6048921030091637, 0.5985796948802622, 0.5919564884120434, 0.5850719550334662, 0.5779888820672343, 0.5707832391788417, 0.5635433355469479, 0.556368242214054, 0.5493655501887951, 0.5426486354964422, 0.5363336755435997, 0.5305366710903343, 0.5253706513425432, 0.520943083515796, 0.5173533210110735, 0.5146897868047865, 0.5130265839100954, 0.5124193973866935, 0.5129008766631854, 0.5144760636702427, 0.5171187207612306, 0.5207694867503296, 0.525336594098965, 0.5306994573771674, 0.5367149163010263, 0.5432254396993349, 0.5500682932372463, 0.5570845972565975, 0.5641273310847541, 0.5710676065740247, 0.5777988521832483, 0.5842388492252548, 0.5903298006332255, 0.5960367731034497, 0.6013449381685262, 0.6062560591176234, 0.6107846443549854, 0.6149541287753848, 0.6187933660412215, 0.6223336272669245, 0.6256062148703277, 0.6286407219844085, 0.6314639037682432, 0.6340990809168189, 0.6365659688268355, 0.6388808169449575, 0.6410567485289894, 0.6431042069139571 ], [ 0.6123995508292265, 0.6062760371848704, 0.5997372618283252, 0.5928110282337327, 0.5855390423576652, 0.5779781366526876, 0.5702009220181723, 0.5622956696279044, 0.5543652653175168, 0.5465251657140987, 0.5389004148446329, 0.53162193145827, 0.5248224089690786, 0.5186322278287183, 0.5131757198187292, 0.5085679390200487, 0.5049118373912264, 0.5022955185345628, 0.5007891686840199, 0.5004414108844182, 0.5012751761943068, 0.5032836161597035, 0.5064269213412005, 0.5106310092029462, 0.5157888379884152, 0.5217646453930858, 0.5284008475016264, 0.5355268369418209, 0.542968619784907, 0.5505581767803562, 0.5581415941433869, 0.5655853017265539, 0.5727800918908691, 0.5796428995687225, 0.5861165619016346, 0.5921679311140673, 0.5977847921411342, 0.6029720511126482, 0.6077476284318885, 0.6121384259383652, 0.6161766543585026, 0.6198967158169557, 0.6233327459769182, 0.6265168393372713, 0.6294779154927741, 0.6322411376009223, 0.634827768045651, 0.6372553388420695, 0.6395380220546266, 0.6416871035168891 ], [ 0.608154404542163, 0.6014611900645422, 0.5943039812739602, 0.5867134861673182, 0.5787365973248453, 0.5704379868680266, 0.561901032370117, 0.5532277978690033, 0.5445378276254096, 0.5359656077499906, 0.5276567177622916, 0.5197629113628601, 0.5124365813047783, 0.5058251989540788, 0.5000662979950453, 0.4952833621140491, 0.4915826296615867, 0.48905047933133666, 0.4877508771995812, 0.4877224616456465, 0.48897520988692866, 0.4914871255717468, 0.49520179598092207, 0.5000278028516025, 0.5058407597862444, 0.5124882608598911, 0.5197974305068873, 0.527584255713433, 0.5356635928540108, 0.5438587136252632, 0.5520094430031965, 0.5599782566103503, 0.5676540513052306, 0.5749536111240658, 0.5818210234755405, 0.5882254480342661, 0.5941577108184375, 0.599626203814201, 0.6046525327503179, 0.6092672870075556, 0.6135062186517315, 0.6174070228956513, 0.6210068193227031, 0.6243403500740214, 0.627438844298598, 0.6303294514712446, 0.6330351208104263, 0.6355747982495713, 0.6379638222364421, 0.6402144197622415 ], [ 0.603727150643007, 0.5964251723533642, 0.5886042352138819, 0.5802976284050689, 0.5715573701900339, 0.5624562961954973, 0.553089393021592, 0.5435740035013263, 0.5340485447149367, 0.5246694797125835, 0.5156064886977395, 0.5070360842346311, 0.499134247976236, 0.49206892413661796, 0.4859932615132662, 0.4810402740951414, 0.4773191289652682, 0.4749127420847143, 0.473876009007939, 0.47423400242175034, 0.47597984686453676, 0.47907255980001223, 0.48343565279661127, 0.48895748105016307, 0.49549412729358805, 0.5028750950645606, 0.510911467396457, 0.5194056723076569, 0.5281617235294301, 0.5369948039638446, 0.5457392730018846, 0.5542545084686462, 0.5624283439934494, 0.5701781659348775, 0.5774499575966584, 0.5842157163012675, 0.5904697306868317, 0.5962242072779734, 0.6015046931747896, 0.6063456697674648, 0.6107866026704233, 0.6148686360072338, 0.6186320241875869, 0.6221143097358803, 0.625349188182382, 0.6283659546276813, 0.6311894024046336, 0.6338400403249265, 0.6363345069485213, 0.6386860824615823 ], [ 0.5991350257390328, 0.5911859185588337, 0.5826561205454719, 0.5735809695201808, 0.5640173206551855, 0.5540462746140902, 0.5437750910555874, 0.5333377953777861, 0.5228939656237177, 0.5126252725254932, 0.502729581850807, 0.49341282280263604, 0.4848793183868281, 0.4773217176397681, 0.470911867767982, 0.4657937607290308, 0.4620790860473091, 0.45984513553644235, 0.45913418753654456, 0.45995334544014543, 0.46227418029495543, 0.466032217624068, 0.4711269533745407, 0.47742337525133344, 0.4847557953142032, 0.49293427783466487, 0.5017533101102771, 0.5110018480862333, 0.520473612505714, 0.5299765337927871, 0.5393404753024593, 0.548422700385184, 0.5571108941366456, 0.5653238431230598, 0.5730100875153865, 0.5801449870566908, 0.5867266961309621, 0.5927715396914578, 0.5983092363735795, 0.6033783410463817, 0.6080221876731697, 0.6122855148141082, 0.6162118598791172, 0.6198417228858449, 0.6232114328595586, 0.626352604365025, 0.629292048981051, 0.6320520045981761, 0.634650559507682, 0.6371021722776822 ], [ 0.5944001757428343, 0.58576721688135, 0.576484620914651, 0.5665889984584753, 0.5561414699774183, 0.5452312028201113, 0.5339781185069213, 0.5225341413270504, 0.5110822789149714, 0.49983287081775624, 0.48901658991316205, 0.4788742789430325, 0.46964440468584356, 0.4615496332409104, 0.45478447336483147, 0.44950581307786397, 0.4458274067268623, 0.44381821191420623, 0.44350344360321, 0.44486679236927784, 0.44785259934812277, 0.4523676293497959, 0.45828294412495724, 0.4654368300579816, 0.47363963348496446, 0.4826808398562506, 0.49233808313971006, 0.502387252806217, 0.5126126200832133, 0.5228159411946876, 0.5328237329085187, 0.5424922468237998, 0.5517100014314296, 0.5603980076143746, 0.5685080199990844, 0.57601926279021, 0.5829341257317369, 0.5892733186030813, 0.595070925425123, 0.6003697245775788, 0.6052170490063912, 0.6096613615685044, 0.613749623882115, 0.6175254516257239, 0.6210279821527744, 0.6242913358866238, 0.627344532126004, 0.6302117201280715, 0.632912602538163, 0.635462953955327 ], [ 0.5895499550845765, 0.5801991766779034, 0.5701222966509598, 0.5593561520657104, 0.5479652211719908, 0.5360461555737901, 0.5237315364943461, 0.5111920777226671, 0.49863632733061625, 0.4863068837763834, 0.47447236509256946, 0.46341496021638856, 0.4534143496059682, 0.4447299033094736, 0.4375839183470181, 0.43214874153388333, 0.4285396835136005, 0.42681393780833593, 0.4269740334697447, 0.42897347758971377, 0.4327225148593792, 0.438093019402945, 0.4449227397527998, 0.45301983829588727, 0.46216869249488013, 0.4721374295986199, 0.48268699710978713, 0.4935810337224908, 0.5045955520569838, 0.5155274759961714, 0.526201303498033, 0.5364734806032572, 0.54623438529857, 0.5554080780218771, 0.5639501580420003, 0.5718441719638522, 0.5790970628007419, 0.5857341389706955, 0.5917939950556582, 0.5973237414525479, 0.6023748083068267, 0.6069994901889285, 0.6112483015789804, 0.6151681284306831, 0.6188010951874604, 0.622184023989939, 0.6253483441825585, 0.6283203127912367, 0.631121424914388, 0.6337689201494734 ], [ 0.5846170991355361, 0.5745185609362726, 0.5636098415040149, 0.5519266733418335, 0.5395356051257743, 0.5265397221842469, 0.5130837418322178, 0.49935755910950813, 0.48559702150627254, 0.4720805351254076, 0.4591202345878222, 0.4470470896452307, 0.4361905731618158, 0.42685519307073505, 0.4192977102338664, 0.41370938694947595, 0.4102065395024323, 0.4088302136167515, 0.4095530758505133, 0.4122899747174101, 0.41690874374286313, 0.4232392886309204, 0.4310807757422012, 0.44020790462454185, 0.4503774832370831, 0.4613360583031495, 0.47282863510561807, 0.48460792641303274, 0.4964432740109532, 0.5081283860669835, 0.5194872338200489, 0.5303777396285374, 0.5406931781603207, 0.5503614528189403, 0.5593425804131973, 0.5676248181451318, 0.5752199072093536, 0.5821578984826838, 0.588481979416588, 0.5942436477562312, 0.5994984869670235, 0.6043027001600676, 0.608710463855738, 0.612772079443786, 0.6165328361376097, 0.6200324589116369, 0.6233049988683367, 0.6263790285402833, 0.6292780249087941, 0.6320208512891385 ], [ 0.5796397282628477, 0.5687689281824996, 0.5569964345677214, 0.544355266223286, 0.5309123501531077, 0.5167756141691097, 0.5021007311170849, 0.48709646577805643, 0.4720271140983839, 0.45721013424296825, 0.44300699949741135, 0.4298058952417957, 0.4179964195197873, 0.4079388604184676, 0.3999331899480059, 0.39419429701394615, 0.3908389374032296, 0.3898863516439473, 0.3912700985670351, 0.3948556987300586, 0.4004585151986276, 0.40785841296409703, 0.41681047556910894, 0.4270529543464313, 0.4383141781292596, 0.4503196917869151, 0.4628000506992309, 0.47549897146182946, 0.4881811440898159, 0.5006389444383991, 0.5126974408306096, 0.5242173460603011, 0.5350958346147175, 0.5452653728002754, 0.5546908746957722, 0.5633655968891164, 0.5713062266628445, 0.5785476118603726, 0.5851375365801477, 0.5911318751575528, 0.5965903675322323, 0.6015731622677557, 0.6061381795235051, 0.6103392647629857, 0.6142250424364037, 0.6178383414887687, 0.6212160515125603, 0.624389276102705, 0.6273836721836992, 0.6302198933329739 ], [ 0.5746611406798967, 0.5630005233973454, 0.5503398051792707, 0.5367074396848185, 0.5221686423865811, 0.5068340070398347, 0.49086820189381775, 0.4744976243736519, 0.45801523561373075, 0.4417801071942379, 0.426208793083299, 0.4117559989932264, 0.3988837397210493, 0.38802148373604073, 0.3795239375187645, 0.37363610625321597, 0.37047466462638734, 0.3700296802674152, 0.37218359179333804, 0.3767391049689157, 0.3834469963176298, 0.3920280670144953, 0.4021878830097978, 0.41362601484211586, 0.42604246903894444, 0.4391434504906882, 0.4526474760179035, 0.4662918744492591, 0.4798391382007407, 0.49308242273868075, 0.505849590973354, 0.5180054298687291, 0.52945192433481, 0.5401266997097541, 0.5499999126966331, 0.5590699758609791, 0.5673585476640584, 0.5749052176890602, 0.5817622754664934, 0.5879898814400015, 0.5936518705843437, 0.5988123237542643, 0.6035329497642846, 0.6078712422634114, 0.6118793171383716, 0.615603302360248, 0.6190831426359881, 0.6223526918590941, 0.6254399904358859, 0.6283676543784779 ], [ 0.5697293534814938, 0.5572698566447933, 0.5437059218811077, 0.5290594175920605, 0.5133914136605058, 0.49681241343404414, 0.4794932593492373, 0.46167560699707383, 0.44367999663820523, 0.4259084834651671, 0.40883782925610906, 0.39299908497522806, 0.3789410104775393, 0.36717902140092523, 0.35813778955959225, 0.3521014661964613, 0.349186292938393, 0.34934349226789774, 0.3523886628658203, 0.3580446266828843, 0.3659831291131212, 0.37585615305458625, 0.38731488370843403, 0.4000192900394469, 0.4136427359583307, 0.427875125414879, 0.4424264063895494, 0.4570308309948681, 0.47145153652914334, 0.4854847177070356, 0.49896271356362953, 0.511755554593557, 0.5237707825513788, 0.5349515964759506, 0.5452735619180022, 0.5547402376687142, 0.5633781295762029, 0.5712313837447018, 0.5783565926732472, 0.5848180191369412, 0.590683455348552, 0.596020840730514, 0.6008956716975289, 0.6053691610813959, 0.6094970504551693, 0.6133289490719949, 0.6169080675886878, 0.6202712285271089, 0.6234490613275153, 0.6264663198849144 ], [ 0.5648963582073049, 0.5516389132601791, 0.5371682168126586, 0.5214974812216022, 0.5046809671718205, 0.4868258329326121, 0.46810541159325597, 0.44877295272171863, 0.4291738128247933, 0.4097525853935132, 0.39104996313761825, 0.3736829951410064, 0.3583033498393819, 0.3455330990864316, 0.33588700565300966, 0.32970103264830075, 0.327091035456685, 0.3279566129628863, 0.3320258563308744, 0.33892017541417324, 0.3482153982530012, 0.3594847305658708, 0.37232147800044674, 0.3863471276798372, 0.40121210387756295, 0.4165946776546516, 0.4322008144120733, 0.4477656412377799, 0.46305605156216034, 0.47787355233915524, 0.4920564993731448, 0.5054811169505083, 0.5180610037587537, 0.5297451040790965, 0.5405143342962822, 0.5503771905773371, 0.5593647293699882, 0.5675253197036855, 0.5749195285792806, 0.5816154315141141, 0.5876845526749201, 0.5931985455698061, 0.5982266376336518, 0.6028337900309221, 0.6070794743848704, 0.6110169436686756, 0.6146928735609173, 0.6181472678098866, 0.6214135488452651, 0.6245187847919182 ], [ 0.5602170700920643, 0.5461739527555002, 0.5308062678414082, 0.5141166144400318, 0.49614973715957084, 0.4770058791751156, 0.4568564446881989, 0.4359613023526065, 0.4146858939827053, 0.3935144165113882, 0.37305275768027635, 0.3540122703133708, 0.3371648047772866, 0.3232640696525106, 0.3129413431273218, 0.30660224014194115, 0.30436308200015194, 0.3060549014484649, 0.3112910942431314, 0.3195648004171623, 0.33033686936640017, 0.3430925820648024, 0.35736637152691814, 0.372745259019779, 0.3888629098063025, 0.4053923791791286, 0.42204126307079226, 0.43854996762620563, 0.4546923108239625, 0.4702772045652505, 0.4851502627537906, 0.4991945142903983, 0.5123297819146729, 0.5245106235310719, 0.535722983393538, 0.5459798594549007, 0.5553163696116089, 0.5637846093752374, 0.571448654016516, 0.5783799860387753, 0.5846535391573281, 0.5903444565188178, 0.5955255756417974, 0.6002655849545033, 0.6046277528542932, 0.6086691117035975, 0.6124399835468584, 0.6159837554033587, 0.6193368414825807, 0.6225287991236975 ], [ 0.5557479695517159, 0.5409438769089027, 0.5247038861510794, 0.5070183441134253, 0.48791998834035955, 0.46749856318220706, 0.4459186884413204, 0.42344076588652074, 0.40044355125405734, 0.3774448505291724, 0.3551133175959828, 0.3342598079697099, 0.3157931468533693, 0.3006275887933464, 0.28954505246016854, 0.2830458633961846, 0.28124914692015635, 0.2838949381134342, 0.2904464045187313, 0.30023567611328417, 0.3125884037279901, 0.32689531202266275, 0.34263494385443893, 0.3593676030691109, 0.37671909729791087, 0.39436529467472875, 0.4120217494031627, 0.42943865466744835, 0.4463996664443155, 0.4627227658684167, 0.4782615851543012, 0.492906104318483, 0.5065821231328554, 0.5192493280229792, 0.5308980730141484, 0.5415451774391407, 0.5512291276360002, 0.5600050779220819, 0.5679400005877299, 0.575108256108242, 0.5815877609307183, 0.5874568359117313, 0.592791735757105, 0.5976647973948425, 0.6021431079748144, 0.6062875816640415, 0.6101523448623167, 0.6137843547909151, 0.6172232077322173, 0.6205011218556252 ], [ 0.55154546033959, 0.5360181817063072, 0.5189465998617843, 0.5003077173422166, 0.4801203074312325, 0.45846043614413223, 0.4354811489359206, 0.41143669018767115, 0.3867106393072101, 0.3618451570400352, 0.33756440010746563, 0.3147785429286118, 0.294546878299026, 0.27797529441352553, 0.2660389506909641, 0.25936756775768477, 0.2580879625885892, 0.26181979577443565, 0.2698304425353034, 0.2812528320209171, 0.2952583314684686, 0.31114149106857003, 0.3283334992641616, 0.3463799310718309, 0.3649101453691073, 0.3836119255197282, 0.40221523136604925, 0.4204841353532657, 0.4382143898424336, 0.45523399895924826, 0.4714047078203262, 0.4866230179236202, 0.5008199829065738, 0.5139595485372155, 0.5260355527202586, 0.5370677071293009, 0.5470969691259998, 0.5561807126026226, 0.5643880491676538, 0.571795562098202, 0.5784836151257915, 0.5845333022052102, 0.5900240245645847, 0.5950316251107121, 0.5996269809883176, 0.6038749517142631, 0.6078335977216976, 0.6115536142126209, 0.6150779584326411, 0.6184416760069877 ], [ 0.5476639999120697, 0.5314645520713294, 0.5136185853524541, 0.49408943736340366, 0.4728808358401695, 0.45005289323931724, 0.42574304403889274, 0.4001929366562265, 0.3737816464420964, 0.34706370028916894, 0.32080614210684666, 0.29601056162798384, 0.2738927310511364, 0.25577923964616817, 0.2428883106089732, 0.23602537368005497, 0.23533385469340345, 0.2402756877949843, 0.2498664343413174, 0.2629988227176596, 0.2786760921847552, 0.29610304745686544, 0.3146787195951965, 0.3339498697387382, 0.35356237390255735, 0.37322506177233195, 0.3926879791738717, 0.41173209609654376, 0.43016641942992023, 0.44782894279801067, 0.4645887973717069, 0.4803479247448575, 0.49504140639060124, 0.5086361940338348, 0.5211283874612945, 0.5325394276098924, 0.5429116538485512, 0.5523036579988365, 0.5607857920598062, 0.568436082656533, 0.5753366960652896, 0.5815709996281186, 0.5872211891220472, 0.5923664029736608, 0.5970812243896003, 0.6014344785492909, 0.6054882573172592, 0.6092971392307859, 0.6129076076810193, 0.6163576962548408 ], [ 0.5441540911045146, 0.5273462093707869, 0.5087991742668476, 0.4884632909074612, 0.4663273466697851, 0.4424346374910457, 0.4169044941301817, 0.3899609319653243, 0.36196985528027686, 0.3334850101309248, 0.3052992126355601, 0.2784885141789888, 0.2544187974874745, 0.23465681030460908, 0.22071506129555257, 0.21363200746950678, 0.21358221256781434, 0.21982553128463606, 0.23106262840446154, 0.24590886058113479, 0.26319667212748626, 0.2820581384557321, 0.3018816157026963, 0.32223318646945004, 0.34278789058483516, 0.36328322519272155, 0.38349314228001563, 0.4032167492068903, 0.4222759512253197, 0.4405174954999302, 0.45781626252935637, 0.4740778868624219, 0.48923977342826097, 0.5032702821241578, 0.5161662978080646, 0.5279496292110019, 0.5386627444167672, 0.5483643081070444, 0.5571248845014217, 0.5650230465460788, 0.5721420120748012, 0.5785668276321363, 0.5843820493313467, 0.5896698308037769, 0.5945083197030112, 0.5989702811877953, 0.6031219009784367, 0.6070217615892962, 0.6107200224710075, 0.6142578589983088 ], [ 0.541060255941739, 0.5237191733592593, 0.5045591475219504, 0.4835191321751274, 0.46057447432338683, 0.43575260752489425, 0.40915454088826825, 0.38098425705181227, 0.3515884125897568, 0.32150832676891933, 0.29154382873681756, 0.26282069332769775, 0.2368326189916771, 0.21538577613146592, 0.20032584980488793, 0.19298457815076236, 0.19358821328550135, 0.20114968083186877, 0.21399644477693647, 0.23044532101646245, 0.24917270955220397, 0.269265539841987, 0.29012622497778295, 0.3113571156520995, 0.33267205447929654, 0.3538415100838523, 0.37466420484621016, 0.3949562437672023, 0.41455027714293075, 0.43329927694945003, 0.451081343822316, 0.46780346223178965, 0.4834032655769737, 0.49784866521031795, 0.5111356723873355, 0.5232849605688343, 0.5343377500470456, 0.5443515177318196, 0.5533959005534822, 0.5615490141788194, 0.5688942772733585, 0.5755177306049161, 0.5815057760359051, 0.5869432328571393, 0.5919116136062476, 0.5964875508660853, 0.6007413504834532, 0.6047356937473157, 0.6085245501020627, 0.6121523839035 ], [ 0.538419136844821, 0.5206296437788505, 0.5009571043410642, 0.479331822181317, 0.4557186343417446, 0.4301320581636312, 0.4026572894941785, 0.373479480172575, 0.34292439559000465, 0.3115139505513908, 0.28003925318621126, 0.24964830484848016, 0.2219255362323258, 0.1988856944498341, 0.18271120624017134, 0.17506775709149913, 0.17625612049971898, 0.18501460231697292, 0.19926955362740797, 0.21705062637330474, 0.2369129889598883, 0.2579316374674416, 0.2795449264191331, 0.3014026019342143, 0.3232610431811307, 0.344923062340725, 0.3662092582743059, 0.38694889227295115, 0.40698135698006643, 0.42616211622443473, 0.44436921988991934, 0.46150822953453313, 0.4775146763262719, 0.49235403799953464, 0.5060197136526259, 0.5185296714777583, 0.5299224359260326, 0.5402529541059882, 0.5495887067728968, 0.5580062562484913, 0.5655882809175902, 0.5724210465139966, 0.5785922103889389, 0.5841888420641549, 0.5892955636521169, 0.5939927569625493, 0.5983548385959331, 0.6024486577123837, 0.6063321118948316, 0.610053095680901 ], [ 0.5362578819131787, 0.5181117321861192, 0.4980362468347118, 0.47595662686781365, 0.45183137473467555, 0.4256668712147495, 0.39753769347349727, 0.3676152419655218, 0.33620816579917, 0.30381905943388815, 0.27122237772261715, 0.2395657382664418, 0.21048021675307724, 0.18612591929027283, 0.1689647358893799, 0.16097837264878898, 0.16255577929318285, 0.17218172716743393, 0.18742212302369085, 0.20607732899851747, 0.2266307708421044, 0.2481744617642131, 0.2701942987199634, 0.29238849443637877, 0.3145517294817227, 0.3365127520889687, 0.35810716919043634, 0.3791709532530397, 0.3995446291571787, 0.41908150751552864, 0.43765586446910476, 0.455168894670294, 0.47155167512478025, 0.4867653035806345, 0.5007988713375497, 0.5136660898493668, 0.5254013248145805, 0.5360556064734783, 0.5456929643922726, 0.5543872345347177, 0.5622193347923116, 0.5692749113016808, 0.5756422184374609, 0.5814101007960565, 0.5866659838209345, 0.5914938381830329, 0.5959721485214213, 0.6001719767294494, 0.6041552519651445, 0.6079734353202499 ], [ 0.5345929646196207, 0.516185772590469, 0.49582193129247865, 0.4734256190768383, 0.4489540128876987, 0.42241144348157916, 0.3938691078649263, 0.3634929095088248, 0.3315830126991645, 0.29862995066128395, 0.26539335363950883, 0.2330084665526948, 0.2031125751176803, 0.17792532808114217, 0.16006025860307044, 0.15170291027548655, 0.1533184273736767, 0.16323895581080444, 0.17880953413571327, 0.19770619281001497, 0.21839262801339082, 0.23999292893031282, 0.26203717248208697, 0.2842614476453298, 0.3064863261667461, 0.3285546413686722, 0.3503066840476504, 0.3715766460873919, 0.39219949946233557, 0.4120213206720329, 0.4309088418411021, 0.4487561037888614, 0.46548760991079635, 0.48105835675166203, 0.4954516049522136, 0.508675361993119, 0.5207584110291391, 0.5317464665845673, 0.5416987670410522, 0.5506851869959247, 0.5587837967344226, 0.5660787139180722, 0.5726580733883684, 0.5786119689154992, 0.5840302795749492, 0.5890003681272337, 0.5936047152944078, 0.5979186190847595, 0.6020081308472274, 0.6059284113229628 ], [ 0.5334295618287342, 0.5148574047205453, 0.494320293863682, 0.47174558095046676, 0.44709437395075446, 0.4203755178009439, 0.39166493834337884, 0.36113282481621567, 0.32908209728706966, 0.29600280719421773, 0.2626483641597904, 0.23013895927075065, 0.2000859372948411, 0.17467601353010262, 0.15649965061470608, 0.14775182667481246, 0.1489315010986572, 0.15839074861310787, 0.1734774919153994, 0.19187880673741925, 0.21208467971945405, 0.2332513883238864, 0.2549368175268563, 0.2768950422876994, 0.29895390013275897, 0.32095451458026447, 0.34272923800747734, 0.3641008628257833, 0.38489178917643313, 0.4049359375531772, 0.42408914658636826, 0.44223603049211674, 0.4592928934837067, 0.47520731658348814, 0.4899554986529867, 0.5035384731644601, 0.5159780983916654, 0.5273133868666219, 0.5375974163778583, 0.5468948156514045, 0.5552796655688593, 0.5628335947795957, 0.5696438565971238, 0.5758012291015309, 0.5813976619612266, 0.5865236848353488, 0.5912656791336248, 0.5957031847857136, 0.5999064556490157, 0.6039344836631468 ], [ 0.5327615687206049, 0.514117556886395, 0.49351815921448255, 0.47089775620988805, 0.44622622954889646, 0.41952300983090646, 0.3908762893719073, 0.36046969012343766, 0.3286194776478611, 0.2958262718824423, 0.26284579433802746, 0.23078159272692178, 0.20119024255015225, 0.17613883720783982, 0.15802409956309568, 0.14885037169877985, 0.1490989611306636, 0.15731985485575425, 0.17110017942499814, 0.18827792652783978, 0.2074125174895798, 0.22768746274836982, 0.24866726571662331, 0.2701001816600374, 0.2917998259136439, 0.3135880228432783, 0.335275740005392, 0.3566646997211696, 0.3775581889673603, 0.39777382509256726, 0.4171540851914562, 0.4355727323930517, 0.452936971041654, 0.46918620853031295, 0.4842887308144575, 0.4982375511212512, 0.5110463637755431, 0.5227461157161928, 0.5333823324089475, 0.5430130713968936, 0.5517072393990188, 0.5595429780414914, 0.5666058668298257, 0.5729867788353438, 0.5787793305493449, 0.5840769749294702, 0.588969882500558, 0.593541828144394, 0.5978673411344279, 0.602009376237471 ], [ 0.5325722700055519, 0.5139433643288339, 0.4933842982264102, 0.4708395744377176, 0.44629166536473625, 0.41977526667995835, 0.39139646513913084, 0.36135881423533023, 0.32999882246614887, 0.2978336402936733, 0.26562320893300373, 0.23444571225770938, 0.20577140418261675, 0.1814763246507273, 0.16364539002429992, 0.1539687027297785, 0.15287860698958128, 0.15923413903315176, 0.17102996533620168, 0.18637353040290794, 0.20394076117988488, 0.22294478314947422, 0.24293990599545714, 0.26364644696624534, 0.2848427556958301, 0.3063140315122944, 0.3278369762117518, 0.34918351575983697, 0.3701324905668241, 0.3904823754170211, 0.4100610789729715, 0.42873119553784544, 0.44639081661595476, 0.4629710641853378, 0.47843187929994097, 0.49275744073731537, 0.5059521371844928, 0.5180375011388206, 0.5290500887192096, 0.5390400246640052, 0.5480698251539304, 0.5562131252039507, 0.5635530256454394, 0.5701798978627342, 0.576188615483254, 0.5816753044126828, 0.5867338048620936, 0.5914521122185588, 0.5959090995471107, 0.6001718173113342 ], [ 0.5328356219352718, 0.5142999575638498, 0.49387193911875843, 0.4715082053912455, 0.44720616253586987, 0.42101842396003136, 0.3930717927774008, 0.36359235265601847, 0.33293835892882334, 0.3016421966164801, 0.2704609441375156, 0.2404300948056427, 0.2129014594938214, 0.1895139633011272, 0.17199488322409015, 0.1616942216319693, 0.1589924321802734, 0.16308478835612658, 0.1724426345442143, 0.18552148618319814, 0.20116300356127234, 0.21862442889101213, 0.23744222545213092, 0.2572916113810003, 0.277897160653492, 0.2989917954817412, 0.32030665222905474, 0.34157682244087406, 0.36255310760887893, 0.38301367585566254, 0.40277216094098534, 0.4216809174110537, 0.43962986299977574, 0.4565423787707274, 0.4723700243797929, 0.4870875238268152, 0.5006888783743662, 0.5131848448982496, 0.5246015551941181, 0.5349798045081597, 0.5443744823383219, 0.5528536940479684, 0.5604972646705241, 0.5673944792744489, 0.5736410695399725, 0.5793355899308642, 0.584575431838565, 0.5894527944763241, 0.5940509609256985, 0.5984412117260225 ], [ 0.5335180387469883, 0.5151429604132033, 0.4949222858266939, 0.47282555683697364, 0.44886576981782506, 0.42311382549644055, 0.3957169840557593, 0.3669223460023153, 0.33710608470957965, 0.3068080617515758, 0.27676882924553214, 0.24796050480666285, 0.22159203275116826, 0.19905027479862028, 0.18171951200035866, 0.17064934903173465, 0.1661825088427416, 0.16782280243991887, 0.17450904193717126, 0.18507906143092484, 0.19858267509225105, 0.2143437824575254, 0.23188173745876306, 0.25081479898489817, 0.2707984057261865, 0.2914998744646704, 0.3125956291720083, 0.33377900818068357, 0.3547712051058545, 0.3753307510575555, 0.3952588642901704, 0.4143998327519914, 0.43263724026261857, 0.44988784651762515, 0.46609509633239926, 0.48122374589923533, 0.49525631890020294, 0.5081913791870983, 0.5200431217530697, 0.5308415810126043, 0.5406327778443046, 0.5494782825622208, 0.5574538779731077, 0.5646472114541738, 0.5711545016946414, 0.5770765061810913, 0.5825140583189632, 0.5875635467173812, 0.5923127298465205, 0.5968372531084681 ], [ 0.534580529401627, 0.5164214648206861, 0.49646868584694037, 0.47470415547214245, 0.45115546854893895, 0.425910029062181, 0.39913253583406827, 0.3710861912767536, 0.34215737866262874, 0.31288198623979413, 0.2839685865679146, 0.25630881309623604, 0.23095835884092153, 0.20906471573434396, 0.191718373311215, 0.17973304176988303, 0.17343188871582402, 0.17257868679631508, 0.17652946567244596, 0.18450292455100809, 0.19578549836420772, 0.20979118056724705, 0.22602766641731936, 0.24404831013560077, 0.26342693153407215, 0.283754408624548, 0.3046457064458144, 0.3257497690101829, 0.3467586756122084, 0.36741377115309826, 0.38750717219587344, 0.4068783696086802, 0.42540718631957836, 0.44300528397819766, 0.45960840429798483, 0.47517080020309743, 0.48966232650889024, 0.5030678259828683, 0.515387965676626, 0.5266405565287497, 0.5368615213079692, 0.5461049323091737, 0.5544418196524704, 0.5619576969911865, 0.5687489442037038, 0.5749183270177922, 0.5805700280322381, 0.5858046159307965, 0.5907143886437027, 0.595379488665742 ], [ 0.5359810023100686, 0.5180812098559471, 0.49844103480899626, 0.4770532771219114, 0.4539577418290878, 0.429254830367001, 0.40312164180006765, 0.37583041420204405, 0.347768207709925, 0.3194549716546425, 0.2915543817679924, 0.2648683986044615, 0.24030372676062592, 0.2187992073907789, 0.20121239359578072, 0.1881851735352935, 0.1800366366959325, 0.17674084963897363, 0.17800768725290983, 0.18341265847708538, 0.1924917291860521, 0.2047680926229276, 0.21974446728982217, 0.23690381781188502, 0.25572843478888485, 0.2757245358693514, 0.29644139807022835, 0.317483180372745, 0.33851524605304295, 0.3592657537387537, 0.37952222230934096, 0.3991234374899226, 0.4179484988594447, 0.4359056495595992, 0.45292327511892644, 0.4689444073894397, 0.48392483460201496, 0.4978339847427263, 0.510657311745644, 0.5223989200178026, 0.5330834418280002, 0.5427565596883539, 0.551483923263009, 0.5593484933084175, 0.5664465456203113, 0.5728826995510161, 0.5787644147704908, 0.5841964361087079, 0.5892756608476554, 0.5940868529587112 ], [ 0.5376765499366651, 0.5200676890813417, 0.5007700106684101, 0.47978472167911357, 0.45716044605835043, 0.4330059582791543, 0.4075046153447999, 0.38092983196701874, 0.35365990012130716, 0.32618876619645976, 0.2991272016823835, 0.2731869900859417, 0.24914119373014104, 0.2277588136955125, 0.20972343799319318, 0.1955591017563207, 0.1855920825846232, 0.17996329188416613, 0.17867373848946388, 0.1816193832332882, 0.18858481284941592, 0.19921493973183874, 0.21301362515164196, 0.22938998632395236, 0.24772775469501934, 0.26744325648344236, 0.2880184993403325, 0.30901458186232134, 0.3300741593386087, 0.3509173936606074, 0.37133252666085365, 0.39116218803739383, 0.4102879149983174, 0.42861606889263093, 0.4460677214624764, 0.46257361331786606, 0.4780737610151549, 0.4925202757856809, 0.5058816181865249, 0.5181467056467058, 0.5293277571865881, 0.5394612771474775, 0.5486070161071577, 0.5568450584370527, 0.5642713825349385, 0.5709923521005075, 0.5771186527941664, 0.5827592037954296, 0.588015551508743, 0.5929771899478057 ], [ 0.539625540561704, 0.5223289402730534, 0.5033907877956588, 0.4828177385495886, 0.46066329542506074, 0.43703950455169055, 0.4121296162285836, 0.38620071860419075, 0.3596143257338015, 0.3328314616314731, 0.3064073035489426, 0.2809699955225053, 0.2571806218689419, 0.23567817792433912, 0.21702379032609953, 0.2016663760090311, 0.18994730035670945, 0.18213825299509928, 0.17847372108640622, 0.17912694603906354, 0.18411837977478526, 0.19322005467317557, 0.20594237638370436, 0.2216200449834201, 0.2395352069039872, 0.2590127811430148, 0.2794687512550203, 0.30042479613179374, 0.32150610751997133, 0.3424308036987242, 0.3629935570971585, 0.38304543519548934, 0.40247332111326506, 0.4211827709953022, 0.43908704110305524, 0.4561030038249255, 0.47215281531964065, 0.48716914370126696, 0.501101602335026, 0.5139224823352733, 0.5256305767405703, 0.5362525602757925, 0.545841898343691, 0.5544755844720695, 0.5622491833941532, 0.5692707382952803, 0.5756541257991233, 0.5815124321138927, 0.586951882943227, 0.5920667842585361 ], [ 0.541789376770138, 0.5248178258114405, 0.5062459733128907, 0.48608276543450474, 0.4643825388908423, 0.44125561129668867, 0.41687925191222525, 0.3915078655243663, 0.36548030685145033, 0.3392211238151788, 0.31323167676889196, 0.28806752780781264, 0.2643016826724325, 0.24248005846686563, 0.22308426615337112, 0.20652161040963715, 0.19315452077755935, 0.18335599216385928, 0.17754161859452963, 0.17611387627392405, 0.17930528533039838, 0.1870130450062947, 0.19875951474116862, 0.21380911218358542, 0.23134511343937758, 0.2506041597989279, 0.2709404552815807, 0.29184157458838345, 0.3129213341700454, 0.33390209557510253, 0.35459062495804494, 0.3748506525223191, 0.39457669329816947, 0.41367381775506845, 0.43204621630628465, 0.44959469949792763, 0.4662210605467455, 0.48183619735284167, 0.4963689988707098, 0.5097737864226989, 0.5220350701812441, 0.5331692120062523, 0.5432231551117116, 0.552270701336049, 0.560406958807813, 0.5677416210058923, 0.5743917251563534, 0.5804744990406462, 0.5861008450574372, 0.5913699228007868 ], [ 0.5441338232989393, 0.527493680012389, 0.5092876153780044, 0.4895238124237751, 0.4682536733937172, 0.4455813439016258, 0.42167321921956546, 0.3967662368626291, 0.37117300164173556, 0.34528098129806173, 0.31954261740490886, 0.29445408106904747, 0.2705236121208112, 0.24823632064697276, 0.2280293985892936, 0.21029521196871095, 0.19542253200456275, 0.18386180959857343, 0.1761619049847965, 0.17290211100967545, 0.1744920993453662, 0.1809443311760289, 0.19179928442233082, 0.20626197012723294, 0.22342708062474606, 0.2424516137915717, 0.26263533198026956, 0.28343845028268927, 0.3044699957158067, 0.32546281851853026, 0.3462410113726367, 0.36668445162525015, 0.3866966293398995, 0.406181456739554, 0.42503192708373777, 0.44312994302917075, 0.46035405377382704, 0.4765909321636855, 0.491746922715021, 0.5057571973179176, 0.5185913283733109, 0.5302550733821384, 0.5407887705432411, 0.5502630352505582, 0.5587725347015524, 0.5664286013479103, 0.5733513889942219, 0.5796622057657884, 0.5854765787054503, 0.5908985065160046 ], [ 0.5466298542060417, 0.5303232706521802, 0.5124782386690075, 0.4930994778984501, 0.4722322569535337, 0.44997097478821324, 0.42646751788973813, 0.40193828119872427, 0.3766681480060967, 0.3510091694584369, 0.32537156257758154, 0.3002056118864257, 0.27597583419779576, 0.25313357145972104, 0.23209986625875595, 0.2132736892224845, 0.19707534803285018, 0.18401374257198833, 0.1747273303269037, 0.16991627906076776, 0.1701216742816912, 0.1754526548852969, 0.18547478759615232, 0.19935253235772937, 0.21611105123486843, 0.23484232979586608, 0.2548021205583946, 0.2754312794483503, 0.2963408982960919, 0.3172802463361292, 0.33809524159766824, 0.3586843605634746, 0.3789602390936009, 0.39882383595249477, 0.4181539119580298, 0.43681002789724427, 0.4546443439490208, 0.4715168507203526, 0.4873096923892564, 0.501937949399842, 0.5153558421113993, 0.5275584333452358, 0.5385795168146447, 0.5484866104771862, 0.5573739879049352, 0.5653545999106164, 0.5725516341947591, 0.5790903601531975, 0.585090808591628, 0.5906617292117223 ], [ 0.5492540151278806, 0.5332810873780746, 0.5157909539914203, 0.49678270708531663, 0.47629304507384085, 0.4544040889833988, 0.4312509403628497, 0.4070280248889161, 0.3819928210902288, 0.35646519905698315, 0.33082058824886823, 0.3054760146039248, 0.2808701809115823, 0.2574424028534851, 0.235619742410726, 0.21582492528318475, 0.1985147293012057, 0.18424151877027603, 0.17369412850012833, 0.16763637029178025, 0.16668634947735975, 0.171022673219063, 0.18024269736459714, 0.19349647835282274, 0.2097672211920729, 0.22810241476731521, 0.24772729066262564, 0.26807259677359113, 0.2887585551356437, 0.3095563243128165, 0.33033721615532524, 0.35101954834439364, 0.37152400504423083, 0.3917456897194243, 0.4115453105963755, 0.4307562482326924, 0.449201063418824, 0.4667107771444438, 0.48314196406146, 0.4983889771028135, 0.5123905329352672, 0.5251310996728039, 0.5366381003571478, 0.5469760900258991, 0.5562389885891864, 0.5645412998239273, 0.5720090936702449, 0.578771398781832, 0.5849525392573286, 0.5906658364321601 ], [ 0.5519883362580483, 0.5363490238313988, 0.5192087600525495, 0.500559492686541, 0.4804277743091884, 0.45888201633181663, 0.4360395872641422, 0.4120729908115626, 0.3872140328926944, 0.36175462323986907, 0.3360428584283649, 0.31047359398744234, 0.28547415839945117, 0.26148840872425577, 0.23896581979906414, 0.21836553284686416, 0.20018451433369946, 0.185006474197038, 0.17353644868265475, 0.16654714073627205, 0.16467557491825527, 0.16813593278027195, 0.17656169894935478, 0.18911858821475278, 0.20478161844081674, 0.2225792871007947, 0.24172280457538092, 0.2616435079919924, 0.2819781443391439, 0.3025247569650939, 0.3231826183384436, 0.3438898915743498, 0.3645730240477403, 0.3851174562326477, 0.40536152398094966, 0.42510849406824547, 0.4441483271047444, 0.4622811607286578, 0.4793370396991247, 0.49518930917015075, 0.5097612900888754, 0.5230271110735435, 0.5350080617069731, 0.5457658613982842, 0.5553940604738089, 0.5640085643565806, 0.5717380715160821, 0.5787150590351643, 0.5850678240155638, 0.5909139725030033 ], [ 0.5548198627854908, 0.5395155601077551, 0.5227232038124804, 0.5044267709355179, 0.4846419677120162, 0.46342312477829406, 0.440870134874024, 0.4171348655276284, 0.3924262378451998, 0.3670129547013251, 0.3412228041813329, 0.31543772671230585, 0.2900846296641703, 0.26562350457912, 0.24253692527008683, 0.22132803741858095, 0.20253505672920788, 0.18676227031193782, 0.1747022945712256, 0.16708904925703016, 0.16452397904235475, 0.16722059081833057, 0.17484823676943473, 0.1866165527175779, 0.20152785917506524, 0.2186203034372531, 0.23711036021484722, 0.25644235716754266, 0.2762774981786423, 0.29644531680795094, 0.31687467675858, 0.33752250898437325, 0.3583178464643812, 0.3791321651838027, 0.3997770680073065, 0.4200221035933387, 0.43962217160509476, 0.45834519916266875, 0.4759942531851169, 0.49242176702580365, 0.5075360013370256, 0.5213010971855279, 0.5337324451924285, 0.5448889867829033, 0.554863777679612, 0.5637738453508718, 0.5717501288867041, 0.5789281104643444, 0.5854396127036641, 0.5914061187572675 ], [ 0.5577398905352129, 0.5427745768057757, 0.5263325921955648, 0.5083897901129633, 0.48895114949238516, 0.4680574973758436, 0.44579252740570696, 0.42228972758711353, 0.39773864349035526, 0.37238970994605913, 0.34655673456208014, 0.32061608749758, 0.29500187567330416, 0.2701971067446, 0.24672247077305706, 0.22512702962678183, 0.20598726227725928, 0.18991712767119123, 0.17757402399978822, 0.16961669554614703, 0.16656777905703102, 0.16860738053332952, 0.17543483447396072, 0.18632403583219648, 0.20033605303828703, 0.21654753132596183, 0.23420144518306932, 0.25276918224623846, 0.2719449751640553, 0.29159417472820615, 0.3116761250841869, 0.3321647223241342, 0.3529880396330811, 0.3739994158519074, 0.3949799325026394, 0.4156626534126894, 0.43576584995887985, 0.4550246948693336, 0.47321541243037685, 0.49016998335643513, 0.505782112716397, 0.5200063279244113, 0.5328522786497485, 0.544376052529021, 0.5546699258967609, 0.5638516026466942, 0.5720537137039647, 0.5794141524019149, 0.5860676801988729, 0.5921391209913948 ], [ 0.5607430053216655, 0.5461239420760197, 0.5300399547091726, 0.5124592272661727, 0.4933768401266905, 0.4728214767693178, 0.4508626992790564, 0.4276185571961508, 0.40326313459686963, 0.37803343317533417, 0.35223473323139826, 0.3262432817052728, 0.30050489950001413, 0.275528123882912, 0.2518713358384871, 0.23012556952420257, 0.21089783553014416, 0.19479988626465022, 0.18243705797958476, 0.17437037333744448, 0.17101701468581598, 0.17249983997602064, 0.17853781251385203, 0.18847773986358082, 0.20146162118463787, 0.21662991567620463, 0.23327339757830765, 0.2509054694917345, 0.26926232784346066, 0.2882491959714431, 0.3078563108990243, 0.32807252734608183, 0.34882176088964073, 0.36993595211629265, 0.39116315472063296, 0.41219855724445736, 0.4327234656334143, 0.45244069694580197, 0.47110038432946355, 0.4885148382242368, 0.5045638103839764, 0.519192533431604, 0.5324049293278321, 0.544253968564939, 0.5548306641515189, 0.5642527582268835, 0.57265384746089, 0.5801734826970948, 0.5869486341153984, 0.5931067998545244 ], [ 0.5638260258136824, 0.5495640104548968, 0.5338509467705421, 0.5166483075797937, 0.4979426650656387, 0.4777525015537303, 0.4561358519130639, 0.4331986563586409, 0.4091035482994142, 0.3840785610577262, 0.3584248723610347, 0.33252218401695777, 0.30682968943095185, 0.28188005353503737, 0.25826405078073666, 0.23660545086274332, 0.21752975792111826, 0.20163392152394888, 0.1894604155980937, 0.18146401658849717, 0.1779474871936203, 0.17896424292307106, 0.18424105957774095, 0.19319501980148968, 0.2050593502531147, 0.21905653317850507, 0.23454365680158787, 0.25109022568030875, 0.26848281197383933, 0.28667002397739816, 0.3056731253537717, 0.3254942790934285, 0.3460511725145192, 0.36715281881916817, 0.3885137206834579, 0.4097916712410171, 0.4306321833631286, 0.4507071699825213, 0.4697420443589079, 0.48753050314627117, 0.5039389798053292, 0.5189036157627753, 0.5324224266300024, 0.54454478248137, 0.5553597305945467, 0.5649842114718578, 0.5735518822070816, 0.5812030405399146, 0.5880759972033286, 0.5943001344633307 ], [ 0.5669869428984726, 0.5530961591187155, 0.5377718606782887, 0.5209701440409701, 0.5026708549236087, 0.4828845817845425, 0.46166071100892364, 0.4390964968665903, 0.41534693347854673, 0.39063492856315074, 0.36526080832900004, 0.33960947092744476, 0.31415256733626507, 0.28944217564558344, 0.26609227789951123, 0.2447462210102608, 0.22603324285082405, 0.21052341201714442, 0.1986914702529338, 0.19088927440584005, 0.18731090172859188, 0.18793930088449023, 0.19249915714682667, 0.20046785479043208, 0.21116918466674672, 0.22391673313109592, 0.23814672139773252, 0.2534956021500225, 0.26980674985012726, 0.28707446918172924, 0.3053508624942828, 0.3246504965025456, 0.3448845131114641, 0.3658398635169407, 0.38719950457283125, 0.40858654360557284, 0.42961356595389005, 0.4499241440146094, 0.46922095346550724, 0.487280373781213, 0.5039561534050754, 0.5191754067514721, 0.5329298611589532, 0.5452645827710477, 0.5562657400026308, 0.5660484429451961, 0.5747453400193447, 0.5824964246104569, 0.5894403578066311, 0.5957075072350082 ], [ 0.5702239353968497, 0.5567214661272393, 0.5418078787354762, 0.5254354670647648, 0.5075793469306967, 0.4882446684879394, 0.46747507085042556, 0.445362367007606, 0.422057256774746, 0.3977805243073372, 0.3728336101070258, 0.34760658751496615, 0.3225804402113458, 0.29831941994731326, 0.2754489953194011, 0.25461696793895483, 0.23644107455697538, 0.22145451465300922, 0.21006474477712564, 0.2025321742012188, 0.19895737711532382, 0.19926017015869826, 0.20315739953682774, 0.2101745500713141, 0.21971796597917775, 0.23119265406788697, 0.24411939537546715, 0.25820711958690185, 0.2733588560181983, 0.2896147895090788, 0.30705698145008997, 0.325712260554506, 0.3454868865478286, 0.3661492868335863, 0.3873556297096167, 0.4086994072591539, 0.4297648888464349, 0.45017099089665186, 0.46960024093320174, 0.4878132395373925, 0.5046516953763412, 0.5200336459554613, 0.533943978511793, 0.546422568891773, 0.5575516208647708, 0.5674432329429518, 0.5762278456083408, 0.5840439861388763, 0.5910295802966837, 0.5973149967610284 ], [ 0.5735345245164449, 0.5604396090330896, 0.545961664728045, 0.5300508591456193, 0.512679621565646, 0.4938500691488975, 0.47360279542542744, 0.45202700803679596, 0.4292717797760332, 0.4055577809835381, 0.3811882145960774, 0.35655671644785536, 0.3321487599674337, 0.308531965493884, 0.28633058496588487, 0.2661818881396215, 0.24867856899626348, 0.23431020643880635, 0.22342151662797563, 0.21619703383621025, 0.21266312253418648, 0.21268860339307658, 0.21598141235191037, 0.22210463559834506, 0.23053612035140145, 0.24076617526429184, 0.2523983938756625, 0.265213551597328, 0.2791726053270408, 0.2943588756580016, 0.310882246167442, 0.32878202070516377, 0.3479628991968968, 0.3681807259252618, 0.3890721642549077, 0.41020835012920376, 0.43115148402241754, 0.45150058343030275, 0.47092122853764784, 0.48916006356214276, 0.5060474804173187, 0.5214923521751561, 0.5354720822446136, 0.5480203608140033, 0.5592142352534426, 0.5691615172745997, 0.5779891600135456, 0.5858329947776124, 0.592829066573753, 0.5991067053879807 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.041148629039525986, 0.2857678532600403, 0.8522157073020935, 0.8920990228652954, 0.4663430452346802, 0.20609870553016663, 0.2794052116115979, 0.22985134829694645, 0.32873217681013045, 0.3754279743018293, 0.4153017786953136, 0.3584581880401414, 0.3561102640193855, 0.3553857350763942, 0.35371601498178057, 0.3594539177233398, 0.42076154515606695, 0.46139858687040103, 0.4115011777723385, 0.4176857496724101, 0.4189901873064764, 0.5985637656494007, 0.40964725948690556, 0.4271640129234622, 0.9829163243994117, 0.3700665505602956, 0.35016909862729023, 0.4581801062449813, 0.7731048110872507 ], "xaxis": "x", "y": [ 0.4494225084781647, 0.600216269493103, 0.11601513624191284, 0.7307854890823364, 0.2460964322090149, 0.8346359729766846, 0.6206008217305327, 0.6137399522352502, 0.6296426968717749, 0.648160893648171, 0.6340173952066974, 0.733639661141008, 0.7875713870165928, 0.840028891644536, 0.8766329688376671, 0.8738109814290237, 0.8818095743380598, 0.8799415009840228, 0.897785093448023, 0.8780137196891163, 0.8864858582276492, 0.9901080221795948, 0.86985802675792, 0.9128737860123103, 0.779970170930028, 0.5119325648993254, 0.9633732058315407, 0.6788636296987534, 0.3790860800072551 ], "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", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.041148629039525986, 0.2857678532600403, 0.8522157073020935, 0.8920990228652954, 0.4663430452346802, 0.20609870553016663, 0.2794052116115979, 0.22985134829694645, 0.32873217681013045, 0.3754279743018293, 0.4153017786953136, 0.3584581880401414, 0.3561102640193855, 0.3553857350763942, 0.35371601498178057, 0.3594539177233398, 0.42076154515606695, 0.46139858687040103, 0.4115011777723385, 0.4176857496724101, 0.4189901873064764, 0.5985637656494007, 0.40964725948690556, 0.4271640129234622, 0.9829163243994117, 0.3700665505602956, 0.35016909862729023, 0.4581801062449813, 0.7731048110872507 ], "xaxis": "x2", "y": [ 0.4494225084781647, 0.600216269493103, 0.11601513624191284, 0.7307854890823364, 0.2460964322090149, 0.8346359729766846, 0.6206008217305327, 0.6137399522352502, 0.6296426968717749, 0.648160893648171, 0.6340173952066974, 0.733639661141008, 0.7875713870165928, 0.840028891644536, 0.8766329688376671, 0.8738109814290237, 0.8818095743380598, 0.8799415009840228, 0.897785093448023, 0.8780137196891163, 0.8864858582276492, 0.9901080221795948, 0.86985802675792, 0.9128737860123103, 0.779970170930028, 0.5119325648993254, 0.9633732058315407, 0.6788636296987534, 0.3790860800072551 ], "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" } ], "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 }, "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": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "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": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "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": [ { "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.0413322721616993, 1.0398844195978307, 1.0388027614516522, 1.0380961361538847, 1.0377724931038257, 1.0378388278821258, 1.0383011212332194, 1.0391642824635834, 1.0404320978688435, 1.0421071847630277, 1.0441909516402947, 1.04668356495367, 1.0495839229489927, 1.0528896369454093, 1.0565970204062902, 1.0607010860951176, 1.0651955515583948, 1.0700728531190336, 1.0753241684972106, 1.080939448099358, 1.08690745492819, 1.09321581296783, 1.0998510637889798, 1.1067987310021832, 1.1140433920664177, 1.12156875683997, 1.129357752145639, 1.1373926115184145, 1.145654969215438, 1.1541259574987892, 1.1627863061554247, 1.1716164431959744, 1.1805965956760667, 1.1897068896094045, 1.1989274479888952, 1.208238485997993, 1.2176204025758732, 1.2270538675930815, 1.2365199039955832, 1.245999964380983, 1.2554760015773578, 1.2649305329008762, 1.2743466978694282, 1.2837083092451378, 1.292999897366942, 1.3022067478142125, 1.3113149325139268, 1.320311334465929, 1.329183666314219, 1.3379204830368625 ], [ 1.0348667588346363, 1.033371104253853, 1.032249190196789, 1.0315101884497948, 1.0311623568418375, 1.0312129714518576, 1.0316682627587177, 1.032533356412563, 1.0338122192669907, 1.0355076112657433, 1.0376210437286597, 1.0401527445320777, 1.0431016306294778, 1.0464652883110677, 1.0502399615545843, 1.0544205487734697, 1.059000608219366, 1.0639723722411945, 1.0693267705393776, 1.0750534624777774, 1.0811408784267287, 1.0875762700062992, 1.0943457689820084, 1.1014344544373897, 1.1088264277143574, 1.116504894477983, 1.1244522531340109, 1.1326501887106795, 1.1410797712177398, 1.1497215574188173, 1.1585556949026743, 1.1675620273153957, 1.176720199620169, 1.1860097622819918, 1.1954102733297416, 1.2049013973232026, 1.214463000344751, 1.2240752402394506, 1.233718651439614, 1.2433742238256886, 1.2530234751918774, 1.2626485169985093, 1.272232113201372, 1.2817577320494922, 1.2912095908353336, 1.3005726936646966, 1.3098328623867779, 1.3189767608882783, 1.327991913009096, 1.336866714381348 ], [ 1.0286600140787996, 1.0271181264250258, 1.0259574150358144, 1.0251873858862846, 1.024816605928097, 1.0248526322456706, 1.025301945344137, 1.0261698872808422, 1.0274606053046014, 1.029177001613525, 1.0313206897863052, 1.0338919583868948, 1.03688974219046, 1.0403116014312008, 1.0441537094288302, 1.0484108489091042, 1.0530764172908462, 1.0581424411633378, 1.063599600119108, 1.0694372600341688, 1.0756435157970108, 1.0822052433792069, 1.089108161014048, 1.0963368991096683, 1.103875078374241, 1.1117053954802558, 1.1198097154498075, 1.1281691698113947, 1.136764259467512, 1.145574961126747, 1.1545808360987646, 1.1637611402263373, 1.1730949337363736, 1.1825611898293966, 1.1921389008909107, 1.2018071812948299, 1.2115453658731006, 1.221333103242451, 1.2311504433034663, 1.240977918354544, 1.2507966173898177, 1.2605882532725208, 1.2703352225906202, 1.2800206581085398, 1.2896284738255386, 1.2991434027372308, 1.3085510274720646, 1.3178378040383756, 1.3269910789713577, 1.3359991002128195 ], [ 1.0227339514764624, 1.021147707841537, 1.0199499446638725, 1.0191505015646012, 1.0187582539623166, 1.0187810391461567, 1.0192255866899496, 1.0200974539520118, 1.0214009673475215, 1.0231391700170671, 1.025313776450092, 1.0279251345605385, 1.0309721956567082, 1.0344524927004315, 1.0383621272113541, 1.0426957651378401, 1.047446641982557, 1.0526065774317215, 1.0581659996865034, 1.064113979626827, 1.070438274848062, 1.0771253834973864, 1.0841606077003916, 1.0915281262137646, 1.0992110757725744, 1.1071916404302367, 1.1154511480243652, 1.1239701727519968, 1.1327286427117833, 1.1417059511751153, 1.150881070287102, 1.1602326658740099, 1.1697392120457732, 1.1793791043278021, 1.1891307701315392, 1.1989727754730408, 1.20888392696696, 1.2188433682542363, 1.2288306701598752, 1.2388259140166682, 1.2488097677285108, 1.258763554278113, 1.2686693125070105, 1.2785098501080234, 1.2882687888712623, 1.29793060231319, 1.3074806458947221, 1.3169051800986769, 1.3261913866897905, 1.3353273785229316 ], [ 1.0171108153418507, 1.0154824186996931, 1.0142496530710492, 1.0134226896407732, 1.0130107101219097, 1.013021829729929, 1.0134630247320389, 1.0143400653488766, 1.015657454715337, 1.0174183745311056, 1.0196246379552676, 1.0222766502295564, 1.0253733774558773, 1.0289123239078122, 1.032889518223002, 1.0372995087998917, 1.0421353687021546, 1.0473887103494952, 1.0530497102353509, 1.059107143852206, 1.0655484309178063, 1.0723596908773914, 1.0795258085093753, 1.0870305092891763, 1.0948564439766202, 1.102985281697335, 1.111397810599123, 1.1200740449930842, 1.1289933377455155, 1.13813449657895, 1.147475902873935, 1.156995631538978, 1.1666715705337507, 1.1764815386865175, 1.186403400535582, 1.1964151770396816, 1.206495151136991, 1.2166219672793757, 1.2267747242216882, 1.2369330604993143, 1.247077232176151, 1.2571881825862992, 1.2672476039230056, 1.2772379906461437, 1.2871426847840952, 1.2969459132964432, 1.306632817740917, 1.3161894765522073, 1.3256029202920505, 1.3348611402707147 ], [ 1.0118131049144174, 1.010145101616966, 1.0088797033245156, 1.008027408991167, 1.0075977027565912, 1.007598973823952, 1.0080384411777445, 1.008922083951115, 1.010254578165775, 1.0120392404744456, 1.014277979445143, 1.016971254846108, 1.0201180453263665, 1.023715824842982, 1.0277605481627092, 1.0322466457568378, 1.0371670284078387, 1.0425131018413927, 1.0482747916778352, 1.054440578949667, 1.0609975463497072, 1.0679314352517333, 1.0752267133844562, 1.082866652845082, 1.0908334179223138, 1.0991081619728096, 1.1076711323763488, 1.116501782396551, 1.125578888609527, 1.1348806724409495, 1.1443849242792312, 1.1540691286092464, 1.163910588636505, 1.1738865489403933, 1.18397431480026, 1.1941513669719037, 1.2043954708456277, 1.2146847790825053, 1.2249979269955822, 1.2353141201109024, 1.2456132135045666, 1.2558757826629972, 1.2660831857510875, 1.276217617295966, 1.2862621534015302, 1.296200788701032, 1.306018465332255, 1.3157010942827558, 1.3252355695029485, 1.3346097752230814 ], [ 1.0068634895749504, 1.0051587864076614, 1.0038634619886986, 1.0029883373553483, 1.0025431933226177, 1.0025366872881296, 1.002976275179459, 1.003868139386357, 1.0052171234122085, 1.0070266738650795, 1.0092987902986588, 1.0120339833190868, 1.0152312413034674, 1.018888006035025, 1.0230001575486953, 1.0275620084934476, 1.0325663083433687, 1.0380042578135593, 1.0438655338424099, 1.050138325473621, 1.0568093808973429, 1.0638640657832958, 1.071286432861492, 1.0790593024847857, 1.087164353656566, 1.0955822247435623, 1.104292622837518, 1.1132744404987553, 1.122505878424663, 1.1319645724484992, 1.1416277231942424, 1.1514722266927828, 1.1614748043005825, 1.171612130346748, 1.1818609560598983, 1.1921982284818156, 1.20260120325071, 1.2130475503233815, 1.2235154518943494, 1.2339836919541611, 1.2444317371034581, 1.2548398084003618, 1.2651889441630748, 1.2754610537775544, 1.2856389626698133, 1.29570644869522, 1.3056482702737295, 1.3154501866612827, 1.325098970795408, 1.3345824151884407 ], [ 1.0022847146167477, 1.0005465951692445, 0.9992244036333857, 0.9983292753679884, 0.9978712800337581, 0.9978593353705293, 0.9983011264666344, 0.9992030313957321, 1.0005700539618758, 1.002405764151653, 1.0047122467575895, 1.007490058523947, 1.0107381940874218, 1.0144540609482229, 1.0186334637125207, 1.0232705978880636, 1.028358053576821, 1.033886829471418, 1.039846357603455, 1.0462245392901377, 1.0530077926641965, 1.0601811120424867, 1.0677281391909292, 1.0756312462888593, 1.0838716301011675, 1.09242941655589, 1.1012837746224902, 1.1104130381152242, 1.119794833826178, 1.1294062142361376, 1.1392237929657323, 1.1492238811137632, 1.159382622679203, 1.1696761273690346, 1.180080599243971, 1.1905724598361265, 1.2011284645741103, 1.211725811561312, 1.2223422419626258, 1.2329561314561068, 1.2435465723941568, 1.2540934464891031, 1.2645774879897749, 1.2749803374468882, 1.2852845862765536, 1.2954738124238279, 1.3055326075030624, 1.3154465958506174, 1.3252024459700256, 1.3347878748816078 ], [ 0.9980994971376094, 0.9963316371961836, 0.9949860048981416, 0.9940740399020058, 0.9936060906076892, 0.9935913249750415, 0.994037647242086, 0.9949516214524954, 0.9963384025334748, 0.998201675487873, 1.0005436030966057, 1.003364782389953, 1.0066642100557384, 1.0104392569196667, 1.0146856516608607, 1.0193974740037255, 1.0245671577388311, 1.030185504040703, 1.0362417056414226, 1.042723382453545, 1.049616629193221, 1.056906075421283, 1.0645749581976833, 1.0726052072468348, 1.0809775421814565, 1.089671580961813, 1.0986659584068457, 1.107938453254316, 1.1174661220108812, 1.1272254376565418, 1.1371924311763268, 1.1473428338848801, 1.1576522185781668, 1.1680961376781707, 1.1786502567169026, 1.1892904817188485, 1.1999930792726574, 1.210734788319724, 1.2214929229194311, 1.2322454654706023, 1.2429711500700253, 1.253649535869257, 1.2642610704481, 1.274787143357453, 1.2852101300962169, 1.2955134268779498, 1.305681476615413, 1.3156997866061375, 1.3255549384429695, 1.335234590700822 ], [ 0.9943304116722567, 0.9925368932843415, 0.9911716276198638, 0.9902463461743881, 0.9897716635065719, 0.9897569851909189, 0.9902104221485954, 0.9911387123028448, 0.9925471502947467, 0.9944395257714702, 0.9968180705488985, 0.9996834147792111, 1.0030345521468589, 1.0068688140884852, 1.0111818530877776, 1.015967635224794, 1.0212184423353667, 1.0269248843237033, 1.0330759223279367, 1.0396589035238613, 1.0466596083350792, 1.0540623106812943, 1.061849851642724, 1.07000372656469, 1.0785041852060149, 1.0873303440875455, 1.0964603097646468, 1.1058713113682974, 1.115539840461046, 1.1254417960546854, 1.135552632541861, 1.1458475082993314, 1.1563014328145653, 1.166889410352568, 1.1775865783969381, 1.1883683393494449, 1.1992104842382207, 1.210089307451637, 1.2209817117717676, 1.2318653032198672, 1.2427184754415173, 1.25352048354815, 1.264251507493601, 1.274892705200383, 1.2854262557612608, 1.2958353931302204, 1.3061044307853233, 1.3162187778965644, 1.3261649475674415, 1.33593055774166 ], [ 0.9909997652651139, 0.9891850890626163, 0.9878043905955015, 0.9868696781220987, 0.986391817115827, 0.9863804354682915, 0.9868438356346121, 0.9877889147099832, 0.9892210931620695, 0.9911442526613428, 0.9935606831846452, 0.9964710393511385, 0.9998743058184033, 1.003767771542775, 1.0081470127989522, 1.013005885047288, 1.018336524000083, 1.024129356521001, 1.0303731222379067, 1.0370549069027817, 1.044160188550483, 1.0516728973683127, 1.059575489892758, 1.0678490377239294, 1.0764733304362573, 1.0854269918192927, 1.094687608060202, 1.104231866027223, 1.1140356994656524, 1.1240744406949204, 1.1343229753002515, 1.1447558973382357, 1.155347662703203, 1.1660727385088752, 1.176905746602182, 1.1878215996200452, 1.1987956283054004, 1.2098036990988303, 1.2208223213053766, 1.231828743394207, 1.2428010382168861, 1.2537181771270522, 1.2645600931493974, 1.275307733481919, 1.285943101723643, 1.2964492903045957, 1.3068105036577427, 1.317012072717674, 1.3270404613606712, 1.3368832654174778 ], [ 0.9881294617961396, 0.9862985570954865, 0.9849070296516413, 0.983967146646, 0.9834900063852865, 0.9834854408919209, 0.9839619261040407, 0.9849265007254668, 0.9863846944349396, 0.9883404658062476, 0.9907961499497886, 0.9937524156093814, 0.9972082312822066, 1.001160839907914, 1.0056057418080608, 1.0105366858343707, 1.0159456690611643, 1.02182294576729, 1.0281570468181416, 1.0349348108030416, 1.042141428347943, 1.0497605008793183, 1.057774114764327, 1.0661629312322447, 1.0749062918514956, 1.0839823386684166, 1.0933681474790657, 1.1030398721651986, 1.1129728976209579, 1.1231419985499387, 1.1335215013233084, 1.1440854461445, 1.1548077469389888, 1.1656623466482596, 1.176623365924513, 1.1876652435679176, 1.1987628673984756, 1.2098916945911706, 1.2210278608138065, 1.232148277784404, 1.2432307191053393, 1.2542538944341735, 1.265197512218005, 1.2760423313518277, 1.2867702022255445, 1.2973640977027996, 1.3078081346310952, 1.3180875865211712, 1.3281888880561576, 1.338099632101978 ], [ 0.9857408555255547, 0.9838990876495901, 0.9825017458366669, 0.9815613354574488, 0.981089166584057, 0.9810952541213163, 0.9815882263376572, 0.9825752429011357, 0.9840619231132812, 0.9860522845803099, 0.9885486921231343, 0.9915518163692051, 0.9950606012534768, 0.9990722396318009, 1.0035821563984204, 1.008583998884381, 1.014069634839647, 1.0200291588795667, 1.0264509088003375, 1.0333214935330266, 1.040625834632847, 1.04834722304853, 1.0564673924929415, 1.0649666100913497, 1.073823784199826, 1.0830165884604923, 1.0925216003863572, 1.1023144521224066, 1.1123699905615356, 1.1226624437250627, 1.1331655902437143, 1.1438529288718164, 1.154697845199918, 1.1656737730583289, 1.1767543484873753, 1.1879135545554047, 1.1991258557058655, 1.2103663206905118, 1.2216107334851898, 1.232835691880273, 1.2440186936886333, 1.255138210720619, 1.2661737508412687, 1.2771059085542233, 1.2879164046546618, 1.2985881155641457, 1.3091050930087493, 1.3194525747320385, 1.3296169869495922, 1.3395859392554197 ], [ 0.9838545940238976, 0.982007768218426, 0.9806100417499797, 0.9796741344562115, 0.9792115440072642, 0.9792324437423969, 0.9797455898390117, 0.9807582390062719, 0.9822760773826421, 0.9843031607432058, 0.9868418655589664, 0.9898928499816215, 0.9934550235409754, 0.9975255243077381, 1.0020997025264151, 1.0071711102448107, 1.0127314971866812, 1.018770813913032, 1.0252772240503267, 1.0322371278885043, 1.0396351998586466, 1.0474544422363243, 1.055676256894596, 1.0642805361213636, 1.0732457725333384, 1.0825491870936408, 1.092166873293939, 1.1020739547910374, 1.1122447532501818, 1.1226529628621114, 1.1332718279551297, 1.1440743202800991, 1.1550333128555859, 1.1661217476704393, 1.1773127950029803, 1.1885800025896682, 1.1998974333317425, 1.2112397906455579, 1.2225825309294227, 1.233901962932672, 1.2451753340709988, 1.2563809039393996, 1.2674980054361649, 1.2785070940334442, 1.2893897858187424, 1.300128884992999, 1.3107084015496406, 1.321113559879855, 1.3313307990562775, 1.3413477655429036 ], [ 0.9824904509095866, 0.9806448121601552, 0.9792525462872008, 0.978326560833409, 0.9778785137354559, 0.9779187090327539, 0.9784560030054158, 0.9794977220506498, 0.9810495929742602, 0.9831156856501247, 0.9856983672749767, 0.9887982668301156, 0.9924142479747385, 0.9965433885380368, 1.0011809651023553, 1.0063204418638634, 1.011953463927822, 1.018069856283586, 1.0246576307121789, 1.0317030036122, 1.0391904280390523, 1.0471026430691597, 1.0554207429447227, 1.0641242674289342, 1.0731913135624795, 1.0825986677348391, 1.092321955827648, 1.102335808270941, 1.112614036241999, 1.1231298149455862, 1.1338558699156076, 1.1447646625165688, 1.155828571231979, 1.1670200658373746, 1.1783118721104704, 1.1896771252815015, 1.2010895109424902, 1.2125233925935162, 1.2239539253980234, 1.235357156046021, 1.2467101088866166, 1.2579908586958903, 1.2691785906008026, 1.2802536477920508, 1.291197567736166, 1.301993107647144, 1.3126242600054052, 1.323076258922451, 1.3333355781473961, 1.3433899214989862 ], [ 0.9816671491331775, 0.9798293771337182, 0.9784488284211315, 0.9775385684426404, 0.9771103849016083, 0.9771746814976519, 0.9777403833765151, 0.9788148557586542, 0.9804038364408638, 0.9825113819570892, 0.9851398262517308, 0.988289749908176, 0.9919599574475646, 0.9961474601111346, 1.000847461946881, 1.0060533479298228, 1.0117566741378663, 1.0179471614694913, 1.024612695756287, 1.0317393381266697, 1.0393113499160436, 1.047311236202047, 1.0557198112064679, 1.0645162874943543, 1.0736783893316513, 1.0831824889695711, 1.0930037632135403, 1.1031163665517387, 1.1134936164351044, 1.1241081860206992, 1.1349322997643705, 1.1459379275976849, 1.1570969739576764, 1.1683814585704524, 1.1797636865511094, 1.1912164060186003, 1.2027129520028186, 1.2142273759221107, 1.225734560327458, 1.2372103189461505, 1.2486314823202567, 1.2599759695326238, 1.2712228466568976, 1.282352372666856, 1.29334603360439, 1.3041865658416636, 1.3148579692882452, 1.3253455113934232, 1.335635722781698, 1.3457163853385123 ], [ 0.9814021759301186, 0.9795793744233168, 0.9782172010647412, 0.9773288464276944, 0.9769261943822017, 0.9770197140070052, 0.9776183646926278, 0.9787295161205856, 0.9803588838656957, 0.9825104802353667, 0.9851865787657612, 0.9883876897279487, 0.992112543274515, 0.9963580766800588, 1.0011194226244373, 1.0063898966405938, 1.0121609835519734, 1.0184223246752284, 1.0251617093968846, 1.032365076084827, 1.0400165278952767, 1.0480983687656245, 1.0565911638017649, 1.0654738265832153, 1.074723733917518, 1.0843168665907246, 1.094227972946831, 1.1044307508615199, 1.1148980429279507, 1.125602039428876, 1.1365144838511, 1.147606876192501, 1.1588506700008456, 1.170217459860288, 1.1816791568235465, 1.193208150016649, 1.2047774532856301, 1.216360836294989, 1.2279329399248253, 1.23946937615498, 1.2509468128808485, 1.2623430442918524, 1.2736370475715342, 1.2848090267610617, 1.2958404446758542, 1.3067140437858706, 1.3174138569720104, 1.3279252090584068, 1.3382347099976641, 1.3483302405569633 ], [ 0.9817115910122637, 0.9799112707238907, 0.9785745165790641, 0.9777146086455796, 0.9773434904098527, 0.9774716589720112, 0.9781080701248717, 0.9792600602917964, 0.9809332861745033, 0.9831316815610772, 0.9858574292248822, 0.9891109444456639, 0.9928908656953777, 0.9971940477332772, 1.0020155529394443, 1.007348638209995, 1.0131847369600773, 1.019513438355708, 1.0263224683292687, 1.03359767873146, 1.0413230517691774, 1.0494807265242005, 1.0580510529361054, 1.0670126764596868, 1.076342654080095, 1.0860165999027387, 1.096008856465785, 1.1062926864567293, 1.1168404787200004, 1.127623962272529, 1.1386144223773254, 1.1497829134069208, 1.161100464105955, 1.1725382718063901, 1.1840678830646685, 1.1956613590156075, 1.2072914244436725, 1.2189316001464883, 1.2305563186159394, 1.2421410234008903, 1.2536622527606667, 1.2650977083872683, 1.2764263100834061, 1.2876282373468073, 1.298684958840589, 1.309579250734204, 1.3202952048863743, 1.3308182278163887, 1.341135031377144, 1.3512336160048677 ], [ 0.9826098300769628, 0.980839884515621, 0.9795359560941058, 0.978711376079558, 0.978378108311631, 0.9785466377537453, 0.9792258758355319, 0.9804230849419784, 0.9821438230775, 0.9843919080188724, 0.9871693983518277, 0.9904765869620111, 0.9943120012035269, 0.9986724034864786, 1.0035527866906206, 1.0089463606924287, 1.0148445291656087, 1.0212368591855412, 1.0281110493686103, 1.0354529046393672, 1.0432463267517376, 1.051473329206576, 1.0601140833561973, 1.069146999683656, 1.0785488450457215, 1.0882948936201573, 1.0983591068202538, 1.1087143357696034, 1.1193325391186961, 1.1301850089383645, 1.1412425979643304, 1.1524759423837239, 1.1638556754569864, 1.1753526284016338, 1.1869380160243672, 1.1985836055117216, 1.210261867552968, 1.2219461095708262, 1.2336105912899815, 1.2452306232023553, 1.2567826487146858, 1.2682443109105452, 1.279594504944942, 1.2908134171307717, 1.3018825517858161, 1.3127847468956717, 1.3235041796200506, 1.3340263626318267, 1.3443381322346128, 1.3544276291578343 ], [ 0.9841095062678029, 0.9823781797714869, 0.9811148154923496, 0.9803327551887434, 0.9800439414016571, 0.9802588043942293, 0.9809861679945762, 0.9822331771866228, 0.9840052487501492, 0.9863060441788378, 0.9891374617055697, 0.9924996419051862, 0.9963909795245338, 1.0008081334377013, 1.0057460273521739, 1.0111978362269747, 1.0171549570423015, 1.0236069669317178, 1.0305415758571101, 1.0379445840733696, 1.04579985594052, 1.0540893209655724, 1.0627930105231391, 1.0718891350973279, 1.0813542028583707, 1.0911631766456138, 1.1012896634942684, 1.1117061289772714, 1.1223841278518092, 1.1332945426418977, 1.1444078225970604, 1.1556942166724298, 1.1671239955376271, 1.178667658964146, 1.1902961261503815, 1.2019809075622336, 1.21369425768082, 1.2254093086673135, 1.2371001854041395, 1.2487421026821481, 1.260311445504602, 1.2717858335983203, 1.2831441712816094, 1.2943666838555132, 1.3054349416727302, 1.3163318730069575, 1.3270417668018988, 1.3375502663284469, 1.3478443547243772, 1.357912333335677 ], [ 0.9862212128001042, 0.984537060392136, 0.9833222916359519, 0.9825902159614941, 0.9823527109742902, 0.9826201077785592, 0.9834010974979535, 0.9847026624493977, 0.9865300336640201, 0.9888866739779459, 0.9917742829505287, 0.9951928168496773, 0.9991405145106782, 1.0036139187425284, 1.0086078837097723, 1.0141155615813615, 1.0201283664007497, 1.0266359187471794, 1.0336259801343437, 1.0410843900256306, 1.048995019974736, 1.0573397584481012, 1.066098536696387, 1.0752494014260983, 1.0847686349831358, 1.0946309192101884, 1.1048095357100158, 1.115276593209749, 1.1260032720349482, 1.1369600761103833, 1.1481170840559896, 1.1594441924935388, 1.1709113463349374, 1.1824887523882843, 1.194147073976948, 1.205857605372804, 1.2175924256961765, 1.2293245325582354, 1.2410279561543165, 1.2526778547996857, 1.2642505930690129, 1.2757238037885854, 1.2870764351602662, 1.2982887842873434, 1.3093425183379939, 1.3202206845317987, 1.330907710075955, 1.3413893931144771, 1.351652885689255, 1.3616866696487118 ], [ 0.988953330530423, 0.9873251694076255, 0.9861672731543814, 0.9854928742804172, 0.9853137403014842, 0.9856400574220998, 0.9864803378523989, 0.9878413549563654, 0.9897281084569636, 0.9921438190235243, 0.9950899479527011, 0.9985662338418342, 1.0025707349466362, 1.0070998642637625, 1.0121484051047807, 1.0177094983914408, 1.023774598748574, 1.0303334036078595, 1.037373766389314, 1.0448816098065123, 1.0528408573256087, 1.0612333994700047, 1.0700391075086904, 1.0792359012060355, 1.088799871066786, 1.0987054500411162, 1.1089256257062146, 1.1194321817804858, 1.1301959573198823, 1.1411871127117157, 1.1523753931522627, 1.1637303822349248, 1.175221740251581, 1.1868194236037732, 1.198493883223111, 1.2102162410792237, 1.2219584447282255, 1.2336934004681523, 1.2453950860732441, 1.2570386443263009, 1.2686004587009954, 1.280058212599113, 1.2913909335464278, 1.3025790237156891, 1.3136042780883566, 1.3244498914982212, 1.3351004557261363, 1.345541947739663, 1.3557617100972208, 1.3657484244654037 ], [ 0.9923118447565171, 0.9907486975690003, 0.9896561407854227, 0.9890472839912505, 0.9889337384502985, 0.9893254991336093, 0.9902308529070996, 0.9916563179449489, 0.9936066172764977, 0.9960846860293764, 0.9990917075946188, 1.0026271691951603, 1.006688923180775, 1.0112732380400205, 1.0163748237419705, 1.021986820151137, 1.0281007445013224, 1.034706402873131, 1.0417917792427915, 1.0493429218831078, 1.0573438492625327, 1.0657764957309728, 1.0746207119269484, 1.0838543274809305, 1.0934532759449107, 1.1033917753915488, 1.1136425536607906, 1.124177105018992, 1.1349659647698982, 1.1459789895795043, 1.1571856333412636, 1.1685552107868866, 1.1800571433604887, 1.1916611838941065, 1.2033376182544373, 1.2150574433649655, 1.2267925218877171, 1.2385157144388956, 1.2502009905795721, 1.2618235200282106, 1.273359745633111, 1.2847874396592298, 1.2960857449113987, 1.3072352021538947, 1.3182177652082434, 1.329016805024675, 1.3396171039345244, 1.3500048412036803, 1.3601675709239165, 1.3700941932003867 ], [ 0.9963001759234095, 0.9948112064055468, 0.9937925827922183, 0.9932572446950325, 0.9932166004814614, 0.9936804076922423, 0.994656682163325, 0.9961516419007141, 0.9981696894465818, 1.0007134326881415, 1.0037837389451492, 1.0073798113689003, 1.0114992713937991, 1.0161382277898512, 1.0212913132894341, 1.0269516746154432, 1.033110910590253, 1.039758964090101, 1.0468839842945832, 1.0544721833083606, 1.06250771399168, 1.0709725933094394, 1.0798466887032219, 1.0891077758751442, 1.0987316671425662, 1.1086924019465767, 1.118962486144401, 1.1295131645435172, 1.1403147113033008, 1.1513367246064021, 1.1625484146256122, 1.173918876659612, 1.185417343963593, 1.1970134170338826, 1.2086772678455246, 1.2203798188100783, 1.2320928970885219, 1.243789365447016, 1.25544323116422, 1.2670297346569328, 1.2785254195398363, 1.289908185814399, 1.3011573278187183, 1.312253558483079, 1.3231790213369692, 1.333917291610584, 1.3444533676717454, 1.3547736539412447, 1.3648659363372755, 1.3747193512140963 ], [ 1.0009190291200287, 0.9995134710653124, 0.9985774312658118, 0.9981236316287714, 0.9981632310166917, 0.9987057042085241, 0.9997587520577506, 1.0013282499568248, 1.0034182393025426, 1.006030962453171, 1.0091669357468387, 1.0128250481882368, 1.017002666819106, 1.02169572555487, 1.026898774391583, 1.0326049715054602, 1.038806011423411, 1.045491995933753, 1.0526512674116761, 1.0602702334287935, 1.0683332146658755, 1.0768223447968874, 1.0857175425151362, 1.0949965647655637, 1.1046351392858094, 1.1146071658585828, 1.1248849702989432, 1.1354395931772414, 1.1462410959523917, 1.1572588696048, 1.1684619340872977, 1.1798192202408706, 1.1912998288025995, 1.2028732635553352, 1.214509637490477, 1.2261798521352, 1.2378557510337056, 1.2495102488779692, 1.261117438052562, 1.2726526744675493, 1.2840926445604468, 1.2954154152919402, 1.3066004688682809, 1.317628723812733, 1.3284825438905314, 1.3391457362733294, 1.349603540214519, 1.3598426073980625, 1.3698509750229129, 1.3796180325924847 ], [ 1.0061662672174336, 1.0048533482119235, 1.0040085250666966, 1.0036442539389074, 1.0037713981077707, 1.0043991058094563, 1.005534721634512, 1.0071837396869494, 1.0093498042362525, 1.012034759016929, 1.0152387396128133, 1.0189602951873902, 1.023196517804655, 1.0279431521561644, 1.0331946582218843, 1.0389442057935423, 1.0451835923987818, 1.051903092269174, 1.0590912595065427, 1.0667347194610128, 1.0748179858537819, 1.083323336865139, 1.0922307730182863, 1.1015180664159283, 1.1111608981054655, 1.1211330705422207, 1.1314067764024933, 1.1419529032382583, 1.1527413547402938, 1.1637413724881724, 1.1749218459184343, 1.1862516020399014, 1.1976996697060385, 1.2092355158332153, 1.2208292528294376, 1.232451817768884, 1.244075124643896, 1.2556721914791642, 1.267217244308687, 1.2786858000791737, 1.290054730510802, 1.3013023088585185, 1.3124082413992202, 1.3233536853386934, 1.3341212546969514, 1.344695015597808, 1.3550604722616084, 1.3652045448814254, 1.3751155404538835, 1.3847831175364143 ], [ 1.0120368121790015, 1.0108256738604924, 1.0100806046848045, 1.00981374708121, 1.0100356236656354, 1.01075501451079, 1.0119788701518666, 1.0137122695806982, 1.015958430005832, 1.018718770265931, 1.0219930223211564, 1.025779375868333, 1.0300746316343155, 1.0348743321780955, 1.0401728382464661, 1.0459633258986063, 1.052237694244731, 1.0589863924577636, 1.0661981927969533, 1.0738599489256275, 1.0819563826567375, 1.0904699368896065, 1.0993807200996384, 1.1086665522240047, 1.1183031071871044, 1.128264136469812, 1.1385217521779685, 1.1490467466649854, 1.1598089277011192, 1.1707774520081065, 1.1819211444378694, 1.193208794304167, 1.204609423915297, 1.2160925270549836, 1.2276282770617268, 1.23918770540217, 1.2507428523824689, 1.2622668920412818, 1.273734233434701, 1.2851206005450646, 1.296403092978964, 1.3075602295049513, 1.3185719763413597, 1.3294197619549801, 1.3400864799803502, 1.3505564817230509, 1.360815559572158, 1.3708509225179073, 1.3806511648534923, 1.3902062290333628 ], [ 1.0185225784465213, 1.0174221952775477, 1.0167852433747429, 1.016623503957856, 1.0169471153510519, 1.0177644505192005, 1.0190820322688334, 1.0209044963095435, 1.0232346099196024, 1.0260733488201754, 1.0294200267450078, 1.0332724617024442, 1.0376271520173108, 1.0424794272207971, 1.0478235375246896, 1.0536526534968096, 1.0599587641494805, 1.0667324831044052, 1.073962793058389, 1.081636772921471, 1.0897393561277526, 1.0982531621584861, 1.1071584289078265, 1.1164330558195512, 1.1260527514197236, 1.1359912671287469, 1.1462206931659245, 1.1567117913791427, 1.1674343424403388, 1.178357489354458, 1.1894500642395827, 1.2006808899381405, 1.21201905176432, 1.223434137475061, 1.2348964454609348, 1.246377162365615, 1.2578485120439853, 1.2692838781215714, 1.280657902544584, 1.291946562497899, 1.3031272279759276, 1.3141787021543507, 1.3250812465532578, 1.3358165928158647, 1.3463679427625603, 1.356719958220265, 1.3668587419774303, 1.3767718110759548, 1.3864480635250642, 1.3958777394090411 ], [ 1.0256124413947219, 1.024631539976113, 1.024110817596486, 1.0240616477843107, 1.024493742854108, 1.025415032815046, 1.026831583593745, 1.028747565523667, 1.0311652806321117, 1.0340852519267614, 1.037506369234273, 1.0414260747192257, 1.0458405590723778, 1.050744930175204, 1.0561333141865115, 1.0619988574707409, 1.0683336161282755, 1.0751283437082657, 1.0823722104688307, 1.0900525031140038, 1.0981543582655688, 1.1066605754251733, 1.115551538930421, 1.124805258760226, 1.1343975222770988, 1.144302136533546, 1.1544912346686982, 1.1649356193662868, 1.1756051195635022, 1.1864689416960361, 1.1974960022289767, 1.2086552331155807, 1.2199158557205285, 1.2312476215762413, 1.242621020243952, 1.2540074557319334, 1.2653793935875475, 1.2767104810988876, 1.2879756431405207, 1.2991511561646376, 1.3102147027284923, 1.3211454087970729, 1.3319238658877879, 1.342532139944602, 1.3529537686506077, 1.3631737487161513, 1.3731785145177315, 1.3829559093136126, 1.392495150126454, 1.401786787262825 ], [ 1.033292242717972, 1.0324392235005155, 1.032042518188588, 1.0321130477370728, 1.0326600591268404, 1.0336910069916418, 1.0352114759060385, 1.0372251547901394, 1.0397338724775693, 1.0427376980213046, 1.0462351002763697, 1.0502231491930654, 1.0546977282066692, 1.0596537170470053, 1.0650851020026328, 1.0709849795704613, 1.0773454391064288, 1.0841573357983103, 1.0914099898609089, 1.099090864540019, 1.1071852799414472, 1.11567621130088, 1.1245442025645986, 1.133767404980767, 1.143321731532595, 1.1531811050808511, 1.163317772011491, 1.1737026529899375, 1.1843057061212299, 1.1950962833509169, 1.2060434667289837, 1.2171163762461394, 1.2282844449376247, 1.2395176598072937, 1.250786769019794, 1.2620634569701505, 1.2733204894855137, 1.284531831717923, 1.295672741375241, 1.3067198398954352, 1.317651164050696, 1.3284462003068587, 1.3390859040804868, 1.3495527058445362, 1.359830505842337, 1.3699046589846788, 1.3797619513304225, 1.3893905693906543, 1.398780063351169, 1.407921305179388 ], [ 1.0415448333718844, 1.0408276962621406, 1.040562402024566, 1.0407593764481025, 1.0414273647586523, 1.0425733174717973, 1.044202317932821, 1.0463175632005486, 1.0489204074937504, 1.0520104718394268, 1.0555858142976102, 1.0596431426612427, 1.0641780380008157, 1.069185146893246, 1.0746582976470171, 1.0805905049543953, 1.086973847876213, 1.0937992329705728, 1.1010560801506344, 1.1087319862642848, 1.1168124258149073, 1.1252805391970861, 1.1341170401067782, 1.143300251684035, 1.1528062614362242, 1.1626091717572486, 1.1726814168326287, 1.1829941167576536, 1.1935174436757126, 1.2042209805226392, 1.215074058916222, 1.2260460679069276, 1.2371067293296516, 1.2482263383638799, 1.2593759698060962, 1.2705276517219755, 1.2816545087979279, 1.2927308780240168, 1.3037323994371746, 1.3146360846170746, 1.325420365509362, 1.3360651259861753, 1.3465517183628617, 1.3568629668871512, 1.3669831600127174, 1.3768980330706209, 1.3865947427643706, 1.3960618347419733, 1.4052892053429047, 1.4142680584809055 ], [ 1.0503501534691155, 1.0497764283320783, 1.0496494823904992, 1.049979206707656, 1.0507738117435799, 1.0520397189892108, 1.053781494973595, 1.0560018391731092, 1.0587016348349005, 1.0618800660676746, 1.0655347952243341, 1.0696621820917636, 1.0742575128754817, 1.0793151964559375, 1.0848288828788966, 1.0907914681939097, 1.0971949703899573, 1.1040302884465762, 1.1112868827274984, 1.1189524325840547, 1.1270125313776873, 1.135450469799876, 1.1442471393443303, 1.1533810654525498, 1.1628285602157553, 1.1725639712509697, 1.1825599973724623, 1.192788041767657, 1.2032185774066069, 1.2138215052067303, 1.2245664914197658, 1.2354232758684214, 1.2463619466730866, 1.2573531799804, 1.2683684451210535, 1.2793801768194606, 1.290361916765788, 1.3012884272081435, 1.312135779348266, 1.3228814193065217, 1.3335042143144553, 1.3439844816290056, 1.3543040024656865, 1.3644460230343023, 1.3743952445429146, 1.3841378038225165, 1.3936612460232312, 1.402954490647371, 1.4120077920187326, 1.420812695141729 ], [ 1.0596853474483172, 1.0592620299794568, 1.059279855183348, 1.0597481435949971, 1.0606745417604728, 1.0620649211234965, 1.0639233196052054, 1.0662519369511905, 1.0690511922781618, 1.0723198465469927, 1.076055183463759, 1.0802532301036871, 1.0849089855037115, 1.0900166154613289, 1.0955695695453516, 1.1015605853560286, 1.1079815652497862, 1.1148233374805725, 1.1220753394892387, 1.1297252784098204, 1.1377588280751199, 1.1461594126210901, 1.1549081081730754, 1.1639836722579737, 1.1733626913433601, 1.1830198238336622, 1.1929281098504325, 1.2030593190601897, 1.2133843116107785, 1.2238733928026848, 1.234496647880902, 1.2452242483720048, 1.256026725350433, 1.2668752078927115, 1.2777416269371349, 1.2885988860247597, 1.2994210011537095, 1.3101832123872517, 1.3208620700293445, 1.3314354981964842, 1.3418828385239803, 1.3521848765857245, 1.3623238534044377, 1.372283464204702, 1.3820488463287215, 1.391606558005611, 1.4009445494486201, 1.4100521275556037, 1.4189199153109497, 1.4275398068329082 ], [ 1.0695249119906427, 1.0692584049710183, 1.0694268573855752, 1.070038987815382, 1.0711018539369768, 1.0726207599174382, 1.0745992064286927, 1.0770388936021058, 1.0799397844486978, 1.0833002305666457, 1.0871171530014088, 1.0913862595269315, 1.096102267459242, 1.101259092020387, 1.106849958553208, 1.1128674056815406, 1.1193031656947812, 1.1261479337974554, 1.133391062364834, 1.1410202328575252, 1.149021162117198, 1.1573773911683443, 1.1660701871222898, 1.1750785681139002, 1.1843794428401093, 1.1939478436082578, 1.2037572257606097, 1.2137798059340652, 1.2239869149379572, 1.2343493461386377, 1.2448376856420638, 1.2554226153838952, 1.2660751841034548, 1.2767670440583396, 1.2874706533626001, 1.2981594451850427, 1.3088079658986682, 1.3193919847666813, 1.3298885779889908, 1.3402761899916145, 1.3505346747742795, 1.360645319979519, 1.3705908561401383, 1.3803554533257552, 1.3899247071609553, 1.3992856159423477, 1.4084265503493132, 1.4173372170307545, 1.4260086171616806, 1.4344330009007875 ], [ 1.0798408735919962, 1.07973693324193, 1.080061254114487, 1.0808219262251344, 1.0820253977699261, 1.0836763919618144, 1.0857778659961614, 1.0883310214669586, 1.0913353726059685, 1.0947888730806787, 1.09868809355839, 1.1030284315102052, 1.1078043237776156, 1.1130094245348552, 1.1186367102290418, 1.1246784815344184, 1.1311262501272699, 1.1379705213959783, 1.14520050671479, 1.1528038141567956, 1.1607661704346475, 1.1690712192088215, 1.1777004250228644, 1.186633093196076, 1.1958464989416837, 1.2053161069270826, 1.2150158564027658, 1.2249184861221893, 1.234995875911996, 1.2452193861949612, 1.255560181661827, 1.26598952979536, 1.2764790686882472, 1.2870010414836976, 1.2975284968813878, 1.3080354566281496, 1.3184970518913115, 1.328889631013239, 1.3391908414638907, 1.3493796889186436, 1.3594365763494003, 1.3693433258738112, 1.3790831858969197, 1.388640825831059, 1.3980023204154626, 1.40715512539492, 1.4160880460682863, 1.424791199991662, 1.4332559749217744, 1.4414749829144506 ], [ 1.090602992394351, 1.0906666794506201, 1.0911514507482358, 1.092064746147745, 1.0934123880520428, 1.0951985082252529, 1.0974255158275268, 1.1000941148133356, 1.1032033757666646, 1.1067508617598976, 1.1107327998629213, 1.11514428024482, 1.1199794552576636, 1.1252317043543894, 1.1308937303555537, 1.1369575605918234, 1.1434144425167834, 1.150254644188705, 1.1574671900738056, 1.16503957630064, 1.1729575132300623, 1.1812047367400365, 1.189762915775167, 1.1986116669230644, 1.2077286713389153, 1.2170898780750432, 1.2266697717563462, 1.2364416810459051, 1.2463781061400163, 1.2564510471555785, 1.266632319533133, 1.2768938466988862, 1.2872079238046252, 1.2975474492549466, 1.3078861229468306, 1.3181986117648663, 1.3284606839973885, 1.3386493150597838, 1.3487427673193382, 1.3587206469840118, 1.3685639410087915, 1.3782550368400963, 1.38777772760355, 1.3971172050797174, 1.4062600425313487, 1.4151941691669152, 1.423908837761018, 1.4323945867134482, 1.4406431976193144, 1.4486476492449467 ], [ 1.101778988778174, 1.1020146240298438, 1.1026637270021493, 1.1037330708109696, 1.1052278398322544, 1.1071515666318223, 1.1095061087925888, 1.1122916725198961, 1.1155068867605213, 1.119148926323813, 1.123213675214265, 1.1276959128582007, 1.1325894978247222, 1.1378875184658566, 1.143582380226732, 1.1496658068434362, 1.1561287468542134, 1.1629611949424072, 1.1701519550062656, 1.177688383807062, 1.1855561575746514, 1.1937390987635819, 1.2022190885208208, 1.2109760760072426, 1.219988182106958, 1.2292318847252157, 1.238682266786519, 1.2483133059224896, 1.2580981857068763, 1.26800961099761, 1.2780201134867069, 1.2881023372324278, 1.2982292973305487, 1.3083746077669791, 1.3185126768143607, 1.3286188701050594, 1.3386696427865663, 1.3486426430148664, 1.3585167895435462, 1.3682723263946186, 1.377890857620115, 1.3873553650397068, 1.3966502116208122, 1.4057611328938415, 1.4146752184987403, 1.4233808856638013, 1.4318678461393053, 1.4401270678580205, 1.4481507323764866, 1.4559321889674437 ], [ 1.1133347892389354, 1.1137459135156478, 1.1145624901787543, 1.1157906137954585, 1.1174348222285315, 1.1194980434184099, 1.121981580385145, 1.1248851400525037, 1.1282069083513784, 1.1319436691372777, 1.136090957934104, 1.1406432341802102, 1.1455940490042895, 1.1509361816457067, 1.1566617184992587, 1.16276205559155, 1.1692278176065851, 1.1760487019631767, 1.1832132711540717, 1.190708726785239, 1.1985207020499145, 1.2066331054452417, 1.2150280391349348, 1.2236858033689315, 1.2325849866895722, 1.2417026323514357, 1.251014465389358, 1.2604951620456726, 1.270118643191377, 1.2798583751171109, 1.2896876638467714, 1.2995799323163817, 1.3095089729261387, 1.3194491708388902, 1.329375695817459, 1.3392646623112725, 1.3490932589277318, 1.3588398494007263, 1.3684840477644706, 1.3780067707287709, 1.3873902703051515, 1.3966181496197942, 1.4056753646255287, 1.41454821413995, 1.42322432032562, 1.431692601418294, 1.4399432382183839, 1.4479676356003268, 1.4557583800694496, 1.4633091942083076 ], [ 1.1252347881386173, 1.125824127074323, 1.1268105450160184, 1.1281994506236912, 1.129994730141765, 1.132198703452284, 1.1348121163822764, 1.1378341736505946, 1.141262613770667, 1.145093822697822, 1.1493229772784015, 1.1539442033770624, 1.1589507282261855, 1.1643350037171911, 1.1700887785948786, 1.1762031036313374, 1.1826682643270285, 1.1894736485207402, 1.1966075685030153, 1.204057065831979, 1.2118077301092862, 1.2198435602102726, 1.2281468891632286, 1.236698384221772, 1.2454771239047033, 1.2544607455502965, 1.263625651107137, 1.2729472556255115, 1.2824002619352426, 1.2919589457944178, 1.3015974378044441, 1.3112899910812357, 1.3210112266024872, 1.33073635097876, 1.3404413438977676, 1.3501031145435245, 1.359699627857407, 1.3692100026045877, 1.3786145838923156, 1.3878949931302416, 1.3970341585047796, 1.4060163289345586, 1.4148270742469533, 1.4234532740198436, 1.431883097208845, 1.4401059743582931, 1.4481125638932577, 1.4558947137217413, 1.4634454191465067, 1.4707587778956954 ], [ 1.1374421219799888, 1.1382115561976909, 1.1393693775621725, 1.1409203055164645, 1.1428675726289006, 1.1452128891021736, 1.1479564413701802, 1.151096928070285, 1.1546316337548819, 1.1585565366224582, 1.1628664416013774, 1.1675551250070746, 1.1726154728076938, 1.1780395925866098, 1.1838188807380756, 1.1899440317926997, 1.1964049855251144, 1.2031908180323065, 1.2102895929634234, 1.2176881962411752, 1.2253721804535327, 1.23332564336166, 1.2415311595710254, 1.2499697769151201, 1.2586210811356604, 1.2674633252781746, 1.2764736146235987, 1.2856281342748752, 1.2949024047283377, 1.3042715506823677, 1.3137105696203006, 1.3231945889143037, 1.3326991028837039, 1.3422001840118938, 1.3516746650851756, 1.3611002911811194, 1.3704558421196664, 1.3797212271908346, 1.3888775547334375, 1.3979071795309344, 1.4067937310980634, 1.4155221258342463, 1.4240785657896713, 1.4324505264856648, 1.4406267358970601, 1.4485971463729586, 1.4563529009641987, 1.4638862953529297, 1.4711907363476544, 1.4782606977162502 ], [ 1.149918952866707, 1.150869494484044, 1.1521994503324775, 1.1539128509822583, 1.1560122760575404, 1.1584988262487481, 1.1613721271400042, 1.1646303671970357, 1.1682703695400651, 1.172287693509272, 1.176676757828522, 1.1814309730074943, 1.1865428673907583, 1.1920041899779832, 1.1978059746397578, 1.203938554945504, 1.2103915260238518, 1.2171536584088238, 1.2242127769160351, 1.2315556235255938, 1.2391677259055127, 1.247033292369897, 1.2551351503219264, 1.2634547396362747, 1.2719721660983556, 1.280666313851093, 1.2895150104672193, 1.2984952342222607, 1.3075833506642702, 1.3167553647292412, 1.3259871752790144, 1.335254820695215, 1.3445347066066087, 1.3538038095196474, 1.36303985271029, 1.3722214529805798, 1.3813282386639525, 1.3903409405479679, 1.399241458206491, 1.40801290466565, 1.4166396324551889, 1.4251072440061232, 1.4334025891230988, 1.441513751949426, 1.4494300295021705, 1.4571419035174085, 1.464641007033851, 1.4719200868685542, 1.4789729629063462, 1.485794484935501 ], [ 1.1626267577761367, 1.163758534280036, 1.1652605057054584, 1.167136017392988, 1.1693869993755706, 1.1720139448965614, 1.175015918453145, 1.1783905949411482, 1.1821343289993567, 1.1862422505001682, 1.1907083786126171, 1.1955257435081554, 1.200686502308098, 1.2061820350535555, 1.2120030079041715, 1.2181393946105312, 1.224580453135632, 1.2313146611322232, 1.238329620494549, 1.2456119461363153, 1.2531471566779218, 1.2609195846501995, 1.2689123214798979, 1.2771072085481452, 1.285484880685824, 1.2940248632002862, 1.3027057184785158, 1.3115052339317197, 1.3204006400165935, 1.32936884558072, 1.338386677842084, 1.3474311156628942, 1.3564795069839573, 1.365509763881264, 1.3745005312914724, 1.3834313277461057, 1.3922826582995598, 1.4010361011821721, 1.4096743705795878, 1.4181813584019083, 1.4265421580491688, 1.4347430730935293, 1.4427716135654305, 1.450616482216923, 1.4582675527914333, 1.4657158419898204, 1.4729534765104788, 1.479973656267905, 1.4867706146649227, 1.4933395766081083 ], [ 1.175526620192138, 1.176838866757198, 1.1785118741541076, 1.180548309137697, 1.182949458034413, 1.1857152108006874, 1.1888440723767684, 1.1923332023159672, 1.1961784814553025, 1.2003746016875365, 1.2049151719762274, 1.2097928310700052, 1.2149993554846978, 1.220525750801903, 1.2263623155918597, 1.2324986703886933, 1.238923748783823, 1.2456257531164179, 1.2525920824730443, 1.2598092448594527, 1.2672627678718364, 1.2749371227689783, 1.282815675665038, 1.2908806769250845, 1.2991132960943028, 1.307493705196005, 1.3160012084708697, 1.3246144122128811, 1.3333114249219573, 1.3420700760045836, 1.350868140852723, 1.3596835611265863, 1.3684946510457987, 1.3772802829729833, 1.3860200481235803, 1.3946943905418796, 1.4032847143629232, 1.4117734657630532, 1.4201441919020459, 1.4283815796418713, 1.4364714769800573, 1.4444009000537008, 1.4521580283368811, 1.4597321903401452, 1.4671138417764018, 1.4742945378203867, 1.4812669007793455, 1.4880245842238353, 1.494562234403329, 1.5008754495910177 ], [ 1.1885795205401741, 1.1900705817703567, 1.1919127835320356, 1.1941081233997064, 1.1966572523767671, 1.19955946361806, 1.2028127063381848, 1.2064136254492381, 1.2103576255263495, 1.2146389554040833, 1.2192508073054866, 1.2241854222604072, 1.2294341921125627, 1.2349877480620834, 1.2408360267226035, 1.2469683071282058, 1.2533732157417703, 1.2600387007669374, 1.2669519812846521, 1.2740994802946046, 1.2814667531914472, 1.289038424328545, 1.2967981440765135, 1.3047285772146568, 1.3128114306871186, 1.3210275249066883, 1.3293569083089603, 1.3377790103997258, 1.3462728248401512, 1.3548171117631327, 1.363390607750769, 1.3719722325961536, 1.3805412837353779, 1.3890776115817605, 1.3975617714786286, 1.4059751502729732, 1.414300067396383, 1.4225198517371536, 1.4306188965012137, 1.4385826947515579, 1.4463978584745618, 1.4540521239419908, 1.4615343459065206, 1.4688344828563444, 1.4759435752145662, 1.4828537180361432, 1.489558029452702, 1.4960506158532538, 1.502326534572164, 1.5083817546821017 ], [ 1.2017466217653299, 1.2034139636309322, 1.205422665291528, 1.20777406712084, 1.2104681956780585, 1.2135037563442033, 1.2168781491965404, 1.220587508366252, 1.2246267634403896, 1.2289897195390167, 1.2336691507314048, 1.2386568997331642, 1.2439439756752553, 1.2495206414525242, 1.255376482936331, 1.2615004541929788, 1.267880895607054, 1.2745055251191733, 1.2813614062162486, 1.2884348994348764, 1.2957116066111067, 1.3031763186838805, 1.3108129783501217, 1.31860466812577, 1.3265336322965335, 1.3345813379223668, 1.3427285758577043, 1.3509555983340424, 1.3592422858232454, 1.3675683333151751, 1.375913445110964, 1.3842575276734699, 1.3925808716319357, 1.4008643162357164, 1.4090893919425906, 1.4172384390623907, 1.4252947022385762, 1.4332424019405914, 1.4410667850527656, 1.448754157138954, 1.4562918991222231, 1.4636684710417571, 1.470873405321528, 1.4778972916786781, 1.4847317554661477, 1.4913694309199876, 1.4978039304880428, 1.504029811163951, 1.5100425385422098, 1.515838449145189 ], [ 1.2149895463278026, 1.2168297787676225, 1.219001453244602, 1.2215052673391058, 1.2243406365440792, 1.2275056902078563, 1.230997288952913, 1.2348110636305942, 1.2389414744288008, 1.2433818871377411, 1.2481246619654927, 1.2531612488983916, 1.258482282658391, 1.2640776700299634, 1.2699366628459727, 1.2760479112559748, 1.2823994939481462, 1.2889789245588812, 1.2957731363244562, 1.3027684498333278, 1.3099505312472521, 1.317304350288795, 1.3248141483405511, 1.3324634268727464, 1.340234964903635, 1.348110871308117, 1.3560726738657918, 1.3641014426486935, 1.3721779415080446, 1.3802827987151705, 1.388396686592549, 1.3965005001999873, 1.4045755264983506, 1.412603597448263, 1.4205672227736905, 1.4284497002782186, 1.4362352034171895, 1.443908847193102, 1.4514567343420823, 1.458865984265788, 1.4661247473227528, 1.473222207018064, 1.4801485724083403, 1.486895062740273, 1.4934538860177522, 1.499818212879374, 1.5059821468857333, 1.5119406920742746, 1.5176897184414184, 1.5232259258558931 ], [ 1.2282706408970019, 1.2302795511824967, 1.2326098703363983, 1.2352616698641943, 1.2382337700634245, 1.2415237388092104, 1.2451279102481843, 1.2490414233619258, 1.253258279134526, 1.2577714137149743, 1.2625727836354583, 1.267653457993001, 1.2730037116940962, 1.2786131135463545, 1.2844706032538051, 1.2905645522641098, 1.2968828048923042, 1.303412698124432, 1.3101410608615114, 1.317054195931451, 1.3241378507345263, 1.3313771845750375, 1.3387567421760536, 1.3462604431865033, 1.3538715963925927, 1.3615729448137226, 1.369346744222119, 1.3771748735284126, 1.3850389717214227, 1.3929205933224327, 1.4008013729770927, 1.4086631898621673, 1.4164883237507642, 1.4242595964406368, 1.4319604943834443, 1.4395752704094258, 1.4470890241907268, 1.4544877624092187, 1.4617584404711246, 1.4688889880866662, 1.4758683211890493, 1.4826863425957018, 1.4893339336001112, 1.4958029383948848, 1.5020861429156507, 1.5081772493957475, 1.5140708476520792, 1.5197623838933005, 1.5252481276545082, 1.5305251373161788 ], [ 1.2415532251394543, 1.2437258216835354, 1.2462096989297673, 1.2490043212396127, 1.252107932050571, 1.2555175551732578, 1.2592290146200165, 1.2632369728890964, 1.2675349865896355, 1.272115577169989, 1.2769703134039683, 1.282089901314204, 1.2874642764871873, 1.2930826933639175, 1.2989338061478535, 1.3050057365046719, 1.3112861242582141, 1.3177621588194592, 1.3244205910907327, 1.3312477279682478, 1.3382294141039435, 1.3453510079329127, 1.3525973606737782, 1.3599528076199148, 1.3674011802499646, 1.3749258454606923, 1.3825097748779822, 1.3901356433565293, 1.3977859521916387, 1.4054431698909808, 1.413089881956163, 1.420708941034241, 1.428283609782033, 1.4357976904651162, 1.4432356372888953, 1.4505826493959715, 1.457824744127464, 1.4649488114141864, 1.4719426510081708, 1.4787949947258072, 1.4854955160266072, 1.4920348291846852, 1.498404480105687, 1.5045969305670615, 1.5106055373634897, 1.5164245275544124, 1.522048970755459, 1.5274747491993224, 1.5326985261159898, 1.5377177128456583 ], [ 1.2548018212416534, 1.2571323871145266, 1.259764030336331, 1.2626956291752287, 1.2659248709497533, 1.2694482556190931, 1.2732611167057328, 1.2773576594771825, 1.2817310154335397, 1.2863733112025235, 1.2912757490061353, 1.2964286950153738, 1.301821771233882, 1.3074439461219753, 1.3132836190541257, 1.319328693958062, 1.3255666381778393, 1.3319845238032373, 1.3385690504454097, 1.3453065506589545, 1.3521829817080966, 1.3591839097818577, 1.366294494600261, 1.3734994831501435, 1.3807832207294801, 1.3881296855284069, 1.395522549934595, 1.4029452682005816, 1.4103811867509866, 1.4178136708427724, 1.4252262398793518, 1.4326027034728865, 1.439927291158445, 1.4471847701543914, 1.4543605473691392, 1.461440753653926, 1.4684123098655033, 1.4752629755050493, 1.4819813815062273, 1.4885570491883369, 1.4949803975400942, 1.501242740939071, 1.5073362792198566, 1.5132540817443327, 1.5189900668481502, 1.5245389777684488, 1.529896355918117, 1.5350585121686156, 1.5400224966394778, 1.544786067365414 ], [ 1.2679823611995173, 1.2704645162240218, 1.2732374897879482, 1.2762995971388498, 1.2796479925268938, 1.2832786749588792, 1.2871865102432138, 1.2913652692774695, 1.29580768178055, 1.3005055038664106, 1.3054495970471949, 1.3106300154965183, 1.3160360977567263, 1.321656558593169, 1.3274795764462166, 1.3334928719841885, 1.3396837737144212, 1.3460392675678234, 1.3525460289032183, 1.3591904374467838, 1.3659585780931356, 1.3728362328774364, 1.3798088713003747, 1.386861647083986, 1.393979409051266, 1.401146732127462, 1.4083479717365468, 1.4155673416434806, 1.4227890122005145, 1.429997223546386, 1.4371764069167534, 1.444311306927154, 1.451387098336736, 1.4583894921031861, 1.465304827165531, 1.4721201460417852, 1.4788232537809427, 1.4854027609369138, 1.4918481119954488, 1.4981496011086344, 1.5042983771388696, 1.5102864399620755, 1.516106629802171, 1.5217526111267603, 1.5272188523722974, 1.5325006025150627, 1.5375938652798142, 1.5424953715880467, 1.5472025506951295, 1.5517135003472668 ] ], "zauto": true, "zmax": 1.5517135003472668, "zmin": -1.5517135003472668 }, { "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.11810615982797683, 0.11640126885843508, 0.1147441258068343, 0.11314042873189052, 0.1115959752646914, 0.11011662828358007, 0.10870827577216896, 0.10737678463923504, 0.10612794846029631, 0.10496742933759788, 0.10390069436827909, 0.1029329475527054, 0.10206905835259515, 0.1013134884991111, 0.1006702190240076, 0.10014267980495319, 0.09973368413962795, 0.09944537095358916, 0.09927915717426819, 0.099235702551305, 0.09931488877331948, 0.0995158141458386, 0.09983680439611164, 0.1002754394144804, 0.10082859499355938, 0.10149249794883375, 0.10226279245139833, 0.10313461501366224, 0.10410267536008155, 0.10516134038595294, 0.10630471853957257, 0.10752674222531526, 0.10882124617982765, 0.11018204018123524, 0.11160297487633043, 0.11307799992271188, 0.11460121402021808, 0.11616690673344594, 0.11776959227807562, 0.1194040356558314, 0.12106527167929845, 0.12274861753376863, 0.12444967958582212, 0.12616435517502883, 0.12788883012352897, 0.12961957267482277, 0.13135332453420764, 0.13308708963357074, 0.13481812118708084, 0.13654390754467577 ], [ 0.1154331794721227, 0.1136636733235005, 0.1119435429693115, 0.1102788053139944, 0.10867559119090141, 0.10714010853457036, 0.10567859898395299, 0.1042972876331068, 0.10300232585362354, 0.10179972738905987, 0.10069529826588303, 0.09969456147094251, 0.09880267779476741, 0.09802436470582211, 0.09736381556441207, 0.09682462186005351, 0.09640970141216788, 0.09612123556378145, 0.09596061828482617, 0.09592841976740629, 0.09602436654667088, 0.09624733944992907, 0.09659538982120242, 0.09706577356246622, 0.09765500165874942, 0.0983589050890433, 0.0991727114307533, 0.10009113008178389, 0.1011084428642143, 0.10221859682578913, 0.10341529628863451, 0.10469209156453048, 0.1060424622138978, 0.10745989322308261, 0.10893794297102752, 0.11047030231936465, 0.11205084456837229, 0.11367366636247023, 0.11533311989953744, 0.11702383699991134, 0.11874074573017382, 0.12047908036194573, 0.1222343854863668, 0.12400251511018957, 0.1257796275377553, 0.12756217680234597, 0.12934690135630786, 0.131130810667384, 0.13291117030236718, 0.134685486011726 ], [ 0.11273798531045787, 0.11090195564403804, 0.10911691777608316, 0.10738922797379137, 0.10572537352127842, 0.10413193321987066, 0.1026155304240623, 0.10118277824643393, 0.09984021680515666, 0.09859424271187246, 0.09745103140683235, 0.09641645343374171, 0.09549598628785151, 0.09469462403256806, 0.0940167874135331, 0.09346623764503993, 0.09304599733809592, 0.09275828212222822, 0.09260444634042032, 0.09258494574883741, 0.0926993194440134, 0.09294619231876505, 0.0933232982927007, 0.09382752347354782, 0.09445496738536231, 0.0952010195434173, 0.0960604480326709, 0.09702749639520122, 0.09809598505495147, 0.09925941367847164, 0.10051106123918237, 0.10184408105876898, 0.10325158867995168, 0.10472674102340308, 0.1062628058521311, 0.10785322107721758, 0.1094916438702236, 0.11117198989233204, 0.11288846320932644, 0.11463557764213471, 0.11640817041535136, 0.11820140902275679, 0.12001079224158541, 0.12183214620674511, 0.12366161641219355, 0.12549565644664307, 0.12733101420142542, 0.12916471621381476, 0.1309940507334544, 0.13281655002493187 ], [ 0.11002461607687485, 0.10812010691486412, 0.10626817845139497, 0.10447554811924734, 0.10274908482587204, 0.10109576664631116, 0.09952262998089556, 0.09803670969732263, 0.09664497005624059, 0.09535422660378562, 0.09417105970580074, 0.09310172098726414, 0.09215203460049351, 0.09132729593241941, 0.09063217101171159, 0.09007060041296294, 0.08964571179504502, 0.0893597452775777, 0.08921399559917745, 0.0892087743947589, 0.08934339500284219, 0.08961618103955725, 0.09002449866450918, 0.09056481114750334, 0.09123275315761922, 0.0920232212507929, 0.09293047640431173, 0.0939482541673173, 0.09506987805110663, 0.09628837212098633, 0.09759656929917009, 0.09898721256331022, 0.10045304694951333, 0.10198690097651969, 0.10358175675115851, 0.1052308085644737, 0.10692751022942151, 0.10866561174432876, 0.1104391860993943, 0.11224264718994188, 0.11407075987554059, 0.11591864324400461, 0.11778176811822617, 0.11965594979385678, 0.12153733692713033, 0.12342239741248096, 0.12530790200459635, 0.12719090635367575, 0.12906873203843208, 0.13093894710097423 ], [ 0.10729750923953577, 0.10532252089901178, 0.10340165651451534, 0.10154201759655809, 0.09975088172830923, 0.09803565737975879, 0.09640382890219996, 0.09486289106461974, 0.09342027281978682, 0.09208325044682472, 0.09085885081349081, 0.0897537462243937, 0.08877414313822053, 0.08792566788955478, 0.08721325335605379, 0.08664103116705443, 0.08621223444522098, 0.08592911611025482, 0.08579288738570248, 0.08580368032036947, 0.08596053691091414, 0.0862614259001333, 0.08670328668229942, 0.08728209815201932, 0.08799296895735932, 0.0888302445956679, 0.08978762619929206, 0.09085829571170942, 0.09203504240947152, 0.09331038629570541, 0.0946766946708732, 0.0961262890671526, 0.09765154061972306, 0.09924495276900994, 0.10089923089584546, 0.10260733906337591, 0.10436254447155793, 0.10615845053157079, 0.10798901965634955, 0.1098485869600895, 0.11173186608583137, 0.11363394835481166, 0.11555029637093188, 0.11747673313120223, 0.11940942759857931, 0.12134487759421786, 0.12327989076674066, 0.1252115643002116, 0.12713726393149108, 0.12905460276316094 ], [ 0.10456153405234729, 0.10251403033021798, 0.1005221258826629, 0.09859333000844835, 0.09673535773451583, 0.09495608178693196, 0.09326347320143608, 0.09166552971307178, 0.09017019144477773, 0.0887852439658655, 0.08751820952248375, 0.08637622814133349, 0.08536593133404902, 0.08449331220602493, 0.08376359678865004, 0.08318112222894518, 0.08274922793781508, 0.08247016578652883, 0.0823450348669855, 0.0823737451854822, 0.08255501302079894, 0.08288638870872797, 0.08336431554037058, 0.08398421652406071, 0.08474060418001335, 0.08562720746778682, 0.08663710945973382, 0.08776288944979295, 0.0889967637362717, 0.0903307202042397, 0.09175664290819575, 0.09326642398027025, 0.09485206125287461, 0.09650574091319256, 0.09821990526044237, 0.09998730620550952, 0.10180104554689938, 0.10365460330072475, 0.10554185548426537, 0.10745708278242971, 0.10939497149068372, 0.11135060804923208, 0.11331946837897548, 0.11529740311297915, 0.11728061969702264, 0.11926566221501146, 0.12124938968343449, 0.12322895345512652, 0.12520177427754817, 0.12716551946418517 ], [ 0.10182202630743761, 0.09969994595004789, 0.09763484576148913, 0.09563466684757418, 0.09370759182885242, 0.09186199417086201, 0.09010637431136614, 0.08844928141036919, 0.08689921998891195, 0.08546454138564466, 0.08415332086323198, 0.08297322232865957, 0.0819313539401706, 0.08103411925735488, 0.08028706989702597, 0.07969476669451964, 0.07926065693338921, 0.07898697511857013, 0.07887467392304259, 0.07892339033968407, 0.07913144985087604, 0.07949590883669494, 0.08001263280180705, 0.08067640564526099, 0.08148106340551478, 0.08241964485831056, 0.08348455107100504, 0.08466770644794516, 0.08596071477416244, 0.08735500507416794, 0.08884196354464075, 0.09041304922368291, 0.09205989230348625, 0.09377437500971987, 0.09554869573685706, 0.09737541765527104, 0.09924750332511423, 0.10115833700492094, 0.10310173637208955, 0.10507195531622951, 0.10706367935643937, 0.1090720150945205, 0.11109247496498038, 0.11312095839174278, 0.11515373031725416, 0.11718739793659765, 0.11921888634837582, 0.12124541372591725, 0.12326446651605301, 0.12527377508694112 ], [ 0.09908482402356616, 0.09688609771544177, 0.09474560700255255, 0.09267174840205304, 0.09067320309305987, 0.08875888405702981, 0.08693786782656292, 0.08521930922501451, 0.08361233798036412, 0.08212593689204649, 0.08076880235038635, 0.0795491894480407, 0.07847474561676823, 0.07755233853489085, 0.07678788576900185, 0.07618619496721982, 0.0757508241214307, 0.07548397121413777, 0.07538640132428134, 0.07545741701550739, 0.07569487478817634, 0.07609524692603849, 0.07665372468139788, 0.07736435588103256, 0.07822020805047253, 0.07921354722437524, 0.0803360227211442, 0.08157884913605358, 0.0829329783761374, 0.08438925642168184, 0.08593856138451837, 0.0875719211412482, 0.08928061022902654, 0.09105622675475282, 0.09289075079350037, 0.0947765861821986, 0.09670658780986853, 0.0986740765289365, 0.10067284372018416, 0.1026971473830043, 0.10474170142803482, 0.10680165964515463, 0.1088725956218893, 0.11095047970434432, 0.1130316539287882, 0.11511280570804838, 0.11719094093150513, 0.11926335702939432, 0.12132761645812494, 0.12338152098181328 ], [ 0.09635630291543176, 0.0940788772314237, 0.09186078125474362, 0.0897108890872542, 0.08763841136952451, 0.08565284103821441, 0.08376388112216088, 0.08198135233546576, 0.0803150787785791, 0.07877475100286743, 0.07736976708647238, 0.07610905421490649, 0.07500087548225341, 0.0740526290450904, 0.07327064907418933, 0.07266001976819435, 0.07222441459864845, 0.07196597258934247, 0.0718852216111119, 0.07198105547026995, 0.0722507673465961, 0.07269013748889099, 0.07329356870148426, 0.07405425969380494, 0.07496440425306727, 0.07601540358884581, 0.07719807995755548, 0.07850288146779409, 0.07992007035904854, 0.08143988961182452, 0.08305270514646744, 0.08474912288190331, 0.08652008145372879, 0.08835692242896845, 0.0902514404599897, 0.09219591608087738, 0.09418313386161135, 0.09620638848493224, 0.09825948106850481, 0.10033670777291961, 0.10243284244938768, 0.10454311481140416, 0.10666318537322031, 0.10878911818881905, 0.1109173522478188, 0.11304467223634715, 0.11516817924740487, 0.11728526192206758, 0.11939356841609611, 0.12149097951246862 ], [ 0.09364340999022051, 0.09128527995830978, 0.08898737175014566, 0.08675905641884198, 0.08461010362801848, 0.08255062732676755, 0.08059101049896555, 0.07874180587409878, 0.07701361006276705, 0.0754169096790537, 0.07396189973302246, 0.07265827695280716, 0.07151501364443724, 0.07054012097580843, 0.06974041375675015, 0.06912129130816122, 0.06868655024105144, 0.0684382443701725, 0.06837660430901626, 0.06850002468680827, 0.0688051209904198, 0.0692868516991148, 0.0699386956939741, 0.07075287077735397, 0.07172057705124717, 0.07283224893884968, 0.0740778014453257, 0.0754468592438729, 0.07692896067486331, 0.0785137321796121, 0.08019103165102502, 0.08195106146158604, 0.08378445348188408, 0.08568232930120233, 0.08763633923674621, 0.08963868371752091, 0.09168212038859722, 0.09375995991154268, 0.09586605301786805, 0.0979947709572458, 0.10014098110221036, 0.10230001914062824, 0.1044676590104673, 0.10664008150547491, 0.1088138422990862, 0.11098583998985836, 0.11315328465712085, 0.11531366732370525, 0.1174647306476829, 0.1196044411022738 ], [ 0.09095369299433449, 0.08851294508661621, 0.08613306390692695, 0.08382393222083598, 0.08159590515235658, 0.07945975773994782, 0.07742660823603832, 0.07550781283609372, 0.07371482806154779, 0.07205903825299582, 0.07055154773028145, 0.06920294023444742, 0.06802301221096338, 0.06702049100969872, 0.066202753563418, 0.06557556470950153, 0.06514285607744127, 0.06490656555934232, 0.06486655343393626, 0.06502060451299925, 0.06536451721461374, 0.0658922717286131, 0.06659626201176395, 0.06746757147305543, 0.06849627046174715, 0.06967171489719123, 0.07098282885073838, 0.0724183585986896, 0.0739670906250948, 0.0756180305100542, 0.07736054315362428, 0.07918445721403373, 0.08108013805240885, 0.08303853406699445, 0.08505120129967382, 0.08711031082537377, 0.08920864286850366, 0.09133957095835282, 0.0934970388204412, 0.09567553214989331, 0.09787004694611394, 0.10007605570880727, 0.10228947249696638, 0.10450661762329497, 0.10672418258352773, 0.10893919569077916, 0.11114898878795448, 0.11335116533743562, 0.11554357012919338, 0.11772426080072838 ], [ 0.08829532267373873, 0.08577019013917113, 0.08330627306011701, 0.08091397380077425, 0.07860425386971034, 0.07638858618029251, 0.0742788794557292, 0.07228736883782827, 0.07042646714222432, 0.06870857249580388, 0.06714583059178639, 0.06574985370756938, 0.06453140392898346, 0.06350005432432183, 0.06266384825954181, 0.062028982351758105, 0.061599541214101036, 0.06137731084715766, 0.061361691690654835, 0.061549722476893574, 0.06193621378522933, 0.06251397799330674, 0.06327413258905781, 0.06420644826267888, 0.06529971238717482, 0.06654208180276405, 0.06792140484959304, 0.06942549971319364, 0.07104238295528452, 0.07276044768157058, 0.07456859475338665, 0.07645632280159707, 0.07841378381820105, 0.0804318111521958, 0.0825019261812006, 0.0846163290646475, 0.08676787802078254, 0.08895006064297728, 0.09115695995418657, 0.0933832172213555, 0.09562399301587614, 0.09787492759847373, 0.1001321014068026, 0.10239199620923291, 0.10465145733864979, 0.10690765731721877, 0.10915806111284822, 0.11140039321907522, 0.11363260671387482, 0.11585285442366103 ], [ 0.08567710391570454, 0.08306603632905568, 0.08051618550206836, 0.07803847165399393, 0.07564447501013978, 0.07334639666107926, 0.07115698790893052, 0.06908944000605978, 0.06715722621907862, 0.06537388933945276, 0.06375277060928329, 0.06230668094976551, 0.061047522488406294, 0.05998587724811514, 0.0591305892944255, 0.05848837466926646, 0.058063497656139954, 0.057857550173029126, 0.057869362397815836, 0.058095057988574034, 0.05852824928305716, 0.059160350608118306, 0.05998097508284189, 0.06097837439775116, 0.062139882279514135, 0.06345232916954029, 0.06490240553375301, 0.06647696163053694, 0.06816324059665375, 0.06994904837238972, 0.0718228680888335, 0.07377392842248497, 0.07579223566768095, 0.07786857848924388, 0.07999451300198177, 0.08216233434397023, 0.08436503949456686, 0.08659628485545733, 0.08885034110937395, 0.09112204709484097, 0.09340676386177668, 0.09570032966627103, 0.0979990163870523, 0.10029948766738457, 0.1025987589764909, 0.10489415972121868, 0.10718329750459495, 0.10946402461034466, 0.11173440678260566, 0.11399269436197977 ], [ 0.08310847082851268, 0.08041021947068087, 0.07777278759279543, 0.07520759870755085, 0.07272685169458783, 0.07034349542101788, 0.06807116850283414, 0.06592409334817499, 0.06391691296850359, 0.062064459807180304, 0.060381448828675265, 0.05888209311950437, 0.05757964970822113, 0.05648591584601682, 0.05561070998936244, 0.054961384185223915, 0.054542421540296315, 0.05435517030110509, 0.05439775306017836, 0.054665167260732, 0.055149566336580996, 0.05584068612971937, 0.05672636462153417, 0.05779309759000785, 0.059026578045878575, 0.06041217990100334, 0.06193536190284025, 0.06358198259872942, 0.06533852858933081, 0.06719226575752762, 0.06913132682476025, 0.07114474938731054, 0.0732224775487161, 0.07535533828058481, 0.07753500135680375, 0.07975392951455376, 0.08200532360534472, 0.08428306598278285, 0.0865816642250715, 0.08889619646295692, 0.0912222590176239, 0.09355591668673252, 0.09589365579670087, 0.09823234002071442, 0.1005691689101934, 0.10290163907643336, 0.10522750796991262, 0.10754476022445389, 0.10985157655343632, 0.11214630520026994 ], [ 0.08059945974554837, 0.07781317983812858, 0.07508687597500463, 0.07243244411718837, 0.06986268488168758, 0.06739129848559042, 0.0650328423831539, 0.06280263733321031, 0.060716605801738696, 0.05879102638167339, 0.057042190574412004, 0.05548595524050225, 0.05413719637056948, 0.05300918751554068, 0.05211294720366766, 0.05145661939871481, 0.051044963004857856, 0.05087902419502585, 0.05095604573412286, 0.05126963305708857, 0.05181015610415268, 0.052565330144554834, 0.053520897490474215, 0.054661328953388176, 0.05597047662921135, 0.05743213150742073, 0.05903046313561286, 0.06075033866049178, 0.06257753238607994, 0.06449884437404663, 0.06650214884141281, 0.06857639194642615, 0.07071155560005503, 0.07289860038032231, 0.07512939718947131, 0.07739665434762927, 0.0796938444853237, 0.0820151338645856, 0.08435531554059093, 0.08670974696810992, 0.08907429215729849, 0.09144526820382512, 0.09381939588877412, 0.09619375401047923, 0.09856573713399253, 0.10093301649684128, 0.10329350387272034, 0.10564531825600008, 0.10798675528191733, 0.1103162593361978 ], [ 0.07816065312017904, 0.07528602287715211, 0.07247003994084852, 0.06972502216146895, 0.06706433324010934, 0.06450240594632453, 0.06205472733041617, 0.05973776771352208, 0.05756883153024573, 0.05556580598047323, 0.053746784832620666, 0.05212955203879832, 0.050730925385173736, 0.04956598511642381, 0.04864724409342593, 0.047983847785966406, 0.04758091339368159, 0.04743911612937683, 0.04755460097168772, 0.047919244265920154, 0.04852122649909716, 0.04934582516968008, 0.050376310089192425, 0.05159482677249896, 0.0529831798271671, 0.05452346480342923, 0.05619853193424854, 0.057992291332672696, 0.059889884426475734, 0.06187775215686434, 0.06394362971170435, 0.06607649327096365, 0.0682664786618865, 0.07050478634764107, 0.07278358249850582, 0.0750959022442757, 0.07743555854536092, 0.07979705829451311, 0.08217552608688662, 0.0845666353995458, 0.08696654655842999, 0.08937185072881108, 0.09177951916177536, 0.09418685700486554, 0.09659146109928379, 0.09899118131187723, 0.1013840850705485, 0.10376842487662895, 0.10614260865210573, 0.1085051728416658 ], [ 0.07580308649264, 0.07284044127886592, 0.06993460488368117, 0.06709824389426948, 0.06434521989368688, 0.06169065002770764, 0.05915093174604963, 0.056743709290283974, 0.0544877530146125, 0.05240271725519813, 0.05050874089880162, 0.04882586098656582, 0.047373228130418395, 0.046168146318877924, 0.04522500724242965, 0.04455424092060087, 0.04416144199047267, 0.04404683343162235, 0.04420518419644857, 0.04462621111502134, 0.04529539598289622, 0.04619507120201926, 0.04730559622343645, 0.048606464791958154, 0.05007723300130573, 0.05169821709962425, 0.05345095951561631, 0.05531849335157078, 0.05728544982067419, 0.05933805448311679, 0.061464052209056576, 0.0636525920045144, 0.06589409396613002, 0.06818011305843123, 0.07050320857201917, 0.07285682395325863, 0.07523517891048886, 0.07763317396668747, 0.08004630664247925, 0.08247059797510678, 0.0849025279273504, 0.08733897828618133, 0.08977718180547947, 0.09221467655131822, 0.09464926462423676, 0.0970789746371534, 0.09950202750719273, 0.10191680526799611, 0.1043218227241755, 0.10671570185252757 ], [ 0.07353811043800279, 0.07048858791532595, 0.0674935238153635, 0.06456583614146232, 0.06171978869589407, 0.058971098565326195, 0.05633701418209512, 0.05383633766425258, 0.05148935485154119, 0.049317625989027926, 0.047343582806643296, 0.04558987977918095, 0.04407846676297937, 0.04282939463067067, 0.0418594362739885, 0.04118068984365057, 0.040799399263127485, 0.04071523960413011, 0.04092124569113245, 0.04140442211979762, 0.04214691276416863, 0.04312749227275839, 0.04432311053835693, 0.04571026910646125, 0.047266099199171074, 0.048969102828697916, 0.05079958505219576, 0.05273983996399835, 0.0547741615608076, 0.05688874344636893, 0.05907151750480838, 0.0613119670196411, 0.06360093714840138, 0.06593045610360256, 0.06829357371537238, 0.07068421971790097, 0.07309708149792513, 0.07552749963212321, 0.07797137890916794, 0.08042511238347995, 0.08288551613852421, 0.08534977271430834, 0.08781538149073777, 0.09028011466386535, 0.09274197777464314, 0.09519917403332391, 0.0976500719195826, 0.10009317572692801, 0.10252709886222504, 0.1049505398108655 ], [ 0.07137720002376531, 0.06824288897629924, 0.06516020264232786, 0.06214218964818742, 0.05920338809995084, 0.056359988949960325, 0.05362998193441406, 0.05103325523449521, 0.048591605010350675, 0.046328593207493045, 0.04426917530294956, 0.04243901219370677, 0.04086339579686551, 0.03956577231148037, 0.03856594988823426, 0.03787821541242775, 0.0375097097323135, 0.037459448125774224, 0.03771826732070918, 0.038269747502593134, 0.03909189458853511, 0.04015919523931636, 0.04144463769809997, 0.042921399917878786, 0.044564064881457505, 0.046349360236202015, 0.048256502100269556, 0.050267252713439, 0.052365796425935564, 0.054538517146771694, 0.056773735707366366, 0.05906144414740559, 0.06139305780664508, 0.06376119512220026, 0.06615948813536407, 0.06858242273644063, 0.07102520563898516, 0.07348365425036409, 0.07595410549579074, 0.0784333399345236, 0.08091851797711161, 0.08340712554935382, 0.08589692708125822, 0.08838592418879251, 0.09087231884384118, 0.0933544801857926, 0.09583091441680201, 0.09830023744564254, 0.10076115010847983, 0.10321241590635946 ], [ 0.06933170627741886, 0.06611578795319148, 0.06294824504424476, 0.05984211657366406, 0.05681205666175498, 0.05387456055327541, 0.05104819185378164, 0.048353782234385675, 0.04581455474191122, 0.04345609474288635, 0.04130606135925378, 0.03939350687389508, 0.037747672533221414, 0.036396187158734154, 0.03536273799176176, 0.034664505790486716, 0.034309884425376615, 0.03429710040275184, 0.03461418894108281, 0.03524038855564987, 0.0361485745943604, 0.037308094829329994, 0.03868739465686226, 0.04025604420312476, 0.041986046412652835, 0.04385249910641271, 0.04583377378059918, 0.047911383995802616, 0.05006968536165702, 0.05229550701974287, 0.05457777677358893, 0.05690717386569803, 0.059275824724885316, 0.061677045718514324, 0.06410513074685456, 0.066555178549676, 0.0690229535455688, 0.07150477403851555, 0.0739974221791339, 0.07649807085211141, 0.07900422350303342, 0.0815136637245791, 0.08402441214833142, 0.08653468881511545, 0.08904287971972101, 0.09154750664878882, 0.0940471997616265, 0.09654067261241907, 0.09902669948967752, 0.10150409506541869 ], [ 0.06741254796092275, 0.06411941462227648, 0.060871105425835424, 0.05768049843785488, 0.054562182317279134, 0.05153274772173308, 0.048611105430252766, 0.04581880670100601, 0.04318031682295116, 0.04072315530366168, 0.03847776554872123, 0.03647692214026236, 0.03475445209366539, 0.033343090053158574, 0.03227147158174632, 0.03156061877204976, 0.031220687792111276, 0.03124897187121399, 0.031629921052109176, 0.032337258748363705, 0.03333751998143141, 0.03459395907227299, 0.036069916194342806, 0.03773117329541439, 0.03954726017100722, 0.04149192316611438, 0.04354304071442797, 0.04568223500052295, 0.04789435737174561, 0.050166956578070326, 0.05248978778743969, 0.054854387275036255, 0.0572537185310079, 0.059681885595546956, 0.06213390505369508, 0.06460552684705097, 0.06709309437901531, 0.06959343543703152, 0.07210377675797205, 0.07462167637819797, 0.07714496912333808, 0.07967172165698916, 0.08220019441043691, 0.08472880846169842, 0.08725611603452223, 0.08978077376140796, 0.09230151821603055, 0.09481714348482383, 0.09732648073018739, 0.09982837981274237 ], [ 0.06562984792290763, 0.06226517958463559, 0.05894164469368426, 0.055671810826828906, 0.052470010238487456, 0.04935269355024377, 0.046338841416769076, 0.04345041929099282, 0.04071283372533474, 0.03815530197432988, 0.03581097368384199, 0.03371654672473158, 0.03191102746191402, 0.03043327709637297, 0.029318190789445607, 0.028591882167752884, 0.028266989212600166, 0.028339718822671806, 0.028789928763418567, 0.02958435211128098, 0.03068175665922074, 0.03203829918208414, 0.03361175229135853, 0.035364107887569295, 0.037262716542519066, 0.039280404511131024, 0.041395012966389796, 0.04358868826359765, 0.04584712449679888, 0.04815886262417935, 0.05051468910538123, 0.052907142976740686, 0.05533012373034276, 0.057778585759209564, 0.06024830370176668, 0.06273569401198754, 0.06523768002937465, 0.06775158999467472, 0.07027507952070317, 0.07280607185203124, 0.0753427107987109, 0.0778833225169011, 0.08042638335809868, 0.08297049184900672, 0.0855143435243572, 0.08805670784217569, 0.09059640678862989, 0.09313229504859773, 0.09566324179736721, 0.09818811427484918 ], [ 0.0639925264780238, 0.06056330461784206, 0.05717159454406201, 0.05382952256203826, 0.05055098440340693, 0.04735205133884968, 0.044251468532864206, 0.041271245957916085, 0.03843731745915034, 0.035780192443273226, 0.03333543130113118, 0.0311436279974389, 0.029249398253336285, 0.027698746387395636, 0.026534344665536183, 0.025788990443540438, 0.025478795310596936, 0.02559873602147068, 0.026122817996551848, 0.027008994295470278, 0.028206677865702995, 0.02966398740917881, 0.031332883903382444, 0.03317182755216246, 0.035146504213343255, 0.03722939973672226, 0.039398851603762004, 0.04163796985489354, 0.04393362741962974, 0.046275599723265746, 0.04865586945222322, 0.051068083196542116, 0.0535071362810975, 0.05596886070283567, 0.05844979347186972, 0.06094700624008809, 0.06345798074540349, 0.06598051785974779, 0.06851267078325526, 0.07105269518866886, 0.0735990109472266, 0.07615017152804728, 0.07870483831891578, 0.08126175802001662, 0.08381974195751146, 0.08637764668634734, 0.08893435563184683, 0.09148876178231798, 0.09403975161217688, 0.09658619050554847 ], [ 0.06250787410925371, 0.059022311790767924, 0.05557095179489893, 0.052165385933753576, 0.04881892903480379, 0.04554706142114799, 0.042367996811929806, 0.03930339547709971, 0.036379224921228234, 0.0336267230431744, 0.031083314486235716, 0.028793134171700475, 0.026806505889355944, 0.025177394174688596, 0.023957827462644316, 0.023189183849688443, 0.022892352437924982, 0.0230609824886148, 0.02366173775838339, 0.024641764795457172, 0.025939535179090534, 0.027494442505037398, 0.02925275217716243, 0.031169972487054085, 0.03321085291011246, 0.03534822206602509, 0.03756146821363256, 0.03983507504892574, 0.04215737579771172, 0.04451955947072193, 0.04691490770262116, 0.0493382227911111, 0.05178540644359709, 0.054253153813139866, 0.056738733948697204, 0.05923983393952107, 0.06175444923058835, 0.06428080677411727, 0.06681731099130851, 0.06936250511062665, 0.07191504247372936, 0.0744736639762625, 0.07703717903199675, 0.07960444838542552, 0.08217436780541754, 0.08474585221370891, 0.08731782017171458, 0.08988917889584815, 0.09245881011938094, 0.09502555718818824 ], [ 0.061181136006538364, 0.057648508608376066, 0.05414734386491241, 0.05068866054097142, 0.047285109037549164, 0.04395143045681238, 0.04070506875236534, 0.03756697683335703, 0.034562651872457335, 0.031723401391094495, 0.02908774315425412, 0.026702614637621618, 0.024623636172688014, 0.022913052805566807, 0.021633565345508053, 0.020837118655071558, 0.02055094535190759, 0.020767383408539935, 0.02144419314194731, 0.022515716687372917, 0.023908220834742734, 0.025552198705844836, 0.027388816255247195, 0.029371525623334234, 0.03146500662907475, 0.03364312224810817, 0.03588680074877408, 0.03818221307164149, 0.040519332334484945, 0.04289084586613005, 0.04529135522326392, 0.04771679843495748, 0.05016403865609923, 0.052630575206044285, 0.05511434341165877, 0.05761357803656851, 0.06012672150926493, 0.06265236303973809, 0.06518919840702302, 0.067736003007068, 0.07029161289271658, 0.07285491017576794, 0.07542481040989363, 0.07800025051658735, 0.08058017651695608, 0.08316353083787086, 0.08574923931000702, 0.08833619819819914, 0.09092326172725157, 0.09350923061043592 ], [ 0.06001514947591347, 0.05644551971869538, 0.05290542656669633, 0.04940534279718922, 0.04595725066266596, 0.04257509798993933, 0.03927542624764313, 0.036078230464694425, 0.03300811970209451, 0.030095834578444138, 0.027380103827074394, 0.02490959664455342, 0.022744203258269435, 0.020953932076401723, 0.01961266965635206, 0.018784474196227426, 0.018504485485465638, 0.018763959926334468, 0.019510531912253534, 0.020664340772705347, 0.022139007377590173, 0.023856719171988474, 0.02575463613146013, 0.02778524573227083, 0.029914006789877493, 0.03211637964671284, 0.034375156328371195, 0.03667834647185837, 0.03901760111376994, 0.041387074157244526, 0.04378261533075454, 0.04620120597481691, 0.04864056976631934, 0.05109890820311503, 0.053574724245249034, 0.056066707498677086, 0.0585736615978401, 0.061094459753001026, 0.06362801834395473, 0.06617328136203277, 0.06872921069882325, 0.0712947789387369, 0.07386896256157434, 0.07645073439234629, 0.079039054815741, 0.08163286175309549, 0.0842310597206805, 0.08683250848208705, 0.08943601190131231, 0.09204030761948308 ], [ 0.05901007953685517, 0.05541392422281038, 0.05184639068379302, 0.04831749913199856, 0.044838645886107774, 0.041423041312660565, 0.03808632891929889, 0.03484745957426159, 0.031729917253222883, 0.028763404274288886, 0.02598605523091084, 0.023447058498601254, 0.02120900932888697, 0.019348101499910366, 0.017948469309985525, 0.017086498625868297, 0.016806182181447176, 0.017098241955546052, 0.01790005989572423, 0.019117681007442423, 0.02065303653054702, 0.022421495854924704, 0.024357642372489906, 0.02641404490683262, 0.02855756461932924, 0.03076555181679876, 0.03302273638050154, 0.0353189118733117, 0.037647284188489435, 0.040003319870417414, 0.04238395379402831, 0.04478705053320929, 0.04721104340472316, 0.04965469730105012, 0.05211695713536277, 0.05459685472941537, 0.05709345472719686, 0.05960582565474229, 0.06213302626971752, 0.06467410031257653, 0.06722807498403909, 0.06979396012962573, 0.07237074634665207, 0.07495740113736993, 0.07755286288431165, 0.08015603287359609, 0.08276576588104675, 0.08538085999831542, 0.08800004643959394, 0.09062198005733776 ], [ 0.0581632957253051, 0.05455105753051256, 0.050967658151295336, 0.04742281360942975, 0.043927491613676393, 0.04049432304743571, 0.03713819559675596, 0.03387711144381758, 0.030733423273027437, 0.027735593946972413, 0.024920621521939666, 0.022337131295332123, 0.020048609797189285, 0.01813488954830044, 0.016687544898942093, 0.015793194037746615, 0.015504102425901126, 0.01581134008145855, 0.016643937377292594, 0.017896431165199712, 0.019461797988090113, 0.021250831591862054, 0.02319698577909264, 0.025253634661836645, 0.027389266210932153, 0.02958305609805414, 0.03182146428342454, 0.034095803999266865, 0.03640056176262005, 0.03873225523582484, 0.041088665293872895, 0.04346832594708707, 0.04587019144159613, 0.04829342474338152, 0.05073726855473212, 0.053200971565917535, 0.05568375064337454, 0.058184775308554426, 0.06070316494142115, 0.06323799213675037, 0.06578828786123764, 0.06835304570877454, 0.07093122376829618, 0.07352174350216653, 0.07612348565564778, 0.07873528363543086, 0.08135591505172692, 0.08398409224871278, 0.08661845268163962, 0.08925754995908916 ], [ 0.05746942296506883, 0.0538510254278195, 0.05026283713753773, 0.046714451035021615, 0.043216611601831746, 0.03978159825407682, 0.03642378637374392, 0.03316047013510482, 0.030013068413569603, 0.027008877094838103, 0.02418355025063799, 0.021584394056044152, 0.019274082436218327, 0.01733301912918222, 0.01585578055636936, 0.014934498245560507, 0.01462695764504453, 0.0149256092585042, 0.015755489729388512, 0.017005026413954172, 0.01856262208113211, 0.020337135605722114, 0.022262062547116015, 0.02429183686464705, 0.026396362356750937, 0.028556239272138233, 0.030759210277507665, 0.03299767954259331, 0.035267029000084424, 0.037564491620959956, 0.03988840565761941, 0.04223772803077048, 0.044611723828080416, 0.04700977513120137, 0.049431269932249944, 0.05187554373922007, 0.05434185462250942, 0.05682937820436637, 0.05933721323817735, 0.06186439145959636, 0.06440988763192433, 0.06697262736011966, 0.06955149145344482, 0.07214531647870355, 0.07475289174082013, 0.07737295331423032, 0.08000417597364373, 0.08264516397307367, 0.08529444162745664, 0.08795044458621365 ], [ 0.05692058193904138, 0.053304955703514886, 0.04972197690230268, 0.0461813009294927, 0.042693665471706596, 0.03927124803824623, 0.03592819334712266, 0.03268139235310788, 0.02955163163611952, 0.026565275086343088, 0.023756664523050502, 0.021171344281168094, 0.018869781040579674, 0.01692993783922643, 0.015444312349615538, 0.014504248826301962, 0.01416859247444474, 0.014431987248233179, 0.015221389099237197, 0.01642633145798007, 0.0179359307244819, 0.01965980070314607, 0.021532327804062966, 0.023508894301538984, 0.025560317978338618, 0.027668021363650788, 0.029820451705173258, 0.032010593540062374, 0.034234289101092226, 0.03648912130938927, 0.038773680513959484, 0.04108709153031449, 0.043428716897210014, 0.045797978835001286, 0.04819426015314613, 0.050616856377201216, 0.053064959680995276, 0.05553766109871641, 0.05803396174516646, 0.06055278688423765, 0.06309299897088472, 0.06565340746208916, 0.06823277439593133, 0.07082981558377006, 0.07344319783111869, 0.07607153296169826, 0.07871336961578647, 0.08136718386738125, 0.08403136968547864, 0.08670423017814338 ], [ 0.0565068123383224, 0.05290148282028538, 0.049332122438256756, 0.04580861125659336, 0.042341870483424984, 0.03894419651012097, 0.03562975452034029, 0.03241530742340435, 0.02932128850943452, 0.026373362475327476, 0.023604634632618703, 0.02105858017926196, 0.018792354647209332, 0.01687896274929155, 0.015404368926089177, 0.014453285414456375, 0.014081086713380294, 0.014284909432058264, 0.014999044363516931, 0.016121060151897355, 0.017545891799343103, 0.019186445763862477, 0.020978731887273446, 0.02287889746371544, 0.0248581387251976, 0.026898089815524114, 0.028987330361858462, 0.031118927584790155, 0.03328876451431656, 0.03549442478741689, 0.03773446115175048, 0.04000792590490062, 0.04231407912752451, 0.044652216548464484, 0.04702157656740498, 0.04942129811532221, 0.05185040954460265, 0.05430783482168219, 0.05679240770513604, 0.05930288781479063, 0.06183797485020373, 0.06439631891870089, 0.06697652614197482, 0.0695771595445851, 0.07219673577720308, 0.07483371856169323, 0.07748650991681698, 0.08015344027372165, 0.0828327585509922, 0.08552262315512567 ], [ 0.05621664986962134, 0.05262742988432855, 0.04907812480560632, 0.045578957382157434, 0.04214116876890333, 0.03877732888353117, 0.03550179320859696, 0.03233137279897846, 0.029286309861008036, 0.026391675567915353, 0.023679304200698404, 0.02119027304522692, 0.018977547509307066, 0.01710739962342023, 0.015656340328567366, 0.014698733743024068, 0.014283478129872872, 0.014410006198201123, 0.015023136211469319, 0.0160331864117955, 0.017344828629194384, 0.018876484651981325, 0.020566611512439062, 0.02237214064745845, 0.024264307182248552, 0.026224504899444962, 0.02824099481703532, 0.030306520393212726, 0.03241665494524959, 0.03456868648370197, 0.03676088173619545, 0.0389920129071549, 0.041261064316604965, 0.04356706048174574, 0.0459089744446326, 0.04828568732406554, 0.05069597876805453, 0.05313853427761515, 0.055611959963090166, 0.05811479864546413, 0.060645543644885946, 0.06320264833618373, 0.06578453076668447, 0.06838957345494052, 0.07101611901881123, 0.07366246259322975, 0.07632684214846255, 0.0790074278514414, 0.08170231155818687, 0.08440949740912583 ], [ 0.05603780944308116, 0.05246862646411263, 0.04894362659078746, 0.045473438850559086, 0.04206969419367077, 0.038745308841759384, 0.035514897758106616, 0.032395373918344975, 0.029406806513648277, 0.026573622329455777, 0.02392621396905584, 0.021502901142754233, 0.019351836570740105, 0.01753163827161826, 0.01610820854022971, 0.01514435284860127, 0.01468146672552386, 0.014720831288238655, 0.015218481570759924, 0.01609933895796616, 0.017280001695324468, 0.018686084059432756, 0.0202593997897709, 0.02195797029147175, 0.0237530223514806, 0.02562549675675749, 0.027563066674239977, 0.029557880147032405, 0.03160495019068227, 0.033701047704490596, 0.03584396194598961, 0.0380320215751636, 0.040263796623979234, 0.042537923520723005, 0.044853011590292716, 0.047207601432911694, 0.0496001543857555, 0.05202905874884108, 0.054492643214992816, 0.05698919141386647, 0.059516953978119416, 0.062074156304404465, 0.06465900139722479, 0.06726966799164337, 0.0699043046597951, 0.07256102089702111, 0.07523787631607219, 0.07793286909582664, 0.08064392476645627, 0.08336888629012607 ], [ 0.05595791595029761, 0.05241078590469501, 0.048912121429072725, 0.0454729678676986, 0.04210535195490046, 0.038822533066888196, 0.035639365537406154, 0.03257281582868635, 0.029642688150784354, 0.02687261202104995, 0.024291312092513197, 0.021934061989374448, 0.019843921618650857, 0.01807174967242713, 0.016673120158239102, 0.01569992152858738, 0.015186468931253621, 0.015135423450792164, 0.015513033955374135, 0.01625838925038716, 0.01730052231414228, 0.01857317734747383, 0.020022337989772425, 0.02160760430990177, 0.023300395693392227, 0.025081214183544264, 0.026937058933218863, 0.028859351858187346, 0.030842402030073865, 0.03288232298868471, 0.034976297307980055, 0.03712209490188583, 0.03931777087261839, 0.041561486789499974, 0.04385141407161683, 0.04618568965195148, 0.04856240286142932, 0.0509795990529526, 0.053435290362163906, 0.05592746755518775, 0.05845410945152738, 0.061013188180507646, 0.06360266972966569, 0.06622051002723206, 0.06886464728513178, 0.07153299159928331, 0.07422341292206575, 0.07693372853087097, 0.07966169104786311, 0.08240497794206816 ], [ 0.05596522185571373, 0.05244036368439906, 0.04896798501268887, 0.04555951343784204, 0.04222732760986779, 0.03898497174335437, 0.03584746079606018, 0.032831708829395914, 0.029957116870881633, 0.027246348992887595, 0.024726286839271083, 0.022429044378239796, 0.020392682782567874, 0.018660832416750886, 0.017279895959833525, 0.01629242550382219, 0.01572676559745159, 0.015586575889037798, 0.015846598457309163, 0.016458373723956806, 0.017362646664567268, 0.018501469383563753, 0.019825527029925582, 0.021296495292440123, 0.022886316383413416, 0.024575223943967228, 0.02634960050400058, 0.02820013074907611, 0.030120371812780496, 0.03210571492379465, 0.03415266584144669, 0.036258367027335335, 0.03842029480967935, 0.0406360784336718, 0.042903400690664506, 0.045219950565288644, 0.04758340689429511, 0.049991438611888324, 0.0524417120768015, 0.054931899556121114, 0.05745968547525724, 0.06002276878697603, 0.0626188609756611, 0.06524567996018615, 0.06790094061316757, 0.0705823428643639, 0.0732875584626747, 0.0760142174764999, 0.07875989554464687, 0.08152210277033117 ], [ 0.056049256666224276, 0.05254532758231112, 0.04909738972471059, 0.04571718885554817, 0.04241738101582134, 0.03921170798231137, 0.036115243473687476, 0.03314473304911582, 0.03031905051888193, 0.02765978238644228, 0.02519191405791025, 0.022944499666283508, 0.02095101272987085, 0.01924877601091922, 0.017876548013730665, 0.016869377766962502, 0.016250896128777705, 0.016025482500046023, 0.01617457666836737, 0.01666001157153749, 0.017432835124053206, 0.018442975762301722, 0.01964599273229917, 0.021006004847671084, 0.02249581655126872, 0.02409563454152363, 0.025791370701011396, 0.02757304674358484, 0.029433494379104818, 0.03136737969642971, 0.0333705121749175, 0.035439379021370204, 0.03757084683198098, 0.03976198146361489, 0.042009947535318594, 0.044311958770110814, 0.04666525859530511, 0.04906711689417137, 0.051514833681203326, 0.05400574401130233, 0.05653722091046548, 0.05910667479452195, 0.06171154894399104, 0.064349311300062, 0.0670174432660757, 0.06971342642859266, 0.07243472821123323, 0.07517878748095058, 0.07794300106564866, 0.08072471203161974 ], [ 0.05620136484325466, 0.05271578709186592, 0.04928903956194697, 0.04593310685972913, 0.042660836048674634, 0.03948607396094213, 0.036423857431179686, 0.03349067202136704, 0.030704792585744777, 0.028086706883004485, 0.02565958983407218, 0.023449721983032572, 0.021486608394219973, 0.019802349461632403, 0.018429620384453213, 0.017397684422362582, 0.016726599242899126, 0.016421267589822843, 0.01646824714805457, 0.01683755002219762, 0.01748886527691647, 0.01837917572688747, 0.0194687585500924, 0.020724352538555667, 0.022119892345590916, 0.023635801285300736, 0.0252577044485576, 0.026975085351187665, 0.02878012796154783, 0.030666816921051155, 0.032630286056124544, 0.03466637306822166, 0.03677133145558356, 0.03894165505114489, 0.041173978824998014, 0.04346502836577371, 0.04581159823571178, 0.04821054567774047, 0.050658790910776574, 0.053153318675523246, 0.055691178058117324, 0.05826947919379657, 0.06088538646817718, 0.06353610846776628, 0.06621888531139951, 0.06893097420520451, 0.07166963415887628, 0.07443211081397005, 0.07721562228569478, 0.08001734682283061 ], [ 0.05641510291418056, 0.05294444903931329, 0.04953468915968285, 0.04619796486804929, 0.04294723085161673, 0.03979635804758196, 0.03676027499255204, 0.03385515768068642, 0.031098675195687042, 0.028510286997370144, 0.026111559449163324, 0.023926410959560728, 0.02198109340162381, 0.020303575122015225, 0.018921868166917915, 0.017860910509182166, 0.017138127127220095, 0.016758806202585862, 0.016713336749027995, 0.016978055002268656, 0.017519645209068548, 0.018301132921610643, 0.019287115012426137, 0.020446939347066696, 0.021755832584904513, 0.023194638024950795, 0.024748878775378468, 0.026407647024575102, 0.028162587176940947, 0.030007077934519486, 0.03193562775385564, 0.0339434566379114, 0.03602622370679762, 0.038179860390832, 0.04040047533337467, 0.042684304914152676, 0.045027690648561415, 0.04742707076024001, 0.049878977794788226, 0.05238003739325786, 0.0549269655465121, 0.05751656308718317, 0.06014570708466196, 0.0628113393704667, 0.06551045276038375, 0.06824007573414657, 0.07099725642935302, 0.07377904682989045, 0.07658248799565781, 0.07940459710010932 ], [ 0.056686480780262186, 0.05322688491748661, 0.04982943496243962, 0.04650635433669193, 0.04327063439421648, 0.04013610963411603, 0.03711755980557883, 0.034230845665565175, 0.031493081943456395, 0.028922841005034984, 0.026540357375065132, 0.024367657555831763, 0.02242846314088855, 0.020747613126283527, 0.019349669527081184, 0.018256428124016844, 0.017483423183491303, 0.01703623125316811, 0.016908063200744547, 0.017080038111069087, 0.01752434059613176, 0.01820898384458184, 0.019102340999647395, 0.020176208521553527, 0.02140716000060971, 0.022776603894510885, 0.02427012512443198, 0.02587657360804257, 0.027587176826792584, 0.029394802668830017, 0.03129340511107612, 0.033277637642284884, 0.03534260082547577, 0.03748368776362534, 0.03969649591170903, 0.04197678076282559, 0.04432043390687015, 0.04672347374665222, 0.04918204149502475, 0.051692398103951494, 0.05425091977669414, 0.05685409098551002, 0.05949849470577261, 0.06218080006327308, 0.06489774789086494, 0.06764613487219902, 0.0704227970511616, 0.07322459352374738, 0.07604839111375057, 0.07889105077169956 ], [ 0.0570140447290717, 0.05356161072831365, 0.050171785027927976, 0.04685681007850286, 0.04362965992180837, 0.040504094753870123, 0.03749473429645741, 0.034617154360541684, 0.03188800785129441, 0.029325162652885907, 0.026947829432371128, 0.024776615810025132, 0.022833384231490728, 0.02114071467526784, 0.01972071553300558, 0.01859297328687422, 0.017771704644748438, 0.01726270646845642, 0.017061234446254903, 0.017151948733779607, 0.017511244222198227, 0.018111116337366284, 0.01892310968144336, 0.019921209343797725, 0.021083302352660878, 0.02239144810115656, 0.023831426033048567, 0.025391982707392236, 0.02706405436631951, 0.028840103420369922, 0.03071361355414632, 0.032678736764562816, 0.034730063792231, 0.03686248473395121, 0.03907111030107447, 0.04135123081566787, 0.04369829674551136, 0.0461079101301636, 0.04857582033864269, 0.051097920375510274, 0.05367024172888682, 0.056288946848388074, 0.05895031900679466, 0.061650749710826465, 0.06438672409095546, 0.06715480487388621, 0.06995161565072482, 0.07277382420877347, 0.0756181266986762, 0.07848123336461406 ], [ 0.05739880965625317, 0.053949991427117004, 0.05056352622574388, 0.0472516278172387, 0.04402721686411505, 0.04090396212295812, 0.03789633505011521, 0.035019680538442004, 0.032290303419848246, 0.029725562449949314, 0.02734394687215107, 0.025165080390200472, 0.023209549954817936, 0.021498397514335535, 0.02005207020376888, 0.01888866464697782, 0.01802151499482435, 0.017456589848828103, 0.017190598800531746, 0.0172107642897516, 0.017496618718213394, 0.01802323961905552, 0.018764742233493656, 0.01969699032529439, 0.020799089123023817, 0.022053783886883612, 0.02344714814251937, 0.024967947157998268, 0.026606946921535896, 0.028356312850847755, 0.03020915001651871, 0.03215918324073105, 0.03420055159767268, 0.0363276860580578, 0.03853524225407953, 0.04081806681135209, 0.0431711822775266, 0.04558978104206368, 0.048069222488510144, 0.05060503014511631, 0.05319288715326036, 0.05582862929651844, 0.05850823538419434, 0.061227815130020534, 0.06398359490358019, 0.06677190190312988, 0.06958914741903732, 0.07243180992903978, 0.07529641878833836, 0.07817953924936989 ], [ 0.05784405549659293, 0.05439598981947824, 0.051009414942224066, 0.04769648402289529, 0.04447004503235706, 0.041343675016643336, 0.03833172438102161, 0.035449372633571924, 0.03271269385698403, 0.030138722740535164, 0.027745497163647707, 0.025552027268392057, 0.02357810141412917, 0.021843791623013125, 0.02036848896404494, 0.019169336185012216, 0.018259102705822445, 0.01764388884654344, 0.017321412506439583, 0.0172807040154686, 0.017503573545787236, 0.01796741907136718, 0.018648379510267904, 0.019523881959522177, 0.02057412195687102, 0.021782528452941374, 0.02313553849704868, 0.024622038520908236, 0.02623273548175242, 0.027959604065337883, 0.029795465109922065, 0.03173369593542347, 0.03376804840764754, 0.03589254438547483, 0.03810142144327272, 0.04038910833096283, 0.04275021622506579, 0.04517953706903033, 0.04767204394597331, 0.0502228907277083, 0.052827409600816125, 0.055481105846343574, 0.05817964970621139, 0.060918865466533335, 0.06369471810716265, 0.06650329804004215, 0.06934080459148097, 0.07220352897083772, 0.07508783750470982, 0.07799015589960974 ], [ 0.05835500832131623, 0.05490578497839327, 0.05151672169947274, 0.04819989438661124, 0.044968073696394474, 0.041834757422807685, 0.038814210840235536, 0.03592151531641199, 0.033172622114518324, 0.030584401004257272, 0.02817465948878425, 0.025962085157554847, 0.023966029551734658, 0.02220601234728304, 0.02070080068854481, 0.019466955203774308, 0.018516890679325243, 0.017856793431883757, 0.017485053720078605, 0.017391944683989913, 0.017560897163399054, 0.01797102666335224, 0.01860004094154339, 0.019426648669645906, 0.020432004130520952, 0.021600197227495406, 0.022918074355480378, 0.02437472610291655, 0.025960898806554784, 0.027668476268437662, 0.029490087973979135, 0.03141884504749527, 0.03344817983072665, 0.035571758790405236, 0.037783441977407135, 0.040077269090644345, 0.04244745890137586, 0.04488841399561102, 0.047394726299782246, 0.04996118099067595, 0.05258275760120589, 0.055254627803568004, 0.05797214974378454, 0.06073085906923513, 0.06352645700297736, 0.06635479599782432, 0.06921186364689814, 0.07209376562625744, 0.07499670849147766, 0.07791698314086787 ], [ 0.058938430542828026, 0.055487288949114436, 0.05209466304183013, 0.04877254881221538, 0.045533647324547, 0.042391398665437265, 0.03936002248679609, 0.03645456434071462, 0.033690943284383816, 0.031085988831598122, 0.028657442052511153, 0.026423874176059438, 0.024404445894465377, 0.02261839739688944, 0.021084142381575615, 0.019817878286757167, 0.01883176923110896, 0.018132019739177448, 0.01771743428772474, 0.017579121157656745, 0.017701663289903517, 0.0180654599711111, 0.018649452845548368, 0.019433416292517602, 0.020399355122810273, 0.02153199466408253, 0.022818621837598214, 0.024248597484719168, 0.02581279162521328, 0.027503087440823717, 0.0293120106767028, 0.03123248557460104, 0.033257692729616685, 0.03538099813714928, 0.03759592650299499, 0.03989615900728455, 0.042275542577627404, 0.04472810295925372, 0.047248057324526464, 0.049829824217607184, 0.052468029766500744, 0.0551575097140993, 0.05789330718726369, 0.06067066638402515, 0.06348502257563139, 0.0663319890080051, 0.06920734143920418, 0.07210700115470367, 0.075027017351935, 0.0779635497770576 ], [ 0.059602147583825024, 0.056149593365833396, 0.052753756676654516, 0.04942656302345511, 0.04618066140559622, 0.0430294616614756, 0.039987177195463026, 0.03706887109791467, 0.03429049955362455, 0.03166893879589389, 0.029221968868552363, 0.026968167406782453, 0.024926639783064666, 0.023116484476973967, 0.021555882833667227, 0.020260745499835666, 0.019242985045503674, 0.018508720947469057, 0.018056964808852126, 0.017879379994183705, 0.017961402178944805, 0.01828444851163527, 0.018828493969107764, 0.019574250918691867, 0.020504511717001433, 0.021604625511817206, 0.022862346485025005, 0.024267359419649113, 0.0258107286516837, 0.027484415465437773, 0.029280921174593886, 0.031193057228585414, 0.03321381744913454, 0.035336321167696305, 0.037553799902589995, 0.03985960749369902, 0.042247240619211514, 0.044710361935921664, 0.04724282157658945, 0.049838674806037875, 0.052492194784735755, 0.055197880022368855, 0.057950456489305774, 0.06074487463322689, 0.06357630178044701, 0.06644011059921391, 0.06933186445942913, 0.07224730062817396, 0.07518231228681328, 0.07813293034136455 ], [ 0.06035454032341887, 0.056902379775206735, 0.053505138363829724, 0.05017468997023333, 0.04692365587078911, 0.04376544583026655, 0.04071430307600244, 0.037785349848918, 0.03499462568227783, 0.03235910264530212, 0.029896649014722953, 0.027625894102824393, 0.02556592332905394, 0.023735710884493156, 0.022153195190779025, 0.020833950854269808, 0.019789543150207062, 0.01902586487644136, 0.018541961135403684, 0.018329870881740658, 0.01837572599051864, 0.01866184677668537, 0.01916917183436596, 0.019879318819911247, 0.020775861836859612, 0.02184478826432303, 0.02307435109660999, 0.024454605808923283, 0.02597687007033184, 0.027633250083280013, 0.02941629202819965, 0.03131876126834798, 0.033333524999369125, 0.035453507020223006, 0.03767168680357458, 0.03998112221699374, 0.04237498229440759, 0.04484658187648269, 0.047389413547817685, 0.04999717447908778, 0.0526637870280985, 0.055383412668703065, 0.05815045926453346, 0.06095958202718234, 0.0638056787567277, 0.06668388017208933, 0.06958953629666662, 0.07251819996387528, 0.07546560854352925, 0.07842766496484457 ], [ 0.061204033436756455, 0.05775532860502692, 0.05435988083024632, 0.05102953713558742, 0.047776918482171256, 0.044615463668760055, 0.04155947500239632, 0.03862416095980082, 0.03582566610028702, 0.03318107035347423, 0.030708327373326016, 0.028426094464522145, 0.026353386560395643, 0.024508971307636556, 0.022910428356311338, 0.02157285025452064, 0.020507289485791617, 0.019719245513168827, 0.01920765228936375, 0.018964823119771195, 0.018977539395643776, 0.019229028135122304, 0.01970122827212496, 0.02037671250368692, 0.021239885611818096, 0.022277417185709743, 0.023478100927376924, 0.024832407669003104, 0.026331958893329815, 0.02796906194528253, 0.029736367259844194, 0.031626652971663095, 0.033632714461959055, 0.0357473282072188, 0.03796326189808423, 0.040273309493954725, 0.04267033678978018, 0.0451473285624015, 0.047697432141686126, 0.05031399462692004, 0.052990592393417336, 0.0557210523940543, 0.058499465313274976, 0.06132019102142495, 0.06417785707235646, 0.06706735121067504, 0.06998380901132358, 0.07292259786254918, 0.07587929852466839, 0.07884968545576432 ], [ 0.062158609020039106, 0.05871756118058698, 0.055328354949523005, 0.052002836820903536, 0.04875365334293304, 0.04559429581154564, 0.04253914380885298, 0.039603501190466225, 0.03680361281952615, 0.034156642136514245, 0.03168057785497693, 0.02939402291381987, 0.027315803069084973, 0.02546432409825876, 0.023856621131913593, 0.02250710297396456, 0.02142611390105033, 0.020618596884269313, 0.02008326686588721, 0.019812671900202975, 0.01979426977522233, 0.020012271142520226, 0.020449716947732597, 0.021090236684370007, 0.021919151953716572, 0.022923881101954643, 0.02409381025344279, 0.02541987049514533, 0.026894031909228937, 0.028508850955272187, 0.03025713347332258, 0.032131722618015605, 0.034125392540157416, 0.036230818874125825, 0.038440598280989204, 0.04074729510559229, 0.04314349974379442, 0.04562188879292405, 0.048175281016894236, 0.05079668578155479, 0.053479342283012946, 0.05621674894948542, 0.059002683092983635, 0.0618312113683079, 0.06469669194029533, 0.0675937695014651, 0.07051736443645387, 0.07346265750453226, 0.07642507141463958, 0.07940025060704332 ], [ 0.0632253722666304, 0.059797146309746946, 0.05641967044488986, 0.053104813679110886, 0.04986526749859147, 0.04671458850448419, 0.04366723608494366, 0.04073859704914665, 0.037944983633154294, 0.03530358327071261, 0.03283232779114564, 0.030549637194200834, 0.02847398237885405, 0.026623210216495864, 0.02501359686126408, 0.023658657416089576, 0.02256784857699713, 0.021745431263730516, 0.021189843045467716, 0.02089387595920073, 0.0208457299479297, 0.021030702811213147, 0.021433056658512608, 0.022037592189707196, 0.022830643907541307, 0.023800452426905917, 0.024937050981572638, 0.02623187451821056, 0.027677281860386906, 0.029266120256553618, 0.03099139595737596, 0.03284606479708829, 0.03482292802959845, 0.036914607205683736, 0.03911357126981117, 0.04141219359313539, 0.0438028225589737, 0.046277854646847846, 0.04882980306380501, 0.05145135786336254, 0.0541354354409459, 0.05687521659102069, 0.05966417318137998, 0.0624960840943106, 0.06536504148897603, 0.06826544870551843, 0.0711920112857822, 0.0741397226478264, 0.07710384593515647, 0.0800798934814276 ], [ 0.06441019127160326, 0.061000697376961836, 0.05764122678106799, 0.05434368603214646, 0.05112081956898591, 0.04798624689231828, 0.04495449017217928, 0.04204098261416919, 0.039262042401493905, 0.03663478956502055, 0.03417697398968461, 0.03190667351037261, 0.02984181569567857, 0.027999483097956974, 0.02639499055084287, 0.02504078486362341, 0.023945310822832043, 0.023112085470319708, 0.02253926749668877, 0.022219938425684302, 0.022143116280989437, 0.022295278110718564, 0.022662004028243535, 0.023229357580146822, 0.023984764801836964, 0.024917350620358245, 0.026017842397517997, 0.02727821623123136, 0.028691253597304543, 0.030250128109651466, 0.0319480862916283, 0.033778241061541515, 0.03573346835853026, 0.037806384309943986, 0.039989377750393844, 0.04227467587962506, 0.044654425851710665, 0.04712078010213417, 0.049665977383619796, 0.05228241461829727, 0.05496270691378053, 0.057699734648537754, 0.06048667760156472, 0.06331703682828203, 0.06618464546637672, 0.0690836699557372, 0.07200860331853061, 0.07495425219826546, 0.07791571932394903, 0.08088838296605008 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.041148629039525986, 0.2857678532600403, 0.8522157073020935, 0.8920990228652954, 0.4663430452346802, 0.20609870553016663, 0.2794052116115979, 0.22985134829694645, 0.32873217681013045, 0.3754279743018293, 0.4153017786953136, 0.3584581880401414, 0.3561102640193855, 0.3553857350763942, 0.35371601498178057, 0.3594539177233398, 0.42076154515606695, 0.46139858687040103, 0.4115011777723385, 0.4176857496724101, 0.4189901873064764, 0.5985637656494007, 0.40964725948690556, 0.4271640129234622, 0.9829163243994117, 0.3700665505602956, 0.35016909862729023, 0.4581801062449813, 0.7731048110872507 ], "xaxis": "x", "y": [ 0.4494225084781647, 0.600216269493103, 0.11601513624191284, 0.7307854890823364, 0.2460964322090149, 0.8346359729766846, 0.6206008217305327, 0.6137399522352502, 0.6296426968717749, 0.648160893648171, 0.6340173952066974, 0.733639661141008, 0.7875713870165928, 0.840028891644536, 0.8766329688376671, 0.8738109814290237, 0.8818095743380598, 0.8799415009840228, 0.897785093448023, 0.8780137196891163, 0.8864858582276492, 0.9901080221795948, 0.86985802675792, 0.9128737860123103, 0.779970170930028, 0.5119325648993254, 0.9633732058315407, 0.6788636296987534, 0.3790860800072551 ], "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", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.041148629039525986, 0.2857678532600403, 0.8522157073020935, 0.8920990228652954, 0.4663430452346802, 0.20609870553016663, 0.2794052116115979, 0.22985134829694645, 0.32873217681013045, 0.3754279743018293, 0.4153017786953136, 0.3584581880401414, 0.3561102640193855, 0.3553857350763942, 0.35371601498178057, 0.3594539177233398, 0.42076154515606695, 0.46139858687040103, 0.4115011777723385, 0.4176857496724101, 0.4189901873064764, 0.5985637656494007, 0.40964725948690556, 0.4271640129234622, 0.9829163243994117, 0.3700665505602956, 0.35016909862729023, 0.4581801062449813, 0.7731048110872507 ], "xaxis": "x2", "y": [ 0.4494225084781647, 0.600216269493103, 0.11601513624191284, 0.7307854890823364, 0.2460964322090149, 0.8346359729766846, 0.6206008217305327, 0.6137399522352502, 0.6296426968717749, 0.648160893648171, 0.6340173952066974, 0.733639661141008, 0.7875713870165928, 0.840028891644536, 0.8766329688376671, 0.8738109814290237, 0.8818095743380598, 0.8799415009840228, 0.897785093448023, 0.8780137196891163, 0.8864858582276492, 0.9901080221795948, 0.86985802675792, 0.9128737860123103, 0.779970170930028, 0.5119325648993254, 0.9633732058315407, 0.6788636296987534, 0.3790860800072551 ], "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" } ], "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 }, "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": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "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": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "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.04842687487510264, -1.1594617340949187, -1.1594617340949187, -1.1594617340949187, -1.1594617340949187, -1.1594617340949187, -1.210091075820607, -1.210091075820607, -1.6062398137228415, -1.9081359162867066, -1.9081359162867066, -2.3597288313551905, -2.597556446343793, -2.783775540002509, -2.8524903462797107, -2.8524903462797107, -2.9636098278612524, -2.9636098278612524, -2.9636098278612524, -2.9832526494617833, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471 ] }, { "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.04842687487510264, -1.1594617340949187, -1.1594617340949187, -1.1594617340949187, -1.1594617340949187, -1.1594617340949187, -1.210091075820607, -1.210091075820607, -1.6062398137228415, -1.9081359162867066, -1.9081359162867066, -2.3597288313551905, -2.597556446343793, -2.783775540002509, -2.8524903462797107, -2.8524903462797107, -2.9636098278612524, -2.9636098278612524, -2.9636098278612524, -2.9832526494617833, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471 ] }, { "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.04842687487510264, -1.1594617340949187, -1.1594617340949187, -1.1594617340949187, -1.1594617340949187, -1.1594617340949187, -1.210091075820607, -1.210091075820607, -1.6062398137228415, -1.9081359162867066, -1.9081359162867066, -2.3597288313551905, -2.597556446343793, -2.783775540002509, -2.8524903462797107, -2.8524903462797107, -2.9636098278612524, -2.9636098278612524, -2.9636098278612524, -2.9832526494617833, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471, -3.013625534759471 ] }, { "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" } ], "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 }, "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": "", "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "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.6.7" } }, "nbformat": 4, "nbformat_minor": 2 }